diff --git a/.github/workflows/build-docker-internal.yml b/.github/workflows/build-docker-internal.yml
new file mode 100644
index 00000000..9de17689
--- /dev/null
+++ b/.github/workflows/build-docker-internal.yml
@@ -0,0 +1,70 @@
+name: Push docker images to internal registry
+
+on:
+ # push:
+ # branches: [main]
+ # paths:
+ # - ".github/workflows/docker.yml"
+ workflow_run:
+ workflows: ["Build Linux Artifacts"]
+ types:
+ - completed
+
+env:
+ VERSION: 0.10.5
+jobs:
+ build:
+ if: ${{ github.event.workflow_run.conclusion == 'success' }}
+ runs-on: ubuntu-latest
+ timeout-minutes: 120
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v4
+
+ - name: Get Version
+ run: |
+ echo VERSION=$(cat share/const.go |grep 'const VERSION' | awk '{print $4}' | sed "s/\"//g")-unstable >> $GITHUB_ENV
+
+ - name: Check Version
+ run: echo $VERSION
+
+ - name: Set up QEMU
+ uses: docker/setup-qemu-action@v3
+
+ - name: Set up Docker Buildx
+ uses: docker/setup-buildx-action@v3
+
+ - name: Login to DockerHub
+ uses: docker/login-action@v3
+ with:
+ registry: hub.iqka.com
+ username: ${{ secrets.DOCKER_INTERNAL_USER }}
+ password: ${{ secrets.DOCKER_INTERNAL_TOKEN }}
+
+ - name: Build Production
+ timeout-minutes: 60
+ uses: docker/build-push-action@v6
+ env:
+ DOCKER_CONTENT_TRUST: 1
+ with:
+ context: ./docker/production
+ platforms: linux/amd64
+ build-args: |
+ VERSION=${{ env.VERSION }}
+ ARCH=amd64
+ push: true
+ tags: hub.iqka.com/yaoapp/yao:${{ env.VERSION }}-amd64
+
+ - name: Build Production Arm64
+ timeout-minutes: 60
+ uses: docker/build-push-action@v6
+ env:
+ DOCKER_CONTENT_TRUST: 1
+ with:
+ context: ./docker/production
+ platforms: linux/arm64
+ build-args: |
+ VERSION=${{ env.VERSION }}
+ ARCH=arm64
+ push: true
+ tags: hub.iqka.com/yaoapp/yao:${{ env.VERSION }}-arm64
diff --git a/.github/workflows/build-docker.yml b/.github/workflows/build-docker.yml
new file mode 100644
index 00000000..0c252d8c
--- /dev/null
+++ b/.github/workflows/build-docker.yml
@@ -0,0 +1,92 @@
+name: Build and push docker images
+
+on:
+ # push:
+ # branches: [main]
+ # paths:
+ # - ".github/workflows/docker.yml"
+ workflow_run:
+ workflows: ["Build Linux Artifacts"]
+ types:
+ - completed
+
+env:
+ VERSION: 0.10.5
+jobs:
+ build:
+ if: ${{ github.event.workflow_run.conclusion == 'success' }}
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v4
+
+ - name: Get Version
+ run: |
+ echo VERSION=$(cat share/const.go |grep 'const VERSION' | awk '{print $4}' | sed "s/\"//g")-unstable >> $GITHUB_ENV
+
+ - name: Check Version
+ run: echo $VERSION
+
+ - name: Set up QEMU
+ uses: docker/setup-qemu-action@v3
+
+ - name: Set up Docker Buildx
+ uses: docker/setup-buildx-action@v3
+
+ - name: Login to DockerHub
+ uses: docker/login-action@v3
+ with:
+ username: ${{ secrets.DOCKER_USER }}
+ password: ${{ secrets.DOCKER_TOKEN }}
+
+ - name: Build Development
+ uses: docker/build-push-action@v6
+ env:
+ DOCKER_CONTENT_TRUST: 1
+ with:
+ context: ./docker/development
+ platforms: linux/amd64
+ build-args: |
+ VERSION=${{ env.VERSION }}
+ ARCH=amd64
+ push: true
+ tags: yaoapp/yao:${{ env.VERSION }}-amd64-dev
+
+ - name: Build Development Arm64
+ uses: docker/build-push-action@v6
+ env:
+ DOCKER_CONTENT_TRUST: 1
+ with:
+ context: ./docker/development
+ platforms: linux/arm64
+ build-args: |
+ VERSION=${{ env.VERSION }}
+ ARCH=arm64
+ push: true
+ tags: yaoapp/yao:${{ env.VERSION }}-arm64-dev
+
+ - name: Build Production
+ uses: docker/build-push-action@v6
+ env:
+ DOCKER_CONTENT_TRUST: 1
+ with:
+ context: ./docker/production
+ platforms: linux/amd64
+ build-args: |
+ VERSION=${{ env.VERSION }}
+ ARCH=amd64
+ push: true
+ tags: yaoapp/yao:${{ env.VERSION }}-amd64
+
+ - name: Build Production Arm64
+ uses: docker/build-push-action@v6
+ env:
+ DOCKER_CONTENT_TRUST: 1
+ with:
+ context: ./docker/production
+ platforms: linux/arm64
+ build-args: |
+ VERSION=${{ env.VERSION }}
+ ARCH=arm64
+ push: true
+ tags: yaoapp/yao:${{ env.VERSION }}-arm64
diff --git a/.github/workflows/build-linux.yml b/.github/workflows/build-linux.yml
index b68d5890..678ced2e 100644
--- a/.github/workflows/build-linux.yml
+++ b/.github/workflows/build-linux.yml
@@ -9,14 +9,24 @@ on:
jobs:
build:
runs-on: "ubuntu-latest"
- strategy:
- matrix:
- go: [1.23.4]
+ container:
+ image: yaoapp/yao-build:0.10.5
+
+ env:
+ CF_ACCESS_KEY_ID: ${{ secrets.CF_ACCESS_KEY_ID }}
+ CF_SECRET_ACCESS_KEY: ${{ secrets.CF_SECRET_ACCESS_KEY }}
+ R2_BUCKET: ${{ secrets.R2_BUCKET }}
+ R2_ACCOUNT_ID: ${{ secrets.R2_ACCOUNT_ID }}
+
steps:
- - name: Setup Node.js
- uses: actions/setup-node@v4
- with:
- node-version: 20
+ - name: Configure R2 For Cloudflare
+ run: |
+ aws configure set aws_access_key_id $CF_ACCESS_KEY_ID
+ aws configure set aws_secret_access_key $CF_SECRET_ACCESS_KEY
+ aws configure set default.region us-east-1 # Update with your R2 region if different
+ aws configure set default.s3.signature_version s3v4
+ aws configure set default.s3.endpoint_url https://$R2_ACCOUNT_ID.r2.cloudflarestorage.com
+ aws --version
- name: Install pnpm
run: npm install -g pnpm
diff --git a/.github/workflows/build-macos.yml b/.github/workflows/build-macos.yml
index c9daa640..843c5123 100644
--- a/.github/workflows/build-macos.yml
+++ b/.github/workflows/build-macos.yml
@@ -2,15 +2,18 @@ name: Build MacOS Artifacts
on:
workflow_dispatch:
- push:
- tags:
- - 'v*'
+ inputs:
+ tags:
+ description: "Version tags"
+
+env:
+ VERSION: 0.10.5
jobs:
build:
strategy:
matrix:
- go: [1.23.4]
+ go: [1.24.3]
runs-on: "macos-latest"
steps:
- name: Setup Node.js
@@ -65,11 +68,13 @@ jobs:
rm -rf $dir/__MACOSX
done
- - name: Checkout XGen v1.0
+ - name: Checkout CUI v1.0
+ # ** XGEN will be renamed to CUI in the feature. and move to the new repository. **
+ # ** new repository: https://github.com/YaoApp/cui.git **
uses: actions/checkout@v4
with:
- repository: sjzsdu/xgen
- path: xgen-v1.0
+ repository: yaoapp/cui
+ path: cui-v1.0
- name: Checkout Yao-Init
uses: actions/checkout@v4
@@ -83,12 +88,12 @@ jobs:
mv xun ../
mv gou ../
mv v8go ../
- mv xgen-v1.0 ../
+ mv cui-v1.0 ../
mv yao-init ../
- rm -f ../xgen-v1.0/packages/setup/vite.config.ts.*
+ rm -f ../cui-v1.0/packages/setup/vite.config.ts.*
ls -l .
ls -l ../
- ls -l ../xgen-v1.0/packages/setup/
+ ls -l ../cui-v1.0/packages/setup/
- name: Checkout Code
uses: actions/checkout@v4
diff --git a/.github/workflows/pr-test.yml b/.github/workflows/pr-test.yml
new file mode 100644
index 00000000..da32a2f1
--- /dev/null
+++ b/.github/workflows/pr-test.yml
@@ -0,0 +1,376 @@
+name: PR Unit Test
+
+# read-write repo token
+# access to secrets
+on:
+ workflow_run:
+ workflows: ["Receive PR"]
+ types:
+ - completed
+env:
+ YAO_DEV: ${{ github.WORKSPACE }}
+ YAO_ENV: development
+ YAO_ROOT: ${{ github.WORKSPACE }}/../app
+ YAO_HOST: 0.0.0.0
+ YAO_PORT: 5099
+ YAO_SESSION: "memory"
+ YAO_LOG: "./logs/application.log"
+ YAO_LOG_MODE: "TEXT"
+ YAO_JWT_SECRET: "bLp@bi!oqo-2U+hoTRUG"
+ YAO_DB_AESKEY: "ZLX=T&f6refeCh-ro*r@"
+ OSS_TEST_ID: ${{ secrets.OSS_TEST_ID}}
+ OSS_TEST_SECRET: ${{ secrets.OSS_TEST_SECRET}}
+ ROOT_PLUGIN: ${{ github.WORKSPACE }}/../../../data/gou-unit/plugins
+
+ MYSQL_TEST_HOST: "127.0.0.1"
+ MYSQL_TEST_PORT: "3308"
+ MYSQL_TEST_USER: test
+ MYSQL_TEST_PASS: "123456"
+
+ SQLITE_DB: "./app/db/yao.db"
+
+ REDIS_TEST_HOST: "127.0.0.1"
+ REDIS_TEST_PORT: "6379"
+ REDIS_TEST_DB: "2"
+
+ MONGO_TEST_HOST: "127.0.0.1"
+ MONGO_TEST_PORT: "27017"
+ MONGO_TEST_USER: "root"
+ MONGO_TEST_PASS: "123456"
+
+ OPENAI_TEST_KEY: ${{ secrets.OPENAI_TEST_KEY }}
+ TEST_MOAPI_SECRET: ${{ secrets.OPENAI_TEST_KEY }}
+ TEST_MOAPI_MIRROR: https://api.openai.com
+
+ TAB_NAME: "::PET ADMIN"
+ PAGE_SIZE: "20"
+ PAGE_LINK: "https://yaoapps.com"
+ PAGE_ICON: "icon-trash"
+
+ DEMO_APP: ${{ github.WORKSPACE }}/../app
+
+ # Application Setting
+
+ ## Path
+ YAO_EXTENSION_ROOT: ${{ github.WORKSPACE }}/../extension
+ YAO_TEST_APPLICATION: ${{ github.WORKSPACE }}/../app
+ YAO_SUI_TEST_APPLICATION: ${{ github.WORKSPACE }}/../yao-startup-webapp
+
+ ## Runtime
+ YAO_RUNTIME_MIN: 3
+ YAO_RUNTIME_MAX: 6
+ YAO_RUNTIME_HEAP_LIMIT: 1500000000
+ YAO_RUNTIME_HEAP_RELEASE: 10000000
+ YAO_RUNTIME_HEAP_AVAILABLE: 550000000
+ YAO_RUNTIME_PRECOMPILE: true
+
+ # Neo4j
+ NEO4J_TEST_URL: "neo4j://localhost:7686"
+ NEO4J_TEST_USER: "neo4j"
+ NEO4J_TEST_PASS: "Yao2026Neo4j"
+
+ # Qdrant
+ QDRANT_TEST_HOST: "127.0.0.1"
+ QDRANT_TEST_PORT: "6334"
+
+ # S3
+ S3_API: ${{ secrets.S3_API }}
+ S3_ACCESS_KEY: ${{ secrets.S3_ACCESS_KEY }}
+ S3_SECRET_KEY: ${{ secrets.S3_SECRET_KEY }}
+ S3_BUCKET: ${{ secrets.S3_BUCKET }}
+ S3_PUBLIC_URL: ${{ secrets.S3_PUBLIC_URL }}
+
+ # === Openapi Signin Configs ===
+ ## Google
+ GOOGLE_CLIENT_ID: ${{ secrets.GOOGLE_CLIENT_ID }}
+ GOOGLE_CLIENT_SECRET: ${{ secrets.GOOGLE_CLIENT_SECRET }}
+
+ ## Microsoft
+ MICROSOFT_CLIENT_ID: ${{ secrets.MICROSOFT_CLIENT_ID }}
+ MICROSOFT_CLIENT_SECRET: ${{ secrets.MICROSOFT_CLIENT_SECRET }}
+
+ ## Apple
+ APPLE_SERVICE_ID: ${{ secrets.APPLE_SERVICE_ID }}
+ APPLE_PRIVATE_KEY_PATH: "apple/signin_client_secret_key.p8"
+ APPLE_KEY_ID: ${{ secrets.APPLE_KEY_ID }}
+ APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }}
+
+ ## Github
+ GITHUBUSER_CLIENT_ID: ${{ secrets.GITHUBUSER_CLIENT_ID }}
+ GITHUBUSER_CLIENT_SECRET: ${{ secrets.GITHUBUSER_CLIENT_SECRET }}
+
+ ## Cloudflare Turnstile
+ CLOUDFLARE_TURNSTILE_SITEKEY: ${{ secrets.CLOUDFLARE_TURNSTILE_SITEKEY }}
+ CLOUDFLARE_TURNSTILE_SECRET: ${{ secrets.CLOUDFLARE_TURNSTILE_SECRET }}
+
+jobs:
+ UnitTest:
+ runs-on: ubuntu-latest
+
+ services:
+ qdrant:
+ image: qdrant/qdrant:latest
+ ports:
+ - 6333:6333 # HTTP API
+ - 6334:6334 # gRPC
+
+ fastembed:
+ image: yaoapp/fastembed:latest-amd64
+ env:
+ FASTEMBED_PASSWORD: Yao@2026
+ ports:
+ - 6001:8000
+
+ neo4j:
+ image: neo4j:latest
+ ports:
+ - "7687:7687"
+ env:
+ NEO4J_AUTH: neo4j/Yao2026Neo4j
+
+ mcp-everything:
+ image: yaoapp/mcp-everything:latest
+ ports:
+ - "3021:3021"
+ - "3022:3022"
+
+ strategy:
+ matrix:
+ go: [1.24]
+ db: [MySQL8.0, MySQL5.7, SQLite3]
+ redis: [4, 5, 6]
+ mongo: ["6.0"]
+ if: >
+ ${{ github.event.workflow_run.event == 'pull_request' &&
+ github.event.workflow_run.conclusion == 'success' }}
+ steps:
+ - name: "Download artifact"
+ uses: actions/github-script@v7
+ with:
+ script: |
+ var artifacts = await github.rest.actions.listWorkflowRunArtifacts({
+ owner: context.repo.owner,
+ repo: context.repo.repo,
+ run_id: ${{github.event.workflow_run.id }},
+ });
+ var matchArtifact = artifacts.data.artifacts.filter((artifact) => {
+ return artifact.name == "pr"
+ })[0];
+ var download = await github.rest.actions.downloadArtifact({
+ owner: context.repo.owner,
+ repo: context.repo.repo,
+ artifact_id: matchArtifact.id,
+ archive_format: 'zip',
+ });
+ var fs = require('fs');
+ fs.writeFileSync('${{github.workspace}}/pr.zip', Buffer.from(download.data));
+
+ - name: "Read NR & SHA"
+ run: |
+ unzip pr.zip
+ cat NR
+ cat SHA
+ echo HEAD=$(cat SHA) >> $GITHUB_ENV
+ echo NR=$(cat NR) >> $GITHUB_ENV
+
+ - name: "Comment on PR"
+ uses: actions/github-script@v7
+ with:
+ github-token: ${{ secrets.GITHUB_TOKEN }}
+ script: |
+ const { NR } = process.env
+ var fs = require('fs');
+ var issue_number = NR;
+ await github.rest.issues.createComment({
+ owner: context.repo.owner,
+ repo: context.repo.repo,
+ issue_number: issue_number,
+ body: 'Thank you for the PR! The db: ${{ matrix.db }} redis: ${{ matrix.redis }} mongo: ${{ matrix.mongo }} test workflow is running, the results of the run will be commented later.'
+ });
+
+ - name: Checkout Kun
+ uses: actions/checkout@v4
+ with:
+ repository: yaoapp/kun
+ path: kun
+
+ - name: Checkout Xun
+ uses: actions/checkout@v4
+ with:
+ repository: yaoapp/xun
+ path: xun
+
+ - name: Checkout Gou
+ uses: actions/checkout@v4
+ with:
+ repository: yaoapp/gou
+ path: gou
+
+ - name: Checkout V8Go
+ uses: actions/checkout@v4
+ with:
+ repository: yaoapp/v8go
+ path: v8go
+
+ - name: Unzip libv8
+ run: |
+ files=$(find ./v8go -name "libv8*.zip")
+ for file in $files; do
+ dir=$(dirname "$file") # Get the directory where the ZIP file is located
+ echo "Extracting $file to directory $dir"
+ unzip -o -d $dir $file
+ rm -rf $dir/__MACOSX
+ done
+
+ - name: Checkout Demo App
+ uses: actions/checkout@v4
+ with:
+ repository: yaoapp/yao-dev-app
+ path: app
+
+ - name: Checkout Yao Startup Webapp
+ uses: actions/checkout@v4
+ with:
+ repository: yaoapp/yao-startup-webapp
+ submodules: true
+ token: ${{ secrets.YAO_TEST_TOKEN }}
+ path: yao-startup-webapp
+
+ - name: Checkout Extension
+ uses: actions/checkout@v4
+ with:
+ repository: yaoapp/yao-extensions-dev
+ path: extension
+
+ - name: Move Kun, Xun, Gou, V8Go
+ run: |
+ mv kun ../
+ mv xun ../
+ mv gou ../
+ mv v8go ../
+ mv app ../
+ mv extension ../
+ mv yao-startup-webapp ../
+ ls -l .
+ ls -l ../
+
+ - name: Checkout pull request HEAD commit
+ uses: actions/checkout@v4
+ with:
+ ref: ${{ env.HEAD }}
+
+ - name: Setup Apple Private Key
+ run: |
+ mkdir -p ../app/openapi/certs/apple
+ echo "${{ secrets.APPLE_PRIVATE_KEY_USER }}" > ../app/openapi/certs/apple/signin_client_secret_key.p8
+
+ - name: Start Redis
+ uses: supercharge/redis-github-action@1.4.0
+ with:
+ redis-version: ${{ matrix.redis }}
+
+ - name: Setup Go ${{ matrix.go }}
+ uses: actions/setup-go@v5
+ with:
+ go-version: ${{ matrix.go }}
+
+ - name: Install FFmpeg 7.x
+ run: |
+ wget https://github.com/BtbN/FFmpeg-Builds/releases/download/latest/ffmpeg-master-latest-linux64-gpl.tar.xz
+ tar -xf ffmpeg-master-latest-linux64-gpl.tar.xz
+ sudo cp ffmpeg-master-latest-linux64-gpl/bin/ffmpeg /usr/local/bin/
+ sudo cp ffmpeg-master-latest-linux64-gpl/bin/ffprobe /usr/local/bin/
+ sudo chmod +x /usr/local/bin/ffmpeg /usr/local/bin/ffprobe
+
+ - name: Test FFmpeg
+ run: ffmpeg -version
+
+ - name: Install pdftoppm, mutool, imagemagick
+ run: |
+ sudo apt update
+ sudo apt install -y poppler-utils mupdf-tools imagemagick
+
+ - name: Test pdftoppm, mutool, imagemagick
+ run: |
+ pdftoppm -v
+ mutool -v
+ convert -version
+
+ - name: Start MongoDB
+ uses: supercharge/mongodb-github-action@1.8.0
+ with:
+ mongodb-version: ${{ matrix.mongo }}
+ mongodb-username: root
+ mongodb-password: 123456
+ mongodb-db: test
+
+ - name: Setup MySQL8.0 (connector)
+ uses: ./.github/actions/setup-db
+ with:
+ kind: "MySQL8.0"
+ db: "test"
+ user: "test"
+ password: "123456"
+ port: "3308"
+
+ - name: Setup ${{ matrix.db }}
+ uses: ./.github/actions/setup-db
+ with:
+ kind: "${{ matrix.db }}"
+ db: "xiang"
+ user: "xiang"
+ password: ${{ secrets.UNIT_PASS }}
+
+ - name: Setup Go Tools
+ run: |
+ make tools
+
+ - name: Setup ENV & Host
+ env:
+ PASSWORD: ${{ secrets.UNIT_PASS }}
+ run: |
+ sudo echo "127.0.0.1 local.iqka.com" | sudo tee -a /etc/hosts
+ echo "YAO_DB_DRIVER=$DB_DRIVER" >> $GITHUB_ENV
+ echo "GITHUB_WORKSPACE:\n" && ls -l $GITHUB_WORKSPACE
+
+ if [ "$DB_DRIVER" = "mysql" ]; then
+ echo "YAO_DB_PRIMARY=$DB_USER:$PASSWORD@$DB_HOST" >> $GITHUB_ENV
+ elif [ "$DB_DRIVER" = "postgres" ]; then
+ echo "YAO_DB_PRIMARY=postgres://$DB_USER:$PASSWORD@$DB_HOST" >> $GITHUB_ENV
+ else
+ echo "YAO_DB_PRIMARY=$YAO_ROOT/$DB_HOST" >> $GITHUB_ENV
+ fi
+
+ echo ".:\n" && ls -l .
+ echo "..:\n" && ls -l ..
+ ping -c 1 -t 1 local.iqka.com
+
+ - name: Test Prepare
+ run: |
+ make vet
+ make fmt-check
+ make misspell-check
+
+ - name: Run test
+ run: |
+ make test
+
+ - name: Codecov Report
+ uses: codecov/codecov-action@v4
+ with:
+ token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
+
+ - name: "Comment on PR"
+ uses: actions/github-script@v7
+ with:
+ github-token: ${{ secrets.GITHUB_TOKEN }}
+ script: |
+ const { NR } = process.env
+ var fs = require('fs');
+ var issue_number = NR;
+ await github.rest.issues.createComment({
+ owner: context.repo.owner,
+ repo: context.repo.repo,
+ issue_number: issue_number,
+ body: '✨DONE✨ db: ${{ matrix.db }} redis: ${{ matrix.redis }} mongo: ${{ matrix.mongo }} passed.'
+ });
diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml
new file mode 100644
index 00000000..1e7f2e16
--- /dev/null
+++ b/.github/workflows/unit-test.yml
@@ -0,0 +1,323 @@
+name: Unit Test
+
+on:
+ workflow_dispatch:
+ inputs:
+ tags:
+ description: "Version"
+ push:
+ branches: [main]
+
+env:
+ YAO_DEV: ${{ github.WORKSPACE }}
+ YAO_ENV: development
+ YAO_ROOT: ${{ github.WORKSPACE }}/../app
+ YAO_HOST: 0.0.0.0
+ YAO_PORT: 5099
+ YAO_SESSION: "memory"
+ YAO_LOG: "./logs/application.log"
+ YAO_LOG_MODE: "TEXT"
+ YAO_JWT_SECRET: "bLp@bi!oqo-2U+hoTRUG"
+ YAO_DB_AESKEY: "ZLX=T&f6refeCh-ro*r@"
+ OSS_TEST_ID: ${{ secrets.OSS_TEST_ID}}
+ OSS_TEST_SECRET: ${{ secrets.OSS_TEST_SECRET}}
+ ROOT_PLUGIN: ${{ github.WORKSPACE }}/../../../data/gou-unit/plugins
+ REPO_KUN: ${{ github.repository_owner }}/kun
+ REPO_XUN: ${{ github.repository_owner }}/xun
+ REPO_GOU: ${{ github.repository_owner }}/gou
+
+ MYSQL_TEST_HOST: "127.0.0.1"
+ MYSQL_TEST_PORT: "3308"
+ MYSQL_TEST_USER: test
+ MYSQL_TEST_PASS: "123456"
+
+ SQLITE_DB: "./app/db/yao.db"
+
+ REDIS_TEST_HOST: "127.0.0.1"
+ REDIS_TEST_PORT: "6379"
+ REDIS_TEST_DB: "2"
+
+ MONGO_TEST_HOST: "127.0.0.1"
+ MONGO_TEST_PORT: "27017"
+ MONGO_TEST_USER: "root"
+ MONGO_TEST_PASS: "123456"
+
+ OPENAI_TEST_KEY: ${{ secrets.OPENAI_TEST_KEY }}
+ TEST_MOAPI_SECRET: ${{ secrets.OPENAI_TEST_KEY }}
+ TEST_MOAPI_MIRROR: https://api.openai.com
+
+ TAB_NAME: "::PET ADMIN"
+ PAGE_SIZE: "20"
+ PAGE_LINK: "https://yaoapps.com"
+ PAGE_ICON: "icon-trash"
+
+ DEMO_APP: ${{ github.WORKSPACE }}/../app
+
+ # Application Setting
+
+ ## Path
+ YAO_EXTENSION_ROOT: ${{ github.WORKSPACE }}/../extension
+ YAO_TEST_APPLICATION: ${{ github.WORKSPACE }}/../app
+ YAO_SUI_TEST_APPLICATION: ${{ github.WORKSPACE }}/../yao-startup-webapp
+
+ ## Runtime
+ YAO_RUNTIME_MIN: 3
+ YAO_RUNTIME_MAX: 6
+ YAO_RUNTIME_HEAP_LIMIT: 1500000000
+ YAO_RUNTIME_HEAP_RELEASE: 10000000
+ YAO_RUNTIME_HEAP_AVAILABLE: 550000000
+ YAO_RUNTIME_PRECOMPILE: true
+
+ # Neo4j
+ NEO4J_TEST_URL: "neo4j://localhost:7686"
+ NEO4J_TEST_USER: "neo4j"
+ NEO4J_TEST_PASS: "Yao2026Neo4j"
+
+ # Qdrant
+ QDRANT_TEST_HOST: "127.0.0.1"
+ QDRANT_TEST_PORT: "6334"
+
+ # S3
+ S3_API: ${{ secrets.S3_API }}
+ S3_ACCESS_KEY: ${{ secrets.S3_ACCESS_KEY }}
+ S3_SECRET_KEY: ${{ secrets.S3_SECRET_KEY }}
+ S3_BUCKET: ${{ secrets.S3_BUCKET }}
+ S3_PUBLIC_URL: ${{ secrets.S3_PUBLIC_URL }}
+
+
+ # === Openapi Signin Configs ===
+ ## Google
+ GOOGLE_CLIENT_ID: ${{ secrets.GOOGLE_CLIENT_ID }}
+ GOOGLE_CLIENT_SECRET: ${{ secrets.GOOGLE_CLIENT_SECRET }}
+
+ ## Microsoft
+ MICROSOFT_CLIENT_ID: ${{ secrets.MICROSOFT_CLIENT_ID }}
+ MICROSOFT_CLIENT_SECRET: ${{ secrets.MICROSOFT_CLIENT_SECRET }}
+
+ ## Apple
+ APPLE_SERVICE_ID: ${{ secrets.APPLE_SERVICE_ID }}
+ APPLE_PRIVATE_KEY_PATH: "apple/signin_client_secret_key.p8"
+ APPLE_KEY_ID: ${{ secrets.APPLE_KEY_ID }}
+ APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }}
+
+ ## Github
+ GITHUBUSER_CLIENT_ID: ${{ secrets.GITHUBUSER_CLIENT_ID }}
+ GITHUBUSER_CLIENT_SECRET: ${{ secrets.GITHUBUSER_CLIENT_SECRET }}
+
+ ## Cloudflare Turnstile
+ CLOUDFLARE_TURNSTILE_SITEKEY: ${{ secrets.CLOUDFLARE_TURNSTILE_SITEKEY }}
+ CLOUDFLARE_TURNSTILE_SECRET: ${{ secrets.CLOUDFLARE_TURNSTILE_SECRET }}
+
+jobs:
+ unit-test:
+ runs-on: ubuntu-latest
+ services:
+ qdrant:
+ image: qdrant/qdrant:latest
+ ports:
+ - 6333:6333 # HTTP API
+ - 6334:6334 # gRPC
+
+ fastembed:
+ image: yaoapp/fastembed:latest-amd64
+ env:
+ FASTEMBED_PASSWORD: Yao@2026
+ ports:
+ - 6001:8000
+
+ neo4j:
+ image: neo4j:latest
+ ports:
+ - "7687:7687"
+ env:
+ NEO4J_AUTH: neo4j/Yao2026Neo4j
+
+ mcp-everything:
+ image: yaoapp/mcp-everything:latest
+ ports:
+ - "3021:3021"
+ - "3022:3022"
+
+ strategy:
+ matrix:
+ go: [1.24]
+ db: [MySQL8.0, MySQL5.7, SQLite3]
+ redis: [4, 5, 6]
+ mongo: ["6.0"]
+ steps:
+ - name: Checkout Kun
+ uses: actions/checkout@v4
+ with:
+ repository: ${{ env.REPO_KUN }}
+ path: kun
+
+ - name: Checkout Xun
+ uses: actions/checkout@v4
+ with:
+ repository: ${{ env.REPO_XUN }}
+ path: xun
+
+ - name: Checkout Gou
+ uses: actions/checkout@v4
+ with:
+ repository: ${{ env.REPO_GOU }}
+ path: gou
+
+ - name: Checkout V8Go
+ uses: actions/checkout@v4
+ with:
+ repository: yaoapp/v8go
+ path: v8go
+
+ - name: Unzip libv8
+ run: |
+ files=$(find ./v8go -name "libv8*.zip")
+ for file in $files; do
+ dir=$(dirname "$file") # Get the directory where the ZIP file is located
+ echo "Extracting $file to directory $dir"
+ unzip -o -d $dir $file
+ rm -rf $dir/__MACOSX
+ done
+
+ - name: Checkout Demo App
+ uses: actions/checkout@v4
+ with:
+ repository: yaoapp/yao-dev-app
+ path: app
+
+ - name: Checkout Yao Startup Webapp
+ uses: actions/checkout@v4
+ with:
+ repository: yaoapp/yao-startup-webapp
+ submodules: true
+ token: ${{ secrets.YAO_TEST_TOKEN }}
+ path: yao-startup-webapp
+
+ - name: Checkout Extension
+ uses: actions/checkout@v4
+ with:
+ repository: yaoapp/yao-extensions-dev
+ path: extension
+
+ - name: Move Kun, Xun, Gou, V8Go, Extension
+ run: |
+ mv kun ../
+ mv xun ../
+ mv gou ../
+ mv v8go ../
+ mv app ../
+ mv extension ../
+ mv yao-startup-webapp ../
+ ls -l .
+ ls -l ../
+
+ - name: Checkout Code
+ uses: actions/checkout@v4
+
+ - name: Setup Apple Private Key
+ run: |
+ mkdir -p ../app/openapi/certs/apple
+ echo "${{ secrets.APPLE_PRIVATE_KEY_USER }}" > ../app/openapi/certs/apple/signin_client_secret_key.p8
+
+ - name: Setup Go ${{ matrix.go }}
+ uses: actions/setup-go@v5
+ with:
+ go-version: ${{ matrix.go }}
+
+ - name: Install FFmpeg 7.x
+ run: |
+ wget https://github.com/BtbN/FFmpeg-Builds/releases/download/latest/ffmpeg-master-latest-linux64-gpl.tar.xz
+ tar -xf ffmpeg-master-latest-linux64-gpl.tar.xz
+ sudo cp ffmpeg-master-latest-linux64-gpl/bin/ffmpeg /usr/local/bin/
+ sudo cp ffmpeg-master-latest-linux64-gpl/bin/ffprobe /usr/local/bin/
+ sudo chmod +x /usr/local/bin/ffmpeg /usr/local/bin/ffprobe
+
+ - name: Test FFmpeg
+ run: ffmpeg -version
+
+ - name: Install pdftoppm, mutool, imagemagick
+ run: |
+ sudo apt update
+ sudo apt install -y poppler-utils mupdf-tools imagemagick
+
+ - name: Test pdftoppm, mutool, imagemagick
+ run: |
+ pdftoppm -v
+ mutool -v
+ convert -version
+
+ - name: Start Redis
+ uses: supercharge/redis-github-action@1.4.0
+ with:
+ redis-version: ${{ matrix.redis }}
+
+ - name: Start MongoDB
+ uses: supercharge/mongodb-github-action@1.8.0
+ with:
+ mongodb-version: ${{ matrix.mongo }}
+ mongodb-username: root
+ mongodb-password: 123456
+ mongodb-db: test
+
+ - name: Setup MySQL8.0 (connector)
+ uses: ./.github/actions/setup-db
+ with:
+ kind: "MySQL8.0"
+ db: "test"
+ user: "test"
+ password: "123456"
+ port: "3308"
+
+ - name: Setup ${{ matrix.db }}
+ uses: ./.github/actions/setup-db
+ with:
+ kind: "${{ matrix.db }}"
+ db: "xiang"
+ user: "xiang"
+ password: ${{ secrets.UNIT_PASS }}
+
+ - name: Setup Go Tools
+ run: |
+ make tools
+
+ - name: Setup ENV & Host
+ env:
+ PASSWORD: ${{ secrets.UNIT_PASS }}
+ run: |
+ sudo echo "127.0.0.1 local.iqka.com" | sudo tee -a /etc/hosts
+ echo "YAO_DB_DRIVER=$DB_DRIVER" >> $GITHUB_ENV
+ echo "GITHUB_WORKSPACE:\n" && ls -l $GITHUB_WORKSPACE
+
+ if [ "$DB_DRIVER" = "mysql" ]; then
+ echo "YAO_DB_PRIMARY=$DB_USER:$PASSWORD@$DB_HOST" >> $GITHUB_ENV
+ elif [ "$DB_DRIVER" = "postgres" ]; then
+ echo "YAO_DB_PRIMARY=postgres://$DB_USER:$PASSWORD@$DB_HOST" >> $GITHUB_ENV
+ else
+ echo "YAO_DB_PRIMARY=$YAO_ROOT/$DB_HOST" >> $GITHUB_ENV
+ fi
+
+ echo ".:\n" && ls -l .
+ echo "..:\n" && ls -l ..
+ echo "../app:\n" && ls -l ../app
+ ping -c 1 -t 1 local.iqka.com
+
+ - name: Test Prepare
+ run: |
+ make vet
+ make fmt-check
+ make misspell-check
+
+ - name: Inspect
+ run: |
+ go run . run utils.env.Get MONGO_TEST_HOST
+ go run . run utils.env.Get REDIS_TEST_HOST
+ go run . inspect
+
+ - name: Run test
+ run: |
+ make test
+
+ - name: Codecov Report
+ uses: codecov/codecov-action@v4
+ with:
+ token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
diff --git a/.gitignore b/.gitignore
index 88dc0939..58ad42e3 100644
--- a/.gitignore
+++ b/.gitignore
@@ -44,4 +44,9 @@ db
*.sh
!get-yao.sh
!docker/base/**
-__debug*
\ No newline at end of file
+__debug*
+data/bindata.go.bak
+share/const.go.bak
+share/const.goe
+.cursor
+openapi/*.md
diff --git a/COMMERCIAL_LICENSE.md b/COMMERCIAL_LICENSE.md
index 81b0f8f0..74f46699 100644
--- a/COMMERCIAL_LICENSE.md
+++ b/COMMERCIAL_LICENSE.md
@@ -1,3 +1,5 @@
+> **DEPRECATED**: This license is no longer in effect. Please refer to the [LICENSE](LICENSE) file for current licensing terms.
+
# Commercial License for Yao
This document outlines the terms for the commercial license of the **Yao** project. While the Yao project is primarily licensed under the **Apache License, Version 2.0**, certain commercial use cases require a separate commercial license.
diff --git a/COMMERCIAL_LICENSE.zh-CN.md b/COMMERCIAL_LICENSE.zh-CN.md
index b0b081a0..9c784e5a 100644
--- a/COMMERCIAL_LICENSE.zh-CN.md
+++ b/COMMERCIAL_LICENSE.zh-CN.md
@@ -1,3 +1,5 @@
+> **已废弃**: 本许可证已不再生效。请参考 [LICENSE](LICENSE) 文件获取当前的许可条款。
+
# Yao 商业许可证
本文件概述了 **Yao** 项目的商业许可证条款。虽然 Yao 项目主要使用 **Apache 许可证 2.0 版** 授权,但某些商业使用场景需要单独的商业许可证。
@@ -12,7 +14,7 @@
### 定义:应用托管服务
- “应用托管服务”指任何涉及托管基于 Yao 的应用程序或使用 Yao 创建的 WEB 应用程序(包括 Yao 的修改版本)的服务,服务对象为第三方用户。包括但不限于:
+ "应用托管服务"指任何涉及托管基于 Yao 的应用程序或使用 Yao 创建的 WEB 应用程序(包括 Yao 的修改版本)的服务,服务对象为第三方用户。包括但不限于:
- **托管平台** 提供基于 Yao 的软件或服务给第三方用户。
- **SaaS 或 PaaS 服务**,在这些服务中,您管理并托管基于或利用 Yao 的应用程序,可能是原版或修改版。
@@ -25,7 +27,7 @@
### 定义:AI WEB 应用生成服务
- “AI WEB 应用生成服务”指任何利用 Yao(或任何分支版本或修改版本的 Yao)自动化创建具有 AI 功能的 WEB 应用程序的服务或功能。包括但不限于,为第三方用户提供以下服务:
+ "AI WEB 应用生成服务"指任何利用 Yao(或任何分支版本或修改版本的 Yao)自动化创建具有 AI 功能的 WEB 应用程序的服务或功能。包括但不限于,为第三方用户提供以下服务:
- **AI 驱动的自动化 WEB 应用开发**,该服务生成完整或部分 WEB 应用程序。
- **可定制的 WEB 解决方案**,这些解决方案由 AI 提供支持,并以 Yao 作为核心技术构建。
diff --git a/LICENSE b/LICENSE
index 261eeb9e..0795284a 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,201 +1,24 @@
- Apache License
- Version 2.0, January 2004
- http://www.apache.org/licenses/
+# Open Source License
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+Yao App Engine is licensed under a modified version of the Apache License 2.0, with the following additional conditions:
- 1. Definitions.
+1. Commercial Usage Terms:
+ Yao App Engine may be utilized commercially, A commercial license from the producer is required if:
- "License" shall mean the terms and conditions for use, reproduction,
- and distribution as defined by Sections 1 through 9 of this document.
+ a. Trademark and Branding Requirements
- "Licensor" shall mean the copyright owner or entity authorized by
- the copyright owner that is granting the License.
+ - The Yao App Engine console/application logo and copyright information must not be removed or modified
+ - Logo and copyright information can only be changed with an authorization certificate issued through Yao Developer Certificate
- "Legal Entity" shall mean the union of the acting entity and all
- other entities that control, are controlled by, or are under common
- control with that entity. For the purposes of this definition,
- "control" means (i) the power, direct or indirect, to cause the
- direction or management of such entity, whether by contract or
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
- outstanding shares, or (iii) beneficial ownership of such entity.
+ b. Authorization Verification Requirements
- "You" (or "Your") shall mean an individual or Legal Entity
- exercising permissions granted by this License.
+ - The Yao certificate verification logic, processes, and related pages (marked in code comments) must be preserved
+ - The complete Yao certificate verification system must be maintained regardless of usage purpose
- "Source" form shall mean the preferred form for making modifications,
- including but not limited to software source code, documentation
- source, and configuration files.
+2. Contributor Agreement:
+ - The producer reserves the right to modify the open-source agreement terms
+ - Contributed code may be used for commercial purposes, including cloud business operations
- "Object" form shall mean any form resulting from mechanical
- transformation or translation of a Source form, including but
- not limited to compiled object code, generated documentation,
- and conversions to other media types.
+All other rights and restrictions follow the Apache License 2.0 (http://www.apache.org/licenses/LICENSE-2.0).
- "Work" shall mean the work of authorship, whether in Source or
- Object form, made available under the License, as indicated by a
- copyright notice that is included in or attached to the work
- (an example is provided in the Appendix below).
-
- "Derivative Works" shall mean any work, whether in Source or Object
- form, that is based on (or derived from) the Work and for which the
- editorial revisions, annotations, elaborations, or other modifications
- represent, as a whole, an original work of authorship. For the purposes
- of this License, Derivative Works shall not include works that remain
- separable from, or merely link (or bind by name) to the interfaces of,
- the Work and Derivative Works thereof.
-
- "Contribution" shall mean any work of authorship, including
- the original version of the Work and any modifications or additions
- to that Work or Derivative Works thereof, that is intentionally
- submitted to Licensor for inclusion in the Work by the copyright owner
- or by an individual or Legal Entity authorized to submit on behalf of
- the copyright owner. For the purposes of this definition, "submitted"
- means any form of electronic, verbal, or written communication sent
- to the Licensor or its representatives, including but not limited to
- communication on electronic mailing lists, source code control systems,
- and issue tracking systems that are managed by, or on behalf of, the
- Licensor for the purpose of discussing and improving the Work, but
- excluding communication that is conspicuously marked or otherwise
- designated in writing by the copyright owner as "Not a Contribution."
-
- "Contributor" shall mean Licensor and any individual or Legal Entity
- on behalf of whom a Contribution has been received by Licensor and
- subsequently incorporated within the Work.
-
- 2. Grant of Copyright License. Subject to the terms and conditions of
- this License, each Contributor hereby grants to You a perpetual,
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
- copyright license to reproduce, prepare Derivative Works of,
- publicly display, publicly perform, sublicense, and distribute the
- Work and such Derivative Works in Source or Object form.
-
- 3. Grant of Patent License. Subject to the terms and conditions of
- this License, each Contributor hereby grants to You a perpetual,
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
- (except as stated in this section) patent license to make, have made,
- use, offer to sell, sell, import, and otherwise transfer the Work,
- where such license applies only to those patent claims licensable
- by such Contributor that are necessarily infringed by their
- Contribution(s) alone or by combination of their Contribution(s)
- with the Work to which such Contribution(s) was submitted. If You
- institute patent litigation against any entity (including a
- cross-claim or counterclaim in a lawsuit) alleging that the Work
- or a Contribution incorporated within the Work constitutes direct
- or contributory patent infringement, then any patent licenses
- granted to You under this License for that Work shall terminate
- as of the date such litigation is filed.
-
- 4. Redistribution. You may reproduce and distribute copies of the
- Work or Derivative Works thereof in any medium, with or without
- modifications, and in Source or Object form, provided that You
- meet the following conditions:
-
- (a) You must give any other recipients of the Work or
- Derivative Works a copy of this License; and
-
- (b) You must cause any modified files to carry prominent notices
- stating that You changed the files; and
-
- (c) You must retain, in the Source form of any Derivative Works
- that You distribute, all copyright, patent, trademark, and
- attribution notices from the Source form of the Work,
- excluding those notices that do not pertain to any part of
- the Derivative Works; and
-
- (d) If the Work includes a "NOTICE" text file as part of its
- distribution, then any Derivative Works that You distribute must
- include a readable copy of the attribution notices contained
- within such NOTICE file, excluding those notices that do not
- pertain to any part of the Derivative Works, in at least one
- of the following places: within a NOTICE text file distributed
- as part of the Derivative Works; within the Source form or
- documentation, if provided along with the Derivative Works; or,
- within a display generated by the Derivative Works, if and
- wherever such third-party notices normally appear. The contents
- of the NOTICE file are for informational purposes only and
- do not modify the License. You may add Your own attribution
- notices within Derivative Works that You distribute, alongside
- or as an addendum to the NOTICE text from the Work, provided
- that such additional attribution notices cannot be construed
- as modifying the License.
-
- You may add Your own copyright statement to Your modifications and
- may provide additional or different license terms and conditions
- for use, reproduction, or distribution of Your modifications, or
- for any such Derivative Works as a whole, provided Your use,
- reproduction, and distribution of the Work otherwise complies with
- the conditions stated in this License.
-
- 5. Submission of Contributions. Unless You explicitly state otherwise,
- any Contribution intentionally submitted for inclusion in the Work
- by You to the Licensor shall be under the terms and conditions of
- this License, without any additional terms or conditions.
- Notwithstanding the above, nothing herein shall supersede or modify
- the terms of any separate license agreement you may have executed
- with Licensor regarding such Contributions.
-
- 6. Trademarks. This License does not grant permission to use the trade
- names, trademarks, service marks, or product names of the Licensor,
- except as required for reasonable and customary use in describing the
- origin of the Work and reproducing the content of the NOTICE file.
-
- 7. Disclaimer of Warranty. Unless required by applicable law or
- agreed to in writing, Licensor provides the Work (and each
- Contributor provides its Contributions) on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
- implied, including, without limitation, any warranties or conditions
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
- PARTICULAR PURPOSE. You are solely responsible for determining the
- appropriateness of using or redistributing the Work and assume any
- risks associated with Your exercise of permissions under this License.
-
- 8. Limitation of Liability. In no event and under no legal theory,
- whether in tort (including negligence), contract, or otherwise,
- unless required by applicable law (such as deliberate and grossly
- negligent acts) or agreed to in writing, shall any Contributor be
- liable to You for damages, including any direct, indirect, special,
- incidental, or consequential damages of any character arising as a
- result of this License or out of the use or inability to use the
- Work (including but not limited to damages for loss of goodwill,
- work stoppage, computer failure or malfunction, or any and all
- other commercial damages or losses), even if such Contributor
- has been advised of the possibility of such damages.
-
- 9. Accepting Warranty or Additional Liability. While redistributing
- the Work or Derivative Works thereof, You may choose to offer,
- and charge a fee for, acceptance of support, warranty, indemnity,
- or other liability obligations and/or rights consistent with this
- License. However, in accepting such obligations, You may act only
- on Your own behalf and on Your sole responsibility, not on behalf
- of any other Contributor, and only if You agree to indemnify,
- defend, and hold each Contributor harmless for any liability
- incurred by, or claims asserted against, such Contributor by reason
- of your accepting any such warranty or additional liability.
-
- END OF TERMS AND CONDITIONS
-
- APPENDIX: How to apply the Apache License to your work.
-
- To apply the Apache License to your work, attach the following
- boilerplate notice, with the fields enclosed by brackets "[]"
- replaced with your own identifying information. (Don't include
- the brackets!) The text should be enclosed in the appropriate
- comment syntax for the file format. We also recommend that a
- file or class name and description of purpose be included on the
- same "printed page" as the copyright notice for easier
- identification within third-party archives.
-
- Copyright [yyyy] [name of copyright owner]
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
+© 2025 Infinite Wisdom Software.
diff --git a/Makefile b/Makefile
index 5d9adca9..3940f32d 100644
--- a/Makefile
+++ b/Makefile
@@ -129,7 +129,7 @@ bindata:
cp -r .tmp/yao-init .tmp/data/init
cp -r ui .tmp/data/
cp -r ui .tmp/data/public
- cp -r xgen .tmp/data/
+ cp -r cui .tmp/data/
cp -r yao .tmp/data/
cp -r sui/libsui .tmp/data/
find .tmp/data -name ".DS_Store" -type f -delete
@@ -142,11 +142,11 @@ bindata:
artifacts-linux: clean
mkdir -p dist/release
-# Building XGEN v1.0
+# Building CUI v1.0
export NODE_ENV=production
-# rm -f ../xgen-v1.0/pnpm-lock.yaml
- echo "BASE=__yao_admin_root" > ../xgen-v1.0/packages/xgen/.env
- cd ../xgen-v1.0 && pnpm install --no-frozen-lockfile && pnpm run build
+# rm -f ../cui-v1.0/pnpm-lock.yaml
+ echo "BASE=__yao_admin_root" > ../cui-v1.0/packages/cui/.env
+ cd ../cui-v1.0 && pnpm install --no-frozen-lockfile && pnpm run build
# Init Application
cd ../yao-init && rm -rf .git
@@ -162,11 +162,11 @@ artifacts-linux: clean
# rm -rf .tmp/yao-builder-latest.tar.gz
# Packing
-# ** XGEN will be renamed to DUI in the feature. and move to the new repository. **
-# ** new repository: https://github.com/YaoApp/dui.git **
- mkdir -p .tmp/data/xgen
+# ** CUI will be renamed to CUI in the feature. and move to the new repository. **
+# ** new repository: https://github.com/YaoApp/cui.git **
+ mkdir -p .tmp/data/cui
cp -r ./ui .tmp/data/ui
- cp -r ../xgen-v1.0/packages/xgen/dist .tmp/data/xgen/v1.0
+ cp -r ../cui-v1.0/packages/cui/dist .tmp/data/cui/v1.0
cp -r ../yao-init .tmp/data/init
cp -r yao .tmp/data/
cp -r sui/libsui .tmp/data/
@@ -175,6 +175,8 @@ artifacts-linux: clean
# Replace PRVERSION
sed -ie "s/const PRVERSION = \"DEV\"/const PRVERSION = \"${COMMIT}-${NOW}\"/g" share/const.go
+ @CUI_COMMIT=$$(cd ../cui-v1.0 && git log | head -n 1 | awk '{print substr($$2, 0, 12)}') && \
+ sed -ie "s/const PRCUI = \"DEV\"/const PRCUI = \"$$CUI_COMMIT-${NOW}\"/g" share/const.go
# Making artifacts
mkdir -p dist
@@ -197,11 +199,11 @@ artifacts-macos: clean
mkdir -p dist/release
-# Building XGEN v1.0
+# Building CUI v1.0
export NODE_ENV=production
-# rm -f ../xgen-v1.0/pnpm-lock.yaml
- echo "BASE=__yao_admin_root" > ../xgen-v1.0/packages/xgen/.env
- cd ../xgen-v1.0 && pnpm install --no-frozen-lockfile && pnpm run build
+# rm -f ../cui-v1.0/pnpm-lock.yaml
+ echo "BASE=__yao_admin_root" > ../cui-v1.0/packages/cui/.env
+ cd ../cui-v1.0 && pnpm install --no-frozen-lockfile && pnpm run build
# Init Application
cd ../yao-init && rm -rf .git
@@ -209,19 +211,10 @@ artifacts-macos: clean
cd ../yao-init && rm -rf LICENSE
# cd ../yao-init && rm -rf README.md
-# Yao Builder
-# Remove Yao Builder - DUI PageBuilder component will provide online design for pure HTML pages or SUI pages in the future.
-# mkdir -p .tmp/data/builder
-# curl -o .tmp/yao-builder-latest.tar.gz https://release-sv.yaoapps.com/archives/yao-builder-latest.tar.gz
-# tar -zxvf .tmp/yao-builder-latest.tar.gz -C .tmp/data/builder
-# rm -rf .tmp/yao-builder-latest.tar.gz
-
# Packing
-# ** XGEN will be renamed to DUI in the feature. and move to the new repository. **
-# ** new repository: https://github.com/YaoApp/dui.git **
- mkdir -p .tmp/data/xgen
+ mkdir -p .tmp/data/cui
cp -r ./ui .tmp/data/ui
- cp -r ../xgen-v1.0/packages/xgen/dist .tmp/data/xgen/v1.0
+ cp -r ../cui-v1.0/packages/cui/dist .tmp/data/cui/v1.0
cp -r ../yao-init .tmp/data/init
cp -r yao .tmp/data/
cp -r sui/libsui .tmp/data/
@@ -230,6 +223,8 @@ artifacts-macos: clean
# Replace PRVERSION
sed -ie "s/const PRVERSION = \"DEV\"/const PRVERSION = \"${COMMIT}-${NOW}\"/g" share/const.go
+ @CUI_COMMIT=$$(cd ../cui-v1.0 && git log | head -n 1 | awk '{print substr($$2, 0, 12)}') && \
+ sed -ie "s/const PRCUI = \"DEV\"/const PRCUI = \"$$CUI_COMMIT-${NOW}\"/g" share/const.go
# Making artifacts
mkdir -p dist
@@ -242,9 +237,6 @@ artifacts-macos: clean
ls -l dist/release/
dist/release/yao-${VERSION}-dev-darwin-amd64 version
-# Reset const
-# cp -f share/const.goe share/const.go
-# rm -f share/const.goe
.PHONY: debug
debug: clean
@@ -275,18 +267,19 @@ release: clean
mkdir -p dist/release
mkdir .tmp
-# Building XGEN v0.9
- mkdir -p .tmp/xgen/v0.9/dist
- echo "XGEN v0.9" > .tmp/xgen/v0.9/dist/index.html
+# Building CUI v0.9
+ mkdir -p .tmp/cui/v0.9/dist
+ echo "CUI v0.9" > .tmp/cui/v0.9/dist/index.html
-# Building XGEN v1.0
-# ** XGEN will be renamed to DUI in the feature. and move to the new repository. **
-# ** new repository: https://github.com/YaoApp/dui.git **
+# Building CUI v1.0
+# ** CUI will be renamed to CUI in the feature. and move to the new repository. **
+# ** new repository: https://github.com/YaoApp/cui.git **
export NODE_ENV=production
- git clone https://github.com/sjzsdu/xgen.git .tmp/xgen/v1.0
-# cd .tmp/xgen/v1.0 && git checkout 5002c3fded585aaa69a4366135b415ea3234964e
- echo "BASE=__yao_admin_root" > .tmp/xgen/v1.0/packages/xgen/.env
- cd .tmp/xgen/v1.0 && pnpm install --no-frozen-lockfile && pnpm run build
+ git clone https://github.com/YaoApp/cui.git .tmp/cui/v1.0
+# cd .tmp/cui/v1.0 && git checkout 5002c3fded585aaa69a4366135b415ea3234964e
+ echo "BASE=__yao_admin_root" > .tmp/cui/v1.0/packages/cui/.env
+ cd .tmp/cui/v1.0 && pnpm install --no-frozen-lockfile && pnpm run build
+ CUI_COMMIT=$$(cd .tmp/cui/v1.0 && git rev-parse --short HEAD)
# Checkout init
git clone https://github.com/YaoApp/yao-init.git .tmp/yao-init
@@ -303,57 +296,57 @@ release: clean
# rm -rf .tmp/yao-builder-latest.tar.gz
# Packing
- mkdir -p .tmp/data/xgen
+ cp -f data/bindata.go data/bindata.go.bak
+ mkdir -p .tmp/data/cui
cp -r ./ui .tmp/data/ui
cp -r ./yao .tmp/data/yao
cp -r ./sui/libsui .tmp/data/libsui
- cp -r .tmp/xgen/v0.9/dist .tmp/data/xgen/v0.9
- cp -r .tmp/xgen/v1.0/packages/xgen/dist .tmp/data/xgen/v1.0
+ cp -r .tmp/cui/v0.9/dist .tmp/data/cui/v0.9
+ cp -r .tmp/cui/v1.0/packages/cui/dist .tmp/data/cui/v1.0
cp -r .tmp/yao-init .tmp/data/init
go-bindata -fs -pkg data -o data/bindata.go -prefix ".tmp/data/" .tmp/data/...
- rm -rf .tmp/data
- rm -rf .tmp/xgen
+
# Replace PRVERSION
+ cp -f share/const.go share/const.go.bak
sed -ie "s/const PRVERSION = \"DEV\"/const PRVERSION = \"${COMMIT}-${NOW}\"/g" share/const.go
+ @CUI_COMMIT=$$(cd .tmp/cui/v1.0 && git log | head -n 1 | awk '{print substr($$2, 0, 12)}') && \
+ sed -ie "s/const PRCUI = \"DEV\"/const PRCUI = \"$$CUI_COMMIT-${NOW}\"/g" share/const.go
# Making artifacts
mkdir -p dist
CGO_ENABLED=1 go build -v -o dist/release/yao
chmod +x dist/release/yao
+# Clean up and restore bindata.go and const.go
+ cp data/bindata.go.bak data/bindata.go
+ cp share/const.go.bak share/const.go
+ rm data/bindata.go.bak
+ rm share/const.go.bak
+ rm -rf .tmp
+
# MacOS Application Signing
@if [ "$(OS)" = "Darwin" ]; then \
codesign --deep --force --verify --verbose --sign "${APPLE_SIGN}" dist/release/yao ; \
fi
-# Reset const
- cp -f share/const.goe share/const.go
- rm share/const.goe
.PHONY: linux-release
linux-release: clean
mkdir -p dist/release
mkdir .tmp
-# Building XGEN v0.9
- git clone https://github.com/YaoApp/xgen-deprecated.git .tmp/xgen/v0.9
- sed -ie "s/url('\/icon/url('\/xiang\/icon/g" .tmp/xgen/v0.9/public/icon/md_icon.css
- cd .tmp/xgen/v0.9 && yarn install && yarn build
- mkdir -p .tmp/xgen/v0.9
- cp -r xgen/v0.9 .tmp/xgen/v0.9/dist
-
-# Building XGEN v1.0
-# ** XGEN will be renamed to DUI in the feature. and move to the new repository. **
-# ** new repository: https://github.com/YaoApp/dui.git **
+# Building CUI v1.0
+# ** CUI will be renamed to CUI in the feature. and move to the new repository. **
+# ** new repository: https://github.com/YaoApp/cui.git **
export NODE_ENV=production
- git clone https://github.com/sjzsdu/xgen.git .tmp/xgen/v1.0
- rm -f .tmp/xgen/v1.0/pnpm-lock.yaml
- echo "BASE=__yao_admin_root" > .tmp/xgen/v1.0/packages/xgen/.env
- cd .tmp/xgen/v1.0 && pnpm install --no-frozen-lockfile && pnpm run build
+ git clone https://github.com/YaoApp/cui.git .tmp/cui/v1.0
+ rm -f .tmp/cui/v1.0/pnpm-lock.yaml
+ echo "BASE=__yao_admin_root" > .tmp/cui/v1.0/packages/cui/.env
+ cd .tmp/cui/v1.0 && pnpm install --no-frozen-lockfile && pnpm run build
# Setup UI
- cd .tmp/xgen/v1.0/packages/setup && pnpm install --no-frozen-lockfile && pnpm run build
+ cd .tmp/cui/v1.0/packages/setup && pnpm install --no-frozen-lockfile && pnpm run build
# Checkout init
@@ -371,16 +364,16 @@ linux-release: clean
# rm -rf .tmp/yao-builder-latest.tar.gz
# Packing
- mkdir -p .tmp/data/xgen
+ mkdir -p .tmp/data/cui
cp -r ./ui .tmp/data/ui
cp -r ./yao .tmp/data/yao
- cp -r .tmp/xgen/v0.9/dist .tmp/data/xgen/v0.9
- cp -r .tmp/xgen/v1.0/packages/setup/build .tmp/data/xgen/setup
- cp -r .tmp/xgen/v1.0/packages/xgen/dist .tmp/data/xgen/v1.0
+ cp -r .tmp/cui/v0.9/dist .tmp/data/cui/v0.9
+ cp -r .tmp/cui/v1.0/packages/setup/build .tmp/data/cui/setup
+ cp -r .tmp/cui/v1.0/packages/cui/dist .tmp/data/cui/v1.0
cp -r .tmp/yao-init .tmp/data/init
go-bindata -fs -pkg data -o data/bindata.go -prefix ".tmp/data/" .tmp/data/...
rm -rf .tmp/data
- rm -rf .tmp/xgen
+ rm -rf .tmp/cui
# Making artifacts
mkdir -p dist
diff --git a/aigc/load.go b/aigc/load.go
index c650a164..a7995689 100644
--- a/aigc/load.go
+++ b/aigc/load.go
@@ -11,9 +11,19 @@ import (
// Load load AIGC
func Load(cfg config.Config) error {
+
+ // Ignore if the aigcs directory does not exist
+ exists, err := application.App.Exists("aigcs")
+ if err != nil {
+ return err
+ }
+ if !exists {
+ return nil
+ }
+
exts := []string{"*.ai.yml", "*.ai.yaml"}
messages := []string{}
- err := application.App.Walk("aigcs", func(root, file string, isdir bool) error {
+ err = application.App.Walk("aigcs", func(root, file string, isdir bool) error {
if isdir {
return nil
}
diff --git a/api/api.go b/api/api.go
index 99297e99..16d2b78f 100644
--- a/api/api.go
+++ b/api/api.go
@@ -14,8 +14,17 @@ import (
func Load(cfg config.Config) error {
messages := []string{}
+ // Ignore if the apis directory does not exist
+ exists, err := application.App.Exists("apis")
+ if err != nil {
+ return err
+ }
+ if !exists {
+ return nil
+ }
+
exts := []string{"*.http.yao", "*.http.json", "*.http.jsonc"}
- err := application.App.Walk("apis", func(root, file string, isdir bool) error {
+ err = application.App.Walk("apis", func(root, file string, isdir bool) error {
if isdir {
return nil
}
diff --git a/attachment/README.md b/attachment/README.md
new file mode 100644
index 00000000..661dd3ab
--- /dev/null
+++ b/attachment/README.md
@@ -0,0 +1,664 @@
+# Attachment Package
+
+A comprehensive file upload package for Go that supports chunked uploads, file format validation, compression, and multiple storage backends.
+
+## Features
+
+- **Multiple Storage Backends**: Local filesystem and S3-compatible storage
+- **Chunked Upload Support**: Handle large files with standard HTTP Content-Range headers
+- **File Deduplication**: Content-based fingerprinting to avoid duplicate uploads
+- **File Compression**:
+ - Gzip compression for any file type
+ - Image compression with configurable size limits
+- **File Validation**:
+ - File size limits
+ - MIME type and extension validation
+ - Wildcard pattern support (e.g., `image/*`, `text/*`)
+- **Flexible File Organization**: Hierarchical storage with multi-level group organization
+- **Multiple Read Methods**: Stream, bytes, and base64 encoding
+- **Global Manager Registry**: Support for registering and accessing managers globally
+- **Upload Status Tracking**: Track upload progress with status field
+- **Content Synchronization**: Support for synchronized uploads with Content-Sync header
+
+## Installation
+
+```bash
+go get github.com/yaoapp/yao/neo/attachment
+```
+
+## Quick Start
+
+### Basic Usage
+
+```go
+package main
+
+import (
+ "context"
+ "strings"
+ "mime/multipart"
+ "github.com/yaoapp/yao/neo/attachment"
+)
+
+func main() {
+ // Create a manager with default settings
+ manager, err := attachment.RegisterDefault("uploads")
+ if err != nil {
+ panic(err)
+ }
+
+ // Or create a custom manager
+ customManager, err := attachment.New(attachment.ManagerOption{
+ Driver: "local",
+ MaxSize: "20M",
+ ChunkSize: "2M",
+ AllowedTypes: []string{"text/*", "image/*", ".pdf"},
+ Options: map[string]interface{}{
+ "path": "/var/uploads",
+ },
+ })
+ if err != nil {
+ panic(err)
+ }
+
+ // Upload a file
+ content := "Hello, World!"
+ fileHeader := &attachment.FileHeader{
+ FileHeader: &multipart.FileHeader{
+ Filename: "hello.txt",
+ Size: int64(len(content)),
+ Header: make(map[string][]string),
+ },
+ }
+ fileHeader.Header.Set("Content-Type", "text/plain")
+
+ option := attachment.UploadOption{
+ Groups: []string{"user123", "chat456"}, // Multi-level groups (e.g., user, chat, knowledge, etc.)
+ OriginalFilename: "my_document.txt", // Preserve original filename
+ }
+
+ file, err := manager.Upload(context.Background(), fileHeader, strings.NewReader(content), option)
+ if err != nil {
+ panic(err)
+ }
+
+ // Check upload status
+ if file.Status == "uploaded" {
+ fmt.Printf("File uploaded successfully: %s\n", file.ID)
+ }
+
+ // Read the file back
+ data, err := manager.Read(context.Background(), file.ID)
+ if err != nil {
+ panic(err)
+ }
+
+ println(string(data)) // Output: Hello, World!
+}
+```
+
+### Storage Backends
+
+#### Local Storage
+
+```go
+manager, err := attachment.New(attachment.ManagerOption{
+ Driver: "local",
+ MaxSize: "20M",
+ Options: map[string]interface{}{
+ "path": "/var/uploads",
+ "base_url": "https://example.com/files",
+ },
+})
+```
+
+#### S3 Storage
+
+```go
+manager, err := attachment.New(attachment.ManagerOption{
+ Driver: "s3",
+ MaxSize: "100M",
+ Options: map[string]interface{}{
+ "endpoint": "https://s3.amazonaws.com",
+ "region": "us-east-1",
+ "key": "your-access-key",
+ "secret": "your-secret-key",
+ "bucket": "your-bucket-name",
+ "prefix": "attachments/",
+ },
+})
+```
+
+### Chunked Upload
+
+For large files, you can upload in chunks using standard HTTP Content-Range headers:
+
+```go
+// Upload chunks
+totalSize := int64(1024000) // 1MB file
+chunkSize := int64(1024) // 1KB chunks
+uid := "unique-file-id-123"
+
+for start := int64(0); start < totalSize; start += chunkSize {
+ end := start + chunkSize - 1
+ if end >= totalSize {
+ end = totalSize - 1
+ }
+
+ chunkData := make([]byte, end-start+1)
+ // ... fill chunkData with actual data ...
+
+ chunkHeader := &attachment.FileHeader{
+ FileHeader: &multipart.FileHeader{
+ Filename: "large_file.zip",
+ Size: end - start + 1,
+ Header: make(map[string][]string),
+ },
+ }
+ chunkHeader.Header.Set("Content-Type", "application/zip")
+ chunkHeader.Header.Set("Content-Range", fmt.Sprintf("bytes %d-%d/%d", start, end, totalSize))
+ chunkHeader.Header.Set("Content-Uid", uid)
+
+ file, err := manager.Upload(ctx, chunkHeader, bytes.NewReader(chunkData), option)
+ if err != nil {
+ return err
+ }
+
+ // File is complete when the last chunk is uploaded
+ if chunkHeader.Complete() {
+ fmt.Printf("Upload complete: %s\n", file.ID)
+ break
+ }
+}
+```
+
+### Compression
+
+#### Gzip Compression
+
+```go
+option := attachment.UploadOption{
+ Gzip: true, // Enable gzip compression
+}
+
+file, err := manager.Upload(ctx, fileHeader, reader, option)
+```
+
+#### Image Compression
+
+```go
+option := attachment.UploadOption{
+ CompressImage: true,
+ CompressSize: 1920, // Max dimension in pixels (default: 1920)
+}
+
+file, err := manager.Upload(ctx, imageHeader, imageReader, option)
+```
+
+### Multi-level Groups
+
+The `Groups` field supports hierarchical file organization:
+
+```go
+// Single level grouping
+option := attachment.UploadOption{
+ Groups: []string{"users"},
+}
+
+// Multi-level grouping
+option := attachment.UploadOption{
+ Groups: []string{"users", "user123", "chats", "chat456"},
+}
+
+// Knowledge base organization
+option := attachment.UploadOption{
+ Groups: []string{"knowledge", "documents", "technical"},
+}
+```
+
+This creates nested directory structures for better organization and access control.
+
+### File Validation
+
+#### Size Limits
+
+```go
+manager, err := attachment.New(attachment.ManagerOption{
+ MaxSize: "20M", // Maximum file size
+ // Supports: B, K, M, G (e.g., "1024B", "2K", "10M", "1G")
+})
+```
+
+#### Type Validation
+
+```go
+manager, err := attachment.New(attachment.ManagerOption{
+ AllowedTypes: []string{
+ "text/*", // All text types
+ "image/*", // All image types
+ "application/pdf", // Specific MIME type
+ ".txt", // File extension
+ ".jpg", // File extension
+ },
+})
+```
+
+### Reading Files
+
+#### Stream Reading
+
+```go
+response, err := manager.Download(ctx, fileID)
+if err != nil {
+ return err
+}
+defer response.Reader.Close()
+
+// Use response.Reader as io.ReadCloser
+// response.ContentType contains the MIME type
+// response.Extension contains the file extension
+```
+
+#### Read as Bytes
+
+```go
+data, err := manager.Read(ctx, fileID)
+if err != nil {
+ return err
+}
+// data is []byte
+```
+
+#### Read as Base64
+
+```go
+base64Data, err := manager.ReadBase64(ctx, fileID)
+if err != nil {
+ return err
+}
+// base64Data is string
+```
+
+### Global Managers
+
+You can register managers globally for easy access:
+
+```go
+// Register default manager with sensible defaults
+attachment.RegisterDefault("main")
+
+// Register custom managers
+attachment.Register("local", "local", attachment.ManagerOption{
+ Driver: "local",
+ Options: map[string]interface{}{
+ "path": "/var/uploads",
+ },
+})
+
+attachment.Register("s3", "s3", attachment.ManagerOption{
+ Driver: "s3",
+ Options: map[string]interface{}{
+ "bucket": "my-bucket",
+ "key": "access-key",
+ "secret": "secret-key",
+ },
+})
+
+// Use global managers
+localManager := attachment.Managers["local"]
+s3Manager := attachment.Managers["s3"]
+defaultManager := attachment.Managers["main"]
+```
+
+## File Organization
+
+Files are organized in a hierarchical structure:
+
+```
+attachments/
+├── 20240101/ # Date (YYYYMMDD)
+│ └── user123/ # First level group (optional)
+│ └── chat456/ # Second level group (optional)
+│ └── knowledge/ # Additional group levels (optional)
+│ └── ab/ # First 2 chars of hash
+│ └── cd/ # Next 2 chars of hash
+│ └── abcdef12.txt # Hash + extension
+```
+
+The file ID generation includes:
+
+- Date prefix for organization
+- Multi-level groups for access control and organization
+- Content hash for deduplication
+- Original file extension
+
+## API Reference
+
+### Manager
+
+#### `New(option ManagerOption) (*Manager, error)`
+
+Creates a new attachment manager.
+
+#### `Register(name string, driver string, option ManagerOption) (*Manager, error)`
+
+Registers a global attachment manager.
+
+#### `Upload(ctx context.Context, fileheader *FileHeader, reader io.Reader, option UploadOption) (*File, error)`
+
+Uploads a file (supports chunked upload).
+
+#### `Download(ctx context.Context, fileID string) (*FileResponse, error)`
+
+Downloads a file as a stream.
+
+#### `Read(ctx context.Context, fileID string) ([]byte, error)`
+
+Reads a file as bytes.
+
+#### `ReadBase64(ctx context.Context, fileID string) (string, error)`
+
+Reads a file as base64 encoded string.
+
+### Storage Interface
+
+All storage backends implement the following interface:
+
+```go
+type Storage interface {
+ Upload(ctx context.Context, fileID string, reader io.Reader, contentType string) (string, error)
+ UploadChunk(ctx context.Context, fileID string, chunkIndex int, reader io.Reader, contentType string) error
+ MergeChunks(ctx context.Context, fileID string, totalChunks int) error
+ Download(ctx context.Context, fileID string) (io.ReadCloser, string, error)
+ Reader(ctx context.Context, fileID string) (io.ReadCloser, error)
+ URL(ctx context.Context, fileID string) string
+ Exists(ctx context.Context, fileID string) bool
+ Delete(ctx context.Context, fileID string) error
+}
+```
+
+### Types
+
+#### `ManagerOption`
+
+Configuration for creating a manager:
+
+- `Driver`: "local" or "s3"
+- `MaxSize`: Maximum file size (e.g., "20M")
+- `ChunkSize`: Chunk size for uploads (e.g., "2M")
+- `AllowedTypes`: Array of allowed MIME types/extensions
+- `Options`: Driver-specific options
+
+#### `UploadOption`
+
+Options for file upload:
+
+- `CompressImage`: Enable image compression
+- `CompressSize`: Maximum image dimension (default: 1920)
+- `Gzip`: Enable gzip compression
+- `Groups`: Multi-level group identifiers for hierarchical file organization (e.g., []string{"user123", "chat456", "knowledge"})
+- `OriginalFilename`: Original filename to preserve (avoids encoding issues)
+
+#### `File`
+
+Uploaded file information:
+
+- `ID`: Unique file identifier
+- `Filename`: Original filename
+- `ContentType`: MIME type
+- `Bytes`: File size
+- `CreatedAt`: Upload timestamp
+- `Status`: Upload status ("uploading", "uploaded", "indexing", "indexed", "upload_failed", "index_failed")
+
+#### `FileResponse`
+
+Download response:
+
+- `Reader`: io.ReadCloser for file content
+- `ContentType`: MIME type
+- `Extension`: File extension
+
+## Chunked Upload Details
+
+The package supports chunked uploads using standard HTTP headers:
+
+- `Content-Range`: Specifies byte range (e.g., "bytes 0-1023/2048")
+- `Content-Uid`: Unique identifier for the file being uploaded
+
+### Chunk Index Calculation
+
+The package uses a standard chunk size (1024 bytes by default) to calculate chunk indices consistently. This ensures proper chunk ordering during merge operations.
+
+### Content Type Preservation
+
+For chunked uploads, the content type is preserved from the first chunk and applied to the final merged file, ensuring proper MIME type handling across all storage backends.
+
+## Error Handling
+
+The package returns descriptive errors for common issues:
+
+- File size exceeds limit
+- Unsupported file type
+- Storage backend errors
+- Invalid chunk information
+- Missing required configuration
+
+## Testing
+
+Run the tests:
+
+```bash
+# Run all tests
+go test ./...
+
+# Run with S3 credentials (optional)
+export S3_ACCESS_KEY="your-key"
+export S3_SECRET_KEY="your-secret"
+export S3_BUCKET="your-bucket"
+export S3_API="https://your-s3-endpoint"
+go test ./...
+```
+
+The package includes comprehensive tests for:
+
+- Basic file upload/download
+- Chunked uploads with content type preservation
+- Compression (gzip and image)
+- File validation (size, type, wildcards)
+- Multiple storage backends (local and S3)
+- Error handling and edge cases
+
+### Test Coverage
+
+- **Manager Tests**: Upload, download, validation, compression
+- **Local Storage Tests**: File operations, chunked uploads, directory management
+- **S3 Storage Tests**: S3 operations, chunked uploads, presigned URLs (requires credentials)
+
+## Performance Considerations
+
+- **Chunked Uploads**: Use appropriate chunk sizes (1-5MB) for optimal performance
+- **Image Compression**: Automatically resizes large images to reduce storage costs
+- **Gzip Compression**: Reduces storage size for text-based files
+- **Content Type Detection**: Efficient MIME type detection and preservation
+
+## Security Features
+
+- **File Type Validation**: Prevents upload of unauthorized file types
+- **Size Limits**: Configurable file size restrictions
+- **Path Sanitization**: Secure file path generation
+- **Access Control**: Multi-level hierarchical file organization
+
+## License
+
+This package is part of the Yao project and follows the same license terms.
+
+### File Deduplication with Fingerprints
+
+The package supports file deduplication using content fingerprints:
+
+```go
+// Set a content fingerprint to enable deduplication
+fileHeader := &attachment.FileHeader{
+ FileHeader: &multipart.FileHeader{
+ Filename: "document.pdf",
+ Size: fileSize,
+ Header: make(map[string][]string),
+ },
+}
+fileHeader.Header.Set("Content-Type", "application/pdf")
+fileHeader.Header.Set("Content-Fingerprint", "sha256:abcdef123456") // Content-based hash
+
+file, err := manager.Upload(ctx, fileHeader, reader, option)
+```
+
+### Content Synchronization
+
+For synchronized uploads across multiple clients:
+
+```go
+// Enable content synchronization
+fileHeader.Header.Set("Content-Sync", "true")
+
+// Each client can upload the same content with the same fingerprint
+// The system will deduplicate based on the content fingerprint
+```
+
+### Chunked Upload with Enhanced Headers
+
+For large files, you can upload in chunks using standard HTTP Content-Range headers with additional metadata:
+
+```go
+// Upload chunks with unique identifier and fingerprint
+totalSize := int64(1024000) // 1MB file
+chunkSize := int64(1024) // 1KB chunks
+uid := "unique-file-id-123"
+fingerprint := "sha256:content-hash-here"
+
+for start := int64(0); start < totalSize; start += chunkSize {
+ end := start + chunkSize - 1
+ if end >= totalSize {
+ end = totalSize - 1
+ }
+
+ chunkData := make([]byte, end-start+1)
+ // ... fill chunkData with actual data ...
+
+ chunkHeader := &attachment.FileHeader{
+ FileHeader: &multipart.FileHeader{
+ Filename: "large_file.zip",
+ Size: end - start + 1,
+ Header: make(map[string][]string),
+ },
+ }
+ chunkHeader.Header.Set("Content-Type", "application/zip")
+ chunkHeader.Header.Set("Content-Range", fmt.Sprintf("bytes %d-%d/%d", start, end, totalSize))
+ chunkHeader.Header.Set("Content-Uid", uid)
+ chunkHeader.Header.Set("Content-Fingerprint", fingerprint)
+ chunkHeader.Header.Set("Content-Sync", "true") // Enable synchronization
+
+ option := attachment.UploadOption{
+ Groups: []string{"user123", "chat456"}, // Multi-level groups
+ OriginalFilename: "my_large_file.zip", // Preserve original name
+ }
+
+ file, err := manager.Upload(ctx, chunkHeader, bytes.NewReader(chunkData), option)
+ if err != nil {
+ return err
+ }
+
+ // Check if upload is complete
+ if file.Status == "uploaded" {
+ fmt.Printf("Upload complete: %s\n", file.ID)
+ break
+ } else if file.Status == "uploading" {
+ fmt.Printf("Chunk uploaded, progress: %d/%d\n", chunkHeader.GetChunkSize(), chunkHeader.GetTotalSize())
+ }
+}
+```
+
+### FileHeader Methods
+
+The `FileHeader` type provides several utility methods:
+
+```go
+// Get unique identifier for chunked uploads
+uid := fileHeader.UID()
+
+// Get content fingerprint for deduplication
+fingerprint := fileHeader.Fingerprint()
+
+// Get byte range for chunked uploads
+rangeHeader := fileHeader.Range()
+
+// Check if synchronization is enabled
+isSync := fileHeader.Sync()
+
+// Check if this is a chunked upload
+isChunk := fileHeader.IsChunk()
+
+// Check if upload is complete (for chunked uploads)
+isComplete := fileHeader.Complete()
+
+// Get detailed chunk information
+start, end, total, err := fileHeader.GetChunkInfo()
+
+// Get total file size (for chunked uploads)
+totalSize := fileHeader.GetTotalSize()
+
+// Get current chunk size
+chunkSize := fileHeader.GetChunkSize()
+```
+
+## File Headers and Metadata
+
+The package supports several HTTP headers for enhanced functionality:
+
+- `Content-Range`: Standard HTTP range header for chunked uploads (e.g., "bytes 0-1023/2048")
+- `Content-Uid`: Unique identifier for file uploads (for deduplication and tracking)
+- `Content-Fingerprint`: Content-based hash for deduplication (e.g., "sha256:abc123")
+- `Content-Sync`: Enable synchronized uploads across multiple clients ("true"/"false")
+
+### Header Processing
+
+When processing uploads, headers can be extracted from both HTTP request headers and multipart file headers:
+
+```go
+// Extract headers from HTTP request and file headers
+header := attachment.GetHeader(requestHeader, fileHeader, fileSize)
+
+// The resulting FileHeader will contain merged headers from both sources
+uid := header.UID()
+fingerprint := header.Fingerprint()
+isSync := header.Sync()
+```
+
+## Upload Status Tracking
+
+Files have a status field that tracks the upload lifecycle:
+
+- `"uploading"`: File upload is in progress (for chunked uploads)
+- `"uploaded"`: File has been successfully uploaded
+- `"indexing"`: File is being processed for search indexing
+- `"indexed"`: File has been indexed and is fully processed
+- `"upload_failed"`: Upload failed due to an error
+- `"index_failed"`: Indexing failed but file is still accessible
+
+```go
+file, err := manager.Upload(ctx, fileHeader, reader, option)
+if err != nil {
+ return err
+}
+
+switch file.Status {
+case "uploading":
+ fmt.Println("Upload in progress...")
+case "uploaded":
+ fmt.Println("Upload completed successfully")
+case "upload_failed":
+ fmt.Println("Upload failed")
+}
+```
+
+#### `RegisterDefault(name string) (*Manager, error)`
+
+Registers a default attachment manager with sensible defaults for common file types.
diff --git a/attachment/compresses.go b/attachment/compresses.go
new file mode 100644
index 00000000..5b544539
--- /dev/null
+++ b/attachment/compresses.go
@@ -0,0 +1,76 @@
+package attachment
+
+import (
+ "bytes"
+ "fmt"
+ "image"
+ "image/jpeg"
+ "image/png"
+ "io"
+)
+
+// CompressImage compresses the image while maintaining aspect ratio
+func CompressImage(reader io.Reader, contentType string, maxSize int) ([]byte, error) {
+ // Read all data first
+ data, err := io.ReadAll(reader)
+ if err != nil {
+ return nil, fmt.Errorf("failed to read image data: %w", err)
+ }
+
+ // Decode image
+ img, _, err := image.Decode(bytes.NewReader(data))
+ if err != nil {
+ return nil, fmt.Errorf("failed to decode image: %w", err)
+ }
+
+ // Calculate new dimensions
+ bounds := img.Bounds()
+ width := bounds.Dx()
+ height := bounds.Dy()
+ var newWidth, newHeight int
+
+ if width > height {
+ if width > maxSize {
+ newWidth = maxSize
+ newHeight = int(float64(height) * (float64(maxSize) / float64(width)))
+ } else {
+ return data, nil // No need to resize, return original data
+ }
+ } else {
+ if height > maxSize {
+ newHeight = maxSize
+ newWidth = int(float64(width) * (float64(maxSize) / float64(height)))
+ } else {
+ return data, nil // No need to resize, return original data
+ }
+ }
+
+ // Create new image with new dimensions
+ newImg := image.NewRGBA(image.Rect(0, 0, newWidth, newHeight))
+
+ // Scale the image using bilinear interpolation
+ for y := 0; y < newHeight; y++ {
+ for x := 0; x < newWidth; x++ {
+ srcX := float64(x) * float64(width) / float64(newWidth)
+ srcY := float64(y) * float64(height) / float64(newHeight)
+ newImg.Set(x, y, img.At(int(srcX), int(srcY)))
+ }
+ }
+
+ // Encode image
+ var buf bytes.Buffer
+ switch contentType {
+ case "image/jpeg":
+ err = jpeg.Encode(&buf, newImg, &jpeg.Options{Quality: 85})
+ case "image/png":
+ err = png.Encode(&buf, newImg)
+ default:
+ return data, nil // Unsupported format, return original data
+ }
+
+ if err != nil {
+ return nil, fmt.Errorf("failed to encode image: %w", err)
+ }
+
+ return buf.Bytes(), nil
+}
diff --git a/attachment/example_usage.go b/attachment/example_usage.go
new file mode 100644
index 00000000..18c35d2c
--- /dev/null
+++ b/attachment/example_usage.go
@@ -0,0 +1,512 @@
+package attachment
+
+import (
+ "bytes"
+ "context"
+ "fmt"
+ "log"
+ "mime/multipart"
+ "strings"
+
+ "github.com/yaoapp/yao/attachment/s3"
+)
+
+// ExampleUsage demonstrates how to use the attachment package
+func ExampleUsage() {
+ // 1. Create a local storage manager
+ localManager, err := New(ManagerOption{
+ Driver: "local",
+ MaxSize: "20M",
+ ChunkSize: "2M",
+ AllowedTypes: []string{"text/*", "image/*", "application/pdf", ".txt", ".jpg", ".png", ".pdf"},
+ Options: map[string]interface{}{
+ "path": "/var/uploads",
+ "base_url": "https://example.com/files",
+ },
+ })
+ if err != nil {
+ log.Fatalf("Failed to create local manager: %v", err)
+ }
+
+ // 2. Create an S3 storage manager
+ s3Manager, err := New(ManagerOption{
+ Driver: "s3",
+ MaxSize: "100M",
+ ChunkSize: "5M",
+ AllowedTypes: []string{"*"}, // Allow all types
+ Options: map[string]interface{}{
+ "endpoint": "https://s3.amazonaws.com",
+ "region": "us-east-1",
+ "key": "your-access-key",
+ "secret": "your-secret-key",
+ "bucket": "your-bucket-name",
+ "prefix": "attachments/",
+ },
+ })
+ if err != nil {
+ log.Printf("Failed to create S3 manager (this is expected without credentials): %v", err)
+ } else {
+ fmt.Printf("Created S3 manager successfully\n")
+ // Demonstrate S3 manager usage if credentials are available
+ if s3Manager != nil {
+ fmt.Printf("S3 manager is ready for use with bucket: %s\n",
+ s3Manager.storage.(*s3.Storage).Bucket)
+ }
+ }
+
+ // 3. Register managers globally
+ _, err = Register("local", "local", ManagerOption{
+ Driver: "local",
+ MaxSize: "20M",
+ AllowedTypes: []string{"text/*", "image/*"},
+ Options: map[string]interface{}{
+ "path": "/var/uploads",
+ },
+ })
+ if err != nil {
+ log.Printf("Failed to register local manager: %v", err)
+ }
+
+ // Try to register S3 manager (will fail without credentials)
+ _, err = Register("s3", "s3", ManagerOption{
+ Driver: "s3",
+ MaxSize: "100M",
+ Options: map[string]interface{}{
+ "bucket": "your-bucket",
+ "key": "your-key",
+ "secret": "your-secret",
+ },
+ })
+ if err != nil {
+ log.Printf("Failed to register S3 manager (expected without credentials): %v", err)
+ }
+
+ ctx := context.Background()
+
+ // 4. Example: Simple file upload
+ content := "Hello, World! This is a test file with some content to demonstrate the attachment package."
+ fileHeader := &FileHeader{
+ FileHeader: &multipart.FileHeader{
+ Filename: "hello.txt",
+ Size: int64(len(content)),
+ Header: make(map[string][]string),
+ },
+ }
+ fileHeader.Header.Set("Content-Type", "text/plain")
+
+ uploadOption := UploadOption{
+ Groups: []string{"user123"},
+ Gzip: false, // No compression for small text files
+ }
+
+ file, err := localManager.Upload(ctx, fileHeader, strings.NewReader(content), uploadOption)
+ if err != nil {
+ log.Fatalf("Failed to upload file: %v", err)
+ }
+
+ fmt.Printf("Uploaded file: %s (ID: %s, Size: %d bytes)\n", file.Filename, file.ID, file.Bytes)
+
+ // 5. Example: File upload with gzip compression
+ largeContent := strings.Repeat("This is a large text file that benefits from compression. ", 100)
+ gzipFileHeader := &FileHeader{
+ FileHeader: &multipart.FileHeader{
+ Filename: "large_text.txt",
+ Size: int64(len(largeContent)),
+ Header: make(map[string][]string),
+ },
+ }
+ gzipFileHeader.Header.Set("Content-Type", "text/plain")
+
+ gzipOption := UploadOption{
+ Groups: []string{"user123"},
+ Gzip: true, // Enable compression
+ }
+
+ gzipFile, err := localManager.Upload(ctx, gzipFileHeader, strings.NewReader(largeContent), gzipOption)
+ if err != nil {
+ log.Fatalf("Failed to upload gzipped file: %v", err)
+ }
+
+ fmt.Printf("Uploaded compressed file: %s (ID: %s)\n", gzipFile.Filename, gzipFile.ID)
+
+ // 6. Example: Image upload with compression
+ imageUploadOption := UploadOption{
+ Groups: []string{"user123"},
+ CompressImage: true,
+ CompressSize: 1920, // Resize to max 1920px
+ Gzip: false,
+ }
+
+ // Simulate image upload (you would get this from multipart form)
+ imageHeader := &FileHeader{
+ FileHeader: &multipart.FileHeader{
+ Filename: "photo.jpg",
+ Size: 1024000, // 1MB
+ Header: make(map[string][]string),
+ },
+ }
+ imageHeader.Header.Set("Content-Type", "image/jpeg")
+
+ fmt.Printf("Image upload option configured: compress=%v, size=%d\n",
+ imageUploadOption.CompressImage, imageUploadOption.CompressSize)
+
+ // 6.5. Example: Multi-level groups
+ fmt.Println("\n--- Multi-level Groups Examples ---")
+
+ // Single level grouping
+ singleGroupOption := UploadOption{
+ Groups: []string{"knowledge"},
+ }
+
+ singleGroupHeader := &FileHeader{
+ FileHeader: &multipart.FileHeader{
+ Filename: "knowledge_doc.txt",
+ Size: int64(len("Knowledge base document")),
+ Header: make(map[string][]string),
+ },
+ }
+ singleGroupHeader.Header.Set("Content-Type", "text/plain")
+
+ singleFile, err := localManager.Upload(ctx, singleGroupHeader, strings.NewReader("Knowledge base document"), singleGroupOption)
+ if err != nil {
+ log.Printf("Failed to upload single group file: %v", err)
+ } else {
+ fmt.Printf("Single group file uploaded: %s (ID: %s)\n", singleFile.Filename, singleFile.ID)
+ }
+
+ // Multi-level grouping
+ multiGroupOption := UploadOption{
+ Groups: []string{"users", "user123", "chats", "chat456", "documents"},
+ }
+
+ multiGroupHeader := &FileHeader{
+ FileHeader: &multipart.FileHeader{
+ Filename: "chat_document.txt",
+ Size: int64(len("Document in user chat")),
+ Header: make(map[string][]string),
+ },
+ }
+ multiGroupHeader.Header.Set("Content-Type", "text/plain")
+
+ multiFile, err := localManager.Upload(ctx, multiGroupHeader, strings.NewReader("Document in user chat"), multiGroupOption)
+ if err != nil {
+ log.Printf("Failed to upload multi-group file: %v", err)
+ } else {
+ fmt.Printf("Multi-level group file uploaded: %s (ID: %s)\n", multiFile.Filename, multiFile.ID)
+ fmt.Printf("File path includes hierarchy: users/user123/chats/chat456/documents\n")
+ }
+
+ // Knowledge base organization
+ knowledgeOption := UploadOption{
+ Groups: []string{"knowledge", "technical", "api", "documentation"},
+ }
+
+ knowledgeHeader := &FileHeader{
+ FileHeader: &multipart.FileHeader{
+ Filename: "api_guide.md",
+ Size: int64(len("# API Documentation\n\nThis is technical documentation.")),
+ Header: make(map[string][]string),
+ },
+ }
+ knowledgeHeader.Header.Set("Content-Type", "text/markdown")
+
+ knowledgeFile, err := localManager.Upload(ctx, knowledgeHeader,
+ strings.NewReader("# API Documentation\n\nThis is technical documentation."), knowledgeOption)
+ if err != nil {
+ log.Printf("Failed to upload knowledge file: %v", err)
+ } else {
+ fmt.Printf("Knowledge base file uploaded: %s (ID: %s)\n", knowledgeFile.Filename, knowledgeFile.ID)
+ fmt.Printf("Organized in: knowledge/technical/api/documentation\n")
+ }
+
+ // 7. Example: Chunked upload
+ largeContent = strings.Repeat("This is a large file content that will be uploaded in chunks. ", 1000)
+ chunkSize := 1024
+ totalSize := len(largeContent)
+ uid := "unique-large-file-123"
+
+ fmt.Printf("Starting chunked upload: total size=%d, chunk size=%d\n", totalSize, chunkSize)
+
+ var lastFile *File
+ chunkCount := 0
+
+ // Split into chunks and upload
+ for i := 0; i < totalSize; i += chunkSize {
+ end := i + chunkSize
+ if end > totalSize {
+ end = totalSize
+ }
+ chunk := largeContent[i:end]
+
+ chunkHeader := &FileHeader{
+ FileHeader: &multipart.FileHeader{
+ Filename: "large_file.txt",
+ Size: int64(len(chunk)),
+ Header: make(map[string][]string),
+ },
+ }
+ chunkHeader.Header.Set("Content-Type", "text/plain")
+ chunkHeader.Header.Set("Content-Range", fmt.Sprintf("bytes %d-%d/%d", i, end-1, totalSize))
+ chunkHeader.Header.Set("Content-Uid", uid)
+
+ chunkOption := UploadOption{
+ Groups: []string{"user123"},
+ Gzip: true, // Compress chunks
+ }
+
+ chunkFile, err := localManager.Upload(ctx, chunkHeader, strings.NewReader(chunk), chunkOption)
+ if err != nil {
+ log.Fatalf("Failed to upload chunk %d: %v", chunkCount, err)
+ }
+
+ chunkCount++
+ lastFile = chunkFile
+
+ // Check if this is the last chunk
+ if chunkHeader.Complete() {
+ fmt.Printf("Uploaded large file in %d chunks: %s (ID: %s)\n", chunkCount, chunkFile.Filename, chunkFile.ID)
+ break
+ }
+ }
+
+ // 8. Example: Download and read files
+ if file != nil {
+ // Download as stream
+ response, err := localManager.Download(ctx, file.ID)
+ if err != nil {
+ log.Fatalf("Failed to download file: %v", err)
+ }
+ defer response.Reader.Close()
+
+ fmt.Printf("Downloaded file content type: %s, extension: %s\n", response.ContentType, response.Extension)
+
+ // Read as bytes
+ data, err := localManager.Read(ctx, file.ID)
+ if err != nil {
+ log.Fatalf("Failed to read file: %v", err)
+ }
+
+ fmt.Printf("File content length: %d bytes\n", len(data))
+ if len(data) < 100 {
+ fmt.Printf("File content: %s\n", string(data))
+ } else {
+ fmt.Printf("File content preview: %s...\n", string(data[:100]))
+ }
+
+ // Read as base64
+ base64Data, err := localManager.ReadBase64(ctx, file.ID)
+ if err != nil {
+ log.Fatalf("Failed to read file as base64: %v", err)
+ }
+
+ fmt.Printf("File as base64 (first 50 chars): %s...\n", base64Data[:min(50, len(base64Data))])
+ }
+
+ // 9. Example: Read chunked file
+ if lastFile != nil {
+ chunkData, err := localManager.Read(ctx, lastFile.ID)
+ if err != nil {
+ log.Fatalf("Failed to read chunked file: %v", err)
+ }
+
+ // Since the chunks were compressed, we need to decompress
+ decompressed, err := Gunzip(chunkData)
+ if err != nil {
+ log.Fatalf("Failed to decompress chunked file: %v", err)
+ }
+
+ fmt.Printf("Chunked file content length: %d bytes (decompressed)\n", len(decompressed))
+ if len(decompressed) < 200 {
+ fmt.Printf("Chunked file content: %s\n", string(decompressed))
+ } else {
+ fmt.Printf("Chunked file content preview: %s...\n", string(decompressed[:200]))
+ }
+ }
+
+ // 10. Example: Using global managers
+ globalManager := Managers["local"]
+ if globalManager != nil {
+ fmt.Println("Using global manager for local storage")
+
+ // Test a simple upload with global manager
+ testContent := "Test content using global manager"
+ testHeader := &FileHeader{
+ FileHeader: &multipart.FileHeader{
+ Filename: "global_test.txt",
+ Size: int64(len(testContent)),
+ Header: make(map[string][]string),
+ },
+ }
+ testHeader.Header.Set("Content-Type", "text/plain")
+
+ testFile, err := globalManager.Upload(ctx, testHeader, strings.NewReader(testContent), UploadOption{
+ Groups: []string{"global_user"},
+ })
+ if err != nil {
+ log.Printf("Failed to upload with global manager: %v", err)
+ } else {
+ fmt.Printf("Global manager upload successful: %s\n", testFile.ID)
+ }
+ }
+
+ // 11. Example: File validation
+ fmt.Println("\n--- File Validation Examples ---")
+
+ // Test file size validation
+ tooLargeContent := strings.Repeat("x", 25*1024*1024) // 25MB, exceeds 20MB limit
+ largeFileHeader := &FileHeader{
+ FileHeader: &multipart.FileHeader{
+ Filename: "too_large.txt",
+ Size: int64(len(tooLargeContent)),
+ Header: make(map[string][]string),
+ },
+ }
+ largeFileHeader.Header.Set("Content-Type", "text/plain")
+
+ _, err = localManager.Upload(ctx, largeFileHeader, strings.NewReader(tooLargeContent), UploadOption{})
+ if err != nil {
+ fmt.Printf("Expected error for large file: %v\n", err)
+ }
+
+ // Test file type validation
+ invalidFileHeader := &FileHeader{
+ FileHeader: &multipart.FileHeader{
+ Filename: "script.exe",
+ Size: 1024,
+ Header: make(map[string][]string),
+ },
+ }
+ invalidFileHeader.Header.Set("Content-Type", "application/x-executable")
+
+ _, err = localManager.Upload(ctx, invalidFileHeader, strings.NewReader("fake exe content"), UploadOption{})
+ if err != nil {
+ fmt.Printf("Expected error for invalid file type: %v\n", err)
+ }
+
+ fmt.Println("\n--- Example Usage Complete ---")
+}
+
+// ExampleChunkedUpload demonstrates how to handle chunked uploads properly
+func ExampleChunkedUpload(manager *Manager, filename string, totalSize int64, contentType string) error {
+ ctx := context.Background()
+ chunkSize := int64(1024 * 1024) // 1MB chunks
+ uid := "unique-file-" + filename
+
+ fmt.Printf("Starting chunked upload: file=%s, total=%d bytes, chunks=%d\n",
+ filename, totalSize, (totalSize+chunkSize-1)/chunkSize)
+
+ for offset := int64(0); offset < totalSize; offset += chunkSize {
+ end := offset + chunkSize - 1
+ if end >= totalSize {
+ end = totalSize - 1
+ }
+
+ chunkSize := end - offset + 1
+
+ // Create chunk header
+ chunkHeader := &FileHeader{
+ FileHeader: &multipart.FileHeader{
+ Filename: filename,
+ Size: chunkSize,
+ Header: make(map[string][]string),
+ },
+ }
+ chunkHeader.Header.Set("Content-Type", contentType)
+ chunkHeader.Header.Set("Content-Range", fmt.Sprintf("bytes %d-%d/%d", offset, end, totalSize))
+ chunkHeader.Header.Set("Content-Uid", uid)
+
+ // In real usage, you would read the actual chunk data from the source
+ chunkData := make([]byte, chunkSize)
+ // Fill with sample data for demonstration
+ for i := range chunkData {
+ chunkData[i] = byte('A' + (i % 26))
+ }
+
+ option := UploadOption{
+ Groups: []string{"user123"},
+ Gzip: false, // Disable compression for this example
+ }
+
+ file, err := manager.Upload(ctx, chunkHeader, bytes.NewReader(chunkData), option)
+ if err != nil {
+ return fmt.Errorf("failed to upload chunk at offset %d: %w", offset, err)
+ }
+
+ fmt.Printf("Uploaded chunk %d-%d/%d\n", offset, end, totalSize)
+
+ // Check if this was the last chunk
+ if chunkHeader.Complete() {
+ fmt.Printf("File upload completed: %s (ID: %s)\n", file.Filename, file.ID)
+
+ // Verify the uploaded file
+ data, err := manager.Read(ctx, file.ID)
+ if err != nil {
+ return fmt.Errorf("failed to read uploaded file: %w", err)
+ }
+
+ if int64(len(data)) != totalSize {
+ return fmt.Errorf("uploaded file size mismatch: expected %d, got %d", totalSize, len(data))
+ }
+
+ fmt.Printf("File verification successful: %d bytes\n", len(data))
+ break
+ }
+ }
+
+ return nil
+}
+
+// ExampleS3Upload demonstrates S3-specific features
+func ExampleS3Upload() {
+ // This example requires actual S3 credentials
+ s3Manager, err := New(ManagerOption{
+ Driver: "s3",
+ MaxSize: "50M",
+ Options: map[string]interface{}{
+ "endpoint": "https://s3.amazonaws.com",
+ "region": "us-east-1",
+ "key": "your-access-key",
+ "secret": "your-secret-key",
+ "bucket": "your-bucket",
+ "prefix": "test-uploads/",
+ },
+ })
+ if err != nil {
+ log.Printf("S3 manager creation failed (expected without credentials): %v", err)
+ return
+ }
+
+ ctx := context.Background()
+ content := "Test content for S3 upload"
+
+ fileHeader := &FileHeader{
+ FileHeader: &multipart.FileHeader{
+ Filename: "s3_test.txt",
+ Size: int64(len(content)),
+ Header: make(map[string][]string),
+ },
+ }
+ fileHeader.Header.Set("Content-Type", "text/plain")
+
+ file, err := s3Manager.Upload(ctx, fileHeader, strings.NewReader(content), UploadOption{
+ Groups: []string{"s3_user"},
+ })
+ if err != nil {
+ log.Printf("S3 upload failed: %v", err)
+ return
+ }
+
+ fmt.Printf("S3 upload successful: %s\n", file.ID)
+
+ // Get presigned URL
+ url := s3Manager.storage.URL(ctx, file.ID)
+ fmt.Printf("Presigned URL: %s\n", url)
+}
+
+// Helper function for min
+func min(a, b int) int {
+ if a < b {
+ return a
+ }
+ return b
+}
diff --git a/attachment/fileheader.go b/attachment/fileheader.go
new file mode 100644
index 00000000..bc47ed97
--- /dev/null
+++ b/attachment/fileheader.go
@@ -0,0 +1,139 @@
+package attachment
+
+import (
+ "strconv"
+ "strings"
+)
+
+// UID is the uid of the file, it is the unique identifier of the file
+func (fileheader *FileHeader) UID() string {
+ return fileheader.Header.Get("Content-Uid")
+}
+
+// Fingerprint is the fingerprint of the file, it is the fingerprint of the file
+func (fileheader *FileHeader) Fingerprint() string {
+ return fileheader.Header.Get("Content-Fingerprint")
+}
+
+// Range is the range of the file, it is the start and end of the file
+func (fileheader *FileHeader) Range() string {
+ return fileheader.Header.Get("Content-Range")
+}
+
+// Sync is the sync of the file, it is the sync of the file
+func (fileheader *FileHeader) Sync() bool {
+ return fileheader.Header.Get("Content-Sync") == "true"
+}
+
+// IsChunk is the chunk of the file, it is the chunk of the file
+func (fileheader *FileHeader) IsChunk() bool {
+ return fileheader.Range() != ""
+}
+
+// Complete checks if the chunk upload is completed
+// For non-chunk files, it returns true
+// For chunk files, it parses the Content-Range header to determine if this is the last chunk
+func (fileheader *FileHeader) Complete() bool {
+ if !fileheader.IsChunk() {
+ return true
+ }
+
+ // Parse Content-Range header: "bytes start-end/total"
+ rangeHeader := fileheader.Range()
+ if rangeHeader == "" {
+ return false
+ }
+
+ // Remove "bytes " prefix
+ rangeStr := strings.TrimPrefix(rangeHeader, "bytes ")
+
+ // Split by "/"
+ parts := strings.Split(rangeStr, "/")
+ if len(parts) != 2 {
+ return false
+ }
+
+ // Parse total size
+ total, err := strconv.ParseInt(parts[1], 10, 64)
+ if err != nil {
+ return false
+ }
+
+ // Parse range "start-end"
+ rangeParts := strings.Split(parts[0], "-")
+ if len(rangeParts) != 2 {
+ return false
+ }
+
+ end, err := strconv.ParseInt(rangeParts[1], 10, 64)
+ if err != nil {
+ return false
+ }
+
+ // Check if this is the last chunk: end + 1 == total
+ return end+1 == total
+}
+
+// GetChunkInfo returns the chunk information parsed from Content-Range header
+// Returns start, end, total, and error
+func (fileheader *FileHeader) GetChunkInfo() (start, end, total int64, err error) {
+ if !fileheader.IsChunk() {
+ return 0, 0, 0, nil
+ }
+
+ rangeHeader := fileheader.Range()
+ if rangeHeader == "" {
+ return 0, 0, 0, nil
+ }
+
+ // Remove "bytes " prefix
+ rangeStr := strings.TrimPrefix(rangeHeader, "bytes ")
+
+ // Split by "/"
+ parts := strings.Split(rangeStr, "/")
+ if len(parts) != 2 {
+ return 0, 0, 0, nil
+ }
+
+ // Parse total size
+ total, err = strconv.ParseInt(parts[1], 10, 64)
+ if err != nil {
+ return 0, 0, 0, err
+ }
+
+ // Parse range "start-end"
+ rangeParts := strings.Split(parts[0], "-")
+ if len(rangeParts) != 2 {
+ return 0, 0, 0, nil
+ }
+
+ start, err = strconv.ParseInt(rangeParts[0], 10, 64)
+ if err != nil {
+ return 0, 0, 0, err
+ }
+
+ end, err = strconv.ParseInt(rangeParts[1], 10, 64)
+ if err != nil {
+ return 0, 0, 0, err
+ }
+
+ return start, end, total, nil
+}
+
+// GetTotalSize returns the total file size from Content-Range header
+func (fileheader *FileHeader) GetTotalSize() int64 {
+ _, _, total, err := fileheader.GetChunkInfo()
+ if err != nil {
+ return 0
+ }
+ return total
+}
+
+// GetChunkSize returns the current chunk size
+func (fileheader *FileHeader) GetChunkSize() int64 {
+ start, end, _, err := fileheader.GetChunkInfo()
+ if err != nil {
+ return 0
+ }
+ return end - start + 1
+}
diff --git a/attachment/gzip.go b/attachment/gzip.go
new file mode 100644
index 00000000..f526c468
--- /dev/null
+++ b/attachment/gzip.go
@@ -0,0 +1,285 @@
+package attachment
+
+import (
+ "bytes"
+ "compress/gzip"
+ "fmt"
+ "io"
+ "os"
+)
+
+// GzipCompressor supports chunked compression for Gzip
+type GzipCompressor struct {
+ writer *gzip.Writer
+ buffer *bytes.Buffer
+ file *os.File // optional file handle
+}
+
+// NewGzipCompressor creates a new Gzip compressor
+func NewGzipCompressor() *GzipCompressor {
+ buf := &bytes.Buffer{}
+ gz := gzip.NewWriter(buf)
+ return &GzipCompressor{
+ writer: gz,
+ buffer: buf,
+ file: nil,
+ }
+}
+
+// NewGzipCompressorFromFile creates a Gzip compressor from file, supports streaming read
+func NewGzipCompressorFromFile(filePath string) (*GzipCompressor, error) {
+ file, err := os.Open(filePath)
+ if err != nil {
+ return nil, fmt.Errorf("failed to open file %s: %w", filePath, err)
+ }
+
+ buf := &bytes.Buffer{}
+ gz := gzip.NewWriter(buf)
+ return &GzipCompressor{
+ writer: gz,
+ buffer: buf,
+ file: file,
+ }, nil
+}
+
+// ReadChunk reads a chunk of specified size from file and compresses it
+func (gc *GzipCompressor) ReadChunk(chunkSize int) (bool, error) {
+ if gc.file == nil {
+ return false, fmt.Errorf("no file associated with this compressor")
+ }
+
+ chunk := make([]byte, chunkSize)
+ n, err := gc.file.Read(chunk)
+ if err != nil && err != io.EOF {
+ return false, fmt.Errorf("failed to read from file: %w", err)
+ }
+
+ if n > 0 {
+ if err := gc.Write(chunk[:n]); err != nil {
+ return false, err
+ }
+ }
+
+ // return whether there is more data
+ return err != io.EOF, nil
+}
+
+// CompressFileInChunks compresses the entire file in chunks
+func (gc *GzipCompressor) CompressFileInChunks(chunkSize int) error {
+ if gc.file == nil {
+ return fmt.Errorf("no file associated with this compressor")
+ }
+
+ for {
+ hasMore, err := gc.ReadChunk(chunkSize)
+ if err != nil {
+ return err
+ }
+ if !hasMore {
+ break
+ }
+ }
+ return nil
+}
+
+// Write writes data for compression (supports chunked writing)
+func (gc *GzipCompressor) Write(data []byte) error {
+ _, err := gc.writer.Write(data)
+ if err != nil {
+ return fmt.Errorf("failed to write data to gzip: %w", err)
+ }
+ return nil
+}
+
+// Flush flushes the buffer but does not close the compressor
+func (gc *GzipCompressor) Flush() error {
+ return gc.writer.Flush()
+}
+
+// Close closes the compressor and returns the final compressed data
+func (gc *GzipCompressor) Close() ([]byte, error) {
+ err := gc.writer.Close()
+ if err != nil {
+ return nil, fmt.Errorf("failed to close gzip writer: %w", err)
+ }
+
+ // if there is an associated file, close it too
+ if gc.file != nil {
+ gc.file.Close()
+ gc.file = nil
+ }
+
+ return gc.buffer.Bytes(), nil
+}
+
+// GetCompressedData gets the current compressed data (without closing the compressor)
+func (gc *GzipCompressor) GetCompressedData() []byte {
+ // flush the buffer first
+ gc.writer.Flush()
+ return gc.buffer.Bytes()
+}
+
+// Reset resets the compressor for reuse
+func (gc *GzipCompressor) Reset() {
+ gc.buffer.Reset()
+ gc.writer.Reset(gc.buffer)
+ if gc.file != nil {
+ gc.file.Close()
+ gc.file = nil
+ }
+}
+
+// Gzip compresses data in one go
+func Gzip(data []byte) ([]byte, error) {
+ var buf bytes.Buffer
+ gz := gzip.NewWriter(&buf)
+ _, err := gz.Write(data)
+ if err != nil {
+ return nil, fmt.Errorf("failed to gzip data: %w", err)
+ }
+ err = gz.Close()
+ if err != nil {
+ return nil, fmt.Errorf("failed to close gzip writer: %w", err)
+ }
+ return buf.Bytes(), nil
+}
+
+// GzipChunks compresses multiple data chunks
+func GzipChunks(chunks [][]byte) ([]byte, error) {
+ compressor := NewGzipCompressor()
+
+ for _, chunk := range chunks {
+ if err := compressor.Write(chunk); err != nil {
+ return nil, err
+ }
+ }
+
+ return compressor.Close()
+}
+
+// GzipFromReader compresses data from Reader stream
+func GzipFromReader(reader io.Reader) ([]byte, error) {
+ var buf bytes.Buffer
+ gz := gzip.NewWriter(&buf)
+
+ _, err := io.Copy(gz, reader)
+ if err != nil {
+ return nil, fmt.Errorf("failed to copy data to gzip: %w", err)
+ }
+
+ err = gz.Close()
+ if err != nil {
+ return nil, fmt.Errorf("failed to close gzip writer: %w", err)
+ }
+
+ return buf.Bytes(), nil
+}
+
+// Gunzip decompresses gzip data
+func Gunzip(data []byte) ([]byte, error) {
+ reader, err := gzip.NewReader(bytes.NewReader(data))
+ if err != nil {
+ return nil, fmt.Errorf("failed to create gzip reader: %w", err)
+ }
+ defer reader.Close()
+
+ var buf bytes.Buffer
+ _, err = io.Copy(&buf, reader)
+ if err != nil {
+ return nil, fmt.Errorf("failed to decompress data: %w", err)
+ }
+
+ return buf.Bytes(), nil
+}
+
+// GzipToWriter writes compressed data to Writer
+func GzipToWriter(data []byte, writer io.Writer) error {
+ gz := gzip.NewWriter(writer)
+ defer gz.Close()
+
+ _, err := gz.Write(data)
+ if err != nil {
+ return fmt.Errorf("failed to write gzip data: %w", err)
+ }
+
+ return nil
+}
+
+// GzipFromReaderToWriter reads data from Reader and writes compressed data to Writer
+func GzipFromReaderToWriter(reader io.Reader, writer io.Writer) error {
+ gz := gzip.NewWriter(writer)
+ defer gz.Close()
+
+ _, err := io.Copy(gz, reader)
+ if err != nil {
+ return fmt.Errorf("failed to copy and compress data: %w", err)
+ }
+
+ return nil
+}
+
+// GzipFile compresses entire file (loads into memory at once)
+func GzipFile(filePath string) ([]byte, error) {
+ data, err := os.ReadFile(filePath)
+ if err != nil {
+ return nil, fmt.Errorf("failed to read file %s: %w", filePath, err)
+ }
+ return Gzip(data)
+}
+
+// GzipFileInChunks compresses file in chunks (memory friendly)
+func GzipFileInChunks(filePath string, chunkSize int) ([]byte, error) {
+ compressor, err := NewGzipCompressorFromFile(filePath)
+ if err != nil {
+ return nil, err
+ }
+ defer compressor.Close()
+
+ err = compressor.CompressFileInChunks(chunkSize)
+ if err != nil {
+ return nil, err
+ }
+
+ return compressor.Close()
+}
+
+// GzipFileToFile compresses file and saves to another file
+func GzipFileToFile(srcPath, dstPath string, chunkSize int) error {
+ srcFile, err := os.Open(srcPath)
+ if err != nil {
+ return fmt.Errorf("failed to open source file %s: %w", srcPath, err)
+ }
+ defer srcFile.Close()
+
+ dstFile, err := os.Create(dstPath)
+ if err != nil {
+ return fmt.Errorf("failed to create destination file %s: %w", dstPath, err)
+ }
+ defer dstFile.Close()
+
+ return GzipFromReaderToWriter(srcFile, dstFile)
+}
+
+// GzipFileStream compresses file in streaming mode, returns Reader interface
+func GzipFileStream(filePath string) (io.Reader, error) {
+ file, err := os.Open(filePath)
+ if err != nil {
+ return nil, fmt.Errorf("failed to open file %s: %w", filePath, err)
+ }
+
+ pr, pw := io.Pipe()
+ go func() {
+ defer pw.Close()
+ defer file.Close()
+
+ gz := gzip.NewWriter(pw)
+ defer gz.Close()
+
+ _, err := io.Copy(gz, file)
+ if err != nil {
+ pw.CloseWithError(err)
+ }
+ }()
+
+ return pr, nil
+}
diff --git a/attachment/load.go b/attachment/load.go
new file mode 100644
index 00000000..1105256e
--- /dev/null
+++ b/attachment/load.go
@@ -0,0 +1,152 @@
+package attachment
+
+import (
+ "fmt"
+ "strings"
+
+ "github.com/yaoapp/gou/application"
+ "github.com/yaoapp/kun/log"
+ "github.com/yaoapp/yao/config"
+ "github.com/yaoapp/yao/data"
+ "github.com/yaoapp/yao/share"
+)
+
+// SystemUploaders system uploaders
+var systemUploaders = map[string]string{
+ "__yao.attachment": "yao/uploaders/attachment.local.yao",
+}
+
+// Load load uploaders
+func Load(cfg config.Config) error {
+ messages := []string{}
+
+ // Load system uploaders
+ err := loadSystemUploaders(cfg)
+ if err != nil {
+ return err
+ }
+
+ // Load filesystem uploaders
+ exts := []string{"*.s3.yao", "*.local.yao", "*.s3.json", "*.local.json", "*.s3.jsonc", "*.local.jsonc"}
+ err = application.App.Walk("uploaders", func(root, file string, isdir bool) error {
+ if isdir {
+ return nil
+ }
+
+ // Skip if not uploader file
+ if !isUploaderFile(file) {
+ return nil
+ }
+
+ err := loadUploaderFile(root, file, cfg)
+ if err != nil {
+ messages = append(messages, err.Error())
+ }
+ return err
+ }, exts...)
+
+ if len(messages) > 0 {
+ for _, message := range messages {
+ log.Error("Load filesystem uploaders error: %s", message)
+ }
+ return fmt.Errorf(strings.Join(messages, ";\n"))
+ }
+
+ return nil
+}
+
+// loadSystemUploaders load system uploaders
+func loadSystemUploaders(cfg config.Config) error {
+ for id, path := range systemUploaders {
+ content, err := data.Read(path)
+ if err != nil {
+ return err
+ }
+
+ // Parse uploader config
+ var option ManagerOption
+ err = application.Parse(path, content, &option)
+ if err != nil {
+ return err
+ }
+
+ // Replace environment variables and paths
+ option.ReplaceEnv(cfg.DataRoot)
+
+ // Register the uploader manager
+ _, err = Register(id, option.Driver, option)
+ if err != nil {
+ log.Error("register system uploader %s error: %s", id, err.Error())
+ return err
+ }
+
+ log.Info("loaded system uploader: %s (%s)", id, option.Label)
+ }
+
+ return nil
+}
+
+// loadUploaderFile load a single uploader file
+func loadUploaderFile(root, file string, cfg config.Config) error {
+ // Generate uploader ID
+ id := share.ID(root, file)
+
+ // Read file content
+ content, err := application.App.Read(file)
+ if err != nil {
+ return fmt.Errorf("failed to read uploader file %s: %v", file, err)
+ }
+
+ // Parse uploader config
+ var option ManagerOption
+ err = application.Parse(file, content, &option)
+ if err != nil {
+ return fmt.Errorf("failed to parse uploader file %s: %v", file, err)
+ }
+
+ // Validate driver consistency between filename and config
+ filenameDriver := extractDriverFromFilename(file)
+ if filenameDriver != "" && option.Driver != "" && filenameDriver != option.Driver {
+ log.Warn("Driver mismatch in uploader file %s: filename suggests '%s' but config has '%s'",
+ file, filenameDriver, option.Driver)
+ }
+
+ // Replace environment variables and paths
+ option.ReplaceEnv(cfg.DataRoot)
+
+ // Register the uploader manager
+ _, err = Register(id, option.Driver, option)
+ if err != nil {
+ log.Error("register uploader %s error: %s", id, err.Error())
+ return fmt.Errorf("failed to register uploader %s: %v", id, err)
+ }
+
+ log.Info("loaded uploader: %s (%s)", id, option.Label)
+ return nil
+}
+
+// isUploaderFile checks if the file is an uploader configuration file
+func isUploaderFile(filename string) bool {
+ // Accept files with specific driver patterns: *.s3.yao, *.local.yao, etc.
+ lower := strings.ToLower(filename)
+ return strings.HasSuffix(lower, ".s3.yao") ||
+ strings.HasSuffix(lower, ".local.yao") ||
+ strings.HasSuffix(lower, ".s3.json") ||
+ strings.HasSuffix(lower, ".local.json") ||
+ strings.HasSuffix(lower, ".s3.jsonc") ||
+ strings.HasSuffix(lower, ".local.jsonc")
+}
+
+// extractDriverFromFilename extracts the driver name from filename (e.g., "test.s3.yao" -> "s3")
+func extractDriverFromFilename(filename string) string {
+ lower := strings.ToLower(filename)
+
+ // Extract driver from patterns like "*.s3.yao", "*.local.json", etc.
+ if strings.Contains(lower, ".s3.") {
+ return "s3"
+ } else if strings.Contains(lower, ".local.") {
+ return "local"
+ }
+
+ return ""
+}
diff --git a/attachment/load_test.go b/attachment/load_test.go
new file mode 100644
index 00000000..180cd383
--- /dev/null
+++ b/attachment/load_test.go
@@ -0,0 +1,48 @@
+package attachment
+
+import (
+ "testing"
+
+ "github.com/stretchr/testify/assert"
+ "github.com/yaoapp/yao/config"
+ "github.com/yaoapp/yao/test"
+)
+
+func TestLoad(t *testing.T) {
+ test.Prepare(t, config.Conf)
+ defer test.Clean()
+
+ err := Load(config.Conf)
+ assert.NoError(t, err)
+ check(t)
+}
+
+func check(t *testing.T) {
+ // Check that managers are loaded
+ assert.NotEmpty(t, Managers, "Managers should not be empty after loading")
+
+ // Check system uploader
+ _, exists := Managers["__yao.attachment"]
+ assert.True(t, exists, "System uploader __yao.attachment should be loaded")
+
+ // Check test app uploaders (must exist)
+ // These are the uploaders in yao-dev-app/uploaders/
+ _, hasData := Managers["data"]
+ _, hasTest := Managers["test"]
+
+ // Both test uploaders should be loaded
+ assert.True(t, hasData, "Test uploader 'data' should be loaded from data.local.yao")
+ assert.True(t, hasTest, "Test uploader 'test' should be loaded from test.s3.yao")
+
+ // Log all loaded managers for debugging
+ t.Logf("Loaded managers: %v", getManagerNames())
+}
+
+// getManagerNames returns a slice of manager names for testing
+func getManagerNames() []string {
+ names := make([]string, 0, len(Managers))
+ for name := range Managers {
+ names = append(names, name)
+ }
+ return names
+}
diff --git a/attachment/local/storage.go b/attachment/local/storage.go
new file mode 100644
index 00000000..65db9196
--- /dev/null
+++ b/attachment/local/storage.go
@@ -0,0 +1,510 @@
+package local
+
+import (
+ "compress/gzip"
+ "context"
+ "crypto/sha256"
+ "fmt"
+ "io"
+ "mime"
+ "net/http"
+ "os"
+ "path/filepath"
+ "strings"
+ "time"
+)
+
+// MaxImageSize maximum image size (1920x1080)
+const MaxImageSize = 1920
+
+// Storage the local storage driver
+type Storage struct {
+ Path string `json:"path" yaml:"path"`
+ Compression bool `json:"compression" yaml:"compression"`
+ BaseURL string `json:"base_url" yaml:"base_url"`
+ PreviewURL func(fileID string) string `json:"-" yaml:"-"`
+}
+
+// New create a new local storage
+func New(options map[string]interface{}) (*Storage, error) {
+ storage := &Storage{
+ Compression: true,
+ }
+
+ if path, ok := options["path"].(string); ok {
+ storage.Path = path
+ }
+
+ if compression, ok := options["compression"].(bool); ok {
+ storage.Compression = compression
+ }
+
+ if baseURL, ok := options["base_url"].(string); ok {
+ storage.BaseURL = baseURL
+ }
+
+ if previewURL, ok := options["preview_url"].(func(string) string); ok {
+ storage.PreviewURL = previewURL
+ }
+
+ if storage.Path == "" {
+ return nil, fmt.Errorf("path is required")
+ }
+
+ // Ensure the base path exists
+ if err := os.MkdirAll(storage.Path, 0755); err != nil {
+ return nil, fmt.Errorf("failed to create base path: %w", err)
+ }
+
+ return storage, nil
+}
+
+// Upload upload file to local storage
+func (storage *Storage) Upload(ctx context.Context, path string, reader io.Reader, contentType string) (string, error) {
+ fullPath := filepath.Join(storage.Path, path)
+
+ // Create directory if not exists
+ dir := filepath.Dir(fullPath)
+ if err := os.MkdirAll(dir, 0755); err != nil {
+ return "", err
+ }
+
+ // Create and write file
+ file, err := os.Create(fullPath)
+ if err != nil {
+ return "", err
+ }
+ defer file.Close()
+
+ _, err = io.Copy(file, reader)
+ if err != nil {
+ return "", err
+ }
+
+ return path, nil
+}
+
+// UploadChunk uploads a chunk of a file
+func (storage *Storage) UploadChunk(ctx context.Context, path string, chunkIndex int, reader io.Reader, contentType string) error {
+ // Create chunks directory
+ chunksDir := filepath.Join(storage.Path, ".chunks", path)
+ if err := os.MkdirAll(chunksDir, 0755); err != nil {
+ return err
+ }
+
+ // Write chunk file
+ chunkPath := filepath.Join(chunksDir, fmt.Sprintf("chunk_%d", chunkIndex))
+ file, err := os.Create(chunkPath)
+ if err != nil {
+ return err
+ }
+ defer file.Close()
+
+ _, err = io.Copy(file, reader)
+ return err
+}
+
+// MergeChunks merges all chunks into the final file
+func (storage *Storage) MergeChunks(ctx context.Context, path string, totalChunks int) error {
+ chunksDir := filepath.Join(storage.Path, ".chunks", path)
+ finalPath := filepath.Join(storage.Path, path)
+
+ // Create directory for final file
+ dir := filepath.Dir(finalPath)
+ if err := os.MkdirAll(dir, 0755); err != nil {
+ return err
+ }
+
+ // Create final file
+ finalFile, err := os.Create(finalPath)
+ if err != nil {
+ return err
+ }
+ defer finalFile.Close()
+
+ // Read and merge chunks in order
+ for i := 0; i < totalChunks; i++ {
+ chunkPath := filepath.Join(chunksDir, fmt.Sprintf("chunk_%d", i))
+ chunkFile, err := os.Open(chunkPath)
+ if err != nil {
+ return fmt.Errorf("failed to read chunk %d: %w", i, err)
+ }
+
+ _, err = io.Copy(finalFile, chunkFile)
+ chunkFile.Close()
+ if err != nil {
+ return fmt.Errorf("failed to copy chunk %d: %w", i, err)
+ }
+ }
+
+ // Clean up chunks directory
+ os.RemoveAll(chunksDir)
+ return nil
+}
+
+// Reader read file from local storage
+func (storage *Storage) Reader(ctx context.Context, path string) (io.ReadCloser, error) {
+ fullpath := filepath.Join(storage.Path, path)
+
+ reader, err := os.Open(fullpath)
+ if err != nil {
+ return nil, err
+ }
+
+ // If the file is a gzip file, decompress it
+ if strings.HasSuffix(path, ".gz") {
+ reader, err := gzip.NewReader(reader)
+ if err != nil {
+ return nil, err
+ }
+ return reader, nil
+ }
+
+ return reader, nil
+}
+
+// Download download file from local storage
+func (storage *Storage) Download(ctx context.Context, path string) (io.ReadCloser, string, error) {
+ fullPath := filepath.Join(storage.Path, path)
+ reader, err := os.Open(fullPath)
+ if err != nil {
+ return nil, "", err
+ }
+
+ // Try to detect content type from file extension
+ contentType := "application/octet-stream"
+ ext := filepath.Ext(strings.TrimSuffix(path, ".gz"))
+ switch strings.ToLower(ext) {
+ case ".txt":
+ contentType = "text/plain"
+ case ".html":
+ contentType = "text/html"
+ case ".css":
+ contentType = "text/css"
+ case ".js":
+ contentType = "application/javascript"
+ case ".json":
+ contentType = "application/json"
+ case ".jpg", ".jpeg":
+ contentType = "image/jpeg"
+ case ".png":
+ contentType = "image/png"
+ case ".gif":
+ contentType = "image/gif"
+ case ".pdf":
+ contentType = "application/pdf"
+ case ".mp4":
+ contentType = "video/mp4"
+ case ".mp3":
+ contentType = "audio/mpeg"
+ case ".wav":
+ contentType = "audio/wav"
+ case ".ogg":
+ contentType = "audio/ogg"
+ case ".webm":
+ contentType = "video/webm"
+ case ".webp":
+ contentType = "image/webp"
+ case ".zip":
+ }
+
+ // If the file is a gzip file, decompress it
+ if strings.HasSuffix(path, ".gz") {
+ reader, err := gzip.NewReader(reader)
+ if err != nil {
+ return nil, "", err
+ }
+ return reader, contentType, nil
+ }
+
+ return reader, contentType, nil
+}
+
+// URL get file url
+func (storage *Storage) URL(ctx context.Context, path string) string {
+ if storage.PreviewURL != nil {
+ return storage.PreviewURL(path)
+ }
+ if storage.BaseURL != "" {
+ return fmt.Sprintf("%s/%s", strings.TrimRight(storage.BaseURL, "/"), path)
+ }
+ return fmt.Sprintf("%s/%s", storage.Path, path)
+}
+
+// GetContent gets file content as bytes
+func (storage *Storage) GetContent(ctx context.Context, path string) ([]byte, error) {
+ reader, err := storage.Reader(ctx, path)
+ if err != nil {
+ return nil, err
+ }
+ defer reader.Close()
+
+ return io.ReadAll(reader)
+}
+
+// Exists checks if a file exists
+func (storage *Storage) Exists(ctx context.Context, path string) bool {
+ fullpath := filepath.Join(storage.Path, path)
+ _, err := os.Stat(fullpath)
+ return err == nil
+}
+
+// Delete deletes a file
+func (storage *Storage) Delete(ctx context.Context, path string) error {
+ fullpath := filepath.Join(storage.Path, path)
+ return os.Remove(fullpath)
+}
+
+func (storage *Storage) makeID(filename string, ext string) string {
+ date := time.Now().Format("20060102")
+ hash := fmt.Sprintf("%x", sha256.Sum256([]byte(filename)))[:8]
+ name := strings.TrimSuffix(filepath.Base(filename), ext)
+ return fmt.Sprintf("%s/%s-%s%s", date, name, hash, ext)
+}
+
+// LocalPath returns the absolute path of the file and its content type
+func (storage *Storage) LocalPath(ctx context.Context, path string) (string, string, error) {
+ fullPath := filepath.Join(storage.Path, path)
+
+ // Check if file exists
+ if _, err := os.Stat(fullPath); os.IsNotExist(err) {
+ return "", "", fmt.Errorf("file not found: %s", path)
+ }
+
+ // For gzipped files, we need to detect the original content type, not the gzip wrapper
+ var contentType string
+ var err error
+
+ if strings.HasSuffix(path, ".gz") {
+ // For gzipped files, detect content type of the decompressed content
+ originalPath := strings.TrimSuffix(path, ".gz")
+ ext := filepath.Ext(originalPath)
+
+ // First try to detect by original file extension
+ contentType, err = detectContentTypeFromExtension(ext)
+ if err != nil || contentType == "application/octet-stream" {
+ // Fallback: decompress and detect from content
+ contentType, err = detectContentTypeFromGzippedFile(fullPath)
+ if err != nil {
+ return "", "", fmt.Errorf("failed to detect content type from gzipped file: %w", err)
+ }
+ }
+ } else {
+ // Regular file content type detection
+ contentType, err = detectContentType(fullPath)
+ if err != nil {
+ return "", "", fmt.Errorf("failed to detect content type: %w", err)
+ }
+ }
+
+ // Return absolute path
+ absPath, err := filepath.Abs(fullPath)
+ if err != nil {
+ return "", "", fmt.Errorf("failed to get absolute path: %w", err)
+ }
+
+ return absPath, contentType, nil
+}
+
+// detectContentType detects content type based on file extension and content
+func detectContentType(filePath string) (string, error) {
+ // First try to detect by file extension
+ ext := strings.ToLower(filepath.Ext(filePath))
+
+ // Common file extensions mapping
+ switch ext {
+ case ".txt":
+ return "text/plain", nil
+ case ".html", ".htm":
+ return "text/html", nil
+ case ".css":
+ return "text/css", nil
+ case ".js":
+ return "application/javascript", nil
+ case ".json":
+ return "application/json", nil
+ case ".xml":
+ return "application/xml", nil
+ case ".jpg", ".jpeg":
+ return "image/jpeg", nil
+ case ".png":
+ return "image/png", nil
+ case ".gif":
+ return "image/gif", nil
+ case ".webp":
+ return "image/webp", nil
+ case ".svg":
+ return "image/svg+xml", nil
+ case ".pdf":
+ return "application/pdf", nil
+ case ".doc":
+ return "application/msword", nil
+ case ".docx":
+ return "application/vnd.openxmlformats-officedocument.wordprocessingml.document", nil
+ case ".xls":
+ return "application/vnd.ms-excel", nil
+ case ".xlsx":
+ return "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", nil
+ case ".ppt":
+ return "application/vnd.ms-powerpoint", nil
+ case ".pptx":
+ return "application/vnd.openxmlformats-officedocument.presentationml.presentation", nil
+ case ".zip":
+ return "application/zip", nil
+ case ".tar":
+ return "application/x-tar", nil
+ case ".gz":
+ return "application/gzip", nil
+ case ".mp3":
+ return "audio/mpeg", nil
+ case ".wav":
+ return "audio/wav", nil
+ case ".m4a":
+ return "audio/mp4", nil
+ case ".ogg":
+ return "audio/ogg", nil
+ case ".mp4":
+ return "video/mp4", nil
+ case ".avi":
+ return "video/x-msvideo", nil
+ case ".mov":
+ return "video/quicktime", nil
+ case ".webm":
+ return "video/webm", nil
+ case ".md", ".mdx":
+ return "text/markdown", nil
+ case ".yao":
+ return "application/yao", nil
+ case ".csv":
+ return "text/csv", nil
+ }
+
+ // Try to detect by MIME package
+ if contentType := mime.TypeByExtension(ext); contentType != "" {
+ return contentType, nil
+ }
+
+ // Fallback: detect by reading file content
+ file, err := os.Open(filePath)
+ if err != nil {
+ return "application/octet-stream", nil // Default fallback
+ }
+ defer file.Close()
+
+ // Read first 512 bytes for content detection
+ buffer := make([]byte, 512)
+ n, err := file.Read(buffer)
+ if err != nil && err != io.EOF {
+ return "application/octet-stream", nil
+ }
+
+ // Use http.DetectContentType to detect based on content
+ contentType := http.DetectContentType(buffer[:n])
+ return contentType, nil
+}
+
+// detectContentTypeFromExtension detects content type based only on file extension
+func detectContentTypeFromExtension(ext string) (string, error) {
+ ext = strings.ToLower(ext)
+
+ // Common file extensions mapping
+ switch ext {
+ case ".txt":
+ return "text/plain", nil
+ case ".html", ".htm":
+ return "text/html", nil
+ case ".css":
+ return "text/css", nil
+ case ".js":
+ return "application/javascript", nil
+ case ".json":
+ return "application/json", nil
+ case ".xml":
+ return "application/xml", nil
+ case ".jpg", ".jpeg":
+ return "image/jpeg", nil
+ case ".png":
+ return "image/png", nil
+ case ".gif":
+ return "image/gif", nil
+ case ".webp":
+ return "image/webp", nil
+ case ".svg":
+ return "image/svg+xml", nil
+ case ".pdf":
+ return "application/pdf", nil
+ case ".doc":
+ return "application/msword", nil
+ case ".docx":
+ return "application/vnd.openxmlformats-officedocument.wordprocessingml.document", nil
+ case ".xls":
+ return "application/vnd.ms-excel", nil
+ case ".xlsx":
+ return "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", nil
+ case ".ppt":
+ return "application/vnd.ms-powerpoint", nil
+ case ".pptx":
+ return "application/vnd.openxmlformats-officedocument.presentationml.presentation", nil
+ case ".zip":
+ return "application/zip", nil
+ case ".tar":
+ return "application/x-tar", nil
+ case ".mp3":
+ return "audio/mpeg", nil
+ case ".wav":
+ return "audio/wav", nil
+ case ".m4a":
+ return "audio/mp4", nil
+ case ".ogg":
+ return "audio/ogg", nil
+ case ".mp4":
+ return "video/mp4", nil
+ case ".avi":
+ return "video/x-msvideo", nil
+ case ".mov":
+ return "video/quicktime", nil
+ case ".webm":
+ return "video/webm", nil
+ case ".md", ".mdx":
+ return "text/markdown", nil
+ case ".yao":
+ return "application/yao", nil
+ case ".csv":
+ return "text/csv", nil
+ }
+
+ // Try to detect by MIME package
+ if contentType := mime.TypeByExtension(ext); contentType != "" {
+ return contentType, nil
+ }
+
+ // Return default if not found
+ return "application/octet-stream", nil
+}
+
+// detectContentTypeFromGzippedFile detects content type by decompressing and reading gzipped file
+func detectContentTypeFromGzippedFile(gzippedFilePath string) (string, error) {
+ file, err := os.Open(gzippedFilePath)
+ if err != nil {
+ return "", err
+ }
+ defer file.Close()
+
+ // Create gzip reader
+ gzipReader, err := gzip.NewReader(file)
+ if err != nil {
+ return "", err
+ }
+ defer gzipReader.Close()
+
+ // Read first 512 bytes of decompressed content
+ buffer := make([]byte, 512)
+ n, err := gzipReader.Read(buffer)
+ if err != nil && err != io.EOF {
+ return "", err
+ }
+
+ // Use http.DetectContentType to detect based on decompressed content
+ contentType := http.DetectContentType(buffer[:n])
+ return contentType, nil
+}
diff --git a/attachment/local/storage_test.go b/attachment/local/storage_test.go
new file mode 100644
index 00000000..a89b4b49
--- /dev/null
+++ b/attachment/local/storage_test.go
@@ -0,0 +1,315 @@
+package local
+
+import (
+ "bytes"
+ "context"
+ "image"
+ "image/png"
+ "io"
+ "os"
+ "path/filepath"
+ "testing"
+
+ "github.com/google/uuid"
+ "github.com/stretchr/testify/assert"
+)
+
+// generateTestFileName generates a unique test filename with the given prefix and extension
+func generateTestFileName(prefix, ext string) string {
+ return prefix + "-" + uuid.New().String() + ext
+}
+
+func TestLocalStorage(t *testing.T) {
+ // Create a temporary directory for testing
+ tempDir, err := os.MkdirTemp("", "local_storage_test")
+ assert.NoError(t, err)
+ defer os.RemoveAll(tempDir)
+
+ testPath := filepath.Join(tempDir, "test_storage")
+
+ t.Run("Create Storage", func(t *testing.T) {
+ storage, err := New(map[string]interface{}{
+ "path": testPath,
+ "compression": true,
+ })
+ assert.NoError(t, err)
+ assert.NotNil(t, storage)
+ assert.Equal(t, testPath, storage.Path)
+ assert.True(t, storage.Compression)
+ })
+
+ t.Run("Upload and Download", func(t *testing.T) {
+ storage, err := New(map[string]interface{}{
+ "path": testPath,
+ "compression": true,
+ })
+ assert.NoError(t, err)
+
+ content := []byte("test content")
+ reader := bytes.NewReader(content)
+ fileID := generateTestFileName("upload-download", ".txt")
+ _, err = storage.Upload(context.Background(), fileID, reader, "text/plain")
+ assert.NoError(t, err)
+ assert.NotEmpty(t, fileID)
+
+ // Download
+ reader2, contentType, err := storage.Download(context.Background(), fileID)
+ assert.NoError(t, err)
+ assert.Contains(t, contentType, "text/plain")
+
+ downloaded, err := io.ReadAll(reader2)
+ assert.NoError(t, err)
+ assert.Equal(t, content, downloaded)
+ })
+
+ t.Run("Upload and Download Image with Compression", func(t *testing.T) {
+ storage, err := New(map[string]interface{}{
+ "path": testPath,
+ "compression": true,
+ })
+ assert.NoError(t, err)
+
+ // Create a test image (100x100 pixels - smaller for faster testing)
+ img := image.NewRGBA(image.Rect(0, 0, 100, 100))
+ var buf bytes.Buffer
+ err = png.Encode(&buf, img)
+ assert.NoError(t, err)
+
+ // Upload
+ reader := bytes.NewReader(buf.Bytes())
+ fileID := generateTestFileName("image-with-compression", ".png")
+ _, err = storage.Upload(context.Background(), fileID, reader, "image/png")
+ assert.NoError(t, err)
+ assert.NotEmpty(t, fileID)
+
+ // Download and verify
+ reader2, contentType, err := storage.Download(context.Background(), fileID)
+ assert.NoError(t, err)
+ assert.Equal(t, "image/png", contentType)
+
+ downloaded, err := io.ReadAll(reader2)
+ assert.NoError(t, err)
+
+ // Decode the downloaded image
+ downloadedImg, _, err := image.Decode(bytes.NewReader(downloaded))
+ assert.NoError(t, err)
+
+ // Verify image was processed
+ bounds := downloadedImg.Bounds()
+ assert.True(t, bounds.Dx() > 0)
+ assert.True(t, bounds.Dy() > 0)
+ })
+
+ t.Run("Upload Image without Compression", func(t *testing.T) {
+ storage, err := New(map[string]interface{}{
+ "path": testPath,
+ "compression": false,
+ })
+ assert.NoError(t, err)
+
+ // Create a test image (100x100 pixels)
+ img := image.NewRGBA(image.Rect(0, 0, 100, 100))
+ var buf bytes.Buffer
+ err = png.Encode(&buf, img)
+ assert.NoError(t, err)
+
+ // Upload
+ reader := bytes.NewReader(buf.Bytes())
+ fileID := generateTestFileName("image-without-compression", ".png")
+ _, err = storage.Upload(context.Background(), fileID, reader, "image/png")
+ assert.NoError(t, err)
+ assert.NotEmpty(t, fileID)
+
+ // Download and verify
+ reader2, contentType, err := storage.Download(context.Background(), fileID)
+ assert.NoError(t, err)
+ assert.Equal(t, "image/png", contentType)
+
+ downloaded, err := io.ReadAll(reader2)
+ assert.NoError(t, err)
+
+ // Decode the downloaded image
+ downloadedImg, _, err := image.Decode(bytes.NewReader(downloaded))
+ assert.NoError(t, err)
+
+ // Verify dimensions are unchanged
+ bounds := downloadedImg.Bounds()
+ assert.Equal(t, 100, bounds.Dx())
+ assert.Equal(t, 100, bounds.Dy())
+ })
+
+ t.Run("URL Generation", func(t *testing.T) {
+ storage, err := New(map[string]interface{}{
+ "path": testPath,
+ "compression": true,
+ })
+ assert.NoError(t, err)
+
+ fileID := "20240101/test-12345678.txt"
+ url := storage.URL(context.Background(), fileID)
+ expected := filepath.Join(testPath, fileID)
+ assert.Equal(t, expected, url)
+ })
+
+ t.Run("Download Non-existent File", func(t *testing.T) {
+ storage, err := New(map[string]interface{}{
+ "path": testPath,
+ "compression": true,
+ })
+ assert.NoError(t, err)
+
+ _, _, err = storage.Download(context.Background(), "non-existent.txt")
+ assert.Error(t, err)
+ })
+
+ t.Run("Chunked Upload", func(t *testing.T) {
+ storage, err := New(map[string]interface{}{
+ "path": testPath,
+ })
+ assert.NoError(t, err)
+
+ fileID := "test-chunked.txt"
+ content1 := []byte("chunk1")
+ content2 := []byte("chunk2")
+
+ // Upload chunks
+ err = storage.UploadChunk(context.Background(), fileID, 0, bytes.NewReader(content1), "text/plain")
+ assert.NoError(t, err)
+
+ err = storage.UploadChunk(context.Background(), fileID, 1, bytes.NewReader(content2), "text/plain")
+ assert.NoError(t, err)
+
+ // Merge chunks
+ err = storage.MergeChunks(context.Background(), fileID, 2)
+ assert.NoError(t, err)
+
+ // Download and verify
+ reader, contentType, err := storage.Download(context.Background(), fileID)
+ assert.NoError(t, err)
+ assert.Equal(t, "text/plain", contentType)
+
+ downloaded, err := io.ReadAll(reader)
+ assert.NoError(t, err)
+ assert.Equal(t, append(content1, content2...), downloaded)
+ })
+
+ t.Run("File Operations", func(t *testing.T) {
+ storage, err := New(map[string]interface{}{
+ "path": testPath,
+ })
+ assert.NoError(t, err)
+
+ fileID := "test-ops.txt"
+ content := []byte("test content")
+
+ // Upload file
+ _, err = storage.Upload(context.Background(), fileID, bytes.NewReader(content), "text/plain")
+ assert.NoError(t, err)
+
+ // Check if file exists
+ exists := storage.Exists(context.Background(), fileID)
+ assert.True(t, exists)
+
+ // Read file
+ reader, err := storage.Reader(context.Background(), fileID)
+ assert.NoError(t, err)
+ defer reader.Close()
+
+ data, err := io.ReadAll(reader)
+ assert.NoError(t, err)
+ assert.Equal(t, content, data)
+
+ // Get file content directly
+ directContent, err := storage.GetContent(context.Background(), fileID)
+ assert.NoError(t, err)
+ assert.Equal(t, content, directContent)
+
+ // Delete file
+ err = storage.Delete(context.Background(), fileID)
+ assert.NoError(t, err)
+
+ // Check if file no longer exists
+ exists = storage.Exists(context.Background(), fileID)
+ assert.False(t, exists)
+ })
+
+ t.Run("LocalPath", func(t *testing.T) {
+ storage, err := New(map[string]interface{}{
+ "path": testPath,
+ })
+ assert.NoError(t, err)
+
+ // Test different file types to verify content type detection
+ testFiles := []struct {
+ ext string
+ content []byte
+ contentType string
+ expectedCT string
+ }{
+ {".txt", []byte("Hello World"), "text/plain", "text/plain"},
+ {".json", []byte(`{"key": "value"}`), "application/json", "application/json"},
+ {".html", []byte("
Test"), "text/html", "text/html"},
+ {".csv", []byte("col1,col2\nval1,val2"), "text/csv", "text/csv"},
+ {".md", []byte("# Markdown Content"), "text/markdown", "text/markdown"},
+ {".yao", []byte("yao file content"), "application/yao", "application/yao"},
+ }
+
+ for _, tf := range testFiles {
+ // Generate unique filename with UUID to avoid conflicts
+ fileName := generateTestFileName("localpath-test", tf.ext)
+
+ // Upload file
+ _, err = storage.Upload(context.Background(), fileName, bytes.NewReader(tf.content), tf.contentType)
+ assert.NoError(t, err, "Failed to upload %s", fileName)
+
+ // Get local path and content type
+ localPath, detectedCT, err := storage.LocalPath(context.Background(), fileName)
+ assert.NoError(t, err, "Failed to get local path for %s", fileName)
+ assert.NotEmpty(t, localPath, "Local path should not be empty for %s", fileName)
+ assert.Equal(t, tf.expectedCT, detectedCT, "Content type mismatch for %s", fileName)
+
+ // Verify the path is absolute
+ assert.True(t, filepath.IsAbs(localPath), "Path should be absolute for %s", fileName)
+
+ // Verify the file exists at the returned path
+ _, err = os.Stat(localPath)
+ assert.NoError(t, err, "File should exist at local path for %s", fileName)
+
+ // Verify file content
+ fileContent, err := os.ReadFile(localPath)
+ assert.NoError(t, err, "Failed to read file at local path for %s", fileName)
+ assert.Equal(t, tf.content, fileContent, "File content mismatch for %s", fileName)
+ }
+ })
+
+ t.Run("LocalPath_NonExistentFile", func(t *testing.T) {
+ storage, err := New(map[string]interface{}{
+ "path": testPath,
+ })
+ assert.NoError(t, err)
+
+ // Test with non-existent file
+ _, _, err = storage.LocalPath(context.Background(), "non-existent.txt")
+ assert.Error(t, err)
+ assert.Contains(t, err.Error(), "file not found")
+ })
+
+ t.Run("LocalPath_ContentDetection", func(t *testing.T) {
+ storage, err := New(map[string]interface{}{
+ "path": testPath,
+ })
+ assert.NoError(t, err)
+
+ // Upload a file without extension but with recognizable content
+ htmlContent := []byte("TestHello
")
+ _, err = storage.Upload(context.Background(), "noext", bytes.NewReader(htmlContent), "application/octet-stream")
+ assert.NoError(t, err)
+
+ // Get local path - should detect HTML content type
+ localPath, contentType, err := storage.LocalPath(context.Background(), "noext")
+ assert.NoError(t, err)
+ assert.NotEmpty(t, localPath)
+ // Content detection should identify this as HTML
+ assert.Equal(t, "text/html; charset=utf-8", contentType)
+ })
+}
diff --git a/attachment/manager.go b/attachment/manager.go
new file mode 100644
index 00000000..61303cd4
--- /dev/null
+++ b/attachment/manager.go
@@ -0,0 +1,1052 @@
+package attachment
+
+import (
+ "bytes"
+ "context"
+ "crypto/md5"
+ "encoding/base64"
+ "encoding/hex"
+ "fmt"
+ "io"
+ "mime"
+ "mime/multipart"
+ "net/http"
+ "net/textproto"
+ "os"
+ "path/filepath"
+ "reflect"
+ "strconv"
+ "strings"
+ "sync"
+ "time"
+
+ "github.com/yaoapp/gou/model"
+ "github.com/yaoapp/yao/attachment/local"
+ "github.com/yaoapp/yao/attachment/s3"
+ "github.com/yaoapp/yao/config"
+)
+
+// Ensure Manager implements FileManager interface
+var _ FileManager = (*Manager)(nil)
+
+// Managers the managers
+var Managers = map[string]*Manager{}
+var uploadChunks = sync.Map{}
+
+// UploadChunk is the chunk data
+type UploadChunk struct {
+ Last int
+ Total int64
+ Chunksize int64
+ TotalChunks int64
+}
+
+// GetHeader gets the header from the file header and request header
+func GetHeader(requestHeader http.Header, fileHeader textproto.MIMEHeader, size int64) *FileHeader {
+
+ // Convert the header to a FileHeader
+ header := &FileHeader{FileHeader: &multipart.FileHeader{Header: make(map[string][]string), Size: size}}
+
+ for key, values := range fileHeader {
+ for _, value := range values {
+ header.Header.Set(key, value)
+ }
+ }
+
+ // Set Content-Sync, Content-Uid, Content-Range
+ if requestHeader.Get("Content-Sync") != "" {
+ header.Header.Set("Content-Sync", requestHeader.Get("Content-Sync"))
+ }
+
+ // Set Content-Uid
+ if requestHeader.Get("Content-Uid") != "" {
+ header.Header.Set("Content-Uid", requestHeader.Get("Content-Uid"))
+ }
+
+ // Set Content-Range
+ if requestHeader.Get("Content-Range") != "" {
+ header.Header.Set("Content-Range", requestHeader.Get("Content-Range"))
+ }
+
+ return header
+}
+
+// Register registers a global attachment manager
+func Register(name string, driver string, option ManagerOption) (*Manager, error) {
+
+ // Create a new manager
+ manager, err := New(option)
+ if err != nil {
+ return nil, err
+ }
+
+ // Set the manager name
+ manager.Name = name
+
+ // Register the manager
+ Managers[name] = manager
+ return manager, nil
+}
+
+// RegisterDefault registers a default attachment manager
+func RegisterDefault(name string) (*Manager, error) {
+
+ option := ManagerOption{
+ Driver: "local",
+ Options: map[string]interface{}{"path": filepath.Join(config.Conf.DataRoot, name)},
+ MaxSize: "50M",
+ ChunkSize: "2M",
+ AllowedTypes: []string{
+ "text/*",
+ "image/*",
+ "video/*",
+ "audio/*",
+ "application/x-zip-compressed",
+ "application/x-tar",
+ "application/x-gzip",
+ "application/yao",
+ "application/zip",
+ "application/pdf",
+ "application/json",
+ "application/vnd.openxmlformats-officedocument.wordprocessingml.document",
+ "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
+ "application/vnd.openxmlformats-officedocument.presentationml.presentation",
+ "application/vnd.openxmlformats-officedocument.presentationml.slideshow",
+ ".md",
+ ".txt",
+ ".csv",
+ ".xls",
+ ".xlsx",
+ ".ppt",
+ ".pptx",
+ ".doc",
+ ".docx",
+ ".mdx",
+ ".m4a",
+ ".mp3",
+ ".mp4",
+ ".wav",
+ ".webm",
+ ".yao",
+ },
+ }
+ return Register(name, option.Driver, option)
+}
+
+// ReplaceEnv replaces the environment variables in the options
+func (option *ManagerOption) ReplaceEnv(root string) {
+ if option.Options != nil {
+ // Replace the environment variables in the options
+ for k, v := range option.Options {
+ if iv, ok := v.(string); ok {
+ if strings.HasPrefix(iv, "$ENV.") {
+ iv = os.ExpandEnv(fmt.Sprintf("${%s}", strings.TrimPrefix(iv, "$ENV.")))
+ option.Options[k] = iv
+ }
+
+ // Path
+ if k == "path" {
+ iv = strings.TrimPrefix(iv, "/")
+ option.Options[k] = filepath.Join(root, iv)
+ }
+
+ }
+ }
+ }
+}
+
+// New creates a new attachment manager
+func New(option ManagerOption) (*Manager, error) {
+ manager := &Manager{
+ ManagerOption: option,
+ allowedTypes: allowedType{mapping: make(map[string]bool),
+ wildcards: []string{},
+ }}
+
+ switch strings.ToLower(option.Driver) {
+ case "local":
+ storage, err := local.New(option.Options)
+ if err != nil {
+ return nil, err
+ }
+ manager.storage = storage
+
+ case "s3":
+ storage, err := s3.New(option.Options)
+ if err != nil {
+ return nil, err
+ }
+ manager.storage = storage
+
+ default:
+ return nil, fmt.Errorf("driver %s does not support", option.Driver)
+ }
+
+ // Max size
+ if option.MaxSize != "" {
+ maxsize, err := getSize(option.MaxSize)
+ if err != nil {
+ return nil, err
+ }
+ manager.maxsize = maxsize
+ }
+
+ // Chunk size
+ if option.ChunkSize != "" {
+ chunsize, err := getSize(option.ChunkSize)
+ if err != nil {
+ return nil, err
+ }
+ manager.chunsize = chunsize
+ }
+
+ // init allowedTypes
+ if len(option.AllowedTypes) > 0 {
+ for _, t := range option.AllowedTypes {
+ t = strings.TrimSpace(t)
+ if strings.HasSuffix(t, "*") {
+ manager.allowedTypes.wildcards = append(manager.allowedTypes.wildcards, t)
+ continue
+ }
+ manager.allowedTypes.mapping[t] = true
+ }
+ }
+
+ return manager, nil
+}
+
+// LocalPath gets the local path of the file
+func (manager Manager) LocalPath(ctx context.Context, fileID string) (string, string, error) {
+ // Get the real storage path from database
+ storagePath, err := manager.getStoragePathFromDatabase(ctx, fileID)
+ if err != nil {
+ return "", "", err
+ }
+
+ // Call the storage implementation
+ return manager.storage.LocalPath(ctx, storagePath)
+}
+
+// Upload uploads a file, Content-Sync must be true for chunked upload
+func (manager Manager) Upload(ctx context.Context, fileheader *FileHeader, reader io.Reader, option UploadOption) (*File, error) {
+
+ file, err := manager.makeFile(fileheader, option)
+ if err != nil {
+ return nil, err
+ }
+
+ // Handle chunked upload
+ if fileheader.IsChunk() {
+ start, end, total, err := fileheader.GetChunkInfo()
+ if err != nil {
+ return nil, fmt.Errorf("invalid chunk info: %w", err)
+ }
+
+ // Store the chunk info
+ chunkIndex := 0
+ if start == 0 {
+ chunksize := end - start + 1
+ totalChunks := (total + chunksize - 1) / chunksize
+ uploadChunks.LoadOrStore(file.ID, &UploadChunk{
+ Last: chunkIndex,
+ Total: total,
+ Chunksize: chunksize,
+ TotalChunks: totalChunks,
+ })
+ }
+
+ // Update the chunk index
+ v, ok := uploadChunks.Load(file.ID)
+ if !ok {
+ return nil, fmt.Errorf("chunk data not found")
+ }
+
+ chunkdata := v.(*UploadChunk)
+
+ // Update the chunk index
+ if start != 0 {
+ chunkIndex = chunkdata.Last + 1
+ chunkdata.Last = chunkIndex
+ uploadChunks.Store(file.ID, chunkdata)
+ }
+
+ // Apply gzip compression if requested
+ if option.Gzip {
+ compressed, err := GzipFromReader(reader)
+ if err != nil {
+ return nil, fmt.Errorf("failed to gzip chunk: %w", err)
+ }
+ reader = bytes.NewReader(compressed)
+
+ }
+
+ // Upload chunk using the storage path
+ err = manager.storage.UploadChunk(ctx, file.Path, chunkIndex, reader, file.ContentType)
+ if err != nil {
+ return nil, err
+ }
+
+ // Fix the file size, the file size is the sum of all chunks
+ file.Bytes = chunkIndex * int(chunkdata.Chunksize)
+ file.Status = "uploading"
+
+ // If this is the last chunk, merge all chunks
+ if fileheader.Complete() {
+ err = manager.storage.MergeChunks(ctx, file.Path, int(chunkdata.TotalChunks))
+ if err != nil {
+ return nil, err
+ }
+
+ // Apply image compression if requested and it's the final file
+ if option.CompressImage && strings.HasPrefix(file.ContentType, "image/") {
+ err = manager.compressStoredImage(ctx, file, option)
+ if err != nil {
+ return nil, err
+ }
+ }
+
+ // Remove the chunk data
+ uploadChunks.Delete(file.ID)
+
+ // Fix the file size
+ file.Bytes = int(chunkdata.Total)
+ file.Status = "uploaded"
+
+ // Save file information to database when chunked upload is complete
+ err = manager.saveFileToDatabase(ctx, file, file.Path, option)
+ if err != nil {
+ return nil, fmt.Errorf("failed to save chunked file to database: %w", err)
+ }
+ }
+
+ return file, nil
+ }
+
+ // Handle single file upload
+ var finalReader io.Reader = reader
+
+ // Apply gzip compression if requested
+ if option.Gzip {
+ compressed, err := GzipFromReader(reader)
+ if err != nil {
+ return nil, fmt.Errorf("failed to gzip file: %w", err)
+ }
+
+ finalReader = bytes.NewReader(compressed)
+ }
+
+ // Apply image compression if requested
+ if option.CompressImage && strings.HasPrefix(file.ContentType, "image/") {
+ size := option.CompressSize
+ if size == 0 {
+ size = 1920
+ }
+
+ // If gzip was applied, we need to decompress first
+ if option.Gzip {
+ data, err := io.ReadAll(finalReader)
+ if err != nil {
+ return nil, err
+ }
+ decompressed, err := Gunzip(data)
+ if err != nil {
+ return nil, err
+ }
+ finalReader = bytes.NewReader(decompressed)
+ }
+
+ compressed, err := CompressImage(finalReader, file.ContentType, size)
+ if err != nil {
+ return nil, err
+ }
+
+ // Re-apply gzip if it was requested
+ if option.Gzip {
+ gzipped, err := Gzip(compressed)
+ if err != nil {
+ return nil, err
+ }
+ finalReader = bytes.NewReader(gzipped)
+ } else {
+ finalReader = bytes.NewReader(compressed)
+ }
+ }
+
+ // Upload the file to storage using the generated storage path
+ actualStoragePath, err := manager.storage.Upload(ctx, file.Path, finalReader, file.ContentType)
+ if err != nil {
+ return nil, err
+ }
+
+ // Update the actual storage path if storage returns a different path
+ if actualStoragePath != "" && actualStoragePath != file.Path {
+ file.Path = actualStoragePath
+ }
+
+ // Update the file status
+ file.Status = "uploaded"
+
+ // Save file information to database
+ err = manager.saveFileToDatabase(ctx, file, file.Path, option)
+ if err != nil {
+ return nil, fmt.Errorf("failed to save file to database: %w", err)
+ }
+
+ return file, nil
+}
+
+// compressStoredImage compresses an already stored image
+func (manager Manager) compressStoredImage(ctx context.Context, file *File, option UploadOption) error {
+ // Download the stored file using storage path
+ reader, err := manager.storage.Reader(ctx, file.Path)
+ if err != nil {
+ return err
+ }
+ defer reader.Close()
+
+ size := option.CompressSize
+ if size == 0 {
+ size = 1920
+ }
+
+ // Compress the image
+ compressed, err := CompressImage(reader, file.ContentType, size)
+ if err != nil {
+ return err
+ }
+
+ // Re-upload the compressed image using storage path
+ _, err = manager.storage.Upload(ctx, file.Path, bytes.NewReader(compressed), file.ContentType)
+ return err
+}
+
+// Download downloads a file
+func (manager Manager) Download(ctx context.Context, fileID string) (*FileResponse, error) {
+ // Get real storage path from database
+ storagePath, err := manager.getStoragePathFromDatabase(ctx, fileID)
+ if err != nil {
+ return nil, err
+ }
+
+ reader, contentType, err := manager.storage.Download(ctx, storagePath)
+ if err != nil {
+ return nil, err
+ }
+
+ extension := filepath.Ext(storagePath)
+ if extension == "" {
+ // Try to get extension from content type
+ extensions, err := mime.ExtensionsByType(contentType)
+ if err == nil && len(extensions) > 0 {
+ extension = extensions[0]
+ }
+ }
+
+ return &FileResponse{
+ Reader: reader,
+ ContentType: contentType,
+ Extension: extension,
+ }, nil
+}
+
+// Read reads a file and returns the content as bytes
+func (manager Manager) Read(ctx context.Context, fileID string) ([]byte, error) {
+ // Get file info from database to check if it's gzipped
+ file, err := manager.getFileFromDatabase(ctx, fileID)
+ if err != nil {
+ return nil, err
+ }
+
+ reader, err := manager.storage.Reader(ctx, file.Path)
+ if err != nil {
+ return nil, err
+ }
+ defer reader.Close()
+
+ data, err := io.ReadAll(reader)
+ if err != nil {
+ return nil, err
+ }
+
+ // Storage layer already handles gzip decompression for .gz files
+ // No need to decompress again at Manager level
+
+ return data, nil
+}
+
+// ReadBase64 reads a file and returns the content as base64 encoded string
+func (manager Manager) ReadBase64(ctx context.Context, fileID string) (string, error) {
+ data, err := manager.Read(ctx, fileID)
+ if err != nil {
+ return "", err
+ }
+
+ return base64.StdEncoding.EncodeToString(data), nil
+}
+
+// Info retrieves complete file information from database by file ID
+func (manager Manager) Info(ctx context.Context, fileID string) (*File, error) {
+ return manager.getFileFromDatabase(ctx, fileID)
+}
+
+// List retrieves files from database with pagination and filtering
+func (manager Manager) List(ctx context.Context, option ListOption) (*ListResult, error) {
+ m := model.Select("__yao.attachment")
+
+ // Set default values
+ page := option.Page
+ if page <= 0 {
+ page = 1
+ }
+
+ pageSize := option.PageSize
+ if pageSize <= 0 {
+ pageSize = 20
+ }
+
+ // Build query parameters
+ queryParam := model.QueryParam{}
+
+ // Add select fields
+ if len(option.Select) > 0 {
+ queryParam.Select = make([]interface{}, len(option.Select))
+ for i, field := range option.Select {
+ queryParam.Select[i] = field
+ }
+ }
+
+ // Add filters
+ if len(option.Filters) > 0 {
+ queryParam.Wheres = make([]model.QueryWhere, 0, len(option.Filters))
+ for field, value := range option.Filters {
+ where := model.QueryWhere{
+ Column: field,
+ Value: value,
+ }
+
+ // Handle special operators for wildcard matching
+ if strValue, ok := value.(string); ok {
+ if strings.Contains(strValue, "*") {
+ // Wildcard matching for LIKE queries
+ where.OP = "like"
+ where.Value = strings.ReplaceAll(strValue, "*", "%")
+ }
+ }
+
+ queryParam.Wheres = append(queryParam.Wheres, where)
+ }
+ }
+
+ // Add ordering
+ if option.OrderBy != "" {
+ // Parse order by string like "created_at desc" or "name asc"
+ parts := strings.Fields(option.OrderBy)
+ if len(parts) >= 1 {
+ orderField := parts[0]
+ orderDirection := "asc"
+ if len(parts) >= 2 {
+ orderDirection = strings.ToLower(parts[1])
+ }
+
+ queryParam.Orders = []model.QueryOrder{
+ {
+ Column: orderField,
+ Option: orderDirection,
+ },
+ }
+ }
+ } else {
+ // Default order by created_at desc
+ queryParam.Orders = []model.QueryOrder{
+ {
+ Column: "created_at",
+ Option: "desc",
+ },
+ }
+ }
+
+ // Use model's built-in Paginate method
+ result, err := m.Paginate(queryParam, page, pageSize)
+ if err != nil {
+ return nil, fmt.Errorf("failed to paginate files: %w", err)
+ }
+
+ // Extract pagination info from result
+ total := int64(0)
+ if totalInterface, ok := result["total"]; ok {
+ if totalInt, ok := totalInterface.(int); ok {
+ total = int64(totalInt)
+ } else if totalInt64, ok := totalInterface.(int64); ok {
+ total = totalInt64
+ }
+ }
+
+ // Extract data from result - handle maps.MapStrAny type
+ var records []map[string]interface{}
+ if dataInterface, ok := result["data"]; ok {
+ // The data is of type []maps.MapStrAny, need to convert
+ if dataSlice, ok := dataInterface.([]interface{}); ok {
+ records = make([]map[string]interface{}, len(dataSlice))
+ for i, item := range dataSlice {
+ if record, ok := item.(map[string]interface{}); ok {
+ records[i] = record
+ }
+ }
+ } else {
+ // Try to handle it as the actual type returned by gou using reflection
+ dataValue := reflect.ValueOf(dataInterface)
+ if dataValue.Kind() == reflect.Slice {
+ length := dataValue.Len()
+ records = make([]map[string]interface{}, length)
+ for i := 0; i < length; i++ {
+ item := dataValue.Index(i).Interface()
+ // Convert the item to map[string]interface{} using reflection
+ if itemValue := reflect.ValueOf(item); itemValue.Kind() == reflect.Map {
+ record := make(map[string]interface{})
+ for _, key := range itemValue.MapKeys() {
+ if keyStr := key.String(); keyStr != "" {
+ record[keyStr] = itemValue.MapIndex(key).Interface()
+ }
+ }
+ records[i] = record
+ }
+ }
+ }
+ }
+ }
+
+ // Convert records to File structs
+ files := make([]*File, 0, len(records))
+ for _, record := range records {
+ file := &File{}
+
+ // Map required fields
+ if fileID, ok := record["file_id"].(string); ok {
+ file.ID = fileID
+ }
+ if name, ok := record["name"].(string); ok {
+ file.Filename = name
+ }
+ if contentType, ok := record["content_type"].(string); ok {
+ file.ContentType = contentType
+ }
+ if status, ok := record["status"].(string); ok {
+ file.Status = status
+ }
+
+ // Map optional fields
+ if userPath, ok := record["user_path"].(string); ok {
+ file.UserPath = userPath
+ }
+ if path, ok := record["path"].(string); ok {
+ file.Path = path
+ }
+ if bytes, ok := record["bytes"].(int64); ok {
+ file.Bytes = int(bytes)
+ } else if bytesInt, ok := record["bytes"].(int); ok {
+ file.Bytes = bytesInt
+ }
+ if createdAt, ok := record["created_at"].(int64); ok {
+ file.CreatedAt = int(createdAt)
+ } else if createdAtInt, ok := record["created_at"].(int); ok {
+ file.CreatedAt = createdAtInt
+ } else {
+ // Fallback to current time if not available
+ file.CreatedAt = int(time.Now().Unix())
+ }
+
+ files = append(files, file)
+ }
+
+ // Calculate total pages
+ totalPages := int((total + int64(pageSize) - 1) / int64(pageSize))
+
+ return &ListResult{
+ Files: files,
+ Total: total,
+ Page: page,
+ PageSize: pageSize,
+ TotalPages: totalPages,
+ }, nil
+}
+
+// validate validates the file and option
+func (manager Manager) makeFile(file *FileHeader, option UploadOption) (*File, error) {
+
+ // Validate max size
+ if manager.maxsize > 0 && file.Size > manager.maxsize {
+ return nil, fmt.Errorf("file size %d exceeds the maximum size of %d", file.Size, manager.maxsize)
+ }
+
+ // Get the content type
+ contentType := file.Header.Get("Content-Type")
+
+ // Use original filename if provided, otherwise use the file header filename
+ filename := file.Filename
+ userPath := option.OriginalFilename
+ if userPath != "" {
+ // If user provided a path, extract just the filename for the filename field
+ filename = filepath.Base(userPath)
+ }
+
+ extension := filepath.Ext(filename)
+
+ // Get the extension from the content type if not available from filename
+ if extension == "" {
+ // Special handling for common types
+ switch contentType {
+ case "text/plain":
+ extension = ".txt"
+ case "image/jpeg":
+ extension = ".jpg"
+ case "image/png":
+ extension = ".png"
+ case "application/pdf":
+ extension = ".pdf"
+ default:
+ extensions, err := mime.ExtensionsByType(contentType)
+ if err == nil && len(extensions) > 0 {
+ // For text/plain, prefer .txt over .conf
+ if contentType == "text/plain" {
+ for _, ext := range extensions {
+ if ext == ".txt" {
+ extension = ext
+ break
+ }
+ }
+ if extension == "" {
+ extension = ".txt"
+ }
+ } else {
+ extension = extensions[0]
+ }
+ }
+ }
+ }
+
+ // Validate allowed types
+ if !manager.allowed(contentType, extension) {
+ return nil, fmt.Errorf("%s type %s is not allowed", filename, contentType)
+ }
+
+ // Generate file ID and storage path using the new approach
+ id, storagePath, err := manager.generateFilePaths(file, extension, option)
+ if err != nil {
+ return nil, err
+ }
+
+ // Set the path: use userPath if provided, otherwise use filename
+ filePath := userPath
+ if filePath == "" {
+ filePath = filename
+ }
+
+ return &File{
+ ID: id,
+ UserPath: userPath, // Keep user's original input exactly as provided
+ Path: storagePath, // Complete storage path: Groups + filename
+ Filename: filename, // Use just the filename (extracted from path or header)
+ ContentType: contentType,
+ Bytes: int(file.Size),
+ CreatedAt: int(time.Now().Unix()),
+ Status: "uploading",
+ }, nil
+}
+
+func (manager Manager) allowed(contentType string, extension string) bool {
+
+ // text/*, image/*, audio/*, video/*, application/yao-*, ...
+ for _, t := range manager.allowedTypes.wildcards {
+ prefix := strings.TrimSuffix(t, "*")
+ if strings.HasPrefix(contentType, prefix) {
+ return true
+ }
+ }
+
+ // Accepted types
+ if _, ok := manager.allowedTypes.mapping[contentType]; ok {
+ return true
+ }
+
+ // Accepted extensions
+ if _, ok := manager.allowedTypes.mapping[extension]; ok {
+ return true
+ }
+
+ // Not allowed
+ return false
+}
+
+// generateFileID generates file ID and storage path based on Groups and filename
+func (manager Manager) generateFilePaths(file *FileHeader, extension string, option UploadOption) (fileID string, storagePath string, err error) {
+
+ // 1. Get the filename
+ var filename string
+ if file.Fingerprint() != "" {
+ filename = file.Fingerprint()
+ } else if file.IsChunk() {
+ filename = file.UID()
+ } else {
+ // Generate unique filename to avoid conflicts
+ var originalName string
+ if option.OriginalFilename != "" {
+ originalName = filepath.Base(option.OriginalFilename)
+ } else {
+ originalName = file.Filename
+ }
+
+ // Extract extension from original filename
+ ext := filepath.Ext(originalName)
+ if ext == "" && extension != "" {
+ ext = extension
+ }
+
+ // Generate unique filename: MD5 hash of original name + timestamp + extension
+ nameHash := generateID(originalName + fmt.Sprintf("%d", time.Now().UnixNano()))
+ filename = nameHash[:16] + ext // Use first 16 chars of hash + extension
+ }
+
+ // 2. Build complete storage path: Groups + filename
+ pathParts := []string{}
+
+ // Add groups to path
+ if len(option.Groups) > 0 {
+ pathParts = append(pathParts, option.Groups...)
+ }
+
+ // Add filename
+ pathParts = append(pathParts, filename)
+
+ // Join to create complete storage path
+ storagePath = strings.Join(pathParts, "/")
+
+ // 3. Validate the storage path
+ if !isValidPath(storagePath) {
+ return "", "", fmt.Errorf("invalid storage path: %s", storagePath)
+ }
+
+ // 4. Generate ID as alias of the storage path (for security)
+ fileID = generateID(storagePath)
+
+ // 5. Add gzip extension to storage path if needed (not to fileID)
+ if option.Gzip {
+ storagePath = storagePath + ".gz"
+ }
+
+ return fileID, storagePath, nil
+}
+
+// generateID generates a URL-safe ID based on the storage path
+func generateID(storagePath string) string {
+ hash := md5.Sum([]byte(storagePath))
+ return hex.EncodeToString(hash[:])
+}
+
+// isValidPath checks if a file path is valid
+func isValidPath(path string) bool {
+ if path == "" {
+ return false
+ }
+
+ // Check for invalid characters that could cause issues
+ invalidChars := []string{"../", "..\\", "\\", "//"}
+ for _, invalid := range invalidChars {
+ if strings.Contains(path, invalid) {
+ return false
+ }
+ }
+
+ return true
+}
+
+// getSize converts the size to bytes
+func getSize(size string) (int64, error) {
+ if size == "" || size == "0" {
+ return 0, fmt.Errorf("size is empty")
+ }
+
+ unit := strings.ToUpper(size[len(size)-1:])
+ str := size[:len(size)-1]
+ if unit != "B" && unit != "K" && unit != "M" && unit != "G" {
+ unit = "B"
+ str = size
+ }
+
+ value, err := strconv.ParseInt(str, 10, 64)
+ if err != nil {
+ return 0, fmt.Errorf("invalid size: %s %s", size, err)
+ }
+
+ switch unit {
+ case "B":
+ return value, nil
+ case "K":
+ return value * 1024, nil
+ case "M":
+ return value * 1024 * 1024, nil
+ case "G":
+ return value * 1024 * 1024 * 1024, nil
+ }
+
+ return 0, fmt.Errorf("invalid size: %s", size)
+}
+
+// Exists checks if a file exists in storage
+func (manager Manager) Exists(ctx context.Context, fileID string) bool {
+ // Check if file exists in database first
+ storagePath, err := manager.getStoragePathFromDatabase(ctx, fileID)
+ if err != nil {
+ return false
+ }
+
+ // Then check if it exists in storage
+ return manager.storage.Exists(ctx, storagePath)
+}
+
+// Delete deletes a file from storage
+func (manager Manager) Delete(ctx context.Context, fileID string) error {
+ // Get real storage path from database
+ storagePath, err := manager.getStoragePathFromDatabase(ctx, fileID)
+ if err != nil {
+ return err
+ }
+
+ // Delete from storage
+ err = manager.storage.Delete(ctx, storagePath)
+ if err != nil {
+ return err
+ }
+
+ // Delete from database
+ m := model.Select("__yao.attachment")
+ _, err = m.DeleteWhere(model.QueryParam{
+ Wheres: []model.QueryWhere{
+ {Column: "file_id", Value: fileID},
+ },
+ })
+
+ if err != nil {
+ return fmt.Errorf("failed to delete from database: %w", err)
+ }
+
+ return nil
+}
+
+// saveFileToDatabase saves file information to the database
+func (manager Manager) saveFileToDatabase(ctx context.Context, file *File, storagePath string, option UploadOption) error {
+
+ m := model.Select("__yao.attachment")
+
+ // Prepare data for database
+ data := map[string]interface{}{
+ "file_id": file.ID,
+ "uploader": manager.Name,
+ "content_type": file.ContentType,
+ "name": file.Filename,
+ "user_path": option.OriginalFilename,
+ "path": storagePath,
+ "bytes": int64(file.Bytes),
+ "status": file.Status,
+ "gzip": option.Gzip,
+ "groups": option.Groups,
+ "client_id": option.ClientID,
+ "openid": option.OpenID,
+ }
+
+ // Check if record exists first
+ records, err := m.Get(model.QueryParam{
+ Select: []interface{}{"file_id"},
+ Wheres: []model.QueryWhere{
+ {Column: "file_id", Value: file.ID},
+ },
+ })
+
+ if err != nil {
+ return fmt.Errorf("failed to check existing record: %w", err)
+ }
+
+ if len(records) > 0 {
+ // Update existing record
+ _, err = m.UpdateWhere(model.QueryParam{
+ Wheres: []model.QueryWhere{
+ {Column: "file_id", Value: file.ID},
+ },
+ }, data)
+ } else {
+ // Create new record
+ _, err = m.Create(data)
+ }
+
+ return err
+}
+
+// getFileFromDatabase retrieves file information from database by file_id
+func (manager Manager) getFileFromDatabase(ctx context.Context, fileID string) (*File, error) {
+ m := model.Select("__yao.attachment")
+
+ records, err := m.Get(model.QueryParam{
+ Wheres: []model.QueryWhere{
+ {Column: "file_id", Value: fileID},
+ },
+ })
+
+ if err != nil {
+ return nil, fmt.Errorf("failed to query file: %w", err)
+ }
+
+ if len(records) == 0 {
+ return nil, fmt.Errorf("file not found")
+ }
+
+ record := records[0]
+
+ // Convert database record to File struct
+ file := &File{
+ ID: record["file_id"].(string),
+ Filename: record["name"].(string),
+ ContentType: record["content_type"].(string),
+ Status: record["status"].(string),
+ CreatedAt: int(time.Now().Unix()), // TODO: get from database
+ }
+
+ // Handle optional fields
+ if userPath, ok := record["user_path"].(string); ok {
+ file.UserPath = userPath
+ }
+
+ if path, ok := record["path"].(string); ok {
+ file.Path = path
+ }
+
+ if bytes, ok := record["bytes"].(int64); ok {
+ file.Bytes = int(bytes)
+ }
+
+ return file, nil
+}
+
+// getStoragePathFromDatabase retrieves the real storage path for a file_id
+func (manager Manager) getStoragePathFromDatabase(ctx context.Context, fileID string) (string, error) {
+ m := model.Select("__yao.attachment")
+
+ records, err := m.Get(model.QueryParam{
+ Select: []interface{}{"path"},
+ Wheres: []model.QueryWhere{
+ {Column: "file_id", Value: fileID},
+ },
+ })
+
+ if err != nil {
+ return "", fmt.Errorf("failed to query database: %w", err)
+ }
+
+ if len(records) == 0 {
+ return "", fmt.Errorf("file not found: %s", fileID)
+ }
+
+ if path, ok := records[0]["path"].(string); ok && path != "" {
+ return path, nil
+ }
+
+ return "", fmt.Errorf("invalid storage path for file ID: %s", fileID)
+}
diff --git a/attachment/manager_test.go b/attachment/manager_test.go
new file mode 100644
index 00000000..29e7e2d5
--- /dev/null
+++ b/attachment/manager_test.go
@@ -0,0 +1,1110 @@
+package attachment
+
+import (
+ "bytes"
+ "context"
+ "encoding/base64"
+ "fmt"
+ "mime/multipart"
+ "os"
+ "path/filepath"
+ "strings"
+ "testing"
+ "time"
+
+ "github.com/yaoapp/gou/model"
+ "github.com/yaoapp/yao/config"
+ "github.com/yaoapp/yao/test"
+)
+
+func TestMain(m *testing.M) {
+ // Run tests
+ code := m.Run()
+ os.Exit(code)
+}
+
+func TestManagerUpload(t *testing.T) {
+ test.Prepare(t, config.Conf)
+ defer test.Clean()
+
+ // Create a local storage manager
+ manager, err := New(ManagerOption{
+ Driver: "local",
+ MaxSize: "10M",
+ ChunkSize: "2M",
+ AllowedTypes: []string{"text/*", "image/*", ".txt", ".jpg", ".png"},
+ Options: map[string]interface{}{
+ "path": "/tmp/test_attachments",
+ },
+ })
+ if err != nil {
+ t.Fatalf("Failed to create manager: %v", err)
+ }
+
+ // Test simple text file upload
+ t.Run("SimpleTextUpload", func(t *testing.T) {
+ content := "Hello, World!"
+ reader := strings.NewReader(content)
+
+ // Create a mock file header
+ fileHeader := &FileHeader{
+ FileHeader: &multipart.FileHeader{
+ Filename: "test.txt",
+ Size: int64(len(content)),
+ Header: make(map[string][]string),
+ },
+ }
+ fileHeader.Header.Set("Content-Type", "text/plain")
+
+ option := UploadOption{Groups: []string{"user123"}}
+
+ file, err := manager.Upload(context.Background(), fileHeader, reader, option)
+ if err != nil {
+ t.Fatalf("Failed to upload file: %v", err)
+ }
+
+ if file.Filename != "test.txt" {
+ t.Errorf("Expected filename 'test.txt', got '%s'", file.Filename)
+ }
+
+ if file.ContentType != "text/plain" {
+ t.Errorf("Expected content type 'text/plain', got '%s'", file.ContentType)
+ }
+
+ // Test download
+ response, err := manager.Download(context.Background(), file.ID)
+ if err != nil {
+ t.Fatalf("Failed to download file: %v", err)
+ }
+ defer response.Reader.Close()
+
+ downloadedContent, err := manager.Read(context.Background(), file.ID)
+ if err != nil {
+ t.Fatalf("Failed to read file: %v", err)
+ }
+
+ if string(downloadedContent) != content {
+ t.Errorf("Expected content '%s', got '%s'", content, string(downloadedContent))
+ }
+
+ // Test ReadBase64
+ base64Content, err := manager.ReadBase64(context.Background(), file.ID)
+ if err != nil {
+ t.Fatalf("Failed to read file as base64: %v", err)
+ }
+
+ expectedBase64 := base64.StdEncoding.EncodeToString([]byte(content))
+ if base64Content != expectedBase64 {
+ t.Errorf("Expected base64 '%s', got '%s'", expectedBase64, base64Content)
+ }
+ })
+
+ // Test gzip compression
+ t.Run("GzipUpload", func(t *testing.T) {
+ content := "This is a test file that will be compressed with gzip."
+ reader := strings.NewReader(content)
+
+ fileHeader := &FileHeader{
+ FileHeader: &multipart.FileHeader{
+ Filename: "test_gzip.txt",
+ Size: int64(len(content)),
+ Header: make(map[string][]string),
+ },
+ }
+ fileHeader.Header.Set("Content-Type", "text/plain")
+
+ option := UploadOption{
+ Gzip: true,
+ Groups: []string{"user123"},
+ }
+
+ file, err := manager.Upload(context.Background(), fileHeader, reader, option)
+ if err != nil {
+ t.Fatalf("Failed to upload gzipped file: %v", err)
+ }
+
+ // The stored file should be compressed, but when we read it back,
+ // we should get the original content (if the storage handles decompression)
+ downloadedContent, err := manager.Read(context.Background(), file.ID)
+ if err != nil {
+ t.Fatalf("Failed to read gzipped file: %v", err)
+ }
+
+ if string(downloadedContent) != content {
+ t.Errorf("Expected content '%s', got '%s'", content, string(downloadedContent))
+ }
+ })
+
+ // Test chunked upload
+ t.Run("ChunkedUpload", func(t *testing.T) {
+ content := "This is a large file that will be uploaded in chunks. " +
+ strings.Repeat("Lorem ipsum dolor sit amet, consectetur adipiscing elit. ", 100)
+
+ chunkSize := 1024
+ totalSize := len(content)
+
+ var lastFile *File
+ for start := 0; start < totalSize; start += chunkSize {
+ end := start + chunkSize - 1
+ if end >= totalSize {
+ end = totalSize - 1
+ }
+
+ chunk := []byte(content[start : end+1])
+
+ fileHeader := &FileHeader{
+ FileHeader: &multipart.FileHeader{
+ Filename: "large_file.txt",
+ Size: int64(len(chunk)),
+ Header: make(map[string][]string),
+ },
+ }
+ fileHeader.Header.Set("Content-Type", "text/plain")
+ fileHeader.Header.Set("Content-Range",
+ fmt.Sprintf("bytes %d-%d/%d", start, end, totalSize))
+ fileHeader.Header.Set("Content-Uid", "unique-file-id-123")
+
+ option := UploadOption{Groups: []string{"user123"}}
+ file, err := manager.Upload(context.Background(), fileHeader, bytes.NewReader(chunk), option)
+ if err != nil {
+ t.Fatalf("Failed to upload chunk starting at %d: %v", start, err)
+ }
+
+ lastFile = file
+ }
+
+ // After uploading all chunks, read the complete file
+ if lastFile != nil {
+ downloadedContent, err := manager.Read(context.Background(), lastFile.ID)
+ if err != nil {
+ t.Fatalf("Failed to read chunked file: %v", err)
+ }
+
+ if string(downloadedContent) != content {
+ t.Errorf("Chunked upload content mismatch. Expected length %d, got %d",
+ len(content), len(downloadedContent))
+ }
+ }
+ })
+}
+
+func TestManagerMultiLevelGroups(t *testing.T) {
+ test.Prepare(t, config.Conf)
+ defer test.Clean()
+
+ // Create a local storage manager
+ manager, err := New(ManagerOption{
+ Driver: "local",
+ MaxSize: "10M",
+ AllowedTypes: []string{"text/*", "image/*"},
+ Options: map[string]interface{}{
+ "path": "/tmp/test_attachments",
+ },
+ })
+ if err != nil {
+ t.Fatalf("Failed to create manager: %v", err)
+ }
+
+ // Test multi-level groups
+ t.Run("MultiLevelGroups", func(t *testing.T) {
+ content := "Test content for multi-level groups"
+ reader := strings.NewReader(content)
+
+ fileHeader := &FileHeader{
+ FileHeader: &multipart.FileHeader{
+ Filename: "multilevel.txt",
+ Size: int64(len(content)),
+ Header: make(map[string][]string),
+ },
+ }
+ fileHeader.Header.Set("Content-Type", "text/plain")
+
+ // Test with multi-level groups
+ option := UploadOption{
+ Groups: []string{"users", "user123", "chats", "chat456", "documents"},
+ }
+
+ file, err := manager.Upload(context.Background(), fileHeader, reader, option)
+ if err != nil {
+ t.Fatalf("Failed to upload file with multi-level groups: %v", err)
+ }
+
+ // File ID should be 32 character hex (MD5 hash)
+ if len(file.ID) != 32 {
+ t.Errorf("File ID should be 32 characters: %s (length %d)", file.ID, len(file.ID))
+ }
+
+ // Check that it's all lowercase hex
+ for _, r := range file.ID {
+ if !((r >= '0' && r <= '9') || (r >= 'a' && r <= 'f')) {
+ t.Errorf("File ID contains non-hex character: %c", r)
+ }
+ }
+
+ // Test download
+ downloadedContent, err := manager.Read(context.Background(), file.ID)
+ if err != nil {
+ t.Fatalf("Failed to read file with multi-level groups: %v", err)
+ }
+
+ if string(downloadedContent) != content {
+ t.Errorf("Content mismatch for multi-level groups file")
+ }
+ })
+
+ // Test single group (backward compatibility)
+ t.Run("SingleGroup", func(t *testing.T) {
+ content := "Test content for single group"
+ reader := strings.NewReader(content)
+
+ fileHeader := &FileHeader{
+ FileHeader: &multipart.FileHeader{
+ Filename: "single.txt",
+ Size: int64(len(content)),
+ Header: make(map[string][]string),
+ },
+ }
+ fileHeader.Header.Set("Content-Type", "text/plain")
+
+ option := UploadOption{
+ Groups: []string{"knowledge"},
+ }
+
+ file, err := manager.Upload(context.Background(), fileHeader, reader, option)
+ if err != nil {
+ t.Fatalf("Failed to upload file with single group: %v", err)
+ }
+
+ // File ID should be 32 character hex (MD5 hash)
+ if len(file.ID) != 32 {
+ t.Errorf("File ID should be 32 characters: %s (length %d)", file.ID, len(file.ID))
+ }
+
+ // Check that it's all lowercase hex
+ for _, r := range file.ID {
+ if !((r >= '0' && r <= '9') || (r >= 'a' && r <= 'f')) {
+ t.Errorf("File ID contains non-hex character: %c", r)
+ }
+ }
+ })
+
+ // Test empty groups (no grouping)
+ t.Run("EmptyGroups", func(t *testing.T) {
+ content := "Test content without groups"
+ reader := strings.NewReader(content)
+
+ fileHeader := &FileHeader{
+ FileHeader: &multipart.FileHeader{
+ Filename: "nogroup.txt",
+ Size: int64(len(content)),
+ Header: make(map[string][]string),
+ },
+ }
+ fileHeader.Header.Set("Content-Type", "text/plain")
+
+ option := UploadOption{
+ Groups: []string{}, // Empty groups
+ }
+
+ file, err := manager.Upload(context.Background(), fileHeader, reader, option)
+ if err != nil {
+ t.Fatalf("Failed to upload file without groups: %v", err)
+ }
+
+ // Should still work and create valid file ID
+ if file.ID == "" {
+ t.Error("File ID should not be empty")
+ }
+ })
+}
+
+func TestManagerValidation(t *testing.T) {
+ test.Prepare(t, config.Conf)
+ defer test.Clean()
+
+ manager, err := New(ManagerOption{
+ Driver: "local",
+ MaxSize: "1K", // Very small max size for testing
+ AllowedTypes: []string{"text/plain"},
+ Options: map[string]interface{}{
+ "path": "/tmp/test_attachments",
+ },
+ })
+ if err != nil {
+ t.Fatalf("Failed to create manager: %v", err)
+ }
+
+ // Test file size validation
+ t.Run("FileSizeValidation", func(t *testing.T) {
+ content := strings.Repeat("a", 2048) // 2KB, exceeds 1KB limit
+ reader := strings.NewReader(content)
+
+ fileHeader := &FileHeader{
+ FileHeader: &multipart.FileHeader{
+ Filename: "large.txt",
+ Size: int64(len(content)),
+ Header: make(map[string][]string),
+ },
+ }
+ fileHeader.Header.Set("Content-Type", "text/plain")
+
+ option := UploadOption{}
+
+ _, err := manager.Upload(context.Background(), fileHeader, reader, option)
+ if err == nil {
+ t.Error("Expected error for file size exceeding limit")
+ }
+ })
+
+ // Test file type validation
+ t.Run("FileTypeValidation", func(t *testing.T) {
+ content := "test"
+ reader := strings.NewReader(content)
+
+ fileHeader := &FileHeader{
+ FileHeader: &multipart.FileHeader{
+ Filename: "test.jpg",
+ Size: int64(len(content)),
+ Header: make(map[string][]string),
+ },
+ }
+ fileHeader.Header.Set("Content-Type", "image/jpeg") // Not allowed
+
+ option := UploadOption{}
+
+ _, err := manager.Upload(context.Background(), fileHeader, reader, option)
+ if err == nil {
+ t.Error("Expected error for disallowed file type")
+ }
+ })
+}
+
+func TestManagerName(t *testing.T) {
+ test.Prepare(t, config.Conf)
+ defer test.Clean()
+
+ // Create a manager with a specific name
+ managerName := "test-manager"
+ manager, err := RegisterDefault(managerName)
+ if err != nil {
+ t.Fatalf("Failed to register manager: %v", err)
+ }
+
+ // Verify the manager name is set correctly
+ if manager.Name != managerName {
+ t.Errorf("Expected manager name '%s', got '%s'", managerName, manager.Name)
+ }
+
+ // Upload a file to verify the manager name is saved to database
+ content := "Test file content"
+ reader := strings.NewReader(content)
+
+ fileHeader := &FileHeader{
+ FileHeader: &multipart.FileHeader{
+ Filename: "test-manager-name.txt",
+ Size: int64(len(content)),
+ Header: make(map[string][]string),
+ },
+ }
+ fileHeader.Header.Set("Content-Type", "text/plain")
+
+ option := UploadOption{
+ Groups: []string{"test"},
+ }
+
+ file, err := manager.Upload(context.Background(), fileHeader, reader, option)
+ if err != nil {
+ t.Fatalf("Failed to upload file: %v", err)
+ }
+
+ // Query database directly to verify manager name is stored
+ m := model.Select("__yao.attachment")
+ records, err := m.Get(model.QueryParam{
+ Select: []interface{}{"uploader"},
+ Wheres: []model.QueryWhere{
+ {Column: "file_id", Value: file.ID},
+ },
+ })
+
+ if err != nil {
+ t.Fatalf("Failed to query database: %v", err)
+ }
+
+ if len(records) == 0 {
+ t.Fatal("No record found in database")
+ }
+
+ storedManagerName, ok := records[0]["uploader"].(string)
+ if !ok {
+ t.Fatal("Uploader field is not a string")
+ }
+
+ if storedManagerName != managerName {
+ t.Errorf("Expected stored uploader name '%s', got '%s'", managerName, storedManagerName)
+ }
+}
+
+func TestUniqueFilenameGeneration(t *testing.T) {
+ test.Prepare(t, config.Conf)
+ defer test.Clean()
+
+ manager, err := RegisterDefault("test")
+ if err != nil {
+ t.Fatalf("Failed to register manager: %v", err)
+ }
+
+ // Upload two files with the same filename
+ content1 := "First file content"
+ content2 := "Second file content"
+
+ // First file
+ reader1 := strings.NewReader(content1)
+ fileHeader1 := &FileHeader{
+ FileHeader: &multipart.FileHeader{
+ Filename: "duplicate.txt", // Same filename
+ Size: int64(len(content1)),
+ Header: make(map[string][]string),
+ },
+ }
+ fileHeader1.Header.Set("Content-Type", "text/plain")
+
+ // Second file
+ reader2 := strings.NewReader(content2)
+ fileHeader2 := &FileHeader{
+ FileHeader: &multipart.FileHeader{
+ Filename: "duplicate.txt", // Same filename
+ Size: int64(len(content2)),
+ Header: make(map[string][]string),
+ },
+ }
+ fileHeader2.Header.Set("Content-Type", "text/plain")
+
+ option := UploadOption{
+ Groups: []string{"test"},
+ }
+
+ // Upload first file
+ file1, err := manager.Upload(context.Background(), fileHeader1, reader1, option)
+ if err != nil {
+ t.Fatalf("Failed to upload first file: %v", err)
+ }
+
+ // Sleep a bit to ensure different timestamps
+ time.Sleep(time.Millisecond)
+
+ // Upload second file
+ file2, err := manager.Upload(context.Background(), fileHeader2, reader2, option)
+ if err != nil {
+ t.Fatalf("Failed to upload second file: %v", err)
+ }
+
+ // Verify files have different IDs
+ if file1.ID == file2.ID {
+ t.Error("Files with same original name should have different IDs")
+ }
+
+ // Verify files have different storage paths
+ if file1.Path == file2.Path {
+ t.Error("Files with same original name should have different storage paths")
+ }
+
+ // Verify both files can be read independently
+ data1, err := manager.Read(context.Background(), file1.ID)
+ if err != nil {
+ t.Fatalf("Failed to read first file: %v", err)
+ }
+
+ data2, err := manager.Read(context.Background(), file2.ID)
+ if err != nil {
+ t.Fatalf("Failed to read second file: %v", err)
+ }
+
+ if string(data1) != content1 {
+ t.Errorf("First file content mismatch. Expected: %s, Got: %s", content1, string(data1))
+ }
+
+ if string(data2) != content2 {
+ t.Errorf("Second file content mismatch. Expected: %s, Got: %s", content2, string(data2))
+ }
+
+ t.Logf("File 1 - ID: %s, Path: %s", file1.ID, file1.Path)
+ t.Logf("File 2 - ID: %s, Path: %s", file2.ID, file2.Path)
+}
+
+func TestInfo(t *testing.T) {
+ test.Prepare(t, config.Conf)
+ defer test.Clean()
+
+ manager, err := RegisterDefault("test")
+ if err != nil {
+ t.Fatalf("Failed to register manager: %v", err)
+ }
+
+ // Upload a test file
+ content := "Test file for info retrieval"
+ reader := strings.NewReader(content)
+
+ fileHeader := &FileHeader{
+ FileHeader: &multipart.FileHeader{
+ Filename: "info-test.txt",
+ Size: int64(len(content)),
+ Header: make(map[string][]string),
+ },
+ }
+ fileHeader.Header.Set("Content-Type", "text/plain")
+
+ option := UploadOption{
+ Groups: []string{"info", "test"},
+ OriginalFilename: "original-info-test.txt",
+ ClientID: "test-client-123",
+ OpenID: "test-openid-456",
+ Gzip: false,
+ }
+
+ uploadedFile, err := manager.Upload(context.Background(), fileHeader, reader, option)
+ if err != nil {
+ t.Fatalf("Failed to upload file: %v", err)
+ }
+
+ // Test the Info method
+ fileInfo, err := manager.Info(context.Background(), uploadedFile.ID)
+ if err != nil {
+ t.Fatalf("Failed to get file info: %v", err)
+ }
+
+ // Verify file information
+ if fileInfo.ID != uploadedFile.ID {
+ t.Errorf("Expected file ID %s, got %s", uploadedFile.ID, fileInfo.ID)
+ }
+
+ if fileInfo.Filename != uploadedFile.Filename {
+ t.Errorf("Expected filename %s, got %s", uploadedFile.Filename, fileInfo.Filename)
+ }
+
+ if fileInfo.ContentType != "text/plain" {
+ t.Errorf("Expected content type 'text/plain', got %s", fileInfo.ContentType)
+ }
+
+ if fileInfo.Status != "uploaded" {
+ t.Errorf("Expected status 'uploaded', got %s", fileInfo.Status)
+ }
+
+ if fileInfo.UserPath != option.OriginalFilename {
+ t.Errorf("Expected user path %s, got %s", option.OriginalFilename, fileInfo.UserPath)
+ }
+
+ if fileInfo.Path != uploadedFile.Path {
+ t.Errorf("Expected path %s, got %s", uploadedFile.Path, fileInfo.Path)
+ }
+
+ // Test with non-existent file ID
+ _, err = manager.Info(context.Background(), "non-existent-id")
+ if err == nil {
+ t.Error("Expected error for non-existent file ID, got nil")
+ }
+
+ t.Logf("Retrieved file info - ID: %s, Path: %s, UserPath: %s",
+ fileInfo.ID, fileInfo.Path, fileInfo.UserPath)
+}
+
+func TestList(t *testing.T) {
+ test.Prepare(t, config.Conf)
+ defer test.Clean()
+
+ // Use unique manager name for test isolation
+ managerName := fmt.Sprintf("test-list-%d", time.Now().UnixNano())
+ manager, err := RegisterDefault(managerName)
+ if err != nil {
+ t.Fatalf("Failed to register manager: %v", err)
+ }
+
+ // Clean up existing records first
+ m := model.Select("__yao.attachment")
+ _, err = m.DeleteWhere(model.QueryParam{
+ Wheres: []model.QueryWhere{
+ {Column: "uploader", Value: managerName},
+ },
+ })
+ if err != nil {
+ t.Logf("Warning: Failed to clean up existing records: %v", err)
+ }
+
+ // Upload multiple test files
+ testFiles := []struct {
+ filename string
+ content string
+ contentType string
+ groups []string
+ }{
+ {"test1.txt", "Content of test file 1", "text/plain", []string{"group1"}},
+ {"test2.txt", "Content of test file 2", "text/plain", []string{"group1"}},
+ {"image1.jpg", "Image content 1", "image/jpeg", []string{"group2", "images"}},
+ {"doc1.pdf", "PDF content", "application/pdf", []string{"group2", "docs"}},
+ {"test3.txt", "Content of test file 3", "text/plain", []string{"group1"}},
+ }
+
+ uploadedFiles := make([]*File, 0, len(testFiles))
+ for _, tf := range testFiles {
+ reader := strings.NewReader(tf.content)
+ fileHeader := &FileHeader{
+ FileHeader: &multipart.FileHeader{
+ Filename: tf.filename,
+ Size: int64(len(tf.content)),
+ Header: make(map[string][]string),
+ },
+ }
+ fileHeader.Header.Set("Content-Type", tf.contentType)
+
+ option := UploadOption{
+ Groups: tf.groups,
+ }
+
+ file, err := manager.Upload(context.Background(), fileHeader, reader, option)
+ if err != nil {
+ t.Fatalf("Failed to upload file %s: %v", tf.filename, err)
+ }
+ uploadedFiles = append(uploadedFiles, file)
+ }
+
+ // Test basic listing (no filters, default pagination)
+ t.Run("BasicList", func(t *testing.T) {
+ result, err := manager.List(context.Background(), ListOption{
+ Filters: map[string]interface{}{
+ "uploader": managerName,
+ },
+ })
+ if err != nil {
+ t.Fatalf("Failed to list files: %v", err)
+ }
+
+ if len(result.Files) != len(testFiles) {
+ t.Errorf("Expected %d files, got %d", len(testFiles), len(result.Files))
+ }
+
+ if result.Total != int64(len(testFiles)) {
+ t.Errorf("Expected total %d, got %d", len(testFiles), result.Total)
+ }
+
+ if result.Page != 1 {
+ t.Errorf("Expected page 1, got %d", result.Page)
+ }
+
+ if result.PageSize != 20 {
+ t.Errorf("Expected page size 20, got %d", result.PageSize)
+ }
+ })
+
+ // Test pagination
+ t.Run("Pagination", func(t *testing.T) {
+ result, err := manager.List(context.Background(), ListOption{
+ Page: 1,
+ PageSize: 2,
+ Filters: map[string]interface{}{
+ "uploader": managerName,
+ },
+ })
+ if err != nil {
+ t.Fatalf("Failed to list files with pagination: %v", err)
+ }
+
+ if len(result.Files) != 2 {
+ t.Errorf("Expected 2 files, got %d", len(result.Files))
+ }
+
+ if result.Total != int64(len(testFiles)) {
+ t.Errorf("Expected total %d, got %d", len(testFiles), result.Total)
+ }
+
+ if result.Page != 1 {
+ t.Errorf("Expected page 1, got %d", result.Page)
+ }
+
+ if result.PageSize != 2 {
+ t.Errorf("Expected page size 2, got %d", result.PageSize)
+ }
+
+ if result.TotalPages != 3 { // 5 files / 2 per page = 3 pages
+ t.Errorf("Expected 3 total pages, got %d", result.TotalPages)
+ }
+ })
+
+ // Test filtering by content type
+ t.Run("FilterByContentType", func(t *testing.T) {
+ result, err := manager.List(context.Background(), ListOption{
+ Filters: map[string]interface{}{
+ "uploader": managerName,
+ "content_type": "text/plain",
+ },
+ })
+ if err != nil {
+ t.Fatalf("Failed to list files with content type filter: %v", err)
+ }
+
+ expectedCount := 3 // test1.txt, test2.txt, test3.txt
+ if len(result.Files) != expectedCount {
+ t.Errorf("Expected %d text files, got %d", expectedCount, len(result.Files))
+ }
+
+ // Verify all returned files are text/plain
+ for _, file := range result.Files {
+ if file.ContentType != "text/plain" {
+ t.Errorf("Expected content type 'text/plain', got '%s'", file.ContentType)
+ }
+ }
+ })
+
+ // Test wildcard filtering
+ t.Run("WildcardFilter", func(t *testing.T) {
+ result, err := manager.List(context.Background(), ListOption{
+ Filters: map[string]interface{}{
+ "uploader": managerName,
+ "content_type": "image/*",
+ },
+ })
+ if err != nil {
+ t.Fatalf("Failed to list files with wildcard filter: %v", err)
+ }
+
+ expectedCount := 1 // image1.jpg
+ if len(result.Files) != expectedCount {
+ t.Errorf("Expected %d image files, got %d", expectedCount, len(result.Files))
+ }
+ })
+
+ // Test ordering
+ t.Run("OrderBy", func(t *testing.T) {
+ result, err := manager.List(context.Background(), ListOption{
+ OrderBy: "name asc",
+ Filters: map[string]interface{}{
+ "uploader": managerName,
+ },
+ })
+ if err != nil {
+ t.Fatalf("Failed to list files with ordering: %v", err)
+ }
+
+ if len(result.Files) != len(testFiles) {
+ t.Errorf("Expected %d files, got %d", len(testFiles), len(result.Files))
+ }
+
+ // Files should be ordered by name ascending
+ // Note: The actual filenames are generated, so we just check that they're sorted
+ for i := 1; i < len(result.Files); i++ {
+ if result.Files[i-1].Filename > result.Files[i].Filename {
+ t.Errorf("Files are not sorted by name ascending")
+ break
+ }
+ }
+ })
+
+ // Test field selection
+ t.Run("SelectFields", func(t *testing.T) {
+ result, err := manager.List(context.Background(), ListOption{
+ Select: []string{"file_id", "name", "content_type"},
+ Filters: map[string]interface{}{
+ "uploader": managerName,
+ },
+ })
+ if err != nil {
+ t.Fatalf("Failed to list files with field selection: %v", err)
+ }
+
+ if len(result.Files) != len(testFiles) {
+ t.Errorf("Expected %d files, got %d", len(testFiles), len(result.Files))
+ }
+
+ // Verify selected fields are populated
+ for _, file := range result.Files {
+ if file.ID == "" {
+ t.Error("Expected file_id to be populated")
+ }
+ if file.Filename == "" {
+ t.Error("Expected filename to be populated")
+ }
+ if file.ContentType == "" {
+ t.Error("Expected content_type to be populated")
+ }
+ }
+ })
+
+ t.Logf("Successfully tested list functionality with %d files", len(uploadedFiles))
+}
+
+func TestManagerLocalPath(t *testing.T) {
+ test.Prepare(t, config.Conf)
+ defer test.Clean()
+
+ // Test with local storage
+ t.Run("LocalStorage", func(t *testing.T) {
+ // Create a local storage manager
+ manager, err := New(ManagerOption{
+ Driver: "local",
+ MaxSize: "10M",
+ AllowedTypes: []string{"text/*", "image/*", "application/*", ".txt", ".json", ".html", ".csv", ".yao"},
+ Options: map[string]interface{}{
+ "path": "/tmp/test_localpath_attachments",
+ },
+ })
+ if err != nil {
+ t.Fatalf("Failed to create local manager: %v", err)
+ }
+ manager.Name = "localpath-test"
+
+ // Test different file types
+ testFiles := []struct {
+ filename string
+ content string
+ contentType string
+ expectedCT string
+ }{
+ {"test.txt", "Hello LocalPath", "text/plain", "text/plain"},
+ {"test.json", `{"localpath": "test"}`, "application/json", "application/json"},
+ {"test.html", "LocalPath Test", "text/html", "text/html"},
+ {"test.csv", "col1,col2\nlocalpath,test", "text/csv", "text/csv"},
+ {"test.yao", "localpath yao content", "application/yao", "application/yao"},
+ }
+
+ for _, tf := range testFiles {
+ // Upload file
+ reader := strings.NewReader(tf.content)
+ fileHeader := &FileHeader{
+ FileHeader: &multipart.FileHeader{
+ Filename: tf.filename,
+ Size: int64(len(tf.content)),
+ Header: make(map[string][]string),
+ },
+ }
+ fileHeader.Header.Set("Content-Type", tf.contentType)
+
+ option := UploadOption{
+ Groups: []string{"localpath", "test"},
+ OriginalFilename: tf.filename,
+ }
+
+ file, err := manager.Upload(context.Background(), fileHeader, reader, option)
+ if err != nil {
+ t.Fatalf("Failed to upload file %s: %v", tf.filename, err)
+ }
+
+ // Test LocalPath
+ localPath, detectedCT, err := manager.LocalPath(context.Background(), file.ID)
+ if err != nil {
+ t.Fatalf("Failed to get local path for %s: %v", tf.filename, err)
+ }
+
+ // Verify path is absolute
+ if !filepath.IsAbs(localPath) {
+ t.Errorf("Expected absolute path for %s, got: %s", tf.filename, localPath)
+ }
+
+ // Verify content type
+ if detectedCT != tf.expectedCT {
+ t.Errorf("Expected content type %s for %s, got: %s", tf.expectedCT, tf.filename, detectedCT)
+ }
+
+ // Verify file exists
+ if _, err := os.Stat(localPath); os.IsNotExist(err) {
+ t.Errorf("File should exist at local path %s for %s", localPath, tf.filename)
+ }
+
+ // Verify file content
+ fileContent, err := os.ReadFile(localPath)
+ if err != nil {
+ t.Fatalf("Failed to read file at local path for %s: %v", tf.filename, err)
+ }
+
+ if string(fileContent) != tf.content {
+ t.Errorf("File content mismatch for %s. Expected: %s, Got: %s", tf.filename, tf.content, string(fileContent))
+ }
+
+ t.Logf("File %s - ID: %s, LocalPath: %s, ContentType: %s", tf.filename, file.ID, localPath, detectedCT)
+ }
+ })
+
+ // Test with gzipped files in local storage
+ t.Run("LocalStorage_Gzipped", func(t *testing.T) {
+ manager, err := New(ManagerOption{
+ Driver: "local",
+ MaxSize: "10M",
+ AllowedTypes: []string{"text/*"},
+ Options: map[string]interface{}{
+ "path": "/tmp/test_localpath_gzip_attachments",
+ },
+ })
+ if err != nil {
+ t.Fatalf("Failed to create local manager: %v", err)
+ }
+ manager.Name = "localpath-gzip-test"
+
+ content := "This content will be gzipped"
+ reader := strings.NewReader(content)
+
+ fileHeader := &FileHeader{
+ FileHeader: &multipart.FileHeader{
+ Filename: "gzipped.txt",
+ Size: int64(len(content)),
+ Header: make(map[string][]string),
+ },
+ }
+ fileHeader.Header.Set("Content-Type", "text/plain")
+
+ option := UploadOption{
+ Groups: []string{"gzip", "test"},
+ OriginalFilename: "gzipped.txt",
+ Gzip: true, // Enable gzip compression
+ }
+
+ file, err := manager.Upload(context.Background(), fileHeader, reader, option)
+ if err != nil {
+ t.Fatalf("Failed to upload gzipped file: %v", err)
+ }
+
+ // Test LocalPath - should get decompressed content
+ localPath, contentType, err := manager.LocalPath(context.Background(), file.ID)
+ if err != nil {
+ t.Fatalf("Failed to get local path for gzipped file: %v", err)
+ }
+
+ // Verify content type
+ if contentType != "text/plain" {
+ t.Errorf("Expected content type text/plain, got: %s", contentType)
+ }
+
+ // For gzipped files in local storage, the storage path ends with .gz
+ // but the content should be accessible normally through Read methods
+ fileContent, err := manager.Read(context.Background(), file.ID)
+ if err != nil {
+ t.Fatalf("Failed to read gzipped file: %v", err)
+ }
+
+ if string(fileContent) != content {
+ t.Errorf("Gzipped file content mismatch. Expected: %s, Got: %s", content, string(fileContent))
+ }
+
+ t.Logf("Gzipped file - ID: %s, LocalPath: %s, ContentType: %s", file.ID, localPath, contentType)
+ })
+}
+
+func TestManagerLocalPath_NonExistentFile(t *testing.T) {
+ test.Prepare(t, config.Conf)
+ defer test.Clean()
+
+ manager, err := New(ManagerOption{
+ Driver: "local",
+ AllowedTypes: []string{"text/*"},
+ Options: map[string]interface{}{
+ "path": "/tmp/test_localpath_nonexistent",
+ },
+ })
+ if err != nil {
+ t.Fatalf("Failed to create manager: %v", err)
+ }
+ manager.Name = "nonexistent-test"
+
+ // Test with non-existent file ID
+ _, _, err = manager.LocalPath(context.Background(), "non-existent-file-id")
+ if err == nil {
+ t.Error("Expected error for non-existent file ID")
+ }
+
+ // Should contain "file not found" in the error chain
+ if !strings.Contains(err.Error(), "file not found") {
+ t.Errorf("Expected 'file not found' in error message, got: %s", err.Error())
+ }
+}
+
+func TestManagerLocalPath_ValidationFlow(t *testing.T) {
+ test.Prepare(t, config.Conf)
+ defer test.Clean()
+
+ manager, err := New(ManagerOption{
+ Driver: "local",
+ AllowedTypes: []string{"text/*"},
+ Options: map[string]interface{}{
+ "path": "/tmp/test_localpath_validation",
+ },
+ })
+ if err != nil {
+ t.Fatalf("Failed to create manager: %v", err)
+ }
+ manager.Name = "validation-test"
+
+ // Upload a file
+ content := "Validation flow test content"
+ reader := strings.NewReader(content)
+
+ fileHeader := &FileHeader{
+ FileHeader: &multipart.FileHeader{
+ Filename: "validation.txt",
+ Size: int64(len(content)),
+ Header: make(map[string][]string),
+ },
+ }
+ fileHeader.Header.Set("Content-Type", "text/plain")
+
+ option := UploadOption{
+ Groups: []string{"validation"},
+ OriginalFilename: "original-validation.txt",
+ }
+
+ file, err := manager.Upload(context.Background(), fileHeader, reader, option)
+ if err != nil {
+ t.Fatalf("Failed to upload file: %v", err)
+ }
+
+ // Test complete flow: Upload -> LocalPath -> Verify -> Delete
+ t.Run("CompleteFlow", func(t *testing.T) {
+ // Get local path
+ localPath, contentType, err := manager.LocalPath(context.Background(), file.ID)
+ if err != nil {
+ t.Fatalf("Failed to get local path: %v", err)
+ }
+
+ // Verify all properties
+ if !filepath.IsAbs(localPath) {
+ t.Error("Path should be absolute")
+ }
+
+ if contentType != "text/plain" {
+ t.Errorf("Expected content type text/plain, got: %s", contentType)
+ }
+
+ // Verify file exists
+ stat, err := os.Stat(localPath)
+ if err != nil {
+ t.Fatalf("File should exist at local path: %v", err)
+ }
+
+ if stat.Size() != int64(len(content)) {
+ t.Errorf("File size mismatch. Expected: %d, Got: %d", len(content), stat.Size())
+ }
+
+ // Verify file content matches
+ fileContent, err := os.ReadFile(localPath)
+ if err != nil {
+ t.Fatalf("Failed to read file: %v", err)
+ }
+
+ if string(fileContent) != content {
+ t.Errorf("Content mismatch. Expected: %s, Got: %s", content, string(fileContent))
+ }
+
+ // Verify through manager's Read method as well
+ managerContent, err := manager.Read(context.Background(), file.ID)
+ if err != nil {
+ t.Fatalf("Failed to read through manager: %v", err)
+ }
+
+ if string(managerContent) != content {
+ t.Errorf("Manager read content mismatch. Expected: %s, Got: %s", content, string(managerContent))
+ }
+
+ t.Logf("Validation complete - LocalPath: %s, Size: %d bytes, ContentType: %s", localPath, stat.Size(), contentType)
+ })
+
+ // Clean up
+ err = manager.Delete(context.Background(), file.ID)
+ if err != nil {
+ t.Logf("Warning: Failed to delete test file: %v", err)
+ }
+}
diff --git a/attachment/s3/storage.go b/attachment/s3/storage.go
new file mode 100644
index 00000000..7daa7c02
--- /dev/null
+++ b/attachment/s3/storage.go
@@ -0,0 +1,739 @@
+package s3
+
+import (
+ "bytes"
+ "compress/gzip"
+ "context"
+ "fmt"
+ "image"
+ "image/jpeg"
+ "image/png"
+ "io"
+ "mime"
+ "net/http"
+ "os"
+ "path/filepath"
+ "strings"
+ "time"
+
+ "github.com/aws/aws-sdk-go-v2/aws"
+ "github.com/aws/aws-sdk-go-v2/credentials"
+ "github.com/aws/aws-sdk-go-v2/service/s3"
+)
+
+// DefaultExpiration default expiration time for presigned URLs (5 minutes)
+const DefaultExpiration = 5 * time.Minute
+
+// MaxImageSize maximum image size (1920x1080)
+const MaxImageSize = 1920
+
+// Storage the S3 storage driver
+type Storage struct {
+ Endpoint string `json:"endpoint" yaml:"endpoint"`
+ Region string `json:"region" yaml:"region"`
+ Key string `json:"key" yaml:"key"`
+ Secret string `json:"secret" yaml:"secret"`
+ Bucket string `json:"bucket" yaml:"bucket"`
+ Expiration time.Duration `json:"expiration" yaml:"expiration"`
+ CacheDir string `json:"cache_dir" yaml:"cache_dir"`
+ client *s3.Client
+ prefix string
+ compression bool
+}
+
+// New create a new S3 storage
+func New(options map[string]interface{}) (*Storage, error) {
+ storage := &Storage{
+ Region: "auto",
+ Expiration: DefaultExpiration,
+ compression: true,
+ }
+
+ if endpoint, ok := options["endpoint"].(string); ok {
+ storage.Endpoint = endpoint
+ }
+
+ if region, ok := options["region"].(string); ok {
+ storage.Region = region
+ }
+
+ if key, ok := options["key"].(string); ok {
+ storage.Key = key
+ }
+
+ if secret, ok := options["secret"].(string); ok {
+ storage.Secret = secret
+ }
+
+ if bucket, ok := options["bucket"].(string); ok {
+ storage.Bucket = bucket
+ }
+
+ if prefix, ok := options["prefix"].(string); ok {
+ storage.prefix = prefix
+ }
+
+ if cacheDir, ok := options["cache_dir"].(string); ok {
+ storage.CacheDir = cacheDir
+ } else {
+ // Use system temp directory as default
+ storage.CacheDir = os.TempDir()
+ }
+
+ if exp, ok := options["expiration"].(time.Duration); ok {
+ storage.Expiration = exp
+ }
+
+ if compression, ok := options["compression"].(bool); ok {
+ storage.compression = compression
+ }
+
+ // Validate required fields
+ if storage.Key == "" || storage.Secret == "" {
+ return nil, fmt.Errorf("key and secret are required")
+ }
+
+ if storage.Bucket == "" {
+ return nil, fmt.Errorf("bucket is required")
+ }
+
+ // Create S3 client
+ opts := s3.Options{
+ Region: storage.Region,
+ Credentials: credentials.NewStaticCredentialsProvider(storage.Key, storage.Secret, ""),
+ UsePathStyle: true,
+ }
+
+ if storage.Endpoint != "" {
+ // Remove bucket name from endpoint if present
+ endpoint := storage.Endpoint
+ if strings.Contains(endpoint, "/"+storage.Bucket) {
+ endpoint = strings.TrimSuffix(endpoint, "/"+storage.Bucket)
+ }
+ opts.BaseEndpoint = aws.String(endpoint)
+ }
+
+ storage.client = s3.New(opts)
+
+ // Ensure cache directory exists
+ if err := os.MkdirAll(storage.CacheDir, 0755); err != nil {
+ return nil, fmt.Errorf("failed to create cache directory %s: %w", storage.CacheDir, err)
+ }
+
+ return storage, nil
+}
+
+// Upload upload file to S3
+func (storage *Storage) Upload(ctx context.Context, path string, reader io.Reader, contentType string) (string, error) {
+ if storage.client == nil {
+ return "", fmt.Errorf("s3 client not initialized")
+ }
+
+ key := filepath.Join(storage.prefix, path)
+
+ // Upload file
+ _, err := storage.client.PutObject(ctx, &s3.PutObjectInput{
+ Bucket: aws.String(storage.Bucket),
+ Key: aws.String(key),
+ Body: reader,
+ ContentType: aws.String(contentType),
+ })
+ if err != nil {
+ return "", fmt.Errorf("failed to upload file %s: %w", path, err)
+ }
+
+ return path, nil
+}
+
+// UploadChunk uploads a chunk of a file to S3
+func (storage *Storage) UploadChunk(ctx context.Context, path string, chunkIndex int, reader io.Reader, contentType string) error {
+ if storage.client == nil {
+ return fmt.Errorf("s3 client not initialized")
+ }
+
+ // Store chunks with a special prefix
+ chunkKey := filepath.Join(storage.prefix, ".chunks", path, fmt.Sprintf("chunk_%d", chunkIndex))
+
+ _, err := storage.client.PutObject(ctx, &s3.PutObjectInput{
+ Bucket: aws.String(storage.Bucket),
+ Key: aws.String(chunkKey),
+ Body: reader,
+ ContentType: aws.String(contentType),
+ })
+ if err != nil {
+ return fmt.Errorf("failed to upload chunk %s %d: %w", path, chunkIndex, err)
+ }
+
+ return nil
+}
+
+// MergeChunks merges all chunks into the final file in S3
+func (storage *Storage) MergeChunks(ctx context.Context, path string, totalChunks int) error {
+ if storage.client == nil {
+ return fmt.Errorf("s3 client not initialized")
+ }
+
+ finalKey := filepath.Join(storage.prefix, path)
+
+ // Create a buffer to hold the merged content
+ var mergedContent bytes.Buffer
+ var contentType string
+
+ // Download and merge chunks in order
+ for i := 0; i < totalChunks; i++ {
+ chunkKey := filepath.Join(storage.prefix, ".chunks", path, fmt.Sprintf("chunk_%d", i))
+
+ result, err := storage.client.GetObject(ctx, &s3.GetObjectInput{
+ Bucket: aws.String(storage.Bucket),
+ Key: aws.String(chunkKey),
+ })
+ if err != nil {
+ return fmt.Errorf("failed to get chunk %d: %w", i, err)
+ }
+
+ // Get content type from the first chunk
+ if i == 0 && result.ContentType != nil {
+ contentType = *result.ContentType
+ }
+
+ _, err = io.Copy(&mergedContent, result.Body)
+ result.Body.Close()
+ if err != nil {
+ return fmt.Errorf("failed to copy chunk %s %d: %w", path, i, err)
+ }
+ }
+
+ // Default content type if not found
+ if contentType == "" {
+ contentType = "application/octet-stream"
+ }
+
+ // Upload the merged content as the final file with proper content type
+ _, err := storage.client.PutObject(ctx, &s3.PutObjectInput{
+ Bucket: aws.String(storage.Bucket),
+ Key: aws.String(finalKey),
+ Body: bytes.NewReader(mergedContent.Bytes()),
+ ContentType: aws.String(contentType),
+ })
+ if err != nil {
+ return fmt.Errorf("failed to upload merged file %s: %w", path, err)
+ }
+
+ // Clean up chunks
+ for i := 0; i < totalChunks; i++ {
+ chunkKey := filepath.Join(storage.prefix, ".chunks", path, fmt.Sprintf("chunk_%d", i))
+ storage.client.DeleteObject(ctx, &s3.DeleteObjectInput{
+ Bucket: aws.String(storage.Bucket),
+ Key: aws.String(chunkKey),
+ })
+ }
+
+ return nil
+}
+
+// Reader read file from S3
+func (storage *Storage) Reader(ctx context.Context, path string) (io.ReadCloser, error) {
+ if storage.client == nil {
+ return nil, fmt.Errorf("s3 client not initialized")
+ }
+
+ key := filepath.Join(storage.prefix, path)
+
+ result, err := storage.client.GetObject(ctx, &s3.GetObjectInput{
+ Bucket: aws.String(storage.Bucket),
+ Key: aws.String(key),
+ })
+ if err != nil {
+ return nil, fmt.Errorf("failed to get file %s: %w", path, err)
+ }
+
+ // If the file is a gzip file, decompress it
+ if strings.HasSuffix(path, ".gz") {
+ reader, err := gzip.NewReader(result.Body)
+ if err != nil {
+ return nil, err
+ }
+ return reader, nil
+ }
+
+ return result.Body, nil
+}
+
+// Download download file from S3
+func (storage *Storage) Download(ctx context.Context, path string) (io.ReadCloser, string, error) {
+ if storage.client == nil {
+ return nil, "", fmt.Errorf("s3 client not initialized")
+ }
+
+ key := filepath.Join(storage.prefix, path)
+
+ // Get object
+ result, err := storage.client.GetObject(ctx, &s3.GetObjectInput{
+ Bucket: aws.String(storage.Bucket),
+ Key: aws.String(key),
+ })
+ if err != nil {
+ return nil, "", fmt.Errorf("failed to download file %s: %w", path, err)
+ }
+
+ contentType := "application/octet-stream"
+ if result.ContentType != nil {
+ contentType = *result.ContentType
+ }
+
+ // Try to detect content type from file extension
+ ext := filepath.Ext(strings.TrimSuffix(path, ".gz"))
+ switch strings.ToLower(ext) {
+ case ".txt":
+ contentType = "text/plain"
+ case ".html":
+ contentType = "text/html"
+ case ".css":
+ contentType = "text/css"
+ case ".js":
+ contentType = "application/javascript"
+ case ".json":
+ contentType = "application/json"
+ case ".jpg", ".jpeg":
+ contentType = "image/jpeg"
+ case ".png":
+ contentType = "image/png"
+ case ".gif":
+ contentType = "image/gif"
+ case ".pdf":
+ contentType = "application/pdf"
+ case ".mp4":
+ contentType = "video/mp4"
+ case ".mp3":
+ contentType = "audio/mpeg"
+ case ".wav":
+ contentType = "audio/wav"
+ case ".ogg":
+ contentType = "audio/ogg"
+ case ".webm":
+ contentType = "video/webm"
+ case ".webp":
+ contentType = "image/webp"
+ case ".zip":
+ }
+
+ // If the file is a gzip file, decompress it
+ if strings.HasSuffix(path, ".gz") {
+ reader, err := gzip.NewReader(result.Body)
+ if err != nil {
+ return nil, "", err
+ }
+ return reader, contentType, nil
+ }
+
+ return result.Body, contentType, nil
+}
+
+// GetContent gets file content as bytes
+func (storage *Storage) GetContent(ctx context.Context, path string) ([]byte, error) {
+ reader, err := storage.Reader(ctx, path)
+ if err != nil {
+ return nil, err
+ }
+ defer reader.Close()
+
+ return io.ReadAll(reader)
+}
+
+// URL get file url with expiration
+func (storage *Storage) URL(ctx context.Context, path string) string {
+ if storage.client == nil {
+ return ""
+ }
+
+ key := filepath.Join(storage.prefix, path)
+ presignClient := s3.NewPresignClient(storage.client)
+ request, err := presignClient.PresignGetObject(ctx, &s3.GetObjectInput{
+ Bucket: aws.String(storage.Bucket),
+ Key: aws.String(key),
+ }, s3.WithPresignExpires(storage.Expiration))
+
+ if err != nil {
+ return ""
+ }
+
+ return request.URL
+}
+
+// Exists checks if a file exists in S3
+func (storage *Storage) Exists(ctx context.Context, path string) bool {
+ if storage.client == nil {
+ return false
+ }
+
+ key := filepath.Join(storage.prefix, path)
+ _, err := storage.client.HeadObject(ctx, &s3.HeadObjectInput{
+ Bucket: aws.String(storage.Bucket),
+ Key: aws.String(key),
+ })
+ return err == nil
+}
+
+// Delete deletes a file from S3
+func (storage *Storage) Delete(ctx context.Context, path string) error {
+ if storage.client == nil {
+ return fmt.Errorf("s3 client not initialized")
+ }
+
+ key := filepath.Join(storage.prefix, path)
+ _, err := storage.client.DeleteObject(ctx, &s3.DeleteObjectInput{
+ Bucket: aws.String(storage.Bucket),
+ Key: aws.String(key),
+ })
+ if err != nil {
+ return fmt.Errorf("failed to delete file: %w", err)
+ }
+
+ return nil
+}
+
+func (storage *Storage) makeID(filename string, ext string) string {
+ date := time.Now().Format("20060102")
+ name := strings.TrimSuffix(filepath.Base(filename), ext)
+ return fmt.Sprintf("%s/%s-%d%s", date, name, time.Now().UnixNano(), ext)
+}
+
+// isImage checks if the content type is an image
+func isImage(contentType string) bool {
+ return strings.HasPrefix(contentType, "image/")
+}
+
+// compressImage compresses the image while maintaining aspect ratio
+func compressImage(data []byte, contentType string) ([]byte, error) {
+ // Decode image
+ img, _, err := image.Decode(bytes.NewReader(data))
+ if err != nil {
+ return nil, fmt.Errorf("failed to decode image: %w", err)
+ }
+
+ // Calculate new dimensions
+ bounds := img.Bounds()
+ width := bounds.Dx()
+ height := bounds.Dy()
+ var newWidth, newHeight int
+
+ if width > height {
+ if width > MaxImageSize {
+ newWidth = MaxImageSize
+ newHeight = int(float64(height) * (float64(MaxImageSize) / float64(width)))
+ } else {
+ return data, nil // No need to resize
+ }
+ } else {
+ if height > MaxImageSize {
+ newHeight = MaxImageSize
+ newWidth = int(float64(width) * (float64(MaxImageSize) / float64(height)))
+ } else {
+ return data, nil // No need to resize
+ }
+ }
+
+ // Create new image with new dimensions
+ newImg := image.NewRGBA(image.Rect(0, 0, newWidth, newHeight))
+
+ // Scale the image using bilinear interpolation
+ for y := 0; y < newHeight; y++ {
+ for x := 0; x < newWidth; x++ {
+ srcX := float64(x) * float64(width) / float64(newWidth)
+ srcY := float64(y) * float64(height) / float64(newHeight)
+ newImg.Set(x, y, img.At(int(srcX), int(srcY)))
+ }
+ }
+
+ // Encode image
+ var buf bytes.Buffer
+ switch contentType {
+ case "image/jpeg":
+ err = jpeg.Encode(&buf, newImg, &jpeg.Options{Quality: 85})
+ case "image/png":
+ err = png.Encode(&buf, newImg)
+ default:
+ return data, nil // Unsupported format, return original
+ }
+
+ if err != nil {
+ return nil, fmt.Errorf("failed to encode image: %w", err)
+ }
+
+ return buf.Bytes(), nil
+}
+
+// LocalPath downloads the file to cache directory and returns absolute path with content type
+func (storage *Storage) LocalPath(ctx context.Context, path string) (string, string, error) {
+ if storage.client == nil {
+ return "", "", fmt.Errorf("s3 client not initialized")
+ }
+
+ // Create cache file path using the same structure as storage path
+ cacheFilePath := filepath.Join(storage.CacheDir, "s3_cache", path)
+
+ // Create directory for cache file
+ dir := filepath.Dir(cacheFilePath)
+ if err := os.MkdirAll(dir, 0755); err != nil {
+ return "", "", fmt.Errorf("failed to create cache directory: %w", err)
+ }
+
+ // Check if file already exists in cache and is not outdated
+ if _, err := os.Stat(cacheFilePath); err == nil {
+ // File exists in cache, detect content type and return
+ contentType, err := detectContentType(cacheFilePath)
+ if err != nil {
+ return "", "", fmt.Errorf("failed to detect content type: %w", err)
+ }
+ return cacheFilePath, contentType, nil
+ }
+
+ // Download file from S3 to cache
+ key := filepath.Join(storage.prefix, path)
+ result, err := storage.client.GetObject(ctx, &s3.GetObjectInput{
+ Bucket: aws.String(storage.Bucket),
+ Key: aws.String(key),
+ })
+ if err != nil {
+ return "", "", fmt.Errorf("failed to download file %s: %w", path, err)
+ }
+ defer result.Body.Close()
+
+ // Create cache file
+ cacheFile, err := os.Create(cacheFilePath)
+ if err != nil {
+ return "", "", fmt.Errorf("failed to create cache file: %w", err)
+ }
+ defer cacheFile.Close()
+
+ // Handle gzipped files - decompress during download
+ var reader io.Reader = result.Body
+ if strings.HasSuffix(path, ".gz") {
+ gzipReader, err := gzip.NewReader(result.Body)
+ if err != nil {
+ return "", "", fmt.Errorf("failed to create gzip reader: %w", err)
+ }
+ defer gzipReader.Close()
+ reader = gzipReader
+
+ // Remove .gz extension from cache file path since we're decompressing
+ newCacheFilePath := strings.TrimSuffix(cacheFilePath, ".gz")
+ cacheFile.Close()
+ os.Remove(cacheFilePath)
+
+ cacheFile, err = os.Create(newCacheFilePath)
+ if err != nil {
+ return "", "", fmt.Errorf("failed to create decompressed cache file: %w", err)
+ }
+ defer cacheFile.Close()
+ cacheFilePath = newCacheFilePath
+ }
+
+ // Copy file content to cache
+ _, err = io.Copy(cacheFile, reader)
+ if err != nil {
+ return "", "", fmt.Errorf("failed to copy file to cache: %w", err)
+ }
+
+ // For files that were decompressed from .gz, we need to detect the original content type
+ var contentType string
+ if strings.HasSuffix(path, ".gz") {
+ // Original path was gzipped, detect content type of decompressed content
+ originalPath := strings.TrimSuffix(path, ".gz")
+ ext := filepath.Ext(originalPath)
+
+ // First try to detect by original file extension
+ contentType, err = detectContentTypeFromExtension(ext)
+ if err != nil || contentType == "application/octet-stream" {
+ // Fallback: detect from decompressed content
+ contentType, err = detectContentType(cacheFilePath)
+ if err != nil {
+ return "", "", fmt.Errorf("failed to detect content type: %w", err)
+ }
+ }
+ } else {
+ // Regular file content type detection
+ contentType, err = detectContentType(cacheFilePath)
+ if err != nil {
+ return "", "", fmt.Errorf("failed to detect content type: %w", err)
+ }
+ }
+
+ return cacheFilePath, contentType, nil
+}
+
+// detectContentType detects content type based on file extension and content
+func detectContentType(filePath string) (string, error) {
+ // First try to detect by file extension
+ ext := strings.ToLower(filepath.Ext(filePath))
+
+ // Common file extensions mapping
+ switch ext {
+ case ".txt":
+ return "text/plain", nil
+ case ".html", ".htm":
+ return "text/html", nil
+ case ".css":
+ return "text/css", nil
+ case ".js":
+ return "application/javascript", nil
+ case ".json":
+ return "application/json", nil
+ case ".xml":
+ return "application/xml", nil
+ case ".jpg", ".jpeg":
+ return "image/jpeg", nil
+ case ".png":
+ return "image/png", nil
+ case ".gif":
+ return "image/gif", nil
+ case ".webp":
+ return "image/webp", nil
+ case ".svg":
+ return "image/svg+xml", nil
+ case ".pdf":
+ return "application/pdf", nil
+ case ".doc":
+ return "application/msword", nil
+ case ".docx":
+ return "application/vnd.openxmlformats-officedocument.wordprocessingml.document", nil
+ case ".xls":
+ return "application/vnd.ms-excel", nil
+ case ".xlsx":
+ return "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", nil
+ case ".ppt":
+ return "application/vnd.ms-powerpoint", nil
+ case ".pptx":
+ return "application/vnd.openxmlformats-officedocument.presentationml.presentation", nil
+ case ".zip":
+ return "application/zip", nil
+ case ".tar":
+ return "application/x-tar", nil
+ case ".gz":
+ return "application/gzip", nil
+ case ".mp3":
+ return "audio/mpeg", nil
+ case ".wav":
+ return "audio/wav", nil
+ case ".m4a":
+ return "audio/mp4", nil
+ case ".ogg":
+ return "audio/ogg", nil
+ case ".mp4":
+ return "video/mp4", nil
+ case ".avi":
+ return "video/x-msvideo", nil
+ case ".mov":
+ return "video/quicktime", nil
+ case ".webm":
+ return "video/webm", nil
+ case ".md", ".mdx":
+ return "text/markdown", nil
+ case ".yao":
+ return "application/yao", nil
+ case ".csv":
+ return "text/csv", nil
+ }
+
+ // Try to detect by MIME package
+ if contentType := mime.TypeByExtension(ext); contentType != "" {
+ return contentType, nil
+ }
+
+ // Fallback: detect by reading file content
+ file, err := os.Open(filePath)
+ if err != nil {
+ return "application/octet-stream", nil // Default fallback
+ }
+ defer file.Close()
+
+ // Read first 512 bytes for content detection
+ buffer := make([]byte, 512)
+ n, err := file.Read(buffer)
+ if err != nil && err != io.EOF {
+ return "application/octet-stream", nil
+ }
+
+ // Use http.DetectContentType to detect based on content
+ contentType := http.DetectContentType(buffer[:n])
+ return contentType, nil
+}
+
+// detectContentTypeFromExtension detects content type based only on file extension
+func detectContentTypeFromExtension(ext string) (string, error) {
+ ext = strings.ToLower(ext)
+
+ // Common file extensions mapping
+ switch ext {
+ case ".txt":
+ return "text/plain", nil
+ case ".html", ".htm":
+ return "text/html", nil
+ case ".css":
+ return "text/css", nil
+ case ".js":
+ return "application/javascript", nil
+ case ".json":
+ return "application/json", nil
+ case ".xml":
+ return "application/xml", nil
+ case ".jpg", ".jpeg":
+ return "image/jpeg", nil
+ case ".png":
+ return "image/png", nil
+ case ".gif":
+ return "image/gif", nil
+ case ".webp":
+ return "image/webp", nil
+ case ".svg":
+ return "image/svg+xml", nil
+ case ".pdf":
+ return "application/pdf", nil
+ case ".doc":
+ return "application/msword", nil
+ case ".docx":
+ return "application/vnd.openxmlformats-officedocument.wordprocessingml.document", nil
+ case ".xls":
+ return "application/vnd.ms-excel", nil
+ case ".xlsx":
+ return "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", nil
+ case ".ppt":
+ return "application/vnd.ms-powerpoint", nil
+ case ".pptx":
+ return "application/vnd.openxmlformats-officedocument.presentationml.presentation", nil
+ case ".zip":
+ return "application/zip", nil
+ case ".tar":
+ return "application/x-tar", nil
+ case ".mp3":
+ return "audio/mpeg", nil
+ case ".wav":
+ return "audio/wav", nil
+ case ".m4a":
+ return "audio/mp4", nil
+ case ".ogg":
+ return "audio/ogg", nil
+ case ".mp4":
+ return "video/mp4", nil
+ case ".avi":
+ return "video/x-msvideo", nil
+ case ".mov":
+ return "video/quicktime", nil
+ case ".webm":
+ return "video/webm", nil
+ case ".md", ".mdx":
+ return "text/markdown", nil
+ case ".yao":
+ return "application/yao", nil
+ case ".csv":
+ return "text/csv", nil
+ }
+
+ // Try to detect by MIME package
+ if contentType := mime.TypeByExtension(ext); contentType != "" {
+ return contentType, nil
+ }
+
+ // Return default if not found
+ return "application/octet-stream", nil
+}
diff --git a/attachment/s3/storage_test.go b/attachment/s3/storage_test.go
new file mode 100644
index 00000000..dc00f119
--- /dev/null
+++ b/attachment/s3/storage_test.go
@@ -0,0 +1,369 @@
+package s3
+
+import (
+ "bytes"
+ "context"
+ "io"
+ "os"
+ "path/filepath"
+ "strings"
+ "testing"
+ "time"
+
+ "compress/gzip"
+
+ "github.com/google/uuid"
+ "github.com/stretchr/testify/assert"
+)
+
+// generateTestFileName generates a unique test filename with the given prefix and extension
+func generateTestFileName(prefix, ext string) string {
+ return prefix + "-" + uuid.New().String() + ext
+}
+
+func getS3Config() map[string]interface{} {
+ return map[string]interface{}{
+ "endpoint": os.Getenv("S3_API"),
+ "region": "auto",
+ "key": os.Getenv("S3_ACCESS_KEY"),
+ "secret": os.Getenv("S3_SECRET_KEY"),
+ "bucket": os.Getenv("S3_BUCKET"),
+ "prefix": "attachment-test",
+ "expiration": 5 * time.Minute,
+ "compression": true,
+ }
+}
+
+func skipIfNoS3Config(t *testing.T) {
+ if os.Getenv("S3_ACCESS_KEY") == "" || os.Getenv("S3_SECRET_KEY") == "" || os.Getenv("S3_BUCKET") == "" {
+ t.Skip("S3 configuration not available (set S3_ACCESS_KEY, S3_SECRET_KEY, S3_BUCKET environment variables)")
+ }
+}
+
+func TestS3Storage(t *testing.T) {
+ t.Run("Create Storage", func(t *testing.T) {
+ options := getS3Config()
+
+ storage, err := New(options)
+ if os.Getenv("S3_ACCESS_KEY") == "" || os.Getenv("S3_SECRET_KEY") == "" || os.Getenv("S3_BUCKET") == "" {
+ // Should fail without credentials
+ assert.Error(t, err)
+ return
+ }
+
+ assert.NoError(t, err)
+ assert.NotNil(t, storage)
+ if storage != nil {
+ assert.Equal(t, os.Getenv("S3_API"), storage.Endpoint)
+ assert.Equal(t, "auto", storage.Region)
+ assert.Equal(t, os.Getenv("S3_ACCESS_KEY"), storage.Key)
+ assert.Equal(t, os.Getenv("S3_SECRET_KEY"), storage.Secret)
+ assert.Equal(t, os.Getenv("S3_BUCKET"), storage.Bucket)
+ assert.Equal(t, "attachment-test", storage.prefix)
+ assert.Equal(t, 5*time.Minute, storage.Expiration)
+ assert.True(t, storage.compression)
+ }
+ })
+
+ t.Run("Upload and Download Text File", func(t *testing.T) {
+ skipIfNoS3Config(t)
+
+ storage, err := New(getS3Config())
+ assert.NoError(t, err)
+
+ content := []byte("test content")
+ reader := bytes.NewReader(content)
+ fileID := generateTestFileName("upload-test", ".txt")
+ _, err = storage.Upload(context.Background(), fileID, reader, "text/plain")
+ assert.NoError(t, err)
+ assert.NotEmpty(t, fileID)
+
+ // Get presigned URL
+ url := storage.URL(context.Background(), fileID)
+ assert.NotEmpty(t, url)
+ assert.Contains(t, url, "X-Amz-Signature")
+ assert.Contains(t, url, "X-Amz-Expires")
+
+ // Download
+ reader2, contentType, err := storage.Download(context.Background(), fileID)
+ assert.NoError(t, err)
+ assert.Contains(t, contentType, "text/plain")
+
+ downloaded, err := io.ReadAll(reader2)
+ assert.NoError(t, err)
+ assert.Equal(t, content, downloaded)
+ reader2.Close()
+
+ // Clean up
+ storage.Delete(context.Background(), fileID)
+ })
+
+ t.Run("Chunked Upload", func(t *testing.T) {
+ skipIfNoS3Config(t)
+
+ storage, err := New(getS3Config())
+ assert.NoError(t, err)
+
+ fileID := generateTestFileName("test-chunked", ".txt")
+ content1 := []byte("chunk1")
+ content2 := []byte("chunk2")
+
+ // Upload chunks
+ err = storage.UploadChunk(context.Background(), fileID, 0, bytes.NewReader(content1), "text/plain")
+ assert.NoError(t, err)
+
+ err = storage.UploadChunk(context.Background(), fileID, 1, bytes.NewReader(content2), "text/plain")
+ assert.NoError(t, err)
+
+ // Merge chunks
+ err = storage.MergeChunks(context.Background(), fileID, 2)
+ assert.NoError(t, err)
+
+ // Download and verify
+ reader, contentType, err := storage.Download(context.Background(), fileID)
+ assert.NoError(t, err)
+ assert.Equal(t, "text/plain", contentType)
+
+ downloaded, err := io.ReadAll(reader)
+ assert.NoError(t, err)
+ assert.Equal(t, append(content1, content2...), downloaded)
+ reader.Close()
+
+ // Clean up
+ storage.Delete(context.Background(), fileID)
+ })
+
+ t.Run("File Operations", func(t *testing.T) {
+ skipIfNoS3Config(t)
+
+ storage, err := New(getS3Config())
+ assert.NoError(t, err)
+
+ fileID := generateTestFileName("test-ops", ".txt")
+ content := []byte("test content")
+
+ // Upload file
+ _, err = storage.Upload(context.Background(), fileID, bytes.NewReader(content), "text/plain")
+ assert.NoError(t, err)
+
+ // Check if file exists
+ exists := storage.Exists(context.Background(), fileID)
+ assert.True(t, exists)
+
+ // Read file
+ reader, err := storage.Reader(context.Background(), fileID)
+ assert.NoError(t, err)
+ defer reader.Close()
+
+ data, err := io.ReadAll(reader)
+ assert.NoError(t, err)
+ assert.Equal(t, content, data)
+
+ // Get file content directly
+ directContent, err := storage.GetContent(context.Background(), fileID)
+ assert.NoError(t, err)
+ assert.Equal(t, content, directContent)
+
+ // Delete file
+ err = storage.Delete(context.Background(), fileID)
+ assert.NoError(t, err)
+
+ // Check if file no longer exists
+ exists = storage.Exists(context.Background(), fileID)
+ assert.False(t, exists)
+ })
+
+ t.Run("Download Non-existent File", func(t *testing.T) {
+ skipIfNoS3Config(t)
+
+ storage, err := New(getS3Config())
+ assert.NoError(t, err)
+
+ // Use UUID for non-existent file to avoid any potential conflicts
+ nonExistentFileID := generateTestFileName("non-existent", ".txt")
+ _, _, err = storage.Download(context.Background(), nonExistentFileID)
+ assert.Error(t, err)
+ })
+
+ t.Run("Invalid Configuration", func(t *testing.T) {
+ // Test with missing required fields
+ _, err := New(map[string]interface{}{
+ "endpoint": "https://s3.amazonaws.com",
+ "region": "us-east-1",
+ // Missing key and secret
+ })
+ assert.Error(t, err)
+ assert.Contains(t, err.Error(), "key and secret are required")
+
+ // Test with missing bucket
+ _, err = New(map[string]interface{}{
+ "endpoint": "https://s3.amazonaws.com",
+ "region": "us-east-1",
+ "key": "test-key",
+ "secret": "test-secret",
+ // Missing bucket
+ })
+ assert.Error(t, err)
+ assert.Contains(t, err.Error(), "bucket is required")
+ })
+
+ t.Run("LocalPath", func(t *testing.T) {
+ skipIfNoS3Config(t)
+
+ // Create storage with custom cache directory
+ tempCacheDir, err := os.MkdirTemp("", "s3_cache_test")
+ assert.NoError(t, err)
+ defer os.RemoveAll(tempCacheDir)
+
+ config := getS3Config()
+ config["cache_dir"] = tempCacheDir
+
+ storage, err := New(config)
+ assert.NoError(t, err)
+
+ // Test different file types
+ testFiles := []struct {
+ name string
+ content []byte
+ contentType string
+ expectedCT string
+ }{
+ {"localpath-test.txt", []byte("Hello S3 World"), "text/plain", "text/plain"},
+ {"localpath-test.json", []byte(`{"s3": "test"}`), "application/json", "application/json"},
+ {"localpath-test.html", []byte("S3 Test"), "text/html", "text/html"},
+ {"localpath-test.csv", []byte("s3,test\nval1,val2"), "text/csv", "text/csv"},
+ {"localpath-test.md", []byte("# S3 Markdown"), "text/markdown", "text/markdown"},
+ {"localpath-test.yao", []byte("s3 yao content"), "application/yao", "application/yao"},
+ }
+
+ for _, tf := range testFiles {
+ // Upload file to S3
+ fileID := generateTestFileName("s3-localpath", "-"+tf.name)
+ _, err = storage.Upload(context.Background(), fileID, bytes.NewReader(tf.content), tf.contentType)
+ assert.NoError(t, err, "Failed to upload %s", tf.name)
+
+ // Get local path - first call should download to cache
+ localPath1, detectedCT1, err := storage.LocalPath(context.Background(), fileID)
+ assert.NoError(t, err, "Failed to get local path for %s", tf.name)
+ assert.NotEmpty(t, localPath1, "Local path should not be empty for %s", tf.name)
+ assert.Equal(t, tf.expectedCT, detectedCT1, "Content type mismatch for %s", tf.name)
+
+ // Verify the path is absolute
+ assert.True(t, filepath.IsAbs(localPath1), "Path should be absolute for %s", tf.name)
+
+ // Verify the file exists at the returned path
+ _, err = os.Stat(localPath1)
+ assert.NoError(t, err, "File should exist at local path for %s", tf.name)
+
+ // Verify file content
+ fileContent, err := os.ReadFile(localPath1)
+ assert.NoError(t, err, "Failed to read file at local path for %s", tf.name)
+ assert.Equal(t, tf.content, fileContent, "File content mismatch for %s", tf.name)
+
+ // Get local path again - should use cached version
+ localPath2, detectedCT2, err := storage.LocalPath(context.Background(), fileID)
+ assert.NoError(t, err, "Failed to get cached local path for %s", tf.name)
+ assert.Equal(t, localPath1, localPath2, "Cached path should be same as first call for %s", tf.name)
+ assert.Equal(t, detectedCT1, detectedCT2, "Cached content type should be same as first call for %s", tf.name)
+
+ // Clean up from S3
+ storage.Delete(context.Background(), fileID)
+ }
+ })
+
+ t.Run("LocalPath_GzippedFile", func(t *testing.T) {
+ skipIfNoS3Config(t)
+
+ // Create storage with custom cache directory
+ tempCacheDir, err := os.MkdirTemp("", "s3_cache_gzip_test")
+ assert.NoError(t, err)
+ defer os.RemoveAll(tempCacheDir)
+
+ config := getS3Config()
+ config["cache_dir"] = tempCacheDir
+
+ storage, err := New(config)
+ assert.NoError(t, err)
+
+ // Create gzipped content
+ originalContent := []byte("This content will be gzipped and stored in S3")
+ var gzipBuf bytes.Buffer
+ gzipWriter := gzip.NewWriter(&gzipBuf)
+ _, err = gzipWriter.Write(originalContent)
+ assert.NoError(t, err)
+ gzipWriter.Close()
+
+ // Upload gzipped file
+ fileID := generateTestFileName("gzipped", ".txt.gz")
+ _, err = storage.Upload(context.Background(), fileID, bytes.NewReader(gzipBuf.Bytes()), "text/plain")
+ assert.NoError(t, err)
+
+ // Get local path - should decompress during download
+ localPath, contentType, err := storage.LocalPath(context.Background(), fileID)
+ assert.NoError(t, err)
+ assert.NotEmpty(t, localPath)
+
+ // Verify the file is decompressed in cache (path should not end with .gz)
+ assert.False(t, strings.HasSuffix(localPath, ".gz"), "Cached file should be decompressed")
+
+ // Verify content is decompressed
+ cachedContent, err := os.ReadFile(localPath)
+ assert.NoError(t, err)
+ assert.Equal(t, originalContent, cachedContent, "Cached file should contain decompressed content")
+
+ // Verify content type
+ assert.Equal(t, "text/plain", contentType)
+
+ // Clean up
+ storage.Delete(context.Background(), fileID)
+ })
+
+ t.Run("LocalPath_NonExistentFile", func(t *testing.T) {
+ skipIfNoS3Config(t)
+
+ storage, err := New(getS3Config())
+ assert.NoError(t, err)
+
+ // Test with non-existent file
+ nonExistentFileID := generateTestFileName("non-existent-localpath", ".txt")
+ _, _, err = storage.LocalPath(context.Background(), nonExistentFileID)
+ assert.Error(t, err)
+ assert.Contains(t, err.Error(), "failed to download file")
+ })
+
+ t.Run("LocalPath_CustomCacheDir", func(t *testing.T) {
+ skipIfNoS3Config(t)
+
+ // Create custom cache directory
+ customCacheDir, err := os.MkdirTemp("", "custom_s3_cache")
+ assert.NoError(t, err)
+ defer os.RemoveAll(customCacheDir)
+
+ config := getS3Config()
+ config["cache_dir"] = customCacheDir
+
+ storage, err := New(config)
+ assert.NoError(t, err)
+
+ // Verify cache directory is set correctly
+ assert.Equal(t, customCacheDir, storage.CacheDir)
+
+ // Upload a test file
+ content := []byte("Custom cache directory test")
+ fileID := generateTestFileName("custom-cache", ".txt")
+ _, err = storage.Upload(context.Background(), fileID, bytes.NewReader(content), "text/plain")
+ assert.NoError(t, err)
+
+ // Get local path
+ localPath, contentType, err := storage.LocalPath(context.Background(), fileID)
+ assert.NoError(t, err)
+ assert.NotEmpty(t, localPath)
+ assert.Equal(t, "text/plain", contentType)
+
+ // Verify the file is cached in the custom directory
+ assert.True(t, strings.HasPrefix(localPath, customCacheDir), "File should be cached in custom directory")
+
+ // Clean up
+ storage.Delete(context.Background(), fileID)
+ })
+}
diff --git a/attachment/types.go b/attachment/types.go
new file mode 100644
index 00000000..99c9232c
--- /dev/null
+++ b/attachment/types.go
@@ -0,0 +1,160 @@
+package attachment
+
+import (
+ "context"
+ "io"
+ "mime/multipart"
+
+ "github.com/yaoapp/gou/types"
+)
+
+// FileManager defines the interface for file management operations.
+// This interface provides abstraction for file operations, making it easier to:
+// - Write unit tests with mock implementations
+// - Switch between different storage backends
+// - Maintain consistent API across different implementations
+//
+// Example usage:
+//
+// var fileManager FileManager = manager // Manager implements FileManager
+// file, err := fileManager.Upload(ctx, header, reader, options)
+// data, err := fileManager.Read(ctx, file.ID)
+type FileManager interface {
+ // Upload uploads a file with optional chunked upload support
+ Upload(ctx context.Context, fileheader *FileHeader, reader io.Reader, option UploadOption) (*File, error)
+
+ // Download downloads a file by its ID
+ Download(ctx context.Context, fileID string) (*FileResponse, error)
+
+ // Read reads a file content as bytes
+ Read(ctx context.Context, fileID string) ([]byte, error)
+
+ // ReadBase64 reads a file content as base64 encoded string
+ ReadBase64(ctx context.Context, fileID string) (string, error)
+
+ // Info retrieves complete file information from database by file ID
+ Info(ctx context.Context, fileID string) (*File, error)
+
+ // List retrieves files from database with pagination and filtering
+ List(ctx context.Context, option ListOption) (*ListResult, error)
+
+ // Exists checks if a file exists
+ Exists(ctx context.Context, fileID string) bool
+
+ // Delete deletes a file
+ Delete(ctx context.Context, fileID string) error
+
+ // LocalPath gets the local path of the file
+ LocalPath(ctx context.Context, fileID string) (string, string, error)
+}
+
+// File the file
+type File struct {
+ ID string `json:"file_id"`
+ UserPath string `json:"user_path"` // User-specified complete file path
+ Path string `json:"path"` // Actual storage path
+ Bytes int `json:"bytes"`
+ CreatedAt int `json:"created_at"`
+ Filename string `json:"filename"`
+ ContentType string `json:"content_type"`
+ Status string `json:"status"` // uploading, uploaded, indexing, indexed, upload_failed, index_failed
+}
+
+// FileResponse represents a file download response
+type FileResponse struct {
+ Reader io.ReadCloser
+ ContentType string
+ Extension string
+}
+
+// Attachment represents a file attachment
+type Attachment struct {
+ Name string `json:"name,omitempty"`
+ URL string `json:"url,omitempty"`
+ Description string `json:"description,omitempty"`
+ Type string `json:"type,omitempty"`
+ ContentType string `json:"content_type,omitempty"`
+ Bytes int64 `json:"bytes,omitempty"`
+ CreatedAt int64 `json:"created_at,omitempty"`
+ FileID string `json:"file_id,omitempty"`
+ UserPath string `json:"user_path,omitempty"` // User-specified complete file path
+ Path string `json:"path,omitempty"` // Actual storage path
+ Groups []string `json:"groups,omitempty"`
+ Gzip bool `json:"gzip,omitempty"` // Gzip the file, Optional, default is false
+ ClientID string `json:"client_id,omitempty"` // Client identifier
+ OpenID string `json:"openid,omitempty"` // OpenID identifier
+}
+
+// Manager the manager struct
+type Manager struct {
+ ManagerOption
+ Name string // Manager name for identification
+ storage Storage
+ maxsize int64
+ chunsize int64
+ allowedTypes allowedType
+}
+
+// Storage the storage interface
+type Storage interface {
+ Upload(ctx context.Context, path string, reader io.Reader, contentType string) (string, error)
+ UploadChunk(ctx context.Context, path string, chunkIndex int, reader io.Reader, contentType string) error
+ MergeChunks(ctx context.Context, path string, totalChunks int) error
+ Download(ctx context.Context, path string) (io.ReadCloser, string, error)
+ Reader(ctx context.Context, path string) (io.ReadCloser, error)
+ GetContent(ctx context.Context, path string) ([]byte, error)
+ URL(ctx context.Context, path string) string
+ Exists(ctx context.Context, path string) bool
+ Delete(ctx context.Context, path string) error
+ LocalPath(ctx context.Context, path string) (string, string, error) // Returns absolute path and content type
+}
+
+// ManagerOption the manager option
+type ManagerOption struct {
+ types.MetaInfo
+ MaxSize string `json:"max_size,omitempty" yaml:"max_size,omitempty"` // Max size of the file, Optional, default is 20M
+ ChunkSize string `json:"chunk_size,omitempty" yaml:"chunk_size,omitempty"` // Chunk size of the file, Optional, default is 2M
+ AllowedTypes []string `json:"allowed_types,omitempty" yaml:"allowed_types,omitempty"` // Allowed types of the file, Optional, default is all
+ Gzip bool `json:"gzip,omitempty" yaml:"gzip,omitempty"` // Gzip the file, Optional, default is false
+ Driver string `json:"driver,omitempty" yaml:"driver,omitempty"` // Driver, Optional, default is local
+ Options map[string]interface{} `json:"options,omitempty" yaml:"options,omitempty"` // Options, Optional
+}
+
+type allowedType struct {
+ mapping map[string]bool
+ wildcards []string // Wildcard patterns for file types (e.g., "image/*", "text/*")
+}
+
+// UploadOption the upload option
+type UploadOption struct {
+ CompressImage bool `json:"compress_image,omitempty" form:"compress_image"` // Compress the file, Optional, default is true
+ CompressSize int `json:"compress_size,omitempty" form:"compress_size"` // Compress the file size, Optional, default is 1920, if compress_image is true, the file size will be compressed to the compress_size
+ Gzip bool `json:"gzip,omitempty" form:"gzip"` // Gzip the file, Optional, default is false
+ OriginalFilename string `json:"original_filename,omitempty" form:"original_filename"` // Original filename sent separately to avoid encoding issues
+ Groups []string `json:"groups,omitempty" form:"groups"` // Groups, Optional, default is empty, Multi-level groups like ["user", "user123", "chat", "chat456"]
+ ClientID string `json:"client_id,omitempty" form:"client_id"` // Client identifier
+ OpenID string `json:"openid,omitempty" form:"openid"` // OpenID identifier
+}
+
+// ListOption defines options for listing files
+type ListOption struct {
+ Page int `json:"page,omitempty"` // Page number (1-based), default is 1
+ PageSize int `json:"page_size,omitempty"` // Page size, default is 20
+ Filters map[string]interface{} `json:"filters,omitempty"` // Filter conditions, e.g., {"status": "uploaded", "content_type": "image/*"}
+ OrderBy string `json:"order_by,omitempty"` // Order by field, e.g., "created_at desc", "name asc"
+ Select []string `json:"select,omitempty"` // Fields to select, empty means select all
+}
+
+// ListResult contains the paginated list result
+type ListResult struct {
+ Files []*File `json:"files"` // List of files
+ Total int64 `json:"total"` // Total count
+ Page int `json:"page"` // Current page
+ PageSize int `json:"page_size"` // Page size
+ TotalPages int `json:"total_pages"` // Total pages
+}
+
+// FileHeader the file header
+type FileHeader struct {
+ *multipart.FileHeader
+}
diff --git a/audit/README.md b/audit/README.md
new file mode 100644
index 00000000..7366301b
--- /dev/null
+++ b/audit/README.md
@@ -0,0 +1 @@
+# Audit Log
diff --git a/cert/cert.go b/cert/cert.go
index 39a0329f..99e2407e 100644
--- a/cert/cert.go
+++ b/cert/cert.go
@@ -11,6 +11,17 @@ import (
// Load 加载API
func Load(cfg config.Config) error {
+
+ // Ignore if the certs directory does not exist
+ exists, err := application.App.Exists("certs")
+ if err != nil {
+ return err
+ }
+
+ if !exists {
+ return nil
+ }
+
exts := []string{"*.pem", "*.key", "*.pub"}
return application.App.Walk("certs", func(root, file string, isdir bool) error {
if isdir {
diff --git a/cmd/dump.go b/cmd/dump.go
index eb820808..a68823ca 100644
--- a/cmd/dump.go
+++ b/cmd/dump.go
@@ -57,12 +57,18 @@ var dumpCmd = &cobra.Command{
}
// Load model
- err = engine.Load(config.Conf, engine.LoadOption{Action: "dump"})
+ loadWarnings, err := engine.Load(config.Conf, engine.LoadOption{Action: "dump"})
if err != nil {
fmt.Println(color.RedString(L("Fatal: %s"), err.Error()))
os.Exit(1)
}
+ if len(loadWarnings) > 0 {
+ for _, warning := range loadWarnings {
+ fmt.Println(color.YellowString("[%s] %s", warning.Widget, warning.Error))
+ }
+ }
+
if dumpModel != "" {
fmt.Println(color.YellowString(L("Not supported yet")))
os.Exit(1)
diff --git a/cmd/migrate.go b/cmd/migrate.go
index 3ebf0a8c..1138ccda 100644
--- a/cmd/migrate.go
+++ b/cmd/migrate.go
@@ -37,12 +37,18 @@ var migrateCmd = &cobra.Command{
}
// 加载数据模型
- err := engine.Load(config.Conf, engine.LoadOption{Action: "migrate"})
+ loadWarnings, err := engine.Load(config.Conf, engine.LoadOption{Action: "migrate"})
if err != nil {
fmt.Println(color.RedString(L("Fatal: %s"), err.Error()))
os.Exit(1)
}
+ if len(loadWarnings) > 0 {
+ for _, warning := range loadWarnings {
+ fmt.Println(color.YellowString("[%s] %s", warning.Widget, warning.Error))
+ }
+ }
+
if name != "" {
mod, has := model.Models[name]
if !has {
diff --git a/cmd/restore.go b/cmd/restore.go
index d5776111..eac6c37c 100644
--- a/cmd/restore.go
+++ b/cmd/restore.go
@@ -60,12 +60,18 @@ var restoreCmd = &cobra.Command{
})
// 加载数据模型
- err = engine.Load(config.Conf, engine.LoadOption{Action: "restore"})
+ loadWarnings, err := engine.Load(config.Conf, engine.LoadOption{Action: "restore"})
if err != nil {
fmt.Println(color.RedString(L("Fatal: %s"), err.Error()))
os.Exit(1)
}
+ if len(loadWarnings) > 0 {
+ for _, warning := range loadWarnings {
+ fmt.Println(color.YellowString("[%s] %s", warning.Widget, warning.Error))
+ }
+ }
+
// Restore models
restoreModels(filepath.Join(dst, "model"), []model.MigrateOption{
model.WithDonotInsertValues(migrateNoInsert),
diff --git a/cmd/run.go b/cmd/run.go
index 4c094953..12f56e61 100644
--- a/cmd/run.go
+++ b/cmd/run.go
@@ -57,7 +57,7 @@ var runCmd = &cobra.Command{
return
}
- err := engine.Load(cfg, engine.LoadOption{Action: "run"})
+ loadWarnings, err := engine.Load(cfg, engine.LoadOption{Action: "run"})
if err != nil {
if !runSilent {
color.Red(L("Engine: %s\n"), err.Error())
@@ -130,6 +130,17 @@ var runCmd = &cobra.Command{
}
if !runSilent {
+
+ if len(loadWarnings) > 0 {
+ fmt.Println(color.YellowString("---------------------------------"))
+ fmt.Println(color.YellowString(L("Warnings")))
+ fmt.Println(color.YellowString("---------------------------------"))
+ for _, warning := range loadWarnings {
+ fmt.Println(color.YellowString("[%s] %s", warning.Widget, warning.Error))
+ }
+ fmt.Printf("\n")
+ }
+
color.White("--------------------------------------\n")
color.White(L("%s Response\n"), name)
color.White("--------------------------------------\n")
diff --git a/cmd/start.go b/cmd/start.go
index a0acb09f..34bb24cd 100644
--- a/cmd/start.go
+++ b/cmd/start.go
@@ -77,7 +77,7 @@ var startCmd = &cobra.Command{
}
// load the application engine
- err := engine.Load(config.Conf, engine.LoadOption{Action: "start"})
+ loadWarnings, err := engine.Load(config.Conf, engine.LoadOption{Action: "start"})
if err != nil {
fmt.Println(color.RedString(L("Load: %s"), err.Error()))
os.Exit(1)
@@ -232,6 +232,17 @@ var startCmd = &cobra.Command{
printStores(true)
}
+ // Print the warnings
+ if len(loadWarnings) > 0 {
+ fmt.Println(color.YellowString("---------------------------------"))
+ fmt.Println(color.YellowString(L("Warnings")))
+ fmt.Println(color.YellowString("---------------------------------"))
+ for _, warning := range loadWarnings {
+ fmt.Println(color.YellowString("[%s] %s", warning.Widget, warning.Error))
+ }
+ fmt.Printf("\n")
+ }
+
for {
select {
case v := <-srv.Event():
@@ -275,11 +286,19 @@ func install() error {
Boot()
// load the application engine
- err = engine.Load(config.Conf, engine.LoadOption{Action: "start"})
+ loadWarnings, err := engine.Load(config.Conf, engine.LoadOption{Action: "start"})
if err != nil {
return err
}
+ // Print the warnings
+ if len(loadWarnings) > 0 {
+ for _, warning := range loadWarnings {
+ fmt.Println(color.YellowString("[%s] %s", warning.Widget, warning.Error))
+ }
+ fmt.Printf("\n\n")
+ }
+
err = setup.Initialize(config.Conf.Root, config.Conf)
if err != nil {
return err
diff --git a/cmd/studio/run.go b/cmd/studio/run.go
index 02690d84..ef46f209 100644
--- a/cmd/studio/run.go
+++ b/cmd/studio/run.go
@@ -18,6 +18,11 @@ import (
"github.com/yaoapp/yao/studio"
)
+// *********************************************************************************
+// !! Yao Studio Command has been deprecated.
+// !! Do not use this command in your project.
+// *********************************************************************************
+
// RunCmd command
var RunCmd = &cobra.Command{
Use: "run",
@@ -43,7 +48,7 @@ var RunCmd = &cobra.Command{
return
}
- err := engine.Load(cfg, engine.LoadOption{Action: "studio.run"})
+ _, err := engine.Load(cfg, engine.LoadOption{Action: "studio.run"})
if err != nil {
fmt.Println(color.RedString(L("Engine: %s"), err.Error()))
}
diff --git a/cmd/sui/build.go b/cmd/sui/build.go
index 4fb0fafe..d19c38c1 100644
--- a/cmd/sui/build.go
+++ b/cmd/sui/build.go
@@ -31,7 +31,7 @@ var BuildCmd = &cobra.Command{
Boot()
cfg := config.Conf
- err := engine.Load(cfg, engine.LoadOption{Action: "sui.build"})
+ loadWarnings, err := engine.Load(cfg, engine.LoadOption{Action: "sui.build"})
if err != nil {
fmt.Fprintln(os.Stderr, color.RedString(err.Error()))
return
@@ -99,6 +99,13 @@ var BuildCmd = &cobra.Command{
fmt.Println(color.YellowString("Build succeeded for %s in %s", mode, timecost))
return
}
+
+ if len(loadWarnings) > 0 {
+ for _, warning := range loadWarnings {
+ fmt.Println(color.YellowString("[%s] %s", warning.Widget, warning.Error))
+ }
+ }
+
if len(warnings) > 0 {
for _, warning := range warnings {
fmt.Println(color.YellowString("Warning: %s", warning))
diff --git a/cmd/sui/trans.go b/cmd/sui/trans.go
index 32caaed8..3c753d32 100644
--- a/cmd/sui/trans.go
+++ b/cmd/sui/trans.go
@@ -32,7 +32,7 @@ var TransCmd = &cobra.Command{
Boot()
cfg := config.Conf
- err := engine.Load(cfg, engine.LoadOption{Action: "sui.trans"})
+ loadWarnings, err := engine.Load(cfg, engine.LoadOption{Action: "sui.trans"})
if err != nil {
fmt.Fprintln(os.Stderr, color.RedString(err.Error()))
return
@@ -135,6 +135,13 @@ var TransCmd = &cobra.Command{
fmt.Println(color.YellowString("Translate succeeded for %s in %s", mode, timecost))
return
}
+
+ if len(loadWarnings) > 0 {
+ for _, warning := range loadWarnings {
+ fmt.Println(color.YellowString("[%s] %s", warning.Widget, warning.Error))
+ }
+ }
+
if len(warnings) > 0 {
for _, warning := range warnings {
fmt.Println(color.YellowString("Warning: %s", warning))
diff --git a/cmd/sui/watch.go b/cmd/sui/watch.go
index b9412d26..74c77aab 100644
--- a/cmd/sui/watch.go
+++ b/cmd/sui/watch.go
@@ -39,12 +39,18 @@ var WatchCmd = &cobra.Command{
Boot()
cfg := config.Conf
- err := engine.Load(cfg, engine.LoadOption{Action: "sui.watch"})
+ loadWarnings, err := engine.Load(cfg, engine.LoadOption{Action: "sui.watch"})
if err != nil {
fmt.Fprintln(os.Stderr, color.RedString(err.Error()))
return
}
+ if len(loadWarnings) > 0 {
+ for _, warning := range loadWarnings {
+ fmt.Println(color.YellowString("[%s] %s", warning.Widget, warning.Error))
+ }
+ }
+
id := args[0]
template := args[1]
diff --git a/cmd/version.go b/cmd/version.go
index 9b37f145..67e104d1 100644
--- a/cmd/version.go
+++ b/cmd/version.go
@@ -2,18 +2,22 @@ package cmd
import (
"fmt"
- "github.com/spf13/cobra"
- "github.com/yaoapp/yao/share"
"runtime"
"strings"
+
+ "github.com/fatih/color"
+ "github.com/spf13/cobra"
+ "github.com/yaoapp/yao/share"
)
var printAllVersion bool
-var versionTemplate = `Version: %s
-Go version: %s
-Git commit: %s
-Built: %s
-OS/Arch: %s/%s
+var versionTemplate = `Version: %s
+Go version: %s
+Yao commit: %s
+Cui version: %s
+Cui commit: %s
+Built: %s
+OS/Arch: %s/%s
`
var versionCmd = &cobra.Command{
Use: "version",
@@ -23,16 +27,29 @@ var versionCmd = &cobra.Command{
if printAllVersion {
commit := strings.Split(share.PRVERSION, "-")[0]
buildTime := strings.TrimPrefix(share.PRVERSION, commit+"-")
- fmt.Printf(versionTemplate,
- share.VERSION,
- runtime.Version(),
- commit, buildTime,
- runtime.GOOS,
- runtime.GOARCH)
+ cuiCommit := strings.Split(share.PRCUI, "-")[0]
+
+ fmt.Printf("%s", color.WhiteString("Yao version: "))
+ fmt.Printf("%s\n", color.GreenString(share.VERSION))
+
+ fmt.Printf("%s", color.WhiteString("Yao commit: "))
+ fmt.Printf("%s\n", color.YellowString(commit))
+
+ fmt.Printf("%s", color.WhiteString("Cui commit: "))
+ fmt.Printf("%s\n", color.YellowString(cuiCommit))
+
+ fmt.Printf("%s", color.WhiteString("Built: "))
+ fmt.Printf("%s\n", color.BlueString(buildTime))
+
+ fmt.Printf("%s", color.WhiteString("OS/Arch: "))
+ fmt.Printf("%s\n", color.MagentaString("%s/%s", runtime.GOOS, runtime.GOARCH))
+
+ fmt.Printf("%s", color.WhiteString("Go version: "))
+ fmt.Printf("%s\n", color.CyanString(runtime.Version()))
return
}
- // Do Stuff Here
- fmt.Println(share.VERSION)
+ fmt.Printf("%s", color.WhiteString("Yao version: "))
+ fmt.Printf("%s\n", color.GreenString(share.VERSION))
},
}
diff --git a/cui/setup/index.html b/cui/setup/index.html
new file mode 100644
index 00000000..844008d7
--- /dev/null
+++ b/cui/setup/index.html
@@ -0,0 +1 @@
+CUI SETUP
diff --git a/cui/v0.9/index.html b/cui/v0.9/index.html
new file mode 100644
index 00000000..a9ce4ce5
--- /dev/null
+++ b/cui/v0.9/index.html
@@ -0,0 +1 @@
+# CUI v0.9.2
diff --git a/xgen/v1.0/index.html b/cui/v1.0/index.html
similarity index 72%
rename from xgen/v1.0/index.html
rename to cui/v1.0/index.html
index 0ff2cf02..038dcfbd 100644
--- a/xgen/v1.0/index.html
+++ b/cui/v1.0/index.html
@@ -1,3 +1,3 @@
-# XGEN v1.0.1
+# CUI v1.0.0
## ROOT /__yao_admin_root/
diff --git a/xgen/v1.0/layouts__index.async.js b/cui/v1.0/layouts__index.async.js
similarity index 100%
rename from xgen/v1.0/layouts__index.async.js
rename to cui/v1.0/layouts__index.async.js
diff --git a/xgen/v1.0/umi.js b/cui/v1.0/umi.js
similarity index 100%
rename from xgen/v1.0/umi.js
rename to cui/v1.0/umi.js
diff --git a/data/bindata.go b/data/bindata.go
index 0afc3750..7108fbdb 100644
--- a/data/bindata.go
+++ b/data/bindata.go
@@ -1,53 +1,107 @@
// Code generated for package data by go-bindata DO NOT EDIT. (@generated)
// sources:
-// .tmp/data/init/README.md
-// .tmp/data/init/aigcs/translate.ai.yml
-// .tmp/data/init/apis/aigc.http.yao
+// .tmp/data/cui/setup/index.html
+// .tmp/data/cui/v0.9/index.html
+// .tmp/data/cui/v1.0/index.html
+// .tmp/data/cui/v1.0/layouts__index.async.js
+// .tmp/data/cui/v1.0/umi.js
+// .tmp/data/init/.env
+// .tmp/data/init/.vscode/settings.json
+// .tmp/data/init/.vscode/types/runtime/console.d.ts
+// .tmp/data/init/.vscode/types/runtime/exception.d.ts
+// .tmp/data/init/.vscode/types/runtime/fs.d.ts
+// .tmp/data/init/.vscode/types/runtime/global.d.ts
+// .tmp/data/init/.vscode/types/runtime/http.d.ts
+// .tmp/data/init/.vscode/types/runtime/io.d.ts
+// .tmp/data/init/.vscode/types/runtime/log.d.ts
+// .tmp/data/init/.vscode/types/runtime/neo.d.ts
+// .tmp/data/init/.vscode/types/runtime/process/fs.d.ts
+// .tmp/data/init/.vscode/types/runtime/process/http.d.ts
+// .tmp/data/init/.vscode/types/runtime/process/model.d.ts
+// .tmp/data/init/.vscode/types/runtime/process.d.ts
+// .tmp/data/init/.vscode/types/runtime/query.d.ts
+// .tmp/data/init/.vscode/types/runtime/store.d.ts
+// .tmp/data/init/.vscode/types/runtime/sui.d.ts
+// .tmp/data/init/.vscode/types/runtime/time.d.ts
+// .tmp/data/init/.vscode/types/runtime.d.ts
+// .tmp/data/init/.vscode/types/sui.d.ts
// .tmp/data/init/app.yao
-// .tmp/data/init/charts/pet.chart.yao
-// .tmp/data/init/connectors/openai/gpt-3_5-turbo.conn.yao
-// .tmp/data/init/connectors/openai/text-embedding-ada-002.conn.yao
-// .tmp/data/init/connectors/openai/whisper-1.conn.yao
-// .tmp/data/init/dashboards/kanban.dash.yao
-// .tmp/data/init/flows/app/menu.flow.yao
-// .tmp/data/init/flows/stat/data.flow.yao
-// .tmp/data/init/forms/admin/user.form.yao
-// .tmp/data/init/forms/demo/pet.form.yao
+// .tmp/data/init/data/README.md
+// .tmp/data/init/data/templates/default/__assets/README.md
+// .tmp/data/init/data/templates/default/__assets/images/icons/app.png
+// .tmp/data/init/data/templates/default/__assets/images/logos/logo_color.svg
+// .tmp/data/init/data/templates/default/__assets/images/logos/wordmark.svg
+// .tmp/data/init/data/templates/default/__data.json
+// .tmp/data/init/data/templates/default/__document.html
+// .tmp/data/init/data/templates/default/index/index.css
+// .tmp/data/init/data/templates/default/index/index.html
+// .tmp/data/init/data/templates/default/index/index.json
+// .tmp/data/init/db/README.md
+// .tmp/data/init/flows/menu.flow.yao
+// .tmp/data/init/forms/account.form.yao
// .tmp/data/init/icons/app.icns
// .tmp/data/init/icons/app.ico
// .tmp/data/init/icons/app.png
-// .tmp/data/init/langs/zh-cn/global.yml
-// .tmp/data/init/langs/zh-hk/global.yml
// .tmp/data/init/logins/admin.login.yao
-// .tmp/data/init/logins/user.login.yao
+// .tmp/data/init/logs/README.md
// .tmp/data/init/models/admin/user.mod.yao
-// .tmp/data/init/models/pet.mod.yao
+// .tmp/data/init/models/tests/pet.mod.yao
// .tmp/data/init/neo/neo.yml
-// .tmp/data/init/public/demo/pet.html
-// .tmp/data/init/public/index.html
-// .tmp/data/init/scripts/dash.js
-// .tmp/data/init/scripts/guard.js
-// .tmp/data/init/scripts/setup.js
-// .tmp/data/init/scripts/stat.js
-// .tmp/data/init/services/foo.js
-// .tmp/data/init/studio/hello.js
-// .tmp/data/init/tables/admin/user.tab.yao
-// .tmp/data/init/tables/demo/pet.tab.yao
+// .tmp/data/init/public/README.md
+// .tmp/data/init/public/assets/README.md
+// .tmp/data/init/public/assets/images/icons/app.png
+// .tmp/data/init/public/assets/images/logos/logo_color.svg
+// .tmp/data/init/public/assets/images/logos/wordmark.svg
+// .tmp/data/init/public/assets/libsui.min.js
+// .tmp/data/init/public/assets/libsui.min.js.map
+// .tmp/data/init/public/index.cfg
+// .tmp/data/init/public/index.sui
+// .tmp/data/init/scripts/account.ts
+// .tmp/data/init/scripts/ai/neo.ts
+// .tmp/data/init/scripts/tests.ts
+// .tmp/data/init/scripts/utils.ts
+// .tmp/data/init/suis/web.sui.yao
+// .tmp/data/init/tables/account.tab.yao
+// .tmp/data/init/tsconfig.json
+// .tmp/data/libsui/agent.ts
// .tmp/data/libsui/index.ts
// .tmp/data/libsui/utils.ts
// .tmp/data/libsui/yao.ts
// .tmp/data/public/index.html
// .tmp/data/ui/index.html
-// .tmp/data/xgen/setup/index.html
-// .tmp/data/xgen/v0.9/index.html
-// .tmp/data/xgen/v1.0/index.html
-// .tmp/data/xgen/v1.0/layouts__index.async.js
-// .tmp/data/xgen/v1.0/umi.js
// .tmp/data/yao/data/icons/404.png
// .tmp/data/yao/data/icons/icon.icns
// .tmp/data/yao/data/icons/icon.ico
// .tmp/data/yao/data/icons/icon.png
// .tmp/data/yao/data/index.html
+// .tmp/data/yao/data/kb/providers/chunking/semantic/en.json
+// .tmp/data/yao/data/kb/providers/chunking/semantic/zh-cn.json
+// .tmp/data/yao/data/kb/providers/chunking/structured/en.json
+// .tmp/data/yao/data/kb/providers/chunking/structured/zh-cn.json
+// .tmp/data/yao/data/kb/providers/converter/mcp/en.json
+// .tmp/data/yao/data/kb/providers/converter/mcp/zh-cn.json
+// .tmp/data/yao/data/kb/providers/converter/ocr/en.json
+// .tmp/data/yao/data/kb/providers/converter/ocr/zh-cn.json
+// .tmp/data/yao/data/kb/providers/converter/office/en.json
+// .tmp/data/yao/data/kb/providers/converter/office/zh-cn.json
+// .tmp/data/yao/data/kb/providers/converter/utf8/en.json
+// .tmp/data/yao/data/kb/providers/converter/utf8/zh-cn.json
+// .tmp/data/yao/data/kb/providers/converter/video/en.json
+// .tmp/data/yao/data/kb/providers/converter/video/zh-cn.json
+// .tmp/data/yao/data/kb/providers/converter/vision/en.json
+// .tmp/data/yao/data/kb/providers/converter/vision/zh-cn.json
+// .tmp/data/yao/data/kb/providers/converter/whisper/en.json
+// .tmp/data/yao/data/kb/providers/converter/whisper/zh-cn.json
+// .tmp/data/yao/data/kb/providers/embedding/fastembed/en.json
+// .tmp/data/yao/data/kb/providers/embedding/fastembed/zh-cn.json
+// .tmp/data/yao/data/kb/providers/embedding/openai/en.json
+// .tmp/data/yao/data/kb/providers/embedding/openai/zh-cn.json
+// .tmp/data/yao/data/kb/providers/extraction/openai/en.json
+// .tmp/data/yao/data/kb/providers/extraction/openai/zh-cn.json
+// .tmp/data/yao/data/kb/providers/fetcher/http/en.json
+// .tmp/data/yao/data/kb/providers/fetcher/http/zh-cn.json
+// .tmp/data/yao/data/kb/providers/fetcher/mcp/en.json
+// .tmp/data/yao/data/kb/providers/fetcher/mcp/zh-cn.json
// .tmp/data/yao/fields/model.trans.json
// .tmp/data/yao/langs/en-US.json
// .tmp/data/yao/langs/zh-cn/global.yml
@@ -56,7 +110,30 @@
// .tmp/data/yao/langs/zh-hk/global.yml
// .tmp/data/yao/langs/zh-hk/logins/admin.login.yml
// .tmp/data/yao/langs/zh-hk/logins/user.login.yml
+// .tmp/data/yao/models/assistant.mod.yao
+// .tmp/data/yao/models/attachment.mod.yao
+// .tmp/data/yao/models/audit.mod.yao
+// .tmp/data/yao/models/chat.mod.yao
+// .tmp/data/yao/models/config.mod.yao
+// .tmp/data/yao/models/dsl.mod.yao
+// .tmp/data/yao/models/history.mod.yao
+// .tmp/data/yao/models/kb/collection.mod.yao
+// .tmp/data/yao/models/kb/document.mod.yao
+// .tmp/data/yao/models/user.mod.yao
+// .tmp/data/yao/models/user_oauth_account.mod.yao
+// .tmp/data/yao/models/user_role.mod.yao
+// .tmp/data/yao/models/user_type.mod.yao
// .tmp/data/yao/release/app.yaz
+// .tmp/data/yao/stores/agent/cache.lru.yao
+// .tmp/data/yao/stores/agent/memory.badger.yao
+// .tmp/data/yao/stores/cache.lru.yao
+// .tmp/data/yao/stores/kb/cache.lru.yao
+// .tmp/data/yao/stores/kb/store.badger.yao
+// .tmp/data/yao/stores/oauth/cache.lru.yao
+// .tmp/data/yao/stores/oauth/client.badger.yao
+// .tmp/data/yao/stores/oauth/store.badger.yao
+// .tmp/data/yao/stores/store.badger.yao
+// .tmp/data/yao/uploaders/attachment.local.yao
package data
import (
@@ -220,67 +297,507 @@ func AssetFile() http.FileSystem {
return &assetOperator{}
}
-var _initReadmeMd = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x96\xef\x6f\xdb\x44\x18\xc7\xdf\xdf\x5f\x71\x72\xdf\x80\x98\x93\x75\x63\x8d\x36\xc9\x12\x86\x98\x62\xb6\xd9\x55\x1c\x2a\x22\x84\x72\x69\x62\x5a\xab\x69\xec\xce\xe9\xd4\x21\xbf\x28\x43\xac\x68\xa8\x4d\x26\x4a\x16\x58\x87\x96\xfd\x00\x23\x68\x5d\xa4\x0a\x46\x5a\x91\x3f\x86\x9c\xed\xfc\x17\xe8\xce\x4e\x62\x93\xa4\xa4\xbd\xbc\x70\x72\xcf\x3d\xf7\x79\x9e\xbb\xe7\xfb\xc4\x33\x30\xc7\xcb\x10\xb7\xf7\xbc\x3d\x1b\x00\xb7\xb1\xed\xb6\x5e\xdc\x80\x9f\xac\x54\xab\x86\x79\x23\x99\xbc\x57\xd0\x0b\x86\x61\x26\x8a\xfa\x5a\xb2\xa4\x17\x3f\x7d\x63\x82\xe1\x4d\x00\x66\x66\x60\xef\xa4\xe9\x1f\xbe\xf4\x0e\x5b\x5e\xfd\x01\x7e\xd4\xf4\x8f\x7f\xc2\xb5\x3f\x01\xb0\x20\x1d\xe1\x23\x3a\x2c\x60\x41\x96\x65\x59\x18\x3c\xa2\x83\xda\x82\x1d\xa0\x05\xd1\xa6\x56\xa8\x2c\xbf\xa3\xad\xaf\x16\x08\x12\x51\x2b\x76\x1e\x78\xcf\xbe\x20\x56\x7e\xf6\xca\xd5\xb7\xaf\xcd\x19\x6f\xa1\xfe\xbe\x24\x1c\x6f\xd7\xc1\xcf\xbf\xc4\xb5\x66\x6f\xbb\x46\xa2\x08\xbe\xe1\xfa\x8e\xf7\xf3\x51\x24\x06\xe8\x3b\xc7\x6e\x73\x77\x34\xba\x73\x0c\x0b\x7a\x2f\xdb\xdd\xbf\xbf\x19\x6f\x04\xa3\xe9\x8d\x4b\xf9\xbc\xe3\x8c\x2d\x28\x33\xc7\xcb\x79\x41\x5a\x8c\x85\xe9\xee\xef\xe0\x87\x2d\xd7\x6e\xe1\xd3\x1a\x44\x25\xf5\xae\x5a\xd6\x8d\x35\xb5\x52\x45\xd0\xfd\xba\x01\x91\x71\x47\x2f\x6d\x14\xab\x9a\x5e\x41\x67\xa6\x1b\x77\xfd\x4f\xb2\x04\xfc\x81\xac\x64\x47\xc1\xde\x93\x47\xb8\xfe\x1b\xde\x3f\xc2\x4f\xb7\x20\xba\x9c\xa0\x9f\xb3\x48\x63\xc8\xb3\x57\x52\xd4\x6f\x16\x8d\x1e\x33\x21\x2f\xc8\x99\x89\x64\xef\x57\x07\xd7\x5e\x04\x75\xda\x7d\xdd\x86\xe8\xda\xe5\xeb\xd7\xa7\xe6\x5b\x64\xfd\xdc\xdc\xb8\xf5\x7d\x78\xfa\xdd\x7c\x3a\x23\x2e\x0a\x99\x3e\xfc\xbb\x23\x77\xe7\x10\xb7\xbf\xed\xfd\xf2\x3b\x7e\x68\x43\x64\xae\x97\xb5\xaa\x7a\x35\x3c\xee\xb5\x7b\xe6\x7a\x79\x0a\xbe\x15\x71\x9c\x4c\x5e\xc8\x88\xb7\xf9\x4c\x2e\x4a\x76\x1b\xdb\xdd\x93\x3f\xfc\xce\x76\xc8\x4f\x2b\xd2\xb4\xd9\x0e\xd1\xc9\x82\x61\x24\x4b\x4b\x44\xf4\x89\xd2\x12\x1a\x41\xdf\xe2\xa5\xf9\xa8\x83\xef\x1c\xf8\xf6\x16\x44\x6a\x85\xdd\x30\xd1\x25\xf4\xf9\x0a\x5b\x5c\x39\xcf\x2d\x53\x2a\xf1\x1a\x57\x85\x03\xaa\x3c\x1f\x73\x70\x1f\xbf\xc2\x9d\xc7\x41\xc2\x61\x85\x5d\x64\x58\x10\x25\x92\x65\x7d\xd9\x24\x59\x97\xb5\x62\x81\x88\x21\x51\xd6\x97\x51\x94\x9c\xbf\x2d\xa7\x85\x71\x64\xf7\xd9\x29\x95\x56\x56\xf8\x38\x1b\x5e\xf2\x87\x8a\x2c\x4d\x95\xbd\x35\x79\x6d\x1f\xad\x08\x8a\x22\xca\x52\x5e\xc9\xca\x19\x01\x5a\xb0\x7b\xfa\x83\xef\x3c\xc5\x07\x4d\x7c\xdf\x76\x1b\x7f\x51\xf4\x67\x5a\x59\x45\x94\x7c\x47\x2d\x69\xe6\xb4\x68\xea\x36\x05\xfa\x7d\xf1\x96\x00\x07\xe8\xd8\x79\x5f\x14\xdd\x2f\xb0\x84\xa9\x9a\x66\xa4\xf7\x0c\xd0\xd9\x8f\xd2\xe2\x40\xd9\x16\x54\xaa\x1b\x25\x4d\x87\xfc\x82\xd8\x57\xf7\xa8\xae\x53\xa9\xff\xa7\x5b\x93\x17\x12\xb4\xbc\x20\x48\xbc\x98\xbf\x29\xe4\x86\x0e\xc1\x1c\x45\xdf\x14\x72\x97\x20\xae\x39\x78\xdf\xf6\x3b\x3f\xba\xbb\xaf\xf0\xf7\x76\xf7\xf5\x81\xfb\xe4\xd8\xdd\x79\x3e\xf8\xb3\xf9\x67\xeb\x3e\xc4\x75\xc7\xdb\xb3\xa1\xa4\xea\xb4\x22\x78\x71\xfe\x3d\x88\x3b\x5f\xf5\x5a\x27\xc4\x4a\xc4\xbd\xca\x6e\x6e\x6e\x8e\xc6\x61\x01\x80\x12\x6a\xe5\x2e\x82\xc1\x39\x03\x80\x10\x5a\x2a\x98\x2b\x20\xd6\x6c\x38\x26\xec\x0e\x0c\x88\xb7\x02\x8e\x89\x6b\x37\xb0\x0b\xd2\x22\xc7\x44\x1a\x78\x30\x4b\x3a\x36\xc7\x84\x3d\x39\x98\x22\xc2\xe6\x18\x2a\xc4\x70\x42\x9e\xe7\x98\xf1\xf2\x18\x2c\xa0\xd2\xe0\x18\x22\x80\x60\x8e\x5c\x1b\xc7\x90\x4e\x1b\xfc\x8e\x16\xd2\x30\xc0\xfe\xdd\xc7\xd7\xd0\x3a\xe7\x18\x52\x57\xa1\x61\x58\x0a\x64\xcf\x54\x8a\x01\xc3\x6b\xe2\x18\x73\x95\x0d\xde\x05\x18\x72\x52\xe0\xdf\x00\x00\x00\xff\xff\x0f\x94\x4b\x64\xdf\x08\x00\x00")
+var _cuiSetupIndexHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\x0e\xf5\x54\x08\x76\x0d\x09\x0d\xe0\x02\x04\x00\x00\xff\xff\x32\x5d\xd2\x39\x0a\x00\x00\x00")
-func initReadmeMdBytes() ([]byte, error) {
+func cuiSetupIndexHtmlBytes() ([]byte, error) {
return bindataRead(
- _initReadmeMd,
- "init/README.md",
+ _cuiSetupIndexHtml,
+ "cui/setup/index.html",
)
}
-func initReadmeMd() (*asset, error) {
- bytes, err := initReadmeMdBytes()
+func cuiSetupIndexHtml() (*asset, error) {
+ bytes, err := cuiSetupIndexHtmlBytes()
if err != nil {
return nil, err
}
- info := bindataFileInfo{name: "init/README.md", size: 2271, mode: os.FileMode(420), modTime: time.Unix(1730855738, 0)}
+ info := bindataFileInfo{name: "cui/setup/index.html", size: 10, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
-var _initAigcsTranslateAiYml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x90\x31\x4e\xf4\x30\x10\x85\x7b\x9f\xe2\x29\xdb\xfe\x9b\xe6\x17\x8d\x6b\x90\xa0\xa7\x47\x43\x32\x64\x2d\x9c\x19\x63\x8f\x59\x2c\x71\x18\x1a\x8e\xb1\xb7\x81\x7b\xa0\x10\x69\xb3\x12\xe5\x68\xbe\xef\xe9\xe9\xed\x70\x9f\x49\x4a\x24\x63\x98\xe2\x46\xa6\x18\xca\xc1\xed\xd0\x48\x91\xab\x80\xc2\x34\x94\xde\xce\xd0\xd7\xe9\xe3\xfb\xf3\xe4\x84\x66\xf6\x9b\xeb\x06\x15\xe1\xc1\x34\x7b\x68\x62\xa1\xd0\x4f\xc9\xf6\xff\x1f\xae\xf6\x56\xf3\xa3\xba\x94\x75\x4e\x56\xbc\x03\xf6\xc8\x1a\xd9\xa3\xb4\x62\x3c\x3b\x00\x18\x54\x8c\xc5\x3c\xde\x7f\xcf\x85\xb9\xa8\x75\x60\x4c\xe1\x95\x05\x2f\x95\x8b\x05\x15\x04\xd9\xba\xf6\x67\xe5\x5a\x21\x6a\xe0\xb7\x14\x29\x08\x9a\xd6\x0c\x92\x72\xe4\xfc\x0f\x24\x23\xc6\xf5\x5f\x0b\x23\x55\x19\xac\xd2\x12\xf6\xc7\xa7\x71\x5c\x5d\x3d\xca\x25\x88\x99\xf2\x73\xd9\x70\x9e\x3c\xc2\x13\xee\x50\xa8\xa1\x5b\x77\xe9\x90\x39\xc5\x86\x99\xd1\xdd\x72\x8c\xda\x41\x25\x36\xe7\x34\x2d\x11\x14\x97\x01\xa8\x9a\xa6\x10\xd5\x3c\x2c\x57\x76\x3f\x01\x00\x00\xff\xff\xd6\xbb\xca\x6b\x84\x01\x00\x00")
+var _cuiV09IndexHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x52\x56\x70\x0e\xf5\x54\x28\x33\xd0\xb3\xd4\x33\xe2\x02\x04\x00\x00\xff\xff\xde\x4d\x47\xc5\x0d\x00\x00\x00")
-func initAigcsTranslateAiYmlBytes() ([]byte, error) {
+func cuiV09IndexHtmlBytes() ([]byte, error) {
return bindataRead(
- _initAigcsTranslateAiYml,
- "init/aigcs/translate.ai.yml",
+ _cuiV09IndexHtml,
+ "cui/v0.9/index.html",
)
}
-func initAigcsTranslateAiYml() (*asset, error) {
- bytes, err := initAigcsTranslateAiYmlBytes()
+func cuiV09IndexHtml() (*asset, error) {
+ bytes, err := cuiV09IndexHtmlBytes()
if err != nil {
return nil, err
}
- info := bindataFileInfo{name: "init/aigcs/translate.ai.yml", size: 388, mode: os.FileMode(420), modTime: time.Unix(1730855738, 0)}
+ info := bindataFileInfo{name: "cui/v0.9/index.html", size: 13, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
-var _initApisAigcHttpYao = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x3f\x8b\x14\x41\x10\xc5\xf3\xfe\x14\x45\x23\x0c\x9c\xd7\xd3\xb3\x07\x22\xd7\xd9\x62\x64\xe4\xa1\x2b\x08\xe7\x05\x45\x4f\xb1\xd3\x32\xdb\xdd\x76\xd7\xb8\x2c\xc3\xc6\x62\xa2\xb9\x91\x20\x97\x18\x98\x1b\xdc\xb7\xb9\x15\x3f\x86\xf4\xcc\xb9\xfe\xc1\xa4\x98\xa9\xf7\x7b\x8f\xea\xa7\x4f\xc4\x8a\x32\x1b\x61\x87\xd4\x83\x52\x7d\xb0\xc8\x2e\x78\x50\x2a\xd1\xeb\x81\x32\xc3\xc5\x93\x67\x2b\x50\xea\xc5\xfc\x51\x75\xcc\xd1\x68\xbd\x38\x7b\x58\x37\x75\x53\x2f\xcc\x83\xe6\xfc\x5c\x63\x74\x1a\xdd\xda\x6a\x4e\xe8\x73\x8f\x4c\x15\xbc\x14\x4a\x75\x84\x2d\x25\xa8\x9e\x67\x4a\x6a\xb9\x26\xcf\x06\x96\xd1\xc5\x90\x19\x6c\xef\xc8\x33\x3c\x1d\x3c\xbb\x0d\xe9\xfb\x25\x39\x1b\xad\xb7\xdb\x6d\x8d\x33\x53\x5b\xaf\xff\x0e\x7a\x14\x3c\x93\x67\xb5\xda\x45\x32\x80\x31\xf6\x6e\xbe\x58\xbf\xca\xc1\xcf\x6c\x8b\x8c\x50\x8d\xd2\xce\xac\x34\xf2\xf6\xe6\xd3\xe1\xfa\x46\xee\x2b\x01\x27\x5a\x8c\x02\x40\x7a\xdc\x90\x34\x20\x7f\xbc\xfd\x72\xf8\xfa\xf1\xf6\xdb\xbb\xef\xef\xaf\x0f\x1f\x3e\xcb\xd3\x22\xbe\xa1\x94\x5d\xf0\x45\x5f\x94\x67\xce\xdb\x96\xb2\x4d\x2e\xf2\x9d\x72\x74\x2e\x2f\x1e\xff\x69\x5e\x0f\x98\xda\x02\xa8\xf9\x3f\x22\x77\x59\x1a\xb8\x14\x00\x00\xe3\x34\xef\xd6\x85\x3a\x36\x36\xd1\x93\xb4\x21\xee\xc2\x14\x51\x3a\xff\xbd\x8f\x29\x58\xca\x25\x4b\x96\xb2\x73\xfd\x1f\xaf\x2b\xb7\x5d\xca\x7b\x11\x77\x7d\xc0\xb6\xfe\x55\xc2\xd5\x91\x08\x03\x4b\x03\x23\xc8\xcc\xc8\x43\x49\x3b\x6b\x9a\x53\x90\xbc\x8b\x53\x23\xff\x96\x2a\x61\x3f\x59\xcb\xbc\x12\x7b\xf1\x33\x00\x00\xff\xff\x59\x5f\x9f\xf9\x34\x02\x00\x00")
+var _cuiV10IndexHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x52\x56\x70\x0e\xf5\x54\x28\x33\xd4\x33\xd0\x33\xe0\xe2\xb2\x49\xb2\x53\x56\x56\x08\xf2\xf7\x0f\x51\xd0\x8f\x8f\xaf\x4c\xcc\x8f\x4f\x4c\xc9\xcd\xcc\x8b\x2f\xca\xcf\x2f\xd1\x57\xb0\xd1\x4f\xb2\xe3\x02\x04\x00\x00\xff\xff\x89\xe6\x5d\x70\x31\x00\x00\x00")
-func initApisAigcHttpYaoBytes() ([]byte, error) {
+func cuiV10IndexHtmlBytes() ([]byte, error) {
return bindataRead(
- _initApisAigcHttpYao,
- "init/apis/aigc.http.yao",
+ _cuiV10IndexHtml,
+ "cui/v1.0/index.html",
)
}
-func initApisAigcHttpYao() (*asset, error) {
- bytes, err := initApisAigcHttpYaoBytes()
+func cuiV10IndexHtml() (*asset, error) {
+ bytes, err := cuiV10IndexHtmlBytes()
if err != nil {
return nil, err
}
- info := bindataFileInfo{name: "init/apis/aigc.http.yao", size: 564, mode: os.FileMode(420), modTime: time.Unix(1730855738, 0)}
+ info := bindataFileInfo{name: "cui/v1.0/index.html", size: 49, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
-var _initAppYao = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x91\xc1\x4a\xf3\x40\x14\x85\xf7\x79\x8a\xcb\x2c\x4b\xff\xa4\x3f\x22\xa5\xb3\x2b\x76\xe1\xc2\x85\x54\x5d\x97\x4b\x3a\x92\x81\x24\x77\x98\x99\x28\xa5\x64\xeb\x52\xbb\xf0\x05\xdc\xb9\x12\x5f\x40\x7c\x19\x4b\x5f\x43\xe6\x4e\xda\x52\x0b\xcd\x26\xe4\x9c\x2f\xe7\x9e\x3b\xb3\x4c\x00\x44\x8d\x95\x12\x12\x84\x94\x13\x55\x11\x8c\x8d\x29\x75\x8e\x5e\x53\x2d\xfa\xc1\x77\x05\x59\xbf\x07\xa2\x38\x57\x2e\xb7\xda\x30\xc5\xd6\xb8\x26\x5f\x28\x0b\x0b\x24\xc0\xbf\x11\x0f\xca\xba\x8e\x1c\xa4\xff\x07\xe9\x59\x94\x71\x5e\xe9\x7a\x4a\xc4\xe9\xfc\xd1\x4d\x54\xbe\x31\x41\x8b\x33\x5c\xca\x42\x3a\x41\x8f\x11\xa8\x54\xdd\x08\x09\x4b\x10\xc6\x52\xae\x9c\x0b\xf0\x7d\x49\x8f\x2e\x45\x63\x52\xb6\xa1\x65\x94\xb8\x23\x96\x01\x4f\x00\x00\x84\x55\x15\x79\x75\x81\x79\x11\xd6\xf6\xb6\x51\x7d\x36\xb2\x5e\x8f\xdf\xd0\x83\xcd\xc7\xdb\x66\xf5\xb4\x5e\x3d\xaf\x5f\x3e\x7f\xbe\xbe\x37\xaf\xef\x72\x6b\xfd\x83\xeb\xf1\xed\xa5\x84\xee\x59\x0a\x34\x5a\x48\x91\xd5\x8a\x44\xbb\x87\xee\xa6\x57\x3b\x66\x07\x15\xde\x1b\x99\x65\x25\xe5\x58\x16\xe4\xbc\x3c\x1f\x8c\x46\x19\x1a\x9d\xcd\x66\x0b\xa4\x83\x8c\x6d\xd4\x8d\x6f\xe6\x9a\x8e\x4a\x44\xb9\xeb\x72\x50\xa2\x0f\xc2\xb1\x29\x64\xd8\x0d\xda\xa3\x9f\x62\xb7\x13\xa5\x86\xc3\x93\x49\x59\x3c\xc7\x80\xf0\x1d\x70\x0e\xc4\xe9\x0c\xb5\x49\x9b\xfc\x06\x00\x00\xff\xff\x74\x14\x15\x15\x5b\x02\x00\x00")
+var _cuiV10Layouts__indexAsyncJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2a\x4b\x2c\x52\x28\x48\x2c\xc9\x50\xb0\x55\x50\xd2\x8f\x8f\xaf\x4c\xcc\x8f\x4f\x4c\xc9\xcd\xcc\x8b\x2f\xca\xcf\x2f\xd1\x57\xb2\xe6\x02\x29\x48\xcb\xcf\x57\xb0\x55\x48\xce\xcf\x4b\x4e\x2c\xd1\x50\x42\x57\xa5\xa4\x69\xcd\x05\x08\x00\x00\xff\xff\x99\x7c\xcb\xfe\x47\x00\x00\x00")
+
+func cuiV10Layouts__indexAsyncJsBytes() ([]byte, error) {
+ return bindataRead(
+ _cuiV10Layouts__indexAsyncJs,
+ "cui/v1.0/layouts__index.async.js",
+ )
+}
+
+func cuiV10Layouts__indexAsyncJs() (*asset, error) {
+ bytes, err := cuiV10Layouts__indexAsyncJsBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "cui/v1.0/layouts__index.async.js", size: 71, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _cuiV10UmiJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2a\x4b\x2c\x52\x28\x48\x2c\xc9\x50\xb0\x55\x50\xd2\x8f\x8f\xaf\x4c\xcc\x8f\x4f\x4c\xc9\xcd\xcc\x8b\x2f\xca\xcf\x2f\xd1\x57\xb2\xe6\x02\x29\x48\xcb\xcf\x57\xb0\x55\x48\xce\xcf\x4b\x4e\x2c\xd1\x50\x42\x57\xa5\xa4\x69\xcd\x05\x08\x00\x00\xff\xff\x99\x7c\xcb\xfe\x47\x00\x00\x00")
+
+func cuiV10UmiJsBytes() ([]byte, error) {
+ return bindataRead(
+ _cuiV10UmiJs,
+ "cui/v1.0/umi.js",
+ )
+}
+
+func cuiV10UmiJs() (*asset, error) {
+ bytes, err := cuiV10UmiJsBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "cui/v1.0/umi.js", size: 71, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _initEnv = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\xce\xc1\x8a\x83\x30\x10\x06\xe0\xbb\x8f\x31\x0f\x10\x85\x65\x0f\x1e\x72\x70\x31\xbb\x1b\x50\x47\x92\x20\xf5\x14\xb4\xa6\x12\x48\x8d\x25\x52\xe8\xdb\x97\x1a\x29\x94\x39\xcd\x37\xff\xc0\xdf\x17\xa8\xcb\x1f\x5d\x0a\xde\x31\x41\x21\xdc\x9c\xdd\xcc\x17\x24\x87\xb7\x82\xd7\x85\xe8\x29\x90\x74\x1a\xd3\xc7\xe0\xc9\x34\xc6\x23\x6b\x3a\x0a\x93\xb9\x1b\xe7\xd7\xab\x59\xb6\xa8\xff\x28\x15\x85\x8c\xec\x13\xa9\xc2\xbf\xd7\xbb\xf3\x73\x48\x87\x75\x75\xf6\x3c\x6c\xd6\x2f\xc4\xf9\xf9\x1d\xd0\x35\x96\x8c\x82\x62\x27\x15\xad\x45\xa1\xe8\x77\x96\xe7\xfb\x26\x99\x94\x1c\x1b\xfd\xcb\x2b\x76\x54\x21\xc1\x84\x60\xfd\x02\x1f\x01\xa9\x50\x30\x0a\x17\xeb\x0c\x24\xcf\x00\x00\x00\xff\xff\xd9\xd2\x5d\x9c\xdb\x00\x00\x00")
+
+func initEnvBytes() ([]byte, error) {
+ return bindataRead(
+ _initEnv,
+ "init/.env",
+ )
+}
+
+func initEnv() (*asset, error) {
+ bytes, err := initEnvBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "init/.env", size: 219, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _initVscodeSettingsJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x97\x4f\x8e\xa3\x3c\x10\xc5\xf7\x9c\xc2\x1f\xcb\x28\x1f\xec\x73\x87\x39\xc1\xa8\xd5\x32\x85\x13\x3c\x0d\x18\xd9\xce\x44\xd1\x28\x77\x1f\x39\x18\x63\x8a\x3f\x6d\x22\x39\x9a\x65\xde\x33\xc5\xef\x35\xe5\x76\xf9\x4f\x42\x48\x7a\xe6\x35\x53\x19\x55\x4a\x00\xa7\x9a\x8b\x56\xa5\x27\x62\x1c\x42\xd2\x43\xa6\xae\x3c\x3d\x91\xb4\xd2\x4d\x9d\x1e\x07\xf1\x4e\x85\x11\x7f\x29\xd1\x42\x9a\x10\xf2\x38\x26\xa6\x92\xf9\x9d\x29\xa8\x58\x43\x4d\x8d\x9f\xcf\xe5\x7d\x25\xfb\x9e\x1f\x54\x43\x65\xac\x34\x3f\x1c\xf2\x43\xd6\x88\x32\x33\x4f\xa5\x47\x82\x14\x98\x4a\xe6\x8d\x1f\xc7\xa1\xd4\x55\xd6\x3d\x94\xee\xd4\x29\xcf\x25\xbd\x65\x17\xae\xab\x6b\x71\x55\x4c\x82\x68\x35\x6b\x75\x06\xa2\xc9\xef\x54\xd0\xae\xcb\x4d\xc1\xff\x7b\xb0\xbc\xa1\xbc\xcd\x4b\x55\xdb\xdf\x2a\x6f\x44\xc9\xea\x9e\xe2\x59\xff\x71\xfc\x9e\x9b\x76\x1d\xe2\x1e\x14\x98\x4a\x11\xb9\x1d\x43\x30\x75\x2d\x2e\xbc\x45\xdc\xa3\x06\x58\x8c\xc8\xee\x91\x7c\x4f\x6f\x45\x32\xd0\x99\x22\xe5\xb5\x66\x36\xc9\xa6\x0d\x1b\xbe\xc9\x67\xcd\x48\x31\xa7\xa4\x2f\x24\x65\xf2\x37\x87\xd5\xa0\x9e\xbb\x94\xd3\xda\x6f\x88\xe9\x63\xbe\x90\x52\xc0\x17\xd3\x6b\x21\x47\x73\x29\x63\xef\xbe\x21\xa2\xc7\x18\xbc\xdf\x94\x16\x12\x6d\x37\x27\x01\xd2\x22\x6e\x36\x53\x3f\xf8\xe3\x58\x26\x4d\xd5\x17\x42\x77\x12\x20\x2d\x22\xfa\x88\xb1\xbf\xad\x6e\xbc\xbc\xac\xb6\x95\x67\x2e\xb4\x95\x75\xe3\xb7\x95\xcf\xb8\x37\x21\xed\xb8\xb2\xb8\x6a\x31\xe5\x6c\xc1\x2c\xe9\x64\xc5\x1b\xd2\xaa\x4f\xf3\xaf\x82\xc9\xd7\x02\xdf\x58\xd1\x6f\xc3\xed\xd8\x2b\xcb\x66\xe1\x17\xd6\xbd\xe5\x4f\x00\x35\x37\x4f\xec\xdb\x8f\xbc\xc1\x03\xc7\xa0\xc0\x54\x8a\xb8\x19\x79\xd3\x09\xa9\xc3\xbf\x9e\xa5\x32\x2f\x47\xec\x4e\x02\xa4\x45\x1d\x97\xf8\xe7\x88\x12\x4c\x2f\x99\xd2\x88\xde\x49\x80\xb4\xc8\xf4\x23\x4a\x30\x3d\x54\x54\x62\xfc\x51\x03\x2c\x46\x0c\xe0\x91\xec\x38\x84\x8a\xd9\x19\x54\xcc\x8f\xa0\x22\xee\x09\x54\x84\xcf\x6f\xc3\xf8\xcc\x67\x3d\xe3\x24\x40\x5a\xcc\x21\x9b\xef\xef\x17\xd1\xe2\x0b\x82\x93\x00\x69\x31\x9b\x45\xb4\x2d\x03\x37\x3d\x05\xe3\x7b\x57\x39\xff\xf6\x68\x35\xc0\xe2\xbf\x72\xa9\xc4\xe3\xc7\x59\xc8\x66\x65\x6e\x71\xd6\xc2\xd4\xf2\xf4\x4c\x26\xcf\xf9\xcf\x58\xe5\xdd\x58\x6a\xa3\xf8\xc6\x32\x08\x58\x17\xff\xdc\x1c\xa9\x83\x9b\xe1\x5c\x8b\x1b\xea\x05\x27\x01\xd2\x22\x76\xc2\x88\x11\x4c\x5e\x52\x55\x21\x72\x27\x01\xd2\x22\x92\x9b\xfa\x85\xa0\xb2\xf4\xf1\x13\x42\x3e\x92\x47\xf2\x37\x00\x00\xff\xff\x9a\x67\x24\x58\x3a\x12\x00\x00")
+
+func initVscodeSettingsJsonBytes() ([]byte, error) {
+ return bindataRead(
+ _initVscodeSettingsJson,
+ "init/.vscode/settings.json",
+ )
+}
+
+func initVscodeSettingsJson() (*asset, error) {
+ bytes, err := initVscodeSettingsJsonBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "init/.vscode/settings.json", size: 4666, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _initVscodeTypesRuntimeConsoleDTs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x34\x8f\x3f\x4b\x03\x41\x10\xc5\xfb\xfd\x14\xaf\x4c\xae\xd8\xe9\x2f\x8d\x62\x1a\x0b\x45\x6c\x2c\x42\x90\x71\x77\x72\x1e\x6c\x76\x96\xd9\xe1\xf0\x0f\x7e\x77\x39\x13\x9b\x61\xe0\x07\xbf\xf7\x9e\x7c\x34\x35\xc7\x5c\x5d\xec\xc4\x49\x70\xa7\xb5\x6b\x11\x7c\x07\x80\x86\x21\x00\x18\x70\x78\xd8\x3f\xe2\x59\x4e\x62\x52\x93\x1c\x37\xef\xee\xad\x8f\x44\x59\x16\x29\xda\xc4\xe2\x59\xbf\xe6\x52\x38\xaa\x4d\x94\x35\x75\x7a\x91\x37\xba\x7d\xba\xa7\x74\xf1\x51\xd1\xe9\xb5\x3b\xfb\x9c\xb6\x17\xe7\x4d\x63\xe3\x33\x32\x3b\x63\xbf\x1e\x57\x14\x9d\xfe\x20\x05\xac\xff\x26\xc6\xb8\xf2\x11\x5c\x3f\x0f\xc7\xed\x88\x45\xe7\xbc\x0b\x3f\x21\x5c\x7b\x67\x49\x85\x4d\xb0\xb0\xe1\x9a\x34\xfe\x4f\xd8\x85\xdf\x00\x00\x00\xff\xff\x0f\x36\x97\xb0\xdd\x00\x00\x00")
+
+func initVscodeTypesRuntimeConsoleDTsBytes() ([]byte, error) {
+ return bindataRead(
+ _initVscodeTypesRuntimeConsoleDTs,
+ "init/.vscode/types/runtime/console.d.ts",
+ )
+}
+
+func initVscodeTypesRuntimeConsoleDTs() (*asset, error) {
+ bytes, err := initVscodeTypesRuntimeConsoleDTsBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "init/.vscode/types/runtime/console.d.ts", size: 221, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _initVscodeTypesRuntimeExceptionDTs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x92\xcd\xaa\xdb\x30\x10\x85\xf7\x7e\x8a\xb3\xbc\xd7\xa4\xf6\x3e\xdd\xa4\x84\x52\x28\x74\x53\xba\x2b\x5d\x4c\xa4\x89\x22\xb0\x25\x33\x23\x27\x29\xa5\xef\x5e\x2c\xd9\x49\x9d\x94\xc2\xdd\xcd\x88\x73\xe6\xe7\x1b\xb5\x75\x5d\xa1\xc6\x57\x1e\x84\x95\x43\x52\x10\x3e\xd3\x99\xd4\x88\x1f\x12\x3e\x5e\x0d\x0f\xc9\xc7\xd0\x54\xa8\xdb\x8a\xaf\x43\x94\x04\xcb\xa6\x23\x61\x98\x8e\x54\xef\x1a\xfc\xaa\x80\xb6\xae\xff\x7a\x31\xd1\xf2\x64\x44\x8e\xb6\x08\x63\x7f\x60\x79\x5f\x3d\x09\x7b\x56\x25\x37\x6b\xe7\x64\x0b\x4d\xe2\x83\x5b\xe4\x15\x80\x1a\xfb\x18\x34\xc9\x68\xf2\xa8\x81\x2f\xab\x19\x81\x59\xb5\x1b\x48\xa8\xbf\x95\x7d\x87\x6f\x27\xbe\x65\x96\xa7\xf5\x0e\x3e\x38\xa4\x13\x83\xd7\x05\x16\x6f\x9e\xbd\x18\x73\x48\xaa\xd1\x78\x4a\x6c\x71\xf1\xe9\xf4\x4f\xeb\x07\x6b\xfd\x94\x52\x07\x12\x37\xf6\x85\xa8\x30\x74\x1c\x26\x74\x6c\x91\x22\xa8\xf3\x2e\xdc\x8b\x7c\x8a\x1d\x05\x87\xe3\x18\x4c\x66\xa1\xde\x05\x4a\xa3\x70\x29\x5a\xe8\xcd\x4b\x47\x79\x79\xa0\xb3\x59\xa1\xdd\xa0\x69\x1a\x12\xa7\x5b\x50\xf8\xf9\xfd\xc7\x6b\x81\xd7\xce\xfc\xda\x16\xf9\xda\x49\x3c\x9f\x59\x73\xfb\xbc\x5c\x3c\x3e\xef\x53\xc4\x3b\xe1\x34\x4a\xd0\x0c\x82\x57\x97\xbd\x89\xda\x12\xec\xa3\xe5\x97\xd7\xf5\x95\xff\xd7\x79\xb9\xc7\x9b\x9b\xcf\xc6\xc7\xfe\x5f\xca\xf3\x34\xc2\xf2\x73\x7e\x57\x7f\x02\x00\x00\xff\xff\xd3\x74\xe6\x6a\xe2\x02\x00\x00")
+
+func initVscodeTypesRuntimeExceptionDTsBytes() ([]byte, error) {
+ return bindataRead(
+ _initVscodeTypesRuntimeExceptionDTs,
+ "init/.vscode/types/runtime/exception.d.ts",
+ )
+}
+
+func initVscodeTypesRuntimeExceptionDTs() (*asset, error) {
+ bytes, err := initVscodeTypesRuntimeExceptionDTsBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "init/.vscode/types/runtime/exception.d.ts", size: 738, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _initVscodeTypesRuntimeFsDTs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x59\x4d\x6f\xe3\x46\x0f\xbe\xfb\x57\x10\x39\x25\x41\x36\xbe\xbc\x78\x51\x64\x8b\xa6\xd9\x64\x53\x04\x68\xf6\x90\x64\xb1\x40\x8b\x1e\xc6\x12\x65\x13\x91\x66\x06\x33\x63\x27\xce\x62\xff\x7b\xc1\x19\xc9\xa3\x2f\x7f\xbb\xdb\x16\xbd\x04\x8e\x44\x91\x0f\x1f\x92\x23\x92\x1a\x9e\x9e\x0e\xe0\x14\x1e\x50\x1b\xb4\x28\x9d\x05\x37\x41\x90\xa2\x40\x50\x19\x08\xb8\xa5\x1c\x1f\xe7\xd6\x61\x71\xce\x72\x77\x0e\x12\x21\x61\x84\x70\x24\xb4\x3e\x3a\x83\xa3\x54\x38\x71\x04\xca\x80\x90\x73\x48\xa6\xd6\xa9\x02\xac\x33\x24\xc7\xfc\xc0\x70\x30\xa0\x42\x2b\xe3\xc0\xcd\x35\xc2\xd7\x9a\xbe\x4f\x6c\xe3\x1b\x64\x46\x15\x70\x74\x3e\xd4\x46\x25\x68\xed\xd1\xfb\xc1\xa0\xc4\x74\xfb\x08\x49\x2e\xac\x05\xb2\x20\xe0\xc5\x08\xad\xd1\x80\x30\x6a\x2a\x53\x8f\x32\xea\x02\x92\x0e\x4d\x26\x12\x3c\xe3\x27\xb5\x51\x33\x4a\x49\x8e\x61\x26\x0c\xa9\xa9\x85\x8c\x72\x04\x1b\x64\x95\x46\x23\x1c\x29\x69\x03\x42\x7c\xf5\x00\x53\x4c\x72\x61\xb0\xb4\x79\xfb\x08\x5f\x07\x00\x1e\x0a\xc0\x29\x5c\x1b\x14\x0e\x41\x80\xc4\x17\x20\x69\x9d\x90\x89\xa7\xe8\xf6\x31\x08\xfc\xac\x85\x11\x05\x18\xa5\x1c\x3c\xf0\x1f\x2d\xdc\x04\x32\x65\x3c\x54\xa1\x75\x4e\x89\xb7\x7a\x0e\x76\xa2\xa6\x79\xba\x20\x91\xc9\x0b\x34\x9e\x87\x0b\x17\xfe\x11\xb3\x50\xa2\xb2\xb6\x8e\x8a\xf7\x25\x92\x7c\xef\xdc\xc3\x1a\x0e\x00\x12\x25\xad\x33\xd3\xc4\x29\x73\xcc\xa2\x17\xad\x20\x9c\xbc\x1f\xb0\xa7\x43\xb8\x9e\x60\xf2\xec\xa9\x6a\x78\xce\x57\x2d\x10\x67\x83\xa7\x51\x19\x48\xc9\x20\xeb\x9b\x03\xbe\x92\x75\xf6\xbc\xc1\x81\x87\xf2\x0e\x9e\x26\x18\x7e\x3a\xe5\x51\x75\x1e\x8e\x10\x3f\x7a\x2d\xc7\x2c\x7d\x51\x66\xcf\xc9\x05\x8c\x94\xca\x51\xc8\x00\xaf\x0b\x87\x75\x8e\x69\x86\x32\x58\xf1\x59\xd2\xd2\xbd\x02\x51\xc2\x7a\x22\x82\x3b\x7b\x43\xe6\x00\x00\xd8\xc9\xed\x6d\x73\x40\x0e\x60\xdc\xce\x8b\x91\xca\x29\x81\x9c\xe4\xf3\xf6\x28\x7e\x25\xf9\xbc\x12\xc5\x10\x3e\x08\x4b\x49\x19\xc9\xaa\x8c\xea\xf8\x1e\x50\xa4\xe1\x08\x49\x94\x74\x28\x5d\x38\x45\xfc\x03\x42\xa6\x60\xd0\x4d\x8d\xb4\x40\x0e\x84\x47\x5c\x9d\x14\x9b\xa5\x4f\x44\xcb\x86\xfa\x58\x0b\x3f\x9a\xa4\x6d\x0b\xea\x33\x49\xf7\xc3\x95\x31\x62\x7d\x16\x2d\x07\xf6\x61\x9a\x65\xd8\xc9\xa8\xa8\x7a\x3f\x88\x23\x61\xf1\xff\xff\x03\x94\x89\x4a\x31\xdd\x9f\xc6\x0f\x5e\xdf\xe6\x64\xf6\x40\x13\xfe\xd6\x75\xae\x2c\x1a\x7f\xee\x59\x67\x50\x14\xbb\xe3\x0a\xaa\xda\x98\xf8\x8e\x18\xe5\xf8\xe8\xb5\xff\x18\x09\xfd\xa9\x89\xf3\x8b\x21\x87\x81\xd2\xf0\x3a\xc0\xd4\x9f\x8b\x6c\x6f\xc3\x32\x6d\xc2\xaa\x04\xbd\x92\x20\x58\xe9\x7b\x61\x5b\x2d\x75\x68\x8a\x4a\x1d\x9a\x82\xac\x25\x25\xa1\x50\x29\xc2\xb1\xd2\x5c\x36\x22\x3f\x89\xfe\x7a\xb4\x9d\x7c\x3e\xf3\x16\xe2\x7f\xac\xe9\xf2\x02\xe4\xb4\x18\xa1\x39\xa9\x7e\xac\xf7\x3b\x92\xf4\x6f\xa0\xa0\xa7\x72\x2a\x22\xa2\x23\xbb\x93\xd1\x2a\x9d\x43\x13\xb2\x44\xfd\x21\xf9\xe9\xd6\xea\x2e\x89\x72\xa5\x35\xca\xf4\x3b\x55\x88\xf0\xc6\xf6\xf2\x3f\xe0\x3d\x48\x8d\xf4\xba\xfe\x1d\x8a\xe4\xa0\x2c\x1c\xb0\x4c\x7a\xf9\xf8\x7b\xea\xe4\xb0\x14\x1d\xa6\x52\xee\xa4\x45\xe3\x6c\xc0\x48\x72\x41\x02\x08\xe7\xfd\xb4\x1a\x13\xca\x08\x53\x50\x59\x66\xd1\xed\x48\x4e\x78\xb8\x12\x55\x96\xd8\x33\x16\x27\x6f\xbf\xd5\xd9\xaf\x48\xb3\x20\xbf\x17\x87\xc1\xe5\x9e\x62\x0b\x20\x2b\x9e\xf6\x61\xb3\x5d\x6f\xff\x35\x62\xcb\xfa\xe5\x3b\xd0\xe0\xd8\x5f\x69\xf1\xec\xaf\x75\x8a\x3b\x3c\x5b\xe7\x7c\x00\xb0\x86\xf6\xbe\xba\xfb\x07\x53\xbf\xe4\x98\x38\x6c\x24\xc2\x31\xb1\x75\x24\xea\x52\x1b\x46\xe1\x01\x0b\x35\x2b\x3b\x92\x48\xf1\x92\xc9\x78\xf7\x79\x3a\x98\x69\xb7\xce\x33\x45\x69\x3f\x1c\x11\x14\x73\x3b\xef\xd7\x38\x13\xca\x53\x83\x92\xc7\x0d\x9e\x47\x04\xc9\xf5\x23\xbe\xf1\xba\xda\x18\xae\xf2\x7c\x39\x8c\x21\xdc\xa8\x17\x99\x2b\x91\xd6\x41\x55\xd7\x7a\xa7\x0c\x72\x16\xee\xef\xee\x3f\x86\x7d\x12\xdf\xa9\x06\x26\xd1\x1c\x41\x96\xe2\xf5\x2a\xf9\xff\x08\xb5\xb2\xd8\x46\xfa\xd5\x5b\x59\xcc\x41\x95\xa9\x55\x43\x08\x7c\x5b\xb8\x56\x85\xa5\x6f\x7a\x8a\x0b\x94\xc6\x08\x25\x41\xf8\x03\x51\x65\xde\x51\x94\xce\x10\x2e\xa7\x3e\x6a\x89\xfe\x2c\x16\x51\x98\x4c\x8d\xa5\x19\xc2\x3b\xf8\x32\x41\x37\x41\x13\xa2\x24\xd2\x78\x2f\x9f\xf7\x96\x06\xa3\x6c\xaf\x43\xce\xe2\x53\x97\x8b\xb5\xc0\x62\x46\xfc\xfd\x8f\xd6\x9e\xc2\xaf\xcb\x6c\xb9\x2f\x8b\x38\x5f\x88\x93\xa5\x91\xfc\x8b\xcc\x8b\x45\xbb\x3e\xd9\x12\xaf\x7f\xaf\xfa\xbf\x7f\x4e\x3b\x2e\xb6\xdf\x5f\xdd\x8a\x89\x8e\xd5\x42\x98\x2b\x39\x0e\xae\x71\xf5\x48\x4c\xd0\x5a\xe1\xa3\x62\x50\xae\xd8\x8e\xad\x8a\xdf\x2e\xde\xb4\x8b\x6d\x3b\x87\x38\x52\x0e\x0b\xad\x0c\x63\xef\xcf\x50\xce\xca\x1e\xac\x1b\xba\x24\x9c\x43\x23\x3b\x92\x7e\xdb\x5c\xdd\x5c\xea\xdc\x13\x16\xda\x7b\x77\x59\x73\x2f\x3c\x74\xb9\x64\x67\x31\xf4\x9b\x4e\x20\x99\xa9\xe6\x12\x4d\xc8\x71\x79\x08\x7b\x42\xcb\xb5\x29\xe3\xd8\xe6\x30\xee\x6e\x43\xbb\x3e\x7b\xfd\x41\x9c\xf9\xe5\x7f\xa3\x5f\xd7\x93\x42\xa5\xad\x88\xb1\xc4\xca\x80\x3d\x94\xa1\x70\xe5\xdb\xb1\xb6\xac\xdf\x04\xd0\x86\xf8\x19\x1e\xbf\x17\x3f\x89\x62\xc3\x1d\x5b\x44\xd5\x8a\xac\x87\xb6\x17\x90\x1b\x32\xbb\xe0\xc0\x57\x87\xd2\x97\x4d\x19\x60\x6f\x87\x31\x6d\xf3\x72\xf8\xf8\xea\x76\x31\x1e\x5f\x52\x35\xe3\xdb\xd8\xbd\xa7\x02\x9f\xe6\x7a\x6b\xc3\xf5\x8c\x3e\x4c\x2e\x7b\x34\x2a\xed\x20\xe9\x6f\x70\x22\x12\x4b\x6f\x5c\x7c\x30\x9a\xf3\x01\xb3\xc8\xd0\x6d\x48\x78\xa4\xb7\xad\xcd\x16\x2a\xa5\xac\xfc\x50\x02\x8e\x8a\xbf\x86\x8d\x27\xea\xe6\x44\x1d\x59\x79\xf6\xf4\x6e\xc9\xef\xcb\xa6\x6b\x0d\x20\x6b\x92\x12\x8f\x55\x53\x93\x60\x4f\x11\xa5\x68\xab\xee\x9a\x7f\x92\x0c\x5e\xb7\xd1\xce\xf0\xd8\x9a\xa4\x36\x03\xa3\x75\x2b\x1b\xc3\x6b\xa5\xe9\x7b\x42\xbc\x56\x7a\xbe\x25\xc4\x06\x89\xbe\x73\x2d\xb7\x18\xfc\x8e\xaa\x9a\xc2\xb2\x55\xae\x19\x5e\x83\xbf\x95\x83\x6b\x9c\xe8\x2b\x5b\x6e\x7a\x3d\x92\x7d\xfd\xa1\x72\x62\xab\xfb\xe3\x27\xb5\x96\x47\x9b\x8d\x6c\x87\xf5\xb4\x77\xbe\x2b\x67\xba\xba\xf5\x8a\x91\x30\x6c\x2d\x67\xa4\xbd\x58\x68\x8f\x09\x8b\x3a\x5c\xf2\xd5\xc9\xaa\xdc\xb3\x27\x41\x8c\xac\xca\xa7\xae\x0f\x6c\xad\xc0\x0d\xe6\xc2\x71\x73\xdc\x0c\xde\xd5\xa8\xf3\x11\xb2\xd9\x4f\x5c\xab\x42\x1b\xf4\xbd\x58\xb3\x5c\xc2\x65\xb4\xb5\x23\xa3\x8c\x99\xad\xc6\xeb\x37\xd2\x7d\x2b\x31\x32\x9d\x86\x88\x1b\xdc\x52\x63\x53\xd8\x09\x33\x8e\xe3\x74\xed\x8b\x6f\x79\xa3\x69\x82\x3d\xfa\x8d\xf4\x71\x4a\x26\xf2\x1c\x24\x57\x66\xe2\x0d\x26\xd1\x9f\x88\xbb\xf2\xa3\xb4\xb5\xe4\x44\x78\x23\xed\x0f\xbe\x80\x71\xf1\x6c\x37\x1a\x0d\x5f\xfa\x75\xb2\x03\x9f\xe5\x1b\xe9\xe3\x52\xeb\x0a\x37\x9a\x73\xc8\x10\x7e\xc9\xd5\xa8\xef\x0d\x51\x9f\xb1\x18\x94\x85\x42\xb8\x64\x42\x72\x1c\xba\x14\xee\x27\x57\xb5\xad\xe3\x5c\x8d\x9a\x72\x8c\x92\xad\x1d\x97\x57\x7b\x41\x7d\x1b\xfc\x19\x00\x00\xff\xff\x36\x50\x35\xa4\x6a\x21\x00\x00")
+
+func initVscodeTypesRuntimeFsDTsBytes() ([]byte, error) {
+ return bindataRead(
+ _initVscodeTypesRuntimeFsDTs,
+ "init/.vscode/types/runtime/fs.d.ts",
+ )
+}
+
+func initVscodeTypesRuntimeFsDTs() (*asset, error) {
+ bytes, err := initVscodeTypesRuntimeFsDTsBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "init/.vscode/types/runtime/fs.d.ts", size: 8554, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _initVscodeTypesRuntimeGlobalDTs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x93\x5f\x6b\x1b\x4b\x0c\xc5\x9f\xb3\x9f\x42\xf8\x29\x37\x24\x36\x17\x2e\xf7\xc1\xe9\xbf\x40\xf2\x50\x68\x9b\x92\x94\x42\x29\xa5\xc8\x3b\xb2\x3d\x30\x3b\xda\x6a\xb4\x6e\xd2\x36\xdf\xbd\x68\x76\xed\xb5\x93\x75\x1a\xfa\x64\x23\xe9\xfc\x46\xe7\xcc\xce\x64\x02\xa8\x3c\x3b\x38\xa7\x92\x1d\x25\x40\x98\x61\xa2\xff\xff\x3b\xa1\x68\x05\x07\x49\xc5\xc7\x05\x28\x83\xd7\x04\x2c\x7e\xe1\x23\x06\x98\xb3\x54\xe3\x62\x32\x81\x99\x32\x1e\x5c\xc4\xb5\xba\x1f\x6f\x39\x79\x10\x75\x5c\x14\x93\xa3\xa3\x02\x8e\xe0\x09\xa3\x90\x07\x5f\xd5\x28\x58\xad\xa7\x3e\x2c\x69\x4b\xd0\x2e\x37\xce\x63\x42\xda\x48\x4c\x79\x62\x70\x77\x1b\x9b\x14\x74\x53\xb3\x28\x38\x2a\x03\x0a\xc1\xbc\x89\xa5\x7a\x8e\xd9\xfd\x61\x27\xb8\xce\xf3\xd3\x4e\xf7\xcf\xfa\xcf\xe9\x66\xf9\xbf\x4b\x69\xc7\x4f\x2b\xbc\xee\x5d\xed\x25\x39\x1a\x36\xb9\xa1\x3f\xc5\x9e\x5d\xcf\x61\xfa\x93\x2f\xc3\x52\x5c\xf8\x48\x10\x18\x1d\x70\x6d\xe2\xb4\x83\xd6\xdb\x9a\xe0\x0d\xa3\xbb\xcc\x4d\x78\x0e\x3f\x0b\x80\x0c\x80\x0e\x81\xed\x99\xca\x50\x93\x74\xde\xc1\x10\xd0\xb5\xa6\x30\x4a\x8a\xa2\x23\xf8\x05\x23\x69\x62\xfe\xad\xfc\x42\x50\x69\x74\x5a\xdc\xe7\x55\xec\xc8\x68\xd2\x44\xd0\x9e\xef\x63\xcf\xf5\x8b\xc8\x42\xee\x6c\xae\x24\xb6\xdc\x14\x66\xcc\x81\x30\xee\xd2\x5e\x27\x10\x32\x6b\x39\xdb\xec\x76\xe5\x85\x63\x45\x51\x41\xe8\x5b\xe3\x85\xdc\xcb\x0d\xb5\x9d\xdd\x62\xdd\xed\x66\xd5\xae\x6c\xbb\xec\x4d\xea\x6d\xeb\x6a\x38\xac\x4f\x67\x97\x5f\x2f\xde\x7d\xdc\xd9\x62\x85\xe2\x71\x16\xa8\xf7\x66\xf6\xa7\x30\xaa\x85\x5d\x93\x9d\xe7\xb8\x1c\xad\x28\x70\x6d\x9a\xd1\x03\x93\x66\x6d\xce\x52\x12\xcc\x03\x2e\x20\x91\xf6\xa6\x72\x7d\x7f\x3e\x26\x15\x4a\xa4\x03\xd2\x5c\x1f\x8e\xe3\x8a\x6a\xeb\x46\xb5\x57\xe1\x50\xd1\x08\xdf\xbd\x2e\xa1\x46\xfb\x4c\xbb\x1b\x6b\xdf\xb6\xe7\x38\x6e\x33\xf4\xa9\x8d\xc9\x27\x28\xb9\xaa\x38\x86\x5b\x68\x12\x39\xdb\x72\xad\x24\x97\x81\x20\xa4\xe2\x69\x85\xe1\xd8\xb4\xa9\x29\x97\x80\x09\x12\xa1\x94\x4b\x5b\xad\x09\xf9\xcd\x41\xf0\x49\x53\x7b\x76\xd5\x04\xf5\x75\x20\x43\xd1\xc0\xed\xbc\xc7\x05\xb9\x73\x83\x0f\x7c\xc6\xf9\x50\xaf\x54\xa5\xfe\x2e\xac\x36\x85\x2b\x2a\x59\xdc\xb3\xf6\xf9\x1c\x03\xc6\xdb\x17\x9f\xbf\x3c\xfc\x6e\x23\xdd\x68\x3e\x19\x62\x53\xcd\x48\xc6\x70\xf2\x2f\x44\xee\xeb\x3d\xd7\x4a\xd3\x6e\xec\x21\xa8\x6c\x44\xec\xdb\xd8\x66\x6d\xa4\x56\xdc\x2f\x55\x56\x0c\x5d\x17\x78\xbe\x09\x62\x4b\x5c\xc6\x47\x8e\xee\x95\x39\x09\x7b\xd1\xf7\x56\xcf\x44\xff\xe3\x91\x1d\x6a\xa1\x95\xe7\x26\x0d\x65\xb1\xd3\xdb\x82\x0a\xad\x9e\x6e\xea\xde\x25\xe5\x76\xaf\xbe\x3b\x2d\x7e\x07\x00\x00\xff\xff\x47\x23\x75\x04\xdf\x06\x00\x00")
+
+func initVscodeTypesRuntimeGlobalDTsBytes() ([]byte, error) {
+ return bindataRead(
+ _initVscodeTypesRuntimeGlobalDTs,
+ "init/.vscode/types/runtime/global.d.ts",
+ )
+}
+
+func initVscodeTypesRuntimeGlobalDTs() (*asset, error) {
+ bytes, err := initVscodeTypesRuntimeGlobalDTsBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "init/.vscode/types/runtime/global.d.ts", size: 1759, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _initVscodeTypesRuntimeHttpDTs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x98\x4b\x53\xe3\xb8\x13\xc0\xef\xfe\x14\x5d\x73\x02\x8a\x24\x77\x67\x18\xfe\xf3\x87\x0c\x4c\x15\x53\x93\x0a\xc9\x89\xe2\xa0\xd8\x6d\xac\xc5\x96\x8c\x24\x67\xf0\xb2\x7c\xf7\xad\x96\xe5\x57\xec\xb0\x43\xd5\x14\x9b\xa5\xe6\xe6\x74\xab\x1f\xea\xfe\xe9\x11\xf1\x34\x93\xca\xc0\x13\x5c\x1a\x93\x7d\xe1\x09\x1e\xdb\xaf\x05\xea\x4c\x0a\x8d\xf0\x0c\x91\x92\x29\x7c\x18\x4f\x32\x25\x03\xd4\xfa\xc3\xd4\xf3\x26\x47\x47\x1e\x1c\xc1\x57\x61\x50\x45\x2c\x40\x88\xa4\x02\x13\x23\x5c\x2e\x97\x73\x90\x19\x2a\x66\xb8\x14\x7a\x4c\xa3\xe6\x4a\x6e\x78\x88\x1a\x52\x34\xb1\x0c\x35\x18\x09\x29\xbb\x77\x83\x15\x3e\xe4\xa8\x8d\x86\x5c\x73\x71\x07\x1b\xa6\xb8\xcc\x9b\xb1\x09\xbf\x47\xb8\x98\x2d\x8f\x61\xfe\xfd\x7a\x79\x0c\x68\x02\x72\x3a\xf1\xf0\xd1\xe6\xcd\xeb\x14\xac\xb7\x27\x0f\xc0\x26\x07\x70\x04\xd7\x28\x42\x0d\x8c\xcc\xab\x30\xe3\x52\xf3\xbf\x8c\x29\x96\x42\xae\x12\x18\xc1\x32\x46\x58\x2d\xae\x28\x2d\x8d\x22\xb4\xf3\x70\xc3\xc1\xc8\xae\xc5\x43\x8e\xaa\x80\x11\x7c\xcf\x68\x7e\x2c\x71\x02\xab\x44\x83\x4a\x77\x87\xc7\xc8\x42\x54\xba\x6d\x50\x89\xaa\x8a\x6d\x25\xa6\xd0\xe4\x4a\xe8\x6e\x0f\xca\x1c\x5d\xb9\x9c\xcc\x76\x85\x1c\xf4\x66\x37\xf1\x00\x2e\xd0\x1c\xd0\x0f\x9a\xa2\x0f\xda\x28\x2e\xee\x8e\xad\xc0\x26\x7c\xea\xdb\x6f\x80\xbf\x60\x81\x81\x54\xe1\x47\x37\xc4\x0d\xfd\x54\xab\x6f\xba\x8a\xdb\x9b\xdb\x5a\xf5\x59\x29\x56\x7c\x1c\xb6\x6f\x1c\xb4\x63\xbb\xb9\x9f\xfa\x3b\xa2\xee\x4c\xc7\x46\x3d\xf4\x3b\x55\x99\x7a\x43\xbd\x26\x4a\x7e\x55\xb3\x33\x56\x24\x92\x85\xed\xee\x55\xa2\xaa\x7b\xbb\xc3\x45\x3c\xc1\x4e\xe3\x4b\x01\x19\xa6\x79\x62\x78\xc6\x94\x99\x44\x52\xa5\xa3\x90\x19\x56\x2f\x83\xbd\xc7\xad\x3f\x63\xe2\x6d\x2e\xf5\x2e\xe0\x5c\xc9\x4e\x7d\x60\xa2\x28\x45\xb6\x14\x3b\x29\x78\xd7\x9c\x32\x98\xaf\xde\x14\xd0\x5d\xd1\xf6\x11\xad\xed\x5c\x2d\x59\xf9\x2b\xc0\x7a\xa7\xd0\xd4\x9b\xdb\xe7\xe5\xd9\xe5\x5b\xc2\xb3\x3b\xde\x3e\xe2\xd3\xcf\xd6\x02\xc4\x4c\x10\xff\x46\xc8\x21\x74\x3e\xbb\x9a\x2d\x67\x6f\xc8\xd0\x4b\x01\xf7\x10\xa2\xa1\x74\x89\xa2\x73\x4c\xd0\xe0\x6f\x8c\x4a\x8c\x44\xe7\xee\x0e\x3f\xb8\x89\x81\x81\xce\x30\xe0\x11\xc7\xd0\xdd\xde\xbb\xdd\x2b\x65\xed\xea\x3b\x89\x91\x90\x6b\x84\x83\xd6\x2d\x7f\xbe\x72\x57\xfd\xc3\x37\x20\xf4\xdf\x41\xf3\xe7\x6f\x89\xbd\xbb\xe1\xeb\xa9\xee\xe1\x4c\x7d\x2c\x61\x2e\x9b\xd0\xe5\xf9\x1d\x03\xde\xbd\x80\x56\xff\x79\x7f\x02\x7c\xa3\x90\xa5\xba\xf9\x93\x5b\x15\x79\x1f\x20\x0f\x58\x92\xac\x59\x70\x0f\x23\x38\xab\x3e\xa3\x5c\x04\xc4\x14\x39\x88\x99\x08\x13\xa4\x22\x20\x4b\x81\xfe\x6f\xfc\x47\x16\x49\x45\xfa\x46\xf2\xb0\x61\xd7\x4e\xe3\x15\xf4\x56\xe5\xf1\xe1\x80\xe6\x5e\x29\x0f\xe1\xe4\x13\x88\x3c\x5d\xa3\x7a\x6f\x94\x97\x34\x53\xd5\xa6\xde\xb3\xd7\x7f\x2b\x59\x65\x34\x51\x22\xbf\xfb\x62\x72\x26\x85\x41\x61\x46\x2b\x1e\xfa\x96\xc0\x5c\xf0\x87\x1c\x81\x87\x28\x0c\x6d\xed\x0a\x64\x64\x1b\x45\x2b\x08\x0e\xa8\x6d\x41\x9c\x8b\x7b\xc8\xad\xc7\xc3\xba\x49\x39\xa7\x3a\x96\x09\x75\x57\x52\x15\x63\xc1\xc4\x1d\xfa\xb0\x2e\x0c\x6a\xd0\x86\x29\x33\x42\x11\x4e\x8c\x34\x2c\x79\xc9\xb3\x22\xbb\x7f\xf0\x7d\x5d\x88\xc0\x07\x5d\x88\xc0\x99\x83\x54\x20\xa4\x19\xc3\x39\x46\x2c\x4f\x0c\x70\x0d\x11\x4b\xf4\x8b\x73\x20\xfb\x53\x1f\xd6\x52\x26\xc8\x44\x37\x12\x15\x47\xb0\x14\xdb\xf5\xa8\x0d\x49\x31\x9c\x20\x99\x19\x4c\x33\xa9\x98\x2a\xca\x22\x66\xcc\xc4\xb5\x25\xe9\xa8\x2d\xbb\xad\x35\xff\x73\x38\x28\x29\x7c\xc7\x73\xdf\xec\xdb\xd7\x6f\x33\x30\x45\x36\x6c\x5b\xa2\xe6\xc3\x13\xdc\xdc\x63\x51\x05\xbf\xad\x3e\x6e\x6e\xe1\x79\x0a\x93\x09\xcc\x1e\x72\xbe\x61\x09\x0a\xda\x83\xc0\xe0\xa3\xc9\x94\x34\x72\x4c\xde\x2f\xad\x0f\xe0\x02\x2e\x64\x27\xfc\x4c\x29\x3a\xce\x50\x6b\x76\xd7\x84\x44\x92\xb6\xda\xb8\x1b\xd3\xb9\x92\x77\x0a\xb5\xee\xa2\xba\xb4\x9c\x94\xf4\xd0\xe6\x6a\x87\x36\x75\x24\xed\x70\x35\xfe\x6f\x4d\xca\xf1\xd8\x58\x54\x82\x61\xa3\x32\x13\xa2\x26\x90\x69\x46\x57\xc1\xc6\xb2\x96\xb4\x50\x79\xae\xdf\x48\x9d\xa5\x5d\x6b\xd5\xd1\xd2\x7e\xc0\xb4\x3d\x69\xd6\x63\x7d\x9e\x9f\x78\xcd\x7e\x60\x3f\x9f\xdc\x26\xe1\x72\x02\x9b\xd7\x97\x8a\x20\x02\x7c\xb5\xb8\xaa\x35\x13\xf7\x45\xba\xba\xc8\xd4\xc2\xda\xc2\x1b\xf2\xe7\xb2\xcd\x5c\xc9\xfb\xee\x9c\xe2\xd4\xdf\x6a\xce\x74\xd0\xdd\x2f\xd9\x4f\x3a\x09\xf4\xf6\x95\x5e\x4c\x16\x86\xdc\x9d\x2e\x5c\x44\x52\xa5\xf6\x29\xfa\x18\x02\x26\x60\x8d\x74\x0a\xdb\xd3\x38\x53\xb8\xe1\xf8\x63\xb5\xb8\xaa\x1e\x95\xb7\x22\x6d\xad\x04\x26\x8a\xa9\xd5\x3c\x4f\xab\xd6\xd2\x6d\x01\x66\x8f\x01\xda\xd3\xac\xd7\x54\x52\xd7\x5a\x38\xd9\xc2\x37\xc6\x72\x09\x40\x20\x43\x1c\xb7\x60\x0a\x5f\x58\xc5\xd8\x5e\x4a\x8d\x91\x13\xb4\x16\x53\xf3\x46\x7f\x8e\x41\xc2\xca\xe7\xf8\xaa\xd6\xe5\x23\xfd\xfa\x0f\x0c\x4c\xe7\x2d\x3d\xb4\x43\x11\x36\x4c\x41\x6c\x4c\xe6\xdb\x91\x53\xef\xef\x00\x00\x00\xff\xff\xdd\x25\xa2\x90\x23\x18\x00\x00")
+
+func initVscodeTypesRuntimeHttpDTsBytes() ([]byte, error) {
+ return bindataRead(
+ _initVscodeTypesRuntimeHttpDTs,
+ "init/.vscode/types/runtime/http.d.ts",
+ )
+}
+
+func initVscodeTypesRuntimeHttpDTs() (*asset, error) {
+ bytes, err := initVscodeTypesRuntimeHttpDTsBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "init/.vscode/types/runtime/http.d.ts", size: 6179, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _initVscodeTypesRuntimeIoDTs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x91\xb1\x4e\xc3\x30\x14\x45\x77\x7f\xc5\x9d\x23\xd1\x7c\x00\x62\x62\x62\x01\xa9\x0b\xf3\xab\x7d\x53\x8c\xd2\x67\xeb\xf9\x55\x80\x10\xff\x8e\x92\xb4\x30\x20\xd4\x74\x3f\x3e\x47\xbe\xaf\xef\xba\x80\x0e\x8f\x72\x60\xab\x12\x89\xc4\x21\x6b\xd6\x3d\x1e\xfa\xa7\x1b\xe3\x28\xce\x04\xff\xa8\x6c\x10\x4d\xc8\xea\xb4\x41\x22\xdb\x26\xa0\xeb\x03\xdf\x6b\x31\x47\x62\x1c\xc5\x08\xfd\xf1\xe4\x82\xcf\x00\xcc\x7e\xa0\xc3\x96\xd5\xd8\xa8\xde\x20\xd8\x53\x69\x39\xe2\xcd\xb2\xd3\x7e\xa5\x9b\x99\xed\x03\x70\xf2\x4e\x61\x3c\x2f\xd4\x1d\xca\xee\x95\xd1\x6f\xc3\x45\xaf\x51\xd2\x65\xef\x76\xa1\x56\x78\x63\x39\xec\xb2\x32\x9d\xc5\xd3\x12\x71\x2c\x6d\x5d\xe3\x7e\x21\xaf\xe9\x9c\x86\x59\xdf\x99\x37\x5a\x1f\x32\xb6\x5a\xb4\xf1\x1c\x1a\x8a\xe1\x45\x34\x8d\xd3\xe5\xcb\xd1\xeb\xd1\xff\xfb\xcf\xf2\xf0\xcf\x4d\xbe\xc2\x77\x00\x00\x00\xff\xff\xe1\xd5\xf3\x31\x4b\x02\x00\x00")
+
+func initVscodeTypesRuntimeIoDTsBytes() ([]byte, error) {
+ return bindataRead(
+ _initVscodeTypesRuntimeIoDTs,
+ "init/.vscode/types/runtime/io.d.ts",
+ )
+}
+
+func initVscodeTypesRuntimeIoDTs() (*asset, error) {
+ bytes, err := initVscodeTypesRuntimeIoDTsBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "init/.vscode/types/runtime/io.d.ts", size: 587, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _initVscodeTypesRuntimeLogDTs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x95\x31\x8f\xd4\x30\x10\x85\x7b\xff\x8a\x57\xc2\xea\x2e\xdb\xef\x35\x20\x71\x48\x27\x6d\x41\x71\x12\x05\xa2\x98\x4b\xc6\x5e\x0b\xef\x38\x1a\x3b\x01\x84\xf8\xef\x68\x12\x12\xd8\x0a\x21\x45\xa9\x3c\x89\x9e\xc7\xdf\x73\xec\x17\xe7\x8e\x87\x83\xc3\x01\xe7\x1c\x70\xe6\x91\x13\x58\x86\x2b\x6a\x86\x72\xaf\x5c\x58\x2a\xba\xe8\x3d\xab\x55\xc9\x14\x05\xd9\x23\xe5\x10\xa2\x84\xc6\xe1\x70\x74\xfc\xad\xcf\x5a\xe7\x99\xe7\x1c\xe6\x3e\x3f\x1c\xf0\xac\xd4\xf2\x9d\x03\xde\xf1\xcb\x10\xac\x78\x12\x9f\x6d\xfc\x48\x2a\x36\x3e\xaa\x66\xb5\xe2\x3d\x55\x4a\x56\x7c\x20\x89\xad\xfb\xb9\x92\x3d\x49\x65\xf5\xd4\x32\x7c\x56\xd4\x0b\x2f\x6b\xc3\x0f\xd2\xd6\x98\xa5\x80\x46\x8a\x89\x5e\x12\x23\xca\x22\x41\x4f\xed\x17\x0a\x7c\x83\x18\xd7\x66\x66\xd8\x10\xa7\x55\x30\xef\x40\x01\xe1\xca\xa5\x50\x60\x50\x9d\x1a\x55\x73\x30\xfb\x6e\x66\xdd\x9b\x9e\x94\xae\xab\xee\x1e\xcf\x17\x5e\x9f\x6a\xb6\xa5\x6f\x95\x23\xa5\x81\x0b\xee\xf1\xb6\xeb\xa2\xf1\x52\x5a\xde\xfd\x2d\x3f\x2e\xfb\xf5\xea\x77\xb3\x13\x4a\xd5\x28\xe1\x0e\x4d\xd3\xcc\x13\x4e\x20\xf9\xfe\xe9\xf3\xeb\x13\xc6\x1c\xbb\x07\xf7\x6f\xfe\xce\x36\x7e\x37\xfe\xe9\x33\x6f\xca\x1f\xc5\xe7\xdd\xf0\xed\x70\x6e\x4a\xff\x95\x54\xec\xa4\xee\x65\xc0\x6e\xd5\xa6\x06\xd8\xae\xe7\x6e\xf8\x53\x18\x6c\xca\xef\x2d\x55\x76\xe3\x9f\x32\x6c\x53\xfe\xde\xc2\x70\x37\xfe\x29\x7a\xff\x83\xff\x4f\x48\x3f\xce\xf1\x4a\x28\x51\x42\xe2\x9a\x05\x51\x4a\x25\x69\xd9\xfe\x16\x66\xc5\x02\x77\x8d\xdf\x9b\x50\xee\xb8\x4d\xa4\x8c\x91\xd4\x78\x4e\x26\x7d\x70\xee\x57\x00\x00\x00\xff\xff\x5f\x8d\xd2\x38\x9c\x06\x00\x00")
+
+func initVscodeTypesRuntimeLogDTsBytes() ([]byte, error) {
+ return bindataRead(
+ _initVscodeTypesRuntimeLogDTs,
+ "init/.vscode/types/runtime/log.d.ts",
+ )
+}
+
+func initVscodeTypesRuntimeLogDTs() (*asset, error) {
+ bytes, err := initVscodeTypesRuntimeLogDTsBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "init/.vscode/types/runtime/log.d.ts", size: 1692, mode: os.FileMode(493), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _initVscodeTypesRuntimeNeoDTs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x56\x4d\x6f\xdb\x46\x10\xbd\xeb\x57\x0c\x74\x4a\x05\x55\xbe\xd3\x6d\x54\xc3\x6d\x00\x03\xad\x5b\x38\x01\x7a\x08\x72\x58\x71\x87\xd4\x22\xe4\x2c\x33\xbb\xb4\x2d\xa4\xfe\xef\xc5\x2c\xc9\xe5\x8a\xa2\xe4\xa4\x87\x9e\x6c\x71\xe7\xbd\xf9\xdc\x37\x6b\xea\xc6\xb2\x87\xaf\x60\x2c\xbc\x40\xc1\xb6\x86\x25\xb7\xe4\x4d\x8d\x57\xc6\x2e\xaf\x17\x57\xab\xd5\x02\x56\x70\xaf\x6a\x74\x8d\xca\x11\x72\x4b\x5e\x19\x32\x54\x82\x3f\x34\xe8\x40\x91\x06\x43\x1e\xb9\x50\x39\x3a\x28\x2c\x83\xdf\x23\xdc\xa3\x05\x77\x70\x1e\xeb\xcd\x02\x56\x57\x0b\x7c\x0e\x9e\x34\xe6\x95\x62\x04\x8a\x84\x84\x16\xbe\x2e\x00\x82\x27\x80\x15\x3c\x60\xc3\xe8\x90\xbc\x0b\x44\xe2\x10\x9f\x3d\xd8\x02\x14\x81\x6d\x90\x95\x37\x96\xc0\x32\x30\x7e\x69\xd1\xf9\x4d\xc0\x5d\x2d\x00\x7a\x27\x31\x1c\xb8\xed\xc1\xe2\x20\xb8\x80\xf7\xe8\x9c\xc0\xef\x7e\x5d\x83\x6d\x84\x49\x55\x9b\x0e\x0d\xe0\x8c\xde\x66\xe0\x3c\x1b\x2a\xaf\x23\xe4\x83\x44\xd1\x32\x23\x79\x68\x94\xdf\x4b\x28\x12\x59\x8c\x25\xe2\xe5\xf4\x14\xff\xde\xab\xfc\x33\x78\x96\x80\x2c\x27\x29\x38\x39\x18\x9d\xcb\xaf\x79\xef\x63\xb5\x9e\xf6\xc8\x78\xec\x1d\x8c\x03\x7c\xc6\xbc\xf5\xa8\x23\x59\x44\x9c\x12\xbe\xb3\x5c\x83\x56\x5e\x81\x72\xce\xe6\x46\x79\xd4\xf0\x64\xfc\x3e\x2d\x77\x24\x2a\x2c\xd7\x62\x9c\xc1\x03\xe6\x96\xf5\x4f\x1d\xdd\x1a\x14\x1d\xde\x8e\xa4\xb7\x96\x0a\x53\xb6\x43\x62\xe8\xbd\xa1\x72\x9c\x86\x29\x6b\x1e\xcc\x5f\xe1\x4c\xeb\x5e\x18\xac\x34\xec\x50\xe6\xae\x61\x9b\xa3\x73\x49\xb6\xe1\x34\x83\x77\xf2\x27\xa9\xbb\x29\x49\x55\x5d\xaa\x21\x10\x36\x65\x89\xe2\x49\xda\xb0\x57\xa4\x2b\xf9\x1f\x1f\x65\xd6\x92\x19\x10\x54\x26\xb1\x08\xd5\xcb\xe2\xcc\x6c\x2a\xa8\xd1\x39\x55\x22\xe0\x73\xbe\x57\x54\xf6\x55\x34\x14\x32\x8e\xb3\x7f\x6e\x34\xff\xe8\xd1\xe3\x68\xfe\xd9\x8f\x63\x68\xde\x30\x64\x83\x13\x87\xa4\x91\x25\x70\xa3\x91\xbc\x29\x0c\xf2\x51\xb7\x67\x06\x37\x12\xba\x38\xf4\xf3\xb4\xdf\x72\x01\xa4\x83\xe4\x27\xf8\xb4\xa1\x72\x3c\x8f\x65\x5b\x9d\xc9\x67\x0d\xb8\x29\x37\x6b\x58\xb6\x0e\x79\x29\xd9\x2d\x55\x89\xe4\x97\x91\x58\xb0\x29\xeb\xd9\x7e\x08\x39\xa3\x6b\x2c\x39\x14\xfb\x36\xf7\x2d\xe3\x7f\x93\x8d\x87\x81\x67\xa6\x39\x41\x4f\x26\xd5\x18\xfc\xc6\xa8\xc5\x68\xa6\x90\xbf\x31\x5b\x1e\x4a\xb0\x06\x23\xb1\x1d\xc0\xe6\x61\xca\xc7\x71\x46\x31\x9b\x81\xdf\x91\x36\xb9\xf2\xe8\x44\x06\xfc\x1e\xf9\x54\x08\x72\x5b\x37\x15\xa6\x4a\xa0\x2d\xc9\x6c\xec\xac\xad\x50\xd1\x6b\x64\xb1\x82\x52\x24\xc3\xe8\xba\xab\xca\xf5\xb1\xd0\xf5\x1f\xe7\x78\x63\xa1\x72\x5b\xd7\xb2\x1c\xbc\x1d\xe4\x29\x81\x87\xa3\x6d\x06\xb7\xbd\xd1\x3f\x40\x6d\x55\x8d\x2c\xbf\x1b\xd7\x49\x7e\x2e\x6c\x4e\x48\x76\x08\x0d\xb2\xe8\x51\x92\x5d\x7f\xbe\xcd\xe0\x26\xfc\xf7\xf1\xd3\xc8\x71\xa3\xb5\xe9\x63\x09\x1a\xc0\xe8\x5b\xa6\x54\xec\x4e\xfa\x26\x76\xdb\xb3\xb2\x74\x41\x0b\x92\x64\x77\x18\xe5\xf8\xbb\x04\x61\x28\xc5\xcc\xcc\xb5\x64\xbe\xb4\x98\xdc\xfc\x44\x58\x03\x28\x26\x30\x7b\x7f\xef\x13\x3d\x99\x02\x5e\x93\x8e\xfe\xb2\x24\x2a\x3a\x43\xd2\x1b\x6d\xbf\xe9\xa2\x2a\xea\xbb\x36\x6d\xea\x77\x55\xab\x6b\x77\x52\xac\x34\xc9\x8e\xff\xb5\x1c\x3f\x1c\x9a\x09\x62\x94\xa3\x46\x2b\x8f\x9d\x20\x91\xf5\xa6\x38\x8c\x8a\x24\xcf\x9e\x0b\x05\x6b\xd4\xa1\xb2\x4a\x1f\x17\x6c\x12\x50\x6f\xb3\x8d\x5b\x66\xc2\x31\xd3\x68\x12\xd9\x99\xe6\x35\x55\x99\x0b\x03\xda\x2d\x50\x43\x10\x82\xaa\x25\xb3\x10\x61\x54\xca\x0b\xb5\x0e\x7b\x35\x29\xb5\x68\xfa\xce\x90\x96\xed\xf9\x19\x0f\x31\xc6\xe0\x23\x46\x27\x16\xf3\xfb\xe0\x51\x55\x2d\xce\xbe\x3e\x8e\x19\x82\xdd\x99\x4d\x7c\x17\xa3\x13\xef\x32\x53\xb2\x37\xc0\xef\x95\x8f\x0f\x04\x37\x48\x6d\xf7\x4a\x1d\x6e\xbb\xbb\x90\xea\xdd\x4d\xa0\x89\xb9\x86\xbf\xb0\x82\xbf\x18\x1b\x25\x72\x98\xec\x30\x07\x3b\x2c\x2c\x23\x14\x2d\x07\x01\xed\xfd\x1a\x2a\x37\x03\xee\x97\x46\xb1\xaa\xe3\x23\xf6\xc7\xa3\x47\x4d\xf2\xb4\x3d\x7e\x4f\x4e\xd0\xd1\x5f\x07\xaf\x7a\x6d\x8c\x9f\xbd\x85\xa6\x8b\x6f\x44\x76\x62\xe7\x02\xa0\xb6\x5a\x86\x49\x9f\x20\x07\xf3\xae\xdc\x7d\x8e\x19\xbc\xe9\x03\xcb\x86\xf7\xf3\x3a\x22\xb2\xe1\xdd\xf2\xf1\xd3\x0f\xf0\xf3\xdb\xf1\xd7\xf5\x62\x5a\xb2\xbf\xd9\xc8\x76\x89\x55\x87\x9d\x72\xa8\xc1\x76\x17\xbc\x34\x8f\x48\xb1\x02\xd2\x9e\x69\x50\xff\x63\xed\x42\xdb\xa6\xc8\xb8\x0a\x3b\xa4\x21\xe3\x4d\x10\xc4\xe9\x1b\x63\x36\x60\x92\x80\xe3\x85\x56\xe3\x2a\x1a\x4e\xbd\x05\x43\x79\xd5\xea\x13\xfc\x93\x14\x8e\x53\x78\xf4\xd9\x1f\xc9\xc8\xdb\xd6\x37\xad\x9f\x6f\x78\x61\x04\x35\xe4\x7a\x3c\xf7\xb1\xdd\xa1\x3f\x19\xbc\xe9\x3e\xc2\x49\xcf\xfb\xef\x33\x9d\x1f\x8e\x06\xe2\x2c\x3e\x98\xd6\x29\x19\x8d\xe2\x34\x7c\xef\xe2\xdf\x66\x60\xec\x66\xc0\x84\x38\x38\x18\x84\x91\x1a\xbe\x77\xab\xfc\x65\xf1\xb2\xf8\x37\x00\x00\xff\xff\x39\xce\xcf\x9c\xa6\x0e\x00\x00")
+
+func initVscodeTypesRuntimeNeoDTsBytes() ([]byte, error) {
+ return bindataRead(
+ _initVscodeTypesRuntimeNeoDTs,
+ "init/.vscode/types/runtime/neo.d.ts",
+ )
+}
+
+func initVscodeTypesRuntimeNeoDTs() (*asset, error) {
+ bytes, err := initVscodeTypesRuntimeNeoDTsBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "init/.vscode/types/runtime/neo.d.ts", size: 3750, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _initVscodeTypesRuntimeProcessFsDTs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x5a\x5d\x4f\xdc\x38\x17\xbe\xcf\xaf\x38\xaa\xde\x8b\xb6\x42\xcc\xed\x2b\xd0\x8a\xa5\xd0\x0f\xa4\x65\xb7\x2a\xa0\x95\x5a\x55\xaa\x27\x3e\x99\xb1\x48\xec\xac\xed\xa1\x0c\x94\xff\xbe\x3a\x76\x9c\x2f\x26\x43\x32\x84\x61\xe9\x15\x93\xfa\x7c\x3c\xcf\x73\x4e\xe2\xe3\x24\xc2\xeb\x5c\x69\x0b\x76\x99\x23\x7c\x10\x29\x9e\x2d\x8d\xc5\xec\x4f\x96\x21\xfc\x06\xaf\x58\x9e\xbf\x82\x5f\xf0\x8a\x33\xcb\xe8\x0f\x63\xb5\x90\xb3\xfd\x28\x98\x09\x69\x51\x27\x2c\x46\xb8\xc8\x53\xc5\x38\x79\x80\xdb\x08\xe0\x13\x33\xf3\xd7\x6f\xf6\x82\x01\xb4\xff\x4d\x26\xf0\x05\xed\x42\x4b\x03\x0c\x16\x52\xfc\xb3\x40\x10\x1c\xa5\x15\x89\x40\x0d\x53\x66\x90\x83\x92\x60\xe7\x08\x09\x39\x9d\x33\x33\x8f\x00\x4e\xcc\xd1\x7c\x21\x2f\xc9\xf5\x54\xa9\x14\x99\xdc\x6f\xfb\x3d\x46\x8b\x3a\x13\x12\x0d\x88\xa4\x72\x20\x0c\xe4\x4c\x5b\x50\x09\x30\x48\x99\x9e\xa1\x86\x98\x7c\x21\x87\x85\x4b\x3e\x02\x20\xdc\xdd\x49\x3b\xf7\x7f\x69\x31\x13\x92\xa5\xde\xab\x64\x19\x46\x00\x2e\x29\x02\x4f\x0e\x56\xe0\x9e\x4c\x9c\x6b\x0a\x4e\x09\xb9\xb8\xce\x41\x04\x70\x8e\x59\x4e\xa6\x5d\x71\x27\x13\xb7\x44\x69\xa6\x97\x3e\x68\xce\x2c\x71\x71\x71\x72\xbc\x2e\x57\x32\xbc\xf0\xcc\x9e\x54\xcc\x26\x4a\x97\x9c\x50\x70\x65\x59\x7a\x26\x6e\x5c\xd2\x72\x91\x4d\x51\xef\xb7\x83\xd3\x12\x30\xe2\xa6\x4c\xdf\x25\x41\x8e\x9a\xfc\x99\x08\xe0\x6c\x29\xe3\x0e\x69\x82\xbf\x0f\x29\x9b\x81\x55\xc0\x83\x4e\x41\x26\xef\x85\x84\x32\x4b\x19\xcf\xb5\x92\x6a\x61\xa2\xbb\xce\x62\xfb\xac\xd5\x4c\xa3\x31\xae\xe0\x5c\x96\x2b\x21\xac\x01\x52\xea\xee\x1d\x22\xef\x72\x30\x99\xc0\x61\xa6\x16\xd2\x16\x26\xc8\xc1\x28\x48\x98\x26\xed\x55\x96\xa7\x68\xc9\xb8\xab\x24\xbd\x7b\x88\xfd\x4a\xa1\x24\x18\xcb\xac\x07\x37\x79\xfb\x36\x82\xb7\xf0\x05\x19\xf7\xc4\xc6\x4a\x5a\x94\x96\x2e\xfe\x9e\x33\xcd\x32\xc8\xb5\x8a\x09\x67\x62\x76\xff\x77\xdb\x6c\xd2\xbb\x5d\x32\xfc\xe0\xc4\x2c\xd7\x93\x1b\x2a\xcc\xa2\x38\xaa\x4a\x05\x8d\x29\xb3\xe2\x0a\x89\x7f\x22\x40\x2b\x45\x81\x26\x81\x62\x8e\x71\xca\x34\x42\xb2\x90\xb1\xcb\xf3\xb3\x0f\xfd\x3a\x82\x90\xc5\x1e\xfc\x58\x9b\xc7\x8f\x9d\x08\xca\x0c\x42\x7d\x46\x55\x4b\x74\x23\x06\x66\x60\xba\x48\x12\xd4\x43\xb1\xbf\x6b\x5b\x3d\x2b\x03\x3e\x9b\x4e\x1e\x2e\x84\xb4\xff\x3f\xd4\x9a\x2d\x2b\x2e\xfe\xd6\xc2\xe2\x46\xf2\x3b\xcb\xc7\xea\x1f\x0c\x83\x10\x85\x5d\xf8\x69\x15\xfc\xa4\x30\xf5\x9c\x50\x67\x45\xaf\x14\xf7\x24\xea\x65\x63\x84\x92\x66\x24\x3a\x4b\x64\x2b\x99\xa4\x6b\x45\x7e\xf5\x4b\x94\xc6\x41\xe8\xe2\xa8\xba\xa7\xad\x61\x1a\x12\xad\xb2\x81\x85\x57\xe6\xf6\xf8\xca\x6b\x73\x5f\x95\xc7\x7f\x85\xff\x35\xf5\xdc\x50\xa1\xca\xbc\x97\x12\x87\x79\x8e\x92\xd7\x41\x26\xcd\x32\x5e\xab\x80\xb7\x7e\xfa\xc2\x67\x2e\xce\x76\x99\xaf\xb0\x8d\x5a\xfa\xab\x09\xdf\xa4\xfc\xab\x04\xb7\x55\xff\xcf\x2b\xc3\x13\x75\xc0\x89\x34\xa8\x6d\x09\x53\xc8\x81\x3d\xe0\xed\xc7\xea\x01\x95\x24\x06\x6d\xe0\x34\x57\x46\x38\xbe\xac\xa2\xcd\x0a\x8d\x08\x73\x04\xe1\x22\xf6\x6a\x9c\x7b\x4b\xb7\xa0\x58\x45\x48\xa7\x56\x1e\x65\xd0\x62\xd3\x56\xea\x52\x6e\x93\x66\xaa\x92\x1e\xaf\x99\x1e\xa5\xe5\xea\x0e\x7c\x5e\x3d\x1f\xe8\xc0\x35\xaa\x0e\xec\x49\xb7\x2b\xe5\x42\x63\x6c\x95\x2e\x09\x30\x43\x76\xa4\xc7\xa2\xae\x21\x17\x3a\xc8\x57\xb9\xa5\x09\xee\x21\x0d\x35\xc6\x0b\x6d\xe8\xff\x8b\xb1\x02\x52\x61\x6c\xe9\x44\xa0\xa9\x96\xa4\xcb\x11\xf7\xb0\xc7\xc2\x13\xcd\x85\xae\x73\x5c\x06\x3b\x28\x07\x9d\x6a\x5b\xff\xed\x7b\x45\xe1\x67\xd4\x89\xd2\x19\x30\x98\xa5\x6a\x0a\x06\x99\x8e\xe7\x7d\x09\xfc\x98\xaa\x69\x7d\x2d\xb3\x16\xb5\x0c\x0c\x3a\x87\xc5\xb5\x91\x10\x53\x40\x07\xb7\x70\x7b\x7f\x64\xa9\x63\x3b\xd2\xc8\x2c\x02\xab\xb4\xec\x0b\xec\xf4\x92\x8f\x53\x17\xf5\xbe\xab\x59\x8e\xde\x7c\x2e\xe1\x55\x85\x70\xaf\x87\xae\x94\xe0\xeb\x28\x02\x26\x39\xb0\x34\x05\x89\x14\x90\x39\xa0\x7a\x48\x5b\xb9\x5c\x0e\xd3\xf4\xc5\xf1\x77\x98\xa6\x8f\xa1\xd0\x96\x07\x3f\x9b\xd5\xdb\x39\x66\xf9\x6a\xce\xa6\xcc\xe0\x6a\xa7\xcd\x8e\x0b\x3f\xc3\xb9\x51\xc5\x98\x3f\xfa\x1a\x8f\x2a\xca\x35\x70\x75\xd0\x20\xcb\xa7\x70\xb0\xfe\x30\x21\x53\x57\xc4\x98\x7b\x12\x29\x3d\x9c\x2f\xef\xa1\xb6\xba\xfe\xe0\x5d\x57\x57\xe3\xdc\x76\x29\xb8\x43\xdf\x3e\x2e\x68\x56\x46\x89\xb3\xd9\x5c\xc2\x9a\x0d\x1e\x55\xe4\xaa\xd9\x54\xdb\xc7\x1c\x1a\x64\x3d\xec\xa3\x39\xc6\x97\x80\xd7\xc2\x58\x94\x31\xfa\x43\xdc\x8d\xa5\x7e\x4f\x7e\xcc\x33\xc1\xf6\xc1\x57\x62\x0e\xc7\x87\x2d\xd8\x22\xf1\x49\x09\xb3\xc9\x73\xe7\xc4\x34\xf7\x23\xdb\xc4\xea\x62\x6f\x0c\x75\xd0\x28\x64\x5a\x63\xd0\x76\x61\x96\x23\xc7\x26\x38\xcd\x32\x9b\xaa\x54\xc4\x90\x0a\x79\xd9\x1f\xf0\x1f\xcd\xd5\xdb\x05\x4c\xc1\xfb\x02\x66\x72\x56\x9c\xb8\x65\x8a\xf7\x56\xf4\x68\x9e\x29\xbe\x01\xbe\xce\xf1\xa4\x08\x3e\x06\x7e\x97\xdb\x3d\xf8\xe1\xc1\xde\xfd\x5c\xff\x88\xd6\xe7\x62\xc4\x4d\x6f\x22\xce\x9a\x6b\xb7\xa9\x33\x85\x5e\xa9\x72\x7b\x6a\x2a\x81\x0d\x51\xf8\xb4\xb9\x76\x9b\xc0\x28\xf4\x60\x60\x22\x11\x31\xf3\x73\xb4\xc8\x86\xa0\x3c\x6f\x2e\xdf\x32\x50\x8a\xde\x1b\xab\xdb\x16\xca\xe2\x55\x25\xab\xbf\x6e\xec\x87\xf6\x1d\x33\xee\x1d\x68\x07\xdc\xba\xbf\x31\xe0\x85\x70\x2b\xf1\xb5\xf7\x88\x84\xaf\xb9\x7d\xdd\x10\xe4\xb1\xd0\x5b\xc4\x58\x44\xeb\x0d\x11\xaf\x2d\x4a\x1a\x64\x2a\x74\xfd\x37\x46\x76\x8b\xc0\x8a\x68\xbd\x81\x51\x6b\x9c\x9e\x9c\xbe\xf7\x1f\x2b\x0c\x06\x77\x2a\x32\x3c\x5f\xe6\xcf\xd6\x89\x45\xf8\x5e\x70\x4f\xab\x61\xa6\xff\x7d\xa6\x31\xbd\x18\x1d\x07\x64\x46\x2d\x74\x8c\xbd\x1e\x9a\xdc\x94\x47\xb9\x1c\x8d\x15\xd2\xdf\xef\x9e\xfe\x2e\x55\x0c\x3f\x46\xc7\xf5\xa7\x29\x37\xb6\x7b\x26\x28\x5e\x67\xd0\xf8\x93\x6d\x46\xd7\x61\xfb\xa5\xc2\x8b\x23\xcd\x23\x18\x4c\x5d\x71\x7c\xfd\x08\xea\x4e\xda\xa7\xc1\x5b\xa3\xee\xe1\x23\x6e\x7f\x52\x0d\x9c\x59\x36\x22\xd5\x1e\xf1\x03\x54\xdf\x3f\x8b\xbe\x4f\xfe\x57\x91\xd7\x0f\x71\xfb\xb2\xfe\x55\xe4\x2f\xb5\x52\xbf\x8a\x7c\x70\x89\x5e\xc8\x1b\x91\x0f\x2c\x4c\x67\xf3\x52\x49\x72\xc9\xf7\xa0\x69\xc5\x99\xb4\xca\x97\x03\x99\x22\x93\x97\x4a\x14\xe5\x3e\xb8\x9c\x3e\x31\xc9\xd3\x62\x0a\x2d\xbf\x56\xeb\x59\x55\xc5\x47\x62\x8d\xb7\x72\xf5\xef\x1d\x8b\xef\xd6\xfc\x57\x86\x32\x51\x3a\x73\x44\x34\xfd\xe7\x06\x98\x5c\xba\xbf\x50\x5b\x81\xc6\x9d\xa8\x5e\xb1\x54\x70\x4f\xdb\x6b\xdc\x9d\xed\xee\x40\xc6\xae\xc9\x29\x0d\x88\x3b\xc0\xe2\x18\x73\xfb\x66\xac\x0a\x73\x79\x96\xef\xd0\xf6\x6a\x18\x76\xbc\x75\x6e\x0e\xf6\xe0\x16\xbe\x5d\xe2\x32\x50\xf9\x7d\xcf\xe5\x7d\x57\x95\x1e\xfc\x82\x5b\x27\x72\xf5\xf1\xe1\x42\xf0\xea\x47\x5e\x7c\x96\xb7\xd7\xfe\x4c\xef\x6e\xb5\x1c\x5c\xfd\x94\x83\x04\x39\x2e\x0c\xda\x92\xd4\xb7\xa9\x56\x95\x7e\x9f\xb2\x16\x43\x2a\x35\x52\xab\x0a\xbc\xad\x5e\x42\x32\xb9\xdc\x77\xdb\xd6\x92\x44\x22\xe3\xdf\x00\x00\x00\xff\xff\xd0\x37\x58\x60\x7d\x2b\x00\x00")
+
+func initVscodeTypesRuntimeProcessFsDTsBytes() ([]byte, error) {
+ return bindataRead(
+ _initVscodeTypesRuntimeProcessFsDTs,
+ "init/.vscode/types/runtime/process/fs.d.ts",
+ )
+}
+
+func initVscodeTypesRuntimeProcessFsDTs() (*asset, error) {
+ bytes, err := initVscodeTypesRuntimeProcessFsDTsBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "init/.vscode/types/runtime/process/fs.d.ts", size: 11133, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _initVscodeTypesRuntimeProcessHttpDTs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x98\xcf\x6f\xe2\x3a\x10\xc7\xef\xf9\x2b\xe6\xd8\x22\x04\x97\xa7\x77\x80\xaa\xbc\xea\x95\x57\x0e\x95\x8a\x28\x3d\x21\xa4\x9a\x78\x68\x22\x05\x3b\xb5\x27\x7a\x8b\xb6\xfb\xbf\xaf\xc6\xf9\xe5\xb6\x10\x68\x57\x2b\x6d\x50\x4f\x90\xf1\xcc\xd8\x33\xdf\xcf\x44\x49\x82\xa0\xdf\xe9\x04\xd0\x81\x19\xa6\x06\x2d\x2a\xb2\x20\x14\x4c\xe6\xf3\x29\x18\xb4\xa9\x56\x16\x7b\x01\x74\xfa\x01\x7e\x4b\xb5\x21\x88\x15\xa1\x59\x8b\x10\x61\x42\x94\xce\x0a\x17\xf8\x1e\x00\xf4\xfb\x30\x8f\x10\x2c\x09\xca\x2c\x84\x5a\x22\xe8\x35\x50\x84\x7e\xa6\x62\x79\x00\x2a\xdb\xac\xd0\x0c\x03\x80\x3a\x54\x0a\x12\x60\x90\x32\xa3\x50\xc2\x6a\xfb\x2e\x98\x1d\x06\x20\xd4\x76\x18\xd4\x51\x11\x0a\x89\xc6\x36\x06\x16\x3e\x03\x98\x61\xa8\x8d\xbc\xb0\x64\x62\xf5\xd4\x85\xfc\x17\x5e\x8a\x3f\x8b\xe5\xa5\x9f\x79\x5f\x0d\x6c\xaf\x2b\xa8\xfd\x37\x68\xad\x78\x42\x88\x55\x98\x64\x12\x25\xc4\xea\x5d\x6c\xe1\x33\x28\x76\x1c\x06\x3f\x9a\x34\x58\xc7\x09\x02\x69\x58\x21\x64\x69\xa2\x85\x44\xd9\x20\xc7\x7f\xec\xed\x49\xa1\xc4\xa6\x3a\x3f\x67\xe2\xfd\xd9\x56\x6f\x9e\xfb\xde\xa5\x14\x6b\x25\x12\x48\x05\x45\xbc\x9d\x1f\xc0\xb6\xd1\xde\x88\x95\xb0\xf8\xf7\x5f\x80\x8a\x7b\x22\x73\x05\xdf\xec\xc8\xb6\xd1\xee\x7a\x85\xcc\x2b\x0c\xb5\x22\x54\xc4\xc6\x7f\x52\x61\xc4\x06\x52\xa3\x43\xb4\x16\x22\xa2\xb4\x77\x83\xfe\x52\x66\x92\x52\x37\x2e\xf2\x61\x76\xcb\x47\xb6\xa8\xa4\xdb\xf6\x66\x3c\x07\x83\xcf\x19\x5a\x02\xd2\x3d\x2f\xf0\x39\x43\xb3\xad\x8f\x9e\x5f\xba\x25\x24\x06\x88\x74\xa9\x5c\x2d\x9c\xcb\xe3\x27\x29\x69\xab\xd2\x94\x86\xc6\xe8\x4a\x30\x89\x61\x22\x0c\xc2\x3a\x53\x21\x27\x80\x69\x5e\xe8\x19\x77\x3a\xff\x3b\x80\xc7\xb2\xea\xc7\x6e\x00\x5c\x6f\xd9\x3d\xbe\x74\xc7\x1e\xed\x21\xf9\x12\x5e\x60\xf1\xda\xb4\x5c\x2c\xe1\x05\xae\x8c\x11\xdb\x8b\xdd\x31\x97\x15\xff\xdd\x7a\x54\x9a\x76\xd8\xbd\xb0\x58\x76\x83\xf3\xc1\xab\xfb\xc2\xb0\xd2\xfa\x9e\xe5\x11\x30\xbd\xbb\xaf\xd4\xd9\xa7\xf6\x54\xdb\x0f\xc8\xed\x67\x7c\xa3\x77\x2a\xb6\x3c\x32\xb5\x54\x8e\xce\x32\xb8\x10\x69\xa5\xe5\xb6\x9e\xf1\x77\x72\x33\x9e\x9e\xd8\xf9\x25\xe9\x62\x1a\xe1\xff\x98\x07\x66\x77\x68\xcb\x70\xe3\xb6\xef\xe2\xad\xe8\xe2\xc8\xdd\x77\xd9\xe0\x7a\xb0\x17\x8f\xf6\x23\xfa\x70\x98\xd0\xec\x23\x80\x3e\xfc\x4e\x3e\xdb\x06\x59\x76\x1c\x63\xed\x26\xe8\x6a\xfe\xef\xe4\x20\x43\x82\xc2\xe8\x03\x14\xf9\x39\xbf\x38\x72\xdd\x3b\x7d\x92\xae\xc7\xb7\xe3\xf9\xf8\x10\x4a\xd7\x98\x20\xe1\xf1\x2c\xbd\xce\xfa\x05\x53\xde\xbf\xd3\xa7\x69\x32\xbe\xba\x3e\xc4\xd2\x04\x85\x3c\x9e\x24\x3f\xe3\x67\x38\x6a\x3f\x3b\xdc\xaf\x93\x27\xa7\xfa\x20\xd0\x88\x0e\xfb\x7a\x6b\x1b\xa4\x48\x4b\x9f\x1e\x97\xa4\x30\xf3\x23\xb4\x45\x58\x6b\xe3\xab\x00\x67\xd8\x7b\xea\x75\xf9\x1d\xae\xeb\x9e\xec\xbb\x80\x14\xf6\xce\x7b\xc7\x23\x79\x92\x77\xb5\x5f\x78\x1b\xf9\x0c\xd4\xac\xa4\x83\x3a\x17\xcb\xe7\xba\xd5\x98\xd7\xef\x2e\xe5\xd7\x92\x66\xf8\xc9\xa0\xd8\x1c\xc7\xbe\x73\xfd\x53\xe9\x8f\x84\x92\x09\x1a\x3f\xb0\x34\x95\x55\xb8\x4f\x45\x7c\x1e\xeb\x2a\x61\x37\x1e\x91\x13\x9a\xa1\x4f\x0d\x82\x6b\xc6\x71\xa3\x50\x74\xb4\xbd\xd3\x71\x5e\x7e\x59\xfd\x19\x00\x00\xff\xff\x3a\xe7\x39\x35\x15\x16\x00\x00")
+
+func initVscodeTypesRuntimeProcessHttpDTsBytes() ([]byte, error) {
+ return bindataRead(
+ _initVscodeTypesRuntimeProcessHttpDTs,
+ "init/.vscode/types/runtime/process/http.d.ts",
+ )
+}
+
+func initVscodeTypesRuntimeProcessHttpDTs() (*asset, error) {
+ bytes, err := initVscodeTypesRuntimeProcessHttpDTsBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "init/.vscode/types/runtime/process/http.d.ts", size: 5653, mode: os.FileMode(493), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _initVscodeTypesRuntimeProcessModelDTs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x58\x4d\x6f\xdb\x38\x13\xbe\xeb\x57\xcc\xe1\x05\xdc\x1a\x46\xf3\x62\x8f\xe9\xd7\x16\x9b\x6e\x50\xa0\x8b\x66\x93\x5d\xf4\x50\x14\x08\x2d\x8e\x2d\xa2\xb4\xa8\x92\x54\x1d\x6d\xdb\xff\xbe\x98\x21\x69\xd1\x5f\x59\xd9\x71\x7b\x49\x2c\x6a\x9e\xe1\x3c\xcf\x0c\x87\x22\x8b\xb3\x33\xf8\xab\x6b\xf0\xa6\xb4\xaa\xf1\xe0\xbb\x06\x41\xe2\x4c\xd5\xca\x2b\x53\x3b\x98\x19\x0b\xbe\x42\xb8\x34\x5a\xd4\x73\x28\x8d\xc4\xa2\xc0\xbb\xc6\xd8\x68\xfc\x67\x8b\xb6\xbb\x12\x56\x2c\xe0\x39\x7c\x2d\x00\x16\x46\xa2\x7e\x79\x0e\xce\x5b\x55\xcf\x9f\xc2\xd9\x19\x98\x86\x9c\x09\x3d\x61\x57\x6c\x00\xde\xc0\x67\x82\x16\x00\x5e\x4c\x35\xde\x87\x60\x83\x1c\x21\xb4\x12\x6e\x2f\x82\xad\xd9\xa4\x00\x08\xb1\xee\xb3\x8d\x4c\x1a\x8b\x33\x75\x57\x00\x38\xd4\x58\x92\xf5\xa3\x60\x0e\xdf\xe0\x5a\x2c\x1f\x7f\xf8\xb8\x81\x0b\x76\x50\x1a\xdd\x2e\x6a\x37\x81\x52\xd4\x30\xc5\x38\x87\x03\x63\x09\x56\x00\x2c\x2b\xb4\x48\x91\xb2\x4c\xef\xe9\x69\xcb\x97\xb0\x56\x74\x60\x66\xc1\x18\x4a\x53\xcb\x20\x7e\x01\x60\xac\x44\xbb\xc2\xbf\xa3\xa7\xfd\x78\x36\x56\x9c\xa5\xcc\x85\x56\x0b\x45\x8c\xea\x76\x31\x45\xbb\x81\xe5\x97\x60\xb1\x34\x56\x92\x71\x23\xe6\xb8\xcf\xb6\x11\x73\x55\x0b\x7a\x62\xb3\x68\x14\x41\x37\xea\x9f\xbd\xc0\x30\x48\x11\xc6\x89\xa0\x41\xcb\x28\x52\x48\xf9\x8a\x08\x5e\xf3\xab\x67\x41\xc1\x09\xbc\x57\xbe\x7a\xb1\xe1\x67\x21\x9a\x86\xe8\xb1\x23\x2d\x02\xc1\xef\xeb\xe5\x78\x2d\x96\xf0\x1c\x44\xdd\x31\xf6\x4a\x8b\x12\x2b\xa3\x25\x5a\xae\x64\x51\xfa\x56\x68\xdd\xc5\x12\xaf\xe7\x6c\x4f\xc0\x1d\x45\xcd\xd9\x8a\x45\x6d\xf7\x97\x74\x0a\x05\x6a\xb1\x20\x42\xa1\x26\x56\xd6\xa1\x82\x18\x13\xde\x50\x1d\x8b\xa6\xd1\x5d\xcc\xb7\xa9\x0b\x80\x2f\x42\xb7\xa4\x5f\x0a\x9c\xaa\x9e\xc7\xc8\xba\x34\x8b\x46\x58\x64\xa9\x68\x81\xa1\xaf\x8c\x5c\x0f\x27\x8c\x31\xc7\x58\x45\x5a\xb4\x0e\xc1\xb5\x65\x05\xc2\xc1\x88\x47\x47\x13\x18\x19\x1b\x7e\x52\x71\x35\x9b\x9c\xd0\x0a\x6f\x6c\x8f\xc2\xcf\x04\x99\xfb\xd1\xbd\xa5\x5c\xa3\xf3\x28\xa3\x01\xc7\x30\xb7\xa6\x6d\x50\xe6\x85\xf8\x7d\x87\xc2\x5c\xcf\xc7\x2a\xbc\x66\xdc\x4b\xcb\x8b\x00\xa6\x1d\xf3\x23\xd4\x86\xd7\xb4\x46\xc2\x4b\x18\x09\x57\x12\x47\x89\xae\x1c\x6d\x06\x49\x45\x18\xc3\xa3\xa9\xd7\x1c\x51\x86\x36\x03\xe3\xf6\x94\x14\xe2\x9e\xc8\xa6\x3c\x0c\x0d\x3d\xa3\x47\xdb\x37\xd5\x84\xa7\x79\xcf\xc6\xe3\x02\xc6\xf0\xbb\xaa\x25\x88\xb8\x50\x60\xda\x81\x92\x34\xfc\x2b\xa3\xa1\xb1\xa6\x44\xe7\x42\x0b\x75\x4f\xc6\xe3\xf7\x4a\xce\xd1\xbf\xb9\x18\x8f\x9f\x10\x32\x33\x55\xb2\x2f\xc0\xb8\x00\xa3\xd3\x35\x8f\x21\xb6\xcd\x08\x0b\x18\x9f\x25\x25\x24\x96\x9a\xaa\x6f\xd6\xd6\x25\x93\xbd\x0a\x41\x3c\xa2\x95\x1f\x7e\x9e\xc3\x6d\x8c\xe8\x7f\x5f\xc3\xa4\xdf\x39\x9c\xdb\x49\x01\xa0\xe4\xf9\x66\x24\x93\xa4\x55\x2e\x55\xf1\x78\xab\x09\x88\xba\x7b\xf1\x74\x25\xcd\x25\xae\x3a\x15\x4c\x85\x43\x09\xa6\xde\x15\xf9\x10\xb1\x2e\xd1\xff\x0c\x11\x2e\xd1\xdf\x1e\x42\xf6\xc3\xc7\x9e\xee\x55\x68\xb7\x78\x32\xce\xc9\xe1\x10\xe2\x2b\x7f\x7d\xa3\x5f\x6f\xfa\x6b\x16\xd4\xfc\x93\x95\xa3\xdf\x66\x16\xdb\xfb\x83\x15\x4c\x41\xef\x96\x71\x12\x77\x9f\xf3\xac\xb0\x52\x40\x69\xec\x3f\xeb\xea\x37\x8b\x24\xb3\x80\x1a\x97\x51\xec\x81\x8a\x06\x64\x66\x6c\xcd\x32\xf3\x02\x52\x78\x71\x02\x0d\xc2\x34\xac\x80\x35\xcb\x9d\x6c\x88\x64\xdc\x7b\x57\xbc\xfe\x6e\x64\xe0\x75\x44\x33\x09\xd8\xc3\xdb\x09\x09\x40\xac\xa9\x13\xb7\xc9\xc7\x43\xf9\x87\x60\xee\x6b\x26\xf7\xc9\xf2\xc5\x28\xd9\x8b\x72\x23\xbe\x64\x92\x3c\x2a\x43\xee\x8d\x8d\xd1\x3e\x1e\xa8\x0f\xb9\xd9\xa0\x7d\xda\x9c\xd3\x04\x07\x67\xfc\x02\x35\x1e\x9b\xf1\x80\x1d\x9e\xf1\x87\x12\x0c\xf3\xed\x4b\xea\x76\xe2\x2e\xd0\x79\x6b\xba\x63\xc9\x31\xf8\x67\xb2\xe3\x09\x87\xd3\x7b\x53\x3b\xb4\x1e\x16\xad\xf6\xaa\xd1\xd8\x7f\x92\x0f\xe2\x17\xd0\x99\x71\x3c\x98\xa4\xef\x22\xfa\x3e\x71\xeb\xf5\xea\xc2\x3a\xe5\x5f\xde\x80\x4a\x1e\x1e\xca\x3c\x84\xc2\xc4\x63\x10\x89\xfd\x87\x8f\xb1\x9e\xdd\x39\xbc\xa2\x33\xcb\xb3\xf0\x97\xaa\x79\xc7\x4a\x8d\xed\x6b\x6b\xf7\xcb\x0f\x37\x07\xf4\x32\xfe\x60\x3d\x64\xeb\xfb\x81\xad\x8c\x63\xd9\xbf\xa3\x1d\xb1\xe4\x1f\xae\x52\x70\x34\x58\xa5\xd3\x2c\xff\x7b\x84\xd8\x4d\x36\xf4\x80\x53\xb0\x65\x4f\x3f\x91\x6e\x3f\xdf\x70\xbe\xbc\x59\x1d\xd9\x12\x5e\x8b\xb2\xda\xdc\xa5\xa2\x6c\xe9\x7f\xdc\xaa\xd2\x6b\x14\x65\x75\x6d\x96\x20\x64\xd0\x52\xe8\x50\xff\x74\x58\x55\x28\x69\x1d\x90\x09\x95\xe7\x09\x14\x49\xf1\x85\x4d\x2e\x44\x94\xfa\xc2\x8e\xda\x7f\x41\x66\x31\xc2\xed\xdb\x82\xf5\xd5\x91\x7f\x45\xc7\xf5\xe1\x1a\x2c\xd5\x8c\x58\x24\xf2\xa2\x96\xe0\x48\xdf\xfe\x7b\xed\x50\x69\x5f\xcd\x3c\xda\x1d\xfb\xa6\xeb\xb7\x12\xee\xad\x72\xd3\x24\xc5\x90\x4d\x7d\x6c\x32\xd8\xc5\x49\x13\x92\xb1\x8a\xdb\x97\xeb\x85\xfd\xb1\xc9\xa2\x13\x5e\xbc\x59\x0b\xc7\xf3\xa1\x19\xb9\x61\xd0\x3b\xc6\x64\x90\x4f\xd8\x2d\x29\x0f\x0e\x85\x2d\xab\xf4\x98\x19\xd0\xbe\x48\x8e\x1b\xb4\xbe\xe3\x46\xef\x10\x84\xe3\xf1\x09\x48\x9c\x89\x56\x7b\x18\xd1\xe3\x28\x83\x85\x9b\x99\x1d\x38\x7e\x91\x01\x95\xcc\x61\xe1\xb2\x6d\x21\xee\xd6\x6e\xc4\x5c\xab\xbd\xeb\x31\xbf\xfc\xff\x14\x5f\x8f\x99\x1e\x9c\xc4\x48\x7d\x75\x17\x32\x89\x57\x1a\x6b\x03\xe9\x12\xaa\x1f\x59\xbf\x3b\x9c\x64\x47\xa9\xa0\x09\x7c\x63\x8e\xdb\x87\xd7\x3f\xd4\xdc\xd2\xee\xbd\xba\xef\x1d\x98\xc8\x88\xcb\xac\x67\xc6\x96\x08\xcb\x0a\x7d\x85\x96\xa4\x0e\x03\xec\x98\x8d\x43\xca\x1f\xaa\x58\x9c\x98\xc5\xe2\x19\x5e\x9e\xc3\xd4\x18\x8d\xa2\x9e\x6c\x7f\x9b\xbc\x35\x42\x1e\xcc\x8d\x40\x39\x31\xa5\x03\x0d\xfe\xd1\x08\x5f\x65\x2f\x9d\x69\x89\x65\xba\x03\x4b\xcf\x27\x3a\x5c\x50\x24\x81\xa9\xd2\x98\xe7\x3b\x4c\xb3\x2a\x81\x6d\xe2\xd7\xa8\x8f\xa1\x1e\x60\x27\x88\x3c\x38\xba\xdd\x91\x92\x6b\xcc\xe3\x82\x8b\x9b\xb7\x83\x63\x3b\x51\x64\x42\xde\x52\x58\xa2\xee\xb2\xbb\x85\x0a\xcb\x4f\xa0\x66\x59\x64\xca\x01\x71\xc0\xa1\x67\x97\xd7\x77\xca\xf9\x53\x7c\x83\x04\x47\x1c\x63\xac\xec\xa7\x45\xf1\x6f\x00\x00\x00\xff\xff\x65\x31\xd1\xdd\x00\x1a\x00\x00")
+
+func initVscodeTypesRuntimeProcessModelDTsBytes() ([]byte, error) {
+ return bindataRead(
+ _initVscodeTypesRuntimeProcessModelDTs,
+ "init/.vscode/types/runtime/process/model.d.ts",
+ )
+}
+
+func initVscodeTypesRuntimeProcessModelDTs() (*asset, error) {
+ bytes, err := initVscodeTypesRuntimeProcessModelDTsBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "init/.vscode/types/runtime/process/model.d.ts", size: 6656, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _initVscodeTypesRuntimeProcessDTs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x5c\xff\x6f\xdb\xb8\x92\xff\xdd\x7f\xc5\xa0\x38\x20\x6d\x60\x24\x87\xc3\xe1\x70\x48\x5f\xdb\xcb\xdb\x64\xdb\x02\xed\x6b\xae\x49\x51\x60\x83\x00\x61\xa4\xb1\x4d\x54\x12\xb5\x24\xdd\xc4\xdb\xf6\x7f\x7f\x98\x21\x29\x51\xb2\x6c\xcb\x8e\xeb\x6e\xba\xbb\x3f\x6c\x63\x89\x33\x9c\xcf\x67\x66\xf8\x65\x44\xe9\xf0\x10\x2e\x26\xd2\xc0\x48\x66\x08\xd2\xc0\x18\x0b\xd4\xc2\x62\x0a\x37\x33\x38\x7e\x3d\x38\x3c\x84\x13\x05\x85\xb2\x90\xab\x54\x8e\x66\x60\xab\xd6\xb9\x28\xa6\x22\xcb\x66\x03\x99\x97\x4a\x5b\xf8\x02\x1f\xca\x4c\x89\xf4\x57\x99\xe1\xd0\xff\x7d\xa6\xd5\x58\xa3\x31\xf0\x0d\x46\x5a\xe5\xf0\xe8\xe0\x70\x62\x6d\xf9\xe8\xe9\x60\x70\x78\xf8\x2c\xfa\x8f\xd4\x63\x76\x90\x1e\x58\x03\xf1\x75\x6a\x07\x17\xb3\x12\xcf\x13\x2d\x4b\x0b\x76\x56\x22\xa4\x38\x92\x85\xb4\x52\x15\x06\x46\x4a\x83\x9d\x20\xbc\x54\x99\x28\xc6\x90\xa8\x14\x07\x03\xbc\x63\x8b\xb8\xf1\xff\x4f\x51\xcf\xce\x84\x16\x39\x3c\x83\x2f\x03\x70\x3d\xbd\x38\x02\x63\xb5\x2c\xc6\x4f\xe1\xf0\x10\x54\x49\xca\x44\x36\x64\x55\xdc\x00\xac\x82\xdf\x49\x74\x00\x60\xc5\x4d\x86\xcb\x24\xb8\x41\x2c\x21\x32\x29\xcc\x42\x09\x6e\xcd\x4d\x06\x00\xce\xd6\x45\x6d\x3d\x92\x52\xe3\x48\xde\x0d\x00\x0c\x66\x98\x50\xeb\xc7\xae\x39\x7c\x85\xf7\xe2\xf6\xc9\xe5\x55\x4b\xce\xb5\x83\x44\x65\xd3\xbc\x30\x43\x48\x44\x01\x37\xe8\xfb\x30\xa0\x34\x89\x0d\x00\x6e\x27\xa8\x91\x2c\x65\x9a\x3e\xd2\xaf\x39\x5d\x42\x6b\x31\x03\x35\x72\x8d\x21\x51\x45\xea\xc8\x1f\x00\x28\x9d\xa2\xae\xe4\xdf\xd1\xaf\xc5\xf2\xdc\x58\xb2\x97\x22\x15\x99\xcc\x25\x21\x2a\xa6\xf9\x0d\xea\x96\x2c\xdf\x04\x8d\x89\xd2\x29\x35\x2e\xc5\x18\x17\xb5\x2d\xc5\x58\x16\x82\x7e\x71\x33\xdf\xc8\x0b\x9d\xcb\x3f\x16\x0a\xba\x8b\x64\xa1\xef\x08\x4a\xd4\x2c\x45\x0c\x49\x3b\x21\x80\xef\xf9\xd6\x3f\x1c\x83\x43\xf8\x28\xed\xe4\x79\x4b\x4f\x2e\xca\x92\xe0\xb1\xa2\x4c\x38\x80\xdf\x9e\x36\xe3\xf1\xbd\xb8\x85\x67\x20\x8a\x19\x0b\x9f\x65\x22\xc1\x89\xca\x52\xd4\x1c\xca\x22\xb1\x9c\x54\x3e\xc6\x8b\x31\xb7\x27\xc1\x8e\xa8\x66\x77\xf9\xa8\xd6\x8b\x63\x3a\xd8\x02\x85\xc8\x09\x91\x0b\x8a\xaa\xb5\x0b\x21\x96\x71\x77\x28\x90\x45\x59\x66\x33\xef\x70\x55\x0c\x00\x3e\x8b\x6c\x4a\x04\x06\xc3\x29\xec\xf9\x1a\xb5\x4e\x54\x5e\x0a\x8d\xcc\x15\x65\x18\xda\x89\x4a\x9b\xe6\xb8\x6b\x8c\xd1\x87\x51\x26\xa6\x06\xc1\x4c\x93\x09\x08\x03\x7b\x7c\x75\x6f\x08\x7b\x4a\xbb\x3f\x29\xba\xca\x36\x26\x1a\x9c\x94\xae\xa5\xf0\x77\x12\x19\xdb\xbd\xa5\xb1\x5c\xa0\xa1\x21\xcd\x35\x60\x1b\xc6\x5a\x4d\x4b\x4c\xe3\x48\x6c\x3b\xaa\x8e\xe8\x4d\x29\x6e\x34\xae\xb9\xe5\x34\x80\x9b\x19\x03\x24\xa9\x96\xd6\x90\x25\xee\x26\xec\x09\x93\x10\xc8\x14\x4d\xb2\x37\x67\x25\xc5\xa1\xb7\x8f\xfa\x6e\x68\x22\x1f\xb5\x2d\xe3\x11\x2a\x70\xc4\xc3\x22\x37\xe5\xcb\x50\xd2\x6f\xb4\xa8\xeb\x71\x35\xc8\x73\xc7\x87\xfb\xfb\x03\xd8\x87\x5f\x65\x91\x82\xf0\xc9\x42\x13\x85\x4c\xe9\xf2\xff\xb1\x38\x94\x5a\x25\x34\xe4\xf3\x30\x6a\x0e\xf6\xf7\x3f\xca\x74\x8c\xf6\xf5\xc9\xfe\xfe\x01\x49\x46\x4d\x65\x5a\xc7\xa0\x4f\x42\xaf\xb4\xa1\xd1\x19\xd7\x36\x71\x00\xfb\x87\x81\x8a\x14\x93\x8c\x02\x70\x34\x2d\x12\x46\x7b\xe6\x8c\x78\x4c\xd9\xef\xfe\x3c\x82\x6b\x6f\xd1\x7f\x7c\x71\x9d\x7e\x63\x73\xae\x87\x03\x00\x99\x1e\xb5\x2d\x19\x06\xb2\x62\xae\x06\x4f\xe6\x06\x02\x51\xcc\x9e\xd7\xd4\xbc\xc4\x6a\xb4\x82\x1b\x61\x30\x05\x55\x74\x59\xde\x87\xac\x97\x68\x77\x41\xc2\x4b\xb4\xd7\xeb\x80\xbd\xbc\xaa\xe1\x9e\xb9\x21\x17\xb7\x86\x39\x28\xec\x03\xbc\xd2\x57\x0f\xf6\xcd\x81\xbf\xd1\x82\x26\x80\xd0\xca\xd0\xdf\x6a\xe4\x87\xf8\x7b\x33\x18\x8c\xee\xa6\x71\xe8\x67\xa0\xa3\x28\xb0\x82\x41\xe1\xda\xca\xb8\xfa\x45\x23\xd1\x2c\xa0\xc0\x5b\x4f\x76\x4f\x46\x9d\x64\xd4\x58\xab\xdb\x48\x0b\xa4\xc2\x8a\x2d\x70\xe0\xba\x61\x06\xb4\xba\xed\x44\x43\x20\xfd\xfc\x5b\xe1\xfa\x50\xa6\x0e\xd7\x06\x83\x89\x93\x5d\x7f\x38\x21\x02\x08\x35\x8d\xc5\xd3\xa0\xe3\xbe\xf8\x9d\x31\xcb\x06\x93\x65\xb4\x7c\x56\x32\xad\x49\x39\x17\x9f\x23\x4a\x1e\x27\xce\xf7\x4a\x7b\x6b\x9f\xf4\xe4\x87\xd4\xb4\x60\x6f\xd7\xe7\xd4\xc1\xda\x1e\x3f\xc1\x0c\x37\xf5\xb8\x93\xed\xef\xf1\xfb\x02\x74\xfd\x2d\x72\xea\xbc\xe3\x4e\xd0\x58\xad\x66\x9b\x82\x63\xe1\x5d\xa2\xe3\x0e\xfb\xc3\x7b\x5d\x18\xd4\x16\xf2\x69\x66\x65\x99\x61\xbd\x2c\xef\x85\xcf\x49\x47\x8d\xfd\xe6\x24\xac\x8c\x68\x81\x62\x9a\xf1\x6a\x5c\x9e\xf2\x5f\x56\x81\x0c\x1a\xee\x8b\xdc\x99\xc2\xc0\xbd\x11\x01\xfd\xe5\x95\x8f\x67\x73\x04\xc7\xb4\x6f\xf9\x87\xfb\x3f\x45\x73\x47\xa6\xfa\xe1\x6b\x6e\xf6\x8b\x37\x38\x6b\x8c\x65\xbc\x66\x5d\x67\xea\xfb\x8e\x43\x19\xdb\xb2\x78\x46\xdb\x20\xe5\xef\xcf\x92\x53\xd4\x9b\xa5\xed\xa4\xff\x12\x22\xba\xc1\xba\x31\x60\x1b\x68\x59\xd3\x0e\xe1\xd6\xfd\xf5\xc7\xcb\x93\xd5\x86\x43\xc2\xa9\x48\x26\xed\x59\xca\xd3\x16\xfe\xf5\x53\x55\xb8\x8d\x22\x99\xbc\x57\xb7\x20\x52\xc7\xa5\xc8\x5c\xfc\xd3\x7e\x55\x62\x4a\x79\x40\x4d\x28\x3c\xb7\xc0\x48\xb0\xcf\x4d\x72\xce\xa2\x30\x2e\x74\xc4\xfe\x73\x6a\xe6\x2d\x9c\xaf\x18\x34\xb3\x23\x5e\x45\xfb\xfc\x30\x25\x26\x72\x44\x28\x02\x78\x51\xa4\x60\x88\xdf\x7a\xbd\xb6\x2e\xb5\xc7\x23\x8b\xba\x63\xde\x34\xf5\x54\xc2\x63\x6b\xda\x6e\x12\x6c\x88\xba\xde\xd4\x19\xac\x62\xab\x0e\x89\x50\xf9\xe9\xcb\xd4\xc4\x7e\x5f\x67\xd1\x0e\xcf\x57\xd7\xdc\x06\xbd\xaf\x47\xce\x59\xe8\x1d\xcb\x44\x22\x9f\x70\x76\x4b\x7e\x30\x28\x74\x32\x09\x3f\xa3\x06\x34\x2f\x92\xe2\x12\xb5\x9d\xf1\x40\x6f\x10\x84\xe1\xeb\x43\x48\x71\x24\xa6\x99\x85\x3d\xfa\xb9\x17\x89\xb9\xe2\x4c\x87\x1c\xdf\x88\x04\x65\x1a\x8b\xb9\x82\x5b\x2e\xee\x1a\x55\x31\x33\xcd\xac\xa9\x65\xfe\xeb\x3f\xb7\xb1\x7a\x8c\xf8\x60\x27\x7a\xe8\x55\x35\x64\xe8\x6b\x1a\x8d\x0b\xa1\x0e\x55\x5f\x69\xd6\x0f\xa3\x9d\xd4\x23\x12\x7e\x04\x5f\xe1\x91\x4c\x1f\xcd\xef\x5d\xdf\xca\xb1\xa6\xc9\xbb\x2a\xf9\xf6\xf4\xa3\x97\x8b\x5a\x8f\x94\x4e\x10\x6e\x27\x68\x27\xa8\x89\x69\x77\x81\x15\x73\x63\xe7\xf1\xfb\x12\xe6\x3b\x66\xae\xb8\x87\x17\x47\x70\xa3\x54\x86\xa2\x98\x5f\x99\xbc\x51\x22\x5d\x1b\x1a\x09\xc5\xb8\x64\xe6\x50\xf0\x1f\xa5\xb0\x93\xe8\xa6\x51\x53\x02\x19\x6a\x60\xe1\xf7\x96\xb6\x16\x64\x89\x03\x2a\x33\x8c\xbd\xed\xba\xa9\x02\x60\x1e\xf8\x7b\xcc\x36\x81\xee\xc4\x7a\x59\xbe\xc4\x6c\xa7\xe5\xba\xc3\xa8\xd8\x24\x38\x39\x7f\xd3\xdb\xac\x6d\x18\xe5\x4c\x12\xc5\x2c\x2a\x28\x4c\x30\xf9\x04\x72\x14\x59\x25\x0d\x90\xf5\xd8\x77\xc3\x72\x7a\x27\x8d\xed\xb7\xf0\x58\x36\xa4\xb3\x16\xb2\xcf\xc7\xf2\xfc\xb3\xa1\x91\xe9\x7a\x30\x14\x57\x41\x7f\x95\x19\x9e\xcf\x8c\xc5\xfc\x5f\x34\x5a\x3e\x83\x47\xa2\x2c\x39\xf5\x29\x1e\xe9\x0f\x5f\x16\x6d\x7a\x84\xe3\x3a\x51\x85\xc5\xc2\x76\x80\x1e\x91\x9d\x4d\xd5\x8e\x4d\xba\xd6\xca\x13\x1e\xa5\xfd\x0e\x8a\xd5\xf2\x05\x57\x3d\xfd\xcc\x45\x72\xae\xa6\x2a\xb5\xc1\xfe\x65\xa9\x1d\x55\x96\xc4\xe5\x5f\x4a\x8b\x95\x88\x69\x32\xb8\x99\x8e\x46\xcd\x52\x59\x1f\xec\xff\x6c\x4b\xfd\x50\x06\x9c\x35\x0b\x79\xf8\x20\x0b\xfb\xbf\xbc\x0c\xa8\xb9\xf8\xa8\xa5\xc5\x8d\xdc\xcf\x92\xf7\xf5\x7f\xbd\x03\x76\x8e\xf0\x72\xe1\xa7\x55\x70\x4b\xdd\xc4\x36\xa1\xce\xc3\x8c\xec\x46\x63\xd4\xb9\x34\xc6\xaf\x3f\xb6\x41\x67\x85\xac\x93\x49\xb7\x57\x66\xfb\xe2\x4b\x64\x46\x63\xee\x6d\x6f\x0f\xe6\x99\x76\x4f\x82\xd7\x0b\xbc\xca\xb6\xfb\x47\x5e\x9b\xfb\x3a\x3c\xfe\x2c\xfc\x2f\x89\xe7\x86\x17\x6a\xcb\x7b\x79\xe2\xb8\x2c\xb1\x48\x63\x90\xa3\x66\x18\x2f\xf5\x80\x93\xfe\xfe\x81\x2f\xb8\x9f\xdd\x32\x5f\x63\xdb\x6a\xe8\x77\x13\xbe\x49\xf8\xd7\x06\xee\x2a\xfe\x7f\xac\x1b\xbe\x53\x06\xf8\xfa\x65\x80\x29\x8b\x35\x73\xc0\xc9\x6f\x2b\x07\xd4\x68\x64\xd0\x56\x0f\xae\x94\xe1\x3d\x34\x35\x36\x56\xd0\xc2\x66\x82\x75\xc5\x73\x75\xe2\xcc\x35\xdd\x81\xc7\x6a\x42\x16\xfa\xca\xa1\x8c\x9f\x7d\x6d\x92\x4a\x8b\x3c\xb7\x49\x32\xd5\x46\x6f\x2f\x99\xee\xe5\xcb\xee\x0c\xfc\xb1\xfe\x5c\x91\x81\x4b\xbc\xba\x66\x4e\xf2\xaa\x34\x95\x1a\x13\xab\x74\x45\x40\x57\x4d\x65\xe1\x1a\xf0\x44\xc6\x3e\x4c\xa5\x0e\xee\xab\xd5\xd2\xde\x75\x95\x0f\x35\x26\x53\x6d\xe8\xbe\xdf\x88\x40\x26\x8d\xad\x94\x48\x34\x75\x93\x6c\xb6\xc5\x35\xec\x89\x74\x44\xa7\x52\xc7\x1c\x57\x9d\x35\xb7\xf9\xe1\x39\x45\xf4\x10\x1e\xf5\x48\xe9\x1c\x04\x8c\x33\x75\xe3\x0b\x49\x7d\x09\x7c\x99\xa9\x9b\xc6\x93\x72\x6b\x51\x17\x81\x41\x56\xe8\xaf\x6d\x09\x31\x75\x78\xed\x9e\x81\xb3\xda\xf9\x2d\x4b\x8c\xad\x7a\xee\x5d\xf9\xb2\x2f\xb0\xb7\x9f\xd2\xed\xc4\x45\x9c\x77\x91\xe4\xd6\x93\x8f\x0d\xee\x0a\x84\xb9\x1c\x6a\xd6\x16\xe6\x29\xe2\xba\xb1\xc8\x32\x28\x90\x3a\x14\xee\x41\xc1\x3a\x69\xc5\xb6\x1c\x67\xd9\x83\xe3\xef\x38\xcb\xee\x43\xa1\xc5\xbc\x54\x9a\x08\xdb\x2c\xde\x2e\x30\x2f\xbb\x39\xbb\x11\x06\xbb\x95\x36\x33\x2e\xfc\x0c\xe7\xaf\x6a\xc6\xdc\x01\xae\xed\x51\x45\xb6\x06\xae\x1a\x05\x55\x6f\xc2\x8b\xe5\xc5\x84\x5c\xf1\x21\x05\x9e\x89\x94\x5e\x9f\x2f\xa7\xa1\x5d\xe7\xae\x59\x58\x18\x57\xdb\x19\x76\xa9\xf3\xeb\x61\xeb\xd4\x5c\x57\x35\xd1\xe3\x6c\x26\x97\xb4\x66\x83\xa9\x8a\x54\x35\x93\x6a\xf7\x98\x43\x82\x2c\x87\xed\xaa\x83\x78\x27\x8d\xc5\x22\xe1\xb3\x52\xf7\x70\x75\x55\x28\xfc\x11\xb0\x7d\x7d\xb1\x0b\x73\x54\x70\x6c\x15\x45\xd9\x28\x69\x36\x99\x77\x5e\x9b\xe6\x7a\x64\x97\x58\xb9\xef\x8d\xa1\xae\xb5\x15\x32\xad\x6d\xd0\x6e\x61\x56\x5b\x8e\x4d\x70\x9a\x59\x7e\xa3\x32\x99\x40\x26\x8b\x4f\xfd\x01\xbf\x69\xb6\xde\x2d\x60\xea\xbc\x2f\x60\x51\x8c\x7d\xc5\x2d\x57\x69\x6f\x8f\xfe\x32\xc9\xd5\xdc\x63\xc7\x1e\xf8\x16\x6e\x4f\x7c\xe7\xdb\xc0\xcf\xb6\xcd\xc1\x0f\x13\xfb\xe2\x79\xfd\x25\x5a\x67\x8b\x91\x7f\xf4\x26\xe2\xbc\xd9\x76\x97\x7e\xa6\xae\x3b\xbd\xdc\xde\x35\x55\xc0\xd6\xf1\xf0\xdb\x66\xdb\x5d\x02\xa3\xae\xd7\x06\x26\x47\x32\x71\x67\xd7\xad\xcc\xd7\x41\x79\xd1\x6c\xbe\x63\xa0\xd4\x7b\x6f\xac\xbc\x2c\x64\x03\xeb\x29\xb6\xf5\xa0\x75\x29\xda\x7f\x0a\x83\xff\x12\x0b\xe1\xc6\xfa\xb6\x01\x2f\x74\xd7\x89\xaf\xbd\x46\x24\x7c\xcd\xe5\xeb\x86\x20\x4f\xa4\xde\x21\x46\xdf\x5b\x6f\x88\x78\x67\xb1\xa0\x8d\x4c\x8d\xae\xff\xc2\xc8\xee\x10\x98\xef\xad\x37\x30\x4a\x8d\xb7\xaf\xdf\x9e\xba\x47\xac\x6b\x83\x7b\x2b\x73\xbc\x98\x95\x3f\x2c\x13\x7d\xf7\xbd\xe0\xbe\xad\x37\x33\xfd\xc7\x99\xc6\xee\xc5\xe8\x24\x20\xf3\x27\x21\xfa\x4c\x9a\xa9\xa9\x4a\xb9\x29\x1a\x5b\xbf\xbe\xf6\xbd\x47\x29\xbf\xf9\x31\x3a\x89\x67\xd3\xd4\xd8\xc5\x7b\x02\xff\x38\x83\xb6\x3f\xf9\x66\x74\x1d\xb7\x1f\x2a\x3c\x38\xd2\x1c\x82\xb5\xa9\xf3\xe5\xeb\x7b\x50\x37\x77\x78\x7a\x67\xd4\xad\x2e\x71\xbb\x4a\xf5\x86\x27\x7f\x56\x20\x5e\x41\xf5\x7c\x2d\x7a\x9e\xfc\xdf\x64\x19\x17\x71\xfb\xb2\xfe\x9b\x2c\x1f\x6a\xa4\xfe\x26\xcb\xb5\x43\xf4\x43\xf1\x87\x2c\xd7\x0c\x4c\x96\x79\xa8\x24\xb1\xf1\x3d\x68\xea\xa8\x49\xab\x72\xb6\x26\x53\x24\xf2\x50\x89\x22\xdb\xd7\x0e\xa7\x57\xa2\x48\x33\xbf\x0b\x9d\xf2\xa7\x00\x7a\x27\x9e\xfb\x72\x40\xeb\xa9\x5c\xf4\x6d\x01\xaf\xcf\x7f\xb2\xa0\x18\x29\x9d\x8b\xd6\x99\xda\x52\xab\xd2\x80\x28\x66\xe1\xfc\xab\xf4\xaf\xfd\x7e\x16\x99\x4c\x1d\x6d\x8f\xf1\x60\x7c\x30\x84\x5c\xdc\x91\x52\xda\x20\x0e\x41\x24\x09\x96\xf6\xc9\xb6\x22\x8c\xed\x8c\x4e\x31\x46\xdf\x47\x70\xd2\xa5\x79\x71\x04\x5f\xe0\xf2\x13\xce\x02\x95\x57\x7c\x4e\x0f\xbe\xd5\xa1\x07\x5f\xe1\x0b\x3b\xb9\x7e\xb7\x77\x5a\xbf\xae\xf3\x94\xf4\xf0\x37\x16\x8e\xe6\xbe\xb9\xd0\xed\x8e\x54\xdd\x16\x6b\x39\xe4\xc4\x0b\xb4\x5d\x12\x2f\x53\xad\xaa\xf4\x7e\xcf\x58\x0c\xa6\xcc\x1d\x0d\x25\xba\xbe\xd4\x0f\x21\xf9\x2d\x75\x5a\xb6\x56\x24\x7e\x9b\x3f\x56\x38\xb1\xb6\xec\xfc\xe2\x44\x28\xfd\x96\x1a\x0d\x16\x96\x22\x09\x5e\x5d\x5c\x9c\x81\x46\x53\xaa\xc2\xe0\x41\x0c\x47\x16\x16\xf5\x48\x24\x08\xaf\xac\x2d\xdf\xfb\x26\xfc\x46\x36\x7f\x5d\x83\x88\x12\x76\x6a\xf8\xdb\x14\xb4\x8c\x76\xaf\x55\x57\x9a\xfc\xed\x68\x7f\x58\x09\xba\xb7\x9f\xd0\x4e\x75\xe1\xbe\xc8\xd1\x16\xa5\x06\xe1\x60\x67\x25\x35\x41\x91\xa2\x36\x4b\x05\x7d\x9b\xb9\x73\xef\x55\xc8\x85\x61\xef\x79\xac\x79\x11\x02\xba\xde\x65\x7f\x8e\xc6\x88\x31\x65\x69\x92\x4d\x53\x4c\x41\x16\x73\xb2\xbe\x4d\xbd\x26\xff\xb6\xcc\x03\x21\xd8\x6e\xc2\x30\x80\xe9\x12\x67\xf0\x70\x11\x39\x22\xec\x41\xc3\x99\xe6\x83\xf6\x5b\xf3\xde\xf6\x77\xe1\x50\x33\x8f\xad\x3e\x8c\x83\x00\x5d\x7b\xb1\x50\x82\x36\xf4\xff\xf3\xdf\x80\x05\x71\xe2\xde\xb4\x6c\xf7\x48\xd7\x5e\x74\xe3\x5d\x7d\x26\x95\x83\xb6\xf9\x66\xf8\x54\x67\xc1\x6f\x04\xf2\xc3\xfb\x37\x7c\xf0\x80\x16\xeb\xfc\x65\x94\xd3\x0b\xd0\xf8\xfb\x14\x8d\x05\xab\x0e\x06\xed\x37\x89\x2a\xd3\xe7\xbe\x01\xc0\x6b\x3b\xf6\x5c\xed\x38\xd6\x13\x2b\x09\xd1\x56\xa9\x09\x17\x96\x4a\xaf\x39\x18\x04\xd4\x9c\xf7\x53\x9d\xc5\xf3\x90\xff\xa2\xc1\x00\x00\xe0\x6b\x77\x3c\x3f\xf7\x37\x2f\x9b\x97\xaf\x2e\xaf\xfc\x8d\xce\xb7\x44\xbc\x6c\x10\xae\x7b\xf4\x08\xe7\xdf\x1a\xf1\x12\x0b\xcd\xb8\xbc\xa2\x71\x2a\x1e\x26\xa2\xf7\xa8\x78\x73\x05\x67\xef\xce\x2b\x77\x2d\x72\xff\x99\x32\x6b\xf8\x3f\xd6\xd8\x0a\x80\x52\xcc\x78\xc4\xae\x7c\x17\xde\x25\x64\x61\xef\xb5\x1b\x95\xce\xea\xa4\x9f\xf3\x3f\xc5\x6b\xe4\x7d\xf7\x93\x5f\x47\x64\xd5\xb7\x92\x32\xa8\x5b\xf4\x81\xc5\x1f\xd1\xde\x15\x80\x9e\x45\xf7\x71\x94\x30\x31\x2d\x8e\x8e\x9f\x30\x66\x3f\xac\x0e\xd9\xe9\x3a\x11\xfb\xe1\x7b\x06\xec\x43\x8b\xba\x69\xbf\xa0\xfb\xc9\x42\xea\xf8\xe2\x97\x57\x2b\x83\x4a\xd8\xc6\x41\xa7\x55\x61\x15\xeb\xfc\x3b\xb0\x98\xbd\xbf\x60\x68\x9d\x9c\xbe\x39\xbd\x38\x5d\x15\x5b\x73\xaf\xcc\xae\x08\xae\xa6\xd6\xbf\xa3\x2b\x7a\x39\xf7\xaf\x15\x5e\xaf\x4e\x8f\x4f\x56\x05\xd7\x2b\x6c\xec\xa6\x57\x84\x56\xac\x71\x93\xc0\x7a\xf8\xc1\x44\x7c\xfd\xf5\x42\xa9\x2a\x3a\x2c\x8d\xa5\xf3\xe6\x23\x15\xff\x9d\xbd\x28\x9c\x58\x89\xbf\xec\xdf\x02\xaf\x3f\xee\xe6\x82\xca\xd7\xc2\x5e\x9e\x5e\x0c\x79\xbb\x30\x04\xb4\xc9\xc1\x93\x83\xfe\x31\xfa\x53\x8e\x7b\xf7\xd8\xe2\x6c\x12\xe5\xe7\xe1\xd1\x92\x73\x56\x1c\xe8\x3f\x55\xdc\xc7\x5b\xa4\x50\xa5\x59\x9a\x0d\x56\xa3\xc8\xfb\x25\x03\x37\xfd\xb3\xa6\xc3\x84\xab\xb0\x3a\x16\x0c\x97\x02\x0a\xae\x50\x91\x3d\x86\x91\x70\xad\x5f\x58\xf1\x13\x25\xd5\x46\x99\xc1\x64\xf4\xcb\x0d\xcf\xe8\xcf\x93\x2e\x83\xf6\xab\xfb\xa7\x77\x98\x4c\xf9\xb8\xba\xa7\xa9\x7d\xc2\x82\x18\x8f\x03\x2a\xba\x2f\xf4\xd8\xc4\xdf\x6b\x11\x7a\x3c\xcd\xb9\xc2\x1a\x92\x20\x08\x3e\xfe\x2c\xb4\x14\xa9\x4c\xa2\xb8\xe8\xf7\x64\xc4\x55\x54\xaf\xab\x57\xfc\xaf\x87\x70\x70\x70\x40\x3d\x33\x90\xcb\xab\x00\xe8\xdf\x01\x00\x00\xff\xff\xd7\x12\x06\xbf\x7d\x5a\x00\x00")
+
+func initVscodeTypesRuntimeProcessDTsBytes() ([]byte, error) {
+ return bindataRead(
+ _initVscodeTypesRuntimeProcessDTs,
+ "init/.vscode/types/runtime/process.d.ts",
+ )
+}
+
+func initVscodeTypesRuntimeProcessDTs() (*asset, error) {
+ bytes, err := initVscodeTypesRuntimeProcessDTsBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "init/.vscode/types/runtime/process.d.ts", size: 23165, mode: os.FileMode(493), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _initVscodeTypesRuntimeQueryDTs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x58\xcd\x72\xe3\xb8\x11\xbe\xeb\x29\xba\xe6\xe4\x71\xed\xcc\xdc\xb5\x49\x14\xc7\x96\x66\xed\x78\xed\xb1\xe5\x24\x87\x54\x0e\x10\xd9\xa2\xb0\x0b\x02\x5c\x00\x94\xad\x78\xf7\xdd\x53\xdd\x00\x41\x52\x14\x25\xbb\x26\x37\x51\xec\xaf\xd1\xfd\xf5\x2f\xf8\xe5\xfc\x7c\x02\xe7\xf0\x88\x95\x45\x87\xda\x3b\xf0\x1b\x84\xdf\x6a\xb4\x3b\xc8\x8c\xce\xa5\x97\x46\x3b\xa8\x1d\xe6\x20\x35\x3c\xd0\x8b\xab\xe5\xed\xe7\x09\x9c\x7f\x99\xe0\x4b\x65\xac\x07\xa9\x3d\xda\xb5\xc8\x10\x2e\x1b\x04\xbc\x4e\x00\xbe\x9c\x9f\xc3\x42\xa2\x62\xe4\x01\xb5\xa4\x02\x60\x4d\x12\xb3\x29\xcc\x5f\xc8\x04\x47\xff\xff\x0e\xce\x5b\xa9\x8b\x1f\xa3\x92\xfb\x0a\xad\xf0\xc6\xc2\xda\x58\x56\xb4\xa7\xc2\x54\xb3\xe9\x1e\xe4\x9f\x42\xd5\x08\xde\x40\x29\x7c\xb6\x01\x51\x08\xa9\x9d\x67\x30\x1f\x18\x80\x5b\x92\x9a\x4d\x41\xe8\x5d\x03\xbc\x35\x85\xcc\x84\x82\xfb\x47\x30\xe9\x58\x25\x8a\x78\x92\x9d\x4d\x61\x65\x8c\x42\xa1\x1b\xc4\xb2\x5e\x05\xc7\xc8\xba\xcc\x94\x95\xc2\x97\x2e\x77\x0c\x64\x89\xd9\x34\x11\xd8\x80\x2f\x08\x51\xa2\xf6\x60\xb1\x10\x36\x97\xba\x00\xbf\x91\xee\x30\x57\x51\xb6\xe3\x6d\xb2\xa1\xa2\x50\x60\x9e\x8c\x76\xf0\x2c\xfd\x86\x1c\x96\x16\x2c\xba\x0a\x33\x2f\xb7\x18\x5c\x06\xbf\xab\x30\x5a\xf6\xe1\xcf\x1f\x5a\x06\x3e\xfc\xa5\xf7\xd0\x7b\xf5\xa7\xde\x43\xff\x55\x17\xa6\xe4\xaf\x1d\x4e\x99\xff\xf6\x51\xea\xce\x6f\x37\x9b\x82\xae\x95\xfa\x71\xf2\xc7\x64\x32\xcc\x44\x01\xcf\x1b\xb4\x08\x99\x12\xb5\xc3\x37\xa4\xdf\xbf\x58\x1c\x5f\x3c\xea\xdc\x1d\x48\xc6\x3b\x74\x44\x51\x57\xab\x3b\x1a\x35\x96\x24\x2b\x59\xf3\xbf\xff\x33\x66\xa8\x06\x63\x73\xb4\x9d\x70\x9d\x36\xf6\x9e\x11\xfd\x3a\x59\xed\xe0\x79\x23\xb3\x0d\x25\xae\x23\xf1\xb6\x42\x8e\x16\xc8\x92\x64\x73\x69\x29\xc6\x46\xff\x00\xf8\xb9\xf8\xfc\x03\x5c\x2c\x2f\xc1\x58\xb8\x9a\x2f\x2f\x83\x22\x52\x39\xa8\x94\xd1\x0c\xdc\x77\x69\x24\x03\xc7\x18\x91\x3a\x97\x5b\x99\xd7\x42\x41\x61\x4d\x5d\x11\x25\xfc\x83\x0e\x68\x89\x1e\x61\xe7\x2b\x43\xfa\xec\x78\x03\x2b\x0c\x3a\x30\x7f\x2b\x35\x8f\x46\xa9\xba\x8a\x45\xaf\x45\x89\x1c\xf0\xb2\x56\x5e\x7e\x52\xb8\x45\x05\xa2\x28\xc8\x73\xf6\xd1\xa2\xab\x95\x8f\xd1\xb7\x0c\x7d\x3b\x61\x43\xef\xde\xc7\x19\x6c\xc4\x96\xe1\x29\xdf\x93\xc6\x68\xd7\x08\x59\x3f\x05\xdc\xc9\xc4\xef\xe9\x3f\x9e\xf9\x41\x94\x52\x3f\x28\x1f\xcf\x7d\xf8\xc5\x48\xdd\x71\x79\x85\xfe\x19\x51\x83\x17\x2b\x85\x63\x16\xdf\x10\xe6\x35\x65\x6f\x6d\x33\x0c\x80\xd4\xe2\x59\x6b\x88\xb1\x35\xe5\x14\x9e\xf8\xed\x7e\x74\xff\x8e\xbb\x18\xda\x21\xee\x57\xdc\x1d\xcd\x8c\x85\xb1\x28\x0b\x4d\x72\xa3\x3a\xd6\x41\xe6\xa8\x9e\xdb\xf9\xe2\x09\x6e\xee\xaf\xef\x3a\x73\x42\xe1\xda\x0f\x27\xc5\xe3\xf5\xd7\x9f\x06\xa2\x56\x16\x9b\x03\xb2\xa3\x59\xb6\x47\xf7\xfb\x32\x6c\xf9\x70\x0b\xce\x0b\x8f\x24\x3e\x12\x1b\x92\x49\xa1\xe9\xca\x47\xe5\xb1\x97\xf8\x72\xd8\x4b\x6e\xa5\xf3\x60\xd6\xb0\x32\xb5\xce\xa1\x12\x56\x94\xe8\xd1\xc6\x9c\x12\x96\x13\x4a\xe8\x1d\x65\xd3\x09\x37\xfb\x27\xbf\xcf\xcb\x30\x3b\xb1\x0d\xd9\xe9\x6e\xdc\x89\x6f\xe3\xfb\xbd\x95\x85\xd4\x42\xc5\xe4\x30\x36\xce\xce\xb8\x08\xd0\xcb\x01\x01\x21\x4b\xb9\xcd\xb0\x18\xe7\xf4\x40\x6a\xd1\x36\xa3\xde\x0a\xd4\x97\xba\x34\xda\x79\xa1\x7d\x3c\x36\xee\x50\x1d\xaf\xc6\x56\x98\x45\xad\x79\x0e\x84\x13\xe4\x7a\x1f\x27\x89\xa3\x75\x23\x14\x2c\xa8\xf5\x9d\x28\x87\x96\x36\x01\x4d\xd2\xc2\x16\x75\xc9\x34\x37\xb8\x8b\x10\xd5\x96\xc0\x4e\x70\x95\x14\x2e\x55\x55\x67\xef\x12\xf4\x62\x84\x16\x5a\x4d\x62\x6b\xd2\x5b\xb4\x6c\xb1\xb1\x70\xb3\xbc\xbf\x8b\x2d\x22\x30\xbb\xab\xc8\x5c\xc6\x3c\xed\x2a\x4c\x67\x5a\x2b\x76\x34\x7c\xf0\x25\x08\xf2\x4f\x5e\x34\xca\x15\xda\xb4\x52\xae\x7e\xc1\xcc\x47\x9b\xa8\x03\x34\x2d\x63\x60\xd5\xb5\x0b\x09\x49\x43\x3e\x80\x4a\x93\xa3\x9a\x45\xed\xee\x67\x7e\x1a\xd4\x6f\x03\xeb\xf0\xde\x92\x9e\xc0\x8b\x5a\x8f\x43\x05\x51\xd0\x49\x81\x84\xe2\xcc\x38\x86\xd3\x75\x89\x56\x66\x09\x9f\x90\x77\x4c\xc2\x31\x68\xac\xf1\x01\x72\xc9\xff\x1f\x41\x52\x6e\x58\xb1\x4b\x00\x0e\xc4\x51\x79\xd3\x89\x41\x82\x85\xc0\x1c\xc5\x5d\xcc\x97\x9f\x50\x67\x76\x57\xd1\x50\xeb\xc3\x2f\xe6\xcb\xb7\x9c\x29\xf5\x88\xc1\x27\x8f\x6f\xbb\x1a\xac\x68\xc5\xd1\x45\x52\xf0\xb7\xf8\xdc\x01\x8f\x34\xa8\x75\x3f\xd3\xdb\x1c\x19\x9b\x97\x29\xcd\xf7\x56\xa2\xb4\xd0\x70\x79\xb0\x3f\x41\x6d\x81\x9a\xee\x01\xa9\xc0\xf5\xa1\xea\x0e\x3a\x14\xea\xc2\x6f\x40\x54\x95\x92\x59\x9a\xc1\x31\x0f\x3a\x17\x85\x20\x37\xa8\xa4\xa7\x0d\x42\x65\x31\x93\x9c\xe3\x67\x52\x67\xaa\xe6\x36\x9e\x63\x26\x4b\xa1\xa0\x52\x22\x43\xf7\x31\x28\x49\x92\x03\x3d\x57\x5d\x71\xc8\x4c\xdd\xb4\x7d\x97\x09\xee\xa1\x8d\xf8\x08\xa7\xa1\x37\x50\x60\x4f\xf5\xfa\xd0\xa4\x5f\x7b\x2d\x9b\x3b\xd2\xb1\xe6\xb4\xdf\xd9\x0f\x12\xda\x66\x49\x2e\xbc\x38\xd5\x28\x46\x1c\x09\x2b\x99\xc7\xe4\x46\xb8\xc9\xf1\xca\x5a\x29\x04\x53\x85\x3d\x8d\xa2\xc4\x93\x8e\xc8\xe6\x8c\x1a\xcb\x9e\xa4\xe8\x75\xbf\xad\x33\x8a\x6f\x1b\xa8\xa8\x2e\x02\xe1\xfc\x7b\x0a\x67\x07\x96\x9e\x8f\x6d\x77\xff\x59\xc8\xb8\xe5\x51\x7f\x66\x5f\x3b\x9a\x68\x6b\x6b\xf7\xb7\xd9\xd8\x02\x77\x01\x2a\xda\xd2\xbf\x95\x8d\x5c\xbf\xf6\x41\x7b\x77\x14\xd7\x0c\xe7\x1c\x2d\xe1\xf8\x8e\xd5\xe2\xbe\x36\xeb\x74\xf4\x5b\xe8\x3c\xb1\xc9\x40\xde\xb7\x09\x78\x16\xee\x1f\x07\xbc\x5e\x48\xe5\x91\x4b\xa3\x1b\x87\x70\xc3\xe9\xdd\x1e\x0e\x6d\xd0\x71\x0d\x44\x5f\x5b\x0d\x46\xab\x5d\x1c\x8c\xd6\xf9\x08\x6e\x16\x02\xdb\x6d\xf0\xf0\x7b\xef\x0b\x85\x2c\x65\xf8\x92\x11\x2a\x82\x78\xb0\x98\x19\x9b\x37\x85\x4a\x02\xc3\x89\xb7\x5e\x3b\xf4\x1c\x21\x2f\x2c\x9d\x47\x56\x84\xcb\x45\x00\xb7\x21\x33\x2c\x3b\x50\xf1\x4d\x14\xe9\x50\xf2\xba\x12\xb4\x20\xb5\x4d\xa6\x12\x05\x0e\x40\x77\x03\x23\x2b\x64\x28\xb6\x20\x27\xff\x3b\x04\x3e\x22\x91\x9f\x25\x66\xbc\x09\x55\xc5\xbc\x19\x0b\xda\x44\xb6\xe8\xdf\x7b\xad\x0e\x0c\x9b\x7f\x68\xb2\x2d\xac\x83\xbd\x40\xd7\xf4\xc2\x75\xbe\xc7\xb4\xd1\x49\x9f\x73\x02\x20\x96\x44\xbd\x7a\x18\xf9\x82\xc3\xcf\xa7\xfb\xc7\x4d\x6f\x6d\x8f\xa2\xb4\xcb\x93\x28\xbd\x6c\x2d\xb8\xe2\x8b\xfc\xde\x06\x2c\xd7\x50\x59\xb3\x95\x79\x73\xf5\x75\xbf\x51\x33\x59\x3e\x74\x3e\x25\x85\xa6\xaf\xd2\x4a\x6d\xba\x9f\xdd\x46\x56\xe8\x80\x9d\xeb\xa6\x8e\x73\xe9\xf8\x67\x8e\xab\xba\x28\xd2\xba\xcf\x8f\x87\x9b\xd7\xb7\x60\x96\x83\x12\xfd\xc6\xe4\x2e\x8e\x34\xcc\x6a\xcf\x63\x40\xae\xd7\x68\xc9\x9c\x30\x4b\xcc\x9a\x0d\x92\x7b\x77\xc3\x1c\x33\x25\x42\x03\x70\x2e\x92\x1a\xdb\xd5\x04\x00\xce\xe1\xd2\xa2\xf0\x48\xcb\x0d\x3e\xc7\xf7\x92\x77\x94\x0c\x83\xc0\x5f\x79\x32\x13\xc7\x1a\x33\x6f\x2c\x7c\xe2\xd9\xd4\x3e\x5f\x5f\x51\x0e\xd1\xd5\xba\x59\x49\x99\x19\x46\x07\x72\xb4\xf3\xb6\x26\xd9\xb3\x84\x6a\x98\xfa\xd8\x7c\x6b\x0b\x87\xcd\xd9\x3f\x32\x67\x39\xbf\x9d\x5f\x3e\x45\x92\xb9\x53\xa7\x38\x75\xe6\x50\xc7\xc0\x20\x19\x8c\x4b\x9d\x39\xee\x25\x99\xd1\x5e\x48\xae\xca\xa8\xb7\x4d\x99\x64\xe7\x57\xf4\x67\xac\xa4\x4d\xc6\x8f\xf1\x02\x30\x62\x62\x2f\x93\x9a\xef\x82\x50\xc8\x2d\xea\xef\x34\xb2\xa7\x59\xf4\x2e\x7d\xc9\xde\xc7\x5a\xbf\xcf\xde\xd8\x57\x30\x8f\x66\xd4\x8e\xce\xfa\x2e\x43\x3b\x95\x17\xac\x4c\x9d\xcb\xa1\xaf\xab\x64\xeb\xb7\x78\xf4\xfb\x0c\x0e\x46\x78\x03\x05\xfa\x4e\x4b\xe7\x6f\x9f\x6d\x87\xfd\x7f\xf8\x11\xa6\x2b\xd9\x7d\x20\x31\x16\x74\xea\x98\xe5\x7f\x4c\xfe\x17\x00\x00\xff\xff\x20\x12\xf6\x17\xec\x17\x00\x00")
+
+func initVscodeTypesRuntimeQueryDTsBytes() ([]byte, error) {
+ return bindataRead(
+ _initVscodeTypesRuntimeQueryDTs,
+ "init/.vscode/types/runtime/query.d.ts",
+ )
+}
+
+func initVscodeTypesRuntimeQueryDTs() (*asset, error) {
+ bytes, err := initVscodeTypesRuntimeQueryDTsBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "init/.vscode/types/runtime/query.d.ts", size: 6124, mode: os.FileMode(493), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _initVscodeTypesRuntimeStoreDTs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x54\x51\x4f\xdb\x30\x10\x7e\xcf\xaf\xb8\xc7\x36\x2a\xf0\xde\x8a\xb1\x89\x6a\x0c\x6d\xd2\x24\x40\xdb\x03\xe2\xc1\x38\x97\xd6\x6a\x62\x47\xf6\xa5\x25\x42\xfc\xf7\xe9\x6c\x27\x24\x2d\xa5\x1d\xdb\x5b\x5a\x7f\xf7\x7d\xdf\x7d\x77\x76\x72\x96\xa6\x09\xa4\x70\x83\x95\x45\x87\x9a\x1c\x08\x28\x45\x05\x26\x07\x53\x91\x32\xda\x41\x6e\x2c\x38\x32\x16\x41\x1a\x9d\xab\x45\x6d\x05\x1f\x9c\x26\x90\x9e\x25\xf8\x54\x19\x4b\x40\x4d\x85\xf0\xd3\x17\xc0\x39\x3c\xc3\xfd\x0a\x9b\x29\x38\xb2\x4a\x2f\x1e\xa6\x20\x74\x03\x2f\xb3\xe4\x0d\x35\x5a\x62\x24\x57\xda\x91\xd0\xf2\x3d\x15\xa5\x09\x6d\x2e\x24\xc2\x75\x0b\x7e\x4e\x00\xce\xd2\x14\x6e\x3d\x87\x16\x25\x32\x1e\xfc\x57\x6b\x60\x16\x31\xc1\x9f\x28\xa2\x60\x86\x4e\x5a\x15\x3c\xfb\x9a\xde\x1f\x17\x7b\x6b\xa5\xd1\x1a\x25\x19\x1b\x6a\xba\x9f\x3b\x15\xc1\x91\x0f\x66\x94\x71\xc3\x52\x10\x66\xa0\x34\x68\xdc\xc0\x1a\xad\xe3\x74\xc7\x81\x86\x61\x7b\x18\xda\x31\x78\x9c\x69\xdd\x05\x3f\xb3\xe4\x65\x5f\xa8\xa1\x58\x16\xc2\x85\x09\xfa\xec\x84\x24\xa5\x17\xb0\x51\xb4\xf4\xa0\x15\x36\x27\x6b\x51\xd4\x71\x06\x83\xb0\x33\x94\x85\xe8\x28\x02\x5d\x4c\x3b\x01\x80\x14\x2e\x2d\x0a\x42\x10\xbe\x9f\x6e\x7a\x26\x0f\xd8\x80\xf9\x5c\x09\x2b\x4a\xd8\xa8\x6c\x81\x74\x3d\x87\x13\xb8\xeb\xbc\xfd\xf6\x7f\xc2\xf5\xdc\x43\x63\x98\x8e\x6c\xcd\x71\x8e\xda\x92\x36\x94\xf1\x2c\xe9\x8b\xdf\xa2\x5f\xd5\x60\x5e\xe9\xd7\x3d\x3a\x1d\x08\xaf\xb0\x89\x9a\xfc\xc5\x39\xf4\x16\x8e\xb0\x1c\x80\x03\x59\x80\x87\x6f\x32\x01\x3b\x80\x11\x15\x0c\x52\xa5\x3f\x2f\xd4\xda\x1b\x70\x28\x8d\xce\x5c\xd7\xcb\x2d\xd2\xa8\x77\x09\x26\x81\xd1\x5f\x85\x09\x53\x5c\x4c\x41\xd7\xe5\x23\xda\xf1\x14\xd6\x46\x65\xc3\xf6\xae\xfa\xed\xe5\xd6\x94\x1f\x6d\x90\x2d\x2e\x90\x62\x8d\x45\xaa\xad\x76\xbd\x0e\x87\xdc\x60\x2c\xd4\x3a\xc3\x5c\x69\x5e\xd5\x1c\xb4\x21\xc8\x4d\xad\xb3\xae\xaf\xab\x61\x5f\x63\xdf\xd1\xd1\xe6\x27\xac\xe0\xf8\x5c\x11\xd4\x8e\x97\x91\xcf\x2a\x6b\xd6\x2a\xc3\x0c\xf2\x5a\x4b\x7f\x21\xfb\xda\xff\x30\xd2\x05\xd2\xaf\x38\xd5\xaf\x2d\x75\x48\xc4\x57\xc5\xf5\xd9\xee\xf3\xf8\x49\x1f\x8e\xb4\x1f\xdc\xce\x4e\xb4\xf6\xa6\x30\xc8\x14\xce\x3f\xbd\xb9\x27\x7f\x93\x34\x08\x9d\x41\x86\x05\x12\x72\xd8\x1f\xca\xf0\xff\xac\xcb\x1c\x8b\x43\x1b\x73\xb9\x44\xb9\x72\xcc\x20\xbc\x23\x7c\x52\x8e\x77\xe4\xc8\x7b\x4d\x06\x24\x33\x6c\xdb\xb6\x61\xb8\xf1\xa5\x8b\xac\x13\x30\xb4\x44\xbb\x51\x0e\x21\x17\x85\x7b\x9d\xd0\x37\xe1\xb6\x8c\x3e\x1a\x53\xa0\xd0\x43\xb3\xf3\x18\x6a\xb0\x7a\xfc\xe5\x24\x13\xe7\xd1\x09\xee\x26\xb3\xfb\x12\xdc\x20\x59\x85\x6b\xd6\x2b\x0a\xe6\x79\x3b\x96\xb6\xe7\x2f\x1a\x84\xb5\xa2\xe1\x77\x78\x07\xdc\x09\x7f\xc7\xc6\x8d\xc6\xad\xee\xfd\xc3\x3e\x49\xae\x0c\xdb\xc7\x7c\xbc\x19\xef\xab\xdf\x1d\xc0\x77\x06\x7e\xa0\x66\xfd\x80\xdd\xda\x85\x02\x85\x0d\xdd\xee\x13\x64\x06\x0f\x1b\x75\x91\xbd\x24\x7f\x02\x00\x00\xff\xff\xe8\xf4\x11\x73\xcb\x08\x00\x00")
+
+func initVscodeTypesRuntimeStoreDTsBytes() ([]byte, error) {
+ return bindataRead(
+ _initVscodeTypesRuntimeStoreDTs,
+ "init/.vscode/types/runtime/store.d.ts",
+ )
+}
+
+func initVscodeTypesRuntimeStoreDTs() (*asset, error) {
+ bytes, err := initVscodeTypesRuntimeStoreDTsBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "init/.vscode/types/runtime/store.d.ts", size: 2251, mode: os.FileMode(493), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _initVscodeTypesRuntimeSuiDTs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x94\xcb\x6e\xdb\x3c\x10\x85\xf7\x7a\x8a\x81\x97\x86\x7f\x79\xef\xbf\x88\x37\x09\x9a\x00\x41\x9b\xda\xce\xaa\x28\x8a\x09\x39\xb2\x88\x48\xa4\x42\x0e\xeb\x08\x45\xde\xbd\x20\xe9\xc8\xf2\x85\xbd\xac\x6c\x98\x3c\xdf\x1c\xcf\x1c\xce\x7c\x3a\x2d\x60\x0a\x9f\xb0\x25\xd7\xa1\x20\x90\x54\x29\xad\xf4\x16\xb8\xef\xc8\x01\x6a\x09\x4a\x33\xd9\x0a\x05\x39\xa8\x8c\x85\xf5\xe3\x1d\x6c\xa8\xed\x1a\xe4\x70\xef\x46\x6f\x95\xa6\xb2\x80\xe9\xbc\xa0\xd7\xce\x58\x06\x49\xa2\x41\x4b\xa0\x07\xaa\xf3\x0a\x7e\x16\x00\xb1\x1c\xc0\x14\x56\xd4\x59\x72\xa4\xd9\x01\x82\xa5\x17\x4f\x8e\xc1\xb1\xf5\x82\xbd\x25\x50\x1a\xb8\x26\x58\x7b\x05\x95\xc5\x96\x76\xc6\x3e\x97\x51\x39\x2f\x00\xf6\x65\x06\x5f\xb0\xda\x03\x42\x89\x58\x04\x36\x35\xc1\xed\x66\xf3\x00\x2d\x71\x6d\x24\x98\x2a\x02\xf7\x95\x66\x40\xe5\xb6\x9c\xc1\xe4\xe3\xcd\x66\x02\xc6\xc2\xe4\xe1\xf3\x7a\x33\x29\x13\x1e\xf6\xa2\x45\x30\xa4\xf4\xf6\xff\x23\xaa\x35\x86\xe1\x71\x75\x1f\x7b\x81\x42\x90\x73\xa1\x0d\xe8\x1c\xb1\x9b\x81\xe9\x58\x19\x8d\xcd\xc0\x8a\x07\xdf\x83\x6a\x99\x01\x52\x45\x96\x6c\x60\xce\x40\x69\xa9\x44\x6a\x6c\xf0\xeb\x8c\xb7\x82\x4e\xdc\x0f\xe8\xbd\xf2\x02\xf7\x01\xfb\xc6\xa0\x04\x89\x8c\x10\xda\x0c\x3b\xc5\xf5\x45\x48\x97\xae\x2e\x17\xb0\x22\x61\xac\xfc\x90\x58\x33\x40\xdd\x5f\x1d\x88\x5f\x3c\xd9\x1e\x3a\x0c\xd3\x60\xb2\xee\x7d\x44\xef\xb3\x0b\x1d\x41\x07\xcf\xd4\xff\xf7\x03\x1b\x4f\xd0\xa1\xb2\x6e\xa8\xf2\x12\xe4\xe7\x35\xd2\xe7\xd7\x6f\x57\x63\xeb\x5c\x8f\xeb\xd0\x2b\x5b\x14\x4c\x12\x2a\x6b\xda\x58\xf3\x71\x75\x3f\xb2\x6f\xb1\x75\x39\xf2\x88\x7b\x4b\x28\x93\x6f\xd1\x78\x49\xf2\xf4\x0f\xfc\xc6\x7c\x9d\xa4\x7f\x65\x3f\x4c\xf4\xc9\xc8\xfe\x2c\x71\xc2\x68\xc6\xf4\xb4\x50\xf7\xef\x6d\x8f\x13\x1a\x0a\x05\xe1\x72\x11\xce\x0f\xc0\x6b\x62\x54\x8d\x03\x7c\x32\x9e\x4f\x5b\x3e\x28\xbd\x6d\x96\x8b\xf0\xcb\x41\xb8\x0e\xc9\x34\x1a\xee\xae\x63\x54\x8f\xcc\x9c\xa5\xd4\x29\x99\x89\x27\xd7\xd4\x12\x74\x29\x6b\x5a\x50\x08\xb4\x11\x0a\xc3\x44\x4e\x43\x75\x01\x1c\xe5\x19\x74\x63\x04\x36\x04\x8e\x38\x06\xfe\xcf\x2e\x93\xe0\x88\xf6\x56\x64\xd6\x4a\x7c\x3e\xc3\x42\x31\xd5\x68\xcf\x84\xac\xfe\xe3\x86\x09\x92\xe3\xed\x52\x1b\xc7\xb9\xb5\xb2\xdb\xed\x4a\x7a\xc5\xb6\x6b\xa8\x14\xa6\x3d\x2c\x96\x20\xca\x34\x43\x9a\x16\x95\xce\x11\x2f\xd2\x92\x24\xc3\xeb\xc2\x3b\xca\xd0\xe6\xe1\x70\xce\x66\x6e\x8d\x67\x9a\x8c\x1e\x13\xd7\x19\x9c\x13\x31\x07\x19\x60\xcd\xdc\xa5\x45\x1a\xbe\xb9\x03\x31\xc9\x32\xcc\xca\x37\x4d\xec\x6c\x66\xbf\xa5\x50\x8f\x67\xfd\x56\xfc\x0a\x00\x00\xff\xff\x8f\xa6\x2a\xab\xb1\x06\x00\x00")
+
+func initVscodeTypesRuntimeSuiDTsBytes() ([]byte, error) {
+ return bindataRead(
+ _initVscodeTypesRuntimeSuiDTs,
+ "init/.vscode/types/runtime/sui.d.ts",
+ )
+}
+
+func initVscodeTypesRuntimeSuiDTs() (*asset, error) {
+ bytes, err := initVscodeTypesRuntimeSuiDTsBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "init/.vscode/types/runtime/sui.d.ts", size: 1713, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _initVscodeTypesRuntimeTimeDTs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x92\xcd\x0a\xdb\x30\x10\x84\xef\x7a\x8a\x39\xb6\x26\x38\x77\xe7\xd2\x40\x1f\xa0\x34\xb9\x95\x42\xd6\xd2\xca\x11\xe8\x0f\x49\x4e\x53\x4a\xdf\xbd\x48\x8e\x83\x13\x5a\x9a\x4b\x6c\xd8\x99\x6f\x76\xbc\x62\xdf\x75\x02\x1d\xbe\x72\x4c\x9c\xd9\x97\x8c\x72\x65\x9c\x8d\x63\x18\x5f\x38\x69\x92\x0c\x1d\x12\xb2\xbc\xb2\x9a\xad\xf1\x13\x42\xe4\x44\xc5\x04\x9f\x7b\x81\x6e\x2f\xf8\x1e\x43\x2a\x9b\xf9\x26\xff\x25\x00\xa0\xf9\xd7\x5f\x87\x2f\x34\x67\x5e\xfc\xf9\xce\x72\xae\x0e\xcd\x9a\x90\x23\x4b\xa3\x0d\x2b\xf8\xd9\x8d\x9c\x10\x34\x9c\xb1\xd6\x64\x96\xc1\xab\xca\x59\x3c\x3e\x45\x4a\xe4\xe0\x32\xce\x57\x46\xa9\x9c\x12\x90\x2d\x73\x84\xf1\x7f\xd5\xec\xdb\xff\xa9\x8e\x7c\x70\x79\x78\x10\x3e\x0e\xb8\x05\xa3\x0e\xe2\x3d\xe5\x69\xd9\x93\x33\x08\x7a\xf6\xb2\xa5\x2c\xe1\x11\x99\x41\xba\xf0\x26\xb2\x84\x9a\x97\x32\xfe\x93\xf1\x07\x99\x82\x91\x75\x48\xcf\xf5\xfd\xd4\xca\x58\x29\xbb\x7f\x6d\xb0\x3a\x7a\x72\xdc\x3c\xdb\x43\xd0\x4d\x1d\x53\x90\x9c\x73\x45\x48\xb2\xf6\x5d\x43\x69\xca\x38\x2a\x65\x2a\x81\x6c\x7d\x9f\xdd\xf2\x9d\x03\x22\x2d\xc2\x8d\xcf\x6b\x6b\xc7\xba\xec\xa6\xb5\x5d\x43\x0f\xc8\x25\x19\x3f\xed\xd0\xf7\x7d\x05\x0c\x20\xff\xf3\xdb\xf7\x67\xa7\xbf\xc5\x7a\x57\x9f\x59\x5a\x4a\xdc\x08\x93\x0d\x23\x59\x5c\x6a\x23\x17\xdc\x28\x19\x1a\x2d\xc3\xb8\x68\xb9\x46\x5a\xfb\x78\x3d\xbe\x97\x13\x53\x0f\xbb\x1b\xa5\x56\xec\xd0\x86\x0f\xe2\x4f\x00\x00\x00\xff\xff\xb6\xcd\x6a\x4f\xc7\x02\x00\x00")
+
+func initVscodeTypesRuntimeTimeDTsBytes() ([]byte, error) {
+ return bindataRead(
+ _initVscodeTypesRuntimeTimeDTs,
+ "init/.vscode/types/runtime/time.d.ts",
+ )
+}
+
+func initVscodeTypesRuntimeTimeDTs() (*asset, error) {
+ bytes, err := initVscodeTypesRuntimeTimeDTsBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "init/.vscode/types/runtime/time.d.ts", size: 711, mode: os.FileMode(493), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _initVscodeTypesRuntimeDTs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\xcd\xb1\x0d\xc2\x30\x14\x84\xe1\x3e\x53\x58\x2e\x29\xc8\x00\x99\x06\xac\x4b\xb0\xe4\xf8\xcc\x7b\xcf\x52\xd8\x1e\x31\x00\xd7\x5c\xf3\xfd\xd2\xe1\x1a\xb4\x48\xb7\xb4\x1b\xcf\x94\xef\xab\xcd\x1e\xf5\xc4\x3a\x8c\x05\xee\x79\x5b\xfe\x26\xbb\x54\x0f\x1a\x54\xf0\x9e\xb0\x8f\x0a\x5e\x11\x43\xf9\x6f\x94\x37\x1e\x8a\x71\x15\x8c\xa8\xec\x2a\x2a\xec\xce\x26\x6f\x8e\xc6\xe7\xa3\xa9\xa2\x52\x69\x87\x64\x9f\x35\x6f\xcb\x37\x00\x00\xff\xff\xdc\x1f\xa2\x59\xa8\x01\x00\x00")
+
+func initVscodeTypesRuntimeDTsBytes() ([]byte, error) {
+ return bindataRead(
+ _initVscodeTypesRuntimeDTs,
+ "init/.vscode/types/runtime.d.ts",
+ )
+}
+
+func initVscodeTypesRuntimeDTs() (*asset, error) {
+ bytes, err := initVscodeTypesRuntimeDTsBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "init/.vscode/types/runtime.d.ts", size: 424, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _initVscodeTypesSuiDTs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x5a\x5b\x73\x13\xb9\x12\x7e\xf7\xaf\xe8\x4a\xe5\xc1\x81\xdc\x58\x2e\xbb\x3b\x90\x64\x73\x12\x96\xcd\x2e\x90\x1c\x6c\xce\x29\x8a\xa2\x28\x79\xa6\x6d\x6b\xa3\x91\x06\x49\x76\x62\x0e\xfc\xf7\x53\x2d\xcd\x45\x1a\x8f\x27\xa1\xf6\x85\x58\xa3\x9e\xaf\x2f\x92\xba\xbf\xd6\x70\x70\x00\xe3\x55\x81\xa3\x54\xf3\xc2\xc2\x39\xa6\x82\x69\x66\xb9\x92\x06\xa6\x4a\xc3\x87\xd3\x4b\xb8\x5a\x68\x84\x3f\xd9\x92\x95\x42\xa3\xf3\xbf\x06\x07\x07\x70\xba\xb0\x73\xa5\x13\x78\xc3\x6e\xe1\x45\xce\x6e\x7f\xe3\x5f\xae\xd9\x7e\xaa\xf2\x63\x9a\x7d\xc3\xb8\xb4\x8c\x4b\xd4\x09\xcc\xad\x2d\x4c\x72\x70\xb0\x62\x8a\x15\x85\x21\x99\xc1\xe0\xe0\xc1\x83\x01\x3c\x80\xf1\x1c\x21\x63\x96\xc1\x14\x6d\x3a\xc7\x0c\xa6\x5a\xe5\x60\xe7\x08\x06\xf5\x12\xf5\xfe\x00\x1e\x1c\x0c\xf0\xb6\x50\xda\x42\xe6\xcc\x43\x48\x95\x34\x16\x3e\x7f\x36\x0b\xfe\x99\x5e\x4e\xe0\x1d\xa6\x4a\x67\x2f\x8c\xd5\x5c\xce\x76\x81\xc9\xd5\xf1\xf3\x48\x87\x50\x29\x13\xfc\x2b\x66\x90\xa3\x31\x6c\x86\x06\x98\xcc\xc0\xa0\xb5\x5c\xce\x4c\xa7\x9a\xe9\x42\xa6\x14\x0a\xf8\xfc\x39\x1f\x96\xaf\x25\xe0\x75\xec\x54\x3f\x48\xcd\x01\xfc\x66\xcd\x1e\x9f\x49\xa5\x31\x81\x0b\xf7\xd7\xfb\x50\x60\xca\xa7\x3c\x05\xd4\x5a\xe9\x6e\x37\x98\x9e\x2d\x72\x94\xd6\x24\x64\xf6\xc7\x4f\x70\x04\x1f\x3f\x35\xc6\xff\x81\x2c\x43\x6d\x40\x4d\xfe\xc6\xd4\xba\x45\xd1\xf8\x65\x81\xc6\xc6\x46\xdb\x55\x81\xb5\xf0\xd1\x00\xe0\x5b\x3b\x28\xfe\xef\xf1\xe6\x29\xf8\x56\xfe\xf8\xf8\x29\x88\xde\xeb\xfe\xc8\x01\x97\x16\xf5\x94\xa5\xd8\x19\xc3\x7a\xd6\xe3\x20\xfc\x6f\x00\xe0\x90\xa1\xc2\x46\x90\x2c\xc7\x5d\xc0\xfd\xd9\xfe\x2e\x6c\xa1\xdc\x7b\x3f\xda\xda\x77\x02\x07\x03\x70\x93\x27\x41\xb4\x83\xd7\xff\xc2\xd5\xde\x92\x89\x05\x42\xc1\xb8\xf6\x3b\xd6\x6a\x26\x8d\xf0\x5b\xb8\x01\xb9\xc6\x95\x39\x59\xdb\x26\x65\x44\x62\xd0\x37\xde\x4b\xb0\x98\x17\x82\x59\x34\xa0\x34\x08\x36\x41\x11\xe0\x55\xa1\xb8\x27\xe6\x18\x6f\x2d\x64\x5c\xa3\xdf\x4f\x43\x81\x53\xbb\x67\xd5\x9e\xe6\xb3\xb9\x25\x7c\xf7\x83\x9e\xd0\xcc\x4e\xa3\xa7\x7e\xe7\x24\x81\x2d\x61\xf5\x16\x7c\x83\x2d\x6d\xc5\x56\x0b\x9f\xe7\xf8\x55\x49\xdc\xa5\x10\xe4\xcc\x5a\xcc\x80\x19\x78\x3f\x3e\x03\x35\x9d\x1a\xb4\x06\x86\x65\x78\x1f\x1e\x3e\x4d\x1e\x1f\x6e\x05\x3a\x6c\xf9\xf2\x49\x42\x8f\x48\xc1\xde\xa3\x9f\x92\xc3\xc3\xad\x66\xf8\x28\x1e\x1e\x46\xc3\xc3\x5f\x09\x30\x1c\x46\xb3\xbf\xc4\xc3\x9f\xe3\xe1\xb3\x78\xf8\x34\x1e\x3e\x89\x91\x9f\xc4\xb3\x8f\xe3\xd9\xc7\xf1\x6c\xec\xc2\x61\xe4\xc2\xc3\xc3\xc3\x78\xd8\x9a\xfd\x29\x1e\x3e\x6e\x0f\x1f\x87\xc3\x27\xf1\xec\x93\x78\xf6\x69\x3c\xfb\xb4\x3d\xfb\xe4\x69\x30\x7c\x16\x0b\x3f\x8b\x85\x7f\x8e\x67\x7f\x69\x0f\x23\xa8\x5f\xe3\xd9\x68\x8d\x1e\xc6\x2b\x48\xc3\x68\x36\x8e\x46\xbc\x19\x68\x18\x2a\x7a\x14\x07\xe7\x91\x8b\xc6\xf3\xc1\xf7\x3a\x7f\x9c\xa9\xbc\x50\x12\x65\x99\xa2\x32\x9c\x72\xc9\xdd\x31\xa0\xe3\x9a\xab\x6c\x21\x98\x86\xf7\x17\x90\x56\x82\xdd\xd9\xd8\xbd\xdd\x80\x1d\xc5\x99\x84\x72\xbc\x56\xca\xc2\x1f\xe3\x37\xaf\x01\x05\x52\x4a\x05\x35\x75\x69\xb8\x46\x6e\x36\x3d\xc9\x26\x4e\xf8\xa5\x97\x8d\x0f\x54\xa3\xc7\x58\x66\x11\x72\x26\xd9\xcc\x63\x86\xf9\xae\x04\x73\x32\x49\xf3\xd2\x88\xc6\x9b\x01\xa9\x3a\x90\xef\x1e\xba\x40\x6d\xb8\xb1\x28\x63\x44\x57\x4a\x02\x44\xa5\x5b\x88\xff\x5e\xa0\x5e\x85\x65\xe1\xfc\xf2\x0d\x65\xbf\x25\x6a\xc3\x84\xcb\xd1\x39\x93\xbc\x58\xf8\x64\xd8\x60\x6f\x7b\xdf\x47\xef\x2f\x1c\x44\x8c\xfa\x3b\x97\x19\x30\x59\x47\x90\x4b\xc3\x33\xdc\x14\xc5\x29\x97\x59\x02\x43\x83\x02\x53\x4b\x64\xa0\x2e\x24\x41\x64\x77\xe0\xe8\xb8\xd6\x06\xdf\x40\x2e\x84\xe8\x72\x85\x81\xe1\x72\x26\x28\xd8\x36\x9d\x13\x4c\x69\x44\xa3\xef\x0b\x09\x76\x28\x74\x2a\x02\x95\x7d\x5a\x84\x58\x53\x60\x5a\x1a\x4e\x85\xd8\xa4\xe4\xad\xca\xf0\x35\x37\xf6\x72\xfa\xa2\xd4\x75\xdc\xa9\xec\x65\xce\xad\x8b\xe3\x32\x72\x00\x73\x6e\x13\x18\x52\x4d\xab\x60\x77\x21\x43\xcb\xb8\x38\x49\xe0\x25\x09\x9f\x33\xcb\x9c\xaa\xa5\xe2\x59\x0c\xfa\x0e\x65\x86\x1a\x18\x14\x4c\x5b\xce\x04\x2c\x39\xde\xc0\x0d\xb7\x73\xc7\xa1\x82\xdd\xed\x04\x13\x18\xba\x73\x19\x69\x73\x4f\x36\x92\x26\x3f\xad\x8a\xb2\xe4\x78\x85\x97\x6e\x38\x00\x70\x66\x5d\x69\x95\x73\x83\x2f\x3a\x0b\x9d\x17\x65\x02\x04\x9f\x62\xba\x4a\x69\x35\xd1\xce\x55\x06\x29\x13\x02\x33\x50\xd1\x36\xa7\xd1\x49\x02\xc3\x0d\xfe\xba\x73\x04\x37\xb4\x5a\x58\x96\x77\x8d\x2c\xb5\x7c\x89\xb0\x28\x32\x2a\xce\x0d\x96\x13\x5b\xaf\xc7\x43\x47\x10\x4e\x1c\xb9\xaa\xd5\x6c\xb2\xda\x31\x32\x26\x6d\x49\x25\xba\x37\xfd\x59\x25\xb4\xae\xac\xe4\x9d\x00\x1f\xaf\x71\x55\x85\xfc\x93\xd3\xfd\x7c\xf0\xbd\xe1\x54\x5e\x61\xe5\x11\xc5\x98\x76\xe3\x7d\x12\x60\xb8\x22\x6b\x39\x90\xe9\x19\x5a\x72\xc2\x33\xef\x18\x3e\x28\xf8\x4e\xee\xa4\x27\xfd\x8d\xe6\xea\x06\x84\x22\x32\x09\xd9\xc2\x19\xd7\x81\x63\xe6\xea\xe6\xb5\x13\x8a\xb1\x6a\x1e\x09\xdf\x60\xa2\x94\x40\x26\x63\xf8\xff\xce\xd1\xce\x51\x83\x55\xa0\xb1\x10\xc4\x0e\x29\xd6\x78\xcb\x8d\xf5\x81\x90\x36\xce\xd6\x5e\xea\x24\xb9\x13\x8f\xcb\x54\x2c\x32\x22\x84\xb3\xb2\xb1\xe0\xb2\xcb\x76\x3a\x34\x57\x6c\x86\x74\xda\x42\xd8\x60\x91\x2e\x6a\xea\xea\x0a\x15\x55\x80\x68\x95\x7c\xfe\xbe\x47\xad\xf2\xdb\xb8\xb5\x58\x23\xb4\x94\xf1\x7c\x09\xd0\xaa\x40\x6d\x57\x8d\x79\x23\xa4\x34\x11\x6c\xa2\x5d\xe8\xda\xc7\x3f\x6a\x2f\x55\x9e\x32\x53\xdc\x6d\x34\x09\xb7\x8c\x7e\xe5\x8c\xf6\x94\x7b\xb2\x22\x56\xdd\x98\xfc\xaa\x6d\xb2\xb3\xb2\x8b\xb6\x8f\x7a\x50\x36\x39\x1e\x81\xae\x67\x0a\x32\xec\xcf\xd1\xe5\x5b\xbf\xe4\x1d\xa6\xd1\x64\x87\x79\xee\x60\xb6\x6d\xdb\x0c\x34\xea\x02\xaa\x2d\x8c\x57\x26\x4e\xdc\x56\x73\x5c\xa2\xab\x3e\x71\xaa\x7e\x85\x2e\xe3\x57\x49\xb0\x33\xa1\x7c\x0f\xdb\x41\x51\xd0\xc9\xae\x5a\x53\x77\x84\x2a\xf0\x60\xad\x27\x2b\x4f\x87\x6a\x26\xa4\xa1\xaa\x67\x3d\x2d\xf5\xf6\x76\x54\xf7\xba\xce\xb4\xb3\xb2\xde\x25\x8d\x61\xe4\x04\x89\x2c\x52\xbb\x28\xf9\x8d\xab\x7d\x65\x75\xeb\x49\x69\xbe\xea\x39\xa9\x17\x63\x38\x0a\xb5\x1e\xb7\x37\xe0\xbb\xc8\xa7\x5e\x76\x57\x42\xf4\x64\x39\xa7\xb8\xcc\x86\xeb\x5c\xc3\x3f\xaf\x51\xc6\xd1\x32\xbc\x42\x89\x9a\xa7\xde\x81\xc0\xd7\xde\xb3\x55\x97\x77\x38\xea\xbf\xb0\xf0\x09\x23\xa0\x76\x1e\x9d\xd2\x04\x9b\x55\x6c\x6e\x83\x92\xce\x64\x33\xee\xf5\xb1\xaf\x10\x58\x55\x74\x6a\x6f\x78\x6a\x71\xd5\x4c\x0c\x77\x92\xf5\xbc\x74\xa6\x91\x4c\x62\x41\xa5\xe3\xae\x82\x96\x99\x8a\x45\x2b\xd8\x73\x0d\xb3\xed\x8b\x1f\x91\x9a\xfa\x8d\x80\x23\xd7\x5b\x94\x48\x4c\x37\x85\xd9\x71\xb4\xd7\x3f\x0a\x0c\x14\xcc\x18\xaa\x31\x1a\x0d\x4a\x57\x81\x42\x63\x29\x37\xb3\xba\x61\xb9\xa3\x48\xa7\x0e\xab\x56\x12\x2f\x43\x4f\x24\x9a\x90\xba\x93\x48\xc7\x48\xe9\x21\x29\xeb\xf4\xb0\xdb\xbf\x9d\xd6\xfe\xbe\xc5\x74\xe1\xf4\x45\x7c\xd1\x2b\xf7\xb4\xb1\xd0\x6a\xc9\x33\xcc\x5a\x49\x89\xde\x6c\x93\xd4\x4d\x94\x71\x27\x59\xa7\x84\xdf\x83\x83\x62\xfd\x4d\x98\x2b\x27\xcc\x18\x95\x72\x66\x31\xf3\xea\x83\x46\xe3\xae\x04\xd5\xec\x02\x57\x99\x68\x13\xf4\x27\x2a\x5a\xec\x56\x35\xab\x89\x7a\x69\x9c\xef\x08\xc8\x3c\xea\x9d\xdc\x5e\x8c\x0c\x0a\xda\x83\x3e\x83\x1c\xcc\x5d\x4d\x50\xd4\x70\x45\x1b\xaf\xea\xdd\xc2\x6e\xcd\xb5\x6f\x75\x33\xd7\xbf\xd3\xbc\x17\x6b\xdd\x70\x65\x4f\xe0\x08\x2c\x0c\x66\x4e\x9f\x6b\x73\x62\x32\xb7\x6e\x7e\x67\x46\x20\xe8\x74\xa1\x35\xc1\x05\xa1\xa2\xc0\x06\x6d\x4e\x95\x35\xfb\xfa\xb1\xd3\xaa\x13\xc3\xac\x8e\xf4\x46\x28\x93\xdc\xbb\xf5\xaa\x4f\x99\x73\xf2\x8e\x13\xb6\xd9\xed\xd6\x61\xba\xb0\x94\x05\x10\xd4\x12\x75\x47\xdf\x88\x2c\x9d\x0f\xa9\xc7\x99\xb0\xf4\x3a\x81\x61\x1d\x81\x6a\x81\x76\x81\xcb\x0c\x6f\x13\x90\x8b\x7c\x82\xba\x26\x0a\x75\xc6\x6c\xd3\x19\xbb\x1e\xe8\x30\x2a\x39\xe5\xda\xbe\xf0\x3a\xae\xd6\x11\xe2\x08\xc4\x10\xca\x7d\x03\xeb\xee\x06\xd2\x39\x17\xc1\x7a\x4d\x56\xe1\xb1\x0d\xae\x05\xd6\xdb\xe7\xa4\xff\x12\xc0\xa1\x3b\xa7\x85\x32\x68\x6c\xd3\xa5\xd3\xea\x99\x48\x41\x29\xf2\xc3\x3a\x4e\xb3\xac\xac\x66\xc2\x5d\xb9\xa0\x0e\x7b\xd1\xa1\x9b\x6a\x52\x5e\xb8\x9c\x7e\xc6\x55\xf0\x70\xe9\xba\x2f\x51\xaa\xe5\x0b\xd2\x5d\x07\x49\xd9\xde\x1e\xee\xc4\xc9\xbd\x7b\x11\x5b\x48\x2e\x93\xb6\x6e\x8a\x86\x3d\xb9\xae\xbd\x25\x24\x30\x6b\x35\x9f\x50\x65\x70\xc4\xb5\xc1\xa2\x89\x28\xed\xef\x04\xc7\xa2\x1b\x8e\xca\xc2\xde\x46\x40\x9a\xfd\x41\xc0\x9a\x7c\x37\x28\x7f\x1b\x25\xdb\x28\x4c\x76\xaf\xf0\xd9\x1c\xd3\x6b\xe0\x9e\x19\x56\xf9\x69\xce\x0c\xb1\x0c\x4a\x98\x0d\xea\x9c\x19\x97\x7f\x87\xee\xf9\xdb\x18\xbe\xb3\xcd\xf4\xdd\x4f\xd5\xac\xb5\x7d\xa5\xe7\xf7\xb5\xf2\x1d\xe6\x6a\x59\xa6\xf0\xf0\x0e\x43\xbb\xe7\x1b\xcc\x0a\x3e\xcf\x6c\xdc\x79\x63\x35\x9b\x89\x0e\x60\xeb\x9e\xff\x03\x60\x3a\x39\x6b\xa8\x2c\xcb\xfe\x01\x24\x85\xd3\x55\x7d\x0b\x5c\x4a\xd4\xae\x5c\x06\xeb\x63\x73\x31\xa4\x7f\x4e\xba\x4f\x77\xd5\x59\x7e\x5f\x27\x9a\x74\x68\x51\x66\xd5\x87\x32\x98\x33\x99\x89\xf2\x3e\x84\x0e\x35\x19\x78\x7a\x75\x71\x57\x5d\xff\x97\x87\x71\x4d\x09\x31\x9d\xa1\xeb\x2c\x16\xb6\xf9\x1c\x45\x4c\x73\xee\xbf\xb9\x9d\x24\xd5\xd7\xb7\x92\x65\xd6\x6f\x1f\x77\x15\xfc\xca\xc4\xd3\xab\x0b\x67\xd2\x1d\x6c\xb2\x6d\xca\x06\x5e\x59\xa1\xf6\xd7\xbc\x96\x0f\xeb\x1e\xb4\x4a\xdf\x19\x95\x11\x16\x99\x5c\x5e\xea\x79\x12\x57\x7d\xc0\x0c\xae\xc8\x98\x10\x43\x2f\xd3\xa8\xd9\xdf\xdf\x67\x7a\xe6\x3f\x73\x06\xa4\x71\x1c\xf1\xc5\x26\x42\x6e\xd1\x68\xa5\x3e\x9c\x5e\x3a\x9d\xee\xe2\x9d\xa5\xd5\x97\xbd\x4d\xd1\xfa\xc0\x54\x1c\x9d\x0b\xc9\x89\xfc\xf2\xaf\xe8\xe6\x5c\xc4\x05\x8f\x52\x71\x18\x9d\xb9\x32\xb6\xd9\x72\x71\x24\xae\x50\x4f\x95\xce\x81\xc1\xab\x97\xe3\x6a\x7b\x45\xbd\xfc\xb0\x60\x76\xde\xf8\x5c\x30\xcd\x72\x8a\xac\x6f\xe6\xba\x62\xdd\x44\xa2\xbe\x3d\xec\xd0\x77\x75\x39\xea\x50\x78\xa5\x8c\xf5\x77\xbc\x91\xda\xfa\x8e\xb7\x51\x5c\x0a\xc5\xd6\xb8\x87\xeb\xfb\x17\xa0\xd7\xa8\x73\x75\x23\x85\x62\x19\x30\x98\x72\x81\xcd\x17\xfb\xd3\xab\x8b\xc6\xb4\x4a\x6a\x93\x79\xde\x96\xd8\x14\xc3\x96\x48\x90\xb1\xe4\x1d\x06\x76\xdc\xe7\x36\x61\x73\xff\xab\xa0\xce\x03\x56\xad\xdb\xf9\x3b\x49\x78\x23\x5b\x1b\xb6\xd7\xf0\x56\x10\x3b\x82\xbd\x66\xb6\x7f\xcc\xcd\x44\xa8\x49\x73\xe5\x78\x57\xb4\xa3\x06\x2a\x03\xab\xae\x31\xe8\xbf\xc7\x34\x1c\xee\x74\x7f\x1e\xf7\xf5\x2a\x55\xea\x9a\xaf\x55\xe6\x33\xf7\x74\xe8\x27\xdf\xde\xbb\x42\x8f\x02\xc8\xe8\x5a\x6c\x23\xde\x6e\x29\xfd\x9f\xf0\x16\x6f\x17\xf0\xb6\xe0\x1a\xcf\x99\xfb\x2c\x5f\x52\xe2\x2e\x26\x7c\x8e\x02\x2d\x76\xe8\xf4\x13\x7d\x6e\x94\x17\x11\x83\xff\x07\x00\x00\xff\xff\x3e\x9e\xa2\xb7\xe3\x22\x00\x00")
+
+func initVscodeTypesSuiDTsBytes() ([]byte, error) {
+ return bindataRead(
+ _initVscodeTypesSuiDTs,
+ "init/.vscode/types/sui.d.ts",
+ )
+}
+
+func initVscodeTypesSuiDTs() (*asset, error) {
+ bytes, err := initVscodeTypesSuiDTsBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "init/.vscode/types/sui.d.ts", size: 8931, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _initAppYao = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x56\xdf\x6f\xdb\x46\x0c\x7e\x5e\xfe\x0a\x42\x08\xb0\x36\x70\xa5\x66\xd8\x93\x9f\xe6\xa5\xde\x6a\xa0\x49\x8a\x38\xeb\x30\x34\xdd\x7a\x96\xa8\xe8\x90\xd3\x51\xbd\x1f\xf1\x8c\x22\xff\xfb\x40\x9e\x64\xcb\xa9\x53\x14\x1b\xf6\x92\x58\x14\xf9\xf1\xfb\x48\x1e\x4f\x9f\x8f\x00\x32\xab\x5a\xcc\xa6\x90\xbd\xc2\x96\x60\xd6\x75\x46\x97\x2a\x68\xb2\xd9\x04\x8a\x02\xae\x1b\x04\xf6\x00\xaa\x21\x34\x08\x6a\xe7\xc0\xc1\xbe\x21\x17\x86\xe8\x5d\x84\x98\xbf\x16\x57\xa1\x2f\x9d\xee\x24\xcf\x14\xb2\x99\xa5\xd0\xa0\x83\x8d\xa2\xb1\xe7\x0e\x70\x64\x84\x51\x2c\x43\xdd\xa3\xf3\x3d\xcc\xcb\xfc\xf4\x65\xfe\xe3\xe1\xa8\xde\xed\x88\x43\x54\xd5\x6a\x7b\x45\x24\xcc\xe5\x61\x14\xc3\x8f\xd0\x29\x8b\x06\x1c\x51\x80\x4e\x85\x66\x02\x15\xd6\x2a\x9a\x00\xda\x0f\x11\x8c\x54\x9c\x9c\x1c\x01\xc0\x09\xbc\x26\xba\x9b\x82\xc7\x10\xbb\x64\x90\x2a\xf0\x23\x24\xb2\x10\x08\x56\x08\xf8\x37\x96\x31\x60\x05\xeb\x06\xad\x14\x46\x5b\x1f\x94\x31\x89\xa4\xf6\x50\x52\xdb\x19\x0c\x58\xe5\x09\x68\x11\xbe\xf7\x10\x3d\xd6\xd1\x40\x4d\x8e\x41\x83\xb6\xb7\x10\xbb\x3e\x5c\x07\xad\x0c\x54\x2a\x28\x79\xff\xa8\xd8\x09\xa5\x90\x5e\x31\x1d\x56\x9c\x18\xf9\x3c\xa0\x0f\x3e\x9f\x75\xdd\x52\xde\x4c\x0e\x28\x52\x75\x40\xf7\x86\x54\x95\x8c\x16\xd7\x50\xa3\x0a\xd1\x6d\x1b\xcb\x2d\xbb\x4f\x85\x1f\x29\x3f\xa8\x59\xc0\x1e\x13\x64\xcd\x86\x54\xf5\xa4\xe0\x6a\x63\x55\xab\x4b\x71\x62\xe1\xf0\x6a\xf9\xc6\xc3\x0a\x6b\x72\x28\x60\x4d\x08\x1d\x78\x74\xf7\xe8\xc0\x07\xe5\x82\x1f\x89\xde\x0a\x38\x28\x7c\xb6\x7d\xfb\xa4\xf8\x73\x7d\xeb\x54\xc0\xff\x55\x7f\x9b\x72\xfc\x9b\x96\xcb\x1c\x7d\x64\x12\x3d\xc8\x47\x06\x1c\x52\x3e\xaa\x43\xaf\xe5\xe9\x52\x0c\x0e\xfb\xd5\x58\x76\x58\xea\x7a\x23\xc9\x5b\xb4\x11\x3a\x47\x25\x7a\xdf\xeb\x8b\x1e\x2b\xe1\x39\x3e\x3a\xec\x97\xef\x0a\x32\x1c\x9f\xbd\x70\x3e\x4b\xb5\xa1\xb5\xcf\xd9\x9c\xe5\xf0\x07\x45\x28\x95\x85\xd2\xa1\x0a\x08\x1b\x8a\x0e\x68\x6d\xf7\xa2\x7a\xd0\x9f\x3c\x22\x14\x12\x5d\x48\x2e\xfe\x99\x6f\x14\xed\x24\x0b\xe8\x14\x3e\x43\xd6\x87\xb2\xee\x51\xbe\x09\x64\xca\xdd\xb2\xf5\xfd\x07\x78\xd8\x97\x7c\xdd\x68\xe1\xa7\xbe\xb9\xe5\xaf\x79\x0a\x97\x69\x0a\x79\xb5\xc0\x2b\xed\xb0\x0c\xe4\x36\x70\x46\xb6\xd6\xb7\xd1\xa5\x7e\x3f\x83\x4b\xd9\x5d\xca\xc0\xf3\x1d\xd9\x2e\xae\x8c\x2e\x99\x2e\xdb\x06\x22\x03\x78\x7a\x0b\x2b\x55\xde\xa1\xad\x86\xf1\xf2\x14\x5d\x89\x69\x4b\xb5\xaa\xeb\x78\x46\x02\x09\x45\x87\xca\x8c\xdf\x8f\xc1\xee\x70\xc3\xd2\xc2\x0e\x57\x10\x94\xad\xc4\x76\xaf\x4c\xc4\xc1\xe1\x29\x9c\x5f\xf8\x60\xe2\x3d\x1a\xea\x5a\xb4\x01\x5a\xaa\x10\xc8\x9a\xcd\xe4\x8b\xe9\x5d\xfe\xb6\x78\x4c\x7c\x14\xd9\x03\x16\xf2\x3f\x4b\x99\xb8\x7c\x3e\x75\xae\xd8\xd6\x25\x2b\x78\xde\x8b\x80\x6d\x67\x54\x40\x5f\xf4\x23\x95\xf5\xad\x03\x5e\xe0\x4c\xcb\x51\x94\xd3\xc2\x79\xd7\xb8\x82\x4e\xdd\xa2\x4f\xf0\x0e\xd7\x4e\xcb\xfc\xbf\x4f\x79\x39\xc5\x9f\x37\x37\x85\xf2\x1e\x83\xbf\xb9\x29\x9e\xe5\x27\xcf\x8f\x25\x5b\x32\x15\xc7\xa7\x9c\x80\xb1\x19\x2f\x19\xf7\x63\x77\x21\xc7\xa7\xb9\x8f\x3a\x83\x07\xa1\xa2\x0d\x82\xdf\xf8\x80\xad\x50\x92\x0d\x02\x1f\x8e\xa0\xe7\x9b\x51\x3f\x05\x07\x7a\x3e\xb7\x6a\x65\xb8\xf8\x2d\x05\x84\x52\x95\x0d\x1e\xdc\xed\xf0\x3b\x9f\x7e\x14\xef\x6a\x32\xf4\x46\x07\x70\x58\xc5\x12\x3d\x38\xfc\x14\xf9\x80\x83\xd1\x77\x08\x4b\x34\x58\x06\x38\xa3\xb6\x23\xcb\x5d\x4b\x14\x3c\x7c\x8a\xe8\x34\x7a\x58\x6d\x24\x19\x57\x4f\x96\x8b\x4e\x57\xd4\xca\xd1\xda\xa3\xdb\x6f\x55\x22\x77\xc6\xdc\xb2\x29\xd4\xca\x78\x1c\xfa\x30\x9e\xdd\x6f\x3f\x46\xec\x6f\xd4\x86\x62\x98\x0e\x8f\xdf\x01\x9c\xbe\x28\xc9\xc4\xd6\x4e\x81\x2c\x42\xfa\x2d\xb5\x90\x9d\xc0\x33\xeb\xe3\xea\x05\x3f\x8c\x82\x7e\xe8\x83\xfc\xf4\x4b\x37\x11\xb5\xa6\x1e\xaa\x0f\x1a\x62\x1b\x5d\xe1\x54\xfe\xee\x96\xdd\xa1\x1c\xbe\xa1\xf5\x85\x6a\x71\x2a\xbf\xc4\x77\xfc\xb1\x33\x72\xed\xab\xb5\xdb\x45\x49\x22\xcf\xcb\x96\x25\x6f\xa2\x01\x31\x9b\x42\x70\x11\x77\x43\xbd\xbf\x08\x66\x0b\x28\x1b\x15\x56\x14\xe4\xc6\xd3\xe5\xc1\xc1\xf8\x62\xc7\xc8\xad\x52\x83\xe5\x30\x59\xe6\x1a\xab\x49\xa2\x8d\xb4\x45\x5a\x6b\x63\xc4\x67\x85\xa0\xee\x95\x36\x32\x85\xfd\x10\xec\x7f\xc0\x8d\xa4\x59\xa4\xa4\x4c\x75\x5a\x8e\x01\x1b\xe0\x61\x3b\xe8\xff\x61\xa7\x9e\x93\xea\xf4\x96\x5e\xf9\xf5\x35\x7a\x20\x42\x7b\x91\x63\x91\xb7\xbf\x72\x9b\x83\xb5\x0a\x04\x2e\xf6\xdf\x49\x09\xe8\x57\x0c\xe9\xee\xf1\x58\x3a\x0c\xb2\x30\x6b\x47\x6d\x8f\x4e\x8e\xd7\x1b\x28\xcb\xdd\x38\x23\x6b\x65\xcd\x33\x8e\xb6\x01\xe5\x02\x85\xd9\x62\x7c\x4f\xf1\x17\x8a\x9f\x16\x45\xcb\xf1\xb9\xd2\x69\x80\xf9\xfb\x45\xdb\x9a\x5c\xbb\xad\x6a\x7f\x71\x51\x2a\x65\x5a\x0b\x59\xd9\x28\x6b\x91\xf7\x44\x76\x6b\x68\xa5\x4c\x36\xe9\x87\x4a\x3b\x47\x4e\x2e\xb0\x6c\x48\xc1\x09\x86\x34\xd9\x87\xde\x31\xe9\x60\x80\xe3\xf9\xc5\xbb\xfc\xfc\x72\xf6\x76\xf1\xd7\x72\x7e\x76\x35\xbf\xce\xd2\x6a\x7b\xfb\xf6\xf2\xea\x1a\xe6\x17\xef\x16\x57\x97\x17\xe7\xf3\x8b\x6b\x78\x37\xbb\x5a\xcc\x7e\x7e\x33\xe7\x3e\x1e\x3d\x1c\xfd\x13\x00\x00\xff\xff\xce\xd9\xcf\xb2\x2b\x0c\x00\x00")
func initAppYaoBytes() ([]byte, error) {
return bindataRead(
@@ -295,187 +812,267 @@ func initAppYao() (*asset, error) {
return nil, err
}
- info := bindataFileInfo{name: "init/app.yao", size: 603, mode: os.FileMode(420), modTime: time.Unix(1730855738, 0)}
+ info := bindataFileInfo{name: "init/app.yao", size: 3115, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
-var _initChartsPetChartYao = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x59\xdd\x6e\x13\x47\x14\xbe\xf7\x53\xac\x46\xe2\xce\xc4\x8e\xd5\x22\xea\xbb\x42\x6f\x50\x51\x85\x80\x3b\x84\xa2\xf1\xee\x2c\x1e\xb1\xbb\xb3\x9a\x9d\x4d\xe2\x46\x96\x5a\x51\xc0\xa5\xd0\x7f\x1a\x24\x50\x55\x54\xa1\xfe\x5c\x04\x2a\x45\x51\x9a\x14\x2a\xf5\x59\xd8\x75\xf2\x16\xd5\xcc\xda\xeb\x99\xd9\x5d\x7b\x1d\x6d\x88\x93\x0b\x70\x72\xce\x99\x39\xf3\x9d\xf3\x7d\xbb\x73\xbc\x51\x33\x0c\xe0\x41\x17\x81\xb6\x01\xe2\xc7\xaf\xe2\x47\x5b\xd1\xd3\x37\x07\xcf\x7f\x07\x75\x6e\x31\x89\x67\xe3\x5b\xa0\x6d\x6c\x18\xc0\x0e\x1d\x07\xb4\x0d\x1b\x3a\x01\x32\xfa\xc2\x0c\x4d\x86\x89\xc7\xcd\x35\xc3\x30\x0c\xd0\x41\x36\xa1\xa8\x6d\x41\x06\xf9\x7a\x81\x49\xb1\xcf\x82\xa5\x80\x41\xb6\x74\x41\xd8\x3e\xe2\xa6\x7a\xe2\x3d\x72\x4b\x62\x0d\x03\xf8\x94\x98\x28\x08\x78\xa4\xed\x90\xb5\x51\x9c\x14\xc1\x63\x90\x0d\x43\x87\x81\xb6\x71\x03\xb4\x9a\xad\xd6\xd9\xe6\x07\x67\x5b\x4d\x70\x53\xd8\xfb\xa3\x85\xa1\xcd\x10\xcd\xcf\xe2\x43\x6e\x12\x4b\xd6\x46\xfe\xc0\x81\x3d\x12\xb2\xc9\x21\x88\x8f\x28\x54\xce\x95\x9e\x94\xe7\x76\x63\xf4\x27\x23\x35\x0a\x07\x86\x99\x23\x40\x8c\xb6\x9e\x0c\x5f\x7f\x17\xff\x74\x3f\x7e\xfe\x6b\x9a\xb7\x70\xc1\xa6\x58\x53\xfc\x7f\xb6\x43\xc8\x6d\xd5\xac\x81\x99\xfe\xfd\x22\x71\x5d\xe2\x2d\x75\x71\xc0\x08\xed\x5d\x09\x83\x6e\x52\x0f\x1f\xb2\xee\xb8\x72\x5d\xc6\xfc\xa0\xdd\x68\xf4\x20\x81\xbe\x1f\x2c\x99\xc4\x6d\x58\xc4\x04\x46\x5f\x5a\x6b\xf2\x79\xfc\x49\x85\xcd\xc6\x0e\x43\x54\x3e\xb5\x49\x9c\xd0\x4d\x4e\xbd\x21\xb5\xc9\xe6\xce\xe1\xe6\x76\xf4\x70\xef\x70\x73\x1b\xd4\x0d\xb0\x86\x2d\xc6\x73\x3a\x67\xf4\xd5\x05\xcd\x2e\xa4\xac\x60\xbd\x09\x8a\x93\x85\xa3\xad\x5f\x86\x5f\xfe\x11\x3f\x7e\x75\x78\xff\x1b\x6d\xe1\x7a\xb1\xff\xf0\xaf\xfd\xe8\xe7\xaf\x4a\xf9\xbf\xfe\x21\x7e\x36\x88\x7f\xdc\x89\xee\xbe\x28\xe5\xff\x70\x3f\xda\x1d\xcc\x9b\x4f\xe2\xbf\xf2\x76\xf7\x41\xfc\x6c\x30\xef\x31\xe6\x09\x93\x4e\x33\x4f\x98\x74\xa8\x39\xc2\xb2\xa8\x9d\x2f\xf4\x7c\x19\xdd\xdf\x2b\xe3\x39\xdc\xff\x27\xfa\x76\x70\xf0\xf2\x8b\x68\x70\xaf\xdc\xca\xe2\xac\xf1\x83\x27\xc3\xbd\x7f\xa3\xa7\x6f\xca\x67\x33\x5f\x8c\x9c\xd7\x9c\x91\xa2\x88\xf1\xd7\xdf\x47\xbb\x77\x64\xff\xe5\x56\x51\xc0\x83\x9d\xf8\xb3\xcf\xa3\xc1\xbd\xd2\x01\x22\xb7\x78\x67\x70\xb0\xfd\xb7\x1c\xd0\x7a\x4f\x67\x75\x2a\x70\x36\x46\x8e\x15\x4c\x04\x2e\xcb\x73\x85\xd1\xb2\x00\x81\x0e\xf6\x2c\xbe\x2d\x85\xde\x2d\x24\xe9\x15\x40\x16\x66\x89\x0e\xb1\x9e\x2f\x32\xbb\xca\x5d\xae\x60\xf3\x36\xa2\x3c\x31\x9f\x12\x5f\x6c\xda\x4f\x13\xeb\x4f\x57\x87\x51\x8b\xe5\xee\x8f\x3d\x93\xb8\x4a\x02\x0e\xf6\x6e\x73\x4b\x63\xbd\x71\x1d\x76\x1c\xd4\xb0\x90\x4b\x96\x7c\xc4\x64\xa7\x44\xd8\xd5\x47\xc0\xa5\xcc\x52\xab\x18\xad\x69\xba\x9b\x9e\xea\x93\xd0\xed\x20\x7a\x51\xe4\xaa\xc8\x75\x7a\x3e\x55\xad\x7d\x8a\x6c\xbc\xce\x23\xff\x7b\xa1\x04\x88\x87\x97\x89\x5d\xe8\xf0\xa8\x96\x66\xe2\xe5\xfd\x18\xf5\x78\x9c\x05\x19\xd2\x23\x57\xa1\x13\x8e\xed\xe2\x33\x98\xaa\xeb\x69\xeb\x8c\xc9\x98\x8b\xa9\x49\x02\x36\x37\xa2\x55\x62\x65\x12\x87\x50\xd1\x5d\xc8\xd2\x4f\xbc\x60\x38\x2a\x52\x55\xc0\x10\x36\x7f\x7f\x1e\x0b\x9a\x44\x27\xab\x30\x87\x9e\x20\x2c\x10\x5a\x5b\x88\xe7\xf2\x3b\xeb\x4b\x4d\xca\xab\x64\x7d\xa5\xa8\x42\x6a\x5d\x63\x3d\xf1\x6e\x27\x5e\xba\x2c\x0b\x7b\xfc\x8d\xb8\x29\x0b\xb4\xb2\x85\x83\xbd\x0c\x50\x0b\xd6\xce\x99\xa7\xe2\x82\x0a\x44\x35\xe0\x9f\x52\x9d\x99\x55\x9e\x93\x57\x9c\x8a\xcb\x73\x1a\x84\x4b\xb9\xa3\xe4\x96\xc5\x47\x6c\xc5\x24\xa1\x77\x1c\xd4\x29\x28\xcb\x04\xa4\xb7\xbb\x7f\x82\x12\xf9\x8f\xee\x4c\x85\xf9\x8b\x5d\xab\xcd\x6c\xf8\xdb\xa3\x19\x99\xc9\xb7\xb3\x29\x8f\x83\x15\x97\x78\xac\xeb\xf4\x2a\xce\x2f\xba\x7b\x67\x46\x7e\xf2\x6d\x30\x37\x3f\x8b\x98\x8c\xd0\x6c\xf1\xdf\x5d\x5d\xd5\x6b\x5d\x7e\x79\x29\x5a\x5d\x39\x81\x1e\x3d\xb2\x74\xc8\x10\x64\xc5\x7b\x75\x25\x9d\xbc\x24\xa7\x4e\x86\x58\xf3\xd1\x59\xbd\x7b\x4f\x87\x4d\xa7\xc6\x82\xa3\xc6\x69\x57\x3d\x6a\x39\xa3\x87\x62\xd4\x8a\x69\xbb\xe0\xd8\x71\x49\xa8\x1e\xbb\x9c\xf9\x4b\x31\x76\x45\x92\xb2\xe0\xc8\x1d\x0b\x57\x95\xe1\x4a\xbe\x00\x43\x06\x03\x12\x52\x13\x55\x4f\xd3\x2b\x18\x95\x42\x4b\x7a\xf1\xd0\x72\x10\xe6\x00\x51\x8c\xd4\x09\x68\xf2\xb3\xa1\xfd\xae\xbd\xa4\xe8\x1d\x90\x3a\x51\x12\xa0\xeb\xa3\x1c\x21\x45\x30\xd7\x07\x5a\x38\x14\x9b\x2e\x37\xeb\xc6\x72\xb3\x79\x33\xc7\xc9\x44\x5e\x32\x16\xba\x01\xce\x35\xcf\x80\xba\x01\xde\x6f\x9e\x01\x79\x9e\x98\x21\x57\x6a\x88\x0e\xa1\x16\xa2\x57\xc7\x7b\x9c\x53\x86\xce\x86\x52\x54\x23\x1d\x4f\xe9\x16\xa9\x93\x00\x45\xb6\x32\x9f\x32\xe4\x3a\x88\xea\x95\xbd\x10\x67\xa6\xcd\xc9\xcf\x86\x34\xaf\x9f\x8c\x8f\x79\xf7\x5c\xf2\x2c\xb4\x9e\xd6\x4e\xef\x6f\x35\x72\x32\x18\x56\x22\x93\x4a\x95\x3b\x74\xb6\xc7\xe5\x79\xe0\xac\x1e\x0f\x18\x64\x61\x50\xb6\x81\x2f\xc0\x72\x74\x97\x1a\x38\xb3\x81\x70\x80\xeb\x38\xb8\x0c\x3b\xc8\xc9\xc4\xf2\xde\xe0\x4d\xb4\x0a\xb9\xad\xa9\x83\x07\x6c\xe2\xb1\x6b\xf8\x53\x24\x06\x9c\x8a\x51\x17\x92\xca\x69\x32\x46\xa1\xa3\xa1\x30\x32\x8b\x3b\xc8\x85\xf1\x75\x21\x97\x44\x33\xbb\x3e\x27\x26\xf0\x1d\xcc\x2e\xf3\x3b\x8f\x88\x09\xba\x64\x4d\xfd\x0a\x4d\xf3\x57\xa0\xd5\xfd\x4f\x15\xab\x44\x1f\x67\xb8\x31\x6a\xa8\x13\xe0\x95\x3c\x36\x9f\xc5\x2b\x7d\xee\x31\x8d\x55\xbc\xb8\x47\x60\x96\x18\xe7\x4f\xe3\x95\xc6\x24\x8d\x3b\x95\xf1\x25\x60\xb0\x37\x8d\x2e\x39\xf7\xf5\x64\x3f\x97\x10\xf1\xbd\x03\xa3\x21\xca\xb3\xf7\xdc\x0e\x71\x46\xf9\x9e\x3f\x0d\x6c\xca\x74\xe4\x2c\xa1\x09\x8e\xa2\x33\x0b\x77\xec\x79\xd8\x54\x1b\xff\xdb\xaf\xf5\x6b\xff\x07\x00\x00\xff\xff\xed\xce\x48\x49\x3a\x20\x00\x00")
+var _initDataReadmeMd = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x52\x56\x08\xc9\x48\x55\x48\x49\x4d\x4b\x2c\xcd\x29\x51\x48\x2c\x28\xc8\xc9\x4c\x4e\x2c\xc9\xcc\xcf\x53\x70\x49\x2c\x49\x54\x48\xc9\x2c\x4a\x4d\x2e\xc9\x2f\xaa\xe4\x02\x04\x00\x00\xff\xff\x89\x6e\x24\x54\x29\x00\x00\x00")
-func initChartsPetChartYaoBytes() ([]byte, error) {
+func initDataReadmeMdBytes() ([]byte, error) {
return bindataRead(
- _initChartsPetChartYao,
- "init/charts/pet.chart.yao",
+ _initDataReadmeMd,
+ "init/data/README.md",
)
}
-func initChartsPetChartYao() (*asset, error) {
- bytes, err := initChartsPetChartYaoBytes()
+func initDataReadmeMd() (*asset, error) {
+ bytes, err := initDataReadmeMdBytes()
if err != nil {
return nil, err
}
- info := bindataFileInfo{name: "init/charts/pet.chart.yao", size: 8250, mode: os.FileMode(420), modTime: time.Unix(1730855738, 0)}
+ info := bindataFileInfo{name: "init/data/README.md", size: 41, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
-var _initConnectorsOpenaiGpt3_5TurboConnYao = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xaa\xe6\x52\x50\x50\xf2\x71\xf4\x73\x57\xb2\x52\x50\x32\xd4\x33\xd0\x33\x50\xd2\x01\x09\x85\xb9\x06\x05\x7b\xfa\xfb\xa1\x89\xe6\x24\x26\xa5\xe6\x80\xc4\x7c\xf3\x53\x52\x73\x14\xd2\x0b\x4a\x74\x8d\xf5\x4c\x75\x4b\x4a\x8b\x92\xf2\x21\x2a\x4a\x2a\x0b\x52\x41\x0a\xf2\x0b\x52\xf3\x12\x33\x21\x62\xf9\x05\x25\x99\xf9\x79\xc5\x4a\x56\x0a\x20\xdb\x14\x14\x94\x72\x41\xba\x41\xaa\x30\x0d\x50\x50\x50\xca\x4e\xad\x04\xc9\xa9\xb8\xfa\x85\xe9\xf9\x07\xb8\xfa\x39\x7a\xc6\x7b\xbb\x46\x2a\x71\x29\x28\xd4\x72\xd5\x72\x01\x02\x00\x00\xff\xff\xe7\xdf\xfb\xbe\xb1\x00\x00\x00")
+var _initDataTemplatesDefault__assetsReadmeMd = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x52\x56\x08\xc9\x48\x55\x28\x49\xcd\x2d\xc8\x49\x2c\x49\x55\x48\x2c\x2e\x4e\x2d\x29\x56\x48\xc9\x2c\x4a\x4d\x2e\xc9\x2f\xaa\xd4\xe3\x02\x04\x00\x00\xff\xff\x40\x91\x02\x66\x21\x00\x00\x00")
-func initConnectorsOpenaiGpt3_5TurboConnYaoBytes() ([]byte, error) {
+func initDataTemplatesDefault__assetsReadmeMdBytes() ([]byte, error) {
return bindataRead(
- _initConnectorsOpenaiGpt3_5TurboConnYao,
- "init/connectors/openai/gpt-3_5-turbo.conn.yao",
+ _initDataTemplatesDefault__assetsReadmeMd,
+ "init/data/templates/default/__assets/README.md",
)
}
-func initConnectorsOpenaiGpt3_5TurboConnYao() (*asset, error) {
- bytes, err := initConnectorsOpenaiGpt3_5TurboConnYaoBytes()
+func initDataTemplatesDefault__assetsReadmeMd() (*asset, error) {
+ bytes, err := initDataTemplatesDefault__assetsReadmeMdBytes()
if err != nil {
return nil, err
}
- info := bindataFileInfo{name: "init/connectors/openai/gpt-3_5-turbo.conn.yao", size: 177, mode: os.FileMode(420), modTime: time.Unix(1730855738, 0)}
+ info := bindataFileInfo{name: "init/data/templates/default/__assets/README.md", size: 33, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
-var _initConnectorsOpenaiTextEmbeddingAda002ConnYao = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xaa\xe6\x52\x50\x50\xf2\x71\xf4\x73\x57\xb2\x52\x50\x32\xd4\x33\xd0\x33\x50\xd2\x01\x09\x85\xb9\x06\x05\x7b\xfa\xfb\xa1\x89\xe6\x24\x26\xa5\xe6\x80\xc4\x4a\x52\x2b\x4a\x74\x53\x73\x93\x52\x53\x52\x32\xf3\xd2\x75\x13\x53\x12\x75\x0d\x0c\x8c\x20\x8a\x4a\x2a\x0b\x52\x41\x6a\xf2\x0b\x52\xf3\x12\x33\x21\x62\xf9\x05\x25\x99\xf9\x79\xc5\x4a\x56\x0a\x20\x0b\x15\x14\x94\x72\xf3\x53\x08\x9a\xa4\xa0\xa0\x94\x9d\x5a\x09\x52\xa4\xe2\xea\x17\xa6\xe7\x1f\xe0\xea\xe7\xe8\x19\xef\xed\x1a\xa9\xc4\xa5\xa0\x50\xcb\x55\xcb\x05\x08\x00\x00\xff\xff\x9c\x9b\x39\xd3\xbd\x00\x00\x00")
+var _initDataTemplatesDefault__assetsImagesIconsAppPng = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xbc\x65\x4c\xdc\xcf\x1f\x35\xfa\xdd\x65\x91\xc5\x61\x71\x2f\x2e\xa5\x58\x71\x5b\x8a\x15\xa7\x78\x8b\x3b\x2d\xee\x0e\x0b\x14\x6f\x8b\x14\x2d\xb6\x14\x2d\x6e\xc5\xad\xb8\x94\x22\xc5\xa5\xb8\xbb\xcb\x22\x37\xbf\x7f\xf2\xe4\xde\xfb\xe2\x26\xf7\x24\x93\xcc\x99\x33\x2f\x67\xe6\x9c\xcc\x4c\x3e\xd1\x9a\xea\x8a\x78\xd8\x54\xd8\x00\x00\xe0\x29\xbd\x96\xd3\x02\x00\x30\xf0\x5f\xc3\xc2\x00\x00\x50\x58\xf0\x86\x03\x00\x00\x20\x77\x2d\xc5\x57\x40\xc5\x1f\x9a\x5d\x00\x00\xe4\xac\x0d\x94\x6c\xd4\xd4\x00\x4e\x00\x00\xb0\x00\x50\xe4\x7b\x00\xf2\xdf\x14\x00\x00\xa8\x80\xff\x80\x86\x04\x01\x68\xff\x1b\x01\x01\x00\x12\xfc\x7f\x54\x30\x80\x44\xfb\xbf\xfb\xff\x01\xe7\xe6\x67\x38\x00\xc0\x01\x25\x39\x19\x1d\x1f\xd0\x41\x16\x66\x66\xa6\xfc\x6d\x7f\xce\x1c\x17\x47\x3c\x38\x64\x0c\xfd\xbb\xce\x9b\x8f\x2f\x5f\xe1\x45\x61\x0b\xe5\x33\x3f\x82\x64\x88\x06\xc3\x8d\xc0\x4d\xcc\x10\x9c\x9d\x12\x76\xee\x41\xf9\x81\x82\xf1\x7c\x6c\xa8\x85\xac\x5c\xbe\x1c\x9c\x61\x90\x16\x19\xca\x30\xa1\xc2\x9e\xcb\x9c\x6f\xb2\x70\xfb\xb4\x35\x10\xd1\xd6\x16\xe8\xbd\xcc\x7f\xde\x7e\xde\x7e\x7c\x1e\x24\xe5\xdd\x82\x6a\x17\x18\x95\x18\xf5\xde\xca\x32\x89\xba\x51\x16\x06\x11\x85\xdf\x76\x53\x6d\x3c\xe7\xf8\x91\x2b\x37\x6b\x6f\x68\x13\x1b\xc4\x72\x44\xdd\x62\x4d\x03\x7c\x92\x24\xe8\x33\xd9\xea\x07\x77\xf2\x56\xe4\x24\x00\x11\xea\xc9\x0b\x9a\x6c\xe5\x17\x96\x1e\x1c\xd2\xac\x32\x76\xe8\xbc\x1e\x35\xf7\x6c\xb8\x37\x0e\x1c\x4c\x2f\x17\xa9\xb1\x09\xe3\xec\xe3\xff\xaa\x7d\x24\x03\x98\x0a\x07\x24\xc5\xdd\x2f\x96\x9d\x12\xf1\xee\x3b\x71\xaa\xab\x9a\xde\x4c\xee\x92\x64\x41\x39\x71\xab\x5f\x74\xf3\x9a\xec\x46\xb7\x5a\x19\x69\x06\xc6\x3e\xa0\xd4\x41\x91\xaa\xa9\x0f\x42\xf5\xe3\x91\xbd\xe0\xee\x9b\x72\x01\x8d\x93\x64\xb0\x4e\x99\xa2\x75\x2b\xb8\xac\xcb\x1b\x6c\x3c\xc3\x4c\xef\xe1\xa7\xb7\xd7\x6e\x0b\x6c\x82\x79\x48\xe1\xb3\xd7\x88\xad\xaa\x66\xd1\x33\xe3\x86\x55\x3f\xb0\xd9\xd7\x53\xf5\x66\x86\xbc\x00\xca\x41\x4b\x42\x86\x97\xcd\x21\x2b\x54\x08\x6d\x84\x13\x18\xfa\x77\x24\xd4\xaf\xba\x05\x9b\x80\x90\xb5\x05\x3a\x43\x0a\x50\xe4\xb8\x33\xfd\x16\x12\x5e\xdf\x12\xd9\x26\xf5\x35\x36\x06\x21\x2c\x97\x0b\xe4\xa5\x90\xc5\x52\x5c\x32\xc5\x58\x0c\x2f\x94\x3a\x68\xcc\x92\x70\x85\xc5\x24\x79\x70\x18\xa0\x7d\x5c\xdd\xa7\x8c\x01\xc3\xe4\x00\x9b\x86\x6b\xeb\xf1\x05\xa7\x48\x21\xa2\xb1\xef\xb1\x91\xd5\x99\xd2\x4b\x09\xe8\x2e\x1c\x7c\x58\xa3\x18\x36\x16\x53\xd9\xc6\x6d\xd1\xe1\x64\x87\xc2\xbd\xc6\x3a\xca\x31\xe3\x73\x33\x3c\x77\x0c\x88\x11\xf8\xbf\x0a\xad\xeb\x7e\x13\x7f\xa1\x34\x6c\xaa\xea\x1f\xdd\xcf\x6e\xf6\x07\xa2\xf6\x5b\x2a\x3f\xbd\x48\xee\x89\x35\xdf\x10\x6b\x29\x3a\xa2\x03\x62\x24\x67\x6f\xc4\xcf\xb6\x5c\x92\x34\x33\x3f\x79\xc3\x50\x05\x17\x47\x29\x60\x07\x8d\x47\xf5\xbe\x54\xfe\xb2\xc5\xb6\x57\x06\x4b\x40\xd2\x39\xc9\x65\xad\x5b\x1f\x39\xd5\x86\xee\xa8\x01\xc0\x6e\x2b\xb1\x77\x1b\x7c\xfd\xc1\x23\x17\xb5\xd7\x45\x5f\x1f\xc8\x63\xeb\x63\xa2\x3f\x79\x4e\x30\x1a\x7c\x7d\x4e\x29\x09\xc8\x54\x62\x29\x3d\xc9\x3d\x1c\x3a\xef\x9c\x65\xaf\xf7\x46\x31\x28\x49\xd3\xff\xb1\x01\x98\x58\x87\xf3\xc4\xce\xbd\xf1\x02\xa7\xb1\xf7\x50\x76\x79\xb3\x48\xd9\x56\xfc\xf5\x64\xba\x0c\x90\x07\xf6\x07\xad\x87\xd7\xac\x2f\x84\x95\xe6\x1c\x1b\x77\xf6\xf7\x3f\x7e\x9b\x3f\xab\x18\x01\xcc\xee\xff\x39\x25\xbb\xec\xab\x17\xad\x72\xaa\x92\xee\x37\xaf\xef\x58\x02\x4e\xe5\x6e\xab\xf8\x92\xb5\xc1\xfd\x28\x89\xf9\x70\x6d\x7d\x75\x0f\x96\x6b\xad\x10\x52\xf0\x0d\x3d\xcd\xc1\x9b\xa1\x84\x54\xff\x66\x0b\x5a\xa5\x40\x90\x85\x21\x4a\xd3\xa0\x9a\x3b\x03\x14\xc5\x29\xa6\xef\x35\x61\xdc\x8b\xdf\x7a\x7f\x65\x71\x5f\x47\xbd\x41\x66\x3f\x3d\x66\xff\xfa\xaf\x61\x32\xb6\xac\xb7\x16\x0f\x69\x44\xf3\x4c\x79\x83\xf0\x6b\xdd\xd9\xcf\xa7\xac\x5f\x6b\xbe\x86\xa8\x5f\x93\xab\xdf\xdb\x9d\xf5\x6e\x91\xac\x6c\x8c\x4d\x05\xca\x48\xb3\x6f\xff\x61\xed\x8e\xbd\x9c\xd4\xca\xac\x7b\x19\xa3\x12\x83\xbe\x1d\xbc\xe0\xd0\x3a\xc1\xc7\x8b\x70\x53\x5a\xd6\x5b\x3f\x1f\x34\xc5\x41\x04\xa8\x92\x07\xcf\x7f\x08\xa8\xce\x5e\xd2\x82\x37\xcd\x3e\xbf\x2a\x0e\x12\x6f\x8a\x8b\x3d\x1d\x8a\x70\x02\x26\x3f\x23\xf5\x1f\x5e\x35\xd9\x6a\x52\xb2\x3e\xc4\x7e\xd8\x2b\xcc\x71\x06\xd4\xab\x97\xff\xd9\x04\xd5\xe8\x10\xc2\x71\xfa\x70\x74\x57\x17\x02\x2e\x81\x15\xab\x59\x1b\x7a\x28\x6a\x02\x0d\x4e\x88\x72\x08\xbe\xc6\x71\x7f\x6a\xcd\x62\x01\x59\xf1\x7b\xbc\xfb\x27\x33\x21\xad\x02\x36\x90\x52\x59\xd4\xf9\x73\x22\xd2\xce\x5a\x60\x61\x3a\x67\x40\x8c\xf0\x1b\x5b\xdc\xb9\x57\x95\x8c\x9b\x62\xd9\xc1\x66\x0b\xa4\x05\x61\x85\x64\x37\x7f\x34\xc2\xd9\xef\x6d\x52\x2f\x14\x01\x6b\xd2\xad\xa5\x4d\xc6\xe2\x79\x2a\xdf\xf9\x7a\x5b\x83\x3c\x44\xa9\x5e\x1b\x6e\xd0\xf6\x1f\xd6\x26\x9e\x0e\x65\xc7\x00\xef\x6a\x2c\x02\x17\x71\x8f\x27\xf4\xe3\x2d\x71\x7e\x8e\x65\x3b\xd1\x32\x86\x13\xc4\x74\x90\x7b\xa7\x88\xb4\xd1\xa5\x4c\xa2\xeb\x31\x5e\x61\x92\x2f\x68\xee\x79\xf7\x92\xc4\x5f\x6f\x58\xb9\x3c\x36\x09\xe6\x84\x66\xbb\xda\xb7\x4e\xcc\x09\x02\x9b\xb3\xa4\x1f\xa9\xe6\x15\x9b\x3e\xaf\x95\xfc\x28\x68\x8b\x5f\x3f\xde\x67\x71\x98\xa9\x84\xe7\x6a\x5e\x8a\x25\x85\x11\xf5\xda\xaf\xb0\x76\x73\xd5\x3d\x7b\x5a\xd2\xc6\x1e\xf0\xd7\xea\x23\xc8\x61\x24\xf8\xf3\xf4\xe2\xf1\xa2\x54\xb5\x9a\xa6\xa1\x23\xec\xe3\x36\x17\x7a\xa3\xee\x6f\x0f\x65\x2c\x0b\x9f\x7f\x18\xa6\x1c\x0c\xc7\x4d\x13\x45\xf8\xe8\xb4\x5d\x22\xaf\x53\x1d\xf2\x38\x18\x2a\x5b\x2b\x92\x90\xc3\x3b\xad\x26\x7b\x02\x24\xc0\x2d\xf0\x80\x40\x84\x2a\xf2\xa4\xb1\x1f\x0d\x0f\x8f\x3d\x50\x72\x22\x5e\x6d\xf6\x73\xc7\x8b\x47\x79\xf9\x91\x71\x57\x3c\xde\xa2\x28\x4a\x9b\x68\xb9\xa4\xfa\x36\x82\xcf\xd9\x60\x66\xe0\x3e\xe8\xc7\x6c\xcc\x4f\xbf\x87\x1e\x69\x4b\xed\x3c\x39\x86\xe5\x22\xda\x97\x24\x54\x16\x35\xf7\xd2\x7f\xf8\xf7\x81\x48\x1a\x18\xdb\x28\xb4\x2a\x9a\x0f\xe5\xd5\x45\x1b\x14\x00\x08\x5f\x73\x64\x4d\x9a\x42\xe4\xf8\xf6\x92\xdf\xe2\x8c\x87\x2c\x17\x50\x1e\x41\x4e\x69\xc7\x29\x68\x07\x32\x9b\x38\x79\x85\xcf\xca\x00\x01\xf3\x3a\xc4\x64\x86\xb1\x28\x5f\x86\x2b\x7f\x7b\xac\xa0\x0e\x75\x06\xcc\x7b\xfd\x38\x90\x62\xcf\x6e\x3e\xe0\x29\xbc\x0f\xe0\x60\xb8\xf5\x4f\x13\x0d\xf2\x7b\x6c\x59\xd0\x18\xe5\xe8\x24\x5b\xcf\xd2\x0a\xf9\xe0\xe2\xfb\x5e\xd0\x4f\x19\x54\x4f\x61\xca\xe1\xd5\x56\x27\x66\x8c\x16\x15\x7b\xea\x2b\xe2\xf4\xac\x11\x6c\x96\x77\xea\xe4\xe1\x86\x96\xcb\x08\x08\x83\x36\x7f\xf4\x9f\xd6\x3e\x47\x30\x53\x98\x72\x90\x26\xa1\x13\xf6\x53\x70\x17\xb8\x8b\x62\x7d\x01\x12\x09\x51\x05\x66\x24\xcb\x5c\x50\xb3\x0d\x8f\x26\xf7\x6a\xd9\x85\xa0\xbc\xa7\xaa\xee\x58\x75\xf5\x1f\x48\x66\xc4\x17\x21\xbf\x91\xd8\x13\xf6\x45\x0b\x79\xe5\xcf\x5f\x5c\xfc\x81\x01\x1b\xeb\x38\x7f\x31\x30\xb6\x2c\x86\x45\xd3\x41\x36\x78\xd6\xf8\x7b\xb9\x41\x1c\x5d\xdf\xe3\x7b\xd2\xfa\x57\x9f\x8e\x3d\x95\xdf\x4e\xb1\x5c\xbe\x16\x94\x04\x92\x48\xcd\x06\x65\x8b\xbc\x10\xf4\x97\xcd\x20\x8a\x79\x84\xae\x6c\xbd\x69\xa8\x4d\x8a\xd6\x38\xc7\x57\x2e\x2f\xc3\x83\x0a\x6a\xa0\x8c\xf6\xe0\xb1\x65\xb6\x01\xbd\x63\x5c\x5a\x44\xad\x88\x6a\x9a\xda\xc8\xae\x4c\x7b\x82\xe7\xcb\xd4\x2b\xe9\xe4\xf6\x7e\x0c\xc4\xd7\xd3\x64\xdc\xb2\x8b\x00\xf7\xc8\xa8\x72\x41\x69\x41\xeb\x86\xc5\x32\x5d\xe9\x6a\x53\x6e\xbb\xe5\xa6\xcb\x35\x4a\xf4\xfe\x79\x12\x4d\x16\xbb\xc6\x18\xcf\xa5\x3e\xae\x3c\x71\xe6\x07\xc5\xc0\x12\x95\xd1\xe6\x5f\x71\x56\xb7\x77\x71\x9c\x87\xfc\x56\xed\x71\x56\x90\xa5\xea\xb2\x37\x12\x1b\x7a\x51\x39\x69\x3c\x2c\xe2\x3a\x40\xf3\x3f\x4b\xe3\x3e\x2e\x86\x3e\xd0\x05\xf5\x6b\x41\x95\x9a\x2e\xed\xee\x02\x1d\xd5\xcd\xe3\xdd\x97\xff\xd8\x01\xe6\xc3\x5b\xbb\xaa\xcc\x2c\x7d\x89\x1d\x36\xbd\xaf\x95\xfd\x0e\x89\x52\x32\x9b\x24\x28\xe1\x44\xb0\x07\x8b\x67\xc1\xf3\xbb\xbb\xd1\x5e\xec\xf3\xb9\x42\x32\x1e\x3b\x4c\xe4\xf0\x4d\x80\xd6\x4c\xbb\xb5\xdc\x1b\xe2\x31\xec\xce\xd8\xd3\xf5\xed\x21\xd3\x0d\xb7\x8b\x6e\xc6\xc0\x57\x4f\x3f\xf0\xe0\x2c\xeb\x6c\xc6\x2c\xde\x4e\x8e\x0f\x8d\x79\xe8\x7d\x8a\x5e\xa4\x15\x74\x53\x60\x64\xe2\x29\xa7\x68\xb7\x8f\x7d\x45\xd7\x54\x5e\x08\x28\x49\x40\xea\x89\xce\xd0\xd2\x17\x2a\x2f\xa4\x1f\x3e\x4c\xa9\xd5\x65\xda\x6b\xe8\xca\x6b\x42\x59\x4d\x09\x97\x8f\x55\x16\x71\x09\x25\x23\x5f\x47\x43\x63\xff\xd5\x73\x67\xd8\x2b\xbb\xdd\xae\x0d\x27\xb6\xe8\x50\xc4\x76\xe1\x1f\x72\xac\x53\x6f\xd6\x73\xda\x9f\x76\x64\x3e\x82\x38\x3e\xc7\x9f\x31\xc5\x26\xf4\x08\xac\x66\xb8\x6c\xf1\x94\x6c\xd3\xde\x6b\xe7\xbe\xae\x42\x96\x28\x1a\x7e\x67\x43\x70\x96\x50\xc4\xee\xa4\xdd\x7f\xe1\x56\x40\x9f\xca\xc3\x44\xa4\xa4\x77\x5d\xde\xd2\xc8\xa0\x11\xfc\x0d\x76\xdd\x4a\x25\x68\xc1\x04\x2e\x81\x36\x81\xfe\x2d\xda\xc6\x07\x39\xf7\x4b\x50\x83\x93\xa3\x9b\x3e\x71\xe7\x99\x82\x6b\x83\x3e\xcb\xb8\x11\xed\xe1\x94\x86\xc1\x51\x96\x85\x69\xb8\x29\x31\xc2\x8f\xb0\x4e\x4e\x93\xdf\xa1\x71\x88\xb2\xf2\xc2\x1d\xb2\xa2\xeb\x7b\x51\xb9\x7c\x3c\x15\x87\x77\x34\x0c\x3e\x49\xc4\xae\xaa\xd9\x3f\x17\xa2\xd0\x29\x96\x2d\x98\xd5\x77\x1a\x06\x6b\xe2\xb7\xc2\x35\x8f\x1c\x9b\x16\x29\x2a\x3d\xca\xb1\xe0\xa2\x31\xd4\x90\x86\xbe\x16\x8c\x15\xb2\x57\xba\x11\xf5\x7a\x4e\x79\xad\xad\x14\x95\x17\x1e\xc9\xe0\x33\x8c\x4d\xed\xae\xaa\xc1\xb3\xe9\xfb\xb6\xae\x51\x5f\x58\x0f\x66\x78\x47\xf7\xe3\xd1\x94\x4f\x41\x0e\x1b\x30\x14\x16\x8a\xe0\x7f\xca\xd8\xf3\xff\x31\x1c\x47\x5c\xb0\xe1\xd3\xb6\x2d\x6c\x64\x6a\x6c\x71\x9b\xb4\xa2\xab\x04\x3b\x7a\xa0\xca\x9e\xb1\x3e\x3f\xf1\x79\x8c\xa8\x18\xe5\xf5\x0b\x0f\xa5\xaa\x74\x10\xc4\x80\x43\x85\xd1\x65\x22\x57\x95\xa5\x3d\x29\xd1\x4f\xde\x10\xde\xc1\x77\x5e\x4a\x54\x1a\xb2\x03\x3a\x66\x9e\xe7\x9b\x74\x22\x9d\xbb\x4d\x01\x9d\x4e\xd2\x6a\x14\xc6\x14\x5e\x76\x00\x36\x9a\xee\xf2\xa9\x9f\x51\x78\xdc\xb1\x67\x8b\xa9\x6c\x8e\xb1\x01\xdb\x81\xf4\x66\x49\xc6\xc4\x7d\x18\x94\x17\xc4\x4a\x68\x08\x4e\x48\x06\x15\x46\x99\x37\x5f\xe3\xaa\x36\x67\x7c\x90\x6b\x47\xd6\xf2\x31\xf0\x2e\x47\x1d\x44\x7d\xec\xe3\x07\xe1\xda\xc7\xeb\x5b\xae\x8d\xa5\x13\xf1\xed\x93\x95\xa9\x95\x77\x39\xc5\x34\xdd\x9b\x07\x82\xe1\x56\xa3\xb2\x56\x71\xde\xef\x35\xf2\xff\xac\xa5\x51\x94\xa9\x00\x69\xd5\x95\x18\xf9\xed\x24\xef\x55\x31\xf0\x24\x64\xb5\x5d\xe9\x0e\xca\x90\x16\x5d\x27\xce\xf2\xe0\x2a\xcf\x74\x85\x31\xac\x01\x9d\xf1\xa8\x4d\x81\xde\x33\xa4\x9b\xea\x5d\xdc\x73\x10\xb3\xe0\x84\x8a\x7c\xca\x88\x7c\xd8\xf6\x29\x42\x0b\xa3\xb9\x2d\x32\x24\xc9\x5f\xa7\xa7\x88\xe3\x8c\x94\xba\xe3\xca\x22\xba\xd3\xa1\xc1\xe1\xa1\x19\x87\x05\xf3\x04\xa7\xb3\xf2\x4d\xfd\x5d\xf7\xa7\xbc\x07\xde\xdd\xad\xf7\x3c\x77\x9e\x9f\xd9\xb1\xfc\x60\xb0\x05\xaf\x8b\xb5\xd1\x72\x43\x53\x34\x0b\xa7\x70\xf7\x1e\x6f\xb6\xe4\xaf\x17\x24\x47\x3e\xc1\xbb\xcc\x87\x55\x1c\xcf\xee\x71\xa0\xe6\x4f\x47\x5a\x61\x0f\x67\x15\x9f\x62\x4f\x44\xd6\x86\x65\xcf\xb4\xd8\xd2\xc6\x98\xa5\x23\x37\xcb\x35\x48\x94\xe5\x36\xdd\xb6\x6f\x6d\x63\x85\xb1\x8f\x6f\x1f\x2a\x04\x41\x2e\x3d\x2d\x9f\x22\x70\x03\xe9\x47\x7a\x54\x8c\x9b\xbd\x68\x0c\xa6\xf9\x74\x8a\x0b\x88\xa3\x8e\x66\x7e\xd0\xdc\x3a\xe5\xc1\x8e\xdc\x8e\xf0\xdb\x7e\x30\xbf\x21\xc5\x99\xc5\xb5\x55\x60\xf1\xde\xcc\xc6\x54\x07\x8c\x89\x78\x38\xe2\x89\x37\x49\x36\x6c\x49\xb1\xcc\x16\xf3\x4a\x83\x34\x7f\xa5\xff\xb5\x5c\x86\x9a\xe9\x84\xdd\x93\x74\x5c\xaa\x1b\x74\x77\x1c\x0b\x13\xdd\x28\x03\x1f\xc2\x0a\x84\x94\x96\xf0\xb9\xf0\x96\xad\xf0\xab\xd3\x10\x39\x72\x2b\xa2\x20\x87\xa1\x33\x49\x14\x97\x5e\x4a\x70\x0b\xd3\x8a\xa7\xb3\x5d\x32\xd6\x9f\x6c\xae\x06\x37\xb6\xa5\xf5\xdf\x66\x7f\xce\x96\x2c\xb8\x8f\x2b\x9a\x53\xbc\x38\x8e\xd7\xd6\x8b\x28\xa0\x6d\x8f\xeb\xa6\x47\xed\x9e\x5b\x3b\x81\x99\x73\x7f\x2d\xf3\x3a\xb5\xda\x8d\x3b\x06\x69\x6e\x0b\x4e\x6e\x5b\x1a\x2e\xf8\x4f\x9b\xa5\x73\xe8\x02\x7e\x6a\x67\x50\xcf\x54\xdc\x81\x44\xce\x96\x90\x1e\xdb\x7d\x2a\x6c\xf1\x39\xfc\x6d\x06\xb1\xca\x81\xe8\xa4\xee\x80\xce\x8d\xc4\xa5\x31\x39\x57\x67\x87\x34\xeb\x0a\xcb\xd9\x9b\x2b\xfb\x39\xe6\x5a\x2d\xc6\x92\x34\x80\xb7\xe3\xcf\x5f\xd7\x02\xfa\x8c\xe1\x65\x6c\xa8\x4f\x74\xc0\x26\x81\xf5\xd3\x66\xf8\x63\x58\x80\xa2\xf7\x59\x51\xe6\x7d\xaa\x1a\x90\x79\x29\x6e\x7e\xee\xb5\x6c\xbf\xa1\xef\x67\xdf\x16\xfe\xef\xa7\x6e\xa1\xe5\xd7\x25\x3e\x90\xd9\xc1\x23\x59\x25\xa8\x1a\x75\x04\xd1\xe9\x51\xa4\xbd\xf5\xfd\xdc\x37\x92\x5c\xb4\xd1\x41\x1e\x24\x86\x8f\x69\x49\xb4\x33\x18\x8e\x7f\xdb\xe2\x0f\x36\x61\x32\x56\x52\x48\x0f\x06\xd7\x3c\x2c\x37\x13\xf4\xe6\x0d\xd3\xfc\xc0\xbb\xf2\x6f\x9d\x64\x81\x75\x8e\x71\x9c\xd1\xe0\x1a\x9c\x6c\x86\x00\xdf\xb4\xb3\x46\x6a\xab\xe9\x73\xe3\x54\xac\x6f\xa3\xee\x5f\x57\x24\x8e\xc0\x5f\xa0\x8c\xfb\xe4\x3b\xc3\x19\xbf\x56\x7e\x45\x9b\xa9\xcc\xe3\xbd\x26\x6d\x24\x1d\xe9\x72\x12\x6d\xa9\x24\xd9\x27\xd6\xa8\xc9\x84\x36\x83\x4b\x43\xff\x4c\x59\x27\xf9\xed\x13\xdd\x9a\x9b\x3e\x45\x02\xda\x69\x40\xd5\xaf\x2c\x6e\xff\xd6\xdd\x8a\x55\x4c\x35\x19\x49\x37\xa0\xac\x27\x9d\x54\xd7\x97\x64\x32\x4d\x35\xe2\x8f\x81\x94\xca\xbd\x58\x31\xcd\xd2\xe3\xfe\xd6\x10\x87\x48\x50\xfd\xc6\x29\x4f\x73\xf7\x19\x67\xa5\x22\x18\x6e\xbc\xd1\x62\x12\x2e\xb7\xd9\xae\xa7\xb9\xac\x48\xdd\x1b\x51\xdc\x55\x49\xe2\xf4\xe8\xa8\xb8\x61\xe8\x7f\xf9\x1a\xd8\xb9\xa5\x36\x2b\xaf\xd7\xfc\xad\x01\xe3\x7a\xee\xdf\x27\x3c\x88\xf1\xfb\xfe\x73\x6f\x62\x95\xc4\x57\x3a\x28\x80\x29\x5d\x26\x43\x34\xc6\x73\xdc\x19\xa1\x91\xd9\x35\x8e\x59\xe4\xe2\x50\x27\x93\xfa\x8a\xf6\x24\xa2\x54\xcd\x4d\xf8\x98\x2f\x76\x20\x6e\x69\x8a\x09\xd4\x19\x41\x6d\xde\x0b\xa1\x7e\x5e\xbd\xea\xd8\x6f\xf8\x40\x2b\x77\xe0\x29\x74\xc2\x9b\x2b\x1b\x17\x04\x5c\xbc\x8e\x32\xc7\x1b\xf7\x42\xdb\xfd\xe4\x73\x51\x95\x15\x4d\x73\xf8\x01\x76\xb2\xc6\x0a\x6b\x42\x8d\xe0\xec\xf5\x36\x60\x5f\x1e\x25\x00\x93\xdd\xc5\x62\xa1\xa1\x0a\x12\x85\xaf\x68\x43\xe6\x78\x55\xb0\xf1\x36\x8e\xe9\x61\xec\x82\xc2\x48\x45\xa2\x93\xea\x73\x97\x8e\xdb\xcf\x01\x49\xdd\x0d\xb2\x7f\x61\xc9\xf5\x51\x01\xed\x12\xc4\xec\xe9\x40\x3c\xb7\xd5\x1b\xf2\x01\xbf\xa4\xcd\x61\x5f\x4f\xbc\xc3\xa6\x0b\xb7\x55\x11\xa3\x5d\xe6\x97\xcb\x3d\x6e\x7e\x7f\xae\x63\xb1\xac\xec\x1c\xc6\xb3\x2a\x72\x58\x62\x81\x4b\xe6\x4f\x16\x9d\xa3\x86\xa3\x44\xa6\x9c\x54\x5c\xcb\x5c\xc9\x0f\x5c\xa6\x2c\xee\x88\x17\xae\xa1\x74\xaf\x72\x3a\xcd\x93\xe5\x51\xee\xab\x82\x67\x6f\xd2\x51\x38\x9c\xee\xfd\x37\x38\xdc\x9b\xed\x1f\xec\xf4\xd9\xc0\x5f\x44\x11\x67\x66\x9c\xe4\x27\x54\xb7\xf7\xd3\xe2\xf2\x39\x2d\x28\x75\xe7\x8e\xb3\x43\x11\xa6\xd7\x92\x17\x54\x6f\x86\x34\x0a\x70\x38\x8e\xee\x95\x9d\xb0\x73\xdc\x37\xc8\x27\x4e\x1e\xdb\x8c\x36\xb8\xde\x5b\xc3\x10\x6e\x08\x2c\x94\x66\xe0\x5e\x33\xef\xfb\x35\xfe\x86\x1a\x91\xb3\xa5\x44\xce\xc3\x0a\xad\x0d\x2e\x53\x52\x18\xc0\xa8\xba\x30\x8b\x48\xa5\x41\x8f\xe4\x7b\x2b\xea\xa7\x47\xf5\x33\xd0\x9b\x7c\x52\xff\x8b\xa1\x3e\x14\x2e\x7a\x46\xec\xda\xac\x89\xa4\x14\x93\x4f\x2d\xab\x1b\x9c\xb3\xe0\xbd\x24\x35\xb6\xf5\xd7\xa9\x5f\x6c\x22\xd5\xdc\xd0\x67\x09\x85\x27\xbf\x52\xcd\xe1\x24\xde\xbd\x81\x65\xec\x1f\xc7\x8e\x5c\xde\x9e\xc9\x74\xaa\xd5\x9b\xb2\xd7\x5b\x10\x69\xee\x88\xbc\x56\x5f\xb1\xfe\x6a\x2d\x27\x55\xa9\xc0\x09\x39\x3e\x6b\x99\x19\xd0\xb7\x90\x64\x01\x36\x9f\xbd\x66\xd4\x7c\xbc\xe5\x97\xed\xd4\xd8\xe0\x52\x93\x60\x03\x36\x95\x58\xc0\x9f\x9e\x7b\x66\x18\x15\x1f\x9d\x93\x4a\x81\x12\x72\x73\x6e\x3e\x07\x14\x94\xef\x8b\xc1\xab\xdf\x8f\x7c\x7e\x45\x9b\xe3\x65\x8f\xf4\x93\xa9\x1e\x53\xeb\x70\xc5\x58\x5a\xa5\x98\xf5\x1d\x5b\xe5\x5b\xfe\x27\xc7\xf0\xba\x67\xfb\xd9\xdd\x10\xe8\x2c\x7b\x6a\xbb\x70\x71\xa5\xa2\xcb\x5f\xa6\x63\x1d\xb7\x3d\x32\x74\xe8\x75\xcd\x93\x54\x9b\x9d\x3f\x6d\x42\x25\x45\xf2\x21\xf6\x15\x76\xb5\x83\x53\x7c\xae\x7b\xb5\xf0\x3f\x52\x27\xeb\xef\xc7\xc1\xcf\xee\x1e\x47\xdd\xf6\xa5\x58\x8e\xe8\x14\x7b\x08\xa6\xde\x97\x4e\x43\xe2\xf5\x7f\x73\x3c\xf3\x29\x87\xbb\x69\x98\x65\xb3\x97\xcb\xf5\x10\xfc\xbb\x57\x59\x27\x67\x82\x32\x54\x9a\xba\xbe\x3a\xf9\x06\x24\x65\xbe\x64\x03\xeb\xd4\x6d\x5b\x60\xeb\x07\x66\x17\x45\x6b\xe4\x41\x19\x2a\x5d\xcc\x5f\xad\xc8\xc5\x17\xad\xdd\xff\x28\x0d\xf0\xc6\x5f\x5d\x67\xcb\x65\x46\x04\xb8\xcc\xba\x9b\x09\x52\x65\xa7\x0a\x8e\x12\x77\x0c\x2c\xbb\xa3\xa2\xe7\x9a\xfe\xf2\x89\xcf\x5c\x3e\x36\x3b\x6d\xbe\xdb\x38\x6a\x88\xba\xf9\xda\x35\xcd\x36\x09\x41\x76\x37\x7e\x24\x85\xce\x73\x79\x9a\x50\xf6\xbf\x00\x6d\xe0\x7d\xb2\x7f\xb5\xd3\x82\xee\x28\x88\xc2\xad\xe6\x74\x56\x9c\xcc\xa9\x56\x03\x7c\x5d\x28\x84\xda\x21\x4c\x91\xd9\xac\xe9\x1b\x0f\x11\x67\xd1\xbb\x06\x22\x84\xb7\x53\x9a\x5d\x67\x44\xaf\x0f\x60\xf0\xdc\x91\xf5\xed\xc1\x07\xb7\x2c\x92\xb9\xdd\xbf\x22\x03\xab\x10\x9a\x8d\x93\x96\x57\x59\x0e\x4f\xd9\xc5\x10\x4d\x6c\x21\xb1\x24\x9b\x3c\x59\xa5\x85\x3e\x7c\xc0\x6b\x37\x34\x7a\x0d\x55\xd0\xb5\xe6\xaf\x8a\xf8\xcf\x61\x3a\x21\x69\x00\xcc\x0c\xfc\x3f\x82\x82\x32\xb7\x53\x16\x7f\x37\x9b\x25\xb9\xf5\x74\xf0\x3d\xd5\xf6\xa0\x08\xfc\xe3\x98\x64\xc6\x7c\x44\xd0\x42\x80\xac\x8e\xad\xed\x9a\xfa\x85\xe3\xb4\x39\xbf\xf5\xe2\x0d\xd4\x6c\x83\x60\xd3\x8b\x96\x7a\x47\xf7\xf9\x87\xf2\x29\xfc\x77\x9a\xf8\x02\x19\xa5\x75\xc3\x9f\x0d\xcc\x0e\x60\x00\x7e\x9d\x9d\x20\xf1\xaa\x35\x23\x46\x53\xf7\x66\x1a\x4c\xb4\xed\xd3\xd7\x59\x89\x18\x63\x30\x45\x56\xf2\x94\xbd\xde\x9b\x16\x96\x8f\xdb\xe6\x41\x61\xa4\xd4\x1f\x6e\x37\x89\x32\x20\x88\x26\xc8\xe8\x77\xdc\xe5\xe1\xca\x5c\xd6\x87\xdb\xf4\x0d\x0b\x2d\x7a\x9e\x9a\x72\x0d\x20\xbc\x36\xba\x95\x82\xac\xde\x90\x04\x27\x0e\x69\x20\xc2\x7c\xe0\x12\x16\x61\xeb\x08\x8e\x52\xe9\x21\x57\x84\x2f\xba\xa1\xed\x13\xc3\x8d\x98\xda\x79\x9f\xf5\x70\x10\x19\x7c\x05\x12\x09\x4f\x5d\x55\x21\x09\x6c\x08\xb5\xfe\xbf\xf7\x25\x84\x26\x5a\xed\xfd\xcf\xd8\xa2\x5e\x82\x98\x0f\xcb\x79\x92\x5d\x1c\x35\x20\x21\x33\x18\x29\xfc\xcd\x13\x92\x1e\x23\xd9\x69\x11\x03\xfa\x34\x63\x6f\x2e\xff\x2a\x4b\x7c\x0f\xa0\xf3\xc3\x8f\x4f\x89\xe2\xf9\xa4\x93\xe1\x1e\xa2\x09\x83\x53\x31\x49\xe7\x10\x3a\xa8\x41\x72\x49\x40\x96\x35\x35\x42\x23\x09\x95\xc4\xbf\xa2\xde\xbb\x5d\x07\x58\xb8\xa0\x28\xfb\xe6\x31\xd7\xa1\x66\x72\x61\x12\x8f\xbd\xba\x93\x7b\xd3\x3b\xf9\xcd\xfb\x07\x48\xf2\x87\x59\x1b\x31\x22\x0a\x35\x60\xa7\xa3\xe3\xa7\xf6\x04\x6d\x10\xae\xc6\xf7\x1c\xd9\x42\x15\x0d\xc5\x53\xb3\x2c\x99\x19\x21\x09\x56\x58\x48\x35\x04\x31\x60\x1a\xf1\x2b\xc3\x99\x95\x8f\xf1\x61\xbe\xae\x7a\x64\xa1\xa2\xd4\xc0\xea\x7b\xfd\xea\x6e\xb3\x2a\x0b\x98\x09\x0a\xa8\xe5\xb0\x11\xdd\x76\x9f\x0f\x9d\x17\xd1\x81\x59\x89\x43\xae\x20\x08\xe1\xa7\x86\x34\x64\x75\x07\xdd\xd7\xaf\x6c\xe8\x92\x39\x15\xc2\xbf\x9f\x5b\xb7\x1d\xc9\x21\x05\x41\xc8\xb0\x22\x7c\xe7\x47\x68\x01\xc9\xb6\x7f\x06\xd6\x86\x9d\x93\x26\x99\x18\x2c\xa4\x1e\x82\x48\x17\x33\x5c\xfb\xf8\xfb\x56\xe6\xb3\xe5\xd3\x11\x56\xb1\xee\xf8\x91\x51\x8a\x77\x01\x37\xc8\xec\xdb\xf4\xb7\x33\x99\x53\xed\x1c\xc8\x3f\x9e\x4d\x02\xd1\xf2\x14\x96\xd3\x77\xc4\xf0\x79\x71\x5f\x65\xf9\xf8\x7a\xff\xd0\x6f\x59\x56\xbb\xec\xd8\x60\x36\xe0\x4b\x40\xd1\x8e\x6b\x7b\x9c\xde\x84\xcf\x76\x91\x64\x76\xeb\xe4\xba\xfa\xaf\xcf\xc8\x68\x06\x4d\x30\xfc\xf3\xd3\x77\xb0\xf1\x4d\xa9\x0a\xf8\x55\xf3\x31\x7d\xc8\x82\x67\x72\xcf\x5a\xe7\xef\x67\xc9\x8b\x22\x92\x04\x49\x80\x26\xfe\xc3\x80\x12\xef\xb2\x37\x2b\xe0\xc4\x94\x99\x43\x26\x49\x54\x27\x3b\x9e\x45\x27\x5d\x5d\x79\x86\x23\xe9\xd4\xdc\xba\x2a\x0e\x72\x99\x3e\x4e\x74\x79\x6f\x1b\xa8\xb2\xfc\xc2\x55\x7f\xc2\x89\xe5\xe8\xaa\x51\xb0\x62\x70\x99\x88\xba\x9d\x18\x18\xaa\x92\x97\x7c\xb9\x42\x5d\x01\x35\xc3\x7d\xec\x70\xa2\x65\x6a\xa0\xd8\x1c\x2a\x67\x36\x1d\x9e\x0e\x60\x01\x2e\x2e\x3e\xbb\x16\x90\x88\x73\xaa\xc1\xc7\x6a\x26\x08\x42\x97\x2e\xb5\x9f\x5d\x64\x02\x22\xfb\x04\x64\x4a\xc6\xed\x2c\xdc\x63\x0c\x05\xf9\x51\xbb\x33\x3e\x34\xae\xcf\x39\x7a\x57\x0b\xdf\xa5\x6e\x9f\x44\x39\xfb\x33\x20\xf2\x6e\x1e\x57\x7f\x35\xb1\x15\x95\x0a\xf9\x50\xbb\x5e\x24\xa1\x19\xd4\xb1\xff\x85\x25\xd5\x89\x66\x7b\x94\x2f\x4e\x97\x8f\x54\xc0\x3a\x8b\x31\x6e\x39\x1a\x5e\xcd\x19\xd7\x41\xde\xcd\xfc\x15\x77\x12\x74\xc9\x02\xe6\x99\x1f\x46\xcb\x35\xbd\x8a\x22\x01\xa1\xa6\x56\x93\x38\x66\x5b\x8e\x0a\x62\xc4\xbc\x6f\xf7\x5b\x88\xf4\xe9\x2b\xb3\x81\x5f\x47\x04\x7b\x5d\xf8\x45\x45\xfe\x09\xc6\x3b\xd3\x8e\xb1\x9d\xba\xe0\x1d\x03\x0d\x67\x52\xec\xed\xe3\x47\xe8\x73\x3a\x2e\xb1\x07\xd4\xf4\xf1\x5f\x5d\xf0\x18\xbd\xc3\x07\x96\x88\xe6\xda\xe8\x0c\xc6\x7c\x0b\xf0\x8a\x57\x47\x7b\x4f\x4c\xef\xb3\x0a\xe1\xca\x57\x33\x4e\x2f\xec\x06\x9c\x62\xe2\x63\xa0\x0c\xc5\xc4\x07\xcb\x6c\xa0\x1f\xd7\xaf\xa5\xd9\xb8\x87\x58\x11\xab\xda\xcc\x39\x0b\xdb\x72\x7f\xd6\x03\x79\x54\xba\x59\x97\x98\x51\xfe\x24\xc7\x3b\x34\xbd\x9d\xb5\x5f\x08\x4e\x91\x0e\xe0\x81\x4d\x3b\x73\xd1\xd1\xfb\xdf\xb4\xa0\x03\xfa\xba\x5f\x59\xc3\x71\x46\x3f\x2b\xbe\x4f\x99\x2c\xa6\xba\xc7\x5a\x20\x0f\xfa\xde\x59\xc3\xe0\xa2\xbf\xee\x7f\x4b\x82\x1c\xe8\x36\x83\x6e\x66\xda\x0c\xb8\x5f\xd0\xc2\x10\xdf\xd6\xca\x59\x3e\x26\xe1\xdc\xce\xc3\x9d\xbb\xeb\x9c\x16\x8e\x4d\xaa\xa6\x47\x92\x6d\x45\x9a\xbc\x55\x01\x89\xde\x05\x68\x3a\x0a\x35\x70\xe7\x3c\x6a\x23\xbf\x32\xdf\x8a\x22\x54\x69\x91\x33\x32\x31\xbc\x53\x0a\x17\x43\x7c\x65\x6b\x3f\x8e\x81\x73\xd5\x04\x69\x9c\xb3\xaa\xb6\x3e\x24\xbf\xf4\xfc\x0d\xe2\xf4\xdd\xd8\xde\x84\x22\xa7\x97\x5b\x5a\x63\x8f\x34\x6a\xb5\x14\x88\xc9\x59\xd0\x7a\x1d\x96\x0d\x9b\x4b\xfb\x3b\x16\x89\x35\x05\x83\x78\xd4\xda\x5b\x17\x49\xd5\xac\xea\x62\x7d\x5e\x7d\x5d\x64\xa1\xd7\x5b\xb5\x1d\x84\x20\x7c\xed\xd8\xc8\xc5\xd6\x8e\x8f\xb0\x18\xce\x2a\x4f\xb5\xd7\x15\xa7\x9f\xbe\xb7\x10\xde\xb7\x74\x49\xe1\x05\x73\x6e\x66\xd8\xde\x24\x7d\x5f\x5b\x37\x71\x67\xb2\xfe\xd8\xf9\x3c\x28\x2e\x75\xe8\xee\xf4\xea\xf8\x68\x3c\xc3\x76\x5b\xb3\x6c\x23\xe6\x30\x51\x14\x61\xbb\xcb\x71\x85\x68\x08\xfa\x3c\x74\xf6\x20\xd7\xde\x65\x23\xb6\x5f\x49\x22\x98\x89\xa6\xc3\xa8\xb3\xd5\x94\x53\xd3\xae\x69\x44\xf2\xf3\xb1\xeb\x64\xea\x9a\x0e\x0a\x90\x76\xe6\xf8\xfc\xe9\x8f\x29\x60\x45\x79\x97\xce\x50\x05\x71\xd0\x08\xc9\xb5\x4f\x94\x2a\x82\x3b\x29\x26\xd1\xd3\xae\x47\xf5\x89\x40\x53\x79\x45\xa5\xda\x98\x09\x4f\xca\x09\x37\x03\x41\x57\xaf\x01\x0a\x89\x1d\x57\x1e\xfe\x43\x55\xcc\xe7\x3b\xc6\x32\x17\x42\x13\xa8\x05\xac\x3d\x41\x9d\x28\x13\xb9\xb5\xe0\x67\x33\xb1\x47\x0e\x4d\x3a\x1e\xd4\xf1\xef\xc7\xf3\x71\x84\xbc\x0c\x62\x4e\xa4\x72\x95\x8c\xcc\xf8\xaa\x3a\x50\xc9\x3d\x50\x06\x5d\xca\xbb\xc5\x9a\xb7\x6b\x39\x4b\xdc\x78\x4f\xe4\xff\xee\xaf\x09\xf7\xa6\x57\x23\xef\xdf\x44\xcd\x7a\x1d\xc1\x0f\x24\xae\xe4\xcc\x6f\xa2\x03\x16\x12\x4a\x9c\x3b\xd7\x62\x9d\xc9\xa9\xa8\x2e\xbd\xa9\x87\x02\x36\x8e\x4c\x21\x91\x1b\xac\x08\xe4\x4f\x37\xed\xe8\x9e\x88\x81\xe3\x1a\xb5\x2b\xa3\x0f\x74\x28\x1a\xc0\x19\xa5\xed\xb3\x20\x6d\xc9\x79\x16\x3a\x60\x5c\xf7\x5a\x6f\x09\x85\xef\x09\x49\xc8\x9d\x3b\xc6\xef\x3d\x5b\xcb\x00\x20\xe5\xdd\x4a\xd9\x86\x64\xd4\x56\xc3\xce\x3a\x57\x7a\x4c\x67\x3f\xd5\x0e\x27\xcc\xc9\x39\x73\x24\xa7\xbd\x7b\xf8\x41\xb3\xdf\xa6\x4a\x5f\x53\x35\xc0\xaf\x7a\xab\x53\xf6\x81\x85\x66\x9c\x26\xeb\xb8\x4b\xda\xea\x3d\x6c\x32\xca\xe6\xce\xbd\x81\x9c\xb0\x0f\x64\x8c\xcb\xcd\x69\xa3\x5c\xcc\xbb\x23\xf7\x33\xf7\xb6\x0e\x6e\xc0\x3e\x93\x94\xc6\xe4\x9a\xc6\x27\xc3\x1e\x01\xd0\x2c\xc5\xed\xc0\x9e\x74\x74\xc3\x83\x6f\xec\x7a\x4b\xe4\x87\x9a\x98\xc7\x77\x01\x7f\x8f\x68\xe0\x63\xeb\xc5\x3b\x78\xdc\x7a\x62\x25\xcb\x73\x98\x56\x97\x31\x45\xc2\xb4\x46\xb4\x7b\x8c\x3c\x92\x64\x3c\x14\xcb\xb5\x02\xbf\xe7\x21\x88\xb3\xc7\xa2\x91\x5a\x39\xbd\xb8\xdd\xc7\xfc\x97\xcf\x13\x03\xa7\xcb\xf3\x31\xc7\x24\x25\xb4\x94\xe0\x1b\x6c\x47\x35\xfc\x20\x64\xbd\x18\x51\xc2\xb2\x55\xa8\x90\xde\x10\x0d\x5a\x93\xb4\x9c\xe7\x61\x95\xf2\xd9\x4c\xd3\x3f\x9b\xdc\x44\x66\xff\x9c\x85\x54\x00\x32\xd2\x5b\xc7\xe9\x98\x10\x67\xd2\x48\x80\x08\x36\x93\xc2\x26\x3c\x0d\x20\x25\xac\xe2\x02\x61\xf9\xa1\x5b\x07\x05\x86\x04\xb5\xb7\x5b\x58\x1f\x0e\x0f\xd4\x7b\x5f\x6e\x8a\x5a\x67\x97\x29\x03\x51\xf7\x4b\xa1\x27\xcb\x8b\xdb\x7f\x9c\x9b\xec\x3f\x49\xc2\xe0\x11\x36\x9a\x5f\x0a\x9b\x52\x90\x83\xe6\xf1\x85\x74\xff\x6e\x5a\x4e\xfa\xe8\x4b\x95\x92\xe5\x62\x64\xda\x4a\x36\xea\xcf\x1b\x97\xcf\xb1\xfd\xd5\xe1\xc8\x01\xfd\x36\xe7\x00\x5d\x56\x4d\x59\xf1\x17\x65\xb0\x2b\x4f\xc8\x33\xf4\xc7\xea\x9a\x2b\x49\x63\xd5\x56\xe5\xa3\x7f\xd3\x7b\xc7\xbc\x7d\xd9\x13\x89\xc1\x45\x3a\x1b\x5c\xa5\x4c\xf4\x38\x9d\x9a\x47\xae\x26\xa7\x79\x1c\xc2\x19\x4c\xcb\x5c\x3f\x27\x8e\xfc\xa7\x41\xca\x2d\x02\x6e\x33\x1a\xd3\x71\xe6\x7a\xc9\xbb\x98\x4e\x1c\x14\x7c\xec\x11\xaf\x54\xb6\x00\x8a\x97\x8d\xa3\x0a\x86\x27\x5b\x39\xd1\xe0\x1c\xa6\x65\xcb\x0d\x2b\x48\xe0\xf0\xa0\xca\xa0\x32\xd2\xcd\xa1\x99\x71\x67\xfb\x70\x79\xf1\xb7\x7b\x4d\xc4\x71\x2a\x73\x95\x0b\xa3\xc9\xfb\xc8\x52\x2b\xfc\x95\x15\xa1\x89\x05\x9a\x5b\x9b\x13\xc5\x44\xa0\xb5\xfd\x81\xe6\x16\xc4\x68\x3a\xd6\x31\x74\xeb\xa5\x0a\xb0\x0b\xbf\xe0\xdc\xe6\x2b\xb3\x35\x21\x80\x63\xa9\x54\x36\x7e\xac\xad\x32\x39\x30\x55\xd7\xef\x87\x54\xb5\xbe\x31\x32\xf8\x93\xb7\x6c\x1b\x16\x19\x5f\x94\x25\xd0\x4a\x87\x58\xd1\xaf\xac\xbb\x73\x57\x05\x0a\x11\xf7\x9b\x34\xe3\x7b\x7a\x57\x8d\x4d\x67\x5c\x4e\x4b\x35\x2d\xd9\x10\xcd\xf3\xd2\xc6\x51\xcb\x5b\x08\xc3\x4e\x62\xb6\x05\xda\xd2\xa9\x50\x1c\xab\xa2\x37\x06\x36\xf7\x66\x36\xb9\x2a\x09\x69\xc3\x1d\x57\x06\xc0\x2b\x76\x8d\x96\x85\xfb\xe6\xd6\xbd\xed\x6d\xcd\x1f\x97\xb7\x29\x02\x21\x35\xd0\xce\xb9\x8c\x5b\x36\xa3\x73\x82\xbe\x46\xa3\x85\x0e\x4d\xb7\x5e\xc8\xca\xcf\x41\x3d\xf6\xcc\x8e\x05\x0d\xa4\x05\x78\xcc\xe6\x55\x84\xd3\x34\x6b\x2c\x7a\x32\x8b\x26\x77\xb1\xe9\x5b\x4c\x74\x02\x63\x16\x04\xa7\x4c\x24\xf9\xcd\xe9\xe5\x4f\xeb\x14\x97\x83\xb8\x17\x64\x51\x52\x4f\xbd\xbd\xd7\x37\x0d\xfe\x60\xf7\xfd\xde\x77\x0d\x15\xc6\x2c\x08\xeb\xcf\x6b\xcf\x1a\xc0\x9e\x8d\xdd\x76\xcb\x4a\x62\x1b\xf9\x6f\xfa\xbe\x84\xfd\x48\x25\x6f\x31\x66\x01\x58\x08\x5b\x54\x32\x77\xe4\x79\x5b\x3e\x47\xc0\xbd\xca\xec\xce\x89\x6b\xf6\x21\x55\x01\x85\x8d\xdd\xb1\x66\x5e\xd4\x52\xa0\x06\xc1\xa7\x57\x23\x46\x6c\xc0\xe6\x8f\xe6\x14\xe5\x23\x61\x43\xf6\xf8\x0e\x45\x39\xf8\x98\x82\xf4\x33\x7f\x65\x40\x85\x07\x56\x89\x82\x7e\x7c\x48\x63\x43\xc8\xe4\x48\x05\xbd\x3a\x4d\x02\x74\x80\xa0\x3b\x74\x5e\xda\x5f\x37\x36\x03\x41\x9f\x34\x62\xe8\x5f\xa2\xfc\x1c\x1e\xd6\xa6\x85\x46\xa1\x70\xe8\x15\x55\x6e\x5a\xdf\x65\x8d\x61\xf8\x6c\x96\x37\xd8\xee\xea\x72\xf6\xb6\xbb\x9c\xc4\x14\x0a\xd8\x5f\x4b\xed\x0a\x01\x9b\xf8\x79\x5a\xf6\xad\x8d\xb6\x0d\x47\xd0\x9b\x1f\x37\xa4\xca\xd7\xc9\x40\x12\xa0\x21\x1f\x92\x0f\x0a\x0f\x39\xf3\x96\x84\x84\x2a\xb4\x4f\x74\x79\x83\x35\xb3\x4f\x6d\xa4\x8b\xa5\xb8\x8c\xb5\xc6\x8e\x92\x17\x4f\xdc\xe3\x20\x90\x87\xd9\xbc\xb8\xc4\x3f\x68\x2c\xc0\xf3\x3d\x91\xef\xf9\x93\x6b\x19\xad\x5a\x0d\x69\xaf\x57\x96\x8b\x2f\x9f\x24\xaa\x08\xb1\xb0\x92\x80\x24\x70\x76\x0c\x38\x95\x8a\xc9\x76\xb7\x3a\xf5\xb3\x4a\xe5\x0f\x97\x42\xa6\xfd\xd1\x30\xec\x4c\x20\x89\x61\x29\x1a\x10\x78\x3b\xf9\x82\x2e\x20\x99\x01\x29\x70\x96\xec\xc3\x0d\x85\x43\xb5\xc4\xdd\x4a\x35\xda\x7f\x13\x8d\xd1\xde\x2a\x6b\x3b\x42\xe1\x8e\xfd\x5f\x1e\x43\x0c\x47\xd2\x73\x9c\x06\x59\x19\x4d\xed\xc1\x9a\x5d\x63\xd2\x2e\xfc\x52\x26\x9a\xcb\x61\x26\x85\xb8\xf8\x25\xfa\x24\x8f\x6a\x35\x63\x29\x68\x1b\xbf\x90\x52\x27\x1c\x75\x04\x2d\x59\xf5\xb9\xd9\x78\x8e\xf1\x0d\x9b\x4b\x27\x45\xfe\x60\x56\x26\xd3\xf7\xb9\x92\x20\xf6\xdc\x34\x35\x09\x42\xc1\x5b\x82\xa9\xeb\x91\xd4\xfc\xea\x8c\x8e\x96\xfb\x50\xbf\xde\x7f\x2f\xb2\x58\x27\xd2\x77\x07\xf4\xc7\x3e\x31\x03\x2c\x14\x81\x90\x92\x6b\xe7\xf0\xbb\xa3\xeb\x6f\xc2\x32\xf7\x33\x95\xcb\x8d\x28\x1c\xa6\x33\x52\x26\x4b\x28\x1c\xaa\xe8\x5a\x05\x93\x0a\x2a\x6f\x47\xb5\x75\x81\x57\xf5\xa5\xd1\x1e\xff\x11\xfc\xb5\xc9\x83\xc2\x7f\xc9\x30\x8a\xa0\x79\x86\x8e\x96\x1c\x17\x63\x7a\x94\x68\xb4\x2b\xc3\xe0\xd5\xbe\x10\xc6\x60\xcd\xdd\x22\x9b\x23\xc6\xdf\x27\x2f\x7e\xee\x7e\x5c\x56\xcf\xcb\xe7\x21\x81\x9e\x97\xf3\x7c\x72\x5d\x17\x85\x9b\x9b\x71\x9e\x29\xda\x5a\x1f\x77\xf9\x3b\x75\x28\xa2\x0f\x94\x07\x81\x16\xdb\xe8\x0a\x1c\x73\x9d\x89\x7f\x32\x73\x05\x8c\x18\x6b\x23\xc6\x39\x6f\xac\x6c\xd5\x35\xa4\x65\x11\x58\x7f\xb7\x04\x87\xa2\x46\xa9\x89\x3e\xe0\xc7\x13\x4c\x1e\xb3\xbd\x43\xe7\xf9\xfe\x9b\xbf\xc6\x39\xc4\x34\x2b\xe0\x16\x76\x81\x43\xcd\x68\xba\x4b\xf7\x81\xb6\x93\xbc\x8c\x38\xbb\x4a\xf0\x80\xbc\x5a\xd0\xe1\x40\x01\x17\xd4\x82\x86\x66\x2c\xc8\xa2\x1a\x73\xa0\xf7\x1c\x86\xf8\x2e\x78\x2b\x26\xea\xf2\x20\x76\xc7\xc0\xef\x46\x87\x56\xbf\xf9\x99\x47\x4f\xbc\x1e\xca\xe0\x1c\x35\x55\x8e\x26\x63\xcf\xeb\xda\x5d\x52\x8b\x76\xbe\x78\x96\x53\x5d\x82\xb6\x91\xfc\xe2\xfe\xc0\xaf\x16\x62\xfc\xc6\x67\x34\xf4\x58\x5a\xcb\x6f\x8e\xee\x36\x46\xfb\xc0\x1d\xd1\x35\xa0\xb0\xc4\x10\xd9\x2c\xc3\x2c\xf4\x6c\x0c\x8f\x7d\x19\x45\xb6\x07\x8b\x3c\x4e\xe8\xe4\xc7\xc3\xe8\x0d\x2d\xa1\x76\x90\x62\xed\x33\xf3\xe1\x59\x51\x7b\x4a\x92\xb9\xed\x93\x67\xe3\x07\x6d\xfc\xb0\x26\x1f\x9c\x27\x3d\xd6\xb4\x7f\xf4\x5e\xd1\xc0\x75\xbf\xa6\x82\xe7\x34\x9e\x19\x7e\x47\xbd\xb6\x35\xfb\x35\x0e\x7d\xed\x01\x66\x0f\x27\x35\x1c\x0d\x34\xdc\x28\xc6\x2f\x4d\x56\x48\xf6\x6b\xdf\xfd\x87\xed\x90\x24\x6a\x19\xd4\x66\xf7\x7c\x3d\x82\x9e\xef\xff\x1d\xc1\xff\x9f\x24\x24\x8d\xf0\xb5\xb1\xb0\x99\xea\x5a\x6f\xf1\x37\x4b\xb2\xc1\x92\xe4\xa7\xdc\x20\x7b\x21\xcd\x27\x55\xea\x4b\xd9\x54\xdb\x0e\x7c\xa5\x87\x6a\xfa\x93\x61\x83\x95\xdb\xcc\xf1\xce\xb7\x8d\xba\x10\x11\xb4\x2a\x4e\x31\x4e\x2e\x01\x87\xe6\x45\x15\xaf\xb1\x1f\x22\x4b\x0f\x24\x8d\x57\x75\x6f\xf4\xad\x77\x1f\x8d\xcd\x74\x6f\x96\x4e\x1e\x60\xcf\xf1\x4d\xb6\x4c\xb1\x51\xb8\x19\x80\x2d\x60\x0e\xe3\x81\x65\xfb\x35\xfd\xc8\xb2\x31\xcf\xbb\xe0\x49\x75\x25\x6b\x50\xdc\x2f\x2d\xd9\xdd\xb1\x16\xe8\xc9\x73\xd5\x96\xc0\xbb\x73\xc3\x20\x74\x7b\x1e\x37\x38\x34\x9f\xaa\xf7\x57\xd0\x67\xd0\x98\x3e\x8b\xa8\x26\xa6\x2f\x4c\xd6\x71\xd5\x6b\x92\xa4\x8f\x82\x20\x0a\xad\xf8\x35\x42\x00\x11\x13\x75\x2f\x4e\x21\x26\x9f\x1d\x56\x72\x57\x79\xaf\xf2\x3a\x72\xf4\xdb\xbb\xf9\xeb\xea\xe1\x1e\x81\xdd\xaa\xe9\x17\x5c\xa2\x68\x63\x24\xf4\xdd\xd4\x1b\x8d\x99\xf9\xe8\xdf\x7a\x0a\xf4\x3e\x0d\x8c\xb9\x8e\xd4\xf6\xd0\x6b\xe3\x30\x58\x75\x8b\xa2\x9d\x80\x24\x32\x92\xd3\xa5\xcb\x0b\x83\xcd\x0e\x07\x65\xa4\x5a\x6b\xc9\xbd\x21\x1b\xf1\x61\x3f\x6c\x4e\x0d\x7e\x65\x0c\x36\xae\x6f\x0e\x93\xda\x02\x2f\xaa\xf1\x32\x9e\xd3\xff\xa8\x0a\xed\x2c\x60\xf6\xda\x4a\x06\xee\x70\xdb\x43\xa4\xc2\xa4\x7d\x2e\xfb\x8f\xb8\x60\x2b\xb8\x9d\x21\x44\x5e\xd5\xdf\x3e\x2a\xd6\x73\x0b\x7a\x8d\x09\xd1\x36\x24\x10\x3d\x97\x53\xd0\x4c\xc5\xb7\xef\xae\x4e\x14\x40\x80\xff\xf8\xec\x2e\xff\x1a\x75\xc4\x71\x3a\xd5\xc7\x81\x22\x73\x56\x54\x2f\x60\x46\xf6\xb9\x1f\xaa\xb5\x39\xa6\x28\x11\x54\x89\xfe\xae\xa4\x3f\xfe\x4e\x95\xcf\x97\x72\x78\xfd\x60\x67\x0c\x47\x5d\xe5\xfe\x22\x30\x7e\xae\xa7\x40\x12\xc0\x18\xaa\x66\x8c\x31\x36\x15\xd2\x50\xb2\x6f\x67\x1d\xb4\xfb\x35\xfe\x23\x7a\x20\x02\x0d\x5a\xaf\x1e\xca\xf1\x66\x36\xfe\x1b\x2e\x30\xe5\x2f\xd8\x1f\x18\xc7\xce\xe0\x9e\xb6\x05\x9d\xc4\xa6\xba\xb0\xcb\xf3\x59\x0e\x78\x3d\x88\xfd\x6c\x9c\xb2\x33\x0a\xc3\x37\xa0\x28\x5f\x3c\x91\xd4\xda\xe1\x33\x0c\x74\x81\x67\x14\xdd\x1e\xe2\x9e\x99\x7d\xfe\x90\x0d\x21\x4e\x07\xe1\xda\xc7\x53\xf3\x4e\x4d\xcf\xf0\x41\x24\x89\x4e\xb3\x44\x88\x3a\x5f\xff\xb2\xa7\xe0\xb8\xf9\xf8\x3e\xab\xfa\x72\x83\x1a\x6b\x3f\x01\xfd\xf2\x34\x7b\x22\x33\x0d\x17\x10\x38\x8d\x30\x63\xcd\x4e\x61\xe2\x54\x63\xa3\x4b\x71\xce\x44\x88\x45\x0d\xdc\x54\xcc\x64\x34\xb0\x90\x5f\xe0\x7a\x85\xfc\x9b\x69\xd4\xc5\x00\x47\x05\x62\x20\x2c\xfb\x6d\x2c\x15\xfe\x35\x61\xcc\x56\x0d\x88\xc0\x08\x93\x64\xb7\xcd\x92\x95\x60\x55\xb0\x5b\xcb\xd7\xfe\x4c\xc2\x91\x44\x61\xb5\x80\xd0\x7e\xf3\xae\x8a\x83\x00\xf0\xfb\x77\x0b\xa6\xc0\x79\xbb\xa6\x03\xe1\x93\x0d\x38\x03\x8a\xe5\x47\x97\x8e\xa8\xfe\xb2\x2c\x3f\x6b\xb0\xf9\xcf\xbb\xd8\xd2\xdd\xe7\x96\x27\xd4\x44\xe6\xb3\x59\xc3\xbd\x46\x86\xb4\x65\x2a\x68\xa5\x37\x98\x8c\xe7\xd1\x44\x48\xd6\x7a\xe9\xe0\x19\x22\xa2\xd3\xc7\x03\x97\xca\x30\xff\x67\x13\xa5\xe6\x90\x95\x0c\x01\x03\x93\x48\xc9\x24\x93\xe1\x11\xa5\x33\xdb\x2e\x3f\x09\xad\xbf\xca\xe4\xb3\xda\xfb\xb3\x7d\xc6\x6f\xf8\xa2\x22\x2f\xec\xda\x95\x54\xaa\xb3\xe6\x35\x68\x37\x55\xc4\xb4\xac\x09\x3d\xdd\xf3\x7f\x52\xb7\x1a\x98\xa2\x75\xc6\x4a\x13\x38\x3f\xf8\x28\x0e\xdc\x23\xa0\x3a\x8c\x0c\x76\xb4\xdf\xc0\x86\x7a\x6e\x5b\xdb\xa2\x31\xcc\x6f\x66\x3e\x1a\xd3\x1b\x19\x29\x12\x14\xee\x55\xa7\x94\x3b\xd5\x09\xa1\x51\xf0\xc9\x1f\xc5\xa1\xe5\xe6\x78\xfc\x4a\xce\xe2\x0d\x89\x81\xdc\xe1\xe5\x07\x89\x20\x8d\xd4\x50\xd3\x41\xc9\x8e\x18\x17\xb8\x6a\x59\xd8\x1d\x2a\xa3\x0b\xe3\x8b\xd5\x35\x50\x64\xc9\xdd\xfd\x99\xe2\x57\x86\x44\xaa\xbd\x6f\x53\x56\xc3\x4e\xfd\xe2\xa5\xb8\x79\x41\xb9\x8b\x7f\x31\xa6\xf5\xac\x01\x8a\x09\xff\x77\x6d\xf7\x42\x08\x73\x5a\x62\x05\xf8\x04\x7e\xe1\xf3\xae\x8f\xc8\xa2\xd6\x21\x27\xe7\xbc\x27\x0b\x0a\xd7\x30\xfd\xe0\xe6\x25\xc3\x04\xd0\xa7\x0f\xf1\xe2\x9e\x6d\x37\x89\x16\xa2\xe9\xaf\xbc\xf3\xab\x24\x04\x20\x9a\x9d\x01\x7d\x9f\xac\xfc\x16\x53\x8d\x7e\xeb\xe9\xfe\x0c\xa9\xdd\x1e\x2a\x0f\xb8\x9d\x59\xe1\x38\xc3\x05\x12\x6a\xea\xd5\x26\xf6\xa9\x1c\xcc\x89\x54\x91\xcf\x41\xcf\xde\xbb\xbd\xc5\x0c\xa2\x57\x7e\x77\x38\x53\x7a\x16\xb9\x75\x84\xa2\xe0\xf0\x11\x89\xc2\xed\x08\x62\x1a\x06\x22\xb2\x79\x30\x1d\x38\x2f\x1b\x4e\x4a\x25\x50\x96\x60\x13\x2c\xa4\xa3\x6f\x1d\xf9\xb5\xd3\xd2\x10\xae\x6e\x8b\xe7\xfe\x06\x7e\x33\xed\x5a\xb5\xc0\xb8\x52\x52\x11\x2a\xc1\x0a\x60\xbf\xa4\xcf\xd7\x7b\xb7\xa9\xa4\xed\xf5\x1b\x12\x0a\xe3\xfd\x8b\x7a\xf1\xbe\x61\xa5\x24\x90\x59\xc6\x1a\xbc\x4e\x36\xd0\xde\xbc\xa1\x9b\x08\xf3\xc3\xa8\xfa\x31\x29\x5d\x96\x68\x71\x9f\x09\xdd\x61\x45\xfc\x11\x63\xea\x46\x18\x10\x54\x75\xe8\x19\x2f\xbc\x5f\xba\x61\xf5\x2d\xd1\x4b\xc7\xef\x7a\x35\x0c\xe0\xa7\xbf\x40\xb9\x12\x74\xc8\x3e\x3f\x39\xd4\xc4\x42\x7e\x6b\x5b\xd4\x84\x8b\xef\xa5\xc4\x26\x97\x0b\x7f\xce\xe0\x72\x1e\xe3\x6e\x30\x30\x61\xa7\x04\xb6\x8e\x67\x9c\x1d\xf2\x08\x62\xd1\xb6\x97\x55\x19\x74\xc0\x60\x5b\xd1\x9e\xdd\xa1\xf1\xf7\x14\x9c\x01\x73\xf9\x43\x7d\xb6\x60\x0b\xce\xe3\x1c\xbe\x1a\xe7\x43\x23\xbb\xaf\x2e\x6f\xeb\x8d\x21\x55\x8a\x88\xab\x0b\xa9\x5d\xce\x26\x77\x7b\xae\x36\x9b\x09\x2d\xbb\x07\x90\x10\x1d\x5f\xcd\x71\xee\x38\x15\x60\xf2\x78\x7d\xb3\x29\x9c\xfe\xd2\xc0\x6b\x12\x32\x3f\xff\x3b\xe7\x21\xca\xdb\x8e\x6b\x12\xf2\x69\x12\xf9\xd9\x1a\xb0\x3b\x6e\x90\x71\x65\x6a\xd2\x9b\x4c\xf8\xb3\xda\x1f\x8f\xe0\x75\x1f\xc0\x99\xb8\x81\xe6\x8e\xc5\x4f\x56\x56\x28\x55\x8c\xd3\xa6\x5c\x71\x26\x68\x11\x3a\x3e\xe2\x7b\x34\x52\x2c\x7d\x96\x17\xc6\x4a\x49\x75\x00\xb3\x96\x3c\x5d\xba\x6f\x14\x2d\x0c\xa2\x5e\xae\x30\xe4\x8f\xd3\xf8\x80\x47\x42\xd0\xc2\x06\xd8\x2f\x4a\xdb\x30\x10\x89\xf4\xb4\x69\xf7\x67\xe4\xaf\xb6\x8e\xc7\x89\x35\x5b\xd0\x33\xc6\x18\x0e\x52\x4d\xe7\x10\x54\xfd\xa0\x34\xc1\x62\xc7\x30\x58\xb9\x20\x90\x74\x7f\xbc\xb6\x49\x6f\x05\x16\x1a\xb6\x02\x07\x41\xd3\xd8\x1f\xfa\x47\xbf\x86\xb9\x67\x5d\xd4\x9b\x66\x85\xde\x75\xc7\xa2\x92\xd1\x61\xbd\xc6\x32\x9b\x76\xa5\x20\x64\xf7\xb1\x79\xd0\x6d\x98\x02\x26\x6a\x46\xdd\x8c\xbe\x64\xea\x05\x0c\x9c\x17\x70\x9b\x2c\xe9\x33\xf3\x58\xd6\xfd\x82\x9b\xb2\xb3\x8a\xe3\x4c\xb1\xf8\x1b\xcd\x77\xd9\x67\x29\xbf\x20\x1e\x44\x03\x3a\xe3\x44\xdc\x9e\x60\x41\xcf\x36\xfd\xa5\xc5\x8a\xaf\x79\x97\xd8\x97\xcf\xd4\xfa\xe7\x43\x3a\x29\x3b\xa3\xe8\x07\x64\x66\xbd\x0f\x19\xe9\xef\x6a\xc9\x59\xcd\xbe\xc0\x23\x6c\x9e\xe7\x70\xd0\xbd\x24\x02\x26\x50\xa4\xac\x1b\x77\x09\xd1\xaa\x2b\x94\xd2\x8f\x67\x41\x60\x5b\x20\x8b\x7a\x67\xa9\x95\xf7\xd1\x0a\x2c\x44\x08\xd7\xb8\xbd\x48\x79\xbb\x26\x01\x6b\xde\x61\xf7\x14\xdc\xff\x29\x4c\x46\x70\xfb\x6f\x9b\x61\x8c\xbf\x4f\xad\x3b\xf0\xdb\xa1\xb9\xab\x6a\xa7\x34\x28\xc9\x6e\xf9\xdd\x3f\x76\xa7\x2b\x9e\x5f\x73\x6c\x7d\xab\x19\xe3\x93\x3f\x8f\x3f\x14\x05\xcb\x70\x98\xd2\xde\xb5\xdb\x03\x22\x31\xf6\x60\x83\x13\x83\x8e\xc0\xc1\x67\x3f\xa9\xcc\xd7\x47\xbf\x6d\xd6\x8e\xb4\xde\xa7\x45\x7b\x13\x99\x3c\xe6\xd6\x77\xf5\x8e\xad\xe4\xdc\xef\x6c\xb5\x60\x20\x7e\x3d\xb2\x4a\x83\x6a\xe8\x59\xcd\x10\x88\xf1\x5a\xa0\x9a\xf3\x98\x7a\xf6\x06\xa5\x88\x71\x31\xcd\x4a\x1c\x7e\xaa\xff\x80\x75\xae\x8b\x06\x9f\x92\x1e\x23\x7b\x1d\x44\x62\x2d\xad\x8a\x24\x09\x51\x8d\xc0\xe7\xf3\x25\xdc\x29\x4c\x7d\xf2\x2e\xe8\xaa\x3f\xa4\xbb\x63\xfb\x77\x5e\xf2\x75\x9b\xaa\xf3\xe4\x7c\xe3\xaa\xc9\x6b\xef\x58\x90\xc1\x6b\x14\xf2\x12\x66\x10\x4d\x1e\x5c\x65\x93\xbe\xd4\xb3\xba\xf9\x24\xa4\xfc\x68\xea\xdd\xf2\xfe\x3a\xae\xbc\xad\x64\xbb\x69\x1d\x21\x7c\x79\x12\x93\xb6\xb4\xcf\x6a\x66\x61\x63\x5a\xfd\x65\xe7\xa4\x05\xcf\xf1\xb1\xba\xf7\xda\xf1\xe9\xd0\xb3\x1c\x51\x44\x05\xb0\xde\xd3\x20\xf8\x34\xdb\xd3\xe0\x24\x90\x4f\xf5\xe7\x38\x78\xaf\x22\x97\x39\x5b\xef\xd1\xb0\x8f\x7b\x37\xc5\x2f\xa4\x3a\x63\x2b\xb2\xef\x80\x93\x33\xd4\xc2\xd3\x62\xac\xc2\x41\x0a\x94\x84\x10\x1e\x7d\x95\xc2\x79\xaa\x56\x7f\x8e\x13\x9a\x57\xe1\xfa\x98\xd6\x7e\xef\x2b\x5e\x95\xb3\x72\x71\x7f\xad\x9c\x53\x91\x01\x88\xb4\xe6\x11\x5c\x1d\x9b\x9a\x2a\x31\x48\xdb\x82\xc5\xb0\xac\x3e\xec\x20\x36\x53\x63\xc7\xfe\x44\xf4\xac\x65\x3f\x75\xdf\x3f\x2e\xef\x8c\x2d\x61\x50\x8a\x04\x8f\x4d\xb5\x1c\x36\x43\x11\xa9\x4f\x20\x6a\x5c\x4b\xda\x44\x15\x40\xe9\x4a\x71\xe4\xf3\x5a\xaa\xb9\x61\x14\xdf\x85\x57\xeb\x7d\xc5\x72\x78\xd5\xa5\x00\x65\x76\xa9\xd1\x2b\x8e\xce\xac\x60\xd6\xbc\x67\x6d\x35\xa5\x25\x3b\x69\xd6\x02\xbd\xa6\x79\x0c\x88\x2f\xed\x5f\xc7\x6d\xda\x59\x62\xaa\xd4\x22\xa3\x25\x09\xff\x98\xf0\xca\xfc\xae\x24\xf9\x52\x6a\xe4\xfc\xf7\xcd\x52\xb2\xd5\xa9\x3b\xab\x66\x02\x5c\x61\x4c\x83\x57\xf7\xda\x96\x94\x96\xca\x0b\x39\x7f\xe7\x73\x0b\xf3\xff\x55\x4f\xdf\x2d\x22\x49\x09\x7f\xa1\x58\x0b\x53\x89\xc1\x13\x50\x32\xfb\x17\x1f\xf6\x7e\x62\xad\xfa\xfb\x5f\x2b\x06\x13\xab\xbc\xe6\x0e\xaa\xe3\xc0\xb3\xed\xea\x46\x09\xbc\x39\x5d\x3c\xa0\x53\xc1\x3f\xe4\xb7\x93\xb6\x2c\x32\x8b\x7f\x96\x54\x7f\xac\x80\x5b\x40\x7e\x50\x37\x97\x3b\x85\x84\x96\x62\x1e\x45\xe0\x35\x3e\xcb\xf6\x2b\xbc\xbd\x52\x6e\xbb\x84\x00\xb1\xf0\xd4\x3e\xab\x70\xf8\x9e\xd4\xe4\xcf\xc2\x78\x75\x7d\xb1\x6f\xe1\x8d\xe1\xe4\x90\x1c\xa9\x54\xc9\xdd\x93\xfc\xac\xbf\x02\x69\x50\xd2\xaa\x1e\xce\x9e\x70\x83\x49\x92\x24\x7e\xb9\x05\xde\xff\x5e\x5a\x15\x0d\x93\x6c\x5c\x66\xf1\x21\x74\x15\x15\x85\x77\x05\x02\x1f\xdf\x61\x0f\xe9\x13\x81\x5a\x6f\xca\x1b\xad\xad\xc4\xab\xbe\x23\xcb\x1e\xa2\xbd\x66\xf4\x91\x8b\x8e\x9b\x24\x65\x69\x20\x8f\x3a\x94\xa1\xb5\xce\x0b\xcd\xa0\xad\x6c\x40\xf9\x24\xd8\xca\xef\xaf\xeb\xf0\x0b\xb2\x6c\x72\xbf\x46\x02\x16\xca\x17\xd5\x7c\x7d\x6c\xc5\x59\x26\x4a\x11\x82\xbf\xca\xe1\xee\x8a\x8e\x24\xc4\xcf\xd1\x10\x80\xe9\x30\x6e\x58\x69\x8e\x14\xd4\x67\x6e\xb9\xb2\xfc\x7b\x20\x5d\xfa\xb3\x7f\x4a\x39\x97\x8f\xdc\x0a\xa8\xc7\x1c\xbb\xe5\x60\x32\x1e\x69\xd3\x25\xe8\xc1\xd8\x83\xed\xa8\x29\xa9\x3d\x70\x72\xd6\x94\xfd\xef\xe6\x0b\x3e\xd8\x67\xd5\x74\x3e\x90\xe4\xd0\x5c\x9b\xa7\x09\xbf\xa5\x2b\x3e\x84\xf3\x51\x14\x6b\x5b\xdf\xd8\xdc\x75\x34\x1b\xe6\xc6\x4d\x09\x97\x7f\xa6\x9e\xfb\x9f\xb5\x56\x69\x1f\x62\x39\xe8\x35\xdd\xa6\xed\x6d\xf5\x65\x3b\xdd\xa8\xbf\x07\x1b\x64\x8b\x63\x0c\xbb\x93\x27\x07\x0d\x79\xc7\x42\x91\x91\x1d\x16\xd3\x06\x4d\x18\x0c\xe3\xa9\xbf\x53\x9d\xc1\xec\x9b\xc2\x43\x6d\x3f\x3a\xa2\x0f\x7f\x04\x72\x91\x32\xc5\x15\xff\x93\xfe\x68\x15\x60\x97\x3a\xd4\x4a\x3c\x65\xff\xbb\xed\xed\xa0\xec\x26\x2e\x32\x11\x12\x64\x12\x83\xe8\x79\xf4\x08\x4c\xb5\xea\xed\xd3\x22\xb8\xcd\x16\x00\x1d\x34\x05\x63\xe8\x65\x99\xb4\xcc\xc9\xf7\xf2\x3b\xd4\xaa\x3c\x6a\xa9\xc2\xe3\x53\x70\xe1\xf2\x21\xa5\xb7\xe0\xde\xd5\xa2\x93\x6b\xfd\x6a\x07\xdd\xe1\x68\xee\xf7\xe6\x91\xc4\x41\x64\xca\x37\x11\xad\x6d\xad\xcb\x72\xd9\x72\x27\x1a\xad\x8d\xa4\x91\x51\x5c\x33\x40\x15\x1d\x35\x51\xcf\x03\xa0\x7e\xfa\xcc\xce\x58\x25\x6f\x76\x62\x97\x6f\xf9\x29\x0a\x60\xfd\x17\xdb\xdc\xf4\xb2\xf6\xc4\xfa\xd8\xaf\x8b\xa5\xb5\x89\x59\x4b\xf7\xf6\xa6\x2a\x86\x12\x88\x79\x2c\x22\x52\xcc\x04\x91\xc8\xc3\xe6\xaf\x1a\x2c\x77\xf7\xd2\xbe\x2f\xfc\x78\x8a\x6e\xba\x32\x4d\x09\xad\xf1\x19\x8f\x24\xef\x2a\x5e\x97\xcc\xc7\x71\xfd\x78\x16\x68\x9e\x55\xdc\x18\x1c\x99\x81\xbb\xa2\x6e\x05\x28\x46\x7e\x77\x95\x00\x8b\x62\x4e\x05\x30\xf5\xab\x2d\xd8\x04\x75\x33\xce\xd9\x76\xfb\x5f\x28\xed\xe5\x13\xbd\x46\x63\x3a\xb5\x88\x43\x7c\x41\xad\x6f\x7a\x39\x10\x7b\x91\xee\x18\x3f\x39\xd4\x46\x5c\x72\xc8\x23\x2d\x30\xe2\x4b\x0b\xc5\xf9\x7e\x75\x25\xb2\xd0\x16\xa8\x62\x1d\x66\x5f\xf2\xb4\x8b\xd5\xbc\xf3\xd2\x92\xfc\xd7\x71\x1c\x32\xf4\x45\x66\xb0\x8c\x2b\xfb\x4b\x0f\x8f\x97\x66\xbe\xf9\x5d\xf0\x92\x9a\x19\xa9\x00\x22\x65\xb8\x17\xc7\x00\x77\x43\x41\x8f\x7f\x09\xab\x19\xd3\xf1\x9e\x67\xce\x6a\xf1\x46\xf4\xac\x85\x82\xa8\xa5\xd0\x80\xed\xe0\x43\x37\x39\x6c\x87\x11\x11\x48\x6e\x74\xd8\xa4\xc9\x87\xf6\x9a\x5b\x43\x46\xb4\xf5\x26\x81\x3e\x30\x42\x2b\x50\xfa\xa0\xff\x84\xb9\x64\x29\xc3\x73\x75\xf5\x64\xb2\x50\x79\x26\x62\xb4\x92\x5c\xbf\xc9\xf5\x80\x13\x0d\x1e\x99\x2a\x46\xe2\x9a\x46\x1d\xa2\xe4\x12\x86\xc7\xe1\xdd\x19\x91\xe4\x2c\x6f\xae\x72\x25\x36\xe7\xdf\xeb\xe7\x47\xc0\x13\x60\x4a\x2a\x95\xba\xf7\xa6\xe7\x95\x5f\x97\x47\x2a\x88\x50\x4d\x96\xc9\x4c\x69\xa2\xba\xb8\xe9\x76\x67\x8e\x9e\xb8\x3e\xcb\xa0\xb7\x5e\xf8\xee\x6d\xf3\x1f\x5f\xd3\xea\x17\x07\x63\xa2\xad\xf9\x44\x9d\x41\x08\xed\xa5\xf9\x8d\xd9\x0c\xc3\xe7\x0c\xa7\x19\xa1\x93\x63\x45\x3a\xc1\x8a\xd5\x4b\x85\x41\xb6\xf4\xf1\x53\xce\x52\x6a\xe5\x03\x06\xbe\x25\x3f\x39\x06\x38\x92\xf7\xbd\x54\x5c\xc2\xfb\x75\xf1\xe0\xa2\x72\xea\xa7\xa6\xcc\xd3\x6d\x93\xd7\xf9\xc6\x7b\x2b\xd1\x55\x0e\x43\xf4\x42\x4d\x6b\xbb\x55\xaf\x36\x5c\x26\xe4\x00\xa8\x6f\x3a\xb9\xbf\xb1\x2d\xd0\xf6\x61\xb7\xf8\xb3\xe3\x45\x04\xf9\x6a\x7d\x0b\x7a\x59\xd1\x37\x5b\x9c\x9f\xef\x43\x4f\xed\xcf\xdf\xba\x2f\x86\xd9\x66\x7a\x7e\x43\x33\xe0\x7d\xf3\xe9\xc2\xa2\x63\x7f\x6f\x5b\xfa\x05\x8c\xab\x15\xab\x7e\x89\xdb\xe4\xd1\x81\x82\x47\x9a\xac\xe1\xde\xe7\x2f\xd9\xa4\xa5\xa3\x6d\xd7\x5d\x6f\x76\xe7\x82\x09\xb7\x8b\x31\x9a\x66\xe8\xd4\x33\xfc\xac\x2c\x8f\x86\x19\xb8\x83\x7b\x1c\xdf\xc4\xf8\x6c\xc6\xe3\x31\xeb\xe5\xab\xfe\x7f\xf8\x3b\xb3\x86\xbf\x62\x0d\x55\xb5\x6c\xe6\xc2\x21\x63\x57\xcb\xed\x27\x0d\x19\xc7\x15\xf6\x80\xb2\x81\x0e\x5b\x63\x23\x5f\x4f\x39\xf5\x45\x3c\x9d\xdd\xdd\x66\x7f\xc0\xcd\xe7\xbd\x4d\xef\x52\x58\x8b\x25\x58\x06\x8a\x24\xdf\xc7\x97\xe6\x97\x98\x02\x84\xd0\x79\x49\x72\xb8\x83\xc0\xb1\xf3\x71\xc5\x85\x4c\x19\xb6\x51\x6c\xaa\xbb\x7c\xa7\x54\x4d\x96\x0b\x18\x7e\x4c\xbd\xe7\xac\x6a\xb9\xd6\x4d\xa4\x58\xcf\x8b\xc9\xd9\xf4\x5c\xb4\xce\xaa\x8b\xa8\x10\x89\x08\xba\xf3\x7e\x3e\x66\xc2\x8e\x8a\x32\x5c\xb5\xce\xe1\x8e\x7c\x66\x74\x3c\xe1\xea\x8a\x07\xef\xbd\xcd\x19\x86\x18\x79\x5e\x90\x06\xe4\xc3\x87\x87\xb8\x3f\xb9\x3c\xbf\x51\x05\xd3\x5e\x04\xf6\x51\xba\xac\x27\xbc\xfc\x15\xdd\xad\x86\x7b\x7f\x30\xc5\x6e\x27\x57\x71\x0c\x1b\xdd\x47\x2a\xd2\x10\x52\x60\x9f\x90\xa7\xe8\xec\xe0\x65\xea\x6b\xbf\x0a\x10\xfb\x54\x38\x21\xb1\xe3\x97\xe1\xcb\x74\x73\xbd\xc4\xd5\x54\xd3\xa9\x9b\xdb\x4d\x61\xea\xf0\xe7\x4b\x21\xf0\xf8\x54\xd3\xe8\x0b\x5d\xb4\x81\x7d\xe2\xc8\xb9\x10\x56\xb6\xdb\xe2\xd5\x36\x09\x9c\x47\x2b\xb0\x39\xec\x84\x7f\x7d\x54\x49\xd8\x54\x10\xd1\xca\xfb\x95\x47\x5f\xea\x13\x43\x4e\x71\x81\x2a\xf6\x5a\x47\xa6\x69\xeb\xfd\xe2\x3f\x1e\xcc\xa8\x9c\x74\x16\x86\x1d\x76\x5a\x10\x64\x08\x48\x02\x4f\xe9\x5e\x55\x10\xf7\x74\x65\x8b\x8a\x31\x90\x0e\x77\xf2\x2e\xab\x2e\xe2\xb4\xae\x2a\x54\x1b\x3d\x8e\x40\x8c\x88\x08\x27\x1b\xab\x4c\x24\x56\x86\x1c\xd1\x15\x43\x04\x10\x05\x02\xf2\x38\xca\xf3\xd4\x5c\x1f\x61\x77\xeb\x7b\xef\xe6\x7b\xe5\x90\x25\x68\x24\x97\x8f\x1c\xac\x56\xb5\xaa\xac\x9a\xd1\xc0\xbf\x9f\x98\xa7\x67\xf6\x2a\xc1\x21\x77\x00\x76\x32\xed\x3c\xc3\x72\x1f\xd5\xd5\xaf\xf0\xeb\xef\xf7\x4e\x25\xbe\x5d\x87\x8f\xec\x96\x82\x9b\xe6\x38\x7e\xe4\x3c\x4f\xf5\x62\x1c\x90\x0a\xd0\x46\xf2\xaf\x23\xd1\x85\x39\x7e\x69\xa4\x98\x6c\xde\x99\xdf\xee\x7d\xcf\x91\x04\xe6\x4e\x52\x7f\x4d\x1a\xc2\x10\xcc\x7e\xbb\x3c\xfe\x70\x56\x5a\xf5\xd3\x1a\x50\x4e\xc3\x33\xb4\xe3\x90\x4c\xf9\x43\x1c\xf7\x43\x63\x89\xdc\x6b\xdb\xd7\xa8\x41\x35\xa5\x1f\xc2\x49\xd4\x39\xfc\x84\x61\x73\xe7\xa8\x3f\x98\x95\xb3\xfd\x4e\x00\x28\x40\xfc\x28\x69\xb0\x5f\x87\x2c\x1d\xcf\x73\x8b\x5b\x81\x53\x60\x9d\xc3\x4f\x24\x26\x8f\x59\x6a\x3f\x7e\x48\xa2\x69\xc6\x28\xa4\x43\x27\x89\xa7\xd2\x11\xe1\xf5\x4f\xbe\xac\x1b\x35\xaa\xac\x2b\x72\x00\xad\x47\xed\xe9\x19\xf5\x52\x65\xd7\x6b\x0c\x24\xee\x7c\x12\xf4\xa3\xd4\x9b\xad\x71\x85\xd3\x56\xd8\x18\xc3\x35\x11\xa5\x34\xc1\x5a\xce\x03\x3f\x88\x07\xa2\x79\x46\x1f\xfb\x36\x28\x63\x54\xf5\x62\x6d\x26\xd6\xd0\x92\x12\xa1\x05\x4e\x07\x52\xfe\xfd\xdd\x37\x21\xa9\x99\xe2\x76\xab\x31\xa9\xdf\xeb\xf3\x63\x89\xed\xfc\x92\x53\x48\x95\x74\x9f\x7b\xd0\x62\xfe\x12\x4d\x73\x3c\xd4\xd8\xdb\x4b\xc6\x89\xec\x8f\x04\x48\xc6\x71\x50\x19\xdb\x41\x6d\x1e\xab\x78\xb7\x6d\x8e\x49\x5e\xd1\xc0\x8b\x7a\x14\x48\x7a\x96\x96\xe0\x2d\x26\x35\x29\x05\x2e\xac\x2c\x52\xc5\xec\x3c\x4b\x47\x40\xc1\xec\xcc\xc7\xd3\x7c\x0d\xcb\xa5\x4e\x41\x42\x90\x53\x2a\x85\x54\xff\x97\x98\x93\x84\xdf\x78\x9b\x10\x58\xda\x17\x26\x57\x05\x34\xfe\x16\x60\x22\xe2\x9d\xe5\x9c\xfa\x4c\xd7\xe6\xa8\x0d\xb9\xa8\x31\x7e\x84\x84\xe9\x94\xa8\x48\x99\x4c\x7b\xa4\xa7\x87\xe1\xf6\xf1\xee\x9d\x9c\xf8\xd2\x6c\x8d\xd1\x85\x75\xb1\xe4\x7d\x13\x3d\x5c\xdf\xaa\x9a\xe6\x79\x69\xd1\x4f\xbb\xfd\xeb\x58\x62\x79\x76\x35\x84\x05\xda\x38\x33\x45\xd2\x8f\x3d\xb1\x0f\xcd\x37\x6f\xaa\x96\x43\x31\x20\xb0\x95\x03\xea\x04\xcf\xe8\x73\xed\xa0\x2e\x48\x2b\x51\xf1\xb3\x79\xee\xbd\x54\xd3\xf7\x9f\x42\xb9\xe7\x55\xdc\xbf\xc2\x4b\x12\x30\xb5\xc9\x4e\xc5\x00\x6d\xab\xbf\x4c\xe4\xe8\x83\xb1\x3e\xa7\xd2\xef\x63\x7b\x73\x85\x41\x31\x78\xfa\x6a\x60\x2b\xb0\xe9\xaf\x07\xf1\xd8\x9c\xdb\x1b\x5a\xdf\x88\x2d\x59\xdb\xab\x44\x62\x30\xce\x1e\x47\x9e\xd7\xdf\x9a\x41\x23\xcb\x82\x02\x72\xa6\x04\xe8\xfd\x5b\x6b\xc8\x49\xed\xbf\xd8\x8e\xb1\x25\xec\x3b\xad\x1d\x73\x37\x44\x35\x9b\x66\x72\x2e\x4f\x31\x5d\xd0\x82\x49\x10\xfa\x74\x33\xf1\x79\xfc\x6e\x0d\xfd\x17\x06\xd4\x98\x77\x19\xb5\xd4\xc6\xd7\x0c\x50\xbb\x25\xab\x27\xdd\xa9\xdb\x03\x5e\xed\x6d\xbb\x5d\xed\x6a\x82\x30\x28\x66\x75\x05\xab\x46\xb0\x91\x2d\x42\x23\xc1\x76\xd3\xad\xae\xea\xc6\xb7\x77\x99\xd6\x83\x76\x91\xc6\x64\x3c\x4b\x03\xf3\x43\x0a\x19\xfe\x95\xc3\xf5\x6e\x56\x5b\x01\x02\xe1\x78\x78\xef\x36\x50\x5e\x0a\x22\xe1\x12\x77\xa8\x09\x00\x7f\x66\xd5\x58\xa0\x73\xfe\xa0\x4e\x12\x3b\x71\x45\x6d\x0b\xfc\xee\xdc\x62\xd3\xfe\x09\xb5\x92\x19\x64\x60\xb0\xc3\x9b\x3e\xb8\x8e\xfb\xca\x37\x6d\x0b\xf8\xa6\xa5\x89\x9f\xb0\x6e\xe1\x37\x8a\xa3\xca\x62\xf0\xed\xd3\x39\xe8\xfe\xa0\x04\x4f\xa3\x55\xcd\x58\xf8\x43\x1c\x55\x07\x6c\xd2\xab\x99\x4e\x38\xe7\x6f\x5a\xfa\xd4\xed\xd9\x69\x32\x70\x19\x08\xc8\x99\x30\x3e\xf4\xe9\x2c\xdf\x3b\x17\x69\xfc\xfd\x09\x90\xbe\xb8\x43\x7b\x77\x1a\x42\x3a\x10\x50\x90\x00\x98\x64\x5b\xdb\xad\xfb\x8b\x7d\x59\x10\x52\xaf\x1e\x06\xce\x80\x6a\x4c\xf3\x39\xe2\xc6\x42\xe1\xc3\xc7\x59\x96\xb5\xcd\x56\x7f\xed\x9c\x45\x0e\xbb\x98\xb2\x36\x37\x3e\x8f\xab\x91\x5b\x58\x2f\xa3\xbf\xa0\x47\xe5\x5b\x07\x01\x44\x6b\x74\x31\x51\xf1\x61\x87\xf2\x56\x97\xf9\x24\x38\x89\xce\x0e\xbf\x0c\xee\x6e\x16\xd9\xaa\x7e\x9f\xae\x0a\x36\xc4\x2d\x6c\xff\x6c\xd9\x1b\xc1\xfc\x96\x1c\x85\xcb\x40\x4f\x29\x5b\x34\xe0\xee\xf2\x6e\xb5\xf2\xac\xa3\x45\x0a\x5d\xad\x5b\x2a\xfc\x03\x41\xf0\x3a\xf9\x1f\xec\xb4\xb0\x3f\x43\x7e\xeb\x20\x57\x20\x97\x18\x1e\xf7\xa8\x96\xd6\xe4\xfd\xae\x38\x24\x82\xc2\xc0\x82\x1f\x21\x51\x6b\x59\x19\xdf\xf6\xcf\x37\x41\x68\x2b\x38\x52\x17\x47\x73\x55\xad\x59\xe9\xca\xd9\x58\xbe\xf4\xdc\xfc\xdc\x56\x02\xba\x52\x30\x30\x48\xb5\xd7\x56\xa5\xce\x1c\xd4\x28\xec\x4a\x09\x37\x4f\xec\x26\x5c\xe3\x66\x4f\xd6\xc0\x17\x80\x69\xae\xce\x08\x0e\x36\xf0\x59\x98\x8f\x50\x42\xc3\x55\x6f\x5a\x04\x40\x9e\xbf\xbd\xfe\x8a\x9c\x66\xd6\xc6\x6e\x48\x2a\x79\x60\x10\x5a\x7b\x7c\x36\x64\x40\x59\x34\x6b\x32\xdb\xb7\xe6\xd5\x89\x3b\x99\x5b\x7e\x3b\x5a\x3d\x67\x8d\x8a\x5c\x2b\x6c\x78\x11\x28\x8a\x36\x26\x3f\x21\x83\x7f\x87\xd1\xfe\xe9\xdd\x40\x0e\x2d\xdd\xf9\x21\x16\x96\x0e\xce\xbc\xa5\x53\x5b\xfa\x88\x25\x13\x2f\x9b\x66\x7c\x26\x08\xd2\xb5\xfd\x4f\xe0\x1b\xba\xed\xf7\xb7\x2e\x3f\xfd\xe9\x0f\xb4\xa8\x41\x32\x4f\x5d\xb8\x6d\x0f\x3f\x07\x55\xe2\x19\xfe\x00\xaf\xbe\xa8\xbe\xc4\x93\x0a\x2b\xfc\xd5\xf1\x0a\x5f\xc8\xf8\x17\x34\xd1\x60\xe3\xec\x7d\xd2\xd9\x68\xfe\xb0\xcb\xf1\xb4\x1b\xc6\x4a\x56\xba\x10\x7d\x31\x69\x63\xce\xbf\x32\xee\x49\x2b\x6c\x2d\x15\xa7\xf1\x94\x0e\xe1\xf4\xe9\xf4\xda\x18\x01\xc0\xdd\xc1\x58\x25\x7b\x8c\xd9\x7b\x37\xfe\xa2\xc4\x9e\xe0\xbd\x37\xfb\xce\x2e\x6d\x43\x01\x5a\xad\x25\xba\x33\x1a\x3d\x2f\xb7\x0b\x06\x21\x21\xd2\xe9\x38\x96\x6c\xb0\x04\xa5\x37\xc1\x79\x41\xee\xf0\xc3\xd0\x4b\x75\xb3\xed\xa3\x7a\x4b\xd8\x9b\xac\x60\xae\xc2\x3b\xc3\x72\x21\x5b\x40\x4f\x91\x80\xe8\x03\x26\xca\x43\xd9\x0f\x9b\x09\xaa\x77\xf0\xcf\x0a\x37\x15\xa9\xae\x5a\x94\xfd\x51\xd7\xf3\xfc\x53\xf8\xaf\x50\x7f\xc2\x15\x5c\x24\x26\x31\xca\xd9\xcc\xae\x9a\x88\xb2\xcb\x0a\x25\x78\x58\xf1\x8c\x38\x43\xec\xd4\xc6\x26\x19\x19\xab\xf9\xbd\xf2\xf0\x31\x29\x58\x5e\x06\x21\x80\x60\x2f\xa6\xc6\x76\xbf\x97\xf0\x45\xfc\x1e\x47\xb7\x93\xca\x34\x63\x8f\x72\xb3\x58\xee\x5b\x3b\xeb\x15\x4c\xdc\x12\x56\x23\xd1\x48\x75\x1f\x18\x4d\x03\x60\x55\xf1\x9d\x73\xee\x9b\xe6\xb0\xca\x04\xf1\x77\xc5\x54\xa5\x3d\xff\x1f\xb7\x5f\xff\xbf\xc9\x58\x18\x50\x89\xbe\x13\xc2\x7c\x2b\x1c\x61\x63\xbd\xbc\x27\xb4\x97\x3a\x07\x7f\x98\x67\xbe\x1c\xc5\xda\x4b\x1d\xd6\xb4\xcd\xa1\xf2\xbb\x5b\x55\xe9\xc1\x1c\x64\xeb\x24\xdb\x82\xba\x60\xc4\xb3\x11\x9d\x8f\x26\xfc\xdd\xb0\x15\x77\x7b\x49\x15\x99\x47\x03\xd5\x56\x58\x77\x46\x12\x7d\x85\x3c\x50\xbb\x1d\x0f\xea\xfc\x55\x1b\xe6\x21\xd7\xa0\x82\x86\x85\x47\x28\x20\x04\x10\x63\x9a\x98\x04\x76\xb8\x42\x38\xbe\xbb\x44\x62\x74\x2a\x21\x1a\xe1\x75\xeb\x27\xb6\x8a\xf7\xd0\x77\x9f\x61\x1e\x2f\x9e\x3e\x04\x37\x8b\x64\x90\x36\xad\xa4\xd4\x7c\xac\xc2\x9a\x4d\x40\x74\xd5\x08\xd9\xac\x7e\xb2\x8b\xef\xdf\x66\xce\x8a\x24\x0f\xd2\xc9\xd4\x51\xfc\xfe\x6e\xa2\x88\xe0\x73\xe0\x8e\x45\x35\xbf\xba\x5f\xd1\x1b\xfd\x3f\xc0\xf3\x98\xcb\x55\xbc\x33\xa3\xd6\x93\xb7\xc5\x56\x85\x77\x74\x21\xe5\xc5\x94\x46\x33\x8b\xec\xed\xd4\x32\x63\x34\xf9\x38\xe0\x4c\x50\x23\xc2\x6a\x68\xb0\xea\xbd\x9b\xf4\x5c\x34\x9a\x1a\x0b\xad\x35\x27\xae\xfd\xc6\xf7\x74\xcd\xd8\xf2\x66\x7a\x47\x12\x67\x83\x3c\x18\x97\x85\x12\x35\xbf\x3c\x51\x88\xd6\xa3\x7d\xf1\xc4\xf2\x27\x63\xff\xbb\x82\x81\x83\x57\xda\xd6\x9e\xa4\x87\x0d\x1e\x85\x37\x1a\xab\x6a\x8f\x74\x78\xa0\x0a\xd0\xc7\xce\xc0\x59\x9d\x5b\xf4\x8b\x3f\xcb\x31\xa9\x41\xfb\x84\xa1\xb1\xf2\x84\x76\x54\x1e\x0e\xa2\x88\x7a\xe3\x44\xd2\x52\x8b\x5c\x97\x57\xc9\x1b\xb8\x9d\x9a\x3d\x74\x77\x81\x4d\x53\x7d\x9f\x2f\x18\x94\x51\x0f\xb8\xe8\x09\x58\xd5\x03\x58\x8f\x5f\xa4\x42\xc7\xa3\x79\x59\x23\x14\x5c\x30\x90\xa2\x13\x11\x42\x03\x3f\xec\xfe\x8e\x8e\x3d\x17\x3a\x5d\x93\x8b\xf8\x62\x9f\xcd\xf2\x98\xe6\x23\xcb\x2d\x10\x2f\x00\xe0\x11\xf1\x8b\x71\xf9\x57\x1a\xcb\x6b\x7c\xaf\x5b\x56\x09\x6b\xbc\x88\x21\xbc\x90\x51\xc9\x5b\xb1\xd1\x8a\xe2\x40\x08\x20\x80\x2a\xc5\x6c\xb6\xeb\x9d\x03\x64\xf0\x77\xc7\x65\x36\x04\xc5\xd5\x3b\x39\x64\x73\x8a\xd7\x5b\xbf\x74\x9f\xb6\x1d\xa1\xa7\x97\x70\x84\x00\x40\xaf\x19\xa9\x96\xc2\x96\x5b\x67\x7a\xd0\xcd\xe5\xef\xaa\x04\x40\xcf\xc9\x47\x6a\x7b\xd1\x5f\x64\xd5\x0a\xe4\x40\x44\xd0\x4e\x00\x27\x83\x30\x09\xfc\x82\x87\x63\x49\x1f\xf3\x22\x10\x16\x83\x6b\xfb\x67\x55\x33\x14\xc0\x38\x6b\x8f\x0e\xce\x04\xe9\x00\xf9\x74\x04\x39\x8c\xd2\x39\xc3\x44\xf4\x92\x87\xa1\xc9\x4e\x6c\x14\x2c\xb3\x51\x6f\xc0\x4e\x16\xbb\x18\x2d\x4a\x74\xb6\x80\x75\xa7\xc5\xc4\x9f\x22\x3e\xc1\xeb\x1f\xfc\xea\x37\x6f\x44\x20\x56\xc3\x0e\x9f\x60\x27\x05\x59\x80\x2d\xc0\x12\xff\x5d\xbf\xc3\x6f\xe4\x83\x1f\x66\xb7\xaf\x61\xb2\xcf\xef\x06\x46\xc6\x93\x9f\x21\x3a\xbd\xa5\x78\x97\x5d\xdb\x46\x3f\xa3\xd8\xfa\x4e\x8f\x8d\x6a\x63\xe6\x6f\x37\x79\xc0\x96\xbf\x46\xa5\xcb\xbb\x88\xd6\x02\xde\xb3\x74\x0a\x22\xd4\x44\x22\x35\x52\x8a\x2c\x9e\xa1\xd4\xde\xed\xd6\xf0\x32\x41\xc6\x68\x56\x3c\x4a\xa3\x1d\xf6\x64\x6c\x6a\xf9\xc3\x12\xad\x05\x7d\x9c\x7e\x44\x73\xc4\xf2\xa9\xc1\xc7\xc4\x54\x29\xd6\x6e\x26\x3a\x45\xa7\xd4\x00\x9d\xeb\xe0\xe6\x1f\xef\x06\xa3\x95\x64\x2d\xb0\xd5\x3e\xe6\x73\x13\x7a\x3f\xe1\x70\xb7\x42\x30\x93\x86\xa8\x10\xf3\x24\x5f\xf5\xc6\xdf\xf5\xd8\x73\x1e\x6a\x28\xfb\x29\xc8\x9a\x49\x45\x60\x8d\xaa\xc7\x48\xbe\x99\x4d\x68\xa6\x02\x6c\x4e\xd5\xfa\x87\x3b\xbe\x98\x3e\xb2\x27\x66\xfc\xe3\xe5\xe3\xb0\xbf\x1f\x3b\xdf\x64\xbb\x50\x56\x4b\xad\xdb\x7b\x99\x1e\x9b\x1e\x70\x7c\xfa\xed\xfe\x63\xaf\x0f\x57\x1b\x38\xb6\x91\x75\x5b\xe0\x9d\x36\xc8\xe9\x46\x47\x54\x62\x46\x69\x38\x80\xdf\xc2\x39\x05\x06\x67\x0c\xa2\xd5\x8e\xf0\xae\x36\x52\xe3\x9a\x52\x09\x80\x01\x05\x8f\x87\xf7\x67\x86\xe9\x57\x75\x1c\xe1\xe1\x6f\xc5\x99\xb2\x47\x27\x59\x79\xe5\x43\x89\x8d\xd1\xe0\xdf\x6f\x08\x75\x1f\xeb\x8e\xda\x52\xbf\x5b\xdd\x27\xfc\x90\x90\xee\xf4\x4f\x62\xab\xc1\xe0\x5d\xc3\x74\x1b\x1b\x1b\x24\x26\xef\xb8\xff\xf7\x55\x2e\x20\x10\x19\x76\x1d\xc2\x5b\x47\xbf\xcc\xcc\xc6\xe8\xca\xf2\xfd\x44\xf5\x23\x51\x78\xc2\x97\xd3\x55\x67\x4b\xaa\xe3\x4a\x9c\xe3\xd3\x6b\x12\x22\x8a\xd7\x86\x75\x56\xbd\x7e\x7f\xc9\xe2\x32\x98\x36\xbf\x84\xfd\xd0\xf7\x2a\xb3\x13\xa0\x4d\x51\xba\x8d\x2e\x01\xad\x6c\x76\xa4\x9b\x06\x7d\x1d\xec\x0d\x9a\xb3\x10\x6c\x23\x4f\x49\xe1\xfa\x97\x3b\xad\x24\x3c\xf8\x68\x1e\x6e\xcb\x98\xd9\x63\x05\x14\x3f\x4a\xc6\xa6\x3e\x91\xc0\xe2\x0d\x6c\x02\xb0\x90\x73\x33\x86\xb4\x49\x1f\x8c\x2c\x65\x46\x8b\x79\xdf\xf1\x7d\x0e\xb8\x97\x68\xfa\x7a\x7a\x82\x8b\x1e\x1f\x85\x0b\x64\x05\xee\xfb\xca\xaa\xcb\x72\x30\x47\x58\x88\x8b\x0d\xdc\xfc\xe8\x7d\x35\x41\x70\x66\xc7\x3b\x74\xe1\xf7\x40\x73\xbb\x7b\x7f\x2c\x12\xd8\xd7\x4c\x00\xf7\xec\xc1\xb5\xef\x4c\xa0\x0e\xe0\x0b\x61\x04\xff\x0c\xbd\xea\xe4\xb3\x1a\x25\x5f\x9a\xbe\xd3\xbe\x44\x23\xc1\x2e\x1b\x1a\xfb\xdf\x91\x8e\x7d\x3c\xf7\x28\x59\x2f\x08\xfc\x7c\x8f\xd9\x71\x5f\xcf\x56\xb9\x73\x61\xcf\xe6\x27\x71\x30\x26\xee\x7e\xc1\xf0\x0d\x0d\x15\x4e\xeb\x14\x7f\x62\x91\x0e\x2a\xee\x95\x30\xce\xf0\x82\x54\x67\x3e\xb0\x7e\x43\x50\x81\x85\x24\x75\x22\xf7\xce\x23\x2c\xa2\xec\xf0\xef\xfd\x5f\x7d\xfd\x34\x52\xd6\x33\x6b\x0d\xe4\x51\x6d\x4c\x67\x90\x9d\x93\xd4\x6e\x2f\xab\x22\xa9\x43\x56\xf1\x3c\xdc\x1b\xa8\xbf\x05\x23\x1f\x4d\xb5\x82\x22\xf3\xf5\x47\xb3\xb9\x2c\xab\xb3\x8c\xca\xf8\x81\xd6\x7b\xf1\x9f\x83\x27\x11\xbe\x2f\x8b\xc8\xc9\xc8\xf9\x41\xad\x48\xb6\x0c\x5c\x62\xc7\x47\xea\xcc\x8d\x3c\xd1\x93\xa0\x2b\xb1\xb9\x85\xdd\x26\xee\x6b\xcb\xaf\xa0\xe2\x6e\xa1\xd3\xb3\xf3\xf7\x7c\xf5\xf9\x99\x69\x3b\x7c\x16\xdf\x16\x97\x92\x4a\x92\xc5\xee\xf5\xca\xf6\xe7\xe4\x78\x0b\x62\x4d\x9b\xaa\x07\x00\xcd\xb3\xeb\xb9\xaa\x84\x7f\xd7\xf6\xcc\x28\x15\x1e\x50\xdd\x20\xd3\xd2\xb6\xab\xd1\xd7\x83\xaa\xf4\xf6\x4b\xca\xce\x34\xf9\x1a\x6c\x96\x8e\xd3\x1f\x59\x42\x8a\xc4\xfb\x5b\x39\x80\x18\x1a\xc1\xd5\xb1\x61\x98\x86\x92\xae\xa7\xda\xc4\xfc\xb7\xd2\x4b\xca\xce\xd8\xb8\xf8\x29\xd1\xe2\x08\xe6\x2e\x46\x5c\x18\xc5\xd7\xe4\x9f\x18\x61\xc5\x8d\x64\x40\xfa\x98\x7a\x31\x74\xf1\xbd\x26\xe6\xf2\xf7\xf2\x3f\xc0\x64\x8c\xd4\x72\x4a\xb5\x22\x6b\x55\x74\xe7\x70\xe9\xee\x2b\x6d\x5e\x5e\x92\xc6\xc5\x64\x07\x25\xd3\x5f\x3d\xcf\xf6\xaf\x78\xea\x84\xd0\x34\xed\x6f\x8d\x43\xac\x15\x55\x91\x60\x10\x09\x53\x46\xd1\xa1\x9e\xcb\xde\xf6\xa9\x16\x41\xf6\xd6\xff\x3e\x0b\xff\x6a\x73\x2d\xd2\xb3\x01\x0c\xa6\xae\x99\x19\x3f\x0b\x9f\xf1\xd2\x3d\xec\x62\x01\x53\x03\x9c\x96\x29\xd8\xce\x86\x23\x3f\x2b\xfa\x13\xdc\xc9\x8c\xa7\xad\x01\xf6\xdb\x6d\x73\xdd\xe5\x47\x32\x3e\x0b\xdd\x34\x04\x13\x88\xe6\xed\x5e\x01\xc6\x18\x4b\x91\xd3\x17\x1d\xcc\x71\x03\xd7\xb7\xc9\x20\xdc\x2c\xce\x8e\x90\xc4\xe0\x56\x52\x2b\x83\x68\x39\x22\x0a\x3e\xdd\xa0\xc1\x8f\x32\xe7\xa3\x64\x3c\xfe\xc9\xb1\x54\x4a\xc1\x9f\x70\x17\xd7\xa6\x72\xa0\xd7\xd3\x56\x80\xc1\x62\x2d\xcb\x97\xa0\xfb\x2c\x28\xd3\x5b\x56\xd8\x4e\x92\x47\xa2\x1a\x89\xe6\x58\x96\x43\x37\xb1\x85\x3d\x3f\xf0\xfc\xe8\xad\xa5\x36\xa4\xfa\x05\x94\x29\xbe\x96\x0b\x4d\xd3\xa3\xda\xe2\xf4\x47\x31\x87\x61\x02\x08\xf9\xf7\xf8\xb0\x58\xc6\xe5\x26\x9a\x8d\x77\x4c\x01\x87\xef\xe5\xcd\xbb\x24\x3f\xf9\x6c\x90\x59\x59\xf0\x0b\xb1\x07\x0c\x45\x68\x48\xb7\x0d\x98\x88\x78\x96\xf2\x01\x54\xa4\x48\x1a\x94\x4f\x09\x6c\xdd\x04\x63\x47\x18\x0a\x8b\x32\x96\x0c\xac\xb8\xfc\x55\x02\x1e\x40\x33\x3c\x5d\x49\xd7\xec\x65\x71\x2f\xd1\x3a\x69\x82\xa5\xd6\x44\x63\x0c\xb6\x79\xcb\x99\x5c\x96\xc5\xc7\x2f\x42\xe4\x53\x40\xc8\xa5\xa7\x1a\xcf\xea\x4e\x6c\xbe\x90\x28\x2c\x33\xbb\x2a\x0d\x12\xb5\x90\xd7\xff\xad\x88\x22\xe4\x52\x87\xbd\x5c\x99\xa8\x01\xab\x19\x0b\x68\x8a\x04\xcb\xb0\x7a\x4c\x00\xe1\xa0\x67\x73\x72\x96\xba\xa8\xcc\xe1\xb0\x2e\x2a\xc1\x6a\x46\x0d\xfa\x84\xdd\x4a\x51\xa8\x9e\x6b\x0b\x78\x57\x14\x7a\x9a\x53\x0d\x98\xf3\x85\x48\x84\xfc\x97\x84\xce\x96\xb9\x1f\x17\x69\xc5\x71\xe8\x09\x53\x82\x72\x6d\x80\xb4\xed\x60\xd6\x12\xd1\xe9\xe3\xaf\x64\x64\x01\xf8\x6c\x46\xe0\x60\x51\xc5\xba\x08\xea\xef\x1d\x63\x55\xb1\x6f\xec\x0c\xbf\x45\x7e\xfb\x6f\x37\xce\xd3\x13\x5f\xf5\x42\x0e\x98\xcd\xf6\x1c\x3a\x9b\x9b\xce\xfa\xcd\x0d\x68\xde\x61\x20\x6a\x51\x8c\x59\xa7\x24\x18\xaa\xf8\x4c\x81\x10\x17\xa1\x15\x29\xd6\xb2\x14\xd1\xbb\x1f\xd0\xa6\x5e\x7e\xd9\x41\xa0\x4a\x60\x9f\x1d\xd7\xfd\xc0\x88\x46\xe4\xc9\x06\xec\xca\x86\xd8\xec\x44\x7d\xab\x01\x0d\x47\xd0\x0b\xb1\x88\xf3\x08\x27\xe1\x22\x6b\xc3\xe8\x06\x31\x07\x72\x54\x19\xde\x40\x98\x3f\xf3\x5a\x13\x60\x8f\xc8\xaa\xe6\x70\x9b\x49\xa0\x75\xa6\x3d\x39\x68\x23\x0c\x5e\xc0\xa2\xbe\x01\x77\x3f\xbf\xf0\xff\xe8\xce\xd8\xff\x9d\x1d\x6e\xfe\x3f\xa5\x89\x15\x54\xed\xc0\xba\x92\xd8\xf9\x2e\xf5\xa8\x55\x6c\xe1\x6f\x29\x26\xcf\xd1\x1b\x1c\x8a\x97\x4e\x21\x34\x2b\xbd\x71\xe4\x0d\x0a\x02\x40\xd9\x05\x2a\x8e\xdc\x7a\x96\x1b\xc6\x2b\x0f\xc7\x6a\x5e\x48\x72\x58\x77\x13\xdf\x21\xd5\x36\xa7\x18\x06\x9a\xf1\x4f\x99\x05\x24\xf3\x0b\xcd\xaa\x16\xe5\x60\x51\xce\x18\x0c\xef\xe1\x0f\x97\x6e\xf1\xd1\xb3\x7c\x29\x20\xb3\x82\x65\x6c\x18\x76\xad\x2a\xeb\x4a\x64\xe7\xb4\xae\x47\x29\x7d\xf0\xe6\xbd\x6a\x8b\x8c\xd3\x9b\xa3\xa6\x3f\xb6\x87\xf6\xbf\x27\xc1\x9f\xac\x00\xcc\x40\xd3\x23\x8c\xf5\x75\xde\x43\x2d\x5b\x9a\xea\xe7\xb1\xd0\x45\x01\x59\xbb\x9c\xd0\x76\x2f\xbc\x2c\xe2\xef\x83\x86\xaa\xed\xea\x1f\x96\xa7\x06\x5e\x63\x8c\x8d\x0f\xed\xdf\xcb\xaa\x52\xd0\xe8\xc8\x41\xc6\x64\xae\xcb\x79\xc3\xfe\x55\x99\x3c\xd1\x85\xce\x0b\x00\x0e\x87\x6d\xc2\x11\x0a\x25\xdd\x90\x6e\x73\xbe\x10\x37\x88\x4b\xc0\x8c\xf3\x90\xe4\x35\x0a\x77\xf7\xde\xa5\x23\xe8\xe1\x46\xd6\x47\xfc\xf6\x54\xff\x4f\xdc\x15\x2e\x60\xe8\xef\x3e\x1a\x2c\xba\x76\xff\xdc\x03\xfc\x3d\xe2\x05\x8e\xa4\xa6\x2c\x68\x4f\xca\x4a\xc7\x1e\x83\xd7\xad\x44\xe7\x2f\x63\xc2\xea\x59\x2f\xe4\xe0\x59\xd5\xbd\xdb\x69\xbe\x93\x23\xeb\xcb\xc1\x43\xcf\x61\x0f\x16\x82\xc8\x4f\xcd\x6e\xdb\x13\x09\xd3\xb8\x48\xa6\x1e\xeb\x4f\x2f\x0e\x2d\x6d\x55\xcd\x0a\xa0\x10\x11\xbb\x0d\x09\x98\xdb\xd2\xc0\x64\x93\x96\xa6\x21\x06\xef\x4b\x2e\xd4\x2b\xdf\xa3\x5b\x6f\x58\xd8\x01\xeb\x4b\xf0\xf7\x98\x76\x47\x46\x5e\x8e\xe2\x5f\x1f\x8d\x84\xf9\x3d\x2b\x48\x26\x53\x40\x63\x1f\xee\x8a\xa8\x37\xe7\xf0\x60\x58\x5f\xe1\xe7\xaa\xa7\xe4\x4c\xab\x83\x76\x19\xcd\xdb\x26\x2c\x0d\x7f\xcd\x53\xdb\x71\xe1\x89\xf3\xeb\x39\x3c\xac\x66\x04\x20\x19\xe7\x6f\x9a\x18\x86\x5e\x94\x86\xa0\x1d\xbd\x65\xbc\xf2\x0b\xa4\x61\xc3\xe6\xe2\xfb\x41\xa0\x6a\x6a\x66\xcd\x2d\xe4\x44\x80\x95\x10\x0a\x52\x92\x55\xfb\x18\xcb\x79\x53\xa9\x3a\x70\xc9\xae\x3d\xcc\xc8\xcc\x4d\x09\xf4\xb1\x95\x8b\xf9\x4e\x31\xbd\xf6\xca\xd6\x04\x73\xd7\x86\x27\x50\x01\x13\x28\x19\x21\x86\x6e\xfc\xae\x10\x8d\x29\xec\x4c\x10\x6e\x0e\xa3\xb4\x33\x1a\xee\x74\x08\x94\x84\xb8\x53\x5d\x72\x1d\x27\x78\xff\xee\xcb\x5e\xc7\xd5\xa0\x08\xc8\x23\x83\xba\xd3\x39\x75\xa6\x93\x12\xae\x3e\x61\x2c\x93\x6c\xf6\xa4\x0a\x17\x0e\xd9\x7a\x6b\x11\xe2\x94\xae\x9c\x7d\x90\x2f\x27\xe8\x8d\x66\x0b\xcc\x9e\xe4\x4d\x43\xec\x52\x06\x21\x01\x30\xc2\x0b\x81\xe5\x20\x2e\x9f\x9e\xfb\xa7\x37\xa4\x99\x1f\xef\x28\x04\xd0\xd0\xe6\xa8\xd8\xd1\xe0\xdb\xcb\x3f\x73\xdf\x0d\x87\xf0\x81\xc8\x21\xef\xa8\x7a\x35\x8c\x44\xce\x0f\x20\x53\x4f\xb2\x12\xfe\xfc\x87\x32\x13\xe1\x32\xa1\x58\x49\x20\xa4\xc0\xc6\x27\x86\x90\x5a\x53\x56\x64\x16\x3c\x82\xd5\x2e\xb5\x49\xc9\xec\x85\xe2\x75\x5a\x22\x6d\xb2\xd1\x32\x65\xa7\xb9\x74\xfc\x82\x42\xc1\xcb\xc8\x61\x48\x26\x56\xdd\x6f\xe2\xf3\xcc\x6c\xf4\x76\x1e\xa5\x11\xaf\x9f\x47\x5d\x93\x2b\x39\x28\xdd\x21\x6f\x8c\xaa\x20\xa6\xa5\x2d\x61\xcd\xab\x7e\x88\x2a\x61\x31\x69\x5d\x24\xb4\x49\x99\xf5\x6a\xa7\xa1\xbe\x29\xd6\x17\x4a\x7e\xf3\x73\xc1\x1b\x03\xf1\xa7\x83\xe9\x01\x63\xe8\x31\x0d\xe1\x04\x36\x08\xbd\xdb\xc8\xfb\xbc\xe6\xbb\xe4\x76\x7e\x36\x76\x9b\x3a\xb0\x55\x51\x89\x6b\x76\xe3\x4b\xc4\x1d\xfe\xbb\x1f\x23\x98\x3f\x84\x11\x3c\x52\x1b\x5e\x0d\xf3\xdc\xff\x96\x5f\x1d\x14\xce\x28\x10\xf0\x24\x87\xd7\x3b\x13\x40\x63\x4a\x09\xaf\x08\x23\xbb\x9d\x4e\x92\xe4\x07\x8d\x40\xf8\x43\xdb\x91\x6f\xad\x84\x5d\x77\x0e\x9c\xf6\xbc\xba\xbb\xe8\x8b\x73\x5f\xde\xbd\x19\xd6\xc7\x40\xec\x3d\x99\x07\x81\x2d\xa5\x55\xe1\xc2\xa0\x83\xeb\xe0\xe5\x33\x05\xd7\x4a\xa7\x26\x5f\xdf\xf5\x2d\xe5\x72\x6a\x97\x8d\x4d\xaa\x9b\xfb\x4f\xf4\xe9\xd9\x02\x88\x5c\x1c\xab\xcf\x39\x88\x59\x02\x18\x2f\x1c\xd9\xd6\xf4\x86\xc6\x11\x7e\xd4\xcf\xe8\xee\xb1\xdd\x2f\x7d\xf0\x98\x92\x3c\x71\x8e\x3a\x98\x43\x93\xb4\x77\x4a\x49\x5e\xf2\x79\x2b\xbe\x80\x65\x56\x1d\x37\xfe\xb6\x98\xfd\xa1\x7f\xd6\xc6\x5d\x34\x50\xef\xf7\x65\xbb\x52\xf4\x35\x2e\x7c\xe2\x76\x33\x69\xc5\x56\x95\x01\x17\xec\x73\x79\x2d\x44\xa7\xfe\xc2\x2b\xd0\x58\xbb\x8d\xff\x34\x1b\x74\x52\x98\x63\x42\x59\xeb\x3f\x02\x29\x89\x92\x5a\x0e\x48\xbf\xa9\xb4\xa9\x5e\xea\x41\x4f\x37\xfa\xab\xa6\x99\x26\xcd\x7c\xb8\x22\x28\xa2\x41\x09\x6c\x3d\x2a\xb6\xc3\x62\xf4\xd1\xe6\x02\x6b\xb0\xac\xf8\x5f\x3a\xcd\x39\xb8\x76\xbc\x2f\x0d\x55\xad\xe0\x2b\xcf\x50\xbf\xcd\xe6\x07\x70\x05\x8d\xca\x04\x5c\x52\x7a\x21\xad\x84\xf0\xb8\xe0\xf5\xb3\xb7\x6b\x9c\x3c\x41\xf7\x8d\xbd\x8d\xc1\xb5\xf4\xc1\x42\x37\xbf\x42\x0b\xf2\x5a\x77\x56\x39\xd0\x3a\x4f\x72\xd8\x56\x4d\x48\xcc\x1b\x54\x91\x34\x20\xe6\xc9\xf3\xb1\x75\xe9\x82\x4c\x6a\xda\x51\x56\x13\x26\xef\x9e\xc6\x8e\x84\xf2\x1e\x8f\x1d\x7d\x25\x0c\xb2\xe7\x6a\xa5\x1b\x85\x27\xa2\xf4\xab\xba\xaf\xc3\x3a\x0c\x95\x00\x58\x60\xfb\x97\xea\x47\xe9\xf0\x5c\xa3\x05\x0c\x3f\xa6\x4f\x2e\x9f\xc2\x9f\xed\x1a\xf0\xd4\x18\xdb\x02\x91\xaa\xa9\xe2\x4e\x0e\xe7\x8c\xdf\x96\xf8\x43\x56\x20\x25\xa5\xef\x9f\x0a\x04\x7a\x3a\x42\x55\x4a\x9e\x83\x74\x9f\xc2\xd9\x1f\xb4\x3d\x9b\x9c\xc0\x75\xf5\xf2\xde\xc4\xca\x25\x16\x1f\x3f\x2f\xa9\x22\x97\xe1\x7b\xb0\xe9\x61\xe9\x5d\xd6\x39\x7a\x9e\xa7\xb7\x19\x68\x1a\x83\xe4\x33\x94\x00\x7f\xdf\x5d\x12\xaf\xb9\x40\x1e\xdb\x09\x98\xf5\x36\x8a\xe5\x6d\x35\xdf\x73\xdd\x77\xfa\xab\x76\x19\x1f\x8d\x44\x1a\x5c\xe8\x1b\x0a\x1b\xff\x00\x0c\xf1\x45\x40\x4b\xc1\xd0\xd1\x3d\x6c\x60\xec\xfa\xf4\x2c\xd2\x6f\x00\xb7\xe4\x91\xe0\x4e\x7f\x56\x2a\x87\x56\x8e\xad\x65\x6a\x48\x05\x63\x45\x8f\xb5\xc5\x12\x1c\x84\x55\xf7\x7d\xc8\x34\x8c\x36\xf0\xc5\xe5\xfa\x5c\x65\x4e\xf3\xad\x1b\x49\xc9\xa3\x92\xe1\xe2\x96\x18\x9a\xcb\x14\x54\xc4\xe2\xdb\x62\x1b\x6c\x0e\xdb\x54\xb5\x13\x0b\x74\xb0\x6e\xeb\xc1\xc5\x83\x59\x50\x4b\x30\xb0\x47\xaa\xf1\x97\x09\x3f\x6e\xdd\x7f\xa1\x9b\x2f\xb0\x82\x1f\xf8\xc4\x9d\x4d\x6c\x4a\x55\xd6\x54\x0e\xe1\xad\xde\x86\x7e\x3a\xa4\xa7\x48\x0e\xf2\xb9\x5d\xc8\xc3\x5e\x48\x71\x31\x16\x04\x69\xca\xaf\xe1\x76\xa6\x50\xa8\x84\xd2\x89\xd4\x69\xeb\x5e\xe7\x05\xdc\xba\x96\xa5\x54\x1f\x76\xaf\x91\xc8\x57\x7c\x00\xd2\x40\x8d\xce\x99\x9f\x2c\x8c\xb9\x59\x10\xe4\x1d\x1a\x3c\x77\x17\xdd\xa9\x51\x04\xdf\x27\x09\x87\x03\x9c\x91\x34\x81\xfc\xca\xb4\x0e\x50\x6a\x7f\x0e\xbd\xf6\x08\x75\xf5\x85\x8b\xa8\x21\xd5\xd9\x70\x7f\x70\xf1\xde\x72\xd4\xc4\xa3\xc7\xb5\xd4\xef\xa6\x1e\xce\x0e\x81\xaa\xb1\xfe\x79\xda\x20\xcf\xb7\x26\xda\x2a\xfe\x82\x9f\x61\xa3\xba\x89\xdb\x15\x18\x9a\x4a\xd8\xd2\xb6\x60\x79\x88\x66\x4d\xeb\xe7\xab\x4d\x0e\xf3\xb2\x45\x2e\xec\xf9\xd3\xed\x46\xf4\x33\x81\x1a\xc9\x5b\x9e\x0e\xf0\xd8\x9c\xba\xe2\x0a\x93\x0f\x06\xaf\x4d\x42\x99\x1f\x9f\xef\x43\xfe\x97\xe8\x8f\xf4\x37\x6c\x88\xc4\x47\xc1\xd6\x8b\xa2\x17\xf6\x24\x04\xb7\xa9\x16\x7d\x6c\x26\x8f\x1a\xc8\x61\x9e\x24\x8e\x5e\x9b\xe7\x27\xac\xa4\x91\x57\x25\x05\x28\x52\x7d\x75\xbd\x32\x50\x6b\x6b\xd2\x81\x38\xc1\x08\x35\x8e\x97\xe3\x97\x4e\xad\xd6\x0b\xf2\x3c\xbf\x27\x4c\x77\x19\x48\xaa\xc4\xee\xbb\x26\xc7\x7d\x3f\x3f\x96\xc6\xfc\x9b\xd7\xf0\xd6\x83\x5d\x85\x85\x18\x4a\x40\x4c\x45\xa1\x85\xa8\xc7\xc9\x42\x01\x3e\x26\xe6\x71\x54\xb2\x5b\xb9\x1f\x6f\x30\xfd\x3d\x75\x3b\x4f\xe3\x3b\x41\x78\x3e\x01\xef\x25\x2a\x70\xf1\x09\xb8\x96\x2e\x26\xbe\xa0\x83\xfa\xf9\xcd\x95\x0d\x39\x2a\x2f\xb0\x17\x8b\x3e\xa6\x6d\xa1\xbe\x38\xfa\xa5\x4f\x63\x9e\x36\x44\x66\xf0\x72\xda\x00\xa2\x7b\x1f\x54\x1a\x13\x7a\x9d\x9e\x33\x22\x52\xaf\x89\x5a\xeb\x62\xed\x99\xb9\xfb\xa2\x45\x4f\x4d\xd6\xf6\xbe\xda\x3f\xd0\x34\x71\x99\x3c\xa6\x06\xfa\xc5\x35\x08\xa7\x2e\x84\xe9\xfe\x06\xc6\xd2\x05\xb0\x9b\xa0\xa6\x64\xb0\xce\xe1\x47\xaa\xb5\xdd\xef\x4b\x0a\xe3\x82\xb1\xfd\x31\xea\xb1\xba\x78\x6a\x82\x9f\xce\xe3\x7a\x9e\xe7\xf4\xbf\xc2\xe1\x2d\x04\xe9\xfe\x06\x34\xd1\x0f\x60\xda\x0b\x89\xa5\xf5\x48\x1a\x93\x9b\x63\x9e\x1c\x79\x81\x8f\xf0\xf0\xc0\xbf\x3f\x17\x67\xe6\x78\x7d\x97\x07\x6f\x69\xa4\x15\xbf\xc8\x8f\x5c\xd6\x6f\x18\x58\xfd\x49\x8c\xa1\x44\x34\x21\xdf\xd6\x90\x83\xd9\x37\x67\x56\x0a\xa4\x7f\xba\xd8\xd2\xfc\xe2\x09\x20\xf8\xb8\xfe\x6d\x23\x7c\x07\xf4\xf4\x36\x0e\x33\x20\x8f\x19\xf4\x07\x50\xb6\xa8\xde\xb1\x91\xc3\xb1\x7e\xce\xb8\xf2\x8e\x54\x07\x65\x38\x56\x4d\x39\x37\x0f\x9e\x89\x79\xb7\x11\x2f\x00\xc4\x32\x32\x55\x62\x2b\xa3\xac\x67\x03\xcc\x5f\x8a\x1d\x0b\x6d\x1c\x9f\xda\xfa\x82\xd9\x6f\xc5\x4f\xce\xd6\x07\x80\xf6\x56\xc2\x15\xdc\x4e\x1c\xee\x6e\xa7\x37\xbd\x4f\xe8\x5f\x9a\xda\x3b\x5d\x78\xa3\x89\x83\xaf\x8c\x44\xf3\x05\x14\x79\x56\x36\xb7\x87\x31\x41\x7f\x80\x00\xf8\xdf\x23\xf9\xb1\x1f\xdc\x9f\xd7\xc8\x0e\xdd\x60\x2f\x34\x7f\x5e\x9f\x9e\xb9\xfb\x4b\xc3\x25\xdc\x31\x08\x01\x13\xcd\x4a\x91\xcd\x2d\x5c\x1a\x8f\xd3\x7d\xa4\xdb\xc4\x96\xa9\x32\x47\x9f\xf0\xb8\x18\x5d\x2e\x36\xdd\x79\x26\x08\x62\xbb\xa3\xd8\x15\x57\x7d\xbc\x34\xfa\xe0\xa3\xda\x42\x8f\x7b\x1a\xd8\x50\x11\x5d\xa1\x24\x8e\x69\x7c\xe5\x8e\x81\x8c\xcd\xc7\x11\xdd\x59\x44\x61\x6e\x8d\xd0\xef\x75\x71\x88\x73\xc8\x20\x9d\xbe\x04\x90\xaf\xa3\xc2\x94\x25\xd6\x0c\xa5\xa0\x49\x23\x80\x82\xe0\x80\x94\xe3\x62\xd3\x1a\xcc\x51\xd8\x39\xd1\x6f\x5c\x6f\x24\x35\xa6\xc7\x41\x72\x69\x44\xac\x5b\xfa\x64\xed\x89\x64\xf0\xa4\x3f\x93\xe4\x32\xec\x45\x06\x28\x8a\x73\x4f\xb1\x95\xd2\x8e\x61\x8f\x51\x96\xfc\xe5\x28\x71\x07\x16\x33\x73\x41\xb6\xeb\xd8\x26\xa8\x49\xdd\x2f\xd3\x34\xc0\x1d\x8a\x74\xc0\x18\xfb\xa7\x64\xf8\x0d\x47\xec\x34\x71\x21\x92\x46\x35\xd0\xc7\xa9\xfd\xda\xa7\x6f\xfe\x81\x8a\x44\x82\xeb\xf4\x8c\xe0\xe4\x28\x23\xd0\xe7\x99\xa6\x10\x1a\xf2\xc3\xbb\x51\x54\xa1\xdf\xaf\xa6\xc1\x72\xa4\xa9\xb9\x81\xb3\xdb\xb0\x03\x7d\x90\xf6\x81\x7c\xdb\xcd\xf7\xb0\xec\xbe\x0a\xc9\x8a\x94\x9a\x42\x8a\x64\xa1\xbf\xc3\x36\x80\xa1\xd2\xbb\xf3\xec\x7a\xe4\xc4\x33\x76\x6d\x59\xf1\xe7\x1d\x46\xad\xc9\xf8\xf6\x97\x06\x73\x55\xaf\xaf\xde\x76\x24\x3e\x46\x92\x07\xb3\x55\x1c\xed\x9b\xef\xe9\x61\xb3\xe6\x24\x77\xf8\xc8\x8e\x9d\x05\x9c\x69\x8c\x77\x3f\x49\xf9\xdd\x34\x45\x8a\x11\xf4\xf4\xb2\xd9\x9c\x1e\x86\x87\x8b\xc7\x59\x48\x04\x73\x91\xff\x99\x8b\x56\x04\xe3\xb0\x31\xea\xea\x35\x0e\x4d\x03\x9c\x37\x9b\xfd\xbe\xe0\x50\xa7\x5f\xc3\xc1\x1f\x1e\xd9\x82\x53\xd8\x10\x94\x01\xa9\x16\x7b\x47\x1e\xbf\xd7\xd6\xb9\x2c\xc0\x99\x20\xc8\x27\x84\x2a\x69\x56\x63\x40\x61\x23\x13\x32\xad\xc7\xbf\x3f\xfa\x27\xa6\x65\x51\xe2\xf2\xf7\xba\xe5\xec\xed\xc3\x05\xd8\x52\x26\x08\x12\x85\xe3\x74\x9c\x1a\x19\x99\xf8\x18\x5b\x1c\xf6\x2f\x2a\x35\xc8\x05\x53\xf8\x68\xb8\x7b\xe2\x9e\x24\x39\x58\x7f\xa1\xd3\x15\x63\x05\x76\x1f\x1f\x32\x69\xef\xaa\x57\x77\x7b\x91\xfd\xda\xf9\x6f\x65\xc2\x83\x5e\xc3\x44\xb8\xcf\x6a\x91\x07\xf7\x48\xaf\xca\xe8\x71\xe0\xcb\x37\x78\x47\xa4\xa3\x10\xcd\x6f\xae\x18\x2b\x4c\x41\xbc\x71\xa6\x75\x37\x27\xa9\x2f\x79\x76\x7a\xa8\x9b\x77\x57\x66\xdd\xe3\x57\x4a\xf4\x4f\x8f\xd0\xa7\xe5\xf8\x84\x62\x50\x39\xd4\xd6\x22\x68\x2e\xb2\x3f\x3a\x3f\xfb\xdd\xe2\x04\xb1\xde\x71\xcd\x1f\x2e\x6c\xf3\xd7\x49\x9b\xb8\x79\x0e\xf4\xbc\x26\xd9\xde\x73\x5f\x68\x1d\x5f\x8c\x4e\x65\x33\x5f\x66\x23\xde\xd5\x12\x7e\xe7\x8a\xb1\x12\x31\xc1\x2a\xec\x1a\x70\xbb\xbf\x35\x1c\x58\xad\x71\x62\xce\x9e\x4b\x10\x46\x99\x77\x42\x7c\x1c\x71\x2c\xd2\x59\x74\x36\x35\xe5\xb4\x2d\x19\xc1\x15\x56\x33\x86\x5e\x88\xe4\x71\xcd\x23\xb3\x05\x9c\xd8\x7f\xa9\xd1\x98\x04\x65\xfa\xa1\xf0\x12\xf2\x04\x4e\x43\x83\x05\x9d\xc9\x84\x86\xd6\xbc\x7c\xe8\x14\x62\xa4\xb6\xd5\x08\x79\x9a\xf9\x1a\x2c\x30\x10\x25\x72\x6c\xc4\x3a\x25\xd7\xef\x6a\x2f\x37\xfb\x2d\xd2\xb3\x5c\x26\x0e\x1d\x3c\x9a\xb3\x26\x49\xe7\x28\xf4\x15\x8d\x4e\x7b\x21\x46\xb0\xe2\x34\xa4\x61\x2a\xea\xff\xd4\x02\x00\xad\x78\x50\xfe\xfc\x5b\xf2\x01\x55\x70\xa6\xd5\xf6\xf0\x7f\xb1\xf2\xd6\x5f\x51\x7d\xef\xfb\xf0\x99\x61\x48\xe9\x6e\x46\x5a\xba\x44\x52\x06\xe9\x46\xba\x41\xba\x4b\x4a\x72\x68\xa4\xa5\x11\x85\x41\xe4\x45\xa7\x80\x80\xc4\xd0\x25\x29\xdd\x29\x2d\x21\x5d\xf3\x2c\x79\x7f\xfe\x83\xe7\xfb\xe3\xac\x35\x7b\xf6\xbd\xef\x2b\xee\x6b\xcf\x3a\xeb\x08\x7b\x5f\x95\xe4\x5e\xe8\xd2\xec\xf2\x74\x0f\xe4\x1b\x70\x75\x51\x90\x60\xc9\x22\x3c\x31\x60\x67\xbe\x11\xc9\x83\xb8\x88\x66\x5e\x17\xb7\x21\x4d\xf3\x60\x35\x89\xcb\x3a\x4c\xe5\xa3\x83\xa6\x18\xd8\x16\x2e\x0c\x21\x28\x3d\xf1\x4e\xee\x81\x18\xf5\x8d\x43\xc6\xdc\xf8\x46\xe5\xc4\x67\x32\xca\xb2\xea\x36\x27\xbf\xeb\x99\x49\x7d\x92\x18\xab\x25\xd9\xc3\x37\xd7\xfa\x8a\x2c\x90\xf3\xe7\xfc\xf6\xf6\xcc\x06\xd1\x05\xaa\x66\x6a\xb6\xb5\xe5\x5d\xf2\x2f\xd8\xbe\x59\x72\x97\x2f\xac\x5b\x14\x72\x92\x87\x05\x52\xd5\x00\x26\xa0\xdd\xc3\x29\xbf\x8c\xff\x50\xa8\x02\xab\x9b\x1d\x65\x6c\x30\xfb\x2d\xdc\x18\xde\xbc\x94\x5f\x1a\x02\x52\x0e\x58\xe6\xd3\x79\x31\x4b\x3a\x50\x46\x5e\xd7\xb7\xe8\x7f\xd2\x42\x93\xca\x39\x0d\x2c\x62\x29\xa5\xe4\x14\x9b\x05\xc7\xcf\x1c\x85\x3e\xfd\xb1\xdd\x58\x9a\xf7\x75\x92\x34\x81\xdb\xd5\x3c\xb8\xf0\x73\x19\xf6\xd3\xf1\x2c\xa2\xe0\xe2\x20\xff\x5f\xd3\x6b\xd1\xca\x11\x7b\x0f\x24\x7b\x5b\x49\x8c\xce\xf8\x82\x4b\x90\xc5\x29\x00\xd2\xfa\xfe\xc2\xde\x7a\x6a\x5d\xf3\x8b\xe2\x58\x24\x81\x39\xe3\x4b\x2c\x96\x72\xb5\x50\x0b\x9e\x7b\xbd\x2c\xf5\xdb\x97\xb3\xa7\x3d\x10\xc6\xa7\xab\x0d\x18\xc9\x67\x56\x65\xd3\x96\x04\xed\x71\x9d\xf1\xa0\xb4\x1b\xa9\x7d\xff\xeb\x2e\xdc\xb4\x2e\x65\xb4\x50\x29\x7f\xfe\x09\x53\x0c\xe8\xb3\x71\x2a\xc0\xf6\xe6\xfc\x2f\x98\xbb\xd8\x18\xf7\x50\x32\x5c\x0b\xd5\x89\xf0\x9c\x95\x22\x61\x67\x85\xaf\xed\x53\xf5\x5c\x0e\xde\xfb\xa4\x83\x56\xd1\xdf\xb5\x7c\x4a\x16\x91\xd2\xde\xfe\x1b\x59\x22\xa5\xfc\xe0\x8d\xe5\x76\xc4\xd7\xb5\x59\x3d\x21\x03\x38\x01\xf4\xa7\x96\x15\x3f\x5e\x02\xbc\xc4\x56\x9b\xe4\x32\xc1\x34\x5d\x62\x9f\x04\x39\x6d\x6c\xe5\x48\xbc\x3d\x03\xa4\xe4\xb1\x99\xd1\x4b\x9b\x4b\x41\xcc\xe9\xe1\x8b\x39\x37\xd1\x6f\x16\xbe\xc8\xd5\x96\xee\x6f\x11\x30\xf1\xe1\x33\x0d\x43\xcc\xce\x1d\x5b\x6e\x71\x01\xf1\x15\x7f\x32\xd7\xfa\x5b\xdc\xa5\x45\x2d\xb6\xf9\xae\xb1\x93\x65\xdf\x2b\x78\x3d\x9f\x48\x91\x24\xee\x4f\xe0\x6c\xf2\x41\xbf\xc5\x64\x18\xa2\x83\x1f\x9d\xc7\x26\x95\xe9\x54\xc4\x36\x79\xc9\x6c\xf2\x86\xfb\x44\x2e\x9a\x81\xe0\x94\xe5\x69\x47\x37\x32\x0a\xfd\x3c\x8d\x08\x9c\x13\xfa\xae\xd1\x64\x06\x70\x9f\x1f\x4e\xa5\xdf\x9c\x3f\xd4\xd1\x64\x0f\xb8\xfa\x3b\xe4\xe6\x2b\xa0\xf8\xd1\xc7\xcc\x3c\xd8\xa6\x7d\x1f\x17\xaa\x54\xcd\xf7\xdb\xad\x45\x34\x7c\xf9\x81\x4c\xc9\xb2\xb7\x61\x56\x0d\xa0\x9b\x6f\x6b\xa8\x38\x4e\x03\x21\x5a\x8f\xd3\x96\x28\x39\x9c\xf4\x3f\x77\xb4\xf9\x45\x55\x35\xb3\x8a\xf2\x9e\x08\xb2\xe1\x09\x5a\x9f\x2c\x63\x21\x96\xa5\xe6\x72\x92\x92\x4c\x02\x86\x80\xd2\x1d\xb6\x60\x70\x4d\x7f\x92\x89\x98\x8a\x84\xad\x16\x83\xf3\xaf\xe7\xe0\x8a\x87\x13\xd6\x2e\x8b\x39\x55\x44\x16\xb2\xd3\xff\xc4\xfd\x44\xf2\x45\xbb\xa4\x0d\x50\x23\x05\x56\x19\x7b\x70\x45\x40\x3c\xc2\x5d\x9a\x4d\x5c\xfa\x68\x99\x71\x2f\x86\x20\x5e\x44\xc7\x69\xa0\x1d\x1c\x21\x0e\x51\xfb\x5b\xd4\x82\xf5\xec\xce\xd9\x13\x6f\xfe\x0f\x4a\xc6\x06\x3e\x81\x58\x08\x87\x3f\x01\x46\x4d\xdb\xb8\xc0\x67\xbc\x17\xbd\x98\x6a\xa1\xff\x51\x51\x1b\x1f\xab\xdc\xce\x9c\xbc\xdd\x74\x20\x14\xd3\xfc\x61\x41\xde\x0f\xe1\x20\x34\xe0\x1b\x47\xbd\x12\x1e\xa5\x82\xff\x5c\x5d\xfc\x4e\x69\xc6\xfd\xad\xdb\x32\xd5\xd1\x6a\xa6\x8e\x46\x75\xd0\x6e\x4e\x15\x09\x01\x8d\x52\xc1\x86\x54\x4f\x2a\xb1\xe5\x54\x07\x65\x2b\x6c\x12\x95\xae\x77\xce\x93\x02\xff\x6a\xa6\x5e\xd4\x38\x07\x60\x5b\x43\x4c\x09\x65\xc5\x67\x04\x41\x4f\xd0\x3a\xe8\x43\xab\x56\x2f\xd9\x70\x8e\xe6\xee\x96\x36\xcb\xa5\xbc\x83\xe9\x13\xc7\xfc\x7f\xd9\xde\x1a\x7e\xdf\x24\x36\x10\x21\xea\x31\x86\x0f\xbd\xc5\x83\x45\x46\x42\xfb\x20\x58\x82\x26\x55\x61\xf1\xd3\x06\xee\xce\x13\x4e\x6b\xd4\xdd\xf9\xfc\xa0\x20\x48\xa0\x0d\x30\x2b\xf2\x36\xfb\x25\x59\xbc\x8a\xd8\xa0\x0e\xd6\xec\xc4\x3e\x54\x15\xa9\x78\x9e\xe2\xa8\xed\x6c\xe8\x6a\x03\x2e\x7e\xc8\x7b\x3d\xa7\xfb\x8e\xa2\x4d\x00\x60\x21\xae\x87\x67\x0e\xc6\x35\x6c\x94\x0c\xe4\x4b\x39\xef\x9e\x17\xd3\xe9\xd5\x92\x3b\x30\xf3\xb5\x9b\xdd\x89\x15\x2f\xb5\x09\x02\xce\x92\xd6\x41\x82\x40\xf6\xe4\x4a\x38\xd8\xf3\x34\xc9\xa5\x25\x41\x83\xc3\x13\x27\xe7\x48\x10\x54\xbe\x71\x9f\x89\x8f\xd3\x26\x08\x2f\x14\x8c\xac\xea\xc1\x14\x4b\xf3\xe1\x2c\xf0\xe5\x15\x5b\xae\x30\xae\xfa\x63\xcd\x46\xf5\x59\xeb\x40\x97\xc1\x27\x8f\x07\xac\x1b\x26\xbf\x5f\x3d\xeb\x8b\x81\x00\x2b\x60\xdf\xc6\xe0\xb3\xa8\x0e\xf0\xd5\x0f\x5f\x36\xa2\xd7\x62\xc4\x05\xf9\xe7\x4c\xe4\x6c\x09\x84\x2a\x43\xaa\x2f\xf3\x32\x0c\x8b\x42\x05\x00\x51\x78\x9b\xa6\xd2\x78\x71\xae\x95\x73\xf7\xe2\x03\x3a\xdd\xa6\xc3\x46\x4f\x31\xa5\x7b\xe3\x00\x33\x3c\x4c\x7f\xe1\x4d\x6b\xa8\x00\x3c\xa3\xdc\xc0\x8d\x7b\x1d\x37\x68\x26\xcb\x35\x45\x9e\x3a\x75\x38\x2c\x1b\x86\x0e\x7e\xb2\x17\xb9\x5d\xd1\xfe\x49\x16\x63\x10\x48\xd3\xc4\x95\x9b\x14\xc7\x4e\x3a\x0d\xfe\xcb\x75\x12\xf1\xfe\x78\x6a\x2c\x0f\xbb\x89\x2b\x15\xbb\x91\xd9\xbd\x4c\xc5\xb7\xf2\x13\xfa\x08\x90\xf1\x22\xb6\xa9\xf2\x95\x72\x4c\xc1\xa7\xaf\x72\xd8\xfc\x91\xc3\x31\x4f\x41\x3f\xef\xc4\x0d\x8b\xe6\x43\x05\xe1\x6a\x83\x12\x05\xda\x25\x88\xda\x31\xf9\x8f\x0c\x3a\x51\xa9\x21\xce\x17\x35\x71\xbf\x04\xdb\x46\x21\xb8\x24\x63\xc1\xf0\xf2\x0c\x5c\xc4\x0a\x4c\x6c\xac\x7a\x2d\xb7\xdb\xaa\xe7\xcb\xd1\xf9\xf8\x16\xb8\xd3\x3f\xc4\xf5\x36\x13\xad\x7b\x34\x9e\x78\xd6\x92\x2f\x48\xdd\x17\x30\x12\x80\xb3\x18\xd6\x10\x15\xfe\xc1\x58\x1a\xbc\x4e\xb7\x73\xec\x61\x74\xfe\x79\x33\xf5\xfe\x9e\x3f\x14\x06\xa9\xfe\xaf\xd0\xa3\x7c\xec\x21\xd1\x61\x00\x48\x7b\xa3\x3b\xf5\xfb\xfb\x02\x0e\x44\x33\xdc\x4e\x07\x95\x34\x0e\x8d\x92\xe3\x03\x8d\x42\x6e\x2e\x0b\x96\x24\x02\x3c\xd7\xa4\x8d\x31\xaa\xcf\x3c\x4f\xa4\x28\xd6\xa8\x7c\xc3\xb4\x9a\xe7\xfc\xa0\xb4\x00\x09\xd6\x07\x60\xe2\xcc\x58\x50\x9d\x62\x4f\xd3\xf0\x30\xb3\x01\x17\xe6\x10\xf5\xb4\xc3\xcd\x71\x66\xac\x0c\x26\xad\x1f\x70\xbe\xde\x2b\x39\x7d\x1f\x32\x98\x20\xee\xd3\x05\xf1\x22\x99\xcd\xe7\x3d\xac\x34\xb6\x35\xcb\x9d\xc6\x05\x64\xc2\x3e\x10\x7c\x98\x52\x14\xa8\x3d\xd7\x67\x7b\x2d\x43\x4f\x1d\x22\x10\x4a\x88\xdd\xf2\x51\x52\xc6\x59\x88\x2c\x77\x1a\x17\xf6\x2c\x7b\x60\x0c\x95\xad\x35\x9d\xb0\xa8\x40\xd3\x73\xeb\xba\xf8\xce\x3b\xdc\x1b\x65\x7e\xb2\x17\xbd\x24\x18\x8a\x80\x24\xd2\xab\xca\x84\x0d\xb2\x6f\x9b\x07\x60\x54\x07\x66\x34\x56\x98\xc0\x6b\x82\x58\x1d\x66\x66\xf7\x46\x62\xfb\x52\x80\xe9\x6f\x8b\xa2\x3e\xe5\xb0\xad\x5f\x8b\x85\x92\x68\x9a\xa5\x5f\x78\x57\xf7\x7f\xeb\xd8\x0e\xa8\x42\xe9\x20\xd5\x4b\x97\x33\xaa\xc6\x8e\xcc\x68\x30\x73\x64\x9e\x2a\xa7\x99\x72\xdb\x1e\x37\xb7\x77\xde\x11\x7f\x68\x23\x11\xec\xa9\xd8\x33\xdc\xcf\x09\xd6\x80\xf2\x09\x1f\xfe\x1a\x17\x46\x84\xcf\x4d\x78\xcf\xe5\xd5\x0b\x92\x18\x26\x90\xf3\xa5\x8d\x17\xe7\xad\x04\x89\x15\x15\xf2\x3f\x19\x91\x2e\x53\x1e\xae\x1d\x86\x77\x5d\x5e\xc1\xd3\xe6\xbc\x98\xbb\x69\x7d\xb5\x59\x30\x51\xf0\x54\xd8\x05\xfb\xa5\xc9\xb6\xa0\x15\x15\x2c\x33\x05\xcd\xc1\xf8\xf3\xa0\x5e\x4a\xa4\x4b\xca\x83\xf1\x40\x42\xde\x36\x1d\x8d\xbd\x9d\xd4\xc3\x2c\x01\xc9\xb1\x2a\x10\x70\x3f\x5c\x41\x31\x1a\x70\xb1\xfd\x2b\x7c\x1c\x17\xe6\x42\x19\x96\xfb\x73\xcc\x67\x64\x78\x32\x6b\x00\x28\x0e\xf7\x39\x1d\xc8\x6c\xe5\x07\x69\x40\xdc\x7f\xfa\x16\xe7\x0c\x53\x0f\x03\x69\x5b\xc3\xdf\x7a\x3a\x72\xb1\x20\xee\x77\xb3\x2c\xeb\x5b\xc0\xf2\xe7\x56\xdb\x46\x8c\x55\xdc\xe8\xbc\x1d\x46\xb8\xfa\xc1\x98\xc2\x68\xbc\x1d\x80\x83\x8f\x9b\x53\xf9\x44\x4b\xd6\xd3\x5f\x8e\x94\x07\x33\x87\x1e\x5c\x56\x3d\xa5\xbf\x53\x60\x97\x6f\x0d\x88\x28\xed\x78\x0a\xa1\xc7\xab\xdb\xf3\x65\xab\xf3\x35\x23\x82\xa8\xfe\x53\x0a\x32\xf4\xb9\xc3\xb2\x28\xca\xab\xf8\x32\x26\x96\x86\x0b\xa3\xd2\x63\x2a\x36\x27\xc5\xd8\xc3\x12\x64\x12\x45\x1b\xeb\xf8\x60\x23\x42\xd8\x9f\x25\xde\xde\xf9\xb4\x7b\xf8\xbb\xcc\x10\xc0\xa7\x60\x9e\xfe\xa5\x7d\x99\xd6\x33\xbe\x0d\x81\xfd\xd7\x3f\x7e\xd2\x46\x77\x43\x16\x36\xf6\xf7\x09\x5b\xcc\x8a\x42\xa1\xa7\x3d\x15\x5c\x80\xb0\xcf\x2b\x8f\x28\x3d\x5f\xba\xb3\xa2\x32\x9f\x22\xec\xca\xae\x5d\x15\xf9\x1e\xf0\xbf\x97\xa1\xf9\xcb\x5b\x28\x53\x4c\x05\xd7\x42\xf8\xba\xdc\x45\x4d\x56\x4a\xa8\xb8\xe3\x21\x74\xf6\xd6\x02\x42\xb1\x56\x03\x87\x35\x30\x88\x11\x1d\x6f\x77\xa8\x90\x52\x3c\x24\x9c\x9a\x85\x6d\xf2\xe1\x7f\xb8\xc2\xb0\xbb\x33\x80\xe5\xd0\x32\xf7\x96\x99\xb8\xd7\x34\x84\xfe\x18\x08\xdc\xde\x62\xe4\x25\x80\x60\x72\xdc\x10\x0d\x64\x25\x44\x07\xc5\xc7\xb4\x46\x3f\x6d\xf7\x78\x1d\x61\x4a\x6b\xcb\x4c\x05\xd7\x5a\x2f\x43\x8b\xe9\x9b\x8e\xb3\x0a\x0f\x29\x0a\x03\x32\xae\x5d\xad\xe2\xf2\x3f\xd8\x00\x73\xe5\xfd\xf9\xe4\x88\xf3\xb4\x54\x67\x72\x36\x70\x56\x33\xa4\xd5\x41\x59\x68\x48\x8d\x00\x54\x77\xfb\xbd\x61\xc0\xe8\x2d\x6f\xfc\x13\xce\x71\x52\xcd\xed\x4f\xf7\x43\x91\xda\xfa\xea\x0f\x2d\x1f\x7d\xde\x6e\x8d\x45\x33\x3d\x7d\x96\x2d\x4e\x77\x6d\xd1\x61\x16\x48\xdc\x3f\xe6\xeb\x45\xb7\x7f\xa8\x1d\x4e\xbf\xcc\x38\x0c\xa4\x09\x53\x52\xeb\xc4\x31\xf0\xcd\xa9\x77\xb1\xd8\xfb\xe2\x69\x29\xc7\x22\x95\xbb\x22\x59\x18\x8e\xd5\x58\x57\xc3\x00\xc7\x1f\xbe\x16\x2d\x28\x7f\x0a\x75\x19\x6f\xe2\x77\x18\x88\x72\x17\xd7\xaf\x1c\xdc\x7a\xdb\x3b\x00\xb7\xa7\x32\x56\x07\xf1\xb0\x9d\xf2\xe2\x6f\x63\x55\x84\x00\x48\xba\x0a\xf1\xeb\xa8\x7b\x10\xbf\xcb\xf7\x8d\x1c\x06\x34\x22\x79\x8a\x5a\x9d\x7c\x90\x88\x8e\xf8\xe5\x2b\xfc\x0f\xd8\x22\x24\xb0\xa4\x10\x4c\xd6\xdb\x83\xdf\x07\x8c\xf3\x6c\x7a\xd6\x00\x4e\xc7\x04\xd5\xba\x39\xf3\x4e\x2c\x4c\x04\x42\x65\xea\x1f\xef\xb8\x18\x14\x7a\x66\x35\x5a\xc2\x04\xa7\x47\x51\xe7\x24\x34\xb0\xa2\x69\x26\x1b\x51\xf7\x34\x5d\x1d\xaf\x3c\x63\x77\xa8\x56\x9a\xb5\x2f\x52\x15\x7c\x96\x67\xc3\x16\x07\xab\x7a\x3a\xb9\xe0\x13\x57\x3e\x08\x90\x72\x4d\x3d\x8b\x49\xf1\x49\x48\x58\x1d\x23\x38\xfe\x9a\xe0\x5f\xa3\x4e\x4e\x5c\x9c\x1f\xaa\x1f\x6c\x58\x67\x54\x6c\xf8\x22\xbd\x7c\x08\x48\xf3\xa1\xa4\x3f\x58\x51\x53\xf9\x11\x4c\x29\xfa\xae\x9f\x87\xc4\x30\x07\x0a\x71\xbc\x1d\x53\x7f\xb2\xdf\xbd\x07\x15\xe8\x3c\x75\xb2\xc1\x40\xc4\xf7\xf5\xc3\x79\x97\xf0\x6f\x43\x85\x7e\x10\x39\x44\xa9\x13\x70\x7a\x8a\x7c\xba\x22\x42\x26\xb6\xdd\x8e\x88\x6a\x97\xc7\xc4\xfd\x6e\x33\xab\xe5\x8b\xd7\x66\x42\xbb\xc7\x48\xd9\x36\xd5\x9a\xfe\x3e\xa1\xc4\x7a\xde\x65\xf0\x27\x4f\x6d\xd0\x6e\xee\x84\x05\x9e\x89\x4a\x6e\xc4\xa3\x30\xce\x01\x15\x5b\x57\x33\x73\xea\xad\x59\x29\xf0\x2a\x81\x05\x2f\x46\x4e\xd7\x97\x33\x8d\xa5\x55\x82\xae\xad\x34\xde\xb3\x40\x4b\x77\xdf\xfa\x5d\x33\xbc\xcf\x09\xd5\xb3\x03\x70\x58\xc5\xd0\x57\xca\xcf\xdd\x35\xc3\xd2\x7e\xb3\xa2\xb9\x24\x2e\x3a\x8a\x39\xfe\xf5\x7d\x48\xf1\x07\xef\x41\x93\xd0\x37\x7a\xa4\x36\xb0\x3a\x6f\x70\x61\xd2\x3d\x3e\x96\x7b\x88\x88\xfc\x06\x40\x1e\x73\xd4\x3f\x5e\xa7\xbc\x5e\x8e\x61\x9a\x49\x0c\x5c\xda\x45\xc0\x12\x62\x8f\xf9\x6e\xa7\x41\x88\x9c\x0a\x2e\x40\xfd\x3c\xb4\x6f\x9c\x7b\xa7\x74\x93\xee\x5a\xa6\xe9\xb3\xab\x66\xcf\xa9\x6c\xd4\x05\x4f\x5b\x5f\xfb\x2f\x39\x58\xc5\x41\x9c\x76\xb4\x79\xc9\xec\x7b\x35\x0c\x44\x9a\x5b\x36\x0b\x7d\x71\x69\xa5\xc4\x42\xd5\x5b\xb4\xfb\xf2\xb4\x1a\xb1\xa3\x61\x29\xe3\x96\x50\x87\xdc\xac\xa0\x9f\xfa\xd4\xd8\xb4\x92\x59\xa5\x2e\xc6\x73\xdb\x6c\xf4\x96\xe9\x20\x76\xb4\xcc\x61\xc2\xa4\x75\xac\xea\xda\xb8\xe0\x31\x02\xc2\x41\x57\x4e\x83\xa7\x7e\xc9\x0c\x3b\x07\x6c\x6d\x90\xe4\xdd\xef\x96\x04\x21\xfc\x3e\xe5\x31\x87\xa2\x14\x91\x67\x56\x99\x20\xf6\xad\x4c\xf3\x44\xaa\x77\xba\x75\x1a\xf9\x4f\x5f\x07\x2a\x2c\xb8\x89\x4e\xf3\xd6\x29\x10\x09\x47\x53\xbd\x04\x9d\xdd\xb6\xc4\x34\xdd\x4f\x6b\x1c\x9d\xbf\x62\xcd\xa0\x82\x0b\x54\xdb\xfc\xe7\xd7\x50\x4a\x20\xea\x5a\x21\xe4\x1c\xcb\x65\xac\x72\x0c\x2e\xf9\xb4\x10\xda\xea\xa0\xd9\xb4\x7d\xc7\xc5\x0f\x09\x8e\x63\x69\xfd\x70\xb4\x5e\x96\x63\xeb\x2c\x08\xa0\x5b\xce\xf5\xac\x4b\xaa\x92\x73\x34\xcd\xe3\x0c\xc3\xf7\xbd\xba\x38\x58\x8e\x6a\x05\x7b\xa8\xd3\x70\x09\xd2\xfd\x7b\x2f\x89\x5f\xc1\xc6\x32\x35\x0f\x5f\x88\x75\x70\x71\x68\xd9\x4f\x30\x6f\x50\xcf\x43\xc5\x6b\xaa\x34\xbf\xe3\xe2\x31\x61\xe6\xcf\xbd\x70\xc5\xaf\xa5\x6d\x23\x56\xb0\x88\xeb\x98\xfc\xee\xe1\x3c\x53\xa2\xf7\xfe\x9b\x1a\xd5\xe4\x61\xe4\xfb\x6f\x91\x06\xca\x26\x91\x17\x57\x9c\x91\xc2\xb8\x52\x1a\xae\xe6\x57\x0b\x9b\xbe\xd6\xcf\x57\x84\x9f\xe5\xd9\x44\xab\xaf\xba\x4c\xcd\x65\x6e\x66\x9a\x13\xa9\xa9\x62\x20\xe2\xa5\x59\xab\x69\xcc\xba\x73\x26\x7d\xbd\xb7\xc4\x76\x7e\x27\xb5\x65\xa3\x92\x2e\xd6\xf0\xb0\xc4\x4f\xc3\xe9\x7f\x1a\x7f\x0c\x23\x84\x98\x86\x65\x4a\xd5\x75\x32\x29\x7f\xc9\xd7\xfd\xd0\x25\xe4\xb9\xa3\x73\x8d\x47\x2b\xff\x20\x4e\x66\x9b\x35\x0c\x90\xd1\xbf\x40\x27\x8d\xbc\x32\x33\x46\x68\x7f\x3f\x09\x60\x7c\xae\xd2\x46\xa2\x8b\xd6\xcf\x26\x1e\x4f\x78\x17\xac\xf9\xdc\xa5\x24\x38\x29\x8b\x55\x61\xeb\x28\xfa\x64\xae\x88\xa2\xf0\xcb\x26\x56\xb8\x4d\xff\x1b\x89\x65\xdd\x2d\x8d\xf1\xa1\xaa\x2b\x56\x01\x34\xcd\xa8\x25\x41\x99\x72\xed\xc2\x90\xca\xd4\x4a\xad\xf6\xae\xe6\x60\xef\x0c\x3f\x9a\x5f\x11\xbc\x04\x9c\x12\xf8\x6c\x22\x20\x9d\xf0\xa4\xde\x21\xb7\x61\xa3\xd4\x55\xf2\xa6\xcc\xe4\x7e\x56\x78\xc0\xdf\xe1\x26\xda\x19\x66\x86\xae\xe2\x6e\xc5\xb7\x4f\xab\xad\xf1\x20\xb9\x5d\x71\xed\x99\x18\xa2\x35\x64\x1d\x54\xf0\x8e\xe2\x32\xa7\x14\x37\x2b\xf7\xb1\x1d\xf9\x42\x8c\x29\x8d\x3a\x7b\xae\x35\x49\x40\x50\x54\xbb\xbd\x8f\xc9\x0e\x88\x4a\x7d\xb7\x44\x3b\x97\x88\x0d\x9e\x8a\x0a\x7f\x73\xc2\x83\x0d\xed\xe0\xed\xf0\x5a\x66\x32\x15\xd3\x68\x11\x1c\x01\x5e\xc5\x58\xd2\x53\x61\x81\x3c\x0b\xa1\x10\x97\x83\x95\xa4\x86\x6c\x8f\x66\x03\xfd\x01\x87\x8f\xb9\x6f\x31\x08\xb5\x9c\x0b\x34\x10\x68\x41\x60\xff\x44\xd8\x13\xa5\xed\x6e\x08\xd3\x0e\xfb\xa7\x91\xbf\x30\xcb\x83\x71\x7b\x2c\x3b\x80\xfa\x8d\x1e\x71\xe4\x47\xf8\xbc\x9c\x7d\x9c\xf2\x9f\xab\x26\x7a\x70\x56\xd6\x39\xa7\xea\xd8\xc7\x72\x05\x23\x81\x42\x77\x0c\x42\xcf\x96\x2f\x56\xc7\x6a\x5e\xb8\xa7\x26\xa0\xf0\xc5\x93\xf5\x95\x44\x8a\x90\xf8\x0e\x28\x31\xd3\x47\x41\x38\xd6\x17\xe2\xe7\xa1\x52\xd0\xd9\x2a\x05\x42\xaf\x2f\xe1\xb2\x96\x0f\x34\x62\x57\x6d\x59\xf6\x4c\xcf\x69\xfa\xa8\xe0\xb6\x08\xd7\x9e\xcf\x92\xfa\xf4\xe3\xd9\x05\x2c\xae\x4b\xdf\xc4\xed\xc0\xec\x27\x47\x32\xef\x43\xea\xbe\x3d\x09\x5e\x97\x85\x0b\x02\x6c\x02\x4f\x17\xcd\xeb\x14\xf5\x96\x7e\x10\x8b\xe3\x28\x95\x5b\x6d\x0e\x89\x83\xa4\x13\x76\x16\x73\xd6\x97\x98\x6e\xfb\x49\x56\x23\x32\xd9\x88\xd6\xd8\x5e\x60\xb7\x74\x8c\x62\x89\x59\x05\xb7\x5e\xd5\xbf\x30\x3f\x68\x26\x05\x8d\x00\xca\xaf\xdf\xaf\x2e\x9f\x39\x59\xb7\xeb\xd2\xec\xa2\xd1\x73\x70\xe1\x31\x4c\xdd\x65\xb2\xf8\x44\xf4\x66\xe3\xba\x65\xf8\x74\xf8\xde\x13\xae\xe2\x22\x09\x9e\x87\x07\xf7\x0e\xa7\xa7\xd6\xcc\xf9\x15\x74\x40\xd7\x59\x6f\x14\xb2\xaa\x50\x43\x8d\xcf\xe8\x28\x82\x44\xd1\xaa\x85\xfe\xe3\xf3\xb0\x27\x72\x44\xdb\xa5\x1d\x24\xae\x6b\x9c\xf9\xe3\x35\x9f\x6e\x4e\x5e\x91\x21\xaf\x61\x39\xb9\x8e\x8b\x3c\x2d\xee\x6e\x09\x35\xe6\x73\x5b\xb5\x1e\x9a\xc2\x2d\xa7\x2f\xbd\x22\xf8\x12\x1b\xc2\x58\x7a\x75\x84\x41\xde\x0b\x36\x21\x59\xc5\x45\x3e\x2f\xb5\xa7\xb3\x7c\x3d\x4e\x66\xa0\x23\xf4\xcc\x88\xfb\x2c\x2a\xb1\xfb\x85\xf1\xf4\x98\x57\xcb\x59\x60\x43\x98\x59\x5d\x65\xa1\x07\xc6\x2a\x75\x3a\x1d\x7e\x1f\x77\x32\xa6\x16\xe6\xd2\xfb\xdf\x1d\xf8\x3e\xf6\x9b\xd2\x4f\x68\xcb\x72\x07\xc6\x34\xdc\xcb\xe7\xcd\x25\xaf\x2c\x8b\x30\xb0\xdd\x31\x2c\x08\x2b\x1d\xc6\xbd\xff\x6e\x51\x54\x77\xdb\xd3\x77\xd6\x9c\x22\x71\x98\x2b\x6f\x6d\xa2\x6c\xb9\x3f\x41\x1f\x9c\x3f\xa2\x0f\x5d\x2a\xc0\x05\x81\x90\xc5\xf2\xbf\xe9\xe9\x02\x7f\x7f\x2f\x56\xb2\x76\xbe\xdb\x11\x9c\x7d\xe6\x8c\xfe\x21\x39\x63\xd5\x06\x75\x9e\x68\xf7\x2b\xc1\xf0\xa0\x9b\xdc\xe7\x8a\x36\x57\x0a\xfc\x09\x74\xb5\x41\x4e\x63\x4e\xa9\x26\xa2\xa3\x78\x03\xfe\x4d\xfd\x27\x29\xfe\x8d\x14\xfb\x9f\xb2\x06\x78\x44\x4a\x6a\x58\x46\x17\x8a\xa9\xb8\x17\x55\x60\xab\xdf\x9c\x1a\xb0\x6b\x95\x8a\x4b\x4b\xb6\x85\x8b\x24\x52\x6b\xa6\xb7\x70\xe9\x24\x6c\x59\x0d\xba\xc5\xfd\x42\x91\x12\x4c\x29\xdf\x6c\x99\x51\x61\xf3\xff\xe3\xd1\x8b\xff\x07\x1f\xca\x19\x91\x3f\x42\x8d\xc8\xe8\xca\x71\x49\xd8\x35\x2c\xbc\xf4\x5c\x9b\x3c\x98\x5c\x98\x16\x1c\x08\x13\x63\xe6\xff\x13\x54\x08\x77\x17\xfb\x09\x75\xbe\x6c\xc1\x1b\xd1\xbd\xdd\x11\xff\x23\x33\x08\x75\x46\x49\x60\xe5\x19\x6f\xb0\x1c\xa1\x7d\xd7\xdd\x62\x11\x7f\xe9\x12\xbd\x78\x79\x5c\x47\x77\x2a\x46\x34\x22\xef\xcc\xdb\x4a\x24\xde\xe7\x13\xb4\xfe\x80\x71\x80\x86\x7a\xe9\x03\x37\x57\xa2\xf2\xa7\x18\xd5\x63\x6c\x49\x9f\x25\x7c\x48\x78\xd9\xba\x5b\x18\xcd\x43\xce\x49\xc7\xf2\x17\x8d\x15\x09\x61\x64\x41\x92\xc1\x15\x4f\xde\xae\x3a\x30\x1f\xf7\x38\x78\xc6\x5d\x8a\xef\xfe\xaa\xbe\x17\x64\x6f\xb9\x94\x7b\xd3\x2c\x6e\xd6\xbd\xa4\xa9\x78\x14\xb5\x62\x5c\x18\x8a\xcd\x41\x46\x57\x7d\x6e\xa8\xc3\x9e\x1b\x71\x98\x64\x5b\xba\xb3\x66\xf5\xfd\x6b\x51\xad\xe1\x4b\x55\x56\xbc\x93\x51\xe1\x79\x69\x38\x27\xe0\xd3\x8d\xe6\x44\xf4\x16\xdc\x67\xf6\x34\xa0\x22\xf0\x43\x54\xfe\x73\x09\x62\xf4\x05\xbb\x37\x23\x76\xc7\x9e\x87\x71\x7a\x6f\x8f\xb2\x72\xc8\x3f\xdf\x84\x2d\xcb\xa1\xaf\x55\x65\xd3\xde\xb3\xe8\xcb\x85\xb8\x64\x0f\xb0\xf5\x2a\x50\x50\xd1\x7a\x12\x63\xbb\xa3\x43\xdf\xd7\x0c\x0a\x3b\xb0\x40\x0b\x49\xbb\x46\x0b\x34\xe2\xd4\xc5\x28\xd1\x6f\x9e\xda\x97\x30\x84\x01\x81\x9f\xcb\x8b\x75\x6b\xd2\x70\x64\xfe\x2b\x8c\x62\xa4\x87\x99\x2c\xea\x49\x26\x93\x73\x0f\xc7\x12\x68\xc7\x86\x0d\xdb\x82\x43\xb1\xdc\xd1\xa1\x84\x2f\x2f\x3e\x91\x82\x1d\x9d\x83\x0e\xa3\xbd\xd2\x7e\x8e\xf3\x57\xef\x1a\xdc\x1d\x66\x90\x2e\x4c\x58\x62\x0a\x7c\x2b\x1a\x43\x7b\xab\x7b\xe4\xd8\xfc\x87\x21\xf3\xfd\x73\x87\x9a\x9c\x43\x6b\x70\x30\xb6\x3b\x3a\x92\x57\xf4\x82\x42\x1c\xcc\xbe\x19\x50\x65\x28\xd3\x67\x91\x76\x5d\x66\xdf\xc3\x10\x5e\x79\xf3\xd9\xd2\x0e\xc2\x79\x10\x09\xff\x88\xf4\xe3\x5c\xbf\x39\xcd\x90\x3f\x71\xe3\xa5\x9f\xe3\x26\x51\x44\x03\x55\x02\x5f\x9f\x66\x68\xdb\x6e\x8c\xa1\xd7\xca\x4b\x28\x28\x14\x3c\x47\xa9\x65\x3d\xe0\x91\x9e\xa1\x69\x45\xc1\x87\xb9\xe5\x60\x9a\xf8\x32\x98\xed\x25\xe9\x69\x41\x75\xaf\x25\xcc\x07\xb1\x57\xac\xc0\x0e\x8c\x48\x32\xb8\x50\x8f\x0f\xd8\x85\x4e\x54\x8e\x3e\xa2\xd0\x7d\xa5\x43\xf5\x86\xe4\xf5\x58\xd9\x96\x5b\x20\x3f\xc8\x17\x02\x69\x0d\xb7\x89\xfb\xf5\xd1\x2e\x8e\x66\xe9\x9d\x85\xbe\x2a\xd4\x10\xd2\x08\x4e\x2e\xbf\x52\xad\x7b\xde\x55\x34\xd8\x35\x5e\x2a\xf5\x44\x3e\xb7\xfb\xdb\x3e\x09\xdd\xd4\x6b\xca\x99\xc4\xe5\xd0\xec\x1d\xce\x9b\x77\x2a\x7a\xe5\x49\xaf\x40\xf8\xa9\xd8\x11\x6a\x70\x4e\xe0\x0d\xc9\xf6\x31\x07\xb1\xe6\xb7\x3f\x0a\xaa\xf9\xa3\x56\x82\x54\xba\xb3\x65\x3c\x77\xf3\xb1\xb9\xb3\x20\x92\x31\x45\x80\x6a\x83\xc1\x86\xf7\xe3\xa4\x67\x89\x9f\x6e\x81\x01\x79\xcf\x3f\xba\x91\x01\x65\x5f\x98\x3e\x0f\xe2\x7e\xe6\xf8\xde\x41\xfc\xc3\x5f\x75\xba\x14\x33\xd4\xe5\x97\x52\x68\x45\x43\x06\x2c\xca\xf6\x6c\x5f\x43\xca\x20\x85\x8c\x6e\x7a\xaf\x3f\x96\x1f\xc4\x00\x69\x04\xaf\xa2\x51\x07\x60\xcb\x5b\xcc\x5a\x97\x4c\x4f\x68\xc8\x64\xee\xcf\x8c\x37\x8f\x42\x52\x7b\xdb\xb2\x61\x8a\x90\x6a\x7e\x22\xe2\x7d\x87\x21\x9a\x9e\xa5\xa7\x91\xfd\x1d\x7c\xa0\x02\x48\x23\xd8\x82\x94\xf7\x89\xfe\xd2\x75\xd7\x7f\x13\x4a\x59\x21\xf7\xda\x63\xb3\xd1\xef\xf9\x42\x99\x09\x61\xbd\x4d\xb2\x93\x63\x03\x43\xbc\x14\x6e\x2c\x1d\xf4\x0d\x4f\x3f\xff\x3b\xea\x88\xdf\x0b\xc7\xf3\xea\x92\x53\x03\xd2\x2b\xa9\x2e\xd9\xd6\x37\xf2\x68\x96\x6b\xaa\x50\x4b\x70\x3f\x4c\xea\xab\xa3\x58\xe5\xbb\x28\x03\xe2\x1a\x0e\x5a\x09\x92\x63\x55\x38\x27\x90\xfb\xa1\x26\xda\x12\x4c\xd9\x25\x45\x9a\xb3\x6f\x12\x01\x46\xc5\xac\xdb\xdd\xe5\x60\x7f\x0d\x05\x04\x26\xd4\x3f\xe4\x1f\x71\xe7\xb1\x04\x7f\xc6\x08\x98\xeb\xb5\x26\x5c\xc5\x81\x09\xac\xf3\xeb\x70\xca\x3f\xef\xaf\x58\x40\xbf\xc7\xad\xb8\x3b\xa1\x1c\xba\x0c\xf8\xe9\x5c\x2c\xf6\xd6\x42\x15\x2a\x0b\xa6\xf8\xfe\x93\x5c\x0a\x97\x5f\x02\x3f\x16\xfb\xea\x5f\x47\xcc\x67\x27\xb6\x1d\xba\x75\xae\x0b\x47\xd4\x1d\x23\xb6\x24\x12\xf3\xda\x76\xec\xe2\xee\x09\x09\xeb\xec\xfb\xd9\xc5\x6c\x4e\x0c\xca\x3d\xd6\xe2\xb0\x0d\x14\xe1\x9c\x00\xb9\x7c\x2c\x1e\x07\x9e\xa4\x39\x3e\x61\xc5\x99\x55\xdd\x31\x9b\x74\x1e\x35\x8d\x97\x25\x5d\x16\x8c\x16\xdb\x1a\x72\x0f\xe1\xc4\x0c\x26\x57\x58\x32\xdc\xb6\x26\x59\xc5\x81\xd5\x6e\xcc\xa4\x7a\x63\x6a\xa4\xff\x68\xf0\x9e\x90\x20\xbd\xd9\x13\x92\x68\xcb\x02\x48\xc6\x64\x81\x68\x62\x6f\x8b\xb9\x7d\x8f\xe1\x6f\xdd\xa6\x1f\x65\x6b\x29\x59\x09\xb3\x00\x7d\x00\xcc\x14\xff\x1d\xfe\xe6\xd7\x66\x70\x6d\x6a\x65\xa7\xff\x5d\xf8\xba\x0b\xb6\xd3\x28\xc4\x12\x06\x6c\x13\x58\x4c\x21\x3b\xb8\x33\xe3\x28\x2c\x11\xdc\x65\x59\xee\x60\x13\x90\xa2\x1f\x24\x53\xc0\xed\x97\xbc\x84\xfe\x1a\x55\xd2\x76\x26\xb8\xfb\x32\x0b\xfe\x06\xdc\xef\x97\x39\x83\x25\x06\x2e\x22\x76\xe5\xa3\x25\x8d\xb3\x03\x27\xfe\x43\x2f\x86\xd5\x90\x20\x4a\x3d\x03\x93\xb1\xd6\x4d\xfa\xf2\xc1\x6c\xa0\x36\xbe\xe2\x0d\xf8\x84\x25\xb9\xe4\x0b\x49\xe6\x28\xa9\x6f\xf7\x0c\x78\x5a\x62\x04\xd2\x08\x26\xdc\x9e\x2d\x43\x88\x67\xec\x1f\x4e\xca\x7b\x31\x35\x5f\x26\x95\xaf\xa6\x31\x08\x82\x58\x09\xe9\x42\xa3\xa3\x69\x55\x0b\xde\xd5\xc3\xbc\x88\x92\xa7\x93\x9b\xc0\xc9\xd5\x59\xa8\x75\xa1\xa6\x9e\x5b\x3a\x2f\x74\xa3\x9b\x15\xb5\x2c\x07\x67\x7c\x12\x45\x1e\x90\xb4\xe8\x27\x41\x77\x52\xbd\x27\x77\x92\x4d\xf2\xb5\x36\x0d\x44\xab\x38\x70\x17\xfe\x75\x6d\x86\xf8\x7d\x8d\x3e\xae\x0d\x73\x8b\x17\x6d\x8e\x79\x8c\xb3\x34\x24\x16\x60\x22\x12\xa4\x63\xa8\x94\xd0\x8b\x58\x37\xd9\x72\x0c\xcc\x3c\x62\xb0\x09\x28\xc6\x43\xd6\xea\xc9\x72\x6b\x49\xea\xe4\xd5\x53\x8d\xdf\x71\x1e\x12\xb5\x7b\xaa\x08\x1a\xd0\x27\xb1\x59\x37\xe0\x30\x74\x23\x5a\xdf\xfb\xc7\xa8\x54\x16\xdc\x16\xbc\xe3\xbd\xce\xa9\x0e\xa9\x35\xcc\xee\x88\x68\x33\x5f\xd7\xf8\x72\x1c\x82\xd1\xfc\x76\x8d\xa1\x08\xcb\xda\x34\x1b\xc6\x02\x4e\x69\x30\xfc\x11\xbb\xac\xab\xe2\xc5\x29\x9a\xf0\xeb\xaf\xc7\xdb\xcd\x7e\x91\xdd\x1c\x0c\xd3\x26\x4c\x28\x6b\x4d\xb9\xed\x49\x41\x1c\x0a\x5f\x75\x67\xe1\x39\x2b\xc7\xb7\x8f\xaa\x70\x6c\x08\x4b\x72\x7e\x0d\xf7\xb7\xee\x75\x84\xa5\xf3\xb1\x94\x2b\xc8\x9f\x6b\x61\x97\x8a\x54\x6c\x26\x28\x98\xef\xf3\xf3\x8c\xef\x8a\x89\x12\x46\x8d\x60\xc2\x77\xa4\x22\x9c\xff\x8c\x89\x66\x67\x3b\x6b\xec\x92\xc9\x4e\xff\x2e\x02\x9b\x2f\x54\x96\xa4\x7f\x6c\xf4\x35\xf6\x95\x07\xb1\x73\xb9\x53\xca\x4c\xc1\xd1\xa9\x97\xcd\x93\xdf\xe2\x8b\x4b\xbe\xc6\x62\xf9\x1e\x5c\x47\x91\x84\xba\x8b\x9e\xe8\x50\x8e\x53\x9b\x4e\xc9\xb3\x5b\xcf\xb2\x04\x9a\xdd\x4b\xf6\x2b\x02\xde\x8d\x78\x06\x7e\x10\x6b\x32\x31\x98\x9d\x2b\x24\x6e\x20\x94\xad\x67\x69\xf1\xfd\x4c\x3f\xdd\x82\xf0\x18\x8d\x9c\x8f\x44\xe2\x2f\xf9\xb6\xba\x6a\xf5\x16\x63\xaf\xbc\x10\x6a\x56\x24\x19\xd0\x05\x6f\x8d\x61\x10\xc3\xb3\xb2\xfe\x7c\xa6\xe0\xf5\x97\xe0\x62\x3d\x69\x49\x00\xc4\x9a\x1c\x08\x2e\x86\x2c\x26\x2a\x23\xb3\x1a\x8d\xc5\x2a\x95\xcc\xde\x4b\xb8\x5a\xd6\xd0\x55\x1f\xd9\x18\xaa\x29\x14\x30\x22\x17\x98\x29\xba\xf8\xcf\x72\x38\x81\x28\xa4\x3f\x91\xb8\x73\xac\x8e\xf6\x8d\xed\x7a\xe1\xaa\x52\xb6\x19\xb2\xc6\x98\x35\x59\x00\xcc\xce\xec\x26\xc7\xb2\xba\x29\x92\x93\xd0\x04\xa0\xb9\x0b\x4d\x04\xf4\x1f\x95\xd2\x1e\xf8\xb5\x1b\x8d\xf1\xbf\xdd\xef\xf1\x8c\xde\x0e\x34\x26\x01\x55\x02\xf6\xe0\x5d\xdd\xf8\x8f\xc3\x21\xdb\x8e\xcd\xd4\xe8\x28\x2a\xb3\xfb\xda\x00\x56\x24\x44\x4b\x15\x36\x56\x65\x44\xdd\xb3\x29\x42\x52\x9c\xc3\xc4\xdb\x41\xb8\x7d\x6d\xe3\x42\x58\x87\x91\xf3\x31\x30\x97\x13\x6c\xf3\x0c\xdd\xbf\x9f\x0c\x0e\xbb\x6a\x09\x78\x79\x81\x33\xe7\xb4\x15\x57\x87\xf5\x1e\xb5\xbf\x1c\xf4\x8d\xe0\x71\xf6\x61\x59\xef\x98\xa8\xe2\xb6\x30\x56\x72\xb1\x0a\x0d\x04\x89\x31\xdf\xf7\x25\x3c\xec\x9c\xfb\x3d\x31\x45\x8f\xce\x67\x3c\x6e\xa1\xb9\x3c\xe8\x95\x04\x55\x02\x8d\x76\x64\xfd\x5b\xfd\xe5\x07\x2b\x35\xb1\x0f\xb8\x4f\xa3\x31\x88\xbb\x73\xb3\xff\xcd\xcd\x58\x38\x82\x37\x9f\x6d\x35\xb7\xb1\x13\x69\x02\xb7\xa1\xc4\xa0\xfc\x23\x8d\xda\x76\xf7\x9b\x78\xf3\x77\x94\xfc\xc8\xef\xb8\x4b\x7d\xe8\x9f\xfa\xa9\x44\xc4\xe8\xe9\x24\xd4\xf0\x5d\x0f\x11\xed\xd2\xd3\x76\xde\xfd\x56\x54\x8f\x03\x57\x0e\xe0\xde\x48\xa8\xcd\x68\x70\x6b\xd2\x29\x4f\x64\xfa\x70\xa2\xe6\x69\xa9\x3e\x91\x9e\xeb\x4d\x51\x47\x2a\x83\xa6\x50\xa0\x60\x51\x61\xd7\x7e\x90\x4f\x03\xca\xf5\x9a\xc6\x8b\x6e\x63\x28\x5d\xed\x7b\xb8\x1b\xfd\x72\x1c\x42\xa3\xd5\x74\x3c\x13\x9d\xc1\xc2\x0f\x62\x05\xc0\x59\x52\x93\x39\xf3\x3b\x7f\x1a\x3b\xfb\x75\x37\xbe\x6a\x49\x65\x7e\xfd\x40\xf9\xd2\x20\x9c\x3e\x62\xc5\xa6\x70\x53\xe0\x27\x41\x97\x5a\x70\x23\x26\x14\x68\xd1\x32\x23\xc8\xe6\xb9\x75\x71\xde\x77\x3c\xf9\xdb\x90\x59\x08\x9c\x48\xb2\x22\x21\x67\xc4\x84\x42\x78\x32\x20\xc1\x73\x1c\x3c\x05\x6a\x61\x8c\x1b\x49\x0e\x81\x3e\x74\x1c\x6e\x19\x12\x0a\x75\x42\xb5\x50\xeb\xaf\x93\x82\xfa\x80\x90\xdc\x5d\x56\x79\x79\x90\xc3\xf3\x7b\xd0\xfb\x6b\x4a\x35\x46\x43\xdc\x7f\x79\x01\x89\x07\xfa\xf9\xec\xbf\xcf\x46\xb6\x71\x2f\x96\x44\x1a\x06\xf0\x38\x00\x36\xe8\xe8\x9d\x8b\xe6\x67\x3e\xda\x5a\x9f\x5f\xb2\x1d\x6c\xe1\x83\xca\xa9\x21\x7f\x5e\x62\x53\x2e\x38\xfe\x58\x7e\x83\x77\x1a\x45\xa1\xff\x9a\x93\xe2\x01\xf4\xa6\xd6\x97\x15\x09\xb9\x23\x84\x5d\x2b\xcc\x5c\x9d\x50\xd6\xe7\xcd\xbf\x3c\x4b\xc6\xa7\x4b\xbe\x74\x7d\xff\x26\x94\x8d\x8f\xeb\x18\xa2\x47\xe9\x5c\x22\x63\x4b\x6d\xed\x4e\x00\x83\x1b\xd0\x2f\x43\x79\x3b\x98\x33\x4e\x9d\x0c\xd1\xfa\xed\xaa\x1e\xbb\xf6\x1d\x22\x10\x26\xcf\xeb\x46\x1a\xe2\xbb\xbf\x4c\xee\xbb\x83\xee\x87\x8d\x7e\xe5\x2a\x76\x2e\xdd\x31\x5d\x67\xf1\x65\xa7\x66\x01\x31\xc2\x97\x02\x8d\x0b\x00\x02\xbb\x19\x71\x1e\xac\xf8\x3a\xaa\xc2\x9f\x84\x30\x1c\xcf\x3e\x21\xb1\x00\xcb\x63\x41\xa5\x9a\x27\x63\x2c\xfe\xbe\xca\xdc\xc3\x07\x5b\x31\x9e\x8b\x04\x37\xa6\x27\x41\x79\x34\x32\x38\x81\xad\x6b\xaf\x00\xb1\x52\xe9\x3f\x42\x75\xd2\x6d\x89\x14\x87\xbc\x8a\x16\x94\x9e\xeb\x71\xff\x62\x91\x05\x5e\xe8\x87\xae\xff\x06\xc6\xa7\xed\x37\xf4\x88\xa4\x87\x16\xc5\xce\x77\x2a\xc9\xff\x30\x74\x55\x86\x5f\x72\x1b\x31\x8b\xb6\xf3\x80\x92\x38\x01\x16\x04\xe9\x0a\x75\x78\x77\x38\x39\xca\xd4\x25\xc5\xac\xaf\x97\x4c\x9c\x4c\x6a\x7b\xe5\xb1\x60\x1a\xac\x7e\x75\xb1\x3e\x0c\xc9\x96\x1d\xf8\x9f\x10\x6d\x32\x38\xcf\xf3\x31\x03\xf1\xbd\x65\xdf\x62\xab\x3b\x89\x77\x2d\x14\xad\x13\xab\x19\xdb\x80\x4e\x8c\x8d\xea\xb1\x38\x01\xf6\x59\x2d\xce\xc8\x15\xff\x63\x8b\x71\xc0\xf5\x61\x3e\xc1\x75\xaf\x49\x19\x9a\x9c\x22\x5d\x0b\xd3\xfa\x79\x52\xea\x39\xf5\x26\xe4\x85\x2a\x7f\x66\x2a\x84\xe5\xfe\x59\x49\x92\x1f\x11\x31\x2d\xe7\x2c\x54\x99\xff\xe3\x41\x00\x97\x89\x27\xc8\xe1\xb9\x7c\x55\x16\xf2\x9c\xe2\x01\x1f\x7e\x25\x4c\x62\x01\xd6\x23\xb6\x67\xa3\x76\x2a\xb4\xc4\x57\xb6\xe9\x8b\x15\x4e\xbb\xab\x12\x91\x98\x0e\x30\x9e\x28\x92\xba\x4b\x9e\x2e\x35\xc5\x3a\xc7\x49\x2c\x12\xaa\x04\xd2\x62\x5e\xc4\xff\xe5\x4d\x71\x39\xe3\x6a\x4e\xbc\xc9\xf4\xfb\xf9\xfd\x31\x12\x0a\x93\x88\x0c\xd8\x6e\x29\xef\xb1\x3e\x9b\x94\xc4\xe5\x4b\xda\x57\xfe\x89\xe7\xa7\x75\xfe\x32\x6d\x92\x8d\xe5\x45\x13\x58\x93\x70\xdc\x11\x8c\xd7\x7c\xb7\x30\x4e\xf6\xfc\xbf\x55\xe1\x90\xc7\xdc\xda\x1d\x05\xf8\x73\x13\xd0\xfb\xb7\xd1\x12\xd2\x44\xa6\x7f\x61\x5c\xc4\x81\xe3\x10\xe3\xb5\xdc\x4f\x8d\xa1\xfd\xc6\xa0\x2d\x0c\x2e\x3a\x59\xc7\x01\x2c\x4d\x0f\xd7\xa3\xf5\x50\x05\xb5\xe1\xf4\xc8\xa1\xf0\xb7\xac\x57\x96\x8f\x4b\x33\xe1\xf6\x45\x32\xeb\x5f\x25\x4f\x97\x2e\x99\xc6\x29\xfe\xe2\x7b\x7e\xf6\x62\x10\x26\x34\x22\x55\xba\x22\xc2\xfc\x78\x83\x83\xac\x7e\x76\xea\x55\x1f\xc7\x50\x1a\x8e\x29\x47\x4b\x41\x2b\xf1\xaf\x41\x30\x02\x10\x55\x15\x0e\xd0\x20\xe0\xfc\xcb\xaa\x51\xe3\xd9\xce\x79\x4f\x32\x72\xef\xbd\xfe\xc0\x52\x90\x72\x4c\xe1\xf7\x49\x3d\x40\xde\xce\xe6\x79\xf3\x6d\xe6\x20\xad\x29\xc3\x50\x96\x55\xe1\xa3\x62\xf1\x21\x63\xad\xad\x49\x5d\x4c\xe2\x6e\x43\x31\x9c\x00\xe2\xcb\xef\xc0\xfa\xfa\x89\xb8\x2c\xa8\xc8\x92\xba\xe2\x4d\xbd\xb2\x0d\xba\xc5\x8e\xce\xbb\x9d\x79\x5d\x11\x15\xe3\x09\xac\x7b\x45\x43\xc6\x7f\x3b\x41\x3d\xc1\x32\x8c\x33\xc8\x70\xb0\x56\xf1\xe9\x4c\xa2\xca\x61\x71\xcc\x32\x3c\xe0\x60\xac\xb7\x9c\xbc\xa4\x0c\xc0\xfd\xcc\xe8\xf6\x45\xdd\x1f\xab\x24\xc1\x37\x4a\x20\xa7\xc1\x40\x8c\xc4\x02\x3c\x4e\x34\xcb\xdd\x8c\x68\x8d\xe6\x62\xc6\x3b\xfb\x33\xf4\x89\x20\x8d\xc0\x1c\xd9\x02\x4f\xdf\x20\xef\x77\xf9\x19\x49\xdc\xba\x39\xa9\x03\xe0\xe7\x72\xf8\xf6\xc8\xb6\xeb\xa6\x15\x68\x17\xf4\x8d\x50\x3f\xc6\x6f\x5c\xe2\xe4\xc9\x19\x84\x17\xc9\x97\x8a\x52\xc0\x8b\x8a\xdd\x81\xc6\xb1\x28\xbd\x18\x2b\x70\x3c\xa2\x43\xb8\x5f\x55\x0e\x1d\xa8\x78\xf8\x6b\x2c\xbe\x6b\xe3\x25\xd0\xe3\xe4\x10\x8f\xf7\x2c\xc2\xfb\x5f\x6d\x89\x10\xc7\x49\xf2\xdf\x1e\xaf\x69\x65\x80\x0b\x5d\xe0\xf4\x98\xf9\xbe\xde\xb5\x52\x75\xd3\xb5\xfa\x7d\x15\x80\x98\x0a\x91\x32\xba\xcf\xdc\xdc\x48\x91\x7a\x3c\xfd\x33\x28\x94\x22\x41\x7a\x84\x22\xcf\x29\x79\xb8\xd4\xb2\xf6\xea\xdd\x0e\xb6\x9f\xaa\xb2\x8e\x2e\xb1\x17\xcb\x60\x56\xa7\x1f\xd5\xb5\x4c\x93\x69\x1f\x86\x3f\x46\xc5\x43\x05\xce\xd1\xdf\x7f\x4a\xcd\x82\xe1\x60\x95\xdb\x67\x73\x5b\xbe\x75\xcf\x16\x6b\xa6\xf0\xb0\xbc\xaf\x0c\x34\xa8\xbc\x32\x5a\x71\x71\xa8\xea\xad\xb1\x94\x21\x9e\xd0\x64\x0c\x00\xa2\x5e\xf4\x57\x79\x97\x17\x7d\x6f\x3c\xd6\x78\x45\x6c\x43\x93\x05\x90\x1c\x2b\x03\xdc\x3f\x66\x69\x31\x22\xde\xfb\xe4\x45\x04\x4d\x53\x3c\x70\xe0\x57\x7b\x3a\x67\x7a\x73\xee\x9a\x1e\xd0\x53\xe6\x0c\xea\x36\xd5\xa5\x36\xe2\x00\xc2\x17\xd9\xe1\x36\xb4\x21\x5c\x76\x42\x52\x56\xff\x78\xc0\xfc\x11\x8e\x20\xf3\xa8\xe1\x4d\x8d\x5b\xca\x45\x0f\x7a\x2b\xea\xef\xf2\x2a\x95\x96\x9e\xa2\x57\xdd\x9f\xf5\x3f\x30\x82\xb5\x65\xf5\xac\x2d\xc4\xaa\xfc\xbf\xe5\x01\x83\xb6\xd1\x7f\x57\x17\x45\x34\x10\x97\x55\x9c\x1a\x01\x60\x34\x95\x97\x68\xfa\xc9\xe2\xc9\x1a\xbe\xd2\xd0\xde\xc7\xcd\x17\x56\x45\x01\xa1\x9d\xef\x8b\x01\xda\x9b\xa0\xa6\x29\x95\xa4\xb1\x05\xc5\xb3\x5b\xb2\xd9\x5e\xf3\xc7\x36\x38\xb0\x54\x73\x09\x47\x6d\xef\xf4\xcf\xee\x18\x7d\x65\xe7\xe0\xfd\x6e\x19\x89\xbc\x96\xfb\x6e\xf5\x57\xf0\x82\x0c\xfe\xe6\xd7\x96\x19\x8d\xb0\x0f\xd9\x83\xde\x28\x63\x82\x5a\xac\x85\x5c\x36\x40\x12\x23\x19\xba\xf7\xd2\xcb\x97\x36\x7e\x56\xa8\x2c\xd8\x8b\xd6\xcb\x7b\x82\xa8\x75\x24\xd3\x62\x1b\xf9\xe4\x53\xee\x42\xa0\xd4\x34\x19\x9c\x48\x7b\x2b\xd3\x9a\x46\xf2\x09\xf2\xb9\xb0\x8c\xed\xd2\xa3\x82\xde\x10\x21\x21\x48\xb6\xcc\x07\xad\x16\x3a\x3d\x3f\xe9\xce\x6c\xbe\x24\x7c\xb9\x51\x97\x2a\xa8\x80\xf3\xf1\x13\x9a\xe0\x44\x41\x48\xad\xf0\xce\xba\x5c\xf4\xac\x1e\xe0\x9e\x3c\xda\x3d\x32\xe2\x37\xe9\xd9\x2a\x8b\xf5\xe3\x51\x4a\x90\xa7\xf0\xf4\xbd\x1a\xfb\x7b\x4e\x1a\xfe\xec\x3f\x3b\xd0\x86\xf9\x4d\x8a\xd4\xd1\x90\xb0\x35\x78\xde\xc2\x57\x6d\x16\x53\x4b\x43\x10\xf2\xf7\xcb\x6f\xfc\x17\x9e\x36\x2c\x1b\x57\xa2\x8f\x1c\x75\x81\x08\x50\xdd\xa8\x98\x38\xcb\xdb\x6c\xa5\x35\xee\xec\xc9\x6b\xe0\x62\x9a\xc0\xf1\xc2\x79\x7c\x36\xa6\x31\x5e\xd4\x2c\x60\x61\x09\xde\x6f\x17\xfc\x28\x1c\xc1\xf0\x2b\x47\x7b\xf4\x17\x0e\x70\x98\x91\x11\x75\x0f\x5f\x99\x97\xa7\x26\x46\x0e\x2a\xbe\xbb\xa0\x8f\x96\xbe\xef\x46\x58\x18\xf7\x63\x0d\xc2\xec\x93\xdd\x0f\xa2\x9a\x3d\x10\x6c\x2d\x04\x8f\xe2\xa1\x81\xed\xd9\x74\x12\x36\x5f\x68\x31\x96\x35\xc4\x94\x5e\x77\x36\xb7\x8b\xec\x8c\x7b\x34\xd8\x72\x1d\x24\x39\xf9\x8b\x8f\xcd\xa2\xf9\x70\xaf\xf7\x3f\x30\x9c\x1f\x45\xa3\x79\x15\x32\xe3\x83\x28\x67\x78\x2c\x89\x11\x5c\xc5\x93\xc7\xe2\x1a\xc7\xee\xac\xd1\xe1\xfa\xf1\x3e\xe4\x23\x9b\x06\xff\xdb\x78\x51\x50\xa6\xa5\x3a\x7c\x2a\xfd\x93\x81\x0e\xa0\x79\x85\xc2\x78\x5e\x2a\xcb\x96\x91\x55\xe8\xa2\x97\x89\xcd\x07\x1a\xc2\x42\x2c\x88\x0a\x57\xa0\x4e\xfe\xee\x94\x0b\x7d\x1a\x89\x15\x05\xbd\xb0\x54\x87\xd7\xdf\xd2\x1a\x98\xff\xab\x45\x1c\x07\x85\xfa\x76\x60\x6a\xe5\xfd\xd8\xe1\x69\x42\xa4\x75\xe5\x4c\xe6\xe8\x17\x56\x27\xd2\x52\x04\x16\x8e\xfc\xfe\x8f\x3e\xce\xac\xd5\xad\x93\x20\x91\x23\x0b\x37\x5e\xfa\x4e\x4f\x27\x6f\x74\x84\xd3\x4f\xf3\x89\xf7\x6f\x3a\x56\xdd\x1f\xd7\xd4\x30\x6b\xaa\x15\x61\x3f\xe5\x53\x76\x44\x45\x1e\xbe\xd5\x80\x67\xec\x01\x08\x2f\x93\x59\xe1\x2c\xb1\x9d\xf7\x4a\x33\x83\x2e\x2e\x82\xb3\xf3\x38\x00\x0e\x2a\xce\xef\xe7\x4a\xc3\x66\xe7\xcd\xbf\x01\x40\x17\x8a\x6b\xba\x24\x21\xc3\x55\xa3\xce\x6b\x17\x19\xbc\x73\xc7\x9e\xaf\xc1\x7c\xee\x6a\xaa\x91\x64\x57\x58\x57\xfa\xb3\x5e\x39\x3b\x70\x72\x43\x64\x05\x9b\xfd\x2e\x24\x0d\x35\x9c\xf7\xbf\xcb\xb4\x66\x18\x1c\x31\x25\x73\xd3\xb7\x0d\xd4\x9d\xbc\xdd\x74\xa0\x9c\xa0\x33\xea\x4c\x11\x5a\x9c\xbf\x1e\x66\x6d\x5e\x62\x95\xa9\x28\x03\xe2\xed\x93\xfb\xac\x2e\xac\x9d\x7b\x6b\x9d\x63\x55\xa7\x23\xb1\xf9\x42\xd3\x88\xfa\xc7\x7c\xc9\xed\xe4\x8c\x69\xcb\xf5\x2a\x56\x3e\x21\x0c\x3d\xc6\xa6\xd2\x12\xed\x67\xe9\xdd\x7e\x9d\xc2\xca\x38\x00\xa6\xa2\xfe\x70\x31\x96\xa5\x37\x38\x2f\x87\x1e\x59\xc2\x1c\x09\xb0\x3e\xd8\x18\xdb\xc6\xae\xf4\xf5\xe4\xbe\xd8\x1e\x47\xcf\xba\x6e\x57\x33\x39\x7b\x5e\x58\x64\x44\xef\x77\x61\xf2\x2e\xeb\xd9\xb5\xd9\xa6\xd1\x37\x92\xd5\xa7\xbf\xb6\x12\x2b\x5c\xce\x38\x1c\x15\x75\xcd\x70\x2d\xbe\x3f\xbe\xcf\x64\x92\x88\xb0\x0e\x4b\xfc\xa1\xe7\x37\x97\xff\xcf\xb0\x15\xe9\xba\x5f\xfb\xfd\x2b\x15\x8e\x5e\xf2\xe9\xae\x9a\xc7\xae\xc9\xcf\xeb\xba\x3a\xc5\x6a\xc4\x38\xe8\x74\x1a\xf5\x64\xa3\xe6\x49\xbf\xd4\x7f\xa6\x5f\xef\x94\x1a\xfc\x8a\x7c\xf3\x2f\x87\x3f\x01\x87\x3d\xd0\x15\x75\xb6\xc7\x39\x60\x72\xaf\x77\xa2\x36\x26\xd1\xc9\x83\x8a\x3f\xff\x41\x5d\xa9\x0b\xad\x94\x17\x03\xb8\x6e\xd0\xfa\xf1\xd1\x64\x7b\x42\xf7\xe2\xff\x7b\x77\x0a\xf2\x6b\xbb\xb4\xae\x10\x07\xeb\xbc\x4f\xc9\x7b\x9b\x90\xed\x2f\xfb\xa8\x31\x91\x5d\xda\x94\x4a\x4c\xcb\x54\x44\x5e\x24\xa9\xde\x80\x05\x23\x03\x18\x29\x2f\x85\xc7\x7e\xa7\x2d\xc9\xff\xd5\xfa\xe7\xb1\xda\xa3\xfb\x80\x40\x07\x67\xdf\x31\xe2\xfa\xa3\x2c\x16\x51\x4b\x61\x0b\x7a\x21\x9f\xc7\x98\x7d\x77\xa1\xfe\xe8\x64\xf0\xfe\x21\x6a\x27\xe9\xa9\x31\x3b\x7e\xd2\xe3\x23\xf6\xb3\xb8\x3a\x4c\x8b\x2b\xd2\x77\x7c\x14\x0f\xaf\x65\xc5\xa3\x07\x20\x59\xb0\x4f\x58\x88\xb3\xc0\x2a\x47\xe0\x90\xb6\xa8\xd3\xfc\x44\x6e\x0d\xa5\xcf\x73\x37\x54\x24\x34\x2e\x1d\x37\xf4\x83\xef\x52\xa8\x16\x07\xd9\x5f\x7e\x90\x34\x97\x7c\x99\x25\x98\xc0\x22\xf8\xcf\x7f\x89\xa5\x2d\xe4\x12\x10\xa6\x19\xb6\x3d\xd1\x1e\xb5\x18\xa6\xa8\x99\xfc\xe3\x15\x36\x75\x31\x85\x7c\x4e\xea\x8e\x80\xb5\x31\x44\x9e\x02\x91\x8f\x35\x19\x7c\x64\xca\xe0\x0f\x9b\x43\x1c\x7b\xfc\x6f\xbe\x47\x3b\xf1\x80\xc2\x5d\x51\x14\xaf\x23\xfe\x5c\xd8\x17\xcc\x12\x62\x06\xfd\x15\xfb\x02\xa3\x49\x0a\x3b\x14\xbf\x5e\xb9\x33\xcc\x05\x46\xe4\x1b\x01\x15\x34\x29\xe3\xe5\xf4\x87\xa2\xa9\x1b\x39\xbd\x0c\x91\xba\x7c\x4e\x8f\xc0\xb6\x5a\x15\x9f\x8e\x47\x0f\x7b\x06\x92\xbe\x7c\xf1\x22\x76\x76\x2b\x95\xf2\x12\x65\xa2\x90\xf8\xbb\x50\x68\x3a\x30\x27\x81\xfe\x44\xee\x98\x76\x2f\x5f\x3a\xff\x12\x88\xbf\xcb\x5f\xc4\x57\xd0\xfb\x79\xa2\xf6\x5e\x52\xe0\x5f\xa5\x29\xea\x50\x99\x95\x3e\xad\x76\x11\xf2\x87\x05\x2b\xc1\xef\x7d\x29\xf4\x92\xac\x07\xda\x32\xa0\x59\x16\xf7\x2f\xd8\x73\xea\x02\x32\x55\x80\x97\x2b\x62\xc1\xaf\xb5\x5d\xdb\xeb\x38\x88\x15\x09\x99\x50\x05\x52\xef\xc5\xca\xca\xec\x0d\x86\xb8\x3c\x1c\x16\x45\x2c\xbe\xe5\xb5\xb1\xdf\xe5\xbd\x7a\x58\xe6\x74\x6d\x5e\xf8\xc2\xeb\x0f\xe2\x19\xe0\x49\xa9\x7f\xb3\x4b\xe2\x88\x0e\xa8\x3c\xb0\x7e\xc9\x78\x2b\x6b\xd0\xeb\x21\xf2\x08\x5f\x23\x21\xd2\x0f\xa5\xe2\x09\x3d\x37\x17\xd3\xae\xeb\x96\xdb\x6e\xc9\x35\x2d\x5a\xf4\x1e\x93\x7a\x7d\x45\x30\xb8\xb2\xa1\x61\x0e\x69\xf0\xfb\x6b\xda\xdc\x9f\xa9\xc1\x90\xfb\xca\x38\xa7\xa4\xe1\x66\x69\x56\xbd\xea\xcd\xba\x79\x71\x3a\x3e\x83\xea\x63\xf2\x52\x85\xea\x80\xa9\xa4\x29\xb8\xdd\x48\x29\xa2\xa8\x8b\x7b\x91\xd5\xf9\xc3\x56\xfd\x0b\x0a\x8e\xa4\xd9\x8e\xaf\xeb\x83\xec\x8b\x44\xed\x62\xc9\xfe\x7b\x1a\xa1\x47\xe9\xe6\xdc\x85\x1d\x62\x72\x95\x93\xa8\x91\x31\xfa\x88\x21\x96\x7f\x81\x1b\x03\x35\xed\x76\x27\xc3\xd0\xfd\xc7\xa6\xe3\x99\x9c\x9d\xf9\x17\x51\xdf\x44\xcd\xd8\x25\x81\x2e\x9a\x4d\x22\xca\x05\x83\x2f\x14\x44\x2a\x56\xff\x17\x22\xfa\x35\x65\xfe\x72\xf1\x8b\x57\x92\x17\x0b\x9a\xec\xfd\x9e\x48\x65\xbf\x93\x31\x6f\x23\xd7\xb7\x35\x3b\x1b\xd1\x19\xef\xbf\xb6\x8b\xb3\x31\xbb\xf3\xf3\xa6\x51\x26\x00\x7a\x23\xa9\x5b\x39\x7a\xff\x3c\x02\xa8\xc4\x0c\xaf\x79\xd8\xf6\x9f\xd1\x42\x89\x50\x3c\x38\xfe\x0c\x09\x24\x91\xec\x89\x6c\x6f\x22\x8d\x6d\x05\x8d\xbc\x60\xbb\x67\x1a\xe8\x0d\x00\xa2\xd4\x3e\x14\x75\x25\xef\xab\xd1\x74\x9e\x66\xff\x2f\x1f\x69\x06\x5c\x17\xf4\x78\x4f\xd6\xca\x8f\x3b\x7f\xcb\x4d\xf7\xca\xf1\x09\x5f\x5c\xef\x22\xd8\x15\x6d\x5c\xa8\x49\x31\x0e\xa6\x8f\x07\xfc\x41\x3e\x0a\xbc\xc8\xa1\x8e\xaf\x22\xb7\xc2\xf3\x68\xc9\xc3\xeb\x3b\xb1\x26\x22\x56\x54\x23\xac\xa7\x24\x8f\xdc\x8e\x80\x40\xb6\xc6\x96\x42\x88\x85\xcf\x77\x19\x2e\x3b\xdb\x83\x13\x17\xcf\xbb\x9e\x7f\xc5\x67\x5a\xef\x94\x8a\x60\x66\x11\x77\xf8\x38\x60\x11\x7f\x01\x58\x1c\xa0\xfa\x28\x6f\x51\x25\x4a\x68\x06\xc2\x8f\xbe\xad\x07\xce\xc6\xbd\x77\xbf\xe6\xf2\xa8\xa9\xb8\x79\x37\xfe\x44\xf0\x9e\x40\x2e\x13\x25\x63\x76\x57\xbd\x00\x87\x40\x2e\x22\xa1\xd4\x22\xdf\xcd\xca\xf1\xd8\x4b\xbe\xfa\x5a\x49\x02\x56\xe4\x03\x1c\xa4\x0f\xdb\xe9\xb8\xe9\x6e\x8f\xc4\x21\x56\x05\xb8\x1f\x86\x8c\x6c\x9f\x7c\x48\xeb\x64\x10\x9f\x9c\xf2\x58\x63\x90\x0e\x4b\xd7\x89\x1c\x4e\x67\xcd\xc1\x99\x9b\x35\x04\x78\x25\x5f\x6d\xe4\x9f\x65\xfc\x47\x6a\xd7\xf4\x68\x64\x39\x58\x16\xf1\xed\x68\x24\xb9\xed\xd1\xdc\x81\x24\xcf\xb7\x4b\x5c\x13\x5b\xd0\x12\x9a\x36\x5c\x2c\x3f\x73\x98\x42\xd4\x42\x5b\xe5\x85\x31\x05\x84\x21\x70\xb4\x10\x33\xf9\x04\x8f\x19\x1d\x39\x52\x9a\x21\x48\x16\x8c\x1a\xbb\xbc\x94\xf8\xcc\x3b\xfe\x88\xad\x34\x20\xf0\xd4\xdb\x73\xf5\xe6\xfc\x8c\x61\x73\x43\xfc\x2b\xbf\x96\x4b\x2d\x15\xfa\xb9\x3e\xb9\x2a\xa9\xef\xee\xf4\x80\x22\x01\x72\xec\x99\x27\x2e\x2b\xca\x63\xad\x4a\xbc\xc1\x80\xfe\xd1\xd4\x61\x71\xa8\xf7\x7b\x66\x5e\x9d\x56\x99\x59\x39\x85\x74\xe9\x35\x22\x1f\x2f\xb0\x48\x1f\x08\x10\xc7\x2f\xa6\x15\xe3\x07\x1b\x0c\xa2\x38\x77\xac\x77\x2a\x5a\xc1\x16\xcc\x9e\x35\xdb\x28\xad\x83\x6b\x29\xc6\x0c\x84\xa1\xc3\xbf\x9e\xc2\xd1\x40\xa4\x37\x34\x1f\x1c\xd4\x91\x23\x41\x33\xa2\x22\xef\xef\x0f\x3d\xde\x6e\xe1\xd9\x23\x3f\x93\x07\xc8\x10\x5b\x03\x13\x26\xfb\xdb\x98\xbf\xc8\xad\xfa\x62\xd5\x3f\xdb\x3a\x1c\x81\x28\xc7\xa1\x04\x5d\x5f\xd1\x79\xee\xbc\x7b\x89\x87\x2c\xc1\xaa\x50\x2d\x70\x3f\x1c\xd5\xb8\x05\xbb\xb9\x48\x29\x37\x20\x2b\x61\xc4\x40\xeb\x73\x08\xce\x43\xe0\xdf\x50\xe0\xa0\x40\x18\xe1\x6f\xc6\x5f\x62\x59\xb8\x2a\x55\x05\xac\x14\x92\xac\x7a\xd7\x10\x1c\x25\x9a\xd5\xe9\x03\x62\xe8\x9f\x13\x5d\x99\xda\x1e\xc7\xcb\x09\x2b\x74\x27\x6f\x8a\x4a\x4c\x30\xb1\xe8\xef\x3b\xf4\x24\xc3\x07\xa9\xc1\xfa\x9c\x6c\xfb\xdf\xba\x14\x3e\x47\x30\xd8\xc4\x33\xbf\x2f\xf5\x60\x84\x37\x16\xec\x10\x4f\xb2\x3c\xf4\x65\x44\x8a\xc4\xed\xca\x53\xfc\xeb\xc7\xb0\x4e\xe2\x67\x30\x39\x71\xf9\x91\x97\x04\x55\x6f\xa4\xa2\x36\xf8\x39\x20\x7d\x11\x1f\xb3\xbe\xde\xa2\xdf\x87\x4d\x8d\xd1\x30\xfe\x29\x98\xbd\xfc\x6d\x10\xe6\xaf\x8c\x04\xab\x1e\x0c\x53\x69\xfb\x43\x10\xe5\xcb\xf4\x36\x8c\x9e\xc6\xe3\x19\x32\x71\xae\x68\x6c\x3e\xd0\x5f\x08\xe4\xbe\xa9\x39\xaa\x97\xb7\x55\xb5\xc5\xf5\x25\x5f\xc0\x2b\xe4\x69\x5b\x2f\x5e\xc5\xef\xe9\xac\x05\x2b\x07\x01\x21\xe9\x3e\x7f\xdb\x7b\x65\x31\xf0\xf4\x62\xc5\x10\x63\x05\x19\x10\x4f\x57\xc2\x83\xf3\xbf\xaa\x2f\x88\x09\xcf\x24\x8c\xb4\x29\x78\xf2\xe4\xbe\x63\x3f\xd5\x7a\x61\xf1\xbe\xe6\x61\xd4\xa2\x1c\xc5\x5f\x77\x73\x3b\x4f\xa3\x54\x6e\xf8\x0c\xac\x58\xee\xa3\x07\xf4\x5a\xdb\x1c\xaa\x94\xed\xca\xd2\xa3\x78\xc9\x5c\x02\xff\x25\x02\x2c\xec\xf2\x4e\xcb\x06\x15\xfe\xfa\xc3\xd8\x8c\x72\x83\xbc\x19\x99\xaf\x07\xf1\x13\x07\x8c\x86\x3f\x2c\x59\x8c\x92\x0e\xbd\xac\x73\x41\x21\xbd\x71\x00\x47\x65\x81\xb7\x23\xee\x3b\xff\xca\xb5\xd4\xad\x12\xd1\x2f\x39\x67\x8a\x56\xcf\x1e\xd9\x15\x02\x49\x2e\x91\x54\xd6\xf5\x2a\x5c\x4c\x75\x75\x2b\x21\x39\x7c\xf8\xca\x3c\x44\x71\x71\x82\xa2\xa2\xb6\xa3\x60\x1d\x2a\x25\x35\x62\x52\xbc\x98\xff\x7c\x63\x72\x6d\x33\x5e\xda\xe5\xef\x22\x03\xb0\xdf\x25\x4d\xe7\x13\x0e\x3d\xfe\x65\xed\x07\xad\x06\xbb\x6e\x5f\x96\xfe\x87\x9e\xf4\x93\xf0\xc8\xef\x38\x13\xa7\x68\x76\x6c\xdb\x9e\x6b\xa8\xed\x49\x64\x88\x1a\x07\xae\x7a\xf3\x87\xd9\xac\x92\x43\x5d\x31\x5a\xdb\x07\xb5\xe8\x92\x79\x0e\x40\xd3\xb6\x0e\x3f\xd2\x00\xe3\x9f\x8c\x10\x98\x20\x69\x37\x4b\x92\x5c\x71\x3e\xcb\xf6\x2b\x4e\xb4\x9d\x7c\x67\x3d\xc4\x70\x47\x26\x49\x28\xb6\xda\xa9\x36\x9d\x2c\x81\xcf\x6f\x3f\x1a\x73\x36\x79\x8f\xd6\x24\xa6\xb0\x29\x09\x20\x80\x03\x90\x19\xed\xc3\x20\xae\xa8\x33\x36\x09\xad\x5d\x56\x85\x63\xcb\xaa\xc3\xd4\x7a\x03\xc8\xad\xce\x09\x0a\x10\x21\x94\x7d\x3b\x2f\xeb\x9c\xa3\xfc\x4a\xd2\xf4\x86\x54\x96\x36\x03\x4c\x21\x7c\x1d\x6e\x98\xf1\x27\x52\x11\xda\xef\x5f\x0e\x28\xa6\x28\x01\xe9\xab\x41\xde\x86\xff\x15\x62\x02\x05\xce\x05\x53\x0b\x43\x14\x8f\x35\xc0\x61\x9c\x38\x6f\xa7\xb8\x51\x1c\x0f\xb9\x32\xf4\x27\xb4\x38\x17\xdb\xd5\x46\x3b\xed\x0b\x07\xea\xa3\xa8\x2d\x5a\xc9\x8d\x2c\xf4\xb5\xc2\x0b\xce\xe6\x9b\xef\x83\x5b\x3b\xa0\x39\xf5\xdb\x22\xf2\x57\x46\xb8\x14\x75\xd1\x3c\xda\xf5\x3a\x00\x5f\x9b\x90\x51\xe6\xab\x47\xe0\x19\x20\x90\x8a\x28\xde\xfa\x96\x43\xef\xba\x2f\xe6\x7d\xc4\x55\x33\x82\x57\xb2\x0a\xd7\x38\xce\xf4\x6d\x38\x2b\xfa\xef\x97\xeb\x9a\xdd\x78\x8d\x12\x0e\x9d\xc7\xc5\x7f\xea\x13\x63\xa9\x36\xeb\xb9\x2e\x34\xe7\xfe\x91\xd7\x47\x85\x2a\x55\x47\xbb\x14\xab\x02\x47\x17\xb9\xe9\xa6\x4d\x6f\xf3\x6d\xc8\x00\x7c\xd4\x3b\x90\x32\x9e\x07\x05\xf3\x0f\x4b\xb0\x2a\x92\x25\xf4\x9c\xfd\xa7\xf1\xaa\x0f\xd5\xcb\xcc\x0b\xe2\xba\x83\x0f\xd9\xeb\x64\x99\xc1\x73\x86\x61\xd8\x93\xc3\x99\xb7\x5a\x6c\x4b\xe1\x81\x99\xbe\xc7\x2a\xee\x12\xe2\xd9\x51\x54\x9f\x7f\x3c\x57\xc3\xcd\xa5\x80\xfc\x01\x51\x4e\x41\x6f\xeb\x3c\xd6\x8e\x48\x35\x02\xf3\xb0\x45\x48\x08\xcf\x78\xe8\x5f\xc2\x5d\x4f\x6f\x4b\x4b\x77\x1e\x0a\x33\xe3\x50\xa2\xe2\xbf\xd9\x54\xe1\x58\x43\xd7\x6d\x31\xf4\x33\xe2\xd6\x98\x2e\x1d\x12\x13\x2a\xd0\xcc\x5d\x6a\x0c\xac\x45\x4a\x2c\x13\x10\x72\x4d\x2a\x80\x51\xfa\xb4\x07\x92\x05\x73\x00\x3b\x6e\x64\x07\x8c\xa1\xa3\xfa\x96\x5b\x77\x47\xa2\x79\xc8\x39\x55\xc4\x37\x7e\xa8\x22\xb3\x91\x8d\xa2\xa7\xce\x5e\x33\x23\xd2\x71\x52\x1b\x07\xb1\x79\x5f\x23\x61\x7f\x0a\xde\xc0\x03\xc2\xe7\x69\x5a\xc0\xb0\x9b\x5e\xa6\x30\xea\xae\x87\x6c\x58\x04\x64\x7e\x5c\x0d\xa5\x4f\x7a\xf6\x42\x57\xe5\x66\xa3\x20\xe1\x06\xff\x20\x66\x8c\x15\x5f\xec\x15\x78\x6e\xdf\xfa\xe8\xc5\xcc\x2f\x30\xe9\x4d\x11\xe7\xf3\xc6\xcf\x64\x6f\xac\x0d\xc8\x85\x26\x3a\xa1\x74\x1c\xe8\x95\x00\x42\xaf\x99\x8d\x4d\x95\xee\x75\x87\x80\xa5\x2c\xcc\x85\x3b\x40\x72\xde\xf2\xaf\xb1\x6d\xac\x9d\xd5\xd7\x17\x65\xd4\x68\xe0\x8d\xed\x81\x02\xbe\x02\x54\x03\xd9\xbe\x7d\x0e\x65\xf1\x10\x87\x3c\x0c\xe8\x8a\xba\xf7\x82\xd0\x34\x82\xe1\x2c\x92\xf3\xb6\xcc\x7b\x7c\x31\x36\x7c\xa0\xcf\x90\xe3\x2f\x2e\xb2\xe8\x97\xf2\x81\x23\x4e\xb9\x2c\xb9\x63\xcf\x72\x6c\xf8\x43\x25\x40\xe5\x2b\x47\x71\xf5\x54\xfa\x05\xf5\x21\x9e\xf8\x43\xc2\x57\x96\xe0\x2d\x2c\xa8\xc6\x84\xe7\x9e\xeb\x2a\x0e\x7c\x53\x14\xd8\x5a\x7f\x9f\xd7\x93\x00\x47\xe8\xf3\xf5\xcf\x37\xea\x92\x99\x06\x8d\xe2\xd6\xf0\xb8\xee\x7d\x6b\x3b\x61\x84\x4f\x3f\x64\x6a\xae\xae\x84\x0d\x07\x34\xfc\xce\x9d\xf4\xeb\x31\x4d\x9b\xb7\x14\x84\x8a\xfb\x03\x7c\x90\x6a\x3a\xb6\x45\xf6\x54\x70\x34\x5d\x04\x60\x74\x31\x9a\xcf\x29\x75\x3b\x15\xec\x45\xe3\xc6\x4b\x13\xc1\x7c\xeb\xad\x02\xe4\x5c\x1c\x44\xde\x5f\x57\xf5\x21\x1e\x14\x5d\x0f\x7f\x14\xf6\xfe\xc1\xc1\x9e\xfd\x85\x06\x3d\xf7\x92\x23\xa5\xee\x5b\xc9\x86\x3f\x03\x17\x57\xb7\x25\x82\x51\x8c\x4d\x14\xa6\xc6\x7e\x5a\x26\xdf\x4a\x00\x43\x1e\x12\x20\xf4\x46\xd4\x73\xc6\x47\x7a\x26\x7f\x4c\x8a\x38\xe7\xe2\xb8\x07\x02\x26\x82\xbd\xb4\x55\x22\x00\x58\x99\x2c\x16\x63\x79\x59\x2d\x38\x41\xf1\x5a\xe3\x09\xad\x8e\xbb\x98\xa8\x46\xd5\xe2\xd4\x8d\x2b\x4b\x70\x3e\x21\x32\x54\x62\xa1\xa0\x30\x84\xac\xb6\xaf\xaa\xa1\x8c\x50\x34\x0f\x37\x32\x80\x1a\x2c\xad\x35\x91\xf2\x11\x3c\x0c\xa2\xfc\xa6\xa8\xd7\x7a\x85\x75\xae\x8e\xe6\xde\xc0\x2f\x0f\x99\x1c\xf0\x90\xd5\xfe\x48\xd3\x53\xc1\x3f\xf1\x51\x57\x0d\x08\xad\xcc\x78\x39\xae\x9a\xe5\xc9\x88\xbf\xb9\x16\x87\x9d\xc5\x58\xad\x17\xbd\x0a\x23\x83\xa7\xa3\xc6\x7f\xe1\xe5\x77\x11\x66\x7c\x70\x05\x53\x0e\x85\x50\x87\x6c\x64\x8c\x12\x27\x7d\xcd\x81\x18\x33\x08\x83\x54\x37\x6f\xa5\xb2\x0b\x86\xc6\x48\x9a\x55\xf4\x55\xa4\x9c\xd1\x45\x5a\xce\x88\x08\xeb\xe4\xa3\xc7\x43\x39\x00\x9a\xe9\xbf\x57\xed\x89\x8a\x16\x54\x0f\x58\x88\x74\x94\xbd\x2e\x5e\x50\xce\xf7\xb1\xf3\xbe\xa4\xa0\x6b\x26\x04\xfe\xaa\xc3\x02\xac\x1d\xc6\x76\x90\x6d\xbf\x69\xe7\xc7\x98\x27\x95\x78\xc0\x49\x18\xba\x13\x00\x88\x41\xdc\x54\xa8\xd8\x71\xe6\xbe\xf9\x82\xc3\x1e\xc2\xe3\x2f\xeb\x32\xe6\xd6\x3d\x8e\x72\xe7\x30\x49\x8e\xd5\x2d\x88\xa2\xc4\x8e\x82\x32\xdb\xde\x17\xea\x4b\xc9\x73\x86\xf0\x7e\x6a\xeb\xa3\x20\x89\xc9\x80\xd7\x21\x30\x11\x0d\x09\xd3\x0d\x72\x71\xa1\x32\x1a\x20\x50\xdd\xd9\x0a\x39\x95\x18\xd9\xd2\xed\x65\x21\xd2\x44\x98\xdf\x12\x9c\xfa\x27\xa5\x75\xde\xec\x3f\x41\xcd\xd9\x10\x86\xf4\x61\xd3\xa3\xa0\x6d\xa6\x48\x3f\x45\xa9\xf5\x98\xb5\xd5\x27\xd8\xb2\x2b\x68\x63\x0d\x2f\x1c\x9f\x8e\x92\xee\x75\xaf\x64\xc3\x85\xc1\x1c\xed\xad\xd6\xfd\x1d\x5e\x6b\xeb\x35\x61\x97\xf2\xbf\xa2\xd2\xd1\xc9\x48\x90\xce\xf7\xdc\x35\x02\x6e\x60\xe2\x45\x1d\xd2\x9b\x70\x63\x73\x2e\x9f\x8e\xf6\x6c\xb8\x29\x84\x6f\x45\x69\x28\xdf\xd2\xde\x04\xfd\x47\x94\x70\xbf\xde\x64\x8a\x53\xb8\xd2\x9b\x15\xd5\x55\x26\xb0\x62\xf2\x90\x53\x99\x3d\x6e\x5e\xc0\xe8\xb3\x4e\x48\xe8\x01\xa3\xe1\xed\x6f\x65\x31\xfa\x77\xd3\x7e\xa4\x57\x05\x6a\x11\x1d\x02\xd9\x70\x07\x70\x36\xc7\xcd\xdd\xdd\xb7\x9e\x7b\xe9\x2e\x6c\x21\x6c\x4d\xf4\x44\x8f\x9a\xe7\x7e\x1f\xea\x3e\xa9\x92\x4e\x52\x5e\x30\x18\x83\x89\x4d\xef\x28\x2c\xab\xee\xcd\xbb\xa7\xc1\x7a\x8b\x62\xe0\x39\x4c\xeb\x73\xe3\xd1\x09\x8f\xda\xd4\xbd\x6a\xaa\xee\x71\xf6\xb3\x9e\x58\xb5\xa5\xeb\xe9\x67\x43\x38\xfc\x20\x02\x88\x63\x69\x4d\x78\x49\x14\xa7\x3b\x3a\xc0\x3b\x6d\xd4\x62\x60\x02\x1a\x23\xa4\x72\x20\x09\x9d\x6e\x9b\x4f\x3f\xda\x0f\xec\x57\x9f\xb7\x34\xab\x6a\x75\x4c\x59\xbe\x3f\x1a\x7f\x23\x22\x7d\x24\xbb\x29\xc7\x06\xbb\x49\xe4\x88\x20\xd3\xa0\x88\x28\xc0\x48\xbb\xb2\x04\x2b\x41\xe1\x68\x83\x95\x12\x2a\x2d\x95\x5d\x69\x48\x32\xc0\x7a\xfd\x68\x63\x69\x5e\x37\x5a\x80\x8b\x89\x05\x02\x59\x5a\xf9\x11\xd5\x16\xfa\xf9\xba\xae\xdc\x46\x0d\xbb\x7e\x32\x47\x74\x97\x75\xae\x7d\x43\x86\xfa\x73\xaa\x97\x44\xef\x5e\x3b\x3e\xd4\x98\x93\xfd\x5a\xc9\xbf\x04\xb3\x1b\x98\x78\x05\x53\xd9\x37\xef\xc0\x31\x01\xc1\x12\x8c\x9f\xbd\x85\x19\xf5\x7f\xfb\x1c\x8a\xf5\xf3\x76\x1e\xf6\xb1\x3f\xfa\x0f\xc4\x32\xcb\x60\xd4\x51\x80\xde\x36\x80\x3e\x16\xa3\xe7\x03\xa5\x11\x6d\xc2\x72\x4f\x7e\xbf\x79\xe9\x29\xc6\xf7\xca\xc1\x90\x0d\x0d\xd6\x64\x4b\x70\xca\x43\xd1\xd0\x0d\x92\x0c\xc8\x96\x46\x87\x13\x7c\x1f\x23\x63\x18\x48\x4b\xcd\x7f\x6b\x6c\xfb\x9e\x33\xcd\x83\x7b\xa0\x2e\xb9\xc2\x13\x8a\xc8\x98\xf4\x6e\x93\x95\x19\x73\x44\xa9\xaa\x8f\x05\xb3\xcf\x5e\xca\x74\x3c\x50\x05\xe2\x4b\x4b\x27\xa5\x66\x4a\xb5\xe1\x7c\x1f\xe9\x11\x54\xfb\xf1\x39\x84\x2b\xaf\x9d\x3f\x94\x99\x10\x56\x15\xb0\xb6\xaa\x07\x4d\x05\xeb\x03\xc7\x18\x52\x7d\x5b\x21\x08\x11\xc5\x72\x3b\x2e\xdd\xec\x88\xfb\xab\x6d\xe6\x69\x64\x16\x25\x6b\x21\xe9\xf6\xa2\xea\xbd\x98\xfe\x2f\x78\xa2\x23\xb5\xc1\x94\x12\xda\x6b\x2c\x02\x58\xfe\x22\x26\xba\x07\x83\x35\x7b\x90\xe6\xea\x45\xaf\xf9\x8c\x1b\xe9\x50\xd0\x58\xcf\x32\xe6\xef\xf3\x9e\x6f\xa1\x57\xb4\xf0\x8c\x2b\xe0\x8a\xaa\xf8\xe5\x6e\xc1\x28\xf5\x8b\xdf\xbe\xc6\x5a\xd1\xc0\x29\x7a\xc0\x4c\x11\x0d\xe8\x20\x0a\x9b\x2f\xd4\x15\x22\x4b\x76\xdf\xba\x90\x00\x48\x81\xf5\x81\xe4\xd7\xf6\x34\x49\x58\x16\x98\x01\xf5\x31\x00\x4e\xc2\xfb\xe1\x6f\x72\xa9\x72\x1c\x2c\xaf\xd2\xdf\x56\xa5\x2c\xb8\x38\x17\xa0\x1d\x8f\xd0\xc5\x0c\xa6\x53\xfb\x88\x13\xae\x44\xeb\x08\x54\x56\xf2\xb1\x56\x1b\x06\xad\xfd\x87\x53\x0a\xe5\xe1\x8a\xff\xd1\x46\x31\xb9\xf3\x24\xcf\xc5\x67\xf6\xd0\xb6\x70\xec\x5a\x94\xc4\x02\xdc\x8c\x05\x75\x1b\xde\x12\x38\x4b\xe6\x79\x17\xca\x09\x18\xe3\x23\xb6\xa7\x8f\x67\x3f\x55\x5e\xc5\xd4\xd3\x32\x8f\x70\xe1\x3c\xe4\xf5\xce\xc7\xc4\xa4\xad\x08\xa5\xde\x43\x7f\x5a\x4b\x91\xd3\x26\x49\x53\x05\x40\x71\x4c\x02\xef\xaf\xe6\xc7\x6e\x4e\x7c\x49\xef\x02\xf9\x41\xac\xc9\x2f\xc1\x49\x3c\xe5\x24\xf3\x23\x9f\x70\x4c\x40\x06\x29\x64\x65\x51\x6a\x19\x6e\x4c\x52\xf3\x3c\x41\x1e\x1d\xe4\x9c\x60\xf6\x42\xd7\xdb\x3d\x98\x58\x24\xdb\xa5\xae\x3a\x41\xd6\xce\x45\x89\xba\xf4\x8a\xfc\xda\x03\x1e\xe9\xfa\xed\x56\x10\xe9\x88\xf5\x76\xad\xa4\x46\xa4\x54\x36\x40\xc2\xce\x0c\x7f\xd3\xc8\x12\xd9\x1e\x1e\x4c\x60\x02\xd2\xc4\x81\x95\x60\x7e\xc8\x4f\xc0\x2e\xc5\xbd\x4d\xa2\x00\x79\xc9\xf0\x2e\x34\xc7\x26\x36\xdb\x45\x19\xcc\xd0\xf2\x4e\x25\x38\x95\xf5\x2e\xed\xff\xb6\x2c\x12\x95\xb6\x5b\x5d\xd2\xdc\xff\x75\x5b\x0a\xfb\xc1\xda\xec\x81\xed\xf6\x49\x0a\x13\x09\x49\x51\x84\x6d\x5f\xb5\xaf\x17\x14\x82\xe1\xef\xe1\x2a\x7c\xce\xfd\x64\x70\xe6\xff\x1a\x27\x84\x2b\xe4\x3a\x7c\xf8\x58\xaf\xee\x7f\x9c\x6d\x9c\x2d\xd1\x7d\x87\x05\xa7\xcc\x7b\xf8\xe1\x8e\xef\x5e\x95\x2d\x49\xfc\x19\x89\x0c\xba\x21\x46\x33\xfe\x09\x51\x25\x24\x9c\x34\xbc\xc5\x16\x6a\x78\x6e\xe6\xcf\x01\x50\xe9\x00\x38\x76\xe4\x0e\x3a\xc9\x72\x86\xf2\x50\x19\xed\x9a\xaf\x6e\x19\x36\x46\x91\x95\x23\x57\xef\x3c\x23\x7e\x8e\x13\xbc\x6e\x0b\xa1\xab\x08\x08\xed\xcc\xe3\x7d\x4c\xae\x4a\x60\x5f\x93\x6b\x9b\xd7\x7c\x24\xec\x7e\x9a\x46\x1c\x80\x8a\x5d\x2c\x6a\x55\x13\xe1\xfb\x81\xc8\x95\xc4\x84\x25\xc3\x82\x09\x14\xff\x57\x8a\xfd\x32\xbf\xc0\x58\x48\x1d\x56\x33\xae\xce\xf6\x79\xac\x13\x15\xb1\x83\xc8\xa6\xfc\x2e\xa5\xd4\xb4\x86\x53\x45\xf2\xac\x6d\x14\x92\x05\xc7\xfe\x77\x3b\x90\xff\x6e\xc2\x4d\x06\x14\x92\xe2\xc4\xb0\xd8\xe3\x79\xdb\x24\x36\xa7\x5b\xbf\x1b\x27\x82\xb5\xf8\x58\x22\x76\x76\x7e\x53\x59\x2a\x79\x19\xc9\x92\x78\x9a\xa6\xde\x51\xbf\xca\x5d\xaa\x9f\xc4\xe7\x0e\xfc\x33\x9c\xc4\x4a\x2f\xa2\xc3\x9a\xec\x0f\x0e\x9b\x76\x93\xca\x7d\x80\xd9\xed\xb3\xe4\x7f\x03\x1f\x03\xfa\xc0\x99\xbc\xfa\xe4\x04\xdf\xc0\x91\xc6\x90\xdd\xb8\xc7\x2b\x8b\x1f\x59\xa4\x26\x7b\xc5\xb3\xdf\x97\x0b\xf3\x2c\x9e\x2d\x0b\x65\x19\xc7\x85\xfd\xef\x08\xb0\x4d\x48\x32\xda\x4a\x06\xd9\x17\x8b\x68\x7c\x49\x8e\xdd\x32\xe0\xec\xbf\x05\x7b\x34\x32\x57\xd1\x2f\x0a\x32\x19\xc4\x62\x20\xd2\x3b\xba\xac\x59\x51\x47\xc3\x02\x7b\xf2\x84\x7c\x4c\x06\x7f\xf8\xc6\xef\xc1\xa3\xfc\x77\x28\x4e\x5a\xb2\x85\xe7\xda\x52\x5e\xe8\x22\xb0\xc7\x9f\x11\x05\x4f\xdd\xfc\x40\xe9\xba\xef\xac\x4d\xf9\xbe\xa1\x47\x9a\x7f\xf8\x10\xfc\x3a\x4f\x36\x83\x54\x18\xc4\x1c\xa3\xe0\x2b\x95\x85\x6f\x2c\xa1\xc7\xec\x6f\x64\xb7\x44\xfb\x4e\x44\x0b\xa5\x66\xbf\x75\x44\x2c\x6c\x85\x9f\x84\xcd\x07\x62\x5d\xcd\x00\xa8\xad\x8f\xb8\x8a\x29\xe4\x2f\xe6\xc6\xa7\xd1\xaa\x07\xb2\x8c\x8f\x07\xc8\x80\xef\xfc\x4e\x79\x3f\xbe\x55\xa7\xae\x4c\x0d\x7f\x3b\xd4\x56\x8d\x96\xb7\x1b\x4d\x37\xf6\x56\xbe\xa1\xe3\x28\x51\xf0\x3a\xff\xf3\x96\xa2\x1d\xbf\x9c\x2b\x1c\x9b\x0f\x94\x0a\x81\x50\x19\x7b\x17\xd6\x83\xc7\xdc\x80\xa5\x06\x1f\x32\xd3\xf0\x40\xef\xbf\x44\xb9\xac\x4d\xd5\xce\x92\x10\xcd\xae\xc0\xf6\x86\xd8\x8b\x77\xd6\x51\x7e\x0a\x49\xb2\x3f\xbe\x3a\x1b\xd5\x5e\x16\x8d\xa0\xdc\x8e\x4c\x10\x65\xa5\x23\x12\x0f\x87\x01\xa9\x16\x9a\xf4\x3c\xef\xe6\xb4\x0a\x27\xa6\x79\xea\x05\x3f\x63\x24\x47\x07\x21\xce\x0d\x9d\xed\x02\x35\x4d\x0a\x1b\xec\x59\x9e\x4a\xe3\x84\xf1\x69\xbb\x53\xef\xe8\x64\x12\x12\x67\x24\x27\x43\xa2\x5f\xda\x7e\xc5\xc7\xfd\xac\x7e\xf2\x5a\x36\xf3\x4a\x56\x51\xab\xc2\xa9\x5e\x44\xa7\x1a\x5f\xeb\x93\xd6\xbb\x49\x69\x52\xcf\xa3\x5c\x94\xad\x62\xeb\x2b\xcf\x00\x86\xed\x9a\x4b\x51\xd4\x0f\xf2\xfd\xe5\x4f\x7d\xdf\x51\x2b\x6e\x0c\x23\x0f\x23\x2f\x03\x42\xc4\xb9\xc3\x0f\xb4\xe4\x9f\x33\xc3\xc0\xcc\xc9\x91\x00\x2b\xe5\x25\x3d\xb4\x4f\x5f\x6b\xd8\x53\xa7\xe3\x87\x44\x10\xba\x85\x4e\x7c\x56\xe1\x4c\xbe\x71\xfa\x37\x10\x4e\x65\x0a\x5c\x43\xe7\xd4\x5a\x21\xbc\x59\x68\x55\x0b\xed\x99\xeb\x1e\x8e\x24\x1a\x85\x1f\x1a\x58\x0b\xd7\x61\x35\x1a\xa2\x08\x87\x2c\x32\xc2\x6f\x67\x6a\x33\x76\x1d\x33\xcc\x4b\x25\x0f\x41\x7c\x8c\x1e\x45\xa6\xe1\x99\x7d\xb8\xc0\x5d\x29\x3f\xc1\xe1\xfa\x40\xc8\xcb\xda\xeb\xa5\xc3\xfc\x81\x31\xb5\x37\x6d\xc1\xcf\x7e\xef\x4b\xc5\x40\xcf\xc4\x98\xa2\x5a\xef\xf2\xf5\xb1\xd1\x93\x01\x6c\x52\x45\xa0\x24\x64\x1f\x47\xe2\x79\xd1\x2f\x89\x23\x10\x5f\xa1\xde\xcf\xc9\xaa\x35\xa7\xac\xeb\xe1\xa4\x74\x88\x57\xad\x6c\xaf\x4b\x99\xb6\x71\xb9\x8e\x3e\x9c\x3d\x35\xa0\xbd\x54\x49\xaf\x60\x0d\x65\x0b\x2a\xfa\x4b\x4a\x0c\x05\x11\x57\x27\x20\xc3\x2b\x7e\x4d\xa9\x05\xc7\x9e\x16\x3a\x91\xbe\x8e\xac\x7a\x1d\x97\x07\xb3\xb4\xb8\xfd\x9c\x22\x20\xca\xa6\x9c\x80\x9a\x94\x0f\xe2\xf5\x3c\x2a\x9a\xbb\xea\x5b\xdd\x2b\x8c\x63\x26\x24\x01\xbf\xff\xca\x75\xb1\xa0\x6b\xee\x0f\xb8\x9a\x94\xa5\xfe\xc8\xcd\x0c\x27\x0c\x89\x5a\xc1\x1f\x0b\xfe\x03\x19\xdb\x6a\x37\xbe\x4c\xd5\xf0\x99\x2c\xf5\xf5\x94\x1a\x5a\x66\xe2\xcc\x39\xa3\xeb\xef\x6b\x9f\x34\x8b\xd4\x91\x07\x33\xc3\xc0\xe8\x84\x8a\xfd\xed\x75\x7a\x9c\xdf\xaa\xb3\xaa\x18\xcc\xc1\x40\x41\xe3\x3a\x7e\xab\xe2\x84\x67\x66\xd5\x9e\x83\x84\x2f\x58\xd9\xcc\xbe\x2a\xb3\xe6\x75\xff\x9e\xfe\x5c\x79\xdf\x8e\xfa\x1c\xee\xf6\x90\x27\x26\x92\x49\x09\x0e\x51\x44\x82\xc0\xca\x5e\x55\x9e\x54\x2d\x77\xe4\xf5\xa3\x6e\xf5\x0f\xe8\xc0\xdf\xe3\xf2\x77\x3a\x17\x56\xa4\x19\xbc\x55\x54\x77\x18\x24\x2c\xb7\x7e\xa7\x21\xb4\xe1\xf7\x3c\xbe\x4b\x6c\x82\x48\x0d\xd5\xae\x2a\x9b\xf2\xfd\x36\x4d\x29\xec\x64\x00\xdb\x4b\x05\x36\x70\x69\xec\x34\x19\xe6\x7a\xf9\xae\x65\xfc\x7b\x6f\xd3\x86\x99\x37\xd6\x75\x9c\xfe\xbb\xf2\xcc\xdf\xa7\x2c\x88\xcd\x35\x76\xa1\x07\x83\xac\x6d\x3d\xae\xa6\x80\xb4\x84\x90\x36\x0a\x20\x89\x0d\x44\xec\x1e\x05\x4f\x91\x61\x68\x86\x39\x86\x4f\xec\x5f\x0b\x21\x55\xd7\x9a\x33\x7f\x6a\x2b\x6c\xe9\xe1\x8e\x9c\xd6\x7f\xfa\x29\x70\x7d\x1b\x04\xf6\x3b\x35\x4f\xea\x5d\xd9\x7d\x96\xbd\x62\x56\x88\xc9\xf0\x4e\x63\xde\x03\x0f\x2f\x68\x45\xf0\x81\x11\x44\x0c\x0d\xdd\x21\x42\x4a\x06\xb8\x1e\xfa\xa9\x5a\xe3\xef\x6c\x18\x13\xc0\xc7\xdd\xfc\x41\xc7\xe7\x4b\xf0\xc0\x37\xfc\x54\x10\xf7\xa7\x92\xeb\xfe\x1b\x49\xd2\xc1\xda\x63\x57\xed\xd8\xdf\x67\xaf\xec\x26\xb9\x43\x52\x00\x6c\xd9\x64\x78\x4a\xa6\x71\xa9\xae\x53\x72\xee\x35\x35\x40\xa9\x50\xfd\xe9\x40\xd2\xc0\x8b\x25\xe5\x99\x6d\x78\x79\x71\xe0\x60\x27\x32\x51\x58\xe8\xc1\x7c\x70\x9b\x76\x21\xb1\xc7\x52\x92\x86\xaf\x33\xa4\xde\xa5\xb9\xf8\x91\x42\x77\x50\x4d\x23\x8e\x17\x37\x6f\x5e\xe4\xa8\xad\xa0\xc1\x49\x0a\x46\x82\x54\x6c\xb2\x86\x9b\xb2\xfe\x2c\x88\xe6\xb7\xc7\xfb\x4c\x5d\xee\xc9\x4b\x42\x9e\x05\xae\xbc\xc2\x68\xc7\xae\xbc\x81\x2d\x3d\xd2\x96\x20\x34\x22\x05\x3d\x41\x7b\x2a\x31\x70\xe4\x64\xdd\x60\xc5\x16\xf4\x89\xcb\xb5\x5b\xb5\x15\xef\xc5\xf9\x07\x36\xb7\xed\x15\x7a\x62\x24\x40\xbc\xcb\xc6\xe0\xe9\x9d\x2b\x45\x7e\x98\x9d\xa6\x7e\xfd\xed\x4f\x7d\x74\x9a\x43\xec\xbf\x0d\x25\x98\xe0\xf2\x57\xfa\xfd\x97\x28\x87\x51\xdc\xdf\x6f\xfa\x2f\xe9\xe1\x3c\xdc\xcd\xb2\xae\x47\x37\xc3\x6e\x21\x58\x08\x81\xbe\xa6\xf9\x2b\xa6\x9c\x15\x46\xe1\x87\x07\x13\x8a\x3a\x65\x30\xb3\x05\x7f\x68\xca\xea\x8f\x87\x1f\xf6\x10\x72\xc0\x6b\xb2\xa4\x82\xf2\x09\xb2\xdc\xc5\x74\x53\xf2\x41\x5e\x4e\xdd\xd5\x49\xb3\xfd\x62\xd6\x19\xfa\x9b\xaf\xc7\x8d\xe5\xbf\x4b\x7e\x07\x1d\x68\x9d\x21\x16\x76\x32\x5c\x0e\xf2\xfb\xbb\x4e\xc9\x4a\x54\x21\x5b\xb5\x3e\x60\x8a\xaf\xf7\x73\xa2\xbd\x6b\xf8\x61\xb1\xb2\xfd\xfa\x10\x14\x1a\x31\xe9\x3d\x59\x26\x2e\x59\x4d\xda\x88\xdd\x72\x84\xf2\x25\xf5\x0f\x5a\x45\xff\x06\xfb\x47\x6a\xac\x0f\x00\xf5\xca\xf6\xd8\x79\x88\x52\x0c\x71\xd8\xe8\x44\xa6\x62\xc4\xcc\x12\x11\xab\x3d\xc3\x50\xf0\xdc\x54\x2f\x83\xc6\x83\x46\xe8\x13\x9a\x10\x06\x5e\xfc\x8f\xac\x20\xe2\xea\x24\x80\x1a\x25\x75\xbe\xcb\xa9\x1f\x55\xc1\xf5\x6f\x97\xc4\x06\x6e\x5d\x17\x8e\x35\x14\x87\x82\xe9\x96\xdc\x9d\x31\x13\xc2\xd3\xb3\x4e\x62\xf9\xda\x4d\xde\x33\x6f\x54\xae\x25\x78\x87\xfe\x1f\xa7\x3e\xbd\x82\x96\x6c\xc6\x79\xbf\x28\xeb\x2a\x3a\xc0\xf2\x93\x59\x05\xc1\x4f\xaa\x5a\xcd\x86\xbb\x66\x46\xe0\x41\x09\x26\x1e\xf6\x77\x9c\x0b\x7b\x53\xae\x33\xb4\x5d\xb4\xa8\x29\x3f\xbc\xb3\x77\x33\x5e\xda\xbc\xff\xd6\x91\xaa\x00\x04\x48\xc1\x8f\x8e\x3a\xc6\x35\x3e\x2d\x22\x52\x69\x00\x12\x8b\x57\x69\x30\xb3\xd5\x1d\x5a\x29\x3c\x16\x59\x87\x9d\xd0\xfe\xd6\x89\x1b\x71\x62\x0e\xdf\x45\x68\xaf\x1b\xb9\x9d\xe5\x40\x14\xa1\xd3\x90\x69\xe8\xc2\x8a\xa7\x31\x56\x04\x39\xe0\x6c\x5a\x1a\x1c\xbe\x89\xf9\x7d\x16\xdc\xf9\x9c\xce\xc0\x6e\xcd\xb8\xd2\xa1\x57\x1c\x95\x33\x76\x15\x32\xfa\x7c\x69\x52\xe5\x9f\xca\xe8\x09\x67\xe7\xb4\x98\x52\x25\xab\x37\xb2\xdf\x8f\x81\x81\x0d\xd0\x7f\x15\xf7\x80\x46\x2d\x77\xee\x3b\x12\x12\x99\x9d\x57\x46\x31\xde\xe4\x0f\x0b\x2c\xbe\x1f\xd6\xdc\x98\x97\xaf\xab\x3c\x94\x04\xeb\x53\x00\xec\x64\x38\x1b\x24\xad\x85\xbb\x50\xcb\x83\x51\xb0\x92\x8d\xb5\x95\x8f\xd8\x11\xb0\xa0\xb5\x37\xff\xaf\x94\x10\xd2\xb2\x19\x29\xe8\x51\x0d\xd2\x73\xb3\xc0\x95\xab\x50\x69\x73\xac\xd0\x55\xb6\x6e\x55\xf9\x58\x92\xfe\x48\x83\xa7\x08\x66\xdd\xd2\x2d\xed\x8a\xf4\x3e\x8a\xbe\xbf\xdd\x5f\xf5\xe5\x5f\x11\x00\xf1\x4c\x76\x67\x99\x27\x06\xad\x7f\x62\xf4\xd5\xe5\xe6\xd5\x5f\xfd\xfe\xf1\xdb\x5c\xb7\x60\x72\x6d\x17\xc5\x54\xb9\xfb\x9f\xd9\x3f\x88\xd8\x33\xe0\xca\x83\x3b\xbd\xbb\x7b\xe7\x96\x87\x57\x1e\x2f\xe9\xd9\x0f\xaf\xe2\x3f\x16\x4a\xe5\x4c\x9c\xd6\xd1\x39\x1e\xe8\x84\x42\x1d\x30\xf5\xae\xc5\x57\xd4\xbd\x97\xca\x3e\x4e\x7f\x55\x28\x9a\xa8\x2d\xbc\x6d\x5d\x54\xfe\x77\xc0\x71\x96\x64\xd5\x7e\x7d\x3d\xbd\xb2\xbc\x85\xbd\x7c\x32\x49\x00\x63\xa4\x01\xe3\x1c\xb7\xcd\xf5\x1b\x59\x1a\x5e\xb3\x90\x5e\x7c\xad\xb4\x42\x25\x75\xa2\xef\x7d\xd1\xd6\x8a\xa7\x64\x6e\xdf\x07\x00\x3b\x19\xa6\x83\x65\x91\x1c\x90\x3e\x9c\xd0\xbe\xe6\xac\x06\x58\x74\x7b\x71\x69\x5f\xa2\xcd\xfb\x0e\xbb\x05\xab\x33\x22\x36\x75\xad\xef\x8c\x7d\x27\xf4\xca\x50\xe5\xce\x69\x21\x70\xe4\xdb\x72\x72\x25\x8f\x7f\xfa\x58\x95\x0c\xbd\x1e\x7e\x3e\x78\x03\xfa\xa3\x87\x0e\xfc\x87\xcf\x27\x68\x41\xd4\xdc\x9c\xd3\x5a\x45\xd0\xc7\xcd\x51\x63\xfb\xc7\x9e\x87\xd9\xa9\x5e\x9e\x8b\x8d\x75\x8d\x44\xea\xdf\xd7\x09\x69\xc0\x8d\x27\xc3\x4e\x9f\x2b\xff\xf8\x74\xbc\xd9\x07\x03\x68\x78\x47\x4d\x45\x4f\xb1\xae\x34\x28\x00\x8c\xaf\x27\xb3\x88\x37\xae\x6a\x99\x77\x41\x05\xaa\x7d\x9f\x50\x6d\xa0\x93\x37\xfc\x8f\x6b\xc4\x40\xaa\xe3\xb9\x09\x6c\xa8\x9e\xfc\x27\x03\xaf\xe1\xe9\x20\xf8\x78\x22\x74\xd5\x8d\x08\xe2\x3c\x34\x9e\x64\xcf\xf0\x9f\xf5\x54\x81\xe0\x64\x00\x8f\xe8\xfb\x66\xc1\x25\xd4\x5d\xf2\xbf\xa3\x98\x60\x05\xd2\x18\x3e\xec\x99\x7a\x4e\xcf\x03\x48\xd8\xdd\x0e\x25\x15\xa7\xdf\xe5\x21\xb1\xa6\x54\x1d\xab\x1c\xfd\x59\x57\xa5\xb9\x30\x67\xce\x19\xa9\xea\x2d\xcd\x7a\x66\xd0\x3c\x0b\x88\x18\x0a\xca\xc1\x5a\x0d\x2d\xc2\x58\x7a\xb8\x9c\xfb\xfa\x8c\x82\x5b\x0f\x13\xd8\x67\x2d\x9d\xac\xbf\xdf\x0c\x84\x80\xaa\x36\xd7\x55\x49\x93\x3a\x02\xce\x50\xa2\xfc\x32\x9d\x74\x97\x13\x9e\xa9\xe2\x96\x25\x69\xff\x90\xc5\x61\x83\xfb\x3e\x68\x1b\x3b\xea\x68\xaf\x91\x77\x8a\xff\xfa\x28\x01\xcc\x11\x66\xed\x5a\x33\xd9\x0d\x0c\xf9\x15\x05\xbe\x6e\xd8\xf8\xd2\x48\x70\x94\x96\xc1\xf4\x77\x05\x57\x3f\xf0\xc7\x3d\xd1\xd2\xfe\x0e\xcf\x3b\x4c\x6f\x1b\x6f\xf7\x5d\x1c\x8d\x3d\x66\x10\x71\x75\x26\x9c\xe3\x03\xa7\x51\xe9\x24\x6b\x00\x99\xad\xfe\xef\x6e\xb5\xf9\x4d\x0d\x57\xa7\xe4\xf6\x57\x2f\x86\xe2\xe6\x96\xde\x2f\x9b\xc9\xda\xab\xe3\x45\xc9\x6e\x84\x90\xd1\xa0\x76\x4c\xa3\xcf\x62\x20\x8a\xd0\x70\x78\x8a\x95\xe2\xe9\x5f\xa5\x4c\x9a\x90\x8d\x04\x12\x10\x9c\xc8\x31\x0c\xc0\xc5\xbd\xc3\xa5\x96\xe5\x9c\x7e\x2d\xfc\x11\x7c\xb5\x03\xea\xda\x9c\x03\x06\x4f\x2a\xb1\x58\xcc\x4f\x47\x28\xb9\xff\xa1\x0b\x37\x85\x8c\x61\xb4\xa6\xeb\x08\x50\x2a\x05\x3f\x0c\xf1\xd8\x5c\x97\x79\xb0\x02\x3b\x9e\x78\x71\x98\x09\xaf\x34\x90\x7f\x4d\x43\x14\xee\x02\x72\x9c\x0a\x50\xaf\x19\x66\x64\x5b\xd4\xff\x09\x18\x66\x82\xcd\x3e\x17\x7c\x11\x29\x00\x49\x40\x85\xb2\x43\xdd\x79\x00\xbe\xb1\x71\x12\x3e\xfc\x20\x0a\x02\xd9\x7c\x70\xed\x35\x1c\xb6\xbd\xeb\x7c\xeb\xb2\xf0\xa2\x5e\x2e\xd3\xf2\x0c\x15\xed\xf2\x4b\x4e\xf2\x1f\x5c\x9a\x5c\xa0\xc5\xa4\x90\x71\xa3\x02\x9e\x62\xba\x2a\xb1\xb8\x7a\x9b\xa1\x6b\x75\x0c\x00\x83\x7e\x62\x5d\x5d\x5e\x5f\xb5\x82\x1b\x7a\x3f\x16\xea\xbb\xab\xce\x9d\x6a\x92\x91\x9c\x1f\xec\x8e\x50\x7b\x74\xa3\x54\x00\xc3\x2a\x04\x93\xe9\xbe\x0a\x5f\x3b\x9c\xc1\x46\x9c\x06\xa0\xa4\xf4\xa3\xab\x26\xd4\x86\xb4\xff\xc6\xa4\xa4\x71\xb6\x7c\x40\xe1\xd3\x78\x6d\x96\xae\xed\xbc\x7e\x79\xbf\x3d\x18\xfb\x8f\xb1\xb3\x1a\x00\x41\xf6\xae\xac\x16\x8f\x7c\x58\x5e\xc0\x81\x7e\x4e\xfb\xab\x22\x34\x60\xc3\x55\x21\xdc\x28\xbc\x32\x3b\xee\x84\x84\xe0\xe7\xf8\x4d\x5a\x46\xac\x76\xb8\x2a\xf1\x01\x28\x66\x1a\x5d\xd1\x4d\x11\xda\x0b\x19\xab\x3c\xe8\xb5\x68\x0f\x1e\xfe\xa5\x63\x2d\x38\x21\xc6\x00\x64\xed\x93\x58\x81\x1b\xd2\x9f\x5d\x63\xf9\xa3\xe1\x2b\x6c\xf9\xf7\xf4\x5c\xfe\x7e\x1b\x37\xb5\xc0\x73\x9d\x6a\x7b\x21\x95\x59\x1a\x67\xa4\x04\x87\xf8\x33\x22\xac\xe9\x9a\xef\x46\x1d\x4a\x5f\xa3\x16\x7e\x3d\x7d\x3d\x4b\xff\x1e\x40\xea\x74\x67\x60\xd4\x6f\xb7\xf0\x4f\x10\xe0\xd9\x31\x7b\xa2\x23\xc4\xad\xda\x9d\x28\x28\x9b\x87\x96\xbd\xd5\x04\xcf\xff\xf9\x05\x8c\x15\x94\x3a\x47\x10\x7e\xcf\x6a\xeb\x1a\xb7\x77\xd4\x0f\x01\xfe\x0b\x53\xdd\x5b\xdd\x68\x02\xa7\x71\x79\xb4\x76\x8e\x65\xd1\x7b\x0d\x63\x16\x52\x01\x8d\x7a\x76\xff\x5c\xc9\x3d\x0c\x9e\x22\x95\xc1\x2e\x4a\x53\x76\x5d\x11\xfb\x24\x55\x11\x1d\x30\x4d\x8f\x82\x5a\xf0\x2c\x2b\x84\xd4\xec\xbb\x29\xb4\x7f\x7e\x02\x4c\x0c\xb6\x22\x7a\xc6\x9d\xc2\x6b\x95\xe0\x90\x16\x16\x77\xa9\xdc\x1b\xcc\x2f\x43\x28\x35\xb7\xe1\x79\x17\xee\x14\x10\x5c\x7a\x59\xaf\x2a\x17\xd9\x08\xff\xc6\xc7\xb3\x4a\xe0\xa3\x2f\x9d\xb4\x97\x78\xd6\xd8\x37\x4d\xa7\x34\xe7\x50\x26\xb4\xf7\x38\x72\x53\xb1\x11\x45\x53\x3f\x77\x19\x12\xd2\xef\x5c\xc5\xdf\x99\xd3\x3e\x24\x3a\x03\x16\x1c\x04\x1b\xe0\x0b\xab\x0c\xa4\x05\x04\x44\xf0\x43\x2f\x9b\x12\xcd\xfd\xa3\xd3\xc7\xdb\x8c\x21\x9e\x19\xa1\x7f\x8e\x0c\x93\xc0\x46\x9c\xac\x78\xce\x41\x45\xf1\x12\x50\xd3\x7e\xc4\xee\xf6\xdc\x70\x4b\x0e\x2c\x69\x24\xe4\xe7\x56\x4b\x1b\x25\x8d\x74\x5e\x5c\xdc\x37\xfd\x31\x1b\x72\x63\xb3\xa5\xe1\x3d\xbe\xb0\x0a\xfd\xb8\xfa\xae\xbf\x8f\x91\x44\x1f\x8c\x7d\x6d\x3b\xe4\xf5\xdc\x87\xb1\x37\xe1\xda\x28\x71\xab\x97\x69\x09\x2d\x79\xa0\xcd\xa5\xe4\x66\xd7\x90\xc5\x13\xa3\xe1\x5e\xf8\xed\x8f\x8a\xf6\x0f\x5a\x33\x4d\xf4\x40\x17\x71\x68\x9c\x71\x1c\xc5\x9c\x3f\x48\x93\x02\x3b\x19\xbe\x0d\x71\x0f\x71\x3c\xf2\xa6\xcf\xbd\x29\x9b\x4a\x92\x78\xf1\x07\xd1\x31\x0b\x01\xfe\x73\xa5\x2f\xd3\x8e\x16\xcf\x28\xd1\xb0\x28\x5d\x0d\xdc\xdf\x57\x56\x62\xd8\x7f\xee\xc3\x44\x28\x08\xca\xdd\xb5\x15\x7c\xf1\x68\x63\xf6\x90\xb1\xe3\x9c\xf8\x60\xfd\xb5\x92\x90\xcd\x53\xa7\xc9\x80\x7c\xec\x9a\xf2\x55\x03\x74\xc0\xf4\x80\x5f\x65\xd5\xd5\xab\x3a\x2f\xae\x6f\x4a\xc6\x74\xc1\xf9\x56\x5e\xe6\xe6\xf5\x82\xd0\xd6\x97\xa2\x3b\xa1\x6b\x43\x9e\xbe\x13\xca\x47\x22\x46\x00\xbd\xf0\xe7\x33\x8a\xd8\x02\x37\x2e\xb8\x5f\x25\xa2\x71\xa4\x2d\x48\x8f\x46\x63\xb2\x6f\x14\x28\xdd\x7d\xbf\x25\x90\xfe\xe4\xc2\x10\x4c\x1e\x97\x77\x99\x13\x52\x73\x99\xcc\x49\xce\x9a\x3b\x77\xc8\x9a\x33\xd9\x7c\x49\x0c\x05\x0d\x61\x23\x3c\xc4\xc3\x74\xda\xac\xf8\xeb\x47\x4b\xe4\xa6\xc2\xba\xa9\x87\xe8\xe1\xaa\x48\x03\xcd\x1d\x1a\x2d\x0e\x86\x2e\xe1\xfd\xdf\x4b\x45\x24\xae\x17\xe0\x55\xb2\xa1\x8f\xaa\xbd\x77\x6a\xff\x7c\x5a\x9a\x18\x29\x59\x8c\xbf\x74\xdf\x3a\x77\x65\x57\x44\x7f\x0b\x20\x57\x77\x0d\xbe\xf8\x58\x3a\x23\xb3\x0d\x4e\x3d\xde\xf8\x98\x74\xfc\x51\x2b\xdc\xda\xe8\xc8\xd8\x51\x73\x18\xfe\xb5\x19\x5d\x6d\x6d\x0a\xdb\x4a\xf0\xad\x7b\x05\x66\xb6\xe0\x04\x49\x9c\xbb\x89\x07\x25\x9f\xc9\xd3\xa3\xc4\x5d\xa6\xec\x53\x79\x30\x00\xaa\xfa\x71\xb3\x2a\xc7\xdb\xb3\x4c\xc1\x9a\x81\xc4\x08\xe1\x9d\xb6\xc1\xe4\xed\x9f\x1a\x85\x7c\x61\xd2\x03\x02\x76\x10\x6d\x76\xec\x64\xf8\x02\x84\x2f\xb7\x4c\x67\x93\x51\xe2\xdc\x7c\x91\xef\x75\x53\xa6\x2c\x37\xf3\x0d\x2e\xa0\x0e\x6e\x6f\xd2\xa3\x93\x75\x43\xf6\x01\xb6\xa7\x4a\x3f\xc0\x28\x12\x6d\xd0\x67\x5c\x20\x31\x9c\xe3\x03\x4b\x4c\xaf\xe8\xbc\xf0\x71\x59\x14\x7a\x0a\xac\x05\x0b\xf1\x03\x65\xac\xb8\xb1\xd0\xee\xd1\x7c\xe3\xdd\x22\xc1\xbb\x6c\xbc\x58\x70\xbd\xfb\x1e\x49\xe1\xe8\x3d\xb0\x80\xb9\xf5\xf4\xa0\xbd\xb6\xc8\x2a\x70\xb9\x12\xf3\x33\xdb\x56\xd2\x88\xfb\xdb\x79\x65\xdd\x82\xdc\x38\x96\xb0\xa3\xf3\x6c\xa2\xe1\x54\x00\xbb\xfb\x03\xdc\xb0\xf6\xbb\x51\x9b\x7f\x4b\x1f\x7f\xe2\x43\xc0\xaa\x20\x1a\x9c\x16\x6a\x26\xa1\x4f\x70\x28\xc1\xca\x6b\x61\x7d\x1b\xfd\x56\x64\xf1\x97\x4c\xb5\xd0\xd6\x96\x0b\xde\x9e\x87\x46\x02\x86\xb5\xaa\x53\x05\x07\x8d\x0d\x6f\x2c\x0d\xad\xe6\x07\xae\x28\x88\x22\x74\x1d\x32\x66\x2f\x59\xa4\xb2\x15\x3b\xad\x7c\xae\xde\x6d\x7a\xbe\x24\xd9\x06\xee\x07\x9d\x4c\xf7\xec\xe1\x7d\x25\xa1\x8f\xed\xbd\x72\xf4\x7a\x91\xdd\xc3\x04\xbe\x5d\x7d\x8e\xc4\x0b\x25\xfb\xed\x21\xcd\xd6\x0b\x36\x10\xed\x99\xb0\xd2\x77\x48\x84\x28\x22\xdd\xc0\xca\x0d\x56\xbd\xd3\xb0\x96\xed\xf6\x88\x84\xf6\x17\xd5\x73\x68\x9a\x40\x5f\xac\xe1\x0d\xfd\x19\xc6\x5d\x10\xa8\xe8\x77\x08\xce\x74\xb1\xfc\x31\x3f\x1f\x8a\xe4\x50\xb4\xc0\x33\xd2\x2c\xc1\xe4\x89\xf6\xc1\x6b\x59\x16\x66\x18\xb8\x92\x10\x29\x33\x93\x3b\x21\x70\x7d\x10\xbb\x30\xe9\x54\x69\xef\x23\xc7\x86\x06\x07\x3b\xed\xed\xdd\x7a\x55\x49\x1d\x10\xff\x7a\x1e\xa2\x14\xca\xea\xf9\x12\x4f\x92\xc0\x1c\xe9\x04\x2f\xf2\x7c\xd9\x51\x8b\xe6\x94\x37\xc9\x12\x10\xc2\x14\x30\x96\xc3\xdf\x2f\xe0\x90\x26\xf3\x88\x5c\xfc\x81\x06\xb3\xb5\x84\xc0\x55\xab\x7d\x99\xec\x8c\x37\x3f\xc0\x5e\x8b\xc1\x69\xbb\x0f\x4a\xc9\x28\x1a\x63\x72\x97\xfe\xf0\x9f\xbf\x04\x5d\xfa\x64\x58\x84\x9c\xae\x24\xfd\x2a\x32\x71\xd0\x36\x28\xf4\x0f\x69\xe2\x84\x37\xa2\x92\xfd\x03\xa4\x93\x19\xce\xf6\x80\xd6\x3f\xe0\x49\x46\xfd\xe0\xf2\x66\x2f\x46\x66\x0e\x17\x90\x28\xdd\xaa\xf9\x76\xde\x74\x54\xb8\xe9\x90\x25\xde\xc7\x94\x1a\x22\x6c\xd5\x4b\x67\x91\xe8\x64\xfe\x15\xdd\xc7\x3f\xd8\xc9\x26\x35\xb7\xf4\xd7\xc4\xa9\x5d\xdf\x55\xf8\xbf\xa9\xd5\x8c\xc5\x3e\x67\xcc\xe8\x49\x55\x7b\xe9\x72\x34\xdf\xed\x16\x82\xcd\x07\x1c\x67\x1d\xf5\x1b\xde\x74\xd6\xf5\xdb\x9e\x61\xe1\x1e\x4f\x7a\xbd\xb2\xf5\x9d\x2c\xf3\xd7\x70\x89\xb2\xc0\xdd\x87\x2c\xa2\x0b\xc7\xbd\x62\xff\x28\x97\x02\x60\xcf\x2a\x59\xb0\xd1\xbb\xf3\x74\x49\x3c\xcc\x1c\xa6\x51\x98\xea\xe2\x02\x81\xa5\x0b\xaf\xdf\x9e\x65\xe9\x14\x49\x60\xfc\xb5\xf3\xd3\x8a\x48\x99\xe1\xa7\x74\xcf\x62\x6b\x78\x25\x1c\x26\x1d\xaa\xc2\xcf\x7e\x9c\x98\x6c\x53\xed\x47\x0c\x0d\x25\xc4\x46\x9c\x5c\xeb\x1a\xba\x35\x05\x5e\x73\x3b\x9a\xc7\x08\x58\x9a\x0a\xa1\x01\x79\x65\x21\x9b\xce\xf7\x4d\x5e\xca\xf4\xf2\xfc\x3d\x98\x60\xec\xec\x18\x33\xb8\xf7\x4b\x15\xfc\x6e\x09\x7f\xf0\x03\x95\x24\xe8\x3b\x44\x8b\xf2\xc9\x53\x10\x71\x75\x14\x60\xe6\xe0\x3a\xc6\x22\xf0\x5e\xfb\xba\xb3\x8a\x18\x03\x00\x4d\x81\xc0\xa1\x1f\x76\xeb\x9c\x65\x0b\xec\xa6\xa9\xd9\x77\xc2\x51\x22\x3f\xe6\x69\x26\x8f\xc3\xd4\x1b\x8e\xbf\x0e\xca\xb7\xd2\x0b\xa2\x55\x7e\xd3\xa4\x66\xf9\x00\x60\xfb\x29\xc1\xd6\x46\x8a\x6c\xcc\xf6\xbd\xea\xbb\x55\xbe\xd5\xe9\xd2\x82\x30\x80\x9e\x93\xa1\xdb\x03\xa2\xb7\x67\x72\x8a\x2c\x67\x22\xcd\xc8\x27\xc3\x89\xbe\x34\xd3\x1c\x8d\x52\x47\x61\xdc\x92\x20\x69\x64\x01\x16\xb8\xb2\x56\x87\xde\xe6\x03\x80\x4d\xaa\x60\x21\x45\x8e\x71\x8b\xe3\x79\x2e\x65\xfc\x89\x2a\xf7\x10\x13\x84\x01\x04\x6b\x0e\x77\xfc\x97\xfd\xdc\x5d\x88\x85\x86\x08\xeb\x53\x5e\xd7\x5a\x76\xf4\x81\x93\x5b\x72\xc7\xeb\xc1\x90\x84\x39\x50\x1c\xbf\xf8\xea\x88\x2a\xdb\x75\x0e\x44\x11\xf9\x06\xac\xdc\x70\xc1\x91\xe9\x74\x1d\xbc\xf2\x47\xcc\x1a\x20\xf4\xbc\xd7\x99\xdc\x5b\xde\x4b\x2e\xef\xd2\x3e\x7e\xde\xa4\xfc\xcb\x8a\x99\x1c\x00\x30\x34\x95\x64\xa5\x75\xa4\x0b\xa7\x18\x79\x91\x9d\x26\x49\xbe\x6b\x22\x5c\xb4\x67\xcf\xb9\x68\xcf\xaa\x78\xec\x0b\xe5\x89\xa1\xa1\xda\xd8\xab\x6d\x69\x19\x11\x5c\xf6\x25\x7a\x97\x9f\x9a\x33\x8d\x9d\x99\x91\x00\xf2\x8b\xd1\x00\x5b\x0f\x5f\x2d\x1a\xbe\x82\x0f\xd2\x94\x7c\x80\xd7\x08\x27\x05\xfd\xbe\x5e\x5d\x09\x73\x99\x8c\x35\x4e\x58\x1e\x8d\x19\x06\xee\x20\xd4\x3c\xd5\x32\xcc\x36\xe9\xd3\x69\xed\x58\xbd\xa8\x25\xc5\x00\xcc\x26\xce\xfa\xa7\x8b\xc5\xcf\x20\x12\x78\x55\xd2\x55\xb0\xbc\x5c\x55\x4b\xd8\xea\x5f\x4a\x42\x91\xca\xa2\xfb\x4a\xd7\xbc\xe9\xaf\xa3\xaa\x0e\x73\xa1\x50\xe4\x82\x04\x4e\x25\x38\xdf\x95\xb8\x3a\x19\xa0\x4e\x54\x6f\x69\xfb\x94\x20\x1d\x74\x69\xc8\x9e\x94\xe2\xc9\x8c\x04\xa0\x0a\x9a\x6f\x68\x85\x7d\x12\xe9\x23\x3c\xc0\xa8\x50\x98\x85\xb3\xef\x16\x93\xa9\xad\x6e\x40\x6b\xac\xb5\x6d\x6b\x09\xe7\x99\xc6\xea\xdf\xaf\x7f\xee\x7e\x0b\x13\x43\x43\xdd\xb1\x56\x3b\x36\xd0\x17\x7d\x5d\x61\x1f\x97\x25\xd7\xd8\x2d\x4a\xcc\x88\x2d\x80\x55\x16\x35\x06\x97\x84\xac\xc2\xf6\x70\xd8\x6a\x9e\x66\xf7\xad\xf7\x7f\xcc\x09\xfa\xa0\xae\xf9\xbd\x29\x57\x86\x38\xfc\x61\xaf\x29\x65\x49\x1c\x6d\xb6\x3c\x39\x37\x80\x38\xf2\x44\x06\xcc\x4c\x48\x1c\xfa\x82\x58\xe9\x5a\x8c\xfa\x7e\xf8\x69\xfa\xa8\x65\x10\xe3\x71\xb0\xd5\xba\x36\x48\x68\x9f\x1b\xd4\x42\x7f\x05\xa1\xee\x39\xdf\x09\xfe\xd1\x6f\x20\x2f\xdb\x86\x56\x05\x3e\xfd\xac\xb4\x5a\xc1\xce\x50\xe1\x50\xa1\x6b\x93\x7a\x07\x96\x46\x92\xbd\x24\x97\xf9\xc5\x0c\x03\x33\x30\xbb\x53\xa2\xdd\xd8\x36\xe8\x29\xd8\x0d\x9e\x60\x2e\x6d\x98\x47\x01\x68\x40\x74\x55\x78\x6c\xf6\x8d\x4f\xbf\x79\xac\xb2\xc9\xe1\x8d\x63\x68\x48\x09\xf5\x18\x8d\x3b\x0b\x38\x4f\x81\x08\xeb\xf8\xe3\xbd\x4a\x75\x63\x1e\x04\xe7\x29\xdc\x5a\xd2\x0f\x51\xfc\x4b\x29\x3b\x89\x2b\xa8\x0f\x87\xbf\xe3\xed\x22\x23\x32\xa7\xc4\xf8\x7c\xaa\xc2\x48\x50\x0f\xa1\xbd\x79\xe6\xe2\xbd\x57\xef\x4a\x10\xd3\xdf\x5b\xef\xe4\x7d\xfa\x3e\xa8\xaf\x4f\xd6\x84\x86\x28\x73\x07\x03\x3b\x42\x05\x29\x74\x63\xe0\xda\x52\x9e\xf7\xd3\xf8\xa5\xe1\xfd\x33\x13\x7e\x2e\x49\x7b\x30\x2e\x10\xc6\x3a\x72\xfa\xff\xa9\x4b\xcd\x60\xab\x2b\x7f\xc0\xdc\x4f\x36\xc7\x5c\x6a\xf6\x64\x24\x9b\x38\x30\x19\x2a\x37\xcc\xb6\x9b\x27\x9e\x72\xf2\xe6\xf2\xd3\x8b\x6e\x69\xbe\xba\x3b\x63\xa7\x7f\xb9\x31\x87\x01\xc3\x89\x86\x83\xf3\xf3\x04\x1d\xee\x35\x08\xee\x12\xf6\xd6\x5f\xfc\xfd\xb0\xee\xd3\x10\x6f\xa6\x83\x42\x07\x7a\xff\x71\xec\xfa\x9e\xad\x2f\xab\xe1\xad\xee\x17\xb2\x32\xc1\x3b\x3d\x73\x9b\x50\x02\x43\x42\xf6\xd9\x80\xf0\x73\x2c\x1b\xe6\x1d\x58\xfb\x82\xb7\xe3\xcc\x2f\x0e\x4b\xeb\x73\xcc\x9e\x0a\xd6\x8d\xf7\x93\x4f\xdd\xdb\xf3\x2c\xf3\x93\xc3\x94\xa0\xf6\xf4\xf2\x99\xd5\x9f\x15\x0f\x30\x28\xc8\x47\xd9\x5c\xcb\x62\xe2\x60\x79\xa6\x20\xf0\x20\x2b\x39\xec\xba\xd0\xd1\x9f\x3e\x09\xb6\xcb\xde\x9c\x3d\x38\x65\xef\xfd\x9f\x31\x7c\x67\xdd\x1b\x18\x98\x1b\x38\x42\x94\x62\x7f\x28\x30\xb2\x30\x99\x2b\x08\x54\x30\x44\x9f\xb6\xdb\xd1\x5e\x3f\xd1\xe1\x08\x87\xc6\x4f\xe5\x5d\xdf\xde\xef\xca\x69\x58\x93\x74\xbd\xee\xc8\x2b\x33\x86\x72\x09\x06\x16\x86\x99\xae\x2d\xce\x0c\xc9\x2c\xc7\x3c\xbc\xe4\xdc\x0c\x0a\xd2\x2c\xb8\x22\xb4\x38\x2b\xbc\x19\xcc\xdf\x98\xa8\x1d\x5a\x77\x30\x49\x92\x7b\x76\xd6\x95\xd5\xf7\xa2\x96\x6f\xdd\x21\x98\xc0\x20\xb0\x5d\xaa\x7f\xe1\xfe\x19\xa6\x06\x31\x7d\x27\xdd\x76\xd8\xd9\xb4\xbd\xbb\x9c\x7a\x9c\xf3\x01\x67\x3d\xb3\xd4\x9f\x7a\x97\xe6\xff\x93\x1e\xaf\x0b\xd8\x97\xca\x22\xc1\x10\x11\xa6\x38\xe5\xb1\x3c\xe3\xe4\xd0\x0d\x59\x4b\xcf\xb8\xf6\x1f\xf8\x3e\x31\x80\xe3\x7b\x48\x9d\xc7\x01\x3b\xa6\x8c\x0f\xf3\x0f\x7e\xdd\xb9\x20\x75\x57\xd5\x2d\xbb\xd2\x10\x11\x55\x26\x1e\x86\x45\x21\xb3\xbf\xa8\xa6\x33\x5d\xed\xad\xe2\x50\x73\xb6\xef\x90\x7e\xfb\xbc\xd8\xae\x93\x7d\x52\xc3\x71\x96\x02\x66\xb3\xd5\xaf\xd6\x1e\x3d\xb0\xd7\x8a\xe7\x4e\xf5\xc5\xe4\xcf\x26\xee\x4c\x91\x9c\x06\x0c\x27\xba\xda\xad\x1f\x3b\x30\x34\xb3\xad\x77\x5d\x7f\xa0\xff\x61\xf6\x7f\x8b\x1f\xde\xf2\xce\xaa\x09\xcb\x9e\xdd\x0d\x8f\xd3\xd3\x3d\xbd\x6c\x45\xf3\x42\xad\xc4\x87\x1b\xd5\x0f\x30\x28\x7c\x9b\xce\xc0\x98\x22\x74\x60\x16\x73\xfd\x74\xbf\xce\xc8\xc7\x35\x19\xcf\xca\xfe\xa9\x35\xd6\x70\xce\x58\x5e\x3d\x67\x33\xe3\xce\xb2\xd9\xd1\xab\x52\x85\x9f\x3f\x7a\xee\x3d\xe1\xf8\x6f\xdf\x06\xc6\x86\xfb\x2d\x99\xf7\x23\x99\x2e\xcf\x2a\x71\xd5\xd2\x5d\x5b\xf0\xc0\xf8\x9c\x95\xe3\xc3\x46\x01\x8b\x7b\x37\xb4\x7f\x5a\xce\x7b\x17\x1d\x1e\x76\x32\x39\xe7\x0d\xf3\xc1\x73\x4e\x5d\x2a\x07\x18\x16\x78\x34\xd8\xd8\xca\xb1\xe4\xc5\x2f\x6d\x97\xb3\xd5\xf2\xfe\xb8\xef\x9b\x5b\x8f\xf4\x83\xff\xb3\x2b\x42\xaa\xbf\xc7\x69\x59\x2e\xd9\xf2\xc7\x64\xe2\x04\x53\xdf\xcb\x4f\x38\xcd\xbe\xdd\x4d\x7e\x14\xf6\x9b\xf3\x83\x5b\x5a\xbd\x6c\xe0\xc2\x56\x96\xac\xb0\x17\xdc\xd6\x13\x1b\x58\x0f\x1e\xe8\xe5\xe0\x12\x12\xf3\x5a\xb2\x44\x89\x73\xc6\xf2\xaa\x92\xfb\xf9\x5e\x19\x3f\x3d\xef\x17\xfd\xbc\xf9\x28\xfa\xea\x6d\xd7\x59\x4f\x5e\xaa\x24\x88\x32\xb2\x31\x84\x85\xb2\x1f\xdd\xe1\xc5\xb0\x9e\xfb\x9c\x7f\xf6\x4e\xee\x83\x07\x54\x58\x58\xe7\x24\xbd\x08\x72\x9d\xa5\x5e\x35\xb1\xb7\x62\x55\xbd\xc6\x4d\x77\xb9\xcc\x3f\x6d\x55\xa7\x55\x7f\x5e\xf1\x62\x6a\x15\x4a\x60\x08\xd0\xb0\x9c\xe7\xce\x14\xc9\xa1\xf0\x33\xe0\xfd\x11\xc3\x99\x53\xc2\x82\x5a\x1b\x12\x52\xa6\x39\xef\xd4\x66\x60\x7a\x96\x29\xa7\x9f\xb7\x2d\x61\xdb\xf1\x36\x21\x55\x7e\xc5\x95\xe7\xbe\x31\x74\xa5\x0a\xaa\x24\x98\x82\x2c\x0a\xe7\x3f\xea\xda\xe9\xb0\xf6\x5a\xe7\xde\x5e\x23\x39\xde\x8b\xbe\x19\x1d\xeb\xda\xf3\xe7\x94\xbd\x08\x65\xd5\x56\xa9\x15\xfb\xa9\xfa\xcf\x76\x66\xc8\xa6\x9d\xfe\xfa\x95\xd3\x62\xbf\xc5\x1d\x5c\x3a\x77\x85\x50\x02\x83\xc0\xd5\x59\x4b\xe3\xfd\x04\x0d\xd6\x0b\x04\x45\xa9\x3d\xb0\x7f\xb2\xb4\xa2\xd7\x80\x6f\x2f\xdb\xdf\x39\x45\x07\xe2\x37\xb6\x4f\x94\x7d\x3f\xfd\xc1\xa5\xbe\x07\x2b\x65\x95\xdf\xde\x9e\xa5\xfd\x34\x94\x6f\xdf\x67\x71\xab\xb5\xee\xf3\x19\x98\x1b\x5e\x5c\x37\xb4\xed\x61\x60\xdc\x13\x24\xd1\x50\x7e\xa5\x7e\xb1\xf5\xd3\xcb\x05\xc7\xff\xfc\x16\x91\x3a\xfc\x90\x43\xa4\xca\xfa\xf9\xbd\xff\xf6\x6b\xf7\xb3\xd5\xc7\x1d\xfc\x70\xf2\xad\x96\xee\xfa\x17\x42\x37\xe7\x1d\xf8\x7e\x2a\xab\xf4\x80\x65\xbd\xc6\x0c\x16\x19\xd5\x03\x0c\x07\x2e\x76\x2d\xce\x11\x3a\x31\xf5\xc0\xad\xad\x56\x3b\x2b\xe7\x4f\x51\x3f\xbd\xd4\xa6\xd4\xc5\x2f\x78\x69\xd0\xbd\x99\xd3\x8a\x4c\x76\xfc\x35\x3c\x55\xcb\x10\xe7\x3e\x87\x35\xda\xb9\x24\x4a\xeb\xc3\x12\x5b\xa9\x7a\x7e\xab\xa3\xdb\x26\x95\x6f\x3c\x6b\x72\xee\x77\xe1\xe5\x1b\xfd\xc9\x7c\x0f\x6e\xfc\xad\xd0\xb2\x6f\x50\x48\xd1\xaf\xdb\xdf\x78\x7f\xb7\xf7\xd6\x37\x72\x15\x0b\xdf\xac\x94\x5d\xef\x23\x24\x53\xe7\xd1\xc0\x42\x0b\xf4\x49\xfd\x43\xfd\xb9\xe2\xfa\xb3\xb2\x5d\x79\x77\x19\x18\x18\x18\x3c\x5d\xfd\x5c\xd6\x39\x25\x34\x01\x02\x00\x00\xff\xff\x09\x02\x07\xb8\xfe\x86\x00\x00")
-func initConnectorsOpenaiTextEmbeddingAda002ConnYaoBytes() ([]byte, error) {
+func initDataTemplatesDefault__assetsImagesIconsAppPngBytes() ([]byte, error) {
return bindataRead(
- _initConnectorsOpenaiTextEmbeddingAda002ConnYao,
- "init/connectors/openai/text-embedding-ada-002.conn.yao",
+ _initDataTemplatesDefault__assetsImagesIconsAppPng,
+ "init/data/templates/default/__assets/images/icons/app.png",
)
}
-func initConnectorsOpenaiTextEmbeddingAda002ConnYao() (*asset, error) {
- bytes, err := initConnectorsOpenaiTextEmbeddingAda002ConnYaoBytes()
+func initDataTemplatesDefault__assetsImagesIconsAppPng() (*asset, error) {
+ bytes, err := initDataTemplatesDefault__assetsImagesIconsAppPngBytes()
if err != nil {
return nil, err
}
- info := bindataFileInfo{name: "init/connectors/openai/text-embedding-ada-002.conn.yao", size: 189, mode: os.FileMode(420), modTime: time.Unix(1730855738, 0)}
+ info := bindataFileInfo{name: "init/data/templates/default/__assets/images/icons/app.png", size: 34558, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
-var _initConnectorsOpenaiWhisper1ConnYao = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xaa\xe6\x52\x50\x50\xf2\x71\xf4\x73\x57\xb2\x52\x50\x32\xd4\x33\xd0\x33\x50\xd2\x01\x09\x85\xb9\x06\x05\x7b\xfa\xfb\xa1\x89\xe6\x24\x26\xa5\xe6\x80\xc4\xca\x33\x32\x8b\x0b\x52\x8b\x74\x0d\x21\xe2\x25\x95\x05\xa9\x20\xe1\xfc\x82\xd4\xbc\xc4\x4c\x88\x58\x7e\x41\x49\x66\x7e\x5e\xb1\x92\x95\x02\xc8\x0e\x05\x05\xa5\xdc\xfc\x14\x6c\x9a\x15\x14\x94\xb2\x53\x2b\x41\xe2\x2a\xae\x7e\x61\x7a\xfe\x01\xae\x7e\x8e\x9e\xf1\xde\xae\x91\x4a\x5c\x0a\x0a\xb5\x5c\xb5\x5c\x80\x00\x00\x00\xff\xff\x1d\x68\xca\xec\xa3\x00\x00\x00")
+var _initDataTemplatesDefault__assetsImagesLogosLogo_colorSvg = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x96\x4b\x6f\x1b\xc9\x11\xc7\xef\xfb\x29\x1a\x93\xeb\xb8\x54\xef\xc7\x42\xf4\x22\x21\xe0\x5c\x1c\x6c\x90\xc7\x25\x37\xc7\x62\x24\x62\x69\xd2\x90\x18\x4b\x9b\x4f\x1f\x54\xcb\xd6\xd2\x80\x12\x1f\x8c\x99\xdf\x94\xaa\xab\xbb\xff\xf5\x2f\x5e\xff\xf4\xf4\xe9\x30\xbe\xec\xee\x1f\xf6\xa7\xe3\x66\x21\xc0\x65\xec\x8e\x1f\x4f\x37\xfb\xe3\xed\x66\xf9\xfb\xdf\xde\xbd\xc9\xe5\xa7\xb7\x3f\x5c\x3f\x7c\xb9\x1d\x8f\xfb\x9b\xf3\xdd\x66\x09\xfe\xfc\xb4\x8c\xbb\xdd\xfe\xf6\xee\xfc\xed\xed\xcb\x7e\xf7\xf8\x87\xd3\xd3\x66\xc1\x81\x23\x78\x04\x2f\x97\x49\x69\x19\x4f\x9f\x0e\xc7\x87\xcd\x72\x77\x3e\x7f\xfe\xf1\xea\xea\xf1\xf1\x11\x1e\x05\x4e\xf7\xb7\x57\x8c\x88\x57\x0f\x5f\x6e\xbf\x86\xfc\xf8\x74\xd8\x1f\x7f\x79\x2d\x90\xaa\xea\x6a\x7e\x5d\xde\xfe\x30\xc6\x18\xd7\xe7\xfd\xf9\xb0\x7b\xfb\xfe\xe7\x3f\xfe\xfc\xe6\xf7\x87\xcf\x77\x1f\xae\xaf\x9e\xc9\xf3\xd7\xdb\xb1\xbf\xd9\x2c\x7f\xfd\xf5\xd3\x3f\x4f\x87\x87\x65\x3c\x9c\xef\x4f\xbf\xec\x36\xcb\xf1\x74\xdc\x7d\x7b\x7b\xf3\x75\x4b\xb4\x8c\x7f\xed\x0f\x87\x6f\x1f\xfb\xf9\xcd\xfd\xbf\x0f\xbb\xcd\xb2\xfb\xb2\x3b\x9e\x6e\x6e\xbe\xae\x78\x91\xf7\xb7\x55\xbf\x8b\x3f\x9e\x8e\xff\xd9\xdd\x9f\x2e\xe2\x9f\xff\xe6\xfb\xf7\xc9\xee\x77\x1f\xcf\x33\xd5\x5f\x76\x1f\xcf\x1f\x8e\xb7\x87\xdd\xb7\x2a\x7e\x87\xf3\xdf\x32\x4e\x9f\x3f\x7c\xdc\x9f\x7f\xdd\x2c\xb8\x8c\xa7\xf9\xff\xf3\xf3\xcb\x4d\x5c\xde\xc3\xf2\xf6\xfa\xaa\x73\xbe\xb2\xd4\xe7\x0f\xe7\xbb\x71\xb3\x59\xfe\x64\x02\x8a\x61\xea\xb5\x9a\x82\xb3\x1b\xb2\x8c\xad\x11\x60\x52\x3a\xd7\x6a\x0e\x15\x48\x6a\x39\x34\x41\xc2\x34\x3d\x56\x4b\x48\xa2\x66\x06\xe2\x6a\xe6\xb6\x3a\x02\x96\x21\x4a\x8e\xad\x32\x38\x56\x70\xda\xea\x04\xec\x9e\x6c\x3e\xa4\x20\x90\x9d\x65\xd2\xe2\x52\xe7\x1a\xe2\x10\x68\x26\x9e\xab\x33\xa0\x67\xb9\xd9\xd8\x8a\x83\xba\x70\xe4\x8c\xad\x62\x52\xee\x58\xc6\xa0\xb0\x9a\xd4\x42\x5c\x74\x88\x41\xa9\x92\x31\x5d\xd2\x2d\x17\x84\x0b\x96\xc8\xc4\x98\x26\x61\x83\x15\x22\x4a\x53\xb3\xf7\x96\xc8\xa1\x1c\x4d\x93\xc3\xd2\x79\x35\x04\x0b\x29\xe3\xb1\x6d\xaa\x19\x48\xbe\x6a\x40\x26\x99\xf1\x60\x83\x74\xa7\x4c\x59\xd5\x80\x55\xcb\x64\x70\x80\x0b\x31\xb9\xac\x2a\xc0\xcc\xe4\xf6\x5c\x82\x12\x62\x46\xac\x4a\x40\x91\x6a\xac\x43\x08\x92\x2d\x4c\x6c\x95\x82\x12\xcf\x28\x1d\xa2\xa0\xca\xa4\x51\x4d\x4d\x8a\x2b\xc6\x56\x14\x8a\xdd\xdd\xb4\xa9\x7a\x99\x5a\xf4\x8e\x95\x92\x50\x7d\xd2\x3e\x93\xca\x79\x0e\x58\xa6\x12\x93\xa2\x87\x57\x9f\x64\x00\x89\x7a\x62\x36\x96\xa0\x2c\xa9\x21\x09\xe2\x1e\x52\x33\x85\xb0\xa0\x67\xdf\x90\x05\x11\xd1\xcc\x80\xae\x95\xc9\x63\xab\x04\xe8\x4e\xa5\xbc\x4a\x42\xa8\x92\x30\x0f\x65\x30\xaa\x50\x8f\xa6\x4c\x8a\xcc\x3a\x54\x20\xc3\xa5\x2c\x56\x09\xd0\x32\x4b\x1d\xdb\xd6\x89\x4a\x14\xd9\xda\xf7\x4d\x2a\x5d\x9a\x3a\x78\x89\x51\xe6\x2a\x06\x41\x5e\xec\xa3\x4f\x3a\x82\xd8\x72\x15\x05\x53\x23\x54\xfe\xaa\xc9\x8c\xec\x2d\x13\x88\x85\xc6\x30\xee\x4b\xd1\x2a\x59\x39\x80\x90\x5d\xa9\x61\x91\x13\x46\xac\xcc\x60\xa6\x69\x6e\x63\xdb\x98\xab\x8c\x68\x65\x84\x08\xa7\x4a\xed\x60\x0f\x49\xad\x95\x0a\x50\x58\xc9\x67\x06\xf2\x34\x77\x5b\x29\x40\xa2\x84\x50\x66\x06\xab\x08\xc2\x89\xc3\xac\x3c\x64\x98\x00\x92\x20\x11\xaf\x94\x40\xea\x16\xea\x4d\x95\x54\x3d\xbd\xa9\x19\x91\x30\x8d\xad\x19\x84\x22\x19\x5b\x17\x91\xa5\x11\xe6\xc3\x02\xcc\x43\xc3\x62\x65\x01\x67\x46\x23\x19\xdd\x63\x4a\xe8\x6a\x2b\x3b\xb8\x39\x0b\xc7\xd8\x3a\x02\x99\x53\x8a\xae\x2d\xf0\x32\x54\x1a\x8e\x2f\xf2\x15\x01\x12\x27\xce\xef\xa0\x83\x25\xa5\x76\x0d\x17\x58\x11\x90\xc3\xcc\x67\x86\x6f\x69\x55\x40\x3c\x5d\x85\x2e\x6b\x50\x07\xc3\x50\x23\x1d\xdb\x2e\xd8\xc4\x85\x65\xd5\x02\x33\xb3\xec\x60\x83\x90\x16\x52\xad\xc6\xc0\xc9\x69\x19\xe3\x75\x8b\x79\xff\x3a\xfe\xc7\x32\x1d\xf0\xcf\x1f\xce\x77\x2f\xe6\xe7\x5e\xfa\xee\x5d\xbb\x59\xdb\xd6\xff\x73\x33\x12\xa0\x40\xc6\xd0\x6e\x57\x71\x2e\xcd\x1c\x5b\x22\x48\x0d\xe7\xee\x4d\x05\x66\xf1\x88\x41\xdd\x8e\xac\x24\xd9\xa7\x90\xc9\x58\xee\x97\xb4\xc5\x2b\x96\x21\xcf\x19\x5e\xb0\x40\xb5\x43\xd1\xb8\x48\x2b\x08\xae\x89\x81\x3e\x2e\x6a\xe0\x00\xc3\x8c\x9a\x35\x28\xb4\x90\x99\x63\x65\x05\x0d\x25\x2f\x1d\xe4\xc0\x99\x41\xaa\x2b\x13\x84\xba\x16\x0d\x4a\x70\x0e\x2b\xf5\xd6\xa4\x22\x1b\xf6\x99\x33\x42\xb9\x6b\xb4\x54\x03\xd0\xd2\x88\x72\xb4\x5e\xba\xf8\xf0\x95\x0c\x98\x3c\xd1\x7c\x70\xb7\x98\x33\x33\xaf\x24\x50\x22\x54\x6d\xeb\x5c\x90\xa2\xc1\x25\x2b\xb5\x41\x47\x30\x8f\xd6\x8b\x19\xa1\xd4\x4a\x04\x25\x89\x84\xde\x46\x6b\x51\x59\xfc\x95\x12\x8a\x3e\x9b\x72\x48\x55\x69\x4e\x6c\xed\x24\xd4\xc1\x85\x88\xe5\x31\x69\x70\x16\xe9\x90\x00\x0c\x25\x46\xbf\xa4\xef\x25\x80\x45\x99\xd9\x2e\xf1\x56\x11\xfa\x80\x4d\x79\xe2\x92\xa4\xaa\x36\x13\xf4\x30\xa4\xb9\x11\x2a\x09\x2a\xed\xa1\x43\xe1\xbd\x5a\xbb\x0a\x4b\x74\x7f\x6b\x40\x0b\x4e\x72\x9e\x8f\x16\xa1\x88\xf7\xcc\x52\x51\x29\x9f\x5d\x2f\x12\x82\x1e\x93\xd2\xec\xeb\x6e\x38\x31\x42\x8c\x18\xdb\x1e\x70\xc5\x2e\xa8\x2b\x1b\x94\x47\xaf\xdd\x7e\xa4\x6a\xa5\x98\x2b\x27\x18\x87\x50\x52\xd7\x10\x4e\x52\x48\x7d\xfb\xc6\xa5\x61\x3d\xf8\x14\xb0\xfa\x5c\x65\x15\x06\x43\x09\xae\xa1\x04\xe1\x96\x28\xad\x9e\x8c\x6c\x9f\x69\xab\x65\xe1\x1e\x2d\xa2\x20\x56\x92\xa1\xd3\xab\x43\x4c\x89\xa8\xb1\x4b\xaa\x48\xce\xb1\x47\x51\x2c\xb2\xce\x29\x21\xd4\x92\x10\x85\xe0\xe4\xa8\x49\xdd\x58\xd2\x69\x6c\x05\x5b\x49\x4e\x4a\x6d\xaa\xcc\x1d\xce\x3d\xa0\x30\x92\x8a\xa6\xb2\x19\xcd\x1d\xe7\x30\x54\x62\x6a\x0b\x9f\x17\x10\xec\x9d\xa2\xc5\x48\xc4\xe5\x35\xcd\x80\x3c\xc2\x65\x30\xf6\xf0\x0d\xa1\xee\x2e\x76\xe3\x64\x6f\x48\xc1\xc5\x3d\x38\x09\xc4\x91\x33\x65\xaa\x95\x8c\x51\x45\x57\x6b\x4b\x43\x73\xed\x58\x0b\x77\x27\x5b\xcd\x7a\x04\xa2\xa0\x0e\x26\x90\x22\xec\xcb\xb0\x80\x74\x46\xaf\x99\x40\x59\xac\xd5\x63\x3d\xbf\xdc\x34\x75\x74\x43\xb4\x05\xcb\x1c\xde\x22\xca\x35\xfb\x45\xd4\xcc\xbc\xb3\xaa\x33\x07\xd2\xd8\x5e\xf4\x96\x09\x10\x1b\x5b\x37\xf8\x6f\x7d\x68\x08\x52\x61\x91\x3c\x5e\x37\x8e\xd7\xcc\x48\x24\xf0\x7f\x99\xd1\xf5\xd5\xc5\xcf\xba\x97\x97\xf9\x70\xdd\xbf\x68\xdf\xfe\x37\x00\x00\xff\xff\xce\x6c\x71\x2b\x5d\x0b\x00\x00")
-func initConnectorsOpenaiWhisper1ConnYaoBytes() ([]byte, error) {
+func initDataTemplatesDefault__assetsImagesLogosLogo_colorSvgBytes() ([]byte, error) {
return bindataRead(
- _initConnectorsOpenaiWhisper1ConnYao,
- "init/connectors/openai/whisper-1.conn.yao",
+ _initDataTemplatesDefault__assetsImagesLogosLogo_colorSvg,
+ "init/data/templates/default/__assets/images/logos/logo_color.svg",
)
}
-func initConnectorsOpenaiWhisper1ConnYao() (*asset, error) {
- bytes, err := initConnectorsOpenaiWhisper1ConnYaoBytes()
+func initDataTemplatesDefault__assetsImagesLogosLogo_colorSvg() (*asset, error) {
+ bytes, err := initDataTemplatesDefault__assetsImagesLogosLogo_colorSvgBytes()
if err != nil {
return nil, err
}
- info := bindataFileInfo{name: "init/connectors/openai/whisper-1.conn.yao", size: 163, mode: os.FileMode(420), modTime: time.Unix(1730855738, 0)}
+ info := bindataFileInfo{name: "init/data/templates/default/__assets/images/logos/logo_color.svg", size: 2909, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
-var _initDashboardsKanbanDashYao = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x56\x4f\x6b\xd4\x40\x14\xbf\xe7\x53\x3c\xe6\x5c\xb6\x58\x44\x64\xaf\xd5\x83\x08\x9e\xbc\x89\x94\xd9\xc9\x6c\x33\x30\x99\x09\x33\x93\xad\x4b\xd9\x93\xad\x8d\x54\xb1\xa0\xe2\xa5\x8a\x1e\x8a\x7f\x0e\x56\x2f\x52\x5c\x45\xf0\xb3\x98\x4d\xfd\x16\x32\x93\x6e\x36\xd9\x4d\x6c\xa0\x56\xba\x97\x1d\xde\xfb\xbd\xf7\x7e\xf3\x7b\x2f\x2f\xd9\xf4\x00\x90\xc0\x21\x45\x5d\x40\xd9\x78\x2b\xdd\x4b\xb2\xfd\xdd\xc9\xcb\x1f\x68\xc9\x7a\x88\x14\x7d\xb6\x8e\xba\xb0\x09\xa8\x1f\x73\x8e\xba\xd0\xc7\x5c\x53\x18\x39\x37\x26\x86\x49\x61\xdd\x1e\x00\x00\xf2\xb1\xc1\x39\x38\x52\x92\x50\xad\x6d\x56\x4d\x14\x8b\x8c\xee\xf8\x58\x07\x9d\x6b\x16\x01\x23\x0f\x4e\x32\x70\x3c\x94\xb1\x29\x67\xd0\x41\x4f\x62\xe5\x17\x26\xc7\x82\xc7\xa1\xb0\xc9\xee\x9c\x98\xc0\xd6\x98\xd2\x4e\x3f\xbe\xce\x1e\xbe\x9f\x3c\xff\xf4\x7b\xe7\x09\x5a\x02\xb4\xc1\x7c\x13\xa0\x2e\x5c\xc9\x6b\x34\xe0\xb3\xcf\xe3\xf4\xd5\x6e\x2b\xfc\xf7\xa7\x93\xfd\x64\xf2\xec\x4b\xba\x7d\xd0\x0a\xff\x68\x9c\x1e\x25\xed\xf9\x2c\x66\xbe\xda\x88\x3c\x4c\x77\xbe\xb6\x41\x66\xe3\x6f\xe9\x5e\x72\x7c\xb8\x95\x26\x0f\xda\xe0\x73\x4d\xd2\xe4\xc5\xf1\x9b\x77\x65\xfc\xca\x65\xd7\x2c\xfb\xbb\xeb\xfe\x67\xad\xeb\x33\xca\x7d\x7d\x4a\xeb\x2a\xbd\x99\xd9\x01\x50\x8f\x09\x8b\x44\x11\x35\x6b\x44\xc6\xc2\xa0\x19\x31\x34\x60\x74\x23\x1f\x24\x33\x8c\x1c\x41\x12\x60\x65\x96\x6f\xc5\x61\x8f\x2a\x4b\x30\x52\x32\xd2\x39\x24\x16\xcc\x4e\x10\xfa\x75\xf4\x01\xc1\xa8\xe0\x5b\x5c\xb4\xda\xf0\x46\x12\xae\xd2\x59\x39\x64\x6f\x1f\x37\x70\x28\x0f\x51\x2d\x07\x26\x88\x0c\xe9\x5a\x28\x85\x09\xf8\xf0\xcc\x4c\xd2\xed\xfb\x0d\x4c\xca\xe3\x59\xcb\xc4\x97\xc4\x48\x75\xde\x5d\x39\x5d\x8b\x72\xed\x7c\x4b\x14\xcb\x44\x1b\x6c\x3a\x37\x16\x50\x53\x86\x85\x05\xea\xb9\xae\xda\x73\x29\x10\x4a\xd4\x4b\x46\x67\xa6\x7d\x76\xcf\xc6\xff\x3c\xa8\x04\xd8\x89\xa7\x84\x85\x98\xdb\xa8\x95\x39\x97\x7d\xae\x6e\xd2\xa1\x53\x13\x1b\x3a\x1f\x39\xc0\x3c\x9e\xfa\xdd\x19\x95\xfc\x23\x6f\xfe\x54\x16\xcd\x6d\x80\x5a\xd1\x88\xd4\xb5\xed\xfa\x77\x62\x10\xc9\xa5\xb2\xe1\x8a\xfa\xf3\x57\xba\x60\x42\x55\x16\x60\xad\x5c\xaa\x5a\xee\x3c\xe5\x92\x0a\x8b\xf5\x85\xbb\x15\x4f\xaa\x5d\xd1\x8d\x82\x5d\xfa\x4f\x82\x55\xde\x00\x15\xc1\xfe\x26\x4c\x0f\x6b\xba\x7c\x1b\xf7\x38\x6d\x50\x04\x50\x28\x7d\xca\x1d\x5d\x1a\xca\x4e\x44\x8d\x5d\x14\x52\xac\x06\x56\x93\xeb\x03\x2a\xcc\xec\xab\x62\x91\xdf\xec\xa5\xe3\x8d\xbc\x3f\x01\x00\x00\xff\xff\xa1\x24\x41\xd3\xae\x08\x00\x00")
+var _initDataTemplatesDefault__assetsImagesLogosWordmarkSvg = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x57\x5d\x6f\x2b\xb7\x11\x7d\xcf\xaf\x20\xf6\xa9\x17\x58\x8f\xe7\x93\x43\x06\x96\x03\x54\x40\x9f\x1c\xa0\x40\xdb\x87\xe6\xcd\x88\x15\x59\xb8\xba\x5a\x43\x56\x6c\xb7\xbf\xbe\xe0\xae\x24\xcf\x0a\x57\x45\xf2\x26\x9e\x25\x87\xc3\x73\xe6\xcc\xd8\x77\x3f\x7d\x7c\xdb\xa6\xb7\xd5\xfe\x75\x33\xec\x16\x1d\x01\x76\x69\xb5\xfb\x75\x78\xda\xec\xd6\x8b\xee\x5f\xff\xfc\xdb\x4d\xe9\x7e\xba\xff\xe1\xee\xf5\x6d\x9d\xde\x37\x4f\x87\xe7\x45\xc7\x28\xe0\x82\xc6\xfc\xf2\xd1\xa5\xe7\xd5\x66\xfd\x7c\x58\x74\x45\xc1\x2b\x3b\x92\x36\xf4\xb7\xcd\x76\xbb\xe8\x7e\xfd\x7d\xbf\x5f\xed\x0e\xcb\x61\x3b\xec\xbb\xf4\xb6\x59\xbd\xff\x75\xf8\x58\x74\x98\x30\x7d\x06\x49\x9f\x27\xbb\x98\x08\x75\xe9\xe3\xdb\x76\xf7\xba\xe8\x9e\x0f\x87\x97\x1f\x6f\x6f\xdf\xdf\xdf\xe1\x5d\x60\xd8\xaf\x6f\x19\x11\x6f\x5f\xdf\xd6\xc7\x2d\x3f\x7e\x6c\x37\xbb\xaf\xdf\xdb\x48\xb5\xd6\xdb\xf1\x6b\x77\xff\x43\x4a\x29\xdd\x1d\x36\x87\xed\xea\xfe\x7d\xd8\x3f\x7d\x7b\xdc\x7f\xbd\xbb\x9d\xd6\xd3\xb7\x75\xda\x3c\x2d\xba\xbf\x3f\xae\x57\x37\xd4\xa5\xd7\xc3\x7e\xf8\xba\x5a\x74\xbb\x61\xb7\x3a\xad\x6e\x8e\x1c\xd0\xf4\xc4\x9b\xfd\xef\xdb\xd5\xa2\x5b\xbd\xad\x76\xc3\xd3\xd3\xf1\x8a\x10\xea\x74\x4d\x97\x0e\xfb\xc7\xdd\xeb\x6f\xc3\xfe\xdb\xa2\x1b\x7f\x6e\x1f\x0f\xab\xbf\x08\x64\x63\xed\x13\x7e\x99\x85\xdb\x0d\xbb\xff\xae\xf6\x43\x08\x17\x42\xfe\xfb\x4a\x2c\xec\x13\x39\x98\xeb\x97\xcb\x5c\xf9\x22\xd0\x18\xec\xe5\xf1\xf0\x9c\x9e\x16\xdd\xcf\x44\xe0\x44\xce\x2e\xfd\x0d\xa5\x07\x41\x70\x54\x52\xd2\x9e\x2b\x18\x99\x94\x6a\xe9\x41\x2b\xb8\x32\x21\xd6\x71\x57\x16\x60\xaf\xc2\xa2\xd3\xa1\x0c\x26\xc4\xd6\x2b\x42\x91\xca\x84\x39\x80\x39\x03\xa3\x7b\x65\x49\x0f\xac\x50\x99\x8a\x5f\x43\x63\x80\x1b\x82\xc2\x99\x6a\x91\x3c\xde\x32\xcf\xf4\x97\xee\x28\xd6\xe1\xb9\xbb\xbf\xbb\x6d\xef\xb9\xe0\xeb\x76\x7d\x01\xbc\x0c\xdb\xff\xac\x87\xdd\xe7\xb9\xf4\x32\x6c\x76\x87\xd7\x45\x47\x64\x80\xc4\xc5\xd2\x4d\x81\xa2\x5a\xcc\xb8\xae\x6e\x28\xa7\xea\x60\xec\xc4\xc5\x13\x29\x58\xc9\x46\xce\x89\x30\x8f\xdc\x70\x9e\x48\x97\x6a\xa4\x89\x58\x81\x24\x8b\x7b\x62\xc0\x4a\xe2\xa5\xda\x98\xdc\x74\xf1\x77\xf5\x1c\xae\xe8\x49\x5a\x00\xbd\x50\x9f\x78\xf2\xc7\x97\xff\x2b\xa3\x71\xaf\x05\x2a\x92\x62\xb1\xb4\x34\xee\x0d\x41\x95\x84\x34\x27\x23\x70\x2c\x5c\x0a\xf5\x46\x50\x8a\x0b\x4b\x6d\x28\xb1\x96\xac\xd2\x9b\x00\x4b\x55\xc9\x39\x2d\x0d\xc1\x94\x54\xd1\x7a\x53\xb0\x4a\xa6\x55\x52\x2b\x00\xc3\x5a\x4d\x7a\x33\xf0\x6c\x6c\x85\x93\x16\x70\x13\xe3\x52\x7a\xcb\xe0\x19\x2d\x8b\xa6\xa5\x3a\xb8\x65\xcc\x2c\xbd\xb5\x9f\x56\x72\xb1\xa4\x19\xac\x54\x26\xcd\xbd\x15\x30\xd5\x8c\x58\x93\x1a\xb0\x71\x2d\x56\x7b\xab\x40\x9c\x3d\x63\x4e\x4b\x15\xa8\x94\xdd\x9c\x1a\xec\x58\x2a\x23\x27\x65\x50\x77\x24\xf7\x3e\x63\x52\x84\x2a\xe2\xd9\x73\x5b\xb5\xfa\xc0\x9c\x59\x58\xdb\x72\x59\x61\x4c\x81\x8d\xda\xb2\x00\x09\x72\x15\xca\x31\x5e\x06\x77\x63\x6d\x0c\x84\xbb\x0d\x94\x91\xaa\xa9\xce\x12\x05\x56\xa9\xe2\x6e\xf1\x51\x02\xac\x59\x9d\xda\x53\x03\x03\x0c\xac\x15\x51\x5b\xfa\x9f\x74\x11\xa8\x15\xb3\x6a\x1a\xa9\x45\x28\x6e\x24\xe6\xcc\x33\x21\x10\xb8\x92\x13\x55\xf4\x28\x1b\x46\x65\x31\xaa\xfe\x80\x7d\xe3\xa0\x71\x49\x96\x96\xd8\x57\x98\xb2\x54\x4b\x31\x58\x01\x3a\xbd\x35\xde\x7d\x4a\x5f\x4a\x5a\xc6\x4c\x41\xb1\xa8\x61\x2b\xea\xf3\xa3\x14\x58\xd4\x95\xbc\x44\x06\xce\xc9\x73\x5a\x06\xba\xda\xb9\x53\x25\x7e\x52\xdb\xae\x30\xa9\x15\x73\x90\xa1\xe5\x23\x63\x10\x4f\xcb\xa0\xd9\x98\x3e\x7a\x2d\xc4\x29\x08\x8b\x29\x88\x8e\xe9\x21\x54\x04\xa6\x65\xa8\x16\x4c\xa1\xa0\x62\xb0\x50\x7e\xb3\xbb\x43\xb1\x86\x44\x43\x61\x87\x47\x05\x17\xcc\x18\xf8\xb4\x4c\xa0\x2b\xda\xeb\xcc\x6c\xb0\x62\x54\x21\xf8\x36\x68\x66\x1c\x85\x35\x8e\xa2\x3f\xcc\xfb\xc0\x2f\xe9\xe7\x40\x50\xdc\x17\xe0\x58\x41\x81\xc0\x2b\xf0\x95\x20\x01\x3e\x76\xe6\x7f\x3c\x3f\xbe\xac\xfe\x68\x6b\x9e\x7a\xe1\xe3\x95\x5e\xe8\x7f\xaa\x15\x62\x2f\x02\x05\xb9\x50\xae\xcd\x05\xc2\xc0\xb9\x29\x5e\x46\x17\xb0\x1a\x17\xe9\x05\xdb\x74\xe1\x4a\x34\x9a\xc0\xc5\x8a\x56\x6a\x43\x4f\x2b\x57\x73\x1f\x4d\x90\x99\xb3\x92\xf5\x5c\x80\xac\x66\x56\x6d\x2e\x30\x75\xca\xb5\xf4\x9c\x61\x7a\xf3\xd8\x07\xce\xa8\x41\x75\x2a\x42\xa3\x09\xce\xa8\x42\x8b\xaa\xd9\x9a\x09\x44\x6a\x0b\xdd\xd0\x53\xdc\xdc\x9e\x36\xe5\xc6\x02\xe3\x56\x2d\xa3\x09\x0c\xab\x8a\xf6\xcc\xd0\x8a\x09\x6d\xb4\x40\xd1\x8a\x96\x73\x43\x1d\x95\xd9\x74\xf4\x42\x1d\x43\x47\xf4\x41\x2a\x7c\x67\x73\x84\xa3\xa6\x02\x63\x0e\x48\xf5\x1a\x8c\xb3\xb3\xcd\x67\x04\xd3\x73\x9a\x07\x95\x3f\x3f\x45\x9f\x69\x1b\xf7\xa6\xce\x17\x3e\x33\xb0\x9c\x51\xdc\x67\x3e\xcb\xe0\x47\x2a\x82\xcd\xfc\x04\xce\x5c\x56\x4e\x68\x30\x99\x56\x30\x19\x35\x8d\x26\x43\xa0\xa3\x9c\x33\x93\xb5\xbf\x78\xa6\xcc\xa2\xc9\x68\x66\x32\x9a\x9b\x6c\x1c\x29\x91\x85\x8b\xa5\x56\x28\x53\x7b\x4f\x4b\xa9\x70\x2a\x2e\x23\x60\x2d\x85\xb3\x24\xa9\x30\x82\x98\x7b\x63\x18\x53\x41\x49\x52\x60\xac\x16\xa2\x36\x09\xce\x35\x2c\xad\xfe\x5b\x21\x79\x9b\x26\xa3\x80\x62\x49\x7c\xaa\x2e\x6f\x93\x87\x98\x31\x9b\x27\xc9\x67\xd0\xcf\x3b\x97\x62\x01\x1d\xcb\x8d\x24\x89\x02\x91\x34\x55\xda\x98\x6b\x0f\xd5\x9c\x84\xa1\xa9\x5c\x8a\xb7\x91\xc8\x13\x1f\x69\x29\x04\xa7\x42\x6e\xe3\x53\xc6\x01\x9a\x04\x81\x4a\xc9\x5e\xb9\x11\xc0\xad\x0d\x8e\x97\x9c\xa6\xf1\xb1\x18\x8f\xd3\x38\x70\xf5\x59\xd4\xf3\x61\x7c\x32\xc0\xc5\x34\x3e\xb9\x65\x3e\x8d\xcf\x09\xcd\xa6\xf1\x19\x9d\x4f\xe3\x33\x3c\x9b\xc6\x27\x7b\x5f\x4c\xe3\xb3\x5e\x17\xd3\xf8\x94\xdd\x1f\x1c\xc6\xa1\x0d\x1d\x1b\xf1\x91\x90\xb8\x2d\x56\xcd\xf7\xe1\x10\x26\xb2\x7a\x05\x8e\xdd\xff\xcf\x35\xe2\xf3\x62\xfc\x71\xd7\xfe\xbf\xba\xff\x5f\x00\x00\x00\xff\xff\x3a\x68\xc1\x0c\x1f\x0e\x00\x00")
-func initDashboardsKanbanDashYaoBytes() ([]byte, error) {
+func initDataTemplatesDefault__assetsImagesLogosWordmarkSvgBytes() ([]byte, error) {
return bindataRead(
- _initDashboardsKanbanDashYao,
- "init/dashboards/kanban.dash.yao",
+ _initDataTemplatesDefault__assetsImagesLogosWordmarkSvg,
+ "init/data/templates/default/__assets/images/logos/wordmark.svg",
)
}
-func initDashboardsKanbanDashYao() (*asset, error) {
- bytes, err := initDashboardsKanbanDashYaoBytes()
+func initDataTemplatesDefault__assetsImagesLogosWordmarkSvg() (*asset, error) {
+ bytes, err := initDataTemplatesDefault__assetsImagesLogosWordmarkSvgBytes()
if err != nil {
return nil, err
}
- info := bindataFileInfo{name: "init/dashboards/kanban.dash.yao", size: 2222, mode: os.FileMode(420), modTime: time.Unix(1730855738, 0)}
+ info := bindataFileInfo{name: "init/data/templates/default/__assets/images/logos/wordmark.svg", size: 3615, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
-var _initFlowsAppMenuFlowYao = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x94\xcf\x8b\xd3\x40\x14\xc7\xef\xfd\x2b\x86\x39\x29\xd4\x66\x57\x44\x30\x20\x22\x8a\x37\x61\x0f\xde\xa4\xc8\x24\xf3\xdc\x0c\x4d\x66\xca\xcc\xa4\x2a\x4b\xaf\x8a\x2c\x82\x0b\x2a\xa2\xbb\xac\x11\x85\xc5\x43\x2f\xe2\x61\xdd\x5a\xff\x19\xdb\xb4\xff\x85\x4c\xda\xd4\xd9\x34\xcd\x5a\xb5\xf6\x92\xe6\x7d\xdf\x7b\xf9\xbc\x1f\x33\x3b\x35\x84\x30\x27\x11\x60\x17\xe1\xeb\x5b\x5b\xe8\x36\xf0\x18\xd7\x33\xab\xa0\xa0\xb0\x8b\xee\x36\xb3\x57\x11\xeb\x76\xac\xb1\x8b\x4c\x08\x42\x58\x81\xd6\x8c\x6f\x1b\x87\xcc\x80\x66\x42\x26\x7a\xa1\xf0\x5b\x26\x78\xa3\xfe\xcb\xc8\x7c\xc1\xcd\x67\xcc\xf3\x42\xac\x40\x62\x4b\xcc\x19\xd2\x5e\x92\x3e\x7f\x3c\xdc\x7b\x6d\x8b\x6d\xa2\x03\x23\x3a\x0f\x9d\x3b\xc4\x0b\xc1\x21\x34\x62\xbc\x51\xcc\xd1\x61\x8a\x79\x21\xdc\x8b\x4c\x0d\x2e\xda\x98\x29\xdd\xfa\x22\xe0\x29\x96\x59\x29\xca\xce\xc5\x28\x76\xd1\x95\xec\x57\x42\x39\xee\x0d\xd2\x6f\xbd\x25\x88\xb7\x84\x8c\x1c\x0a\x91\x68\xb4\x41\x3b\x9b\x0e\x50\xa6\x6d\x57\x2a\x4c\x1b\xb5\x8c\xc1\x32\xfa\x01\x0b\xa9\x04\x6e\xf5\xf3\x34\x72\xc9\xf7\x27\xc9\xf1\xa8\xff\x22\xfd\xf0\xd5\xca\x3e\x6d\x3f\xa1\xdb\xc6\xef\xe2\xa5\x82\x70\x16\xa5\xe5\xdd\xb5\x43\x77\xac\x01\x7d\x3e\x49\x4f\x0e\xf3\x06\x58\x29\xf3\x85\x40\xdd\x79\x60\x33\x9f\x40\xf6\x6c\x4e\x33\x62\xa6\x21\x52\x7f\xba\x37\x9e\x10\xad\xb2\xbd\x59\x68\x84\x5d\xeb\x4d\xa2\x02\x4f\x10\x49\x9d\x16\xe1\x1e\xe1\x55\x4b\x63\x49\x79\x1b\x2f\xaf\x3c\xa7\xb2\x3a\x16\x6b\x21\xbe\x66\x1d\xa6\x1f\x15\xc7\x37\x6f\xf5\xfe\xee\xe8\xe0\x7b\x51\xfd\xbd\xba\xca\x6a\xdb\x5c\x3a\xde\x75\xd0\x0f\xdf\x0e\xc6\xc9\x51\x05\xfd\x8d\x80\x48\xed\xb4\x41\xaf\x1b\x7b\x7e\x6a\x92\xa3\xd1\xbb\x7e\x05\xd1\xf4\x72\xc9\x0f\xc5\x7f\xc4\x1a\x3e\x7b\x79\x2e\xed\xbf\x1a\x0f\xf6\xce\x57\xe0\x9d\x71\xb1\xfc\x0d\x64\x81\x65\x74\xf8\x31\xdd\xdf\x5d\x85\xa5\xc3\xe0\xc1\xbf\x66\x79\xf2\x69\xd8\x7b\xf3\xe3\xf8\xe9\x24\xf9\x32\x39\x78\xbf\x14\x86\xdd\x97\x24\x82\x6b\x4a\xfa\x57\x33\x22\xb3\x52\x8d\x40\x47\xe1\x2a\x3c\xcb\xee\xac\x9a\xf9\xd7\xad\xfd\x0c\x00\x00\xff\xff\x57\xf1\x8e\xff\x28\x07\x00\x00")
+var _initDataTemplatesDefault__dataJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xaa\xe6\x52\x50\x50\x2a\xc9\x2c\xc9\x49\x55\xb2\x52\x50\x8a\x4c\xcc\x57\x70\x49\xcd\xcd\x57\x70\x2c\x28\x50\xe2\xaa\xe5\x02\x04\x00\x00\xff\xff\x2c\x3a\x50\x78\x1e\x00\x00\x00")
-func initFlowsAppMenuFlowYaoBytes() ([]byte, error) {
+func initDataTemplatesDefault__dataJsonBytes() ([]byte, error) {
return bindataRead(
- _initFlowsAppMenuFlowYao,
- "init/flows/app/menu.flow.yao",
+ _initDataTemplatesDefault__dataJson,
+ "init/data/templates/default/__data.json",
)
}
-func initFlowsAppMenuFlowYao() (*asset, error) {
- bytes, err := initFlowsAppMenuFlowYaoBytes()
+func initDataTemplatesDefault__dataJson() (*asset, error) {
+ bytes, err := initDataTemplatesDefault__dataJsonBytes()
if err != nil {
return nil, err
}
- info := bindataFileInfo{name: "init/flows/app/menu.flow.yao", size: 1832, mode: os.FileMode(420), modTime: time.Unix(1730855738, 0)}
+ info := bindataFileInfo{name: "init/data/templates/default/__data.json", size: 30, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
-var _initFlowsStatDataFlowYao = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x95\x4d\x6b\x9c\x4e\x00\xc6\xef\xfb\x29\x86\x39\x1b\x99\x17\xd7\x97\xbd\xfd\x3f\xc0\x1f\x72\x0f\x61\x11\x57\x68\x21\x71\x16\x1d\x03\x61\xd9\x53\x5b\x28\x98\x53\x0e\xd9\xc2\x16\x7a\xea\x25\xa1\x04\xf6\xd0\x06\xf6\xd0\x2f\x13\xb5\xfd\x16\x65\xc6\xa8\x33\xab\x82\x1e\x1d\x9f\xdf\x33\xcf\x3c\x33\xa3\x9b\x19\x00\x30\xf2\xaf\x43\xb8\x00\xf0\xbf\xf3\x73\xf0\x7f\x18\xa5\xd0\x90\xa3\x6c\x15\x26\x70\x01\x2e\x2e\xe5\x23\x4b\xf9\x3a\xe5\x70\x01\x04\x02\x00\x7c\x1f\x05\x4c\x62\x17\xf2\x19\x80\x0d\x80\x37\xfe\x55\x2a\x86\x2c\x44\x11\x32\x00\x5c\xf9\x5c\x1a\x13\x44\xc8\x19\x3e\xc3\x10\x6c\x8d\xae\x7a\x8e\xdc\xae\x9a\x0c\xa9\x29\xee\xf1\xa6\x43\x6a\xcb\xed\xf1\xb6\x86\xd4\xb6\xe7\x75\xd5\xf3\xc1\x24\x4e\x8f\xb7\x2d\xd5\x52\x7c\x59\x31\x30\x60\x09\xef\xef\x89\xb8\x78\x42\x4f\x84\xa2\x09\x3d\x11\x6f\x4a\x4f\xc4\x76\x26\xf4\x44\x6c\x6b\x4a\x4f\x98\x8c\xea\x29\xae\xde\xf7\xf4\xe4\x9a\xe3\x5b\x72\x4c\x7b\x74\x47\x9e\x89\x47\x37\xe4\x9a\xd6\xf8\x73\x64\x7a\xa3\xdb\xf1\xba\x6b\xeb\xe9\x66\x1d\xf2\x65\xc0\xd2\x48\x1c\xa4\xb9\xa5\x0c\xf2\xdb\xb5\x4c\x67\xa8\xb7\x72\x79\xcd\x22\xfe\xee\xea\x56\x44\x71\xc5\x91\xae\x5e\xae\x58\xc0\x59\xdc\xf8\x10\x5a\xfb\xc4\xe1\xcd\x52\x9d\x61\x03\x60\x90\xc6\x71\x58\x4f\x57\x49\xc4\x75\x9a\xd7\x6b\x68\xa1\xb7\x04\x1a\xe3\xb6\x08\xa6\x3a\xd2\x49\xa8\x81\x55\xdc\x06\xf6\x08\x42\x48\xe7\x4f\x16\xa1\xd1\x84\xb6\x28\x71\x1a\x6e\xe5\x73\x3f\x61\x69\x1c\x84\x75\x58\xe5\x8c\xbd\x8d\xc0\xf2\xee\xa9\xbc\x7b\x82\x86\xb8\xaf\x95\x35\x76\xb5\x0d\x6b\x84\xd9\xae\xcc\x76\xaa\xd0\xee\xd5\xe5\x9f\x7e\xbe\x1e\x1f\x54\x1d\x3d\xd9\x54\x25\x57\xc2\x7d\x9e\x26\x7a\xb2\x66\x0c\xe6\xbf\x0e\xc5\xb7\xef\xe5\xd7\xec\xc4\xcd\xe8\x13\x17\x87\x63\xf9\xb0\x7b\x7d\xf9\xa1\xad\x85\x0c\xa8\x85\xf5\xe1\x58\x7c\xfc\xac\xaa\xbd\xe1\xa0\xdd\x8f\x59\xfd\xf7\x28\x9e\xf7\xc5\xf3\x5e\xd8\x24\xdc\x17\x1b\x4b\x8d\xe6\xdb\xa7\x6e\xa3\x06\xfd\xfd\xf2\x3b\x7f\xf9\xa0\x40\x76\x0b\x59\x64\x00\xca\xef\x1f\xf3\xfb\x47\x05\x72\x5a\xc8\x1e\x9a\xa9\xcc\x76\x7f\xf6\x99\x02\xe1\x16\xc2\x12\xaa\x96\x3c\x03\x60\x3b\xdb\xce\xfe\x05\x00\x00\xff\xff\xc2\x17\x3b\x36\x19\x07\x00\x00")
+var _initDataTemplatesDefault__documentHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\xc1\x4e\xc3\x30\x0c\x86\xef\x7b\x0a\x13\x71\x5c\x16\x71\x43\x5a\x32\x21\x0d\xb8\x8e\xc3\x90\xe0\x34\x65\xad\xdb\x5a\x4b\x93\xd0\x98\x8e\x69\xda\xbb\xa3\x36\xdb\x00\x71\x8a\x63\xff\xf9\x9c\xdf\xd6\x37\x8f\xab\xe5\xfa\xfd\xe5\x09\x1a\x6e\xdd\x62\xa2\xf3\x01\xa0\x1b\xb4\xe5\x10\x00\xe8\x16\xd9\x42\xd1\xd8\x2e\x21\x1b\xf1\xba\x7e\x96\xf7\x02\xd4\xb9\xc8\xc4\x0e\x17\xc7\x23\xdc\xd6\x2e\x6c\xad\x9b\x8d\x09\x38\x9d\xb4\xca\xa5\xc9\x0f\x64\x8c\x00\xbc\x6d\xd1\x88\x9e\x70\x1f\x43\xc7\xe2\x9c\x2d\x82\x67\xf4\x6c\xc4\x9e\x4a\x6e\x4c\x89\x3d\x15\x28\xc7\xcb\x14\xc8\x13\x93\x75\x32\x15\xd6\xa1\xb9\x9b\x42\x6a\x3a\xf2\x3b\xc9\x41\x56\xc4\xc6\x87\x4c\x51\x8b\x7f\xcd\xae\x58\xc6\x2f\x56\x83\xbd\xf9\xd5\xcb\x68\x65\x0e\x6f\x72\x99\x45\x72\x7d\x88\x28\x57\x91\x29\xf8\x64\x7c\x48\x9e\xaa\xea\xf2\xbf\x86\x39\x4a\xfc\xf8\xa4\xde\x88\xdf\xfa\xbf\x9d\x1d\xf9\x1d\x74\xe8\x8c\xa0\x22\x78\x01\x7c\x88\x68\x04\xb5\xb6\x46\x15\x7d\x2d\xa0\xe9\xb0\x32\xe2\xc1\xa6\x84\x9c\xd4\x58\x48\x6a\xd0\x26\x65\x63\x9c\x8d\x9a\x11\xa6\xd5\x65\x05\x7a\x1b\xca\xc3\x99\x5f\x52\x0f\x85\xb3\x29\x19\x31\x38\xb3\xe4\xb1\x13\xc3\xf8\x37\x9b\x68\xeb\x3c\xf7\x92\xfa\x0c\xc8\xef\xb4\xca\x4b\xfd\x0e\x00\x00\xff\xff\xb3\xc5\x31\xee\xec\x01\x00\x00")
-func initFlowsStatDataFlowYaoBytes() ([]byte, error) {
+func initDataTemplatesDefault__documentHtmlBytes() ([]byte, error) {
return bindataRead(
- _initFlowsStatDataFlowYao,
- "init/flows/stat/data.flow.yao",
+ _initDataTemplatesDefault__documentHtml,
+ "init/data/templates/default/__document.html",
)
}
-func initFlowsStatDataFlowYao() (*asset, error) {
- bytes, err := initFlowsStatDataFlowYaoBytes()
+func initDataTemplatesDefault__documentHtml() (*asset, error) {
+ bytes, err := initDataTemplatesDefault__documentHtmlBytes()
if err != nil {
return nil, err
}
- info := bindataFileInfo{name: "init/flows/stat/data.flow.yao", size: 1817, mode: os.FileMode(420), modTime: time.Unix(1730855738, 0)}
+ info := bindataFileInfo{name: "init/data/templates/default/__document.html", size: 492, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
-var _initFormsAdminUserFormYao = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xaa\xe6\x52\x50\x50\xca\x4b\xcc\x4d\x55\xb2\x52\x50\x7a\xbe\x6e\xe1\xf3\x09\x6d\x4f\x27\xce\x50\xd2\x01\x09\x27\x26\x97\x64\xe6\xe7\x29\x59\x29\x80\x14\x29\x28\x28\x25\x65\xe6\xa5\x80\x78\x0a\x4a\xb9\xf9\x29\xa9\x39\x20\x1d\x89\x29\xb9\x99\x79\x7a\xa5\xc5\xa9\x45\x4a\x3a\x0a\x4a\xf9\x05\x30\x0d\xb5\x0a\xb5\x5c\x0a\x0a\xb5\x5c\xb5\x5c\x80\x00\x00\x00\xff\xff\x38\xbc\xb6\x0f\x61\x00\x00\x00")
+var _initDataTemplatesDefaultIndexIndexCss = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x56\xdb\x6e\xe3\x36\x10\x7d\xcf\x57\x10\x6b\x14\x58\x03\x4b\x43\x94\x63\x27\x66\x3f\xa2\x0f\x7d\x2d\x60\x8c\x44\x4a\x62\x43\x91\x02\x49\xc5\xf6\x16\xfb\xef\x05\x2f\x92\x25\x4b\xc9\x76\x1b\x06\xb0\xcc\x39\x1e\xce\x9c\x39\x33\x14\x35\x5a\x3b\xf4\xcf\x13\x42\x18\x1b\x8a\x0e\xe4\xf7\xf0\x58\x53\x44\xc8\x3e\x3e\x17\x14\xe5\x87\x3c\x3e\x37\x14\xe5\x79\xc2\x58\x8a\x4e\x2f\x3b\xf2\x5b\xfc\x26\x29\x3a\x9c\x76\xcf\xe9\x5b\xa9\xa5\x36\xe7\x16\x84\xa2\x68\xb3\xdf\xbf\x90\xaa\x9c\x1a\x1c\xbf\x3a\x8a\x36\x84\x90\xc7\xdd\x73\x6d\xf8\x8d\xa2\xcd\xe9\x74\x5a\x98\x4a\xad\x9c\x01\xeb\x28\x2a\x24\x94\x6f\x33\xbb\x70\x92\xfb\xa3\x8e\x7e\x2d\x2c\x83\x57\x38\x41\x01\xb3\x48\x2e\x60\x94\x50\x35\x45\x9b\x0a\x80\x91\xe7\xa9\xcd\xf6\x65\xc9\xad\xa5\x68\x93\x65\xe5\xeb\x61\x3f\xb5\x31\x50\x35\x37\x14\x6d\xf8\x31\x3f\x1d\x0f\x53\x53\x27\xa1\xe4\x8d\x96\x2c\xd8\x5f\x72\xbf\x66\x76\xa8\xf9\x27\x01\x17\x21\x98\xcc\xaf\xf9\xf6\x59\xc1\xbb\x37\x9d\xfc\x7a\x30\xb5\x5c\xf5\xde\x16\xfe\x66\x36\x6d\x58\x8a\xd3\xaf\xa5\xe9\x2c\x45\xdd\x38\x8a\x4c\x5d\xc0\xd7\xec\x1b\x4a\xff\xbb\xec\xb8\x5d\x01\x5b\x5d\xad\x61\xf7\x09\x6b\x1b\x60\xfa\x42\x51\x86\x32\xb4\xcf\xba\xeb\x12\xf9\x4a\x12\xd4\x00\x13\xbd\xa5\xe8\xd8\x5d\xe3\x46\xa5\x95\xb3\xe2\x3b\xa7\x88\x3c\x0f\x7b\x05\x58\x7e\x6e\x78\x8c\x70\xff\x3a\x6c\xb7\x70\x3d\x5f\x04\x73\x0d\x45\x24\xcf\xb2\x61\xdb\x72\xe7\x84\xaa\x07\xd3\x4b\x1e\x2c\x3f\x9e\x9e\x0a\xcd\x6e\x41\xe3\xfe\x0c\x5c\x41\x2b\xe4\x8d\xa2\x2f\x7f\x74\x5c\xa1\x3f\x41\xd9\x2f\xdf\x90\x05\x65\xb1\xe5\x46\x04\xf6\x02\x2e\x06\xf3\x0e\xe6\xeb\x3d\xb8\x10\xbc\x14\x8a\xe3\x21\x2a\xb2\x0b\xc5\x0f\x2c\x0d\xe8\xbb\x66\x03\xbe\x05\x53\xfb\x46\x08\xf5\xec\x80\xb1\x20\xb8\x58\xdd\x0b\x2f\xde\x84\xc3\xf1\xc0\x56\x6b\xd7\x04\x23\x28\x27\x40\x0a\xb0\x9c\x05\x58\xab\xbf\x63\x6d\xaf\x0b\x5c\x6d\xe0\x66\x4b\x90\xdc\xa3\xf4\x3b\x37\x95\xd4\x17\x7c\xa5\xa8\x11\x8c\x71\xe5\x77\x0b\x28\xdf\x6a\xa3\x7b\xc5\xf0\x4a\x90\x49\x3b\xdb\xc0\x93\xe5\xa5\x13\x5a\x05\xaa\x62\xd0\xb8\xd0\xce\xe9\x96\xa2\x81\xcb\xcd\x38\x2f\x12\xc0\xe9\x8e\xa2\xe7\x54\x03\x26\x6c\x27\xe1\x46\x51\x25\x79\xd8\xf0\x9f\x98\x09\x13\x1d\x53\x4f\x53\xdf\xaa\x91\xe2\x4b\x22\xf1\x98\x05\x36\x3c\x63\x18\xa4\xa8\x3d\x92\x2b\xc7\x4d\x08\x6b\xe7\x1b\x1f\x84\xe2\x26\x1c\xfc\x0b\x87\x04\x5f\x58\x38\xde\xda\xbb\x47\x84\xfe\xee\xad\x13\xd5\x0d\x7b\xbf\x5c\xb9\xa9\xa9\x85\x2b\x5e\x48\x6b\x2c\x20\x82\xde\xe9\x79\x15\xc7\xdc\x2f\xda\x30\x5c\x18\x0e\x6f\x14\x85\x0f\x0c\x52\xc6\xf8\x5b\x83\xff\xda\x1d\xa6\xac\x99\x98\x77\xb6\x3b\x18\xde\x8e\x20\xb2\x02\x21\x23\x20\x8c\x8c\xbb\x8c\xa3\x3c\xf3\x60\x5e\xd5\xdf\x7d\xce\x4c\x54\x38\x16\x34\x8b\x4e\xdf\xb9\xb1\x43\xc9\xd7\xe8\x7f\x28\x94\xd2\xa6\x05\xf9\x89\xe0\xc3\xa4\xdd\x3e\xf4\x10\x49\x41\x4e\x25\x93\xed\xf2\x31\x33\xdb\x17\xab\xc9\x91\x44\xcf\xfa\x69\x1f\x65\x36\x32\x06\xc1\xdf\xcf\x98\xf9\xf1\x04\xb4\xf1\xad\xf3\x11\xda\xdf\x62\xdb\x54\x23\x39\xaf\x91\xe4\xd5\xac\x44\x85\xd4\xe5\x9b\x5d\xed\x9f\x7b\xa5\xbb\x05\xd9\xde\xcd\xcf\x86\xc8\x82\x4e\x7f\x9e\x57\xfe\x7a\x4f\x2c\x24\x6e\x1d\x18\xf7\x61\x4f\x78\x67\x52\xa8\x14\xfb\x2f\x74\xd8\x47\xe7\xdc\x1d\x76\x8b\x69\x91\x8d\x65\x7d\xd4\x64\xda\x9e\xe4\x9a\xed\x4e\x0f\xec\x52\x09\xd6\xe1\xb2\x11\x92\xad\x11\x1d\x75\xed\xa0\x48\x72\x1a\x9a\x39\xcb\xc2\xab\x49\xbc\xc7\x3c\xb9\x12\x3a\xcb\x43\x2a\xe1\xe9\x33\x21\x35\xfb\xff\xa9\xcc\x65\x91\xc7\xd8\x5c\xd4\x5b\x8a\x67\x3c\xb2\xbb\x22\xab\xa5\x60\xf3\x21\x1d\x40\xdb\xd9\xaf\x1f\x69\x78\x70\x34\xa5\xc1\x31\x5a\x09\xb3\x86\x1e\x66\xcc\x7f\x3d\x35\xfe\x78\x1c\x7e\x43\x5f\xaf\xa6\x59\xf4\xce\xa5\xc1\x32\xea\x49\xa8\x70\x77\x86\x42\xce\xc6\x28\xc9\xbb\x2b\x22\xe9\x5d\xe0\xf3\x1b\x2b\xb5\xe3\xc8\xfc\xe4\xa5\x67\xed\x4e\x19\x32\x4d\xaf\x1b\xd1\x53\xfc\xb6\xbd\xdb\xd3\x75\x5c\xf6\xc6\x7a\x9f\x9d\x16\x63\x5f\xc4\x3c\x26\x23\x62\x19\xde\x86\xf0\x67\xc6\x5e\x3d\xfc\xdf\x00\x00\x00\xff\xff\x68\x9c\x03\xbf\x50\x0b\x00\x00")
-func initFormsAdminUserFormYaoBytes() ([]byte, error) {
+func initDataTemplatesDefaultIndexIndexCssBytes() ([]byte, error) {
return bindataRead(
- _initFormsAdminUserFormYao,
- "init/forms/admin/user.form.yao",
+ _initDataTemplatesDefaultIndexIndexCss,
+ "init/data/templates/default/index/index.css",
)
}
-func initFormsAdminUserFormYao() (*asset, error) {
- bytes, err := initFormsAdminUserFormYaoBytes()
+func initDataTemplatesDefaultIndexIndexCss() (*asset, error) {
+ bytes, err := initDataTemplatesDefaultIndexIndexCssBytes()
if err != nil {
return nil, err
}
- info := bindataFileInfo{name: "init/forms/admin/user.form.yao", size: 97, mode: os.FileMode(420), modTime: time.Unix(1730855738, 0)}
+ info := bindataFileInfo{name: "init/data/templates/default/index/index.css", size: 2896, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
-var _initFormsDemoPetFormYao = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x58\x5b\x6f\x13\xc7\x17\x7f\xf7\xa7\x58\x8d\x78\x34\xd6\x3f\xf9\xb7\x2f\x7e\xa3\x54\x94\x4a\xad\x8a\x1a\x0a\x0f\x91\x55\x8d\x77\xc7\xf1\x88\xd9\x9d\x65\x76\x36\xc6\xb2\x56\x4a\x2f\x29\x0a\x79\x80\xaa\x40\x52\x25\xd0\xaa\x6a\xa1\xb4\xa2\x81\x10\xa0\x25\x94\x7c\x19\xd6\x76\xbe\x45\x35\xb3\x17\xef\xec\xcd\x6e\x6c\xf7\x25\xb1\xe7\x9c\x39\x97\xdf\x39\x73\x2e\xee\x55\x34\x0d\x58\xd0\x44\xa0\xae\x01\xff\x8f\x1f\x07\x1b\x8f\x40\x55\x9c\x41\x9d\x63\x6a\x81\xba\x26\x38\x34\x0d\x34\xb1\x65\x88\x6f\x1a\x30\xa9\x81\x88\x60\xb7\x11\x07\x55\x0d\x50\x3b\xe2\xf4\x34\xaf\xa2\x69\x9e\xbc\x4f\x60\x97\xba\x7c\x74\x3f\x90\xe7\x80\xba\xb6\x2c\x0f\xb4\x90\x20\x89\x1c\x73\x22\x2d\x78\x7b\x74\xcf\x7f\xbc\x2d\x2d\x08\x49\x58\x97\xb2\xe5\xff\xd3\x7a\x1b\xe9\x57\x40\xb5\x32\x22\x3b\x6d\xda\xb9\xdc\x46\xd6\x19\x43\x58\xc7\x99\x8b\x14\x2a\xef\x06\x72\x6d\x86\x4d\xc8\xba\x49\xc1\xb1\x83\xcb\xf1\x59\xd2\x26\xc9\x13\x01\xb3\xe4\x36\x4d\xcc\x13\xb7\x03\xab\xbb\xb6\xa4\x9e\xa3\xcc\xac\x39\xb9\x2c\x36\xec\x12\x0a\x25\x70\x5e\x82\xe2\x55\xc7\xeb\x7c\x0f\x4a\x57\x73\x35\x9e\xa5\xa6\x49\xad\x9a\x4e\xa8\x83\x3e\xa6\x06\x24\x93\xea\x8d\x3f\x37\x2a\x29\x4b\xf2\xa2\x31\x3c\xba\xed\xef\xdc\x4f\x82\x66\xe0\x55\x6c\xa0\x8f\xb0\x85\x62\xb4\x4b\x43\x91\x21\x5e\xc2\xa8\x93\xa5\x2a\x41\x86\x8c\xd1\xce\x69\x82\x5a\xfc\xa4\xe1\x2a\xc6\xe5\x3f\x06\xb0\xff\x7c\x73\xb8\x77\xe7\xed\xab\x6f\xfd\xeb\x7f\xf7\xef\x3c\x29\xce\x6b\x42\x5d\x63\xbc\xb7\xd9\x84\x2c\x48\x42\xd5\xfe\x89\xd2\xed\x1c\xa5\x45\x60\x2d\x21\xb6\x8a\x75\x54\x6b\x65\x59\x12\x6a\x34\x60\x22\xde\xa6\x46\x90\xbb\x4c\x18\x01\xd9\x8a\x7c\xf0\x60\x79\xf9\x54\x60\x71\xa3\x01\x1a\xda\xd4\x80\x2e\x71\xd7\xc0\xb4\x10\x4d\x02\xbb\x88\x39\x27\x4d\x9e\xf3\x88\x90\x62\x28\xa4\xe6\x5a\x3b\x8f\xa7\x00\x8b\xcb\x94\x11\x43\x41\xa3\xd7\xc3\x86\xe7\x89\xa3\x5e\x4f\x68\xf5\xbc\xf1\xa0\xc8\xff\x8d\x40\x23\x68\x51\x66\xc6\x95\x55\x3c\x2e\x94\x29\xae\xaa\x7b\x40\xa7\xc4\x35\x53\x0c\x59\x0c\x34\x0d\x74\xb0\xc1\xdb\xa0\xae\x2d\x2c\x56\xd3\xa4\x08\xa0\xfe\xf6\xf3\xc1\xc3\x27\x40\x21\x7b\xd5\xa9\xc5\x0e\x9e\x1e\xfa\xf7\x37\x33\x62\xa7\x96\xeb\xaf\xff\x72\xfc\xfd\x4f\x83\x1b\x2f\xfa\x6b\x5f\xcc\xde\xe8\xf9\x88\xed\x6f\xef\xf9\xb7\x1e\xf8\xbb\xbf\x0e\x5e\x1d\xcd\x5e\xf8\xfe\xe1\xe0\xee\xd6\x9c\x2c\x0f\xd0\xee\x6f\xbd\x38\xde\x3a\x98\xb9\xf0\xe1\x8d\xa7\xc3\x83\xbf\xe6\x90\x22\x72\xee\xf1\x7f\xbe\x3b\x7c\xf8\xe5\xc9\x8c\x5e\x7c\xa7\xd8\xe8\xbd\x07\x83\xc3\x6f\xfa\x37\x6f\x0e\x8f\x4e\xf8\x68\x4a\x84\x0f\x76\xfe\xf4\xd7\x9f\xf9\x3b\x6f\x06\x1b\xd7\x53\xc2\x13\xdf\x1a\x95\xf4\x69\x23\x92\x08\x6c\x46\x6d\x67\xd4\xe6\x42\x9b\x80\x4e\xad\x16\x5e\x09\x6a\x99\xe8\xdd\x67\x2c\xbd\x4d\x59\xd8\xb9\x63\xd0\xe3\xb9\x4a\x94\xde\xa8\x81\x01\x6a\x23\x06\x95\xe9\x51\x72\x22\x07\xf1\xc4\x89\xa8\x5b\x70\x15\x29\x27\x62\xce\x14\x63\x4f\xa0\xa6\x92\x03\x54\x44\x8f\xbb\x72\x68\x76\x3c\x77\xb6\x30\x22\x86\x33\x9a\x3b\xd3\xb5\x32\xac\x5e\x8a\x1d\xe1\x6c\x1b\xa0\x9a\xd0\x85\x0c\xcc\xd3\xf6\x45\x9d\xe0\x43\xcb\x76\xd5\x71\x6f\x04\xa5\xda\x17\x30\x47\xe6\x85\x5c\x92\xa6\x01\xe6\x12\x24\xcb\x72\x4f\x03\x0c\x5d\x75\x31\x43\x46\x8c\x72\xa3\x2c\x5d\x80\x4d\xa0\x8e\xda\x94\x18\x88\xe5\x97\x65\x2f\x13\xf6\xd1\x63\x89\xca\x6d\x2e\x0e\xd2\xc7\x09\x71\x58\x42\x04\xe9\x93\x01\x91\x32\x38\xb4\x20\xe5\x55\xb0\x4d\x64\x3b\x55\xf6\x7d\xc8\x25\xa3\x19\xac\x22\x3a\x4c\x8f\xde\x92\xbe\x0a\x89\x8b\x22\x7a\x8a\xec\xa5\xf9\xcb\xe4\x1b\x74\xa5\x54\xbe\xa0\x4f\x23\x9f\xf2\xb6\x3a\xb2\x64\x55\x84\x2c\x69\x2d\xca\xf7\x46\x0a\xcc\x53\xd4\xaa\xeb\x6d\x68\xad\xa4\x9f\x99\x16\x86\x49\x47\x8e\x80\x1a\x38\x3a\xc3\x36\x77\x6a\x0e\x87\xbc\xf6\x89\x75\x36\xb8\x93\x29\x3b\x57\x5d\x24\x1f\x7b\xcf\x2b\xac\x35\xb9\x49\x17\x5e\x57\x5a\x71\x6e\xe6\x09\xfd\xae\x33\xff\xdc\x53\x2c\x99\x4d\x06\x8a\xd5\x14\x19\xe5\x59\x18\xf2\x4c\x93\x29\xba\xcb\xb0\x55\x9e\x8c\x21\xcb\x94\x5a\xc6\xf9\x22\x39\xca\xb3\x71\xc2\xb4\x28\x4b\x08\x93\x1a\xf3\x28\x45\x27\x8b\x31\xb2\x60\x93\x8c\xc1\x25\xe2\x99\xaa\xda\x60\x67\xbc\xa2\x98\x69\x26\x31\x50\x26\xce\xdc\x48\x50\x8b\x88\xb5\x7f\xc2\x58\x7c\x0a\x0d\x4c\x3f\x60\xd4\xb5\xe7\x18\x0f\xff\xf5\x9a\x7f\x6b\xaf\x14\xa5\x85\xa9\x02\xe1\xaf\x3f\x3b\xde\x7a\x5c\xaa\xe0\x7f\x33\xc2\x3f\x39\x94\xe7\xe2\x1f\xbc\xea\xcf\xe7\x56\x21\x0d\xd4\x82\x2e\xe1\x97\x46\x8e\x4d\x5e\x17\x13\x90\xf5\x77\x7f\x0b\x7c\x11\xfb\x6d\x02\xa5\x1c\xe0\x93\x40\xbf\xdc\xcf\xb9\xb5\x30\xe6\x56\xff\xf6\x1b\xff\xf5\x57\x39\x17\x17\xc1\xbf\x0d\x83\xda\xa2\xc2\xfd\xa5\xa8\x45\x75\xc7\xc1\x3f\x59\x13\x1a\xee\xbd\x3c\x5e\xdb\xe8\x6f\x3e\x52\x94\xa6\x50\x17\xc3\xf7\x45\x2c\xa7\xfd\x5e\x30\xcd\x42\x2e\x7f\xa6\x38\x5f\x37\xcd\xba\xe3\xa8\x9e\x2a\x70\xc5\x59\xf0\x3e\xe4\xe8\x02\xd6\xaf\x20\x06\x4a\x52\x50\x59\x54\x72\x5d\x37\x10\x87\x98\x4c\xec\xbc\x06\x18\xed\x88\x4f\xef\x16\xd8\x75\x11\x5d\xe3\x67\x18\x82\x65\x56\x29\xbb\x59\xae\x55\xd0\xb6\x11\x64\xd0\xd2\xc7\x16\xa7\x99\x16\x9f\xe1\x77\xf7\x06\x87\x47\xc3\x8d\xfd\xb2\xf2\xb0\x30\x4d\xf5\x19\x1c\xfc\x3e\x46\xfc\xe2\x54\xc5\x6d\xf7\x87\xe3\xc3\xaf\xcb\xc4\xff\x7f\xf2\xd2\x96\x1b\xdf\xb3\x62\xde\x69\xd2\x6b\x41\x1f\x28\x7b\x76\xca\x1e\x9b\x1b\x65\x6c\xc2\x15\xa4\xd4\xbd\xd5\xe0\xa7\xe4\x5e\x62\x27\x13\x3c\xa2\x10\xe8\xd4\xb4\x5d\x1e\xe4\x3e\xed\x58\xf2\x67\x39\x65\x8b\x2c\xab\x99\x9f\xd9\x92\x5f\xf1\x28\x21\x30\x8f\x5c\x90\x58\x2d\x4c\x50\x24\x15\x07\xb6\xa5\xe6\x73\x68\xe3\xc0\x85\xc4\x2c\xde\x72\x6a\x4e\xd7\xe1\xc8\xac\x85\xaa\x26\x9e\xaf\xc3\xdf\x47\xf2\xdb\x07\x75\xf8\x2c\x76\xdb\x11\x97\xe5\x9a\x4d\xc4\x40\x9e\x45\x95\xe8\xaf\x57\xf1\x2a\xff\x04\x00\x00\xff\xff\x49\xec\x7e\xf5\x63\x1a\x00\x00")
+var _initDataTemplatesDefaultIndexIndexHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x54\xb1\x8e\xdb\x46\x10\xed\xfd\x15\x03\x22\x40\x6c\x40\xd6\xfa\x6c\xb8\xf0\x81\xa7\x44\x71\xae\x38\x23\xc5\xe1\xec\xc4\x70\x15\x0c\x97\x23\x71\x71\xe4\x0e\xb1\x33\x94\xa2\x1c\x0e\x70\x99\x2e\x40\xe2\x2a\x4d\xe0\x3e\x7f\x90\x32\x7f\xe2\x26\x6d\x3e\x21\x58\x8a\x92\x49\xe9\x64\x9c\x1d\xa4\x5b\xec\x9b\x79\xf3\xde\xec\xec\xa4\x9e\xc5\x06\x57\xeb\xe4\x15\x37\xe0\x89\x72\x50\x06\xf2\x98\x95\x04\xcf\x70\x81\xcf\x5b\x34\x5e\x86\xc6\x83\x16\x4e\x00\xeb\x7a\x9c\x9a\x6d\xe2\x9d\x34\x77\x0b\x70\xf9\x49\x12\x98\x35\x99\xdc\x01\x48\x85\xac\x3a\xf6\xf1\x0c\x90\x16\x47\x60\x4b\x14\x39\x49\xd4\x69\x49\xc9\xe4\x15\x32\x4c\xeb\x1a\x4e\xfd\xdc\x79\x4a\x4d\x71\xd4\x45\xd6\x9b\xc0\x05\x05\x71\xec\x93\xc9\x77\xeb\x03\x5c\x5d\xad\x90\xc7\xdd\xf5\xf5\x75\x6a\xea\xb6\x90\xd9\x56\xba\xa1\xec\xc3\x0d\x9b\x34\x59\x57\x79\x9a\x71\xa3\xa9\x29\x1e\x76\x31\x51\x7a\x17\x94\x95\x6c\x2f\x25\x59\x03\x31\xfd\xd1\xe4\x65\x81\x0a\x4e\x20\xea\xfd\x22\x35\xc5\xa3\x2d\x58\x6f\x4e\xd0\x82\xb1\x2b\x30\x0b\x44\x23\xe0\x9a\xfc\x7d\xe1\x26\x58\x8a\x9d\x2a\x9d\xc5\xa8\x09\xa8\xf5\x0a\x1a\x29\xd7\xfd\x15\xc8\x69\x41\x25\xd7\x14\x04\x94\xb7\x84\x36\x10\x2a\xc1\x92\xb2\x48\x20\x23\xb8\x38\x7d\xfe\x02\xa6\xe7\x67\x32\x82\xac\x11\xe7\x49\xa4\x4f\x2d\x23\x40\x9f\x43\xc5\x81\x46\xb0\x74\x5a\xc0\xf4\x0c\x50\xb6\x7c\xb8\xa9\x53\x91\x57\xa8\x31\xa8\xa7\x30\xde\x38\x31\xf5\x01\x53\x9f\x0b\x78\xac\x08\x2c\x57\x24\x30\x0b\x5c\x81\x16\x04\x4f\x8b\x28\x80\xc0\x16\x18\xd0\x2a\x05\xf8\xfb\xa7\x3f\xe1\xee\xea\xaf\xb7\x7c\x6f\xd4\x46\x58\x0e\x04\x8d\x77\x0a\x3c\xdb\x12\x46\xe0\xd4\xcd\x0b\x85\x17\xc1\xcd\x03\x56\x02\xce\xb7\xb7\x67\x2d\xe5\x7c\x0c\xa7\x68\x8b\x96\xac\x40\x01\x5d\x32\x88\xa2\x92\xbc\x7b\xfd\x66\xe5\x7c\x6b\x71\x85\x7e\x3e\xda\x52\x96\xee\x92\xe0\x41\x0b\x1c\xbd\x7b\xfd\x66\x59\xb0\x10\x38\xaf\x14\x75\xc5\x96\xe7\xc1\x2d\x48\xda\x22\xda\x15\x1d\x81\xac\xaa\x8c\x4b\xf7\xa3\xf3\x73\xf0\xa8\x4d\xc0\xf2\x3d\x23\x2e\xa5\xe5\xb3\xec\x45\xd1\x6b\x74\xe9\xe7\x34\x68\xd6\xe6\xdc\x1b\x9d\xd2\xf9\xde\xe4\xf4\xe7\x78\x56\xd2\x0f\x3d\x20\xce\x68\x8d\x7e\x83\x56\xe1\xfe\xf8\x71\x32\xf9\xe7\xf7\x5f\x7f\x83\xaf\xd9\x36\xf1\x81\xda\x27\x3d\x4e\x4d\x8c\x1b\x24\x22\x14\x81\x66\x27\x49\xa1\x5a\xcb\xb1\x31\x2b\xe4\x38\x1e\x63\xcb\x95\xc9\xd9\x4a\x02\x8a\x61\x4e\x7a\x92\x7c\x9f\x95\xe8\x2f\x07\x65\x01\x0e\xa5\xf5\x4b\x18\xec\x79\x30\xf5\x7f\x30\xf4\xf3\x5b\x78\xc6\xce\xb7\x9f\xe3\x29\x57\x55\x1c\x87\xd5\xc7\xba\xb2\x9b\xc4\x4f\xb0\xb6\xcd\xfd\x7f\xfc\xfd\xf2\x07\x7c\xd5\xb8\x32\x6f\xd7\xd8\xc2\x21\x3c\x2d\x50\x6f\xe3\xaf\x62\xac\xdd\x18\xdd\xbe\x25\xd8\x0d\x39\xa8\x37\x35\xb9\x5b\x74\x0b\x6c\x73\xfc\xf8\x4d\x68\x6d\xdc\x23\xe7\xec\xbc\xca\xed\x36\xa2\xc6\xad\xd5\x53\xa4\x19\xe7\xab\x81\x5b\x0d\xc3\x97\x49\x35\x9f\xbc\xa4\x4c\x9c\x52\x6a\x34\xdf\x07\x07\x17\x3b\xed\x3a\x36\xe6\xea\x0a\x3e\x6b\x42\x39\x2e\x58\x14\xae\xaf\xbb\x26\xed\x03\x83\x4e\xad\xfb\x32\x24\x4f\xcd\x50\xda\x8d\x4a\xa7\x79\xe5\x3c\x9c\xa3\xa7\xf2\x96\x6a\x77\x2e\xe0\x83\xea\x0d\x46\x7e\x53\xf2\xdc\xf9\xf5\x39\xd9\xcb\xdf\x19\x8a\x3d\xfc\xfd\x1c\x1e\xed\x82\xbb\xea\xe0\x40\xaf\xf6\x65\xec\xda\xda\x6d\x66\xf7\x09\x26\x70\x17\xd0\x5a\x6e\xbc\x1e\x43\x4e\x15\x7f\xb9\x9d\x54\x03\x35\x8a\x2c\x39\xe4\x1d\xf2\xf8\xc1\x93\x27\x70\x0f\xf6\x3f\xc4\xa7\x3e\xcd\xf9\x19\x5c\x30\x2b\x7c\x7b\xf1\xcd\xcd\x6f\x73\xc8\x6c\xed\x3e\x5c\x30\x35\x83\x31\x4e\x4d\x6f\xca\x6f\xfa\x5d\xdd\xdd\xbf\x01\x00\x00\xff\xff\x48\xff\x0c\xf8\x39\x09\x00\x00")
-func initFormsDemoPetFormYaoBytes() ([]byte, error) {
+func initDataTemplatesDefaultIndexIndexHtmlBytes() ([]byte, error) {
return bindataRead(
- _initFormsDemoPetFormYao,
- "init/forms/demo/pet.form.yao",
+ _initDataTemplatesDefaultIndexIndexHtml,
+ "init/data/templates/default/index/index.html",
)
}
-func initFormsDemoPetFormYao() (*asset, error) {
- bytes, err := initFormsDemoPetFormYaoBytes()
+func initDataTemplatesDefaultIndexIndexHtml() (*asset, error) {
+ bytes, err := initDataTemplatesDefaultIndexIndexHtmlBytes()
if err != nil {
return nil, err
}
- info := bindataFileInfo{name: "init/forms/demo/pet.form.yao", size: 6755, mode: os.FileMode(420), modTime: time.Unix(1730855738, 0)}
+ info := bindataFileInfo{name: "init/data/templates/default/index/index.html", size: 2361, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _initDataTemplatesDefaultIndexIndexJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xaa\xe6\x52\x50\x50\x52\xa9\x4c\xcc\x57\xb2\x52\x50\x2a\x2d\xc9\xcc\x29\xd6\x4b\x2c\x28\xd0\x0b\xc8\xcc\x4b\x57\xe2\xaa\xe5\x02\x04\x00\x00\xff\xff\x07\x7e\xcb\x56\x1f\x00\x00\x00")
+
+func initDataTemplatesDefaultIndexIndexJsonBytes() ([]byte, error) {
+ return bindataRead(
+ _initDataTemplatesDefaultIndexIndexJson,
+ "init/data/templates/default/index/index.json",
+ )
+}
+
+func initDataTemplatesDefaultIndexIndexJson() (*asset, error) {
+ bytes, err := initDataTemplatesDefaultIndexIndexJsonBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "init/data/templates/default/index/index.json", size: 31, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _initDbReadmeMd = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x52\x56\x08\xc9\x48\x55\x48\x49\x4d\x4b\x2c\xcd\x29\x51\x48\x49\x2c\x49\x4c\x4a\x2c\x4e\x55\xc8\x2c\x56\x08\x0e\xf4\xc9\x2c\x49\xd5\x51\x28\xc9\xc8\x2c\x56\x48\xc9\x2c\x4a\x4d\x2e\xc9\x2f\xaa\x54\x48\xce\xcf\x2b\x49\xcc\xcc\x2b\x56\x28\xc9\x48\x85\xaa\x41\x68\x4b\xcb\xcc\x49\xd5\xe3\x02\x04\x00\x00\xff\xff\xb0\xc0\x5f\x85\x54\x00\x00\x00")
+
+func initDbReadmeMdBytes() ([]byte, error) {
+ return bindataRead(
+ _initDbReadmeMd,
+ "init/db/README.md",
+ )
+}
+
+func initDbReadmeMd() (*asset, error) {
+ bytes, err := initDbReadmeMdBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "init/db/README.md", size: 84, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _initFlowsMenuFlowYao = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x91\xdf\x6b\xdb\x30\x10\xc7\xdf\xfd\x57\x1c\x02\xbd\x64\x49\x04\x0e\x2c\x60\x28\xa5\xa5\x78\xec\xa1\x4f\xdb\xdb\x28\xe6\xaa\x5c\x62\x31\xfd\x30\xd2\xb9\x2c\x2b\xf9\xdf\x87\x65\xcd\x2d\x6d\x5f\x0a\x21\xd6\xdd\x7d\xef\x73\xa7\xaf\x94\x02\xa3\x83\x4f\x95\x52\xb0\x82\x23\x21\xf7\x14\x73\x0a\x7a\xe6\x21\x35\x4a\x95\x64\x96\x6d\x75\x70\x73\xc7\x66\x05\x74\x6a\xe6\x23\x6a\x36\x4f\x86\xcf\x33\xc4\x21\x53\x34\x68\x21\x9d\xdd\x63\xb0\xe9\x05\x14\x3c\xa7\xed\x29\x84\x93\xa5\x0c\xca\xc8\xeb\xe9\x7f\x9b\x88\xaf\xee\x4b\xe3\x97\x1f\xa5\x71\x41\x6d\x56\x90\xa7\x2d\xf1\x11\x9f\x42\x34\x4c\x6f\x26\x66\xe0\xe7\xe7\x7d\xcf\x6d\x00\xab\x4d\x18\xd9\x1a\x4f\xb0\xda\x1c\x8d\xb5\x74\xc8\x53\x07\x8a\x29\xf8\x6e\x30\xbe\xd3\x26\x6a\x4b\x8b\x2c\x11\xb3\xf1\xa7\x54\xd4\x95\x52\xd5\x73\x05\x20\x3c\x3a\x12\x0d\x88\x7b\xf2\xa3\x58\xe7\x4c\x38\x50\x12\x0d\xfc\x7a\xc8\x61\x18\x79\x18\x59\x34\x30\xc9\x01\x84\x61\x72\xb9\x9c\x43\x28\xe9\x5c\xfa\xcf\xfa\x46\x9e\x22\x72\x88\x19\x58\x8a\x03\x72\x3f\x15\x95\x39\x46\x74\x74\x9d\xa2\xbe\xca\xd7\x97\xbb\x1b\x59\xb7\xb2\x6e\x5d\xc0\xc1\x6c\xd1\xc8\xba\x9d\x35\xb2\x6e\xcf\x18\x70\x18\xe4\xae\xed\x3a\x1b\x34\x5a\x92\xbb\x3b\xb9\xbf\x95\xfb\xdb\x25\xb1\xbf\x9b\x7e\xf5\xd7\xae\xe3\x9e\xdc\x6b\xc1\x1c\xe7\xfa\xeb\x4d\x26\x57\xa7\x4d\x96\x27\x72\x18\x7f\x77\xba\x47\xee\x46\x1f\x09\x0f\xa2\x68\x2f\xf9\xfb\x30\xb7\x8a\xe2\xe0\xc7\x57\x2f\xcc\xe7\x17\x13\x16\xfa\xbb\x37\x11\x6b\x10\xc9\xfc\x9d\x54\x75\x0d\x97\xf5\x7b\x03\x6f\xb4\x0e\xa3\xe7\xf4\xa1\x7f\x7f\xd4\x4f\x7c\xb4\xa4\x70\x16\xbd\x59\xb6\x9a\x4e\x97\xea\x5f\x00\x00\x00\xff\xff\x95\x6a\x62\x06\x2d\x03\x00\x00")
+
+func initFlowsMenuFlowYaoBytes() ([]byte, error) {
+ return bindataRead(
+ _initFlowsMenuFlowYao,
+ "init/flows/menu.flow.yao",
+ )
+}
+
+func initFlowsMenuFlowYao() (*asset, error) {
+ bytes, err := initFlowsMenuFlowYaoBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "init/flows/menu.flow.yao", size: 813, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _initFormsAccountFormYao = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x93\x4d\x6b\xe3\x30\x10\x86\xef\xfe\x15\xc3\x9c\x43\x60\x97\x3d\x2c\xbe\x85\xd2\xde\x1a\x0a\xe9\xad\x94\xa0\xc8\x63\x2a\xd0\x87\x91\xc6\x35\xa1\xe4\xbf\x17\xf9\x4b\x4e\xeb\xa4\x0e\x3d\x25\xd2\x3c\xef\xbc\x33\xa3\xf1\x47\x06\x80\x56\x18\xc2\x1c\x70\x53\x18\x65\x55\x60\x2f\xd8\x79\x5c\xc5\x90\x90\xac\x9c\xc5\x1c\x22\x08\x80\x07\x65\x8b\x78\x02\x64\x71\xd0\xad\x4a\x48\xe9\x6a\xcb\x08\xa7\x55\xc7\x88\x92\xc9\xe7\x65\x47\x62\x90\x5e\x55\x1c\xd6\x3d\xb6\xde\xc4\xe8\x43\x0c\xf6\x78\x10\xef\xd4\xa5\xac\xbc\x93\x14\xc2\x9c\x6a\x17\x21\x38\x65\xd0\xb9\xa0\x16\x47\x57\x73\xaa\xab\x74\xde\x8c\xa7\x98\x94\xda\xc2\x63\xae\x97\xfe\x0e\xc6\x68\x4b\x48\xa7\x6b\xf3\x05\x68\xa1\x34\x8f\xe7\x63\x45\xb8\x02\x6c\x54\xc1\x6f\x98\xc3\xbf\xa1\xc5\x19\x76\x1b\x7f\x27\xec\xff\x2b\xec\x8e\x05\xd7\x61\x4a\xff\xf9\x7b\x05\xbf\x37\x42\xe9\xc5\xf4\xa3\x3b\x28\x4d\x8b\xf1\x27\x11\x42\xe3\x7c\xb1\x5c\xa0\x85\x24\x43\x96\x17\x2b\xb6\xd4\xc0\xcd\x36\x77\xce\x96\xca\x9b\x8b\xc2\x89\xee\x75\xfc\x3f\xdc\x76\x37\x69\x5b\x4a\x45\xba\x08\x97\xb7\x25\xf5\x94\x4f\x96\x64\x58\x76\xdc\x57\xa9\xe7\x14\xa5\x42\x71\xff\x29\xc4\x3d\x39\x1b\xcd\x58\xc9\xd8\x60\x1a\xf4\xac\x45\x35\xb6\x79\xd5\x60\xa0\x66\xf2\x9f\x4d\x79\xd6\xc3\x52\xb3\xff\xbd\xcf\xb7\x87\xf9\xd1\x6b\x2f\x3b\xc9\xcd\x9e\xe9\x15\xb3\x53\xf6\x19\x00\x00\xff\xff\xb2\xdc\x0b\x21\xaa\x04\x00\x00")
+
+func initFormsAccountFormYaoBytes() ([]byte, error) {
+ return bindataRead(
+ _initFormsAccountFormYao,
+ "init/forms/account.form.yao",
+ )
+}
+
+func initFormsAccountFormYao() (*asset, error) {
+ bytes, err := initFormsAccountFormYaoBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "init/forms/account.form.yao", size: 1194, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
@@ -495,7 +1092,7 @@ func initIconsAppIcns() (*asset, error) {
return nil, err
}
- info := bindataFileInfo{name: "init/icons/app.icns", size: 67465, mode: os.FileMode(420), modTime: time.Unix(1730855738, 0)}
+ info := bindataFileInfo{name: "init/icons/app.icns", size: 67465, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
@@ -515,7 +1112,7 @@ func initIconsAppIco() (*asset, error) {
return nil, err
}
- info := bindataFileInfo{name: "init/icons/app.ico", size: 54993, mode: os.FileMode(420), modTime: time.Unix(1730855738, 0)}
+ info := bindataFileInfo{name: "init/icons/app.ico", size: 54993, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
@@ -535,52 +1132,12 @@ func initIconsAppPng() (*asset, error) {
return nil, err
}
- info := bindataFileInfo{name: "init/icons/app.png", size: 34558, mode: os.FileMode(420), modTime: time.Unix(1730855738, 0)}
+ info := bindataFileInfo{name: "init/icons/app.png", size: 34558, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
-var _initLangsZhCnGlobalYml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe2\x72\x49\xcd\xcd\xb7\x52\x78\xb6\x67\xca\xf3\x25\xbb\xc0\x1c\x05\xc7\x82\x82\x9c\xcc\xe4\xc4\x92\xcc\xfc\x3c\x2b\x85\xe7\x4b\x76\x3d\xd9\xd7\xfd\x74\xd7\x94\xe7\x53\x56\x70\x39\xe6\xe5\x97\x64\xa4\x16\x29\x54\x26\xe6\x2b\x24\x22\xab\x7a\xda\xdf\xf1\x64\x47\xc3\x93\x1d\xab\x14\x22\x1d\xfd\x15\x20\xaa\x01\x01\x00\x00\xff\xff\x33\x85\x58\x87\x5a\x00\x00\x00")
-
-func initLangsZhCnGlobalYmlBytes() ([]byte, error) {
- return bindataRead(
- _initLangsZhCnGlobalYml,
- "init/langs/zh-cn/global.yml",
- )
-}
-
-func initLangsZhCnGlobalYml() (*asset, error) {
- bytes, err := initLangsZhCnGlobalYmlBytes()
- if err != nil {
- return nil, err
- }
-
- info := bindataFileInfo{name: "init/langs/zh-cn/global.yml", size: 90, mode: os.FileMode(420), modTime: time.Unix(1730855738, 0)}
- a := &asset{bytes: bytes, info: info}
- return a, nil
-}
-
-var _initLangsZhHkGlobalYml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe2\x72\x49\xcd\xcd\xb7\x52\x78\xb6\x67\xca\xf3\x25\xbb\xc0\x1c\x05\xc7\x82\x82\x9c\xcc\xe4\xc4\x92\xcc\xfc\x3c\x2b\x85\xe7\x4b\x76\x3d\xd9\xd7\xfd\xac\xbd\xf3\xf9\x94\x15\x5c\x8e\x79\xf9\x25\x19\xa9\x45\x0a\x95\x89\xf9\x0a\x89\xc8\xaa\x9e\xf6\x77\x3c\xd9\xd1\xf0\xb4\xa1\x3b\xd2\xd1\x1f\xa2\x16\x10\x00\x00\xff\xff\xbe\x23\xc9\x88\x58\x00\x00\x00")
-
-func initLangsZhHkGlobalYmlBytes() ([]byte, error) {
- return bindataRead(
- _initLangsZhHkGlobalYml,
- "init/langs/zh-hk/global.yml",
- )
-}
-
-func initLangsZhHkGlobalYml() (*asset, error) {
- bytes, err := initLangsZhHkGlobalYmlBytes()
- if err != nil {
- return nil, err
- }
-
- info := bindataFileInfo{name: "init/langs/zh-hk/global.yml", size: 88, mode: os.FileMode(420), modTime: time.Unix(1730855738, 0)}
- a := &asset{bytes: bytes, info: info}
- return a, nil
-}
-
-var _initLoginsAdminLoginYao = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\x8f\xc1\x6a\xc3\x30\x10\x44\xef\xfe\x8a\x45\xe7\xc6\xba\x0b\x4a\x09\xa4\xb7\xf6\x5c\x42\xe9\x61\x62\xab\xb6\x88\xb5\x2b\x24\x05\x2a\x4a\xfe\xbd\xac\x0a\xce\x79\xde\x3c\x66\x7e\x07\x22\xc3\x88\xde\x38\x32\xce\x1d\xe7\x18\x98\xde\x64\x09\x6c\x9e\x34\xc2\x54\x83\xb0\x71\xa4\x20\x91\x49\x59\x26\x5f\x8a\xd2\x0d\x32\x6e\x4a\x8e\xbd\xd5\x79\x6d\xe4\x45\xe3\x4f\xe3\x12\xda\x26\x98\xcd\xd7\x40\x74\xef\xb6\x0d\x4d\x6e\xf5\x61\xf3\x5c\x73\x53\x97\xfd\xb1\x27\x94\xf5\x22\xc8\xb3\xbd\x82\x2f\xd8\x7d\x65\x93\x05\xfc\x3f\xef\x1d\x57\x4f\x67\xb9\x65\x3a\x65\x8f\x48\x1f\xa1\xae\x74\x86\xd0\x31\x25\x7a\xe5\x25\xb0\xdf\x6b\xa1\xf6\x4f\x6b\xad\xa9\x38\x6b\x1b\x04\x29\x95\x71\x92\xf8\xf2\x9d\x25\x3e\x07\x2e\x15\x3c\xf9\x03\x74\xfd\xa1\x3f\x31\xba\x74\xb8\x0f\x7f\x01\x00\x00\xff\xff\xf6\x17\x8e\x73\x16\x01\x00\x00")
+var _initLoginsAdminLoginYao = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\x8f\x41\x6b\xc3\x30\x0c\x85\xef\xf9\x15\x42\xe0\x5b\x97\x40\x02\x0b\x04\x4a\x69\x29\x3e\xed\x1f\x8c\x11\x84\xeb\xb6\x06\xdb\x32\xb6\x77\x30\x25\xff\x7d\xd8\x61\x63\xa0\x8b\xf4\x3e\xbd\xc7\x7b\x75\x00\xe8\xc9\x69\x5c\x00\xcf\x37\x67\x3c\x7c\xf0\xc3\x78\x3c\x54\x81\x54\x36\xec\x71\x81\x17\x60\x88\xac\x74\x4a\x95\x2b\xc4\xbd\xad\x54\xdf\x3e\xf0\x00\x48\xf1\x51\xa5\x4f\x5c\x02\x15\xcb\x74\xc3\x2f\xd8\x9a\x87\xa5\xc2\xdf\xb9\x7a\x74\x00\x00\xa8\x7d\x8e\xa5\xba\x0c\xe6\x1e\xc9\xe9\x53\x8a\xea\xf8\xcc\x39\x24\x31\x9d\xc5\x28\xc5\x28\x1d\x53\x30\x3d\x19\x31\xca\x9d\x11\xa3\x2c\xc4\x14\x82\x98\xe4\xba\x5a\x56\x64\xb5\x98\xae\x62\xbe\x88\xf9\xf2\x77\x98\xaf\x75\xc6\xf7\x75\xcd\x4f\xed\xfe\x03\xfb\xde\xf4\x56\x0c\x00\x93\xc9\xad\x73\x4b\x5e\x86\xe1\x37\xf3\x74\x8f\xec\x8e\xc6\xa7\x4c\x5e\xe9\xb7\x3d\x16\x3b\x80\xad\xdb\xba\x9f\x00\x00\x00\xff\xff\x25\xf2\x45\xd5\x2e\x01\x00\x00")
func initLoginsAdminLoginYaoBytes() ([]byte, error) {
return bindataRead(
@@ -595,32 +1152,32 @@ func initLoginsAdminLoginYao() (*asset, error) {
return nil, err
}
- info := bindataFileInfo{name: "init/logins/admin.login.yao", size: 278, mode: os.FileMode(420), modTime: time.Unix(1730855738, 0)}
+ info := bindataFileInfo{name: "init/logins/admin.login.yao", size: 302, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
-var _initLoginsUserLoginYao = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\x8f\x41\x4b\x04\x31\x0c\x46\xef\xf3\x2b\x42\xcf\xee\xf4\x5e\x10\x11\xf4\xa6\x37\x45\x16\xf1\x10\xbb\x71\xb6\xd8\x36\x21\xc9\x82\x83\xec\x7f\x97\x8e\xe8\x9e\xf3\xbd\x47\xde\xf7\x04\x10\x3a\x36\x0a\x09\x42\x4a\xcf\x46\x0a\x0f\xbc\x94\x1e\xae\xc6\x05\xb3\x17\xee\x21\xc1\xd8\x01\x04\x51\xce\x64\x36\xc6\x96\xb5\x88\xdb\x7c\x32\xd2\xf9\x82\x0c\x48\x97\xb1\x78\x0d\x49\x70\xad\x8c\x87\xf0\x36\x01\x9c\x37\x61\xc5\x95\x4f\x7e\x11\x52\x77\x5d\x87\x2e\x7e\xc5\x27\x7c\xaf\x14\x0f\xd4\x78\x16\xf2\x3f\x9b\x55\x5e\xb0\xff\xbe\xf7\x88\x9f\x04\x7b\x3e\x29\xdc\x29\x61\x83\x97\xe2\x47\xd8\x23\xc3\xad\x08\xdc\xf7\xa5\x74\xfa\xc7\x8a\x6f\x4d\x47\x77\xb1\x14\xe3\x8a\x8c\x22\x36\x67\x6e\xf1\xe6\x43\xb9\x5d\x97\x6e\x8e\x3d\xd3\x6e\x14\xec\xea\x56\x30\xfe\x9c\xce\xd3\x4f\x00\x00\x00\xff\xff\xbb\x4a\x73\xb7\x16\x01\x00\x00")
+var _initLogsReadmeMd = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x52\x56\x08\xc9\x48\x55\x48\x49\x4d\x4b\x2c\xcd\x29\x51\xc8\xc9\x4f\x57\x48\xc9\x2c\x4a\x4d\x2e\xc9\x2f\xaa\xe4\x02\x04\x00\x00\xff\xff\xfc\x1d\x0e\x14\x1c\x00\x00\x00")
-func initLoginsUserLoginYaoBytes() ([]byte, error) {
+func initLogsReadmeMdBytes() ([]byte, error) {
return bindataRead(
- _initLoginsUserLoginYao,
- "init/logins/user.login.yao",
+ _initLogsReadmeMd,
+ "init/logs/README.md",
)
}
-func initLoginsUserLoginYao() (*asset, error) {
- bytes, err := initLoginsUserLoginYaoBytes()
+func initLogsReadmeMd() (*asset, error) {
+ bytes, err := initLogsReadmeMdBytes()
if err != nil {
return nil, err
}
- info := bindataFileInfo{name: "init/logins/user.login.yao", size: 278, mode: os.FileMode(420), modTime: time.Unix(1730855738, 0)}
+ info := bindataFileInfo{name: "init/logs/README.md", size: 28, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
-var _initModelsAdminUserModYao = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x59\x5b\x73\xd3\x46\x14\x7e\xcf\xaf\xd8\x51\x99\x4e\x29\x4e\x63\x3b\x97\x06\x3f\x91\x29\x7d\xa0\xd7\x14\xda\xc2\x40\x42\x66\x63\x6d\x8c\x8a\x2e\x46\x5a\x43\x40\xf5\x4c\x52\x4a\x08\x25\x9e\x04\x70\x26\x64\xea\x32\x30\x53\x2e\x2d\x10\x27\x2d\x83\x3d\x06\x0f\x3f\xa6\x5a\x49\x79\xea\x5f\xe8\x48\x2b\xc9\xb2\x25\xdf\x12\x77\xa6\x0d\x79\x49\xe4\xb3\xda\x73\xbe\xfd\xce\xb7\x47\x2b\x1d\xb5\x0f\x00\x46\x84\x02\x62\x12\x80\x31\x36\x1e\x18\x2b\x0b\xe4\xd6\x5d\x26\x62\x99\x31\x9c\xe6\x2d\xbb\x5a\xbb\x03\xb2\x02\x27\x4e\x65\x14\x24\x33\x11\xc0\x24\x25\x41\x40\x22\xb6\x06\xf0\x39\x04\xec\x41\x4e\xc1\x32\x94\x64\x40\x27\x83\xac\xed\x29\x29\xf1\x19\x41\x54\x98\x04\x38\xd3\x07\x00\xb0\x3c\xf2\x70\x1a\xf1\xd6\xcc\x63\x47\x2d\x57\x6e\x00\x8e\xb5\x7e\xe1\xcb\x69\xe4\x8c\x51\x0f\x00\xa8\xf6\x5f\xe0\x9b\x68\x6c\xbd\x22\xf7\x6e\x32\x11\x77\xc0\x75\x61\x4f\xf6\xac\xae\x2b\x24\x66\x84\x9a\x55\x4a\x63\x4e\x12\x2d\x3c\x74\x49\x56\x50\x05\xc3\x99\x19\xeb\xc2\x5d\x9e\x2c\x4d\x4b\x98\x99\xf4\x26\xf9\x96\x6b\xbe\x78\x44\x96\x4b\x14\x01\x5d\x37\xf0\xc8\x8b\x00\xdb\x13\x20\xb7\xee\x92\xd2\xc3\x08\xb0\xdc\x01\x23\xff\x44\x5f\x2c\x45\x80\xed\x13\xe8\x85\x0a\x59\x7f\xa2\x55\x2a\x35\x44\x2c\x9a\x81\x19\xde\x76\x4e\xe3\xbb\x03\x9c\xc8\xa2\x59\x26\x01\xb0\x9c\x41\x9e\xf1\x22\xe4\x39\x16\x5a\x6b\xa8\x91\xea\x67\xc9\xbe\x49\x40\xf8\x9c\xc4\xba\x94\x48\x33\x9e\x4f\x7b\x14\xca\x29\x7b\x2e\xa3\x60\x99\x13\x53\xb5\x75\x3a\x73\x15\x05\xa6\x6c\xe6\x54\x95\x13\xd3\x19\x9c\xcd\xd2\xe5\x6e\xe7\xd7\xcd\x62\x31\x02\x54\xd5\xce\x44\x36\x4b\x2a\x79\xb3\xf8\x50\x2b\x57\xc8\xf3\x35\xe3\xd9\x23\xad\xfc\x07\xe3\x79\xca\x46\xda\x41\xab\xcb\x4b\x3d\xb0\x8e\x33\xd3\x14\xb1\x56\xce\x91\xc2\x13\x73\xa3\x4c\x96\x8b\xe6\xd2\x55\xf2\xf3\x8b\x30\xdc\x34\x81\x03\x76\x94\x01\x2b\xc4\x00\xf5\x5f\x5b\x85\x73\x35\xd9\xe7\x5b\x53\x50\x90\xdb\x3f\x6c\x18\x1b\x5b\x41\x41\x22\x01\x72\x7c\x50\x91\x0e\xef\x9e\x9d\x47\x62\x0a\x9f\x63\x12\x60\x38\x1a\x26\xb9\x46\xef\xa1\xba\x10\x33\x3c\xef\xec\xda\xbd\xaa\x97\x3a\x32\xeb\x90\x75\xa4\x07\xfd\x6e\x91\x32\x49\x0a\x9b\xe4\x97\xb9\xae\x93\xac\xdf\xb8\x69\xed\xde\xe5\x52\x30\xcf\x82\x34\xcd\xf1\x21\xa5\xa7\xcb\x44\x87\x44\xe8\x2a\xd7\x49\xf9\x72\xda\x76\x34\xf6\xf1\x09\x66\xa7\x0a\x68\x58\x4b\x97\x3c\xeb\xf7\x5f\x93\xd7\xcb\x34\xf3\x5d\x33\x6c\xac\xbf\x22\xd5\x55\x52\x5c\x30\xee\xcf\x07\x49\x4e\x43\x45\xb9\x24\xc9\x6c\x17\x34\xc7\x87\x47\xc2\x78\x0e\x8f\xe3\xb1\x37\x3e\x76\xe2\xc4\xc9\x2f\x8f\x1f\x7d\xeb\x77\x9c\xc0\x89\x9f\x51\x2a\x43\xd1\x8d\xb4\x80\x55\x17\xdf\xc8\x6f\x8d\xf4\xc7\x46\xb5\x6a\xee\xef\xd7\x4b\xe4\xd7\xc7\x64\x73\x99\x2c\xac\x93\xe7\x6b\x7a\x31\xf7\xd7\xdc\xbc\xbe\xba\x49\x9e\xaf\x91\xdb\x4b\xc6\x33\xeb\xd9\xaa\xdf\xfb\x51\x5f\x5c\xe9\x0a\x27\x9c\x6d\x85\x33\x36\xfa\x5f\x01\x9a\x86\x18\x23\x59\x6c\x92\xec\x33\xd1\xfe\xc3\x93\x87\x5a\x25\xbb\x0e\xac\x79\xfd\x4f\xb2\x79\x8b\x2c\x5d\x23\x2b\x4f\xb5\xf2\x9c\x56\xfe\x9d\xe2\xeb\x21\xa0\xb1\xfe\xd3\xbb\x02\x64\x51\xe8\xf2\xd7\x43\x58\xb0\xff\xca\xee\x60\xf9\xd2\xda\x43\x58\x47\xde\x39\xf0\xee\xfb\x13\x13\x87\x76\x85\x8d\x4a\xab\xfb\x87\xd3\x9d\x9c\x56\x2d\xb4\x2b\x9d\x71\xb1\x07\xd5\x33\x3c\xd4\x7e\xf5\x6c\x84\xb6\x5f\x3d\xf7\xab\xe7\x7e\xf5\xfc\x5f\x54\x4f\xf2\xf8\x0e\x59\xc9\x05\xeb\xa6\xfd\xbf\xf3\x82\x39\x1a\x7a\xaa\x6f\x74\xbe\x5f\x0e\xc3\xd0\xc5\xdb\x27\x9d\xa6\x7b\xbb\x30\x67\x3e\x9a\x8f\x5b\x42\xec\x6e\xb7\xb6\xa9\x73\x43\xd1\xf6\x08\xb4\x72\xce\xbc\x5a\x35\x5f\x5e\x33\xdf\x5c\x8f\x47\x03\x10\x3a\x13\x9b\x59\x79\xaa\xbd\xaa\x9a\xc5\x79\xb2\x5c\x0a\x7d\x5a\x73\x6c\x12\xf6\xe2\x35\xa7\x69\xa0\xf0\xf7\xc4\x66\x12\xdc\xe3\x9f\xa1\x5a\x97\xa5\xb3\xef\x4d\x4c\xb0\x6a\x6c\x34\x7b\xf0\x7b\x7a\x35\x94\x3d\x75\xf0\x40\x07\x15\x6a\x57\x2f\xc2\x63\xe3\xc7\xc0\xa7\xe8\x72\x50\x1a\xe7\xfd\xc6\x9d\xea\x22\xe8\xbd\x49\xe6\x33\x22\x77\x21\xf3\xaf\x96\x24\x4e\xc4\x28\x85\xe4\x1e\xe4\xbe\xd7\x4f\xef\xb3\xf6\x79\x42\x8d\x45\xb3\x2d\xb2\xdd\x88\xc3\xc8\x6f\xc5\xa2\x5a\x35\x47\xc1\x04\x4e\x38\x9d\x27\x9f\x14\x17\xb6\x6f\x3f\x0c\xe6\x5f\x41\x49\x19\xe1\x1d\x4a\xa0\xbb\xcf\x46\x0d\x82\x69\x44\xf4\x76\x57\x05\x4b\x1c\x63\xfd\xa7\x61\xff\x15\xfb\xd8\x32\xa9\x0e\xc6\x5b\xe9\x24\x28\x93\xc1\xf8\x4e\x8f\xc9\x9d\x89\x48\xbf\xf1\x1b\xd9\x5a\xd5\xde\x3c\xd0\xe7\x8b\x21\xdf\xa5\x67\xb1\x0c\x83\x2a\xfa\x4e\x91\xc4\x50\x01\x34\xf1\x56\xaf\xa7\xd6\x80\x8c\x9f\x5e\xea\x73\xf3\xa1\xde\x69\x87\x84\xde\x00\x90\x68\xb9\x64\x81\x5e\xb8\xa1\xaf\x2e\x46\x00\xcb\x29\x8e\x61\xed\xbe\xbe\xba\x18\xb2\x25\x30\xc4\x19\xa5\x5d\xdb\xc7\xd7\x64\x71\x22\x84\xb6\x84\xbc\x31\xc0\xb8\x81\x7d\x6d\xa0\x3d\xae\xf9\x16\x0d\x99\x96\xbc\x34\x45\xd9\x61\x13\xc6\x71\x3e\xe0\x79\x6e\x26\xf6\x3e\x00\xec\xa0\x8c\x8c\x78\x8f\x71\x95\x36\x1a\x2f\x42\x3e\x83\x7c\x7d\xc6\x46\x99\xd4\x77\x38\xeb\x94\xe2\x74\x9b\x5c\x33\xed\x33\x24\x00\x33\xcb\x41\x31\x75\x84\xbb\x70\x1e\x7e\x90\x94\x7c\x5a\x72\xbe\x90\x27\x80\xb5\x01\x3c\xab\xf7\x79\xda\x2a\x98\xb1\xf8\xe0\xd0\xf0\x48\xfa\x50\x6d\x92\xf5\xe4\x4e\x00\x66\x74\x30\x3a\x74\x38\x3e\x1c\xfb\x70\xa4\x36\xe4\x14\xf5\x04\x60\x4e\x7d\xfe\x35\xfb\xc5\xf1\x6f\xb9\xd4\x74\xea\x1b\x6e\x6c\x9c\xe5\x3e\xf9\x68\x06\x9e\x4c\x9d\x4c\x5e\x89\x8f\xc3\xaf\x4e\x5d\xf2\xcd\xa1\xaa\x0f\x93\x33\xdd\xdc\x76\xf3\x56\xb1\xe5\xca\x18\xf9\x12\xe3\x70\x59\xe3\xd0\x16\x73\x18\x63\xfe\x9d\x49\x65\x46\xbb\x26\xf9\xa2\x56\x9e\x0b\x6f\xba\x4e\xd9\x9c\x4d\x39\xe7\x05\xdf\x1e\xf7\x9a\xbf\x4e\x6f\xd6\x65\x77\x32\x90\x04\x67\x6e\x68\x11\x09\x20\xf2\x1a\x25\x2d\x41\xd1\x3c\x75\x84\xca\x49\x69\x1b\x58\x1e\x77\x5e\xc5\x50\x01\x83\x39\x01\x29\x18\x0a\x69\xc5\xad\x0c\x80\x51\xa4\x19\x3c\xc5\x22\x1e\x61\xe4\x5a\x41\xb6\x2f\xdb\xf7\x4f\x00\x00\x00\xff\xff\xc9\xc5\xc5\x56\x74\x1f\x00\x00")
+var _initModelsAdminUserModYao = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x58\xdb\x6e\x1b\x37\x10\x7d\xd7\x57\x0c\xb6\x41\x1f\x5a\xb9\x96\x95\xc4\x70\xf5\x54\x01\x71\x01\xa3\x69\x6b\x54\x09\x0a\x34\x50\x0d\x6a\x39\x92\xd8\xf2\xb2\xe1\xa5\xb6\xbb\xd0\xbf\x17\xe4\x5e\xb4\x37\x49\x2b\xc7\x05\x1a\xd7\x2f\xc1\x6a\xc8\x39\x3c\x33\x73\x86\x8c\x27\x1d\x00\x44\x92\x08\x8c\x26\x10\x4d\xa9\x60\xf2\xbd\x41\x1d\x0d\xbd\xd9\x92\x05\xf7\xf6\x74\xbb\x83\xf8\x1d\x37\x2e\x6c\x81\x28\x56\x42\xa0\xb4\x7e\xe1\xdd\x1a\x21\x2c\x32\x63\x35\xb1\x4a\x43\xe6\x0d\x9b\x00\x15\x2b\xee\x84\x34\xd1\x04\x3e\x0c\x00\xc0\x43\x72\xb2\x40\xee\x5d\xaf\xde\x78\xac\xe2\x04\x46\xfd\x2f\x7b\x9f\x60\xbe\x96\x21\x00\xa4\xe1\x5f\xa8\x38\xbe\xf3\x9b\x86\x85\xb9\x00\xb0\x35\x6b\x01\x84\xd2\x89\xad\x55\x25\x96\x29\xe9\xd9\x64\x11\xf9\x23\x8d\x25\xcb\xa5\xff\x28\xa2\xd3\x6a\xa1\x6c\x34\x2f\x9d\x2a\xd1\x4e\xe3\x58\x39\x69\x3d\x01\x33\xc9\xe2\x1e\x42\x00\x18\x82\x77\x1f\x42\xe6\x5c\xfa\x52\x5c\x12\xc7\x83\xaf\x2b\xf2\x1b\x16\x98\xa4\x78\x17\x4d\xc0\x6a\x87\xa5\xf1\x2f\xc2\x19\x25\x9e\xe2\x36\x63\xd5\x14\x84\x4d\x02\xed\x5a\xd1\x22\x62\xb5\x2c\x31\xc3\x2a\xd1\xab\xe0\x1b\x19\xab\x99\x5c\x6d\xc3\xc8\x7d\x8d\x21\xab\x90\x98\x34\x65\x32\x71\x76\xb3\xb9\xd4\x5a\xe9\x21\xa4\x69\xc8\xef\x66\x03\x66\xad\x1c\xa7\xb0\x40\x98\x65\x18\x25\xc2\x66\x78\x88\x52\x2d\xdd\x75\x42\xbd\x13\xbe\x93\x29\x30\x03\x52\x59\xb8\x65\x76\xcd\x24\x58\x2f\x3d\xce\xd5\x2d\x52\xd0\x44\xae\xb0\x3b\x88\x70\xee\x69\x38\xf4\xd4\x9f\x78\x9a\x1d\xb7\x0d\x2a\xff\x9a\x0f\x2a\x21\xb6\x45\x77\x29\x08\xe3\x6d\xd5\x61\xdd\x5c\xc8\x2e\xcf\x7e\x69\xe7\x28\x57\x76\x1d\x4d\xe0\xf5\xa8\x4b\x57\x0d\xf0\x4e\x71\x48\xc7\x79\xde\x98\x4f\x4d\x34\xb5\xe8\x6b\x8c\xfa\x8b\x82\x48\x08\x59\x04\x42\xa9\x46\x63\x8e\x2e\xf0\x8f\x6a\xc1\x78\xc7\xbd\x22\x1a\xf6\x07\x96\xb8\x09\x7f\x54\x8d\x63\x7d\x9f\x64\x17\xd0\xe5\x2c\x7a\x68\xe5\x1b\x81\x1c\x9b\xe7\xef\x95\x16\xc4\x02\xfa\xca\x1f\x9d\xdc\xb7\x6a\xc5\x24\x5c\x13\x63\x6e\x95\xa6\xed\x24\x27\xad\x95\x83\x69\x1e\xbf\x3e\xef\xca\xf3\xae\x93\xca\x14\x5e\x4f\x67\xb3\x5f\x7f\xfe\xe5\xcd\xff\xb6\xdd\x04\x93\x6f\xb3\x24\x76\xb2\x3a\xdf\x43\xa7\x7d\x7c\xac\x44\xa2\x0c\x52\x50\x4b\x38\x3f\x39\xbb\x80\x78\x4d\x34\x89\x2d\x6a\x33\x04\x26\x63\xee\x28\x93\x2b\x70\x49\x82\x3a\x26\x06\x81\x48\x0a\xfe\xce\xce\x7e\x71\xb4\xd9\x56\xe9\xc4\x22\x7c\xf8\x75\x73\x2f\x16\x8a\x9b\x6f\x8e\x8a\x8a\xdc\xed\x8b\xea\xec\xe2\xf3\x0c\x2b\x21\x1e\x49\xee\x10\xd0\x87\xd1\xc9\xb7\xf3\xaf\xf7\x09\xa8\x11\x5a\xac\xa4\x25\x4c\x02\xb1\xc0\x91\x18\x0b\x4a\x62\x4e\xf2\xe8\x9e\x1e\x4b\xda\xa3\xa3\xc7\xf2\x11\x9a\xba\xfb\xa8\xe7\x96\x7e\x6e\xe9\xcf\x30\xac\xff\x70\x4b\xff\xe4\x9b\xb7\xd5\xca\xb2\x66\x3d\xd8\xc3\x17\x9d\xff\xff\xa9\x43\x3f\xf7\x67\x95\xd5\xb8\x47\xb5\x35\x7e\x74\x4c\xa3\xd9\xd6\x79\x5c\x51\xf0\x63\xf6\xd5\xab\x51\x0f\x3a\x82\xdc\x31\xe1\x04\xbc\x1a\xed\x60\xd1\x4f\x70\xd3\xeb\x2b\xf8\x01\xef\xdb\x9a\xfb\xb3\x6a\x7c\xe8\xb3\xd1\x46\xdf\xa1\x30\x27\xd9\x47\xf7\xaf\xea\x8e\x49\x8b\x2b\xd4\x9f\x26\xbc\xab\x1c\xe4\xd1\x2e\x9b\xdf\xc3\x6d\x93\x9e\x8d\x36\x2f\x76\x33\xeb\xa4\x52\xbd\x4d\xcf\x46\x40\xd9\x8a\xd9\x07\xd6\x7f\x86\xb1\x46\xdb\x96\x80\x69\xd8\x8f\x52\xc1\x71\x7f\x49\x35\x34\xd3\x64\xf4\x44\x87\x35\x3d\xb4\x31\x3d\xf9\x8d\x9c\xfc\xfd\xdd\x17\x2f\xbe\xfc\x6a\x9e\xbe\x1c\xef\x93\xc9\x21\x95\xbc\x1c\xe7\x2a\x19\x1e\x7e\x63\xc3\xd3\x9a\x60\xcc\x08\xff\xa4\xeb\xe5\xf2\xce\x6a\xd2\x31\xb4\xa9\x9b\x0b\x61\xfd\x61\x94\xec\xd4\x44\x13\xa6\xae\xad\xfd\x14\x66\x96\x58\x67\x3a\x61\x9b\x4b\xa5\xf0\x1b\xf6\xee\x59\x66\x65\xb4\x88\xd2\xd3\xa1\x9d\x73\xce\x72\x0d\x22\xca\x4c\xf6\x3d\x7f\xea\xca\xde\x33\x86\xdc\x9b\x8f\x9d\xec\x8a\x29\x53\x3e\x76\xdc\x33\x6e\xcc\xf1\x4f\x4b\xf0\x5d\x9a\x1d\x00\x84\x73\x23\x8d\xbc\x4c\x76\x9a\x8d\xcd\x43\x59\xb0\x32\x36\xef\x12\x65\x98\x76\xbd\x0f\x2f\x17\x5c\x85\x3a\xb6\x94\xe4\x4b\x73\x13\xc6\x6b\x37\xf9\x13\x57\xd1\x61\x39\x99\xcf\x47\xe7\xc5\x20\x6e\xde\x12\x5e\xee\xdb\x29\xf4\xd6\x88\xab\x0f\xa5\x6c\x14\xd5\x8b\x53\x3e\xb5\x3a\x40\xaa\x4c\x66\xa9\xfc\x14\x22\xcb\x04\x1a\x4b\x44\x62\x0a\x85\x43\x64\xd4\xd2\xde\x50\xe4\x68\xb1\xb0\xc2\x66\xb0\x19\xfc\x13\x00\x00\xff\xff\x0c\x39\xc0\xe4\x10\x19\x00\x00")
func initModelsAdminUserModYaoBytes() ([]byte, error) {
return bindataRead(
@@ -635,32 +1192,32 @@ func initModelsAdminUserModYao() (*asset, error) {
return nil, err
}
- info := bindataFileInfo{name: "init/models/admin/user.mod.yao", size: 8052, mode: os.FileMode(420), modTime: time.Unix(1730855738, 0)}
+ info := bindataFileInfo{name: "init/models/admin/user.mod.yao", size: 6416, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
-var _initModelsPetModYao = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x94\xcb\x6e\xd3\x40\x14\x86\xf7\x79\x8a\xd1\xac\xbb\x08\xac\x90\xd7\x6c\xd8\xb1\x47\x55\x34\xf5\x9c\x3a\x03\xe3\x19\xcb\x73\x8c\x88\xa2\x48\x80\x54\x50\xcb\xa2\xac\x1a\x50\x11\x02\x04\x6d\xd9\x50\x0a\xa5\x02\x22\xd1\xa7\xf1\xa5\x6f\x81\x66\xdc\xc6\x8e\xe2\x5c\x37\xb1\xfd\xcf\xe5\x7c\xf9\xcf\xa5\xdf\x22\x84\x2a\x16\x02\xf5\x08\xf5\xbc\xfb\x80\x74\xc3\x4a\xc8\xb6\xa4\xd5\xfa\xd5\x6a\x8f\xe9\x0e\x87\x50\x77\x22\xbb\x89\x50\xc9\xb6\x40\xda\x85\xf4\xdb\x87\x7c\xf7\x6b\xf1\xf1\x84\x92\x81\x3b\xec\x6b\x99\x84\xca\x50\x8f\x3c\x68\x11\x42\xea\x97\x08\x3e\x71\xf4\xde\x5d\xfb\x89\xbd\x08\xae\xbf\xca\x1b\x08\xe9\xbb\xdf\x1a\x9b\x7b\x6e\xdc\xa8\xe3\x0b\xb2\x37\xbf\xf2\xe3\xef\xd5\xc2\xcd\x55\x06\x63\xa1\x82\xda\x01\x50\x01\x76\xa9\x47\xee\xb4\xc7\x9a\x50\x1c\x9e\x50\x8f\x60\x9c\xc0\x58\x54\x89\x94\xd7\xff\xdd\xea\x4e\x9e\xc5\xe4\x82\x4d\x33\xe5\x67\xa3\xf4\xfd\xab\x69\x26\x50\x49\x58\xa9\x3a\x42\xa1\x95\xf5\x88\xfa\xcc\x19\xca\x75\x60\x1f\x1a\xbb\x10\x1b\xba\xd9\xc8\x39\x97\xc7\x20\xc3\xc4\x34\x10\xa5\x3b\x5f\xae\xde\x7e\xca\xf7\x2e\xb2\xa7\xcf\x56\xe1\xea\x82\xff\x08\x5c\xc6\xfc\xa4\xf4\xd3\xbd\x01\x5f\x87\x2e\xd4\xbc\xd1\xad\x55\xa9\x40\xd9\xfc\x38\x2a\x2e\x4c\xf9\xbe\x06\x8e\x56\x52\xa8\xe6\x92\x3a\x4d\x5f\x1f\xa5\xef\x4e\xf2\xbf\x97\x8b\xb0\x38\x6c\xb3\x44\xa2\x5d\x68\x37\xc2\xb6\x2d\xe6\x2d\xba\x39\x17\x85\x03\x32\x21\x1b\x50\x8a\xd3\xa3\x7c\xf4\x22\xdb\xdf\x2f\x2e\x97\xa8\xf1\x55\x4a\x97\x45\x11\xb0\x98\x29\xbf\xc9\x81\xb2\xa1\xd3\xcf\x07\xc5\xf1\xf3\xe9\xb0\x0f\x8d\x56\x0b\x83\x36\x47\x2d\xab\xa8\x33\xb3\x4e\xb3\x1f\xa3\xfc\x60\xb8\x5c\x45\x2c\x6b\xfd\x06\xa1\xb7\xd7\x6c\xa6\xde\xcc\x56\xca\x86\x17\x57\xc3\xf3\x69\x44\xce\x10\x50\xd4\x27\xd5\xbc\xa4\xd4\x8c\xd1\x66\x72\xa6\x16\x7b\x67\xc5\xf9\x9f\xfa\x70\x14\x0a\x21\x80\x78\xf6\x84\x14\x21\x0b\xc0\x2c\xca\x57\xd5\x77\x87\xbf\xd3\x9d\x9f\xe9\xe1\xbf\x7c\xf7\xe5\x02\xdc\x16\x21\xce\x40\x1a\x83\x64\xd6\x5f\x3b\xda\xfb\xe5\xac\x7f\xcc\x64\x02\x6e\xd4\x97\x5b\x9c\xbf\x75\x61\x9c\x91\x12\x98\x5a\x7b\x0c\xb2\x30\x32\x13\xa3\x97\x1a\xbd\x8d\x1d\x0e\x12\x10\x4c\x15\x7d\xd0\x1a\xb4\xfe\x07\x00\x00\xff\xff\xa9\xbc\x0b\xaf\xa4\x06\x00\x00")
+var _initModelsTestsPetModYao = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x51\x3d\x6b\xc3\x30\x10\xdd\xf5\x2b\x1e\x9a\x33\x15\xb2\x78\xce\xd2\xa5\x64\x2f\xa5\x28\xce\x25\x11\xe8\x0b\xdf\x19\x5a\x8c\xff\x7b\x91\x22\x23\xf5\x2b\x8b\xe1\xde\xc7\xbd\x67\xdd\xa2\x00\x1d\x8c\x27\x3d\x40\x1f\x49\xf4\x2e\x03\x62\x4e\x2e\x23\x4b\xe3\x84\x58\xf8\x3d\x65\x05\xf4\x18\xbd\xa7\x20\xd5\xc3\x1a\x6b\xb1\x8d\xd1\xcd\x3e\xb0\x1e\xf0\xaa\x00\xf4\x76\x7b\xfe\xe1\x7b\x3e\x64\x40\x3e\x13\xb5\xc9\x99\x13\xb9\x3a\xde\x57\x02\x4b\xf9\xa2\x23\x8f\x24\x78\xc9\x6b\x77\x1b\xb5\x85\x84\x6f\x68\x17\x96\xe5\x88\x17\xc8\x8d\x90\xea\x4f\x16\xcd\x96\xcf\x32\xd9\x70\x6d\xb8\xa3\x70\x95\x9b\x1e\xf0\xb4\xdf\xb7\x98\xd9\xb9\xfa\x30\x17\xe3\x98\x0a\xfe\x6f\xcd\x03\xf1\x38\xd9\x24\x36\x86\xdf\x4d\xcf\x7f\x91\x5d\xe1\xce\xfc\xb0\xb7\xd0\x47\x87\x76\x05\x65\x9a\x6b\x3f\x05\xbc\x95\xeb\xc4\x7b\x5c\xb9\xaa\x58\x4f\x2c\xc6\x27\xae\x5a\xac\x6a\x55\x5f\x01\x00\x00\xff\xff\x78\x5c\x29\xcd\x0d\x02\x00\x00")
-func initModelsPetModYaoBytes() ([]byte, error) {
+func initModelsTestsPetModYaoBytes() ([]byte, error) {
return bindataRead(
- _initModelsPetModYao,
- "init/models/pet.mod.yao",
+ _initModelsTestsPetModYao,
+ "init/models/tests/pet.mod.yao",
)
}
-func initModelsPetModYao() (*asset, error) {
- bytes, err := initModelsPetModYaoBytes()
+func initModelsTestsPetModYao() (*asset, error) {
+ bytes, err := initModelsTestsPetModYaoBytes()
if err != nil {
return nil, err
}
- info := bindataFileInfo{name: "init/models/pet.mod.yao", size: 1700, mode: os.FileMode(420), modTime: time.Unix(1730855738, 0)}
+ info := bindataFileInfo{name: "init/models/tests/pet.mod.yao", size: 525, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
-var _initNeoNeoYml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\xbd\x6e\x1b\x31\x10\x84\x7b\x3e\xc5\xe0\x52\xa4\x12\x4d\xc5\x70\x62\x5f\x27\xb8\x4a\x91\xa4\x76\x25\xac\xee\xd6\xba\x03\x8e\xbb\x0c\x77\xcf\x8a\x82\x3c\x7c\x40\xe5\x07\x4a\xe1\x94\x8b\x19\x7e\xf8\x86\x83\x8a\xf0\xe0\x5a\x7b\x68\x61\xa1\x39\x1e\x8b\x6f\x6e\xf7\x77\x1b\x5f\xeb\x41\xc3\x71\xa5\x3a\xf6\xe8\x6c\xa8\x73\x71\x8b\x97\x3b\x3e\x4e\xe4\x5d\x08\x83\xca\x0b\x57\x23\x9f\x55\xfa\x00\x5c\xc1\x46\x7e\xa6\x75\xf1\x00\x38\x1d\x16\xee\x71\x26\xdd\x0b\xeb\xfe\xfa\x4d\x00\x32\x7d\xdb\xdb\xfc\x9d\x7b\x6c\x53\x2b\xfb\xd2\xe3\xf6\x7d\x4a\x0d\x9e\x33\xc9\xd8\xb8\x85\xaa\xf1\x6b\x86\xe1\x0d\x4a\xe5\x42\x95\xaf\x34\x5f\x2e\x1a\xf1\x13\xf9\x30\x75\xa1\x54\xcd\xc5\xad\xa1\x36\xa8\xda\x74\xec\x6c\xce\x39\x00\x17\x6b\x67\xf1\x1e\x3f\x2e\x67\xeb\x3c\xe9\x0a\xaa\xdc\xc0\xce\x32\xce\x72\x84\x2b\x0e\x8c\xa7\xdd\x97\xb7\x86\xdd\x47\x90\xd9\x6c\x4e\xe2\x20\x19\x71\xd6\xb5\x42\x28\x33\x66\xc3\x67\xd6\xf8\x97\xb4\x13\x3b\x71\x45\x3e\xe3\xeb\xca\xd6\x46\x1b\x66\xc1\xe3\x34\x0b\x1b\xe3\xb9\x6a\x86\xe8\x09\x2a\x31\x04\x2d\x7f\x7e\xd2\x39\x17\xae\xe4\x6b\x5b\x95\xe2\x7d\x08\xb4\x2c\x7a\xfa\x3d\xa1\x9b\xdc\x4b\x7f\x73\xb3\x7d\xf7\x21\xa6\x98\xe2\xb6\xbf\x4f\x29\x75\xaf\x64\x77\xe9\xe1\xe1\xdf\x6c\xd1\x81\x96\x49\xcd\xff\x9b\xfd\x62\xfe\x0c\x00\x00\xff\xff\x67\x1e\x32\xfc\x21\x02\x00\x00")
+var _initNeoNeoYml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xcb\x6e\xdb\x30\x10\xbc\xf3\x2b\x06\xca\xd5\x66\xe8\xe6\xd1\x86\xb7\x22\x87\xa0\x87\x02\xbd\xf5\x68\xd0\xd4\xca\x22\x2c\x71\x09\x72\xd9\xd4\xfd\xfa\x82\x72\x0c\xb8\x40\x6a\xe4\x36\xda\x59\xcd\x68\x66\x75\x83\x7d\x75\xb9\xb7\xe8\x8a\xcf\x21\x49\xd1\x91\x58\xbf\xb4\x59\x87\x1b\x3c\xd7\x22\x3c\x9f\x76\x56\x38\x72\x85\x77\x11\xb5\x10\x82\x40\x18\x7e\x24\x7f\x40\x18\x20\x23\xb5\x71\x46\x28\x70\xd3\xc4\xaf\xd4\x37\xde\x79\x4f\xa5\x2c\xec\xd7\x6f\x98\xb9\xa7\x49\x29\xcf\xf1\x17\xe5\xe2\x24\x70\xb4\x0a\xf0\x1c\x23\x79\xe1\x6c\xd1\xd3\xe0\xea\x24\x0a\x10\xb7\x9b\xc8\xe2\xe8\x78\x1b\x89\xb7\x97\xef\x28\x60\x76\xbf\xb7\x25\xfc\x21\x8b\x8d\x69\xcb\x32\x59\xdc\x3d\x1a\xb3\x88\x9f\xc5\xba\x99\x5d\x0a\x76\x9f\x64\x7d\xcf\x2d\x4d\x43\x77\xfa\x61\x2d\x35\xef\x78\x75\x7e\x3c\x81\x7b\x5e\x81\xc4\x6b\xbc\x90\xb4\xa0\x19\x85\x7c\x26\xc1\x81\x8e\x18\x32\xcf\xf8\xde\xd4\xc0\x79\x89\xef\x62\x0b\xf4\x7c\x36\x6b\x59\x43\x14\xda\x67\x27\x2d\xaa\x56\x29\x53\x72\x99\x2e\x8a\x75\x61\xe9\xf6\xc7\x89\x68\xdf\xf3\x06\x31\x32\x1f\xde\x6b\x77\xe6\x3e\x0c\xc7\xa5\xbd\x10\x53\x15\xec\x68\xe0\x4c\x28\x14\xfb\x10\xf7\x6f\x5b\x97\xe5\x6a\xf5\x9a\x83\xbc\xe3\xfa\xb3\x8d\x9b\xe7\x02\x3e\xe2\xc8\x55\xae\x5a\xb6\x6b\x2b\xc5\xe9\x7c\x45\xa1\x39\x51\x76\x52\x5b\x68\xa3\x1f\x95\x5a\xfe\x83\xd2\xb8\x35\xba\x51\x24\xd9\xdb\xdb\xcd\xa7\xcf\xda\x68\xa3\x37\xf6\x8b\x31\xa6\xfb\x0f\xf7\x60\x9e\x9e\xfe\xe5\x26\xf6\x6e\x1a\xb9\xc8\x55\xee\xa4\xf9\x37\x00\x00\xff\xff\x79\xc3\x26\x75\xd4\x02\x00\x00")
func initNeoNeoYmlBytes() ([]byte, error) {
return bindataRead(
@@ -675,212 +1232,352 @@ func initNeoNeoYml() (*asset, error) {
return nil, err
}
- info := bindataFileInfo{name: "init/neo/neo.yml", size: 545, mode: os.FileMode(420), modTime: time.Unix(1730855738, 0)}
+ info := bindataFileInfo{name: "init/neo/neo.yml", size: 724, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
-var _initPublicDemoPetHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x41\x6f\xd3\x4c\x10\xbd\xf7\x57\x8c\xdc\xab\x1d\x27\x5f\xfb\x41\xeb\x3a\x91\x0a\x02\xc1\x81\x22\x11\x71\x46\x6b\x7b\x6c\x6f\xbb\xde\xb5\xbc\x93\xb4\x06\x71\x43\xaa\x10\x67\x2a\x84\xc4\xa1\x70\xe3\xd0\x9e\x0a\xaa\x90\xf8\x35\x6d\xd4\xfe\x0b\xb4\x89\x1d\x3b\x49\x85\x50\xa4\xd8\xeb\xb7\xf3\xde\xec\x9b\x9d\xf1\x53\xca\x04\x08\x26\x93\xbe\x85\xd2\x1a\xac\x01\xf8\x29\xb2\xc8\xbc\x00\xf8\xc4\x49\xe0\xe0\xe6\xf8\xfb\xf5\xd9\xe7\xab\xcb\xf7\x93\x8b\x0f\x37\xe7\x1f\x6f\x4f\x2f\x6e\xbf\x7c\xf5\xdd\x19\x38\xdb\x98\x21\x31\x08\x53\x56\x68\xa4\xbe\x35\xa2\xd8\xd9\xb2\xc0\xad\x40\x4d\x65\xbd\x11\x20\x50\x51\x09\x6f\xaa\x05\x40\xac\x24\x39\x31\xcb\xb8\x28\x3d\x78\x3e\xa2\x98\x93\x0d\x0e\xcb\x73\x81\x8e\x2e\x35\x61\x66\xc3\x03\xc1\xe5\xc1\x33\x16\x0e\xa7\xeb\xc7\x4a\x92\x0d\x43\x4c\x14\xc2\xcb\xa7\x36\xbc\x50\x81\x22\x65\xcf\x19\x01\x9e\xa0\x18\x23\xf1\x90\xc1\x1e\x8e\xd0\x86\xdd\x82\x33\x61\xc3\x9e\x22\x05\x43\x26\xb5\x0d\x9a\x49\xed\x68\x2c\x78\x6c\xc3\xae\xd1\x82\x87\x4a\xa8\x02\x1e\x65\x6a\x9f\xb7\xa9\x6a\x99\x0a\x69\xd6\xc3\x32\x0b\x54\x4d\xda\x0a\xde\x99\x07\x87\xe6\xa3\x07\xeb\xbd\x5e\xaf\xf9\x18\xb0\xf0\x20\x29\xd4\x48\x46\x1e\xac\xc7\x5d\xf3\xdb\x59\xf4\x42\xf3\xd7\xe8\x41\x6f\x2b\x3f\x6a\x00\xc2\x23\x72\x98\xe0\x89\xf4\x20\x44\x49\x58\x34\x98\x1a\x63\x11\x0b\x75\xe8\x41\xca\xa3\x08\x65\x83\xe4\x2c\x8a\xb8\x4c\x1c\x52\xb9\x07\xbd\x6e\xb7\x61\x7c\x5b\x3d\x3b\x39\x4b\xb0\x55\x8c\x88\xeb\x5c\xb0\xd2\x83\x58\x60\x4b\x7e\x7f\xa4\x89\xc7\xa5\x13\x2a\x49\x28\xc9\x03\x9d\xb3\x10\x9d\x00\xe9\x10\xdb\x82\x26\xca\x89\x78\x81\x21\x71\x65\x52\x55\x62\x94\xb5\xf0\x14\x79\x92\x92\x07\x1b\xdd\x71\xba\x92\x8a\xb9\x75\x58\x2c\xdf\x8c\x99\x1b\xff\x6d\xb6\xdd\x98\x02\x87\x15\xd7\x66\xb7\x65\x60\xc6\x8a\x84\x4b\x27\x50\x44\x2a\xf3\xa0\xdb\xf9\x1f\xb3\x15\xa1\xea\x14\x10\xf1\x71\x4b\xed\x6f\xa1\x8b\x95\xb9\xb7\xea\x23\x6b\x11\xd5\x65\xdf\xde\xde\x5e\x2a\x60\x84\xa1\x2a\xd8\xcc\x1a\xa9\x24\xfe\x3b\xbd\x97\x9a\x2a\xdf\x21\xb2\xb1\x71\xbf\x17\x87\xcd\xfe\xe5\x33\xde\x95\xd8\x72\x8c\xf9\xf7\xdd\x79\x8f\xfa\x6e\xdd\xff\xbe\x69\xd5\xaa\x85\x8d\x59\xa1\x60\x5a\xf7\xad\x59\xa1\xac\x66\x2a\xd4\xf3\x20\xe2\xe3\xd5\xdd\xe6\x86\x59\x75\xef\xb7\x81\x2a\xc5\x39\x36\x43\x07\xad\xde\xf3\x19\xa4\x05\xc6\x7d\x2b\x25\xca\xb5\xe7\xba\x25\x53\x2c\xcf\x75\x27\x54\x99\x1b\xa9\xd0\x02\x62\x45\x62\xe6\xcd\xab\x40\x30\x79\x60\x0d\xae\xcf\x3e\x4d\x4e\x2e\x27\x27\xc7\x93\xd3\x6f\xbe\xcb\x5a\xd4\xee\x02\xf7\x54\x69\x72\x72\x7c\xf5\xeb\xc7\xcd\xcf\xf3\xeb\xdf\xef\x3c\x33\xa4\x0a\x25\x93\x81\x9b\x8f\x02\xc1\x43\x37\xc2\x4c\xb9\x39\x52\xc7\x0c\x48\x63\xcf\x14\x5d\xe0\x69\x9f\xb8\x7e\xf5\xdd\x99\x69\xbe\x6b\xe2\x06\x6b\x7f\x02\x00\x00\xff\xff\xb3\x86\xd7\x59\x60\x05\x00\x00")
+var _initPublicReadmeMd = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x1c\xca\x41\x0a\x02\x31\x0c\x46\xe1\x7d\x4f\xf1\xc3\x1c\xa0\x6e\x5c\x4c\x6f\x20\xb8\x12\x3d\x40\x9a\x46\x5a\x08\x93\xa1\x89\x0b\x6f\x2f\x75\xfb\xde\xb7\xe1\xd9\x05\x1e\x14\x83\xf1\x1e\x2a\x0e\x9a\x2b\xd8\x94\x86\x71\x20\xba\xe0\xfc\x54\x5d\xdb\xb4\xc9\x4c\x69\xc3\x2d\xc0\x74\xa0\x0a\x88\x59\xdc\xa5\xa1\x7e\xff\xf4\xf5\xb8\x17\xf4\x88\xb3\xe4\xac\xc6\xa4\xdd\x3c\xca\xf5\xb2\xef\x39\xfd\x02\x00\x00\xff\xff\x8c\x51\x3f\xf5\x6c\x00\x00\x00")
-func initPublicDemoPetHtmlBytes() ([]byte, error) {
+func initPublicReadmeMdBytes() ([]byte, error) {
return bindataRead(
- _initPublicDemoPetHtml,
- "init/public/demo/pet.html",
+ _initPublicReadmeMd,
+ "init/public/README.md",
)
}
-func initPublicDemoPetHtml() (*asset, error) {
- bytes, err := initPublicDemoPetHtmlBytes()
+func initPublicReadmeMd() (*asset, error) {
+ bytes, err := initPublicReadmeMdBytes()
if err != nil {
return nil, err
}
- info := bindataFileInfo{name: "init/public/demo/pet.html", size: 1376, mode: os.FileMode(420), modTime: time.Unix(1730855738, 0)}
+ info := bindataFileInfo{name: "init/public/README.md", size: 108, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
-var _initPublicIndexHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x51\x6f\xdb\x36\x10\x7e\xcf\xaf\xb8\x29\xaf\x52\x64\x2f\xd9\x96\x28\xb2\x81\x6c\xc8\xb0\x00\x6b\x0a\xd4\xe8\x43\x9e\x8a\xb3\x74\x92\x18\x53\x3c\x41\x3c\xdb\x51\x8b\xfe\xf7\x82\x91\x64\x31\x76\x50\x14\x06\x2c\x92\x1f\xef\xfb\x8e\xdf\xf1\x98\x56\x52\x6b\xd0\x68\xca\x45\x40\x26\x58\x9e\x01\xa4\x15\x61\xee\x06\x00\xa9\x28\xd1\xb4\x7c\x42\x86\xbb\xa6\x81\x7b\x53\x2a\x43\x69\xdc\xaf\xf6\x3b\x6a\x12\x84\xac\xc2\xd6\x92\x2c\x82\xad\x14\xd1\x75\x00\xf1\x00\x5a\xe9\xc6\x8d\x00\x6b\xce\x3b\xf8\x36\x4c\x00\x0a\x36\x12\x15\x58\x2b\xdd\x25\xf0\x71\x2b\x85\x92\x10\x22\x6c\x1a\x4d\x91\xed\xac\x50\x1d\xc2\xdf\x5a\x99\xcd\x07\xcc\x56\xaf\xf3\x7f\xd9\x48\x08\x2b\x2a\x99\xe0\xf3\x43\x08\x9f\x78\xcd\xc2\xe1\x81\x11\xe0\x3f\xd2\x3b\x12\x95\x21\x3c\xd2\x96\x42\xb8\x6b\x15\xea\x10\x1e\x59\x18\x56\x68\x6c\x08\x16\x8d\x8d\x2c\xb5\xaa\x08\xdd\x91\x34\xc1\x3f\xac\xb9\x85\xfb\x9a\x9f\x95\x4f\x35\xca\x0c\xc8\x34\x5f\x75\xf5\x9a\x47\x52\x2f\xf8\xf6\x10\x9c\xb9\xc5\x04\xce\xe7\xf3\xf9\xb4\xb8\xc6\x6c\x53\xb6\xbc\x35\x79\x02\xe7\xc5\xcc\xfd\x6e\xdf\x7a\x61\xd5\x57\x4a\x60\x7e\xdd\xbc\x4c\x80\xd0\x8b\x44\xa8\x55\x69\x12\xc8\xc8\x08\xb5\x13\xc6\x3b\x6a\x0b\xcd\xfb\x04\x2a\x95\xe7\x64\x26\xa4\xc1\x3c\x57\xa6\x8c\x84\x9b\x04\xe6\xb3\xd9\xc4\xf8\x7d\xf8\x5e\x34\x58\x92\x57\x8c\x5c\xd9\x46\x63\x97\x40\xa1\xc9\x93\x7f\xde\x5a\x51\x45\x17\x65\x6c\x84\x8c\x24\x60\x1b\xcc\x28\x5a\x93\xec\xc9\x17\x74\x51\x51\xae\x5a\xca\x44\xb1\x4b\x95\xf5\xb6\xf6\xf0\x8a\x54\x59\x49\x02\x97\xb3\x5d\x75\x92\x8a\xbb\x6e\xd4\x1e\xdf\x8c\xde\x8d\xdf\xaf\x7c\x37\x5e\x81\xfd\xc0\x75\x35\xf3\x0c\xac\xb1\x2d\x95\x89\xd6\x2c\xc2\x75\x02\xb3\x8b\x3f\xa8\x3e\x11\x1a\x4e\x01\xb9\xda\x79\x6a\x3f\x0b\x7d\x5b\x99\x3f\x4f\x7d\x44\x8f\x68\x2c\xfb\xcd\xcd\xcd\x51\x01\x73\xca\xb8\xc5\xde\x1a\xc3\x86\x7e\x9d\x3e\xa9\x5c\x95\xdf\x11\xb9\xbc\xfc\x6b\x5e\x64\xd3\xfe\xe3\x33\xbe\x97\xd8\x71\x8c\xfb\x4f\xe3\x43\x8f\xa6\xf1\xd8\xf8\xa9\x6b\xd5\xa1\x85\x9d\x59\x99\x46\x6b\x17\x41\x5f\xa8\xe0\xe4\x39\xc8\xd5\xee\x74\xb3\xbb\x60\xc1\xd8\xfa\x3e\x30\x64\x78\xc0\x7a\x74\xe9\xb5\xde\x83\xc0\x9e\xdb\x8d\xfd\x0d\x52\x84\xaa\xa5\x62\x11\xc4\x98\xd7\xca\xc4\x9a\x4b\x65\xfa\x71\x00\x82\x6d\xe9\xde\x9c\x2f\x6b\x8d\x66\x13\x2c\xff\x77\x60\x1a\xa3\x47\x1c\x7b\xcc\x6f\x27\x5e\x42\x05\xb3\xb8\x63\x4d\x61\xa3\x6a\x25\xd2\xd8\x24\x8e\x3b\x64\x6c\x1a\x7b\x91\x71\x7d\x2a\xfb\x84\x7c\x37\x80\x9e\xb8\xef\xca\x38\x4c\xe3\xde\xd7\x34\x76\x8f\xee\xf2\xec\x47\x00\x00\x00\xff\xff\x07\xa3\xeb\x06\x7c\x05\x00\x00")
+var _initPublicAssetsReadmeMd = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x52\x56\x08\xc9\x48\x55\x28\x49\xcd\x2d\xc8\x49\x2c\x49\x55\x48\x2c\x2e\x4e\x2d\x29\x56\x48\xc9\x2c\x4a\x4d\x2e\xc9\x2f\xaa\xd4\xe3\x02\x04\x00\x00\xff\xff\x40\x91\x02\x66\x21\x00\x00\x00")
-func initPublicIndexHtmlBytes() ([]byte, error) {
+func initPublicAssetsReadmeMdBytes() ([]byte, error) {
return bindataRead(
- _initPublicIndexHtml,
- "init/public/index.html",
+ _initPublicAssetsReadmeMd,
+ "init/public/assets/README.md",
)
}
-func initPublicIndexHtml() (*asset, error) {
- bytes, err := initPublicIndexHtmlBytes()
+func initPublicAssetsReadmeMd() (*asset, error) {
+ bytes, err := initPublicAssetsReadmeMdBytes()
if err != nil {
return nil, err
}
- info := bindataFileInfo{name: "init/public/index.html", size: 1404, mode: os.FileMode(420), modTime: time.Unix(1730855738, 0)}
+ info := bindataFileInfo{name: "init/public/assets/README.md", size: 33, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
-var _initScriptsDashJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd2\xd7\xd2\xe2\x52\xd0\x52\x78\x3e\xa7\xfb\xd9\xdc\xfd\xcf\xa6\x6e\x78\xd6\xbb\x0e\xc4\x77\x48\xce\x4d\x51\xa8\x4c\xcc\x57\x28\x2a\xcd\x53\x28\x4e\x2e\xca\x2c\x28\x29\xd6\x4b\x49\x2c\xce\xd0\x73\x49\x2c\x49\x04\xab\x28\x4a\x2d\x29\x2d\xca\x2b\xe6\x52\xd0\xd2\xe7\x4a\x2b\xcd\x4b\x2e\xc9\xcc\xcf\x53\x00\xc9\x6a\x68\x2a\x54\x73\x29\x28\x40\xe4\x15\x02\x8a\xf2\x93\x53\x8b\x8b\x35\x94\xd2\x72\xf2\xcb\x8b\xf5\x8a\x4b\x12\x4b\xf4\x52\x12\x4b\x12\x95\x34\xad\xb9\x6a\xb9\x00\x01\x00\x00\xff\xff\x6f\x3f\x80\xb6\x7f\x00\x00\x00")
+var _initPublicAssetsImagesIconsAppPng = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xbc\x65\x4c\xdc\xcf\x1f\x35\xfa\xdd\x65\x91\xc5\x61\x71\x2f\x2e\xa5\x58\x71\x5b\x8a\x15\xa7\x78\x8b\x3b\x2d\xee\x0e\x0b\x14\x6f\x8b\x14\x2d\xb6\x14\x2d\x6e\xc5\xad\xb8\x94\x22\xc5\xa5\xb8\xbb\xcb\x22\x37\xbf\x7f\xf2\xe4\xde\xfb\xe2\x26\xf7\x24\x93\xcc\x99\x33\x2f\x67\xe6\x9c\xcc\x4c\x3e\xd1\x9a\xea\x8a\x78\xd8\x54\xd8\x00\x00\xe0\x29\xbd\x96\xd3\x02\x00\x30\xf0\x5f\xc3\xc2\x00\x00\x50\x58\xf0\x86\x03\x00\x00\x20\x77\x2d\xc5\x57\x40\xc5\x1f\x9a\x5d\x00\x00\xe4\xac\x0d\x94\x6c\xd4\xd4\x00\x4e\x00\x00\xb0\x00\x50\xe4\x7b\x00\xf2\xdf\x14\x00\x00\xa8\x80\xff\x80\x86\x04\x01\x68\xff\x1b\x01\x01\x00\x12\xfc\x7f\x54\x30\x80\x44\xfb\xbf\xfb\xff\x01\xe7\xe6\x67\x38\x00\xc0\x01\x25\x39\x19\x1d\x1f\xd0\x41\x16\x66\x66\xa6\xfc\x6d\x7f\xce\x1c\x17\x47\x3c\x38\x64\x0c\xfd\xbb\xce\x9b\x8f\x2f\x5f\xe1\x45\x61\x0b\xe5\x33\x3f\x82\x64\x88\x06\xc3\x8d\xc0\x4d\xcc\x10\x9c\x9d\x12\x76\xee\x41\xf9\x81\x82\xf1\x7c\x6c\xa8\x85\xac\x5c\xbe\x1c\x9c\x61\x90\x16\x19\xca\x30\xa1\xc2\x9e\xcb\x9c\x6f\xb2\x70\xfb\xb4\x35\x10\xd1\xd6\x16\xe8\xbd\xcc\x7f\xde\x7e\xde\x7e\x7c\x1e\x24\xe5\xdd\x82\x6a\x17\x18\x95\x18\xf5\xde\xca\x32\x89\xba\x51\x16\x06\x11\x85\xdf\x76\x53\x6d\x3c\xe7\xf8\x91\x2b\x37\x6b\x6f\x68\x13\x1b\xc4\x72\x44\xdd\x62\x4d\x03\x7c\x92\x24\xe8\x33\xd9\xea\x07\x77\xf2\x56\xe4\x24\x00\x11\xea\xc9\x0b\x9a\x6c\xe5\x17\x96\x1e\x1c\xd2\xac\x32\x76\xe8\xbc\x1e\x35\xf7\x6c\xb8\x37\x0e\x1c\x4c\x2f\x17\xa9\xb1\x09\xe3\xec\xe3\xff\xaa\x7d\x24\x03\x98\x0a\x07\x24\xc5\xdd\x2f\x96\x9d\x12\xf1\xee\x3b\x71\xaa\xab\x9a\xde\x4c\xee\x92\x64\x41\x39\x71\xab\x5f\x74\xf3\x9a\xec\x46\xb7\x5a\x19\x69\x06\xc6\x3e\xa0\xd4\x41\x91\xaa\xa9\x0f\x42\xf5\xe3\x91\xbd\xe0\xee\x9b\x72\x01\x8d\x93\x64\xb0\x4e\x99\xa2\x75\x2b\xb8\xac\xcb\x1b\x6c\x3c\xc3\x4c\xef\xe1\xa7\xb7\xd7\x6e\x0b\x6c\x82\x79\x48\xe1\xb3\xd7\x88\xad\xaa\x66\xd1\x33\xe3\x86\x55\x3f\xb0\xd9\xd7\x53\xf5\x66\x86\xbc\x00\xca\x41\x4b\x42\x86\x97\xcd\x21\x2b\x54\x08\x6d\x84\x13\x18\xfa\x77\x24\xd4\xaf\xba\x05\x9b\x80\x90\xb5\x05\x3a\x43\x0a\x50\xe4\xb8\x33\xfd\x16\x12\x5e\xdf\x12\xd9\x26\xf5\x35\x36\x06\x21\x2c\x97\x0b\xe4\xa5\x90\xc5\x52\x5c\x32\xc5\x58\x0c\x2f\x94\x3a\x68\xcc\x92\x70\x85\xc5\x24\x79\x70\x18\xa0\x7d\x5c\xdd\xa7\x8c\x01\xc3\xe4\x00\x9b\x86\x6b\xeb\xf1\x05\xa7\x48\x21\xa2\xb1\xef\xb1\x91\xd5\x99\xd2\x4b\x09\xe8\x2e\x1c\x7c\x58\xa3\x18\x36\x16\x53\xd9\xc6\x6d\xd1\xe1\x64\x87\xc2\xbd\xc6\x3a\xca\x31\xe3\x73\x33\x3c\x77\x0c\x88\x11\xf8\xbf\x0a\xad\xeb\x7e\x13\x7f\xa1\x34\x6c\xaa\xea\x1f\xdd\xcf\x6e\xf6\x07\xa2\xf6\x5b\x2a\x3f\xbd\x48\xee\x89\x35\xdf\x10\x6b\x29\x3a\xa2\x03\x62\x24\x67\x6f\xc4\xcf\xb6\x5c\x92\x34\x33\x3f\x79\xc3\x50\x05\x17\x47\x29\x60\x07\x8d\x47\xf5\xbe\x54\xfe\xb2\xc5\xb6\x57\x06\x4b\x40\xd2\x39\xc9\x65\xad\x5b\x1f\x39\xd5\x86\xee\xa8\x01\xc0\x6e\x2b\xb1\x77\x1b\x7c\xfd\xc1\x23\x17\xb5\xd7\x45\x5f\x1f\xc8\x63\xeb\x63\xa2\x3f\x79\x4e\x30\x1a\x7c\x7d\x4e\x29\x09\xc8\x54\x62\x29\x3d\xc9\x3d\x1c\x3a\xef\x9c\x65\xaf\xf7\x46\x31\x28\x49\xd3\xff\xb1\x01\x98\x58\x87\xf3\xc4\xce\xbd\xf1\x02\xa7\xb1\xf7\x50\x76\x79\xb3\x48\xd9\x56\xfc\xf5\x64\xba\x0c\x90\x07\xf6\x07\xad\x87\xd7\xac\x2f\x84\x95\xe6\x1c\x1b\x77\xf6\xf7\x3f\x7e\x9b\x3f\xab\x18\x01\xcc\xee\xff\x39\x25\xbb\xec\xab\x17\xad\x72\xaa\x92\xee\x37\xaf\xef\x58\x02\x4e\xe5\x6e\xab\xf8\x92\xb5\xc1\xfd\x28\x89\xf9\x70\x6d\x7d\x75\x0f\x96\x6b\xad\x10\x52\xf0\x0d\x3d\xcd\xc1\x9b\xa1\x84\x54\xff\x66\x0b\x5a\xa5\x40\x90\x85\x21\x4a\xd3\xa0\x9a\x3b\x03\x14\xc5\x29\xa6\xef\x35\x61\xdc\x8b\xdf\x7a\x7f\x65\x71\x5f\x47\xbd\x41\x66\x3f\x3d\x66\xff\xfa\xaf\x61\x32\xb6\xac\xb7\x16\x0f\x69\x44\xf3\x4c\x79\x83\xf0\x6b\xdd\xd9\xcf\xa7\xac\x5f\x6b\xbe\x86\xa8\x5f\x93\xab\xdf\xdb\x9d\xf5\x6e\x91\xac\x6c\x8c\x4d\x05\xca\x48\xb3\x6f\xff\x61\xed\x8e\xbd\x9c\xd4\xca\xac\x7b\x19\xa3\x12\x83\xbe\x1d\xbc\xe0\xd0\x3a\xc1\xc7\x8b\x70\x53\x5a\xd6\x5b\x3f\x1f\x34\xc5\x41\x04\xa8\x92\x07\xcf\x7f\x08\xa8\xce\x5e\xd2\x82\x37\xcd\x3e\xbf\x2a\x0e\x12\x6f\x8a\x8b\x3d\x1d\x8a\x70\x02\x26\x3f\x23\xf5\x1f\x5e\x35\xd9\x6a\x52\xb2\x3e\xc4\x7e\xd8\x2b\xcc\x71\x06\xd4\xab\x97\xff\xd9\x04\xd5\xe8\x10\xc2\x71\xfa\x70\x74\x57\x17\x02\x2e\x81\x15\xab\x59\x1b\x7a\x28\x6a\x02\x0d\x4e\x88\x72\x08\xbe\xc6\x71\x7f\x6a\xcd\x62\x01\x59\xf1\x7b\xbc\xfb\x27\x33\x21\xad\x02\x36\x90\x52\x59\xd4\xf9\x73\x22\xd2\xce\x5a\x60\x61\x3a\x67\x40\x8c\xf0\x1b\x5b\xdc\xb9\x57\x95\x8c\x9b\x62\xd9\xc1\x66\x0b\xa4\x05\x61\x85\x64\x37\x7f\x34\xc2\xd9\xef\x6d\x52\x2f\x14\x01\x6b\xd2\xad\xa5\x4d\xc6\xe2\x79\x2a\xdf\xf9\x7a\x5b\x83\x3c\x44\xa9\x5e\x1b\x6e\xd0\xf6\x1f\xd6\x26\x9e\x0e\x65\xc7\x00\xef\x6a\x2c\x02\x17\x71\x8f\x27\xf4\xe3\x2d\x71\x7e\x8e\x65\x3b\xd1\x32\x86\x13\xc4\x74\x90\x7b\xa7\x88\xb4\xd1\xa5\x4c\xa2\xeb\x31\x5e\x61\x92\x2f\x68\xee\x79\xf7\x92\xc4\x5f\x6f\x58\xb9\x3c\x36\x09\xe6\x84\x66\xbb\xda\xb7\x4e\xcc\x09\x02\x9b\xb3\xa4\x1f\xa9\xe6\x15\x9b\x3e\xaf\x95\xfc\x28\x68\x8b\x5f\x3f\xde\x67\x71\x98\xa9\x84\xe7\x6a\x5e\x8a\x25\x85\x11\xf5\xda\xaf\xb0\x76\x73\xd5\x3d\x7b\x5a\xd2\xc6\x1e\xf0\xd7\xea\x23\xc8\x61\x24\xf8\xf3\xf4\xe2\xf1\xa2\x54\xb5\x9a\xa6\xa1\x23\xec\xe3\x36\x17\x7a\xa3\xee\x6f\x0f\x65\x2c\x0b\x9f\x7f\x18\xa6\x1c\x0c\xc7\x4d\x13\x45\xf8\xe8\xb4\x5d\x22\xaf\x53\x1d\xf2\x38\x18\x2a\x5b\x2b\x92\x90\xc3\x3b\xad\x26\x7b\x02\x24\xc0\x2d\xf0\x80\x40\x84\x2a\xf2\xa4\xb1\x1f\x0d\x0f\x8f\x3d\x50\x72\x22\x5e\x6d\xf6\x73\xc7\x8b\x47\x79\xf9\x91\x71\x57\x3c\xde\xa2\x28\x4a\x9b\x68\xb9\xa4\xfa\x36\x82\xcf\xd9\x60\x66\xe0\x3e\xe8\xc7\x6c\xcc\x4f\xbf\x87\x1e\x69\x4b\xed\x3c\x39\x86\xe5\x22\xda\x97\x24\x54\x16\x35\xf7\xd2\x7f\xf8\xf7\x81\x48\x1a\x18\xdb\x28\xb4\x2a\x9a\x0f\xe5\xd5\x45\x1b\x14\x00\x08\x5f\x73\x64\x4d\x9a\x42\xe4\xf8\xf6\x92\xdf\xe2\x8c\x87\x2c\x17\x50\x1e\x41\x4e\x69\xc7\x29\x68\x07\x32\x9b\x38\x79\x85\xcf\xca\x00\x01\xf3\x3a\xc4\x64\x86\xb1\x28\x5f\x86\x2b\x7f\x7b\xac\xa0\x0e\x75\x06\xcc\x7b\xfd\x38\x90\x62\xcf\x6e\x3e\xe0\x29\xbc\x0f\xe0\x60\xb8\xf5\x4f\x13\x0d\xf2\x7b\x6c\x59\xd0\x18\xe5\xe8\x24\x5b\xcf\xd2\x0a\xf9\xe0\xe2\xfb\x5e\xd0\x4f\x19\x54\x4f\x61\xca\xe1\xd5\x56\x27\x66\x8c\x16\x15\x7b\xea\x2b\xe2\xf4\xac\x11\x6c\x96\x77\xea\xe4\xe1\x86\x96\xcb\x08\x08\x83\x36\x7f\xf4\x9f\xd6\x3e\x47\x30\x53\x98\x72\x90\x26\xa1\x13\xf6\x53\x70\x17\xb8\x8b\x62\x7d\x01\x12\x09\x51\x05\x66\x24\xcb\x5c\x50\xb3\x0d\x8f\x26\xf7\x6a\xd9\x85\xa0\xbc\xa7\xaa\xee\x58\x75\xf5\x1f\x48\x66\xc4\x17\x21\xbf\x91\xd8\x13\xf6\x45\x0b\x79\xe5\xcf\x5f\x5c\xfc\x81\x01\x1b\xeb\x38\x7f\x31\x30\xb6\x2c\x86\x45\xd3\x41\x36\x78\xd6\xf8\x7b\xb9\x41\x1c\x5d\xdf\xe3\x7b\xd2\xfa\x57\x9f\x8e\x3d\x95\xdf\x4e\xb1\x5c\xbe\x16\x94\x04\x92\x48\xcd\x06\x65\x8b\xbc\x10\xf4\x97\xcd\x20\x8a\x79\x84\xae\x6c\xbd\x69\xa8\x4d\x8a\xd6\x38\xc7\x57\x2e\x2f\xc3\x83\x0a\x6a\xa0\x8c\xf6\xe0\xb1\x65\xb6\x01\xbd\x63\x5c\x5a\x44\xad\x88\x6a\x9a\xda\xc8\xae\x4c\x7b\x82\xe7\xcb\xd4\x2b\xe9\xe4\xf6\x7e\x0c\xc4\xd7\xd3\x64\xdc\xb2\x8b\x00\xf7\xc8\xa8\x72\x41\x69\x41\xeb\x86\xc5\x32\x5d\xe9\x6a\x53\x6e\xbb\xe5\xa6\xcb\x35\x4a\xf4\xfe\x79\x12\x4d\x16\xbb\xc6\x18\xcf\xa5\x3e\xae\x3c\x71\xe6\x07\xc5\xc0\x12\x95\xd1\xe6\x5f\x71\x56\xb7\x77\x71\x9c\x87\xfc\x56\xed\x71\x56\x90\xa5\xea\xb2\x37\x12\x1b\x7a\x51\x39\x69\x3c\x2c\xe2\x3a\x40\xf3\x3f\x4b\xe3\x3e\x2e\x86\x3e\xd0\x05\xf5\x6b\x41\x95\x9a\x2e\xed\xee\x02\x1d\xd5\xcd\xe3\xdd\x97\xff\xd8\x01\xe6\xc3\x5b\xbb\xaa\xcc\x2c\x7d\x89\x1d\x36\xbd\xaf\x95\xfd\x0e\x89\x52\x32\x9b\x24\x28\xe1\x44\xb0\x07\x8b\x67\xc1\xf3\xbb\xbb\xd1\x5e\xec\xf3\xb9\x42\x32\x1e\x3b\x4c\xe4\xf0\x4d\x80\xd6\x4c\xbb\xb5\xdc\x1b\xe2\x31\xec\xce\xd8\xd3\xf5\xed\x21\xd3\x0d\xb7\x8b\x6e\xc6\xc0\x57\x4f\x3f\xf0\xe0\x2c\xeb\x6c\xc6\x2c\xde\x4e\x8e\x0f\x8d\x79\xe8\x7d\x8a\x5e\xa4\x15\x74\x53\x60\x64\xe2\x29\xa7\x68\xb7\x8f\x7d\x45\xd7\x54\x5e\x08\x28\x49\x40\xea\x89\xce\xd0\xd2\x17\x2a\x2f\xa4\x1f\x3e\x4c\xa9\xd5\x65\xda\x6b\xe8\xca\x6b\x42\x59\x4d\x09\x97\x8f\x55\x16\x71\x09\x25\x23\x5f\x47\x43\x63\xff\xd5\x73\x67\xd8\x2b\xbb\xdd\xae\x0d\x27\xb6\xe8\x50\xc4\x76\xe1\x1f\x72\xac\x53\x6f\xd6\x73\xda\x9f\x76\x64\x3e\x82\x38\x3e\xc7\x9f\x31\xc5\x26\xf4\x08\xac\x66\xb8\x6c\xf1\x94\x6c\xd3\xde\x6b\xe7\xbe\xae\x42\x96\x28\x1a\x7e\x67\x43\x70\x96\x50\xc4\xee\xa4\xdd\x7f\xe1\x56\x40\x9f\xca\xc3\x44\xa4\xa4\x77\x5d\xde\xd2\xc8\xa0\x11\xfc\x0d\x76\xdd\x4a\x25\x68\xc1\x04\x2e\x81\x36\x81\xfe\x2d\xda\xc6\x07\x39\xf7\x4b\x50\x83\x93\xa3\x9b\x3e\x71\xe7\x99\x82\x6b\x83\x3e\xcb\xb8\x11\xed\xe1\x94\x86\xc1\x51\x96\x85\x69\xb8\x29\x31\xc2\x8f\xb0\x4e\x4e\x93\xdf\xa1\x71\x88\xb2\xf2\xc2\x1d\xb2\xa2\xeb\x7b\x51\xb9\x7c\x3c\x15\x87\x77\x34\x0c\x3e\x49\xc4\xae\xaa\xd9\x3f\x17\xa2\xd0\x29\x96\x2d\x98\xd5\x77\x1a\x06\x6b\xe2\xb7\xc2\x35\x8f\x1c\x9b\x16\x29\x2a\x3d\xca\xb1\xe0\xa2\x31\xd4\x90\x86\xbe\x16\x8c\x15\xb2\x57\xba\x11\xf5\x7a\x4e\x79\xad\xad\x14\x95\x17\x1e\xc9\xe0\x33\x8c\x4d\xed\xae\xaa\xc1\xb3\xe9\xfb\xb6\xae\x51\x5f\x58\x0f\x66\x78\x47\xf7\xe3\xd1\x94\x4f\x41\x0e\x1b\x30\x14\x16\x8a\xe0\x7f\xca\xd8\xf3\xff\x31\x1c\x47\x5c\xb0\xe1\xd3\xb6\x2d\x6c\x64\x6a\x6c\x71\x9b\xb4\xa2\xab\x04\x3b\x7a\xa0\xca\x9e\xb1\x3e\x3f\xf1\x79\x8c\xa8\x18\xe5\xf5\x0b\x0f\xa5\xaa\x74\x10\xc4\x80\x43\x85\xd1\x65\x22\x57\x95\xa5\x3d\x29\xd1\x4f\xde\x10\xde\xc1\x77\x5e\x4a\x54\x1a\xb2\x03\x3a\x66\x9e\xe7\x9b\x74\x22\x9d\xbb\x4d\x01\x9d\x4e\xd2\x6a\x14\xc6\x14\x5e\x76\x00\x36\x9a\xee\xf2\xa9\x9f\x51\x78\xdc\xb1\x67\x8b\xa9\x6c\x8e\xb1\x01\xdb\x81\xf4\x66\x49\xc6\xc4\x7d\x18\x94\x17\xc4\x4a\x68\x08\x4e\x48\x06\x15\x46\x99\x37\x5f\xe3\xaa\x36\x67\x7c\x90\x6b\x47\xd6\xf2\x31\xf0\x2e\x47\x1d\x44\x7d\xec\xe3\x07\xe1\xda\xc7\xeb\x5b\xae\x8d\xa5\x13\xf1\xed\x93\x95\xa9\x95\x77\x39\xc5\x34\xdd\x9b\x07\x82\xe1\x56\xa3\xb2\x56\x71\xde\xef\x35\xf2\xff\xac\xa5\x51\x94\xa9\x00\x69\xd5\x95\x18\xf9\xed\x24\xef\x55\x31\xf0\x24\x64\xb5\x5d\xe9\x0e\xca\x90\x16\x5d\x27\xce\xf2\xe0\x2a\xcf\x74\x85\x31\xac\x01\x9d\xf1\xa8\x4d\x81\xde\x33\xa4\x9b\xea\x5d\xdc\x73\x10\xb3\xe0\x84\x8a\x7c\xca\x88\x7c\xd8\xf6\x29\x42\x0b\xa3\xb9\x2d\x32\x24\xc9\x5f\xa7\xa7\x88\xe3\x8c\x94\xba\xe3\xca\x22\xba\xd3\xa1\xc1\xe1\xa1\x19\x87\x05\xf3\x04\xa7\xb3\xf2\x4d\xfd\x5d\xf7\xa7\xbc\x07\xde\xdd\xad\xf7\x3c\x77\x9e\x9f\xd9\xb1\xfc\x60\xb0\x05\xaf\x8b\xb5\xd1\x72\x43\x53\x34\x0b\xa7\x70\xf7\x1e\x6f\xb6\xe4\xaf\x17\x24\x47\x3e\xc1\xbb\xcc\x87\x55\x1c\xcf\xee\x71\xa0\xe6\x4f\x47\x5a\x61\x0f\x67\x15\x9f\x62\x4f\x44\xd6\x86\x65\xcf\xb4\xd8\xd2\xc6\x98\xa5\x23\x37\xcb\x35\x48\x94\xe5\x36\xdd\xb6\x6f\x6d\x63\x85\xb1\x8f\x6f\x1f\x2a\x04\x41\x2e\x3d\x2d\x9f\x22\x70\x03\xe9\x47\x7a\x54\x8c\x9b\xbd\x68\x0c\xa6\xf9\x74\x8a\x0b\x88\xa3\x8e\x66\x7e\xd0\xdc\x3a\xe5\xc1\x8e\xdc\x8e\xf0\xdb\x7e\x30\xbf\x21\xc5\x99\xc5\xb5\x55\x60\xf1\xde\xcc\xc6\x54\x07\x8c\x89\x78\x38\xe2\x89\x37\x49\x36\x6c\x49\xb1\xcc\x16\xf3\x4a\x83\x34\x7f\xa5\xff\xb5\x5c\x86\x9a\xe9\x84\xdd\x93\x74\x5c\xaa\x1b\x74\x77\x1c\x0b\x13\xdd\x28\x03\x1f\xc2\x0a\x84\x94\x96\xf0\xb9\xf0\x96\xad\xf0\xab\xd3\x10\x39\x72\x2b\xa2\x20\x87\xa1\x33\x49\x14\x97\x5e\x4a\x70\x0b\xd3\x8a\xa7\xb3\x5d\x32\xd6\x9f\x6c\xae\x06\x37\xb6\xa5\xf5\xdf\x66\x7f\xce\x96\x2c\xb8\x8f\x2b\x9a\x53\xbc\x38\x8e\xd7\xd6\x8b\x28\xa0\x6d\x8f\xeb\xa6\x47\xed\x9e\x5b\x3b\x81\x99\x73\x7f\x2d\xf3\x3a\xb5\xda\x8d\x3b\x06\x69\x6e\x0b\x4e\x6e\x5b\x1a\x2e\xf8\x4f\x9b\xa5\x73\xe8\x02\x7e\x6a\x67\x50\xcf\x54\xdc\x81\x44\xce\x96\x90\x1e\xdb\x7d\x2a\x6c\xf1\x39\xfc\x6d\x06\xb1\xca\x81\xe8\xa4\xee\x80\xce\x8d\xc4\xa5\x31\x39\x57\x67\x87\x34\xeb\x0a\xcb\xd9\x9b\x2b\xfb\x39\xe6\x5a\x2d\xc6\x92\x34\x80\xb7\xe3\xcf\x5f\xd7\x02\xfa\x8c\xe1\x65\x6c\xa8\x4f\x74\xc0\x26\x81\xf5\xd3\x66\xf8\x63\x58\x80\xa2\xf7\x59\x51\xe6\x7d\xaa\x1a\x90\x79\x29\x6e\x7e\xee\xb5\x6c\xbf\xa1\xef\x67\xdf\x16\xfe\xef\xa7\x6e\xa1\xe5\xd7\x25\x3e\x90\xd9\xc1\x23\x59\x25\xa8\x1a\x75\x04\xd1\xe9\x51\xa4\xbd\xf5\xfd\xdc\x37\x92\x5c\xb4\xd1\x41\x1e\x24\x86\x8f\x69\x49\xb4\x33\x18\x8e\x7f\xdb\xe2\x0f\x36\x61\x32\x56\x52\x48\x0f\x06\xd7\x3c\x2c\x37\x13\xf4\xe6\x0d\xd3\xfc\xc0\xbb\xf2\x6f\x9d\x64\x81\x75\x8e\x71\x9c\xd1\xe0\x1a\x9c\x6c\x86\x00\xdf\xb4\xb3\x46\x6a\xab\xe9\x73\xe3\x54\xac\x6f\xa3\xee\x5f\x57\x24\x8e\xc0\x5f\xa0\x8c\xfb\xe4\x3b\xc3\x19\xbf\x56\x7e\x45\x9b\xa9\xcc\xe3\xbd\x26\x6d\x24\x1d\xe9\x72\x12\x6d\xa9\x24\xd9\x27\xd6\xa8\xc9\x84\x36\x83\x4b\x43\xff\x4c\x59\x27\xf9\xed\x13\xdd\x9a\x9b\x3e\x45\x02\xda\x69\x40\xd5\xaf\x2c\x6e\xff\xd6\xdd\x8a\x55\x4c\x35\x19\x49\x37\xa0\xac\x27\x9d\x54\xd7\x97\x64\x32\x4d\x35\xe2\x8f\x81\x94\xca\xbd\x58\x31\xcd\xd2\xe3\xfe\xd6\x10\x87\x48\x50\xfd\xc6\x29\x4f\x73\xf7\x19\x67\xa5\x22\x18\x6e\xbc\xd1\x62\x12\x2e\xb7\xd9\xae\xa7\xb9\xac\x48\xdd\x1b\x51\xdc\x55\x49\xe2\xf4\xe8\xa8\xb8\x61\xe8\x7f\xf9\x1a\xd8\xb9\xa5\x36\x2b\xaf\xd7\xfc\xad\x01\xe3\x7a\xee\xdf\x27\x3c\x88\xf1\xfb\xfe\x73\x6f\x62\x95\xc4\x57\x3a\x28\x80\x29\x5d\x26\x43\x34\xc6\x73\xdc\x19\xa1\x91\xd9\x35\x8e\x59\xe4\xe2\x50\x27\x93\xfa\x8a\xf6\x24\xa2\x54\xcd\x4d\xf8\x98\x2f\x76\x20\x6e\x69\x8a\x09\xd4\x19\x41\x6d\xde\x0b\xa1\x7e\x5e\xbd\xea\xd8\x6f\xf8\x40\x2b\x77\xe0\x29\x74\xc2\x9b\x2b\x1b\x17\x04\x5c\xbc\x8e\x32\xc7\x1b\xf7\x42\xdb\xfd\xe4\x73\x51\x95\x15\x4d\x73\xf8\x01\x76\xb2\xc6\x0a\x6b\x42\x8d\xe0\xec\xf5\x36\x60\x5f\x1e\x25\x00\x93\xdd\xc5\x62\xa1\xa1\x0a\x12\x85\xaf\x68\x43\xe6\x78\x55\xb0\xf1\x36\x8e\xe9\x61\xec\x82\xc2\x48\x45\xa2\x93\xea\x73\x97\x8e\xdb\xcf\x01\x49\xdd\x0d\xb2\x7f\x61\xc9\xf5\x51\x01\xed\x12\xc4\xec\xe9\x40\x3c\xb7\xd5\x1b\xf2\x01\xbf\xa4\xcd\x61\x5f\x4f\xbc\xc3\xa6\x0b\xb7\x55\x11\xa3\x5d\xe6\x97\xcb\x3d\x6e\x7e\x7f\xae\x63\xb1\xac\xec\x1c\xc6\xb3\x2a\x72\x58\x62\x81\x4b\xe6\x4f\x16\x9d\xa3\x86\xa3\x44\xa6\x9c\x54\x5c\xcb\x5c\xc9\x0f\x5c\xa6\x2c\xee\x88\x17\xae\xa1\x74\xaf\x72\x3a\xcd\x93\xe5\x51\xee\xab\x82\x67\x6f\xd2\x51\x38\x9c\xee\xfd\x37\x38\xdc\x9b\xed\x1f\xec\xf4\xd9\xc0\x5f\x44\x11\x67\x66\x9c\xe4\x27\x54\xb7\xf7\xd3\xe2\xf2\x39\x2d\x28\x75\xe7\x8e\xb3\x43\x11\xa6\xd7\x92\x17\x54\x6f\x86\x34\x0a\x70\x38\x8e\xee\x95\x9d\xb0\x73\xdc\x37\xc8\x27\x4e\x1e\xdb\x8c\x36\xb8\xde\x5b\xc3\x10\x6e\x08\x2c\x94\x66\xe0\x5e\x33\xef\xfb\x35\xfe\x86\x1a\x91\xb3\xa5\x44\xce\xc3\x0a\xad\x0d\x2e\x53\x52\x18\xc0\xa8\xba\x30\x8b\x48\xa5\x41\x8f\xe4\x7b\x2b\xea\xa7\x47\xf5\x33\xd0\x9b\x7c\x52\xff\x8b\xa1\x3e\x14\x2e\x7a\x46\xec\xda\xac\x89\xa4\x14\x93\x4f\x2d\xab\x1b\x9c\xb3\xe0\xbd\x24\x35\xb6\xf5\xd7\xa9\x5f\x6c\x22\xd5\xdc\xd0\x67\x09\x85\x27\xbf\x52\xcd\xe1\x24\xde\xbd\x81\x65\xec\x1f\xc7\x8e\x5c\xde\x9e\xc9\x74\xaa\xd5\x9b\xb2\xd7\x5b\x10\x69\xee\x88\xbc\x56\x5f\xb1\xfe\x6a\x2d\x27\x55\xa9\xc0\x09\x39\x3e\x6b\x99\x19\xd0\xb7\x90\x64\x01\x36\x9f\xbd\x66\xd4\x7c\xbc\xe5\x97\xed\xd4\xd8\xe0\x52\x93\x60\x03\x36\x95\x58\xc0\x9f\x9e\x7b\x66\x18\x15\x1f\x9d\x93\x4a\x81\x12\x72\x73\x6e\x3e\x07\x14\x94\xef\x8b\xc1\xab\xdf\x8f\x7c\x7e\x45\x9b\xe3\x65\x8f\xf4\x93\xa9\x1e\x53\xeb\x70\xc5\x58\x5a\xa5\x98\xf5\x1d\x5b\xe5\x5b\xfe\x27\xc7\xf0\xba\x67\xfb\xd9\xdd\x10\xe8\x2c\x7b\x6a\xbb\x70\x71\xa5\xa2\xcb\x5f\xa6\x63\x1d\xb7\x3d\x32\x74\xe8\x75\xcd\x93\x54\x9b\x9d\x3f\x6d\x42\x25\x45\xf2\x21\xf6\x15\x76\xb5\x83\x53\x7c\xae\x7b\xb5\xf0\x3f\x52\x27\xeb\xef\xc7\xc1\xcf\xee\x1e\x47\xdd\xf6\xa5\x58\x8e\xe8\x14\x7b\x08\xa6\xde\x97\x4e\x43\xe2\xf5\x7f\x73\x3c\xf3\x29\x87\xbb\x69\x98\x65\xb3\x97\xcb\xf5\x10\xfc\xbb\x57\x59\x27\x67\x82\x32\x54\x9a\xba\xbe\x3a\xf9\x06\x24\x65\xbe\x64\x03\xeb\xd4\x6d\x5b\x60\xeb\x07\x66\x17\x45\x6b\xe4\x41\x19\x2a\x5d\xcc\x5f\xad\xc8\xc5\x17\xad\xdd\xff\x28\x0d\xf0\xc6\x5f\x5d\x67\xcb\x65\x46\x04\xb8\xcc\xba\x9b\x09\x52\x65\xa7\x0a\x8e\x12\x77\x0c\x2c\xbb\xa3\xa2\xe7\x9a\xfe\xf2\x89\xcf\x5c\x3e\x36\x3b\x6d\xbe\xdb\x38\x6a\x88\xba\xf9\xda\x35\xcd\x36\x09\x41\x76\x37\x7e\x24\x85\xce\x73\x79\x9a\x50\xf6\xbf\x00\x6d\xe0\x7d\xb2\x7f\xb5\xd3\x82\xee\x28\x88\xc2\xad\xe6\x74\x56\x9c\xcc\xa9\x56\x03\x7c\x5d\x28\x84\xda\x21\x4c\x91\xd9\xac\xe9\x1b\x0f\x11\x67\xd1\xbb\x06\x22\x84\xb7\x53\x9a\x5d\x67\x44\xaf\x0f\x60\xf0\xdc\x91\xf5\xed\xc1\x07\xb7\x2c\x92\xb9\xdd\xbf\x22\x03\xab\x10\x9a\x8d\x93\x96\x57\x59\x0e\x4f\xd9\xc5\x10\x4d\x6c\x21\xb1\x24\x9b\x3c\x59\xa5\x85\x3e\x7c\xc0\x6b\x37\x34\x7a\x0d\x55\xd0\xb5\xe6\xaf\x8a\xf8\xcf\x61\x3a\x21\x69\x00\xcc\x0c\xfc\x3f\x82\x82\x32\xb7\x53\x16\x7f\x37\x9b\x25\xb9\xf5\x74\xf0\x3d\xd5\xf6\xa0\x08\xfc\xe3\x98\x64\xc6\x7c\x44\xd0\x42\x80\xac\x8e\xad\xed\x9a\xfa\x85\xe3\xb4\x39\xbf\xf5\xe2\x0d\xd4\x6c\x83\x60\xd3\x8b\x96\x7a\x47\xf7\xf9\x87\xf2\x29\xfc\x77\x9a\xf8\x02\x19\xa5\x75\xc3\x9f\x0d\xcc\x0e\x60\x00\x7e\x9d\x9d\x20\xf1\xaa\x35\x23\x46\x53\xf7\x66\x1a\x4c\xb4\xed\xd3\xd7\x59\x89\x18\x63\x30\x45\x56\xf2\x94\xbd\xde\x9b\x16\x96\x8f\xdb\xe6\x41\x61\xa4\xd4\x1f\x6e\x37\x89\x32\x20\x88\x26\xc8\xe8\x77\xdc\xe5\xe1\xca\x5c\xd6\x87\xdb\xf4\x0d\x0b\x2d\x7a\x9e\x9a\x72\x0d\x20\xbc\x36\xba\x95\x82\xac\xde\x90\x04\x27\x0e\x69\x20\xc2\x7c\xe0\x12\x16\x61\xeb\x08\x8e\x52\xe9\x21\x57\x84\x2f\xba\xa1\xed\x13\xc3\x8d\x98\xda\x79\x9f\xf5\x70\x10\x19\x7c\x05\x12\x09\x4f\x5d\x55\x21\x09\x6c\x08\xb5\xfe\xbf\xf7\x25\x84\x26\x5a\xed\xfd\xcf\xd8\xa2\x5e\x82\x98\x0f\xcb\x79\x92\x5d\x1c\x35\x20\x21\x33\x18\x29\xfc\xcd\x13\x92\x1e\x23\xd9\x69\x11\x03\xfa\x34\x63\x6f\x2e\xff\x2a\x4b\x7c\x0f\xa0\xf3\xc3\x8f\x4f\x89\xe2\xf9\xa4\x93\xe1\x1e\xa2\x09\x83\x53\x31\x49\xe7\x10\x3a\xa8\x41\x72\x49\x40\x96\x35\x35\x42\x23\x09\x95\xc4\xbf\xa2\xde\xbb\x5d\x07\x58\xb8\xa0\x28\xfb\xe6\x31\xd7\xa1\x66\x72\x61\x12\x8f\xbd\xba\x93\x7b\xd3\x3b\xf9\xcd\xfb\x07\x48\xf2\x87\x59\x1b\x31\x22\x0a\x35\x60\xa7\xa3\xe3\xa7\xf6\x04\x6d\x10\xae\xc6\xf7\x1c\xd9\x42\x15\x0d\xc5\x53\xb3\x2c\x99\x19\x21\x09\x56\x58\x48\x35\x04\x31\x60\x1a\xf1\x2b\xc3\x99\x95\x8f\xf1\x61\xbe\xae\x7a\x64\xa1\xa2\xd4\xc0\xea\x7b\xfd\xea\x6e\xb3\x2a\x0b\x98\x09\x0a\xa8\xe5\xb0\x11\xdd\x76\x9f\x0f\x9d\x17\xd1\x81\x59\x89\x43\xae\x20\x08\xe1\xa7\x86\x34\x64\x75\x07\xdd\xd7\xaf\x6c\xe8\x92\x39\x15\xc2\xbf\x9f\x5b\xb7\x1d\xc9\x21\x05\x41\xc8\xb0\x22\x7c\xe7\x47\x68\x01\xc9\xb6\x7f\x06\xd6\x86\x9d\x93\x26\x99\x18\x2c\xa4\x1e\x82\x48\x17\x33\x5c\xfb\xf8\xfb\x56\xe6\xb3\xe5\xd3\x11\x56\xb1\xee\xf8\x91\x51\x8a\x77\x01\x37\xc8\xec\xdb\xf4\xb7\x33\x99\x53\xed\x1c\xc8\x3f\x9e\x4d\x02\xd1\xf2\x14\x96\xd3\x77\xc4\xf0\x79\x71\x5f\x65\xf9\xf8\x7a\xff\xd0\x6f\x59\x56\xbb\xec\xd8\x60\x36\xe0\x4b\x40\xd1\x8e\x6b\x7b\x9c\xde\x84\xcf\x76\x91\x64\x76\xeb\xe4\xba\xfa\xaf\xcf\xc8\x68\x06\x4d\x30\xfc\xf3\xd3\x77\xb0\xf1\x4d\xa9\x0a\xf8\x55\xf3\x31\x7d\xc8\x82\x67\x72\xcf\x5a\xe7\xef\x67\xc9\x8b\x22\x92\x04\x49\x80\x26\xfe\xc3\x80\x12\xef\xb2\x37\x2b\xe0\xc4\x94\x99\x43\x26\x49\x54\x27\x3b\x9e\x45\x27\x5d\x5d\x79\x86\x23\xe9\xd4\xdc\xba\x2a\x0e\x72\x99\x3e\x4e\x74\x79\x6f\x1b\xa8\xb2\xfc\xc2\x55\x7f\xc2\x89\xe5\xe8\xaa\x51\xb0\x62\x70\x99\x88\xba\x9d\x18\x18\xaa\x92\x97\x7c\xb9\x42\x5d\x01\x35\xc3\x7d\xec\x70\xa2\x65\x6a\xa0\xd8\x1c\x2a\x67\x36\x1d\x9e\x0e\x60\x01\x2e\x2e\x3e\xbb\x16\x90\x88\x73\xaa\xc1\xc7\x6a\x26\x08\x42\x97\x2e\xb5\x9f\x5d\x64\x02\x22\xfb\x04\x64\x4a\xc6\xed\x2c\xdc\x63\x0c\x05\xf9\x51\xbb\x33\x3e\x34\xae\xcf\x39\x7a\x57\x0b\xdf\xa5\x6e\x9f\x44\x39\xfb\x33\x20\xf2\x6e\x1e\x57\x7f\x35\xb1\x15\x95\x0a\xf9\x50\xbb\x5e\x24\xa1\x19\xd4\xb1\xff\x85\x25\xd5\x89\x66\x7b\x94\x2f\x4e\x97\x8f\x54\xc0\x3a\x8b\x31\x6e\x39\x1a\x5e\xcd\x19\xd7\x41\xde\xcd\xfc\x15\x77\x12\x74\xc9\x02\xe6\x99\x1f\x46\xcb\x35\xbd\x8a\x22\x01\xa1\xa6\x56\x93\x38\x66\x5b\x8e\x0a\x62\xc4\xbc\x6f\xf7\x5b\x88\xf4\xe9\x2b\xb3\x81\x5f\x47\x04\x7b\x5d\xf8\x45\x45\xfe\x09\xc6\x3b\xd3\x8e\xb1\x9d\xba\xe0\x1d\x03\x0d\x67\x52\xec\xed\xe3\x47\xe8\x73\x3a\x2e\xb1\x07\xd4\xf4\xf1\x5f\x5d\xf0\x18\xbd\xc3\x07\x96\x88\xe6\xda\xe8\x0c\xc6\x7c\x0b\xf0\x8a\x57\x47\x7b\x4f\x4c\xef\xb3\x0a\xe1\xca\x57\x33\x4e\x2f\xec\x06\x9c\x62\xe2\x63\xa0\x0c\xc5\xc4\x07\xcb\x6c\xa0\x1f\xd7\xaf\xa5\xd9\xb8\x87\x58\x11\xab\xda\xcc\x39\x0b\xdb\x72\x7f\xd6\x03\x79\x54\xba\x59\x97\x98\x51\xfe\x24\xc7\x3b\x34\xbd\x9d\xb5\x5f\x08\x4e\x91\x0e\xe0\x81\x4d\x3b\x73\xd1\xd1\xfb\xdf\xb4\xa0\x03\xfa\xba\x5f\x59\xc3\x71\x46\x3f\x2b\xbe\x4f\x99\x2c\xa6\xba\xc7\x5a\x20\x0f\xfa\xde\x59\xc3\xe0\xa2\xbf\xee\x7f\x4b\x82\x1c\xe8\x36\x83\x6e\x66\xda\x0c\xb8\x5f\xd0\xc2\x10\xdf\xd6\xca\x59\x3e\x26\xe1\xdc\xce\xc3\x9d\xbb\xeb\x9c\x16\x8e\x4d\xaa\xa6\x47\x92\x6d\x45\x9a\xbc\x55\x01\x89\xde\x05\x68\x3a\x0a\x35\x70\xe7\x3c\x6a\x23\xbf\x32\xdf\x8a\x22\x54\x69\x91\x33\x32\x31\xbc\x53\x0a\x17\x43\x7c\x65\x6b\x3f\x8e\x81\x73\xd5\x04\x69\x9c\xb3\xaa\xb6\x3e\x24\xbf\xf4\xfc\x0d\xe2\xf4\xdd\xd8\xde\x84\x22\xa7\x97\x5b\x5a\x63\x8f\x34\x6a\xb5\x14\x88\xc9\x59\xd0\x7a\x1d\x96\x0d\x9b\x4b\xfb\x3b\x16\x89\x35\x05\x83\x78\xd4\xda\x5b\x17\x49\xd5\xac\xea\x62\x7d\x5e\x7d\x5d\x64\xa1\xd7\x5b\xb5\x1d\x84\x20\x7c\xed\xd8\xc8\xc5\xd6\x8e\x8f\xb0\x18\xce\x2a\x4f\xb5\xd7\x15\xa7\x9f\xbe\xb7\x10\xde\xb7\x74\x49\xe1\x05\x73\x6e\x66\xd8\xde\x24\x7d\x5f\x5b\x37\x71\x67\xb2\xfe\xd8\xf9\x3c\x28\x2e\x75\xe8\xee\xf4\xea\xf8\x68\x3c\xc3\x76\x5b\xb3\x6c\x23\xe6\x30\x51\x14\x61\xbb\xcb\x71\x85\x68\x08\xfa\x3c\x74\xf6\x20\xd7\xde\x65\x23\xb6\x5f\x49\x22\x98\x89\xa6\xc3\xa8\xb3\xd5\x94\x53\xd3\xae\x69\x44\xf2\xf3\xb1\xeb\x64\xea\x9a\x0e\x0a\x90\x76\xe6\xf8\xfc\xe9\x8f\x29\x60\x45\x79\x97\xce\x50\x05\x71\xd0\x08\xc9\xb5\x4f\x94\x2a\x82\x3b\x29\x26\xd1\xd3\xae\x47\xf5\x89\x40\x53\x79\x45\xa5\xda\x98\x09\x4f\xca\x09\x37\x03\x41\x57\xaf\x01\x0a\x89\x1d\x57\x1e\xfe\x43\x55\xcc\xe7\x3b\xc6\x32\x17\x42\x13\xa8\x05\xac\x3d\x41\x9d\x28\x13\xb9\xb5\xe0\x67\x33\xb1\x47\x0e\x4d\x3a\x1e\xd4\xf1\xef\xc7\xf3\x71\x84\xbc\x0c\x62\x4e\xa4\x72\x95\x8c\xcc\xf8\xaa\x3a\x50\xc9\x3d\x50\x06\x5d\xca\xbb\xc5\x9a\xb7\x6b\x39\x4b\xdc\x78\x4f\xe4\xff\xee\xaf\x09\xf7\xa6\x57\x23\xef\xdf\x44\xcd\x7a\x1d\xc1\x0f\x24\xae\xe4\xcc\x6f\xa2\x03\x16\x12\x4a\x9c\x3b\xd7\x62\x9d\xc9\xa9\xa8\x2e\xbd\xa9\x87\x02\x36\x8e\x4c\x21\x91\x1b\xac\x08\xe4\x4f\x37\xed\xe8\x9e\x88\x81\xe3\x1a\xb5\x2b\xa3\x0f\x74\x28\x1a\xc0\x19\xa5\xed\xb3\x20\x6d\xc9\x79\x16\x3a\x60\x5c\xf7\x5a\x6f\x09\x85\xef\x09\x49\xc8\x9d\x3b\xc6\xef\x3d\x5b\xcb\x00\x20\xe5\xdd\x4a\xd9\x86\x64\xd4\x56\xc3\xce\x3a\x57\x7a\x4c\x67\x3f\xd5\x0e\x27\xcc\xc9\x39\x73\x24\xa7\xbd\x7b\xf8\x41\xb3\xdf\xa6\x4a\x5f\x53\x35\xc0\xaf\x7a\xab\x53\xf6\x81\x85\x66\x9c\x26\xeb\xb8\x4b\xda\xea\x3d\x6c\x32\xca\xe6\xce\xbd\x81\x9c\xb0\x0f\x64\x8c\xcb\xcd\x69\xa3\x5c\xcc\xbb\x23\xf7\x33\xf7\xb6\x0e\x6e\xc0\x3e\x93\x94\xc6\xe4\x9a\xc6\x27\xc3\x1e\x01\xd0\x2c\xc5\xed\xc0\x9e\x74\x74\xc3\x83\x6f\xec\x7a\x4b\xe4\x87\x9a\x98\xc7\x77\x01\x7f\x8f\x68\xe0\x63\xeb\xc5\x3b\x78\xdc\x7a\x62\x25\xcb\x73\x98\x56\x97\x31\x45\xc2\xb4\x46\xb4\x7b\x8c\x3c\x92\x64\x3c\x14\xcb\xb5\x02\xbf\xe7\x21\x88\xb3\xc7\xa2\x91\x5a\x39\xbd\xb8\xdd\xc7\xfc\x97\xcf\x13\x03\xa7\xcb\xf3\x31\xc7\x24\x25\xb4\x94\xe0\x1b\x6c\x47\x35\xfc\x20\x64\xbd\x18\x51\xc2\xb2\x55\xa8\x90\xde\x10\x0d\x5a\x93\xb4\x9c\xe7\x61\x95\xf2\xd9\x4c\xd3\x3f\x9b\xdc\x44\x66\xff\x9c\x85\x54\x00\x32\xd2\x5b\xc7\xe9\x98\x10\x67\xd2\x48\x80\x08\x36\x93\xc2\x26\x3c\x0d\x20\x25\xac\xe2\x02\x61\xf9\xa1\x5b\x07\x05\x86\x04\xb5\xb7\x5b\x58\x1f\x0e\x0f\xd4\x7b\x5f\x6e\x8a\x5a\x67\x97\x29\x03\x51\xf7\x4b\xa1\x27\xcb\x8b\xdb\x7f\x9c\x9b\xec\x3f\x49\xc2\xe0\x11\x36\x9a\x5f\x0a\x9b\x52\x90\x83\xe6\xf1\x85\x74\xff\x6e\x5a\x4e\xfa\xe8\x4b\x95\x92\xe5\x62\x64\xda\x4a\x36\xea\xcf\x1b\x97\xcf\xb1\xfd\xd5\xe1\xc8\x01\xfd\x36\xe7\x00\x5d\x56\x4d\x59\xf1\x17\x65\xb0\x2b\x4f\xc8\x33\xf4\xc7\xea\x9a\x2b\x49\x63\xd5\x56\xe5\xa3\x7f\xd3\x7b\xc7\xbc\x7d\xd9\x13\x89\xc1\x45\x3a\x1b\x5c\xa5\x4c\xf4\x38\x9d\x9a\x47\xae\x26\xa7\x79\x1c\xc2\x19\x4c\xcb\x5c\x3f\x27\x8e\xfc\xa7\x41\xca\x2d\x02\x6e\x33\x1a\xd3\x71\xe6\x7a\xc9\xbb\x98\x4e\x1c\x14\x7c\xec\x11\xaf\x54\xb6\x00\x8a\x97\x8d\xa3\x0a\x86\x27\x5b\x39\xd1\xe0\x1c\xa6\x65\xcb\x0d\x2b\x48\xe0\xf0\xa0\xca\xa0\x32\xd2\xcd\xa1\x99\x71\x67\xfb\x70\x79\xf1\xb7\x7b\x4d\xc4\x71\x2a\x73\x95\x0b\xa3\xc9\xfb\xc8\x52\x2b\xfc\x95\x15\xa1\x89\x05\x9a\x5b\x9b\x13\xc5\x44\xa0\xb5\xfd\x81\xe6\x16\xc4\x68\x3a\xd6\x31\x74\xeb\xa5\x0a\xb0\x0b\xbf\xe0\xdc\xe6\x2b\xb3\x35\x21\x80\x63\xa9\x54\x36\x7e\xac\xad\x32\x39\x30\x55\xd7\xef\x87\x54\xb5\xbe\x31\x32\xf8\x93\xb7\x6c\x1b\x16\x19\x5f\x94\x25\xd0\x4a\x87\x58\xd1\xaf\xac\xbb\x73\x57\x05\x0a\x11\xf7\x9b\x34\xe3\x7b\x7a\x57\x8d\x4d\x67\x5c\x4e\x4b\x35\x2d\xd9\x10\xcd\xf3\xd2\xc6\x51\xcb\x5b\x08\xc3\x4e\x62\xb6\x05\xda\xd2\xa9\x50\x1c\xab\xa2\x37\x06\x36\xf7\x66\x36\xb9\x2a\x09\x69\xc3\x1d\x57\x06\xc0\x2b\x76\x8d\x96\x85\xfb\xe6\xd6\xbd\xed\x6d\xcd\x1f\x97\xb7\x29\x02\x21\x35\xd0\xce\xb9\x8c\x5b\x36\xa3\x73\x82\xbe\x46\xa3\x85\x0e\x4d\xb7\x5e\xc8\xca\xcf\x41\x3d\xf6\xcc\x8e\x05\x0d\xa4\x05\x78\xcc\xe6\x55\x84\xd3\x34\x6b\x2c\x7a\x32\x8b\x26\x77\xb1\xe9\x5b\x4c\x74\x02\x63\x16\x04\xa7\x4c\x24\xf9\xcd\xe9\xe5\x4f\xeb\x14\x97\x83\xb8\x17\x64\x51\x52\x4f\xbd\xbd\xd7\x37\x0d\xfe\x60\xf7\xfd\xde\x77\x0d\x15\xc6\x2c\x08\xeb\xcf\x6b\xcf\x1a\xc0\x9e\x8d\xdd\x76\xcb\x4a\x62\x1b\xf9\x6f\xfa\xbe\x84\xfd\x48\x25\x6f\x31\x66\x01\x58\x08\x5b\x54\x32\x77\xe4\x79\x5b\x3e\x47\xc0\xbd\xca\xec\xce\x89\x6b\xf6\x21\x55\x01\x85\x8d\xdd\xb1\x66\x5e\xd4\x52\xa0\x06\xc1\xa7\x57\x23\x46\x6c\xc0\xe6\x8f\xe6\x14\xe5\x23\x61\x43\xf6\xf8\x0e\x45\x39\xf8\x98\x82\xf4\x33\x7f\x65\x40\x85\x07\x56\x89\x82\x7e\x7c\x48\x63\x43\xc8\xe4\x48\x05\xbd\x3a\x4d\x02\x74\x80\xa0\x3b\x74\x5e\xda\x5f\x37\x36\x03\x41\x9f\x34\x62\xe8\x5f\xa2\xfc\x1c\x1e\xd6\xa6\x85\x46\xa1\x70\xe8\x15\x55\x6e\x5a\xdf\x65\x8d\x61\xf8\x6c\x96\x37\xd8\xee\xea\x72\xf6\xb6\xbb\x9c\xc4\x14\x0a\xd8\x5f\x4b\xed\x0a\x01\x9b\xf8\x79\x5a\xf6\xad\x8d\xb6\x0d\x47\xd0\x9b\x1f\x37\xa4\xca\xd7\xc9\x40\x12\xa0\x21\x1f\x92\x0f\x0a\x0f\x39\xf3\x96\x84\x84\x2a\xb4\x4f\x74\x79\x83\x35\xb3\x4f\x6d\xa4\x8b\xa5\xb8\x8c\xb5\xc6\x8e\x92\x17\x4f\xdc\xe3\x20\x90\x87\xd9\xbc\xb8\xc4\x3f\x68\x2c\xc0\xf3\x3d\x91\xef\xf9\x93\x6b\x19\xad\x5a\x0d\x69\xaf\x57\x96\x8b\x2f\x9f\x24\xaa\x08\xb1\xb0\x92\x80\x24\x70\x76\x0c\x38\x95\x8a\xc9\x76\xb7\x3a\xf5\xb3\x4a\xe5\x0f\x97\x42\xa6\xfd\xd1\x30\xec\x4c\x20\x89\x61\x29\x1a\x10\x78\x3b\xf9\x82\x2e\x20\x99\x01\x29\x70\x96\xec\xc3\x0d\x85\x43\xb5\xc4\xdd\x4a\x35\xda\x7f\x13\x8d\xd1\xde\x2a\x6b\x3b\x42\xe1\x8e\xfd\x5f\x1e\x43\x0c\x47\xd2\x73\x9c\x06\x59\x19\x4d\xed\xc1\x9a\x5d\x63\xd2\x2e\xfc\x52\x26\x9a\xcb\x61\x26\x85\xb8\xf8\x25\xfa\x24\x8f\x6a\x35\x63\x29\x68\x1b\xbf\x90\x52\x27\x1c\x75\x04\x2d\x59\xf5\xb9\xd9\x78\x8e\xf1\x0d\x9b\x4b\x27\x45\xfe\x60\x56\x26\xd3\xf7\xb9\x92\x20\xf6\xdc\x34\x35\x09\x42\xc1\x5b\x82\xa9\xeb\x91\xd4\xfc\xea\x8c\x8e\x96\xfb\x50\xbf\xde\x7f\x2f\xb2\x58\x27\xd2\x77\x07\xf4\xc7\x3e\x31\x03\x2c\x14\x81\x90\x92\x6b\xe7\xf0\xbb\xa3\xeb\x6f\xc2\x32\xf7\x33\x95\xcb\x8d\x28\x1c\xa6\x33\x52\x26\x4b\x28\x1c\xaa\xe8\x5a\x05\x93\x0a\x2a\x6f\x47\xb5\x75\x81\x57\xf5\xa5\xd1\x1e\xff\x11\xfc\xb5\xc9\x83\xc2\x7f\xc9\x30\x8a\xa0\x79\x86\x8e\x96\x1c\x17\x63\x7a\x94\x68\xb4\x2b\xc3\xe0\xd5\xbe\x10\xc6\x60\xcd\xdd\x22\x9b\x23\xc6\xdf\x27\x2f\x7e\xee\x7e\x5c\x56\xcf\xcb\xe7\x21\x81\x9e\x97\xf3\x7c\x72\x5d\x17\x85\x9b\x9b\x71\x9e\x29\xda\x5a\x1f\x77\xf9\x3b\x75\x28\xa2\x0f\x94\x07\x81\x16\xdb\xe8\x0a\x1c\x73\x9d\x89\x7f\x32\x73\x05\x8c\x18\x6b\x23\xc6\x39\x6f\xac\x6c\xd5\x35\xa4\x65\x11\x58\x7f\xb7\x04\x87\xa2\x46\xa9\x89\x3e\xe0\xc7\x13\x4c\x1e\xb3\xbd\x43\xe7\xf9\xfe\x9b\xbf\xc6\x39\xc4\x34\x2b\xe0\x16\x76\x81\x43\xcd\x68\xba\x4b\xf7\x81\xb6\x93\xbc\x8c\x38\xbb\x4a\xf0\x80\xbc\x5a\xd0\xe1\x40\x01\x17\xd4\x82\x86\x66\x2c\xc8\xa2\x1a\x73\xa0\xf7\x1c\x86\xf8\x2e\x78\x2b\x26\xea\xf2\x20\x76\xc7\xc0\xef\x46\x87\x56\xbf\xf9\x99\x47\x4f\xbc\x1e\xca\xe0\x1c\x35\x55\x8e\x26\x63\xcf\xeb\xda\x5d\x52\x8b\x76\xbe\x78\x96\x53\x5d\x82\xb6\x91\xfc\xe2\xfe\xc0\xaf\x16\x62\xfc\xc6\x67\x34\xf4\x58\x5a\xcb\x6f\x8e\xee\x36\x46\xfb\xc0\x1d\xd1\x35\xa0\xb0\xc4\x10\xd9\x2c\xc3\x2c\xf4\x6c\x0c\x8f\x7d\x19\x45\xb6\x07\x8b\x3c\x4e\xe8\xe4\xc7\xc3\xe8\x0d\x2d\xa1\x76\x90\x62\xed\x33\xf3\xe1\x59\x51\x7b\x4a\x92\xb9\xed\x93\x67\xe3\x07\x6d\xfc\xb0\x26\x1f\x9c\x27\x3d\xd6\xb4\x7f\xf4\x5e\xd1\xc0\x75\xbf\xa6\x82\xe7\x34\x9e\x19\x7e\x47\xbd\xb6\x35\xfb\x35\x0e\x7d\xed\x01\x66\x0f\x27\x35\x1c\x0d\x34\xdc\x28\xc6\x2f\x4d\x56\x48\xf6\x6b\xdf\xfd\x87\xed\x90\x24\x6a\x19\xd4\x66\xf7\x7c\x3d\x82\x9e\xef\xff\x1d\xc1\xff\x9f\x24\x24\x8d\xf0\xb5\xb1\xb0\x99\xea\x5a\x6f\xf1\x37\x4b\xb2\xc1\x92\xe4\xa7\xdc\x20\x7b\x21\xcd\x27\x55\xea\x4b\xd9\x54\xdb\x0e\x7c\xa5\x87\x6a\xfa\x93\x61\x83\x95\xdb\xcc\xf1\xce\xb7\x8d\xba\x10\x11\xb4\x2a\x4e\x31\x4e\x2e\x01\x87\xe6\x45\x15\xaf\xb1\x1f\x22\x4b\x0f\x24\x8d\x57\x75\x6f\xf4\xad\x77\x1f\x8d\xcd\x74\x6f\x96\x4e\x1e\x60\xcf\xf1\x4d\xb6\x4c\xb1\x51\xb8\x19\x80\x2d\x60\x0e\xe3\x81\x65\xfb\x35\xfd\xc8\xb2\x31\xcf\xbb\xe0\x49\x75\x25\x6b\x50\xdc\x2f\x2d\xd9\xdd\xb1\x16\xe8\xc9\x73\xd5\x96\xc0\xbb\x73\xc3\x20\x74\x7b\x1e\x37\x38\x34\x9f\xaa\xf7\x57\xd0\x67\xd0\x98\x3e\x8b\xa8\x26\xa6\x2f\x4c\xd6\x71\xd5\x6b\x92\xa4\x8f\x82\x20\x0a\xad\xf8\x35\x42\x00\x11\x13\x75\x2f\x4e\x21\x26\x9f\x1d\x56\x72\x57\x79\xaf\xf2\x3a\x72\xf4\xdb\xbb\xf9\xeb\xea\xe1\x1e\x81\xdd\xaa\xe9\x17\x5c\xa2\x68\x63\x24\xf4\xdd\xd4\x1b\x8d\x99\xf9\xe8\xdf\x7a\x0a\xf4\x3e\x0d\x8c\xb9\x8e\xd4\xf6\xd0\x6b\xe3\x30\x58\x75\x8b\xa2\x9d\x80\x24\x32\x92\xd3\xa5\xcb\x0b\x83\xcd\x0e\x07\x65\xa4\x5a\x6b\xc9\xbd\x21\x1b\xf1\x61\x3f\x6c\x4e\x0d\x7e\x65\x0c\x36\xae\x6f\x0e\x93\xda\x02\x2f\xaa\xf1\x32\x9e\xd3\xff\xa8\x0a\xed\x2c\x60\xf6\xda\x4a\x06\xee\x70\xdb\x43\xa4\xc2\xa4\x7d\x2e\xfb\x8f\xb8\x60\x2b\xb8\x9d\x21\x44\x5e\xd5\xdf\x3e\x2a\xd6\x73\x0b\x7a\x8d\x09\xd1\x36\x24\x10\x3d\x97\x53\xd0\x4c\xc5\xb7\xef\xae\x4e\x14\x40\x80\xff\xf8\xec\x2e\xff\x1a\x75\xc4\x71\x3a\xd5\xc7\x81\x22\x73\x56\x54\x2f\x60\x46\xf6\xb9\x1f\xaa\xb5\x39\xa6\x28\x11\x54\x89\xfe\xae\xa4\x3f\xfe\x4e\x95\xcf\x97\x72\x78\xfd\x60\x67\x0c\x47\x5d\xe5\xfe\x22\x30\x7e\xae\xa7\x40\x12\xc0\x18\xaa\x66\x8c\x31\x36\x15\xd2\x50\xb2\x6f\x67\x1d\xb4\xfb\x35\xfe\x23\x7a\x20\x02\x0d\x5a\xaf\x1e\xca\xf1\x66\x36\xfe\x1b\x2e\x30\xe5\x2f\xd8\x1f\x18\xc7\xce\xe0\x9e\xb6\x05\x9d\xc4\xa6\xba\xb0\xcb\xf3\x59\x0e\x78\x3d\x88\xfd\x6c\x9c\xb2\x33\x0a\xc3\x37\xa0\x28\x5f\x3c\x91\xd4\xda\xe1\x33\x0c\x74\x81\x67\x14\xdd\x1e\xe2\x9e\x99\x7d\xfe\x90\x0d\x21\x4e\x07\xe1\xda\xc7\x53\xf3\x4e\x4d\xcf\xf0\x41\x24\x89\x4e\xb3\x44\x88\x3a\x5f\xff\xb2\xa7\xe0\xb8\xf9\xf8\x3e\xab\xfa\x72\x83\x1a\x6b\x3f\x01\xfd\xf2\x34\x7b\x22\x33\x0d\x17\x10\x38\x8d\x30\x63\xcd\x4e\x61\xe2\x54\x63\xa3\x4b\x71\xce\x44\x88\x45\x0d\xdc\x54\xcc\x64\x34\xb0\x90\x5f\xe0\x7a\x85\xfc\x9b\x69\xd4\xc5\x00\x47\x05\x62\x20\x2c\xfb\x6d\x2c\x15\xfe\x35\x61\xcc\x56\x0d\x88\xc0\x08\x93\x64\xb7\xcd\x92\x95\x60\x55\xb0\x5b\xcb\xd7\xfe\x4c\xc2\x91\x44\x61\xb5\x80\xd0\x7e\xf3\xae\x8a\x83\x00\xf0\xfb\x77\x0b\xa6\xc0\x79\xbb\xa6\x03\xe1\x93\x0d\x38\x03\x8a\xe5\x47\x97\x8e\xa8\xfe\xb2\x2c\x3f\x6b\xb0\xf9\xcf\xbb\xd8\xd2\xdd\xe7\x96\x27\xd4\x44\xe6\xb3\x59\xc3\xbd\x46\x86\xb4\x65\x2a\x68\xa5\x37\x98\x8c\xe7\xd1\x44\x48\xd6\x7a\xe9\xe0\x19\x22\xa2\xd3\xc7\x03\x97\xca\x30\xff\x67\x13\xa5\xe6\x90\x95\x0c\x01\x03\x93\x48\xc9\x24\x93\xe1\x11\xa5\x33\xdb\x2e\x3f\x09\xad\xbf\xca\xe4\xb3\xda\xfb\xb3\x7d\xc6\x6f\xf8\xa2\x22\x2f\xec\xda\x95\x54\xaa\xb3\xe6\x35\x68\x37\x55\xc4\xb4\xac\x09\x3d\xdd\xf3\x7f\x52\xb7\x1a\x98\xa2\x75\xc6\x4a\x13\x38\x3f\xf8\x28\x0e\xdc\x23\xa0\x3a\x8c\x0c\x76\xb4\xdf\xc0\x86\x7a\x6e\x5b\xdb\xa2\x31\xcc\x6f\x66\x3e\x1a\xd3\x1b\x19\x29\x12\x14\xee\x55\xa7\x94\x3b\xd5\x09\xa1\x51\xf0\xc9\x1f\xc5\xa1\xe5\xe6\x78\xfc\x4a\xce\xe2\x0d\x89\x81\xdc\xe1\xe5\x07\x89\x20\x8d\xd4\x50\xd3\x41\xc9\x8e\x18\x17\xb8\x6a\x59\xd8\x1d\x2a\xa3\x0b\xe3\x8b\xd5\x35\x50\x64\xc9\xdd\xfd\x99\xe2\x57\x86\x44\xaa\xbd\x6f\x53\x56\xc3\x4e\xfd\xe2\xa5\xb8\x79\x41\xb9\x8b\x7f\x31\xa6\xf5\xac\x01\x8a\x09\xff\x77\x6d\xf7\x42\x08\x73\x5a\x62\x05\xf8\x04\x7e\xe1\xf3\xae\x8f\xc8\xa2\xd6\x21\x27\xe7\xbc\x27\x0b\x0a\xd7\x30\xfd\xe0\xe6\x25\xc3\x04\xd0\xa7\x0f\xf1\xe2\x9e\x6d\x37\x89\x16\xa2\xe9\xaf\xbc\xf3\xab\x24\x04\x20\x9a\x9d\x01\x7d\x9f\xac\xfc\x16\x53\x8d\x7e\xeb\xe9\xfe\x0c\xa9\xdd\x1e\x2a\x0f\xb8\x9d\x59\xe1\x38\xc3\x05\x12\x6a\xea\xd5\x26\xf6\xa9\x1c\xcc\x89\x54\x91\xcf\x41\xcf\xde\xbb\xbd\xc5\x0c\xa2\x57\x7e\x77\x38\x53\x7a\x16\xb9\x75\x84\xa2\xe0\xf0\x11\x89\xc2\xed\x08\x62\x1a\x06\x22\xb2\x79\x30\x1d\x38\x2f\x1b\x4e\x4a\x25\x50\x96\x60\x13\x2c\xa4\xa3\x6f\x1d\xf9\xb5\xd3\xd2\x10\xae\x6e\x8b\xe7\xfe\x06\x7e\x33\xed\x5a\xb5\xc0\xb8\x52\x52\x11\x2a\xc1\x0a\x60\xbf\xa4\xcf\xd7\x7b\xb7\xa9\xa4\xed\xf5\x1b\x12\x0a\xe3\xfd\x8b\x7a\xf1\xbe\x61\xa5\x24\x90\x59\xc6\x1a\xbc\x4e\x36\xd0\xde\xbc\xa1\x9b\x08\xf3\xc3\xa8\xfa\x31\x29\x5d\x96\x68\x71\x9f\x09\xdd\x61\x45\xfc\x11\x63\xea\x46\x18\x10\x54\x75\xe8\x19\x2f\xbc\x5f\xba\x61\xf5\x2d\xd1\x4b\xc7\xef\x7a\x35\x0c\xe0\xa7\xbf\x40\xb9\x12\x74\xc8\x3e\x3f\x39\xd4\xc4\x42\x7e\x6b\x5b\xd4\x84\x8b\xef\xa5\xc4\x26\x97\x0b\x7f\xce\xe0\x72\x1e\xe3\x6e\x30\x30\x61\xa7\x04\xb6\x8e\x67\x9c\x1d\xf2\x08\x62\xd1\xb6\x97\x55\x19\x74\xc0\x60\x5b\xd1\x9e\xdd\xa1\xf1\xf7\x14\x9c\x01\x73\xf9\x43\x7d\xb6\x60\x0b\xce\xe3\x1c\xbe\x1a\xe7\x43\x23\xbb\xaf\x2e\x6f\xeb\x8d\x21\x55\x8a\x88\xab\x0b\xa9\x5d\xce\x26\x77\x7b\xae\x36\x9b\x09\x2d\xbb\x07\x90\x10\x1d\x5f\xcd\x71\xee\x38\x15\x60\xf2\x78\x7d\xb3\x29\x9c\xfe\xd2\xc0\x6b\x12\x32\x3f\xff\x3b\xe7\x21\xca\xdb\x8e\x6b\x12\xf2\x69\x12\xf9\xd9\x1a\xb0\x3b\x6e\x90\x71\x65\x6a\xd2\x9b\x4c\xf8\xb3\xda\x1f\x8f\xe0\x75\x1f\xc0\x99\xb8\x81\xe6\x8e\xc5\x4f\x56\x56\x28\x55\x8c\xd3\xa6\x5c\x71\x26\x68\x11\x3a\x3e\xe2\x7b\x34\x52\x2c\x7d\x96\x17\xc6\x4a\x49\x75\x00\xb3\x96\x3c\x5d\xba\x6f\x14\x2d\x0c\xa2\x5e\xae\x30\xe4\x8f\xd3\xf8\x80\x47\x42\xd0\xc2\x06\xd8\x2f\x4a\xdb\x30\x10\x89\xf4\xb4\x69\xf7\x67\xe4\xaf\xb6\x8e\xc7\x89\x35\x5b\xd0\x33\xc6\x18\x0e\x52\x4d\xe7\x10\x54\xfd\xa0\x34\xc1\x62\xc7\x30\x58\xb9\x20\x90\x74\x7f\xbc\xb6\x49\x6f\x05\x16\x1a\xb6\x02\x07\x41\xd3\xd8\x1f\xfa\x47\xbf\x86\xb9\x67\x5d\xd4\x9b\x66\x85\xde\x75\xc7\xa2\x92\xd1\x61\xbd\xc6\x32\x9b\x76\xa5\x20\x64\xf7\xb1\x79\xd0\x6d\x98\x02\x26\x6a\x46\xdd\x8c\xbe\x64\xea\x05\x0c\x9c\x17\x70\x9b\x2c\xe9\x33\xf3\x58\xd6\xfd\x82\x9b\xb2\xb3\x8a\xe3\x4c\xb1\xf8\x1b\xcd\x77\xd9\x67\x29\xbf\x20\x1e\x44\x03\x3a\xe3\x44\xdc\x9e\x60\x41\xcf\x36\xfd\xa5\xc5\x8a\xaf\x79\x97\xd8\x97\xcf\xd4\xfa\xe7\x43\x3a\x29\x3b\xa3\xe8\x07\x64\x66\xbd\x0f\x19\xe9\xef\x6a\xc9\x59\xcd\xbe\xc0\x23\x6c\x9e\xe7\x70\xd0\xbd\x24\x02\x26\x50\xa4\xac\x1b\x77\x09\xd1\xaa\x2b\x94\xd2\x8f\x67\x41\x60\x5b\x20\x8b\x7a\x67\xa9\x95\xf7\xd1\x0a\x2c\x44\x08\xd7\xb8\xbd\x48\x79\xbb\x26\x01\x6b\xde\x61\xf7\x14\xdc\xff\x29\x4c\x46\x70\xfb\x6f\x9b\x61\x8c\xbf\x4f\xad\x3b\xf0\xdb\xa1\xb9\xab\x6a\xa7\x34\x28\xc9\x6e\xf9\xdd\x3f\x76\xa7\x2b\x9e\x5f\x73\x6c\x7d\xab\x19\xe3\x93\x3f\x8f\x3f\x14\x05\xcb\x70\x98\xd2\xde\xb5\xdb\x03\x22\x31\xf6\x60\x83\x13\x83\x8e\xc0\xc1\x67\x3f\xa9\xcc\xd7\x47\xbf\x6d\xd6\x8e\xb4\xde\xa7\x45\x7b\x13\x99\x3c\xe6\xd6\x77\xf5\x8e\xad\xe4\xdc\xef\x6c\xb5\x60\x20\x7e\x3d\xb2\x4a\x83\x6a\xe8\x59\xcd\x10\x88\xf1\x5a\xa0\x9a\xf3\x98\x7a\xf6\x06\xa5\x88\x71\x31\xcd\x4a\x1c\x7e\xaa\xff\x80\x75\xae\x8b\x06\x9f\x92\x1e\x23\x7b\x1d\x44\x62\x2d\xad\x8a\x24\x09\x51\x8d\xc0\xe7\xf3\x25\xdc\x29\x4c\x7d\xf2\x2e\xe8\xaa\x3f\xa4\xbb\x63\xfb\x77\x5e\xf2\x75\x9b\xaa\xf3\xe4\x7c\xe3\xaa\xc9\x6b\xef\x58\x90\xc1\x6b\x14\xf2\x12\x66\x10\x4d\x1e\x5c\x65\x93\xbe\xd4\xb3\xba\xf9\x24\xa4\xfc\x68\xea\xdd\xf2\xfe\x3a\xae\xbc\xad\x64\xbb\x69\x1d\x21\x7c\x79\x12\x93\xb6\xb4\xcf\x6a\x66\x61\x63\x5a\xfd\x65\xe7\xa4\x05\xcf\xf1\xb1\xba\xf7\xda\xf1\xe9\xd0\xb3\x1c\x51\x44\x05\xb0\xde\xd3\x20\xf8\x34\xdb\xd3\xe0\x24\x90\x4f\xf5\xe7\x38\x78\xaf\x22\x97\x39\x5b\xef\xd1\xb0\x8f\x7b\x37\xc5\x2f\xa4\x3a\x63\x2b\xb2\xef\x80\x93\x33\xd4\xc2\xd3\x62\xac\xc2\x41\x0a\x94\x84\x10\x1e\x7d\x95\xc2\x79\xaa\x56\x7f\x8e\x13\x9a\x57\xe1\xfa\x98\xd6\x7e\xef\x2b\x5e\x95\xb3\x72\x71\x7f\xad\x9c\x53\x91\x01\x88\xb4\xe6\x11\x5c\x1d\x9b\x9a\x2a\x31\x48\xdb\x82\xc5\xb0\xac\x3e\xec\x20\x36\x53\x63\xc7\xfe\x44\xf4\xac\x65\x3f\x75\xdf\x3f\x2e\xef\x8c\x2d\x61\x50\x8a\x04\x8f\x4d\xb5\x1c\x36\x43\x11\xa9\x4f\x20\x6a\x5c\x4b\xda\x44\x15\x40\xe9\x4a\x71\xe4\xf3\x5a\xaa\xb9\x61\x14\xdf\x85\x57\xeb\x7d\xc5\x72\x78\xd5\xa5\x00\x65\x76\xa9\xd1\x2b\x8e\xce\xac\x60\xd6\xbc\x67\x6d\x35\xa5\x25\x3b\x69\xd6\x02\xbd\xa6\x79\x0c\x88\x2f\xed\x5f\xc7\x6d\xda\x59\x62\xaa\xd4\x22\xa3\x25\x09\xff\x98\xf0\xca\xfc\xae\x24\xf9\x52\x6a\xe4\xfc\xf7\xcd\x52\xb2\xd5\xa9\x3b\xab\x66\x02\x5c\x61\x4c\x83\x57\xf7\xda\x96\x94\x96\xca\x0b\x39\x7f\xe7\x73\x0b\xf3\xff\x55\x4f\xdf\x2d\x22\x49\x09\x7f\xa1\x58\x0b\x53\x89\xc1\x13\x50\x32\xfb\x17\x1f\xf6\x7e\x62\xad\xfa\xfb\x5f\x2b\x06\x13\xab\xbc\xe6\x0e\xaa\xe3\xc0\xb3\xed\xea\x46\x09\xbc\x39\x5d\x3c\xa0\x53\xc1\x3f\xe4\xb7\x93\xb6\x2c\x32\x8b\x7f\x96\x54\x7f\xac\x80\x5b\x40\x7e\x50\x37\x97\x3b\x85\x84\x96\x62\x1e\x45\xe0\x35\x3e\xcb\xf6\x2b\xbc\xbd\x52\x6e\xbb\x84\x00\xb1\xf0\xd4\x3e\xab\x70\xf8\x9e\xd4\xe4\xcf\xc2\x78\x75\x7d\xb1\x6f\xe1\x8d\xe1\xe4\x90\x1c\xa9\x54\xc9\xdd\x93\xfc\xac\xbf\x02\x69\x50\xd2\xaa\x1e\xce\x9e\x70\x83\x49\x92\x24\x7e\xb9\x05\xde\xff\x5e\x5a\x15\x0d\x93\x6c\x5c\x66\xf1\x21\x74\x15\x15\x85\x77\x05\x02\x1f\xdf\x61\x0f\xe9\x13\x81\x5a\x6f\xca\x1b\xad\xad\xc4\xab\xbe\x23\xcb\x1e\xa2\xbd\x66\xf4\x91\x8b\x8e\x9b\x24\x65\x69\x20\x8f\x3a\x94\xa1\xb5\xce\x0b\xcd\xa0\xad\x6c\x40\xf9\x24\xd8\xca\xef\xaf\xeb\xf0\x0b\xb2\x6c\x72\xbf\x46\x02\x16\xca\x17\xd5\x7c\x7d\x6c\xc5\x59\x26\x4a\x11\x82\xbf\xca\xe1\xee\x8a\x8e\x24\xc4\xcf\xd1\x10\x80\xe9\x30\x6e\x58\x69\x8e\x14\xd4\x67\x6e\xb9\xb2\xfc\x7b\x20\x5d\xfa\xb3\x7f\x4a\x39\x97\x8f\xdc\x0a\xa8\xc7\x1c\xbb\xe5\x60\x32\x1e\x69\xd3\x25\xe8\xc1\xd8\x83\xed\xa8\x29\xa9\x3d\x70\x72\xd6\x94\xfd\xef\xe6\x0b\x3e\xd8\x67\xd5\x74\x3e\x90\xe4\xd0\x5c\x9b\xa7\x09\xbf\xa5\x2b\x3e\x84\xf3\x51\x14\x6b\x5b\xdf\xd8\xdc\x75\x34\x1b\xe6\xc6\x4d\x09\x97\x7f\xa6\x9e\xfb\x9f\xb5\x56\x69\x1f\x62\x39\xe8\x35\xdd\xa6\xed\x6d\xf5\x65\x3b\xdd\xa8\xbf\x07\x1b\x64\x8b\x63\x0c\xbb\x93\x27\x07\x0d\x79\xc7\x42\x91\x91\x1d\x16\xd3\x06\x4d\x18\x0c\xe3\xa9\xbf\x53\x9d\xc1\xec\x9b\xc2\x43\x6d\x3f\x3a\xa2\x0f\x7f\x04\x72\x91\x32\xc5\x15\xff\x93\xfe\x68\x15\x60\x97\x3a\xd4\x4a\x3c\x65\xff\xbb\xed\xed\xa0\xec\x26\x2e\x32\x11\x12\x64\x12\x83\xe8\x79\xf4\x08\x4c\xb5\xea\xed\xd3\x22\xb8\xcd\x16\x00\x1d\x34\x05\x63\xe8\x65\x99\xb4\xcc\xc9\xf7\xf2\x3b\xd4\xaa\x3c\x6a\xa9\xc2\xe3\x53\x70\xe1\xf2\x21\xa5\xb7\xe0\xde\xd5\xa2\x93\x6b\xfd\x6a\x07\xdd\xe1\x68\xee\xf7\xe6\x91\xc4\x41\x64\xca\x37\x11\xad\x6d\xad\xcb\x72\xd9\x72\x27\x1a\xad\x8d\xa4\x91\x51\x5c\x33\x40\x15\x1d\x35\x51\xcf\x03\xa0\x7e\xfa\xcc\xce\x58\x25\x6f\x76\x62\x97\x6f\xf9\x29\x0a\x60\xfd\x17\xdb\xdc\xf4\xb2\xf6\xc4\xfa\xd8\xaf\x8b\xa5\xb5\x89\x59\x4b\xf7\xf6\xa6\x2a\x86\x12\x88\x79\x2c\x22\x52\xcc\x04\x91\xc8\xc3\xe6\xaf\x1a\x2c\x77\xf7\xd2\xbe\x2f\xfc\x78\x8a\x6e\xba\x32\x4d\x09\xad\xf1\x19\x8f\x24\xef\x2a\x5e\x97\xcc\xc7\x71\xfd\x78\x16\x68\x9e\x55\xdc\x18\x1c\x99\x81\xbb\xa2\x6e\x05\x28\x46\x7e\x77\x95\x00\x8b\x62\x4e\x05\x30\xf5\xab\x2d\xd8\x04\x75\x33\xce\xd9\x76\xfb\x5f\x28\xed\xe5\x13\xbd\x46\x63\x3a\xb5\x88\x43\x7c\x41\xad\x6f\x7a\x39\x10\x7b\x91\xee\x18\x3f\x39\xd4\x46\x5c\x72\xc8\x23\x2d\x30\xe2\x4b\x0b\xc5\xf9\x7e\x75\x25\xb2\xd0\x16\xa8\x62\x1d\x66\x5f\xf2\xb4\x8b\xd5\xbc\xf3\xd2\x92\xfc\xd7\x71\x1c\x32\xf4\x45\x66\xb0\x8c\x2b\xfb\x4b\x0f\x8f\x97\x66\xbe\xf9\x5d\xf0\x92\x9a\x19\xa9\x00\x22\x65\xb8\x17\xc7\x00\x77\x43\x41\x8f\x7f\x09\xab\x19\xd3\xf1\x9e\x67\xce\x6a\xf1\x46\xf4\xac\x85\x82\xa8\xa5\xd0\x80\xed\xe0\x43\x37\x39\x6c\x87\x11\x11\x48\x6e\x74\xd8\xa4\xc9\x87\xf6\x9a\x5b\x43\x46\xb4\xf5\x26\x81\x3e\x30\x42\x2b\x50\xfa\xa0\xff\x84\xb9\x64\x29\xc3\x73\x75\xf5\x64\xb2\x50\x79\x26\x62\xb4\x92\x5c\xbf\xc9\xf5\x80\x13\x0d\x1e\x99\x2a\x46\xe2\x9a\x46\x1d\xa2\xe4\x12\x86\xc7\xe1\xdd\x19\x91\xe4\x2c\x6f\xae\x72\x25\x36\xe7\xdf\xeb\xe7\x47\xc0\x13\x60\x4a\x2a\x95\xba\xf7\xa6\xe7\x95\x5f\x97\x47\x2a\x88\x50\x4d\x96\xc9\x4c\x69\xa2\xba\xb8\xe9\x76\x67\x8e\x9e\xb8\x3e\xcb\xa0\xb7\x5e\xf8\xee\x6d\xf3\x1f\x5f\xd3\xea\x17\x07\x63\xa2\xad\xf9\x44\x9d\x41\x08\xed\xa5\xf9\x8d\xd9\x0c\xc3\xe7\x0c\xa7\x19\xa1\x93\x63\x45\x3a\xc1\x8a\xd5\x4b\x85\x41\xb6\xf4\xf1\x53\xce\x52\x6a\xe5\x03\x06\xbe\x25\x3f\x39\x06\x38\x92\xf7\xbd\x54\x5c\xc2\xfb\x75\xf1\xe0\xa2\x72\xea\xa7\xa6\xcc\xd3\x6d\x93\xd7\xf9\xc6\x7b\x2b\xd1\x55\x0e\x43\xf4\x42\x4d\x6b\xbb\x55\xaf\x36\x5c\x26\xe4\x00\xa8\x6f\x3a\xb9\xbf\xb1\x2d\xd0\xf6\x61\xb7\xf8\xb3\xe3\x45\x04\xf9\x6a\x7d\x0b\x7a\x59\xd1\x37\x5b\x9c\x9f\xef\x43\x4f\xed\xcf\xdf\xba\x2f\x86\xd9\x66\x7a\x7e\x43\x33\xe0\x7d\xf3\xe9\xc2\xa2\x63\x7f\x6f\x5b\xfa\x05\x8c\xab\x15\xab\x7e\x89\xdb\xe4\xd1\x81\x82\x47\x9a\xac\xe1\xde\xe7\x2f\xd9\xa4\xa5\xa3\x6d\xd7\x5d\x6f\x76\xe7\x82\x09\xb7\x8b\x31\x9a\x66\xe8\xd4\x33\xfc\xac\x2c\x8f\x86\x19\xb8\x83\x7b\x1c\xdf\xc4\xf8\x6c\xc6\xe3\x31\xeb\xe5\xab\xfe\x7f\xf8\x3b\xb3\x86\xbf\x62\x0d\x55\xb5\x6c\xe6\xc2\x21\x63\x57\xcb\xed\x27\x0d\x19\xc7\x15\xf6\x80\xb2\x81\x0e\x5b\x63\x23\x5f\x4f\x39\xf5\x45\x3c\x9d\xdd\xdd\x66\x7f\xc0\xcd\xe7\xbd\x4d\xef\x52\x58\x8b\x25\x58\x06\x8a\x24\xdf\xc7\x97\xe6\x97\x98\x02\x84\xd0\x79\x49\x72\xb8\x83\xc0\xb1\xf3\x71\xc5\x85\x4c\x19\xb6\x51\x6c\xaa\xbb\x7c\xa7\x54\x4d\x96\x0b\x18\x7e\x4c\xbd\xe7\xac\x6a\xb9\xd6\x4d\xa4\x58\xcf\x8b\xc9\xd9\xf4\x5c\xb4\xce\xaa\x8b\xa8\x10\x89\x08\xba\xf3\x7e\x3e\x66\xc2\x8e\x8a\x32\x5c\xb5\xce\xe1\x8e\x7c\x66\x74\x3c\xe1\xea\x8a\x07\xef\xbd\xcd\x19\x86\x18\x79\x5e\x90\x06\xe4\xc3\x87\x87\xb8\x3f\xb9\x3c\xbf\x51\x05\xd3\x5e\x04\xf6\x51\xba\xac\x27\xbc\xfc\x15\xdd\xad\x86\x7b\x7f\x30\xc5\x6e\x27\x57\x71\x0c\x1b\xdd\x47\x2a\xd2\x10\x52\x60\x9f\x90\xa7\xe8\xec\xe0\x65\xea\x6b\xbf\x0a\x10\xfb\x54\x38\x21\xb1\xe3\x97\xe1\xcb\x74\x73\xbd\xc4\xd5\x54\xd3\xa9\x9b\xdb\x4d\x61\xea\xf0\xe7\x4b\x21\xf0\xf8\x54\xd3\xe8\x0b\x5d\xb4\x81\x7d\xe2\xc8\xb9\x10\x56\xb6\xdb\xe2\xd5\x36\x09\x9c\x47\x2b\xb0\x39\xec\x84\x7f\x7d\x54\x49\xd8\x54\x10\xd1\xca\xfb\x95\x47\x5f\xea\x13\x43\x4e\x71\x81\x2a\xf6\x5a\x47\xa6\x69\xeb\xfd\xe2\x3f\x1e\xcc\xa8\x9c\x74\x16\x86\x1d\x76\x5a\x10\x64\x08\x48\x02\x4f\xe9\x5e\x55\x10\xf7\x74\x65\x8b\x8a\x31\x90\x0e\x77\xf2\x2e\xab\x2e\xe2\xb4\xae\x2a\x54\x1b\x3d\x8e\x40\x8c\x88\x08\x27\x1b\xab\x4c\x24\x56\x86\x1c\xd1\x15\x43\x04\x10\x05\x02\xf2\x38\xca\xf3\xd4\x5c\x1f\x61\x77\xeb\x7b\xef\xe6\x7b\xe5\x90\x25\x68\x24\x97\x8f\x1c\xac\x56\xb5\xaa\xac\x9a\xd1\xc0\xbf\x9f\x98\xa7\x67\xf6\x2a\xc1\x21\x77\x00\x76\x32\xed\x3c\xc3\x72\x1f\xd5\xd5\xaf\xf0\xeb\xef\xf7\x4e\x25\xbe\x5d\x87\x8f\xec\x96\x82\x9b\xe6\x38\x7e\xe4\x3c\x4f\xf5\x62\x1c\x90\x0a\xd0\x46\xf2\xaf\x23\xd1\x85\x39\x7e\x69\xa4\x98\x6c\xde\x99\xdf\xee\x7d\xcf\x91\x04\xe6\x4e\x52\x7f\x4d\x1a\xc2\x10\xcc\x7e\xbb\x3c\xfe\x70\x56\x5a\xf5\xd3\x1a\x50\x4e\xc3\x33\xb4\xe3\x90\x4c\xf9\x43\x1c\xf7\x43\x63\x89\xdc\x6b\xdb\xd7\xa8\x41\x35\xa5\x1f\xc2\x49\xd4\x39\xfc\x84\x61\x73\xe7\xa8\x3f\x98\x95\xb3\xfd\x4e\x00\x28\x40\xfc\x28\x69\xb0\x5f\x87\x2c\x1d\xcf\x73\x8b\x5b\x81\x53\x60\x9d\xc3\x4f\x24\x26\x8f\x59\x6a\x3f\x7e\x48\xa2\x69\xc6\x28\xa4\x43\x27\x89\xa7\xd2\x11\xe1\xf5\x4f\xbe\xac\x1b\x35\xaa\xac\x2b\x72\x00\xad\x47\xed\xe9\x19\xf5\x52\x65\xd7\x6b\x0c\x24\xee\x7c\x12\xf4\xa3\xd4\x9b\xad\x71\x85\xd3\x56\xd8\x18\xc3\x35\x11\xa5\x34\xc1\x5a\xce\x03\x3f\x88\x07\xa2\x79\x46\x1f\xfb\x36\x28\x63\x54\xf5\x62\x6d\x26\xd6\xd0\x92\x12\xa1\x05\x4e\x07\x52\xfe\xfd\xdd\x37\x21\xa9\x99\xe2\x76\xab\x31\xa9\xdf\xeb\xf3\x63\x89\xed\xfc\x92\x53\x48\x95\x74\x9f\x7b\xd0\x62\xfe\x12\x4d\x73\x3c\xd4\xd8\xdb\x4b\xc6\x89\xec\x8f\x04\x48\xc6\x71\x50\x19\xdb\x41\x6d\x1e\xab\x78\xb7\x6d\x8e\x49\x5e\xd1\xc0\x8b\x7a\x14\x48\x7a\x96\x96\xe0\x2d\x26\x35\x29\x05\x2e\xac\x2c\x52\xc5\xec\x3c\x4b\x47\x40\xc1\xec\xcc\xc7\xd3\x7c\x0d\xcb\xa5\x4e\x41\x42\x90\x53\x2a\x85\x54\xff\x97\x98\x93\x84\xdf\x78\x9b\x10\x58\xda\x17\x26\x57\x05\x34\xfe\x16\x60\x22\xe2\x9d\xe5\x9c\xfa\x4c\xd7\xe6\xa8\x0d\xb9\xa8\x31\x7e\x84\x84\xe9\x94\xa8\x48\x99\x4c\x7b\xa4\xa7\x87\xe1\xf6\xf1\xee\x9d\x9c\xf8\xd2\x6c\x8d\xd1\x85\x75\xb1\xe4\x7d\x13\x3d\x5c\xdf\xaa\x9a\xe6\x79\x69\xd1\x4f\xbb\xfd\xeb\x58\x62\x79\x76\x35\x84\x05\xda\x38\x33\x45\xd2\x8f\x3d\xb1\x0f\xcd\x37\x6f\xaa\x96\x43\x31\x20\xb0\x95\x03\xea\x04\xcf\xe8\x73\xed\xa0\x2e\x48\x2b\x51\xf1\xb3\x79\xee\xbd\x54\xd3\xf7\x9f\x42\xb9\xe7\x55\xdc\xbf\xc2\x4b\x12\x30\xb5\xc9\x4e\xc5\x00\x6d\xab\xbf\x4c\xe4\xe8\x83\xb1\x3e\xa7\xd2\xef\x63\x7b\x73\x85\x41\x31\x78\xfa\x6a\x60\x2b\xb0\xe9\xaf\x07\xf1\xd8\x9c\xdb\x1b\x5a\xdf\x88\x2d\x59\xdb\xab\x44\x62\x30\xce\x1e\x47\x9e\xd7\xdf\x9a\x41\x23\xcb\x82\x02\x72\xa6\x04\xe8\xfd\x5b\x6b\xc8\x49\xed\xbf\xd8\x8e\xb1\x25\xec\x3b\xad\x1d\x73\x37\x44\x35\x9b\x66\x72\x2e\x4f\x31\x5d\xd0\x82\x49\x10\xfa\x74\x33\xf1\x79\xfc\x6e\x0d\xfd\x17\x06\xd4\x98\x77\x19\xb5\xd4\xc6\xd7\x0c\x50\xbb\x25\xab\x27\xdd\xa9\xdb\x03\x5e\xed\x6d\xbb\x5d\xed\x6a\x82\x30\x28\x66\x75\x05\xab\x46\xb0\x91\x2d\x42\x23\xc1\x76\xd3\xad\xae\xea\xc6\xb7\x77\x99\xd6\x83\x76\x91\xc6\x64\x3c\x4b\x03\xf3\x43\x0a\x19\xfe\x95\xc3\xf5\x6e\x56\x5b\x01\x02\xe1\x78\x78\xef\x36\x50\x5e\x0a\x22\xe1\x12\x77\xa8\x09\x00\x7f\x66\xd5\x58\xa0\x73\xfe\xa0\x4e\x12\x3b\x71\x45\x6d\x0b\xfc\xee\xdc\x62\xd3\xfe\x09\xb5\x92\x19\x64\x60\xb0\xc3\x9b\x3e\xb8\x8e\xfb\xca\x37\x6d\x0b\xf8\xa6\xa5\x89\x9f\xb0\x6e\xe1\x37\x8a\xa3\xca\x62\xf0\xed\xd3\x39\xe8\xfe\xa0\x04\x4f\xa3\x55\xcd\x58\xf8\x43\x1c\x55\x07\x6c\xd2\xab\x99\x4e\x38\xe7\x6f\x5a\xfa\xd4\xed\xd9\x69\x32\x70\x19\x08\xc8\x99\x30\x3e\xf4\xe9\x2c\xdf\x3b\x17\x69\xfc\xfd\x09\x90\xbe\xb8\x43\x7b\x77\x1a\x42\x3a\x10\x50\x90\x00\x98\x64\x5b\xdb\xad\xfb\x8b\x7d\x59\x10\x52\xaf\x1e\x06\xce\x80\x6a\x4c\xf3\x39\xe2\xc6\x42\xe1\xc3\xc7\x59\x96\xb5\xcd\x56\x7f\xed\x9c\x45\x0e\xbb\x98\xb2\x36\x37\x3e\x8f\xab\x91\x5b\x58\x2f\xa3\xbf\xa0\x47\xe5\x5b\x07\x01\x44\x6b\x74\x31\x51\xf1\x61\x87\xf2\x56\x97\xf9\x24\x38\x89\xce\x0e\xbf\x0c\xee\x6e\x16\xd9\xaa\x7e\x9f\xae\x0a\x36\xc4\x2d\x6c\xff\x6c\xd9\x1b\xc1\xfc\x96\x1c\x85\xcb\x40\x4f\x29\x5b\x34\xe0\xee\xf2\x6e\xb5\xf2\xac\xa3\x45\x0a\x5d\xad\x5b\x2a\xfc\x03\x41\xf0\x3a\xf9\x1f\xec\xb4\xb0\x3f\x43\x7e\xeb\x20\x57\x20\x97\x18\x1e\xf7\xa8\x96\xd6\xe4\xfd\xae\x38\x24\x82\xc2\xc0\x82\x1f\x21\x51\x6b\x59\x19\xdf\xf6\xcf\x37\x41\x68\x2b\x38\x52\x17\x47\x73\x55\xad\x59\xe9\xca\xd9\x58\xbe\xf4\xdc\xfc\xdc\x56\x02\xba\x52\x30\x30\x48\xb5\xd7\x56\xa5\xce\x1c\xd4\x28\xec\x4a\x09\x37\x4f\xec\x26\x5c\xe3\x66\x4f\xd6\xc0\x17\x80\x69\xae\xce\x08\x0e\x36\xf0\x59\x98\x8f\x50\x42\xc3\x55\x6f\x5a\x04\x40\x9e\xbf\xbd\xfe\x8a\x9c\x66\xd6\xc6\x6e\x48\x2a\x79\x60\x10\x5a\x7b\x7c\x36\x64\x40\x59\x34\x6b\x32\xdb\xb7\xe6\xd5\x89\x3b\x99\x5b\x7e\x3b\x5a\x3d\x67\x8d\x8a\x5c\x2b\x6c\x78\x11\x28\x8a\x36\x26\x3f\x21\x83\x7f\x87\xd1\xfe\xe9\xdd\x40\x0e\x2d\xdd\xf9\x21\x16\x96\x0e\xce\xbc\xa5\x53\x5b\xfa\x88\x25\x13\x2f\x9b\x66\x7c\x26\x08\xd2\xb5\xfd\x4f\xe0\x1b\xba\xed\xf7\xb7\x2e\x3f\xfd\xe9\x0f\xb4\xa8\x41\x32\x4f\x5d\xb8\x6d\x0f\x3f\x07\x55\xe2\x19\xfe\x00\xaf\xbe\xa8\xbe\xc4\x93\x0a\x2b\xfc\xd5\xf1\x0a\x5f\xc8\xf8\x17\x34\xd1\x60\xe3\xec\x7d\xd2\xd9\x68\xfe\xb0\xcb\xf1\xb4\x1b\xc6\x4a\x56\xba\x10\x7d\x31\x69\x63\xce\xbf\x32\xee\x49\x2b\x6c\x2d\x15\xa7\xf1\x94\x0e\xe1\xf4\xe9\xf4\xda\x18\x01\xc0\xdd\xc1\x58\x25\x7b\x8c\xd9\x7b\x37\xfe\xa2\xc4\x9e\xe0\xbd\x37\xfb\xce\x2e\x6d\x43\x01\x5a\xad\x25\xba\x33\x1a\x3d\x2f\xb7\x0b\x06\x21\x21\xd2\xe9\x38\x96\x6c\xb0\x04\xa5\x37\xc1\x79\x41\xee\xf0\xc3\xd0\x4b\x75\xb3\xed\xa3\x7a\x4b\xd8\x9b\xac\x60\xae\xc2\x3b\xc3\x72\x21\x5b\x40\x4f\x91\x80\xe8\x03\x26\xca\x43\xd9\x0f\x9b\x09\xaa\x77\xf0\xcf\x0a\x37\x15\xa9\xae\x5a\x94\xfd\x51\xd7\xf3\xfc\x53\xf8\xaf\x50\x7f\xc2\x15\x5c\x24\x26\x31\xca\xd9\xcc\xae\x9a\x88\xb2\xcb\x0a\x25\x78\x58\xf1\x8c\x38\x43\xec\xd4\xc6\x26\x19\x19\xab\xf9\xbd\xf2\xf0\x31\x29\x58\x5e\x06\x21\x80\x60\x2f\xa6\xc6\x76\xbf\x97\xf0\x45\xfc\x1e\x47\xb7\x93\xca\x34\x63\x8f\x72\xb3\x58\xee\x5b\x3b\xeb\x15\x4c\xdc\x12\x56\x23\xd1\x48\x75\x1f\x18\x4d\x03\x60\x55\xf1\x9d\x73\xee\x9b\xe6\xb0\xca\x04\xf1\x77\xc5\x54\xa5\x3d\xff\x1f\xb7\x5f\xff\xbf\xc9\x58\x18\x50\x89\xbe\x13\xc2\x7c\x2b\x1c\x61\x63\xbd\xbc\x27\xb4\x97\x3a\x07\x7f\x98\x67\xbe\x1c\xc5\xda\x4b\x1d\xd6\xb4\xcd\xa1\xf2\xbb\x5b\x55\xe9\xc1\x1c\x64\xeb\x24\xdb\x82\xba\x60\xc4\xb3\x11\x9d\x8f\x26\xfc\xdd\xb0\x15\x77\x7b\x49\x15\x99\x47\x03\xd5\x56\x58\x77\x46\x12\x7d\x85\x3c\x50\xbb\x1d\x0f\xea\xfc\x55\x1b\xe6\x21\xd7\xa0\x82\x86\x85\x47\x28\x20\x04\x10\x63\x9a\x98\x04\x76\xb8\x42\x38\xbe\xbb\x44\x62\x74\x2a\x21\x1a\xe1\x75\xeb\x27\xb6\x8a\xf7\xd0\x77\x9f\x61\x1e\x2f\x9e\x3e\x04\x37\x8b\x64\x90\x36\xad\xa4\xd4\x7c\xac\xc2\x9a\x4d\x40\x74\xd5\x08\xd9\xac\x7e\xb2\x8b\xef\xdf\x66\xce\x8a\x24\x0f\xd2\xc9\xd4\x51\xfc\xfe\x6e\xa2\x88\xe0\x73\xe0\x8e\x45\x35\xbf\xba\x5f\xd1\x1b\xfd\x3f\xc0\xf3\x98\xcb\x55\xbc\x33\xa3\xd6\x93\xb7\xc5\x56\x85\x77\x74\x21\xe5\xc5\x94\x46\x33\x8b\xec\xed\xd4\x32\x63\x34\xf9\x38\xe0\x4c\x50\x23\xc2\x6a\x68\xb0\xea\xbd\x9b\xf4\x5c\x34\x9a\x1a\x0b\xad\x35\x27\xae\xfd\xc6\xf7\x74\xcd\xd8\xf2\x66\x7a\x47\x12\x67\x83\x3c\x18\x97\x85\x12\x35\xbf\x3c\x51\x88\xd6\xa3\x7d\xf1\xc4\xf2\x27\x63\xff\xbb\x82\x81\x83\x57\xda\xd6\x9e\xa4\x87\x0d\x1e\x85\x37\x1a\xab\x6a\x8f\x74\x78\xa0\x0a\xd0\xc7\xce\xc0\x59\x9d\x5b\xf4\x8b\x3f\xcb\x31\xa9\x41\xfb\x84\xa1\xb1\xf2\x84\x76\x54\x1e\x0e\xa2\x88\x7a\xe3\x44\xd2\x52\x8b\x5c\x97\x57\xc9\x1b\xb8\x9d\x9a\x3d\x74\x77\x81\x4d\x53\x7d\x9f\x2f\x18\x94\x51\x0f\xb8\xe8\x09\x58\xd5\x03\x58\x8f\x5f\xa4\x42\xc7\xa3\x79\x59\x23\x14\x5c\x30\x90\xa2\x13\x11\x42\x03\x3f\xec\xfe\x8e\x8e\x3d\x17\x3a\x5d\x93\x8b\xf8\x62\x9f\xcd\xf2\x98\xe6\x23\xcb\x2d\x10\x2f\x00\xe0\x11\xf1\x8b\x71\xf9\x57\x1a\xcb\x6b\x7c\xaf\x5b\x56\x09\x6b\xbc\x88\x21\xbc\x90\x51\xc9\x5b\xb1\xd1\x8a\xe2\x40\x08\x20\x80\x2a\xc5\x6c\xb6\xeb\x9d\x03\x64\xf0\x77\xc7\x65\x36\x04\xc5\xd5\x3b\x39\x64\x73\x8a\xd7\x5b\xbf\x74\x9f\xb6\x1d\xa1\xa7\x97\x70\x84\x00\x40\xaf\x19\xa9\x96\xc2\x96\x5b\x67\x7a\xd0\xcd\xe5\xef\xaa\x04\x40\xcf\xc9\x47\x6a\x7b\xd1\x5f\x64\xd5\x0a\xe4\x40\x44\xd0\x4e\x00\x27\x83\x30\x09\xfc\x82\x87\x63\x49\x1f\xf3\x22\x10\x16\x83\x6b\xfb\x67\x55\x33\x14\xc0\x38\x6b\x8f\x0e\xce\x04\xe9\x00\xf9\x74\x04\x39\x8c\xd2\x39\xc3\x44\xf4\x92\x87\xa1\xc9\x4e\x6c\x14\x2c\xb3\x51\x6f\xc0\x4e\x16\xbb\x18\x2d\x4a\x74\xb6\x80\x75\xa7\xc5\xc4\x9f\x22\x3e\xc1\xeb\x1f\xfc\xea\x37\x6f\x44\x20\x56\xc3\x0e\x9f\x60\x27\x05\x59\x80\x2d\xc0\x12\xff\x5d\xbf\xc3\x6f\xe4\x83\x1f\x66\xb7\xaf\x61\xb2\xcf\xef\x06\x46\xc6\x93\x9f\x21\x3a\xbd\xa5\x78\x97\x5d\xdb\x46\x3f\xa3\xd8\xfa\x4e\x8f\x8d\x6a\x63\xe6\x6f\x37\x79\xc0\x96\xbf\x46\xa5\xcb\xbb\x88\xd6\x02\xde\xb3\x74\x0a\x22\xd4\x44\x22\x35\x52\x8a\x2c\x9e\xa1\xd4\xde\xed\xd6\xf0\x32\x41\xc6\x68\x56\x3c\x4a\xa3\x1d\xf6\x64\x6c\x6a\xf9\xc3\x12\xad\x05\x7d\x9c\x7e\x44\x73\xc4\xf2\xa9\xc1\xc7\xc4\x54\x29\xd6\x6e\x26\x3a\x45\xa7\xd4\x00\x9d\xeb\xe0\xe6\x1f\xef\x06\xa3\x95\x64\x2d\xb0\xd5\x3e\xe6\x73\x13\x7a\x3f\xe1\x70\xb7\x42\x30\x93\x86\xa8\x10\xf3\x24\x5f\xf5\xc6\xdf\xf5\xd8\x73\x1e\x6a\x28\xfb\x29\xc8\x9a\x49\x45\x60\x8d\xaa\xc7\x48\xbe\x99\x4d\x68\xa6\x02\x6c\x4e\xd5\xfa\x87\x3b\xbe\x98\x3e\xb2\x27\x66\xfc\xe3\xe5\xe3\xb0\xbf\x1f\x3b\xdf\x64\xbb\x50\x56\x4b\xad\xdb\x7b\x99\x1e\x9b\x1e\x70\x7c\xfa\xed\xfe\x63\xaf\x0f\x57\x1b\x38\xb6\x91\x75\x5b\xe0\x9d\x36\xc8\xe9\x46\x47\x54\x62\x46\x69\x38\x80\xdf\xc2\x39\x05\x06\x67\x0c\xa2\xd5\x8e\xf0\xae\x36\x52\xe3\x9a\x52\x09\x80\x01\x05\x8f\x87\xf7\x67\x86\xe9\x57\x75\x1c\xe1\xe1\x6f\xc5\x99\xb2\x47\x27\x59\x79\xe5\x43\x89\x8d\xd1\xe0\xdf\x6f\x08\x75\x1f\xeb\x8e\xda\x52\xbf\x5b\xdd\x27\xfc\x90\x90\xee\xf4\x4f\x62\xab\xc1\xe0\x5d\xc3\x74\x1b\x1b\x1b\x24\x26\xef\xb8\xff\xf7\x55\x2e\x20\x10\x19\x76\x1d\xc2\x5b\x47\xbf\xcc\xcc\xc6\xe8\xca\xf2\xfd\x44\xf5\x23\x51\x78\xc2\x97\xd3\x55\x67\x4b\xaa\xe3\x4a\x9c\xe3\xd3\x6b\x12\x22\x8a\xd7\x86\x75\x56\xbd\x7e\x7f\xc9\xe2\x32\x98\x36\xbf\x84\xfd\xd0\xf7\x2a\xb3\x13\xa0\x4d\x51\xba\x8d\x2e\x01\xad\x6c\x76\xa4\x9b\x06\x7d\x1d\xec\x0d\x9a\xb3\x10\x6c\x23\x4f\x49\xe1\xfa\x97\x3b\xad\x24\x3c\xf8\x68\x1e\x6e\xcb\x98\xd9\x63\x05\x14\x3f\x4a\xc6\xa6\x3e\x91\xc0\xe2\x0d\x6c\x02\xb0\x90\x73\x33\x86\xb4\x49\x1f\x8c\x2c\x65\x46\x8b\x79\xdf\xf1\x7d\x0e\xb8\x97\x68\xfa\x7a\x7a\x82\x8b\x1e\x1f\x85\x0b\x64\x05\xee\xfb\xca\xaa\xcb\x72\x30\x47\x58\x88\x8b\x0d\xdc\xfc\xe8\x7d\x35\x41\x70\x66\xc7\x3b\x74\xe1\xf7\x40\x73\xbb\x7b\x7f\x2c\x12\xd8\xd7\x4c\x00\xf7\xec\xc1\xb5\xef\x4c\xa0\x0e\xe0\x0b\x61\x04\xff\x0c\xbd\xea\xe4\xb3\x1a\x25\x5f\x9a\xbe\xd3\xbe\x44\x23\xc1\x2e\x1b\x1a\xfb\xdf\x91\x8e\x7d\x3c\xf7\x28\x59\x2f\x08\xfc\x7c\x8f\xd9\x71\x5f\xcf\x56\xb9\x73\x61\xcf\xe6\x27\x71\x30\x26\xee\x7e\xc1\xf0\x0d\x0d\x15\x4e\xeb\x14\x7f\x62\x91\x0e\x2a\xee\x95\x30\xce\xf0\x82\x54\x67\x3e\xb0\x7e\x43\x50\x81\x85\x24\x75\x22\xf7\xce\x23\x2c\xa2\xec\xf0\xef\xfd\x5f\x7d\xfd\x34\x52\xd6\x33\x6b\x0d\xe4\x51\x6d\x4c\x67\x90\x9d\x93\xd4\x6e\x2f\xab\x22\xa9\x43\x56\xf1\x3c\xdc\x1b\xa8\xbf\x05\x23\x1f\x4d\xb5\x82\x22\xf3\xf5\x47\xb3\xb9\x2c\xab\xb3\x8c\xca\xf8\x81\xd6\x7b\xf1\x9f\x83\x27\x11\xbe\x2f\x8b\xc8\xc9\xc8\xf9\x41\xad\x48\xb6\x0c\x5c\x62\xc7\x47\xea\xcc\x8d\x3c\xd1\x93\xa0\x2b\xb1\xb9\x85\xdd\x26\xee\x6b\xcb\xaf\xa0\xe2\x6e\xa1\xd3\xb3\xf3\xf7\x7c\xf5\xf9\x99\x69\x3b\x7c\x16\xdf\x16\x97\x92\x4a\x92\xc5\xee\xf5\xca\xf6\xe7\xe4\x78\x0b\x62\x4d\x9b\xaa\x07\x00\xcd\xb3\xeb\xb9\xaa\x84\x7f\xd7\xf6\xcc\x28\x15\x1e\x50\xdd\x20\xd3\xd2\xb6\xab\xd1\xd7\x83\xaa\xf4\xf6\x4b\xca\xce\x34\xf9\x1a\x6c\x96\x8e\xd3\x1f\x59\x42\x8a\xc4\xfb\x5b\x39\x80\x18\x1a\xc1\xd5\xb1\x61\x98\x86\x92\xae\xa7\xda\xc4\xfc\xb7\xd2\x4b\xca\xce\xd8\xb8\xf8\x29\xd1\xe2\x08\xe6\x2e\x46\x5c\x18\xc5\xd7\xe4\x9f\x18\x61\xc5\x8d\x64\x40\xfa\x98\x7a\x31\x74\xf1\xbd\x26\xe6\xf2\xf7\xf2\x3f\xc0\x64\x8c\xd4\x72\x4a\xb5\x22\x6b\x55\x74\xe7\x70\xe9\xee\x2b\x6d\x5e\x5e\x92\xc6\xc5\x64\x07\x25\xd3\x5f\x3d\xcf\xf6\xaf\x78\xea\x84\xd0\x34\xed\x6f\x8d\x43\xac\x15\x55\x91\x60\x10\x09\x53\x46\xd1\xa1\x9e\xcb\xde\xf6\xa9\x16\x41\xf6\xd6\xff\x3e\x0b\xff\x6a\x73\x2d\xd2\xb3\x01\x0c\xa6\xae\x99\x19\x3f\x0b\x9f\xf1\xd2\x3d\xec\x62\x01\x53\x03\x9c\x96\x29\xd8\xce\x86\x23\x3f\x2b\xfa\x13\xdc\xc9\x8c\xa7\xad\x01\xf6\xdb\x6d\x73\xdd\xe5\x47\x32\x3e\x0b\xdd\x34\x04\x13\x88\xe6\xed\x5e\x01\xc6\x18\x4b\x91\xd3\x17\x1d\xcc\x71\x03\xd7\xb7\xc9\x20\xdc\x2c\xce\x8e\x90\xc4\xe0\x56\x52\x2b\x83\x68\x39\x22\x0a\x3e\xdd\xa0\xc1\x8f\x32\xe7\xa3\x64\x3c\xfe\xc9\xb1\x54\x4a\xc1\x9f\x70\x17\xd7\xa6\x72\xa0\xd7\xd3\x56\x80\xc1\x62\x2d\xcb\x97\xa0\xfb\x2c\x28\xd3\x5b\x56\xd8\x4e\x92\x47\xa2\x1a\x89\xe6\x58\x96\x43\x37\xb1\x85\x3d\x3f\xf0\xfc\xe8\xad\xa5\x36\xa4\xfa\x05\x94\x29\xbe\x96\x0b\x4d\xd3\xa3\xda\xe2\xf4\x47\x31\x87\x61\x02\x08\xf9\xf7\xf8\xb0\x58\xc6\xe5\x26\x9a\x8d\x77\x4c\x01\x87\xef\xe5\xcd\xbb\x24\x3f\xf9\x6c\x90\x59\x59\xf0\x0b\xb1\x07\x0c\x45\x68\x48\xb7\x0d\x98\x88\x78\x96\xf2\x01\x54\xa4\x48\x1a\x94\x4f\x09\x6c\xdd\x04\x63\x47\x18\x0a\x8b\x32\x96\x0c\xac\xb8\xfc\x55\x02\x1e\x40\x33\x3c\x5d\x49\xd7\xec\x65\x71\x2f\xd1\x3a\x69\x82\xa5\xd6\x44\x63\x0c\xb6\x79\xcb\x99\x5c\x96\xc5\xc7\x2f\x42\xe4\x53\x40\xc8\xa5\xa7\x1a\xcf\xea\x4e\x6c\xbe\x90\x28\x2c\x33\xbb\x2a\x0d\x12\xb5\x90\xd7\xff\xad\x88\x22\xe4\x52\x87\xbd\x5c\x99\xa8\x01\xab\x19\x0b\x68\x8a\x04\xcb\xb0\x7a\x4c\x00\xe1\xa0\x67\x73\x72\x96\xba\xa8\xcc\xe1\xb0\x2e\x2a\xc1\x6a\x46\x0d\xfa\x84\xdd\x4a\x51\xa8\x9e\x6b\x0b\x78\x57\x14\x7a\x9a\x53\x0d\x98\xf3\x85\x48\x84\xfc\x97\x84\xce\x96\xb9\x1f\x17\x69\xc5\x71\xe8\x09\x53\x82\x72\x6d\x80\xb4\xed\x60\xd6\x12\xd1\xe9\xe3\xaf\x64\x64\x01\xf8\x6c\x46\xe0\x60\x51\xc5\xba\x08\xea\xef\x1d\x63\x55\xb1\x6f\xec\x0c\xbf\x45\x7e\xfb\x6f\x37\xce\xd3\x13\x5f\xf5\x42\x0e\x98\xcd\xf6\x1c\x3a\x9b\x9b\xce\xfa\xcd\x0d\x68\xde\x61\x20\x6a\x51\x8c\x59\xa7\x24\x18\xaa\xf8\x4c\x81\x10\x17\xa1\x15\x29\xd6\xb2\x14\xd1\xbb\x1f\xd0\xa6\x5e\x7e\xd9\x41\xa0\x4a\x60\x9f\x1d\xd7\xfd\xc0\x88\x46\xe4\xc9\x06\xec\xca\x86\xd8\xec\x44\x7d\xab\x01\x0d\x47\xd0\x0b\xb1\x88\xf3\x08\x27\xe1\x22\x6b\xc3\xe8\x06\x31\x07\x72\x54\x19\xde\x40\x98\x3f\xf3\x5a\x13\x60\x8f\xc8\xaa\xe6\x70\x9b\x49\xa0\x75\xa6\x3d\x39\x68\x23\x0c\x5e\xc0\xa2\xbe\x01\x77\x3f\xbf\xf0\xff\xe8\xce\xd8\xff\x9d\x1d\x6e\xfe\x3f\xa5\x89\x15\x54\xed\xc0\xba\x92\xd8\xf9\x2e\xf5\xa8\x55\x6c\xe1\x6f\x29\x26\xcf\xd1\x1b\x1c\x8a\x97\x4e\x21\x34\x2b\xbd\x71\xe4\x0d\x0a\x02\x40\xd9\x05\x2a\x8e\xdc\x7a\x96\x1b\xc6\x2b\x0f\xc7\x6a\x5e\x48\x72\x58\x77\x13\xdf\x21\xd5\x36\xa7\x18\x06\x9a\xf1\x4f\x99\x05\x24\xf3\x0b\xcd\xaa\x16\xe5\x60\x51\xce\x18\x0c\xef\xe1\x0f\x97\x6e\xf1\xd1\xb3\x7c\x29\x20\xb3\x82\x65\x6c\x18\x76\xad\x2a\xeb\x4a\x64\xe7\xb4\xae\x47\x29\x7d\xf0\xe6\xbd\x6a\x8b\x8c\xd3\x9b\xa3\xa6\x3f\xb6\x87\xf6\xbf\x27\xc1\x9f\xac\x00\xcc\x40\xd3\x23\x8c\xf5\x75\xde\x43\x2d\x5b\x9a\xea\xe7\xb1\xd0\x45\x01\x59\xbb\x9c\xd0\x76\x2f\xbc\x2c\xe2\xef\x83\x86\xaa\xed\xea\x1f\x96\xa7\x06\x5e\x63\x8c\x8d\x0f\xed\xdf\xcb\xaa\x52\xd0\xe8\xc8\x41\xc6\x64\xae\xcb\x79\xc3\xfe\x55\x99\x3c\xd1\x85\xce\x0b\x00\x0e\x87\x6d\xc2\x11\x0a\x25\xdd\x90\x6e\x73\xbe\x10\x37\x88\x4b\xc0\x8c\xf3\x90\xe4\x35\x0a\x77\xf7\xde\xa5\x23\xe8\xe1\x46\xd6\x47\xfc\xf6\x54\xff\x4f\xdc\x15\x2e\x60\xe8\xef\x3e\x1a\x2c\xba\x76\xff\xdc\x03\xfc\x3d\xe2\x05\x8e\xa4\xa6\x2c\x68\x4f\xca\x4a\xc7\x1e\x83\xd7\xad\x44\xe7\x2f\x63\xc2\xea\x59\x2f\xe4\xe0\x59\xd5\xbd\xdb\x69\xbe\x93\x23\xeb\xcb\xc1\x43\xcf\x61\x0f\x16\x82\xc8\x4f\xcd\x6e\xdb\x13\x09\xd3\xb8\x48\xa6\x1e\xeb\x4f\x2f\x0e\x2d\x6d\x55\xcd\x0a\xa0\x10\x11\xbb\x0d\x09\x98\xdb\xd2\xc0\x64\x93\x96\xa6\x21\x06\xef\x4b\x2e\xd4\x2b\xdf\xa3\x5b\x6f\x58\xd8\x01\xeb\x4b\xf0\xf7\x98\x76\x47\x46\x5e\x8e\xe2\x5f\x1f\x8d\x84\xf9\x3d\x2b\x48\x26\x53\x40\x63\x1f\xee\x8a\xa8\x37\xe7\xf0\x60\x58\x5f\xe1\xe7\xaa\xa7\xe4\x4c\xab\x83\x76\x19\xcd\xdb\x26\x2c\x0d\x7f\xcd\x53\xdb\x71\xe1\x89\xf3\xeb\x39\x3c\xac\x66\x04\x20\x19\xe7\x6f\x9a\x18\x86\x5e\x94\x86\xa0\x1d\xbd\x65\xbc\xf2\x0b\xa4\x61\xc3\xe6\xe2\xfb\x41\xa0\x6a\x6a\x66\xcd\x2d\xe4\x44\x80\x95\x10\x0a\x52\x92\x55\xfb\x18\xcb\x79\x53\xa9\x3a\x70\xc9\xae\x3d\xcc\xc8\xcc\x4d\x09\xf4\xb1\x95\x8b\xf9\x4e\x31\xbd\xf6\xca\xd6\x04\x73\xd7\x86\x27\x50\x01\x13\x28\x19\x21\x86\x6e\xfc\xae\x10\x8d\x29\xec\x4c\x10\x6e\x0e\xa3\xb4\x33\x1a\xee\x74\x08\x94\x84\xb8\x53\x5d\x72\x1d\x27\x78\xff\xee\xcb\x5e\xc7\xd5\xa0\x08\xc8\x23\x83\xba\xd3\x39\x75\xa6\x93\x12\xae\x3e\x61\x2c\x93\x6c\xf6\xa4\x0a\x17\x0e\xd9\x7a\x6b\x11\xe2\x94\xae\x9c\x7d\x90\x2f\x27\xe8\x8d\x66\x0b\xcc\x9e\xe4\x4d\x43\xec\x52\x06\x21\x01\x30\xc2\x0b\x81\xe5\x20\x2e\x9f\x9e\xfb\xa7\x37\xa4\x99\x1f\xef\x28\x04\xd0\xd0\xe6\xa8\xd8\xd1\xe0\xdb\xcb\x3f\x73\xdf\x0d\x87\xf0\x81\xc8\x21\xef\xa8\x7a\x35\x8c\x44\xce\x0f\x20\x53\x4f\xb2\x12\xfe\xfc\x87\x32\x13\xe1\x32\xa1\x58\x49\x20\xa4\xc0\xc6\x27\x86\x90\x5a\x53\x56\x64\x16\x3c\x82\xd5\x2e\xb5\x49\xc9\xec\x85\xe2\x75\x5a\x22\x6d\xb2\xd1\x32\x65\xa7\xb9\x74\xfc\x82\x42\xc1\xcb\xc8\x61\x48\x26\x56\xdd\x6f\xe2\xf3\xcc\x6c\xf4\x76\x1e\xa5\x11\xaf\x9f\x47\x5d\x93\x2b\x39\x28\xdd\x21\x6f\x8c\xaa\x20\xa6\xa5\x2d\x61\xcd\xab\x7e\x88\x2a\x61\x31\x69\x5d\x24\xb4\x49\x99\xf5\x6a\xa7\xa1\xbe\x29\xd6\x17\x4a\x7e\xf3\x73\xc1\x1b\x03\xf1\xa7\x83\xe9\x01\x63\xe8\x31\x0d\xe1\x04\x36\x08\xbd\xdb\xc8\xfb\xbc\xe6\xbb\xe4\x76\x7e\x36\x76\x9b\x3a\xb0\x55\x51\x89\x6b\x76\xe3\x4b\xc4\x1d\xfe\xbb\x1f\x23\x98\x3f\x84\x11\x3c\x52\x1b\x5e\x0d\xf3\xdc\xff\x96\x5f\x1d\x14\xce\x28\x10\xf0\x24\x87\xd7\x3b\x13\x40\x63\x4a\x09\xaf\x08\x23\xbb\x9d\x4e\x92\xe4\x07\x8d\x40\xf8\x43\xdb\x91\x6f\xad\x84\x5d\x77\x0e\x9c\xf6\xbc\xba\xbb\xe8\x8b\x73\x5f\xde\xbd\x19\xd6\xc7\x40\xec\x3d\x99\x07\x81\x2d\xa5\x55\xe1\xc2\xa0\x83\xeb\xe0\xe5\x33\x05\xd7\x4a\xa7\x26\x5f\xdf\xf5\x2d\xe5\x72\x6a\x97\x8d\x4d\xaa\x9b\xfb\x4f\xf4\xe9\xd9\x02\x88\x5c\x1c\xab\xcf\x39\x88\x59\x02\x18\x2f\x1c\xd9\xd6\xf4\x86\xc6\x11\x7e\xd4\xcf\xe8\xee\xb1\xdd\x2f\x7d\xf0\x98\x92\x3c\x71\x8e\x3a\x98\x43\x93\xb4\x77\x4a\x49\x5e\xf2\x79\x2b\xbe\x80\x65\x56\x1d\x37\xfe\xb6\x98\xfd\xa1\x7f\xd6\xc6\x5d\x34\x50\xef\xf7\x65\xbb\x52\xf4\x35\x2e\x7c\xe2\x76\x33\x69\xc5\x56\x95\x01\x17\xec\x73\x79\x2d\x44\xa7\xfe\xc2\x2b\xd0\x58\xbb\x8d\xff\x34\x1b\x74\x52\x98\x63\x42\x59\xeb\x3f\x02\x29\x89\x92\x5a\x0e\x48\xbf\xa9\xb4\xa9\x5e\xea\x41\x4f\x37\xfa\xab\xa6\x99\x26\xcd\x7c\xb8\x22\x28\xa2\x41\x09\x6c\x3d\x2a\xb6\xc3\x62\xf4\xd1\xe6\x02\x6b\xb0\xac\xf8\x5f\x3a\xcd\x39\xb8\x76\xbc\x2f\x0d\x55\xad\xe0\x2b\xcf\x50\xbf\xcd\xe6\x07\x70\x05\x8d\xca\x04\x5c\x52\x7a\x21\xad\x84\xf0\xb8\xe0\xf5\xb3\xb7\x6b\x9c\x3c\x41\xf7\x8d\xbd\x8d\xc1\xb5\xf4\xc1\x42\x37\xbf\x42\x0b\xf2\x5a\x77\x56\x39\xd0\x3a\x4f\x72\xd8\x56\x4d\x48\xcc\x1b\x54\x91\x34\x20\xe6\xc9\xf3\xb1\x75\xe9\x82\x4c\x6a\xda\x51\x56\x13\x26\xef\x9e\xc6\x8e\x84\xf2\x1e\x8f\x1d\x7d\x25\x0c\xb2\xe7\x6a\xa5\x1b\x85\x27\xa2\xf4\xab\xba\xaf\xc3\x3a\x0c\x95\x00\x58\x60\xfb\x97\xea\x47\xe9\xf0\x5c\xa3\x05\x0c\x3f\xa6\x4f\x2e\x9f\xc2\x9f\xed\x1a\xf0\xd4\x18\xdb\x02\x91\xaa\xa9\xe2\x4e\x0e\xe7\x8c\xdf\x96\xf8\x43\x56\x20\x25\xa5\xef\x9f\x0a\x04\x7a\x3a\x42\x55\x4a\x9e\x83\x74\x9f\xc2\xd9\x1f\xb4\x3d\x9b\x9c\xc0\x75\xf5\xf2\xde\xc4\xca\x25\x16\x1f\x3f\x2f\xa9\x22\x97\xe1\x7b\xb0\xe9\x61\xe9\x5d\xd6\x39\x7a\x9e\xa7\xb7\x19\x68\x1a\x83\xe4\x33\x94\x00\x7f\xdf\x5d\x12\xaf\xb9\x40\x1e\xdb\x09\x98\xf5\x36\x8a\xe5\x6d\x35\xdf\x73\xdd\x77\xfa\xab\x76\x19\x1f\x8d\x44\x1a\x5c\xe8\x1b\x0a\x1b\xff\x00\x0c\xf1\x45\x40\x4b\xc1\xd0\xd1\x3d\x6c\x60\xec\xfa\xf4\x2c\xd2\x6f\x00\xb7\xe4\x91\xe0\x4e\x7f\x56\x2a\x87\x56\x8e\xad\x65\x6a\x48\x05\x63\x45\x8f\xb5\xc5\x12\x1c\x84\x55\xf7\x7d\xc8\x34\x8c\x36\xf0\xc5\xe5\xfa\x5c\x65\x4e\xf3\xad\x1b\x49\xc9\xa3\x92\xe1\xe2\x96\x18\x9a\xcb\x14\x54\xc4\xe2\xdb\x62\x1b\x6c\x0e\xdb\x54\xb5\x13\x0b\x74\xb0\x6e\xeb\xc1\xc5\x83\x59\x50\x4b\x30\xb0\x47\xaa\xf1\x97\x09\x3f\x6e\xdd\x7f\xa1\x9b\x2f\xb0\x82\x1f\xf8\xc4\x9d\x4d\x6c\x4a\x55\xd6\x54\x0e\xe1\xad\xde\x86\x7e\x3a\xa4\xa7\x48\x0e\xf2\xb9\x5d\xc8\xc3\x5e\x48\x71\x31\x16\x04\x69\xca\xaf\xe1\x76\xa6\x50\xa8\x84\xd2\x89\xd4\x69\xeb\x5e\xe7\x05\xdc\xba\x96\xa5\x54\x1f\x76\xaf\x91\xc8\x57\x7c\x00\xd2\x40\x8d\xce\x99\x9f\x2c\x8c\xb9\x59\x10\xe4\x1d\x1a\x3c\x77\x17\xdd\xa9\x51\x04\xdf\x27\x09\x87\x03\x9c\x91\x34\x81\xfc\xca\xb4\x0e\x50\x6a\x7f\x0e\xbd\xf6\x08\x75\xf5\x85\x8b\xa8\x21\xd5\xd9\x70\x7f\x70\xf1\xde\x72\xd4\xc4\xa3\xc7\xb5\xd4\xef\xa6\x1e\xce\x0e\x81\xaa\xb1\xfe\x79\xda\x20\xcf\xb7\x26\xda\x2a\xfe\x82\x9f\x61\xa3\xba\x89\xdb\x15\x18\x9a\x4a\xd8\xd2\xb6\x60\x79\x88\x66\x4d\xeb\xe7\xab\x4d\x0e\xf3\xb2\x45\x2e\xec\xf9\xd3\xed\x46\xf4\x33\x81\x1a\xc9\x5b\x9e\x0e\xf0\xd8\x9c\xba\xe2\x0a\x93\x0f\x06\xaf\x4d\x42\x99\x1f\x9f\xef\x43\xfe\x97\xe8\x8f\xf4\x37\x6c\x88\xc4\x47\xc1\xd6\x8b\xa2\x17\xf6\x24\x04\xb7\xa9\x16\x7d\x6c\x26\x8f\x1a\xc8\x61\x9e\x24\x8e\x5e\x9b\xe7\x27\xac\xa4\x91\x57\x25\x05\x28\x52\x7d\x75\xbd\x32\x50\x6b\x6b\xd2\x81\x38\xc1\x08\x35\x8e\x97\xe3\x97\x4e\xad\xd6\x0b\xf2\x3c\xbf\x27\x4c\x77\x19\x48\xaa\xc4\xee\xbb\x26\xc7\x7d\x3f\x3f\x96\xc6\xfc\x9b\xd7\xf0\xd6\x83\x5d\x85\x85\x18\x4a\x40\x4c\x45\xa1\x85\xa8\xc7\xc9\x42\x01\x3e\x26\xe6\x71\x54\xb2\x5b\xb9\x1f\x6f\x30\xfd\x3d\x75\x3b\x4f\xe3\x3b\x41\x78\x3e\x01\xef\x25\x2a\x70\xf1\x09\xb8\x96\x2e\x26\xbe\xa0\x83\xfa\xf9\xcd\x95\x0d\x39\x2a\x2f\xb0\x17\x8b\x3e\xa6\x6d\xa1\xbe\x38\xfa\xa5\x4f\x63\x9e\x36\x44\x66\xf0\x72\xda\x00\xa2\x7b\x1f\x54\x1a\x13\x7a\x9d\x9e\x33\x22\x52\xaf\x89\x5a\xeb\x62\xed\x99\xb9\xfb\xa2\x45\x4f\x4d\xd6\xf6\xbe\xda\x3f\xd0\x34\x71\x99\x3c\xa6\x06\xfa\xc5\x35\x08\xa7\x2e\x84\xe9\xfe\x06\xc6\xd2\x05\xb0\x9b\xa0\xa6\x64\xb0\xce\xe1\x47\xaa\xb5\xdd\xef\x4b\x0a\xe3\x82\xb1\xfd\x31\xea\xb1\xba\x78\x6a\x82\x9f\xce\xe3\x7a\x9e\xe7\xf4\xbf\xc2\xe1\x2d\x04\xe9\xfe\x06\x34\xd1\x0f\x60\xda\x0b\x89\xa5\xf5\x48\x1a\x93\x9b\x63\x9e\x1c\x79\x81\x8f\xf0\xf0\xc0\xbf\x3f\x17\x67\xe6\x78\x7d\x97\x07\x6f\x69\xa4\x15\xbf\xc8\x8f\x5c\xd6\x6f\x18\x58\xfd\x49\x8c\xa1\x44\x34\x21\xdf\xd6\x90\x83\xd9\x37\x67\x56\x0a\xa4\x7f\xba\xd8\xd2\xfc\xe2\x09\x20\xf8\xb8\xfe\x6d\x23\x7c\x07\xf4\xf4\x36\x0e\x33\x20\x8f\x19\xf4\x07\x50\xb6\xa8\xde\xb1\x91\xc3\xb1\x7e\xce\xb8\xf2\x8e\x54\x07\x65\x38\x56\x4d\x39\x37\x0f\x9e\x89\x79\xb7\x11\x2f\x00\xc4\x32\x32\x55\x62\x2b\xa3\xac\x67\x03\xcc\x5f\x8a\x1d\x0b\x6d\x1c\x9f\xda\xfa\x82\xd9\x6f\xc5\x4f\xce\xd6\x07\x80\xf6\x56\xc2\x15\xdc\x4e\x1c\xee\x6e\xa7\x37\xbd\x4f\xe8\x5f\x9a\xda\x3b\x5d\x78\xa3\x89\x83\xaf\x8c\x44\xf3\x05\x14\x79\x56\x36\xb7\x87\x31\x41\x7f\x80\x00\xf8\xdf\x23\xf9\xb1\x1f\xdc\x9f\xd7\xc8\x0e\xdd\x60\x2f\x34\x7f\x5e\x9f\x9e\xb9\xfb\x4b\xc3\x25\xdc\x31\x08\x01\x13\xcd\x4a\x91\xcd\x2d\x5c\x1a\x8f\xd3\x7d\xa4\xdb\xc4\x96\xa9\x32\x47\x9f\xf0\xb8\x18\x5d\x2e\x36\xdd\x79\x26\x08\x62\xbb\xa3\xd8\x15\x57\x7d\xbc\x34\xfa\xe0\xa3\xda\x42\x8f\x7b\x1a\xd8\x50\x11\x5d\xa1\x24\x8e\x69\x7c\xe5\x8e\x81\x8c\xcd\xc7\x11\xdd\x59\x44\x61\x6e\x8d\xd0\xef\x75\x71\x88\x73\xc8\x20\x9d\xbe\x04\x90\xaf\xa3\xc2\x94\x25\xd6\x0c\xa5\xa0\x49\x23\x80\x82\xe0\x80\x94\xe3\x62\xd3\x1a\xcc\x51\xd8\x39\xd1\x6f\x5c\x6f\x24\x35\xa6\xc7\x41\x72\x69\x44\xac\x5b\xfa\x64\xed\x89\x64\xf0\xa4\x3f\x93\xe4\x32\xec\x45\x06\x28\x8a\x73\x4f\xb1\x95\xd2\x8e\x61\x8f\x51\x96\xfc\xe5\x28\x71\x07\x16\x33\x73\x41\xb6\xeb\xd8\x26\xa8\x49\xdd\x2f\xd3\x34\xc0\x1d\x8a\x74\xc0\x18\xfb\xa7\x64\xf8\x0d\x47\xec\x34\x71\x21\x92\x46\x35\xd0\xc7\xa9\xfd\xda\xa7\x6f\xfe\x81\x8a\x44\x82\xeb\xf4\x8c\xe0\xe4\x28\x23\xd0\xe7\x99\xa6\x10\x1a\xf2\xc3\xbb\x51\x54\xa1\xdf\xaf\xa6\xc1\x72\xa4\xa9\xb9\x81\xb3\xdb\xb0\x03\x7d\x90\xf6\x81\x7c\xdb\xcd\xf7\xb0\xec\xbe\x0a\xc9\x8a\x94\x9a\x42\x8a\x64\xa1\xbf\xc3\x36\x80\xa1\xd2\xbb\xf3\xec\x7a\xe4\xc4\x33\x76\x6d\x59\xf1\xe7\x1d\x46\xad\xc9\xf8\xf6\x97\x06\x73\x55\xaf\xaf\xde\x76\x24\x3e\x46\x92\x07\xb3\x55\x1c\xed\x9b\xef\xe9\x61\xb3\xe6\x24\x77\xf8\xc8\x8e\x9d\x05\x9c\x69\x8c\x77\x3f\x49\xf9\xdd\x34\x45\x8a\x11\xf4\xf4\xb2\xd9\x9c\x1e\x86\x87\x8b\xc7\x59\x48\x04\x73\x91\xff\x99\x8b\x56\x04\xe3\xb0\x31\xea\xea\x35\x0e\x4d\x03\x9c\x37\x9b\xfd\xbe\xe0\x50\xa7\x5f\xc3\xc1\x1f\x1e\xd9\x82\x53\xd8\x10\x94\x01\xa9\x16\x7b\x47\x1e\xbf\xd7\xd6\xb9\x2c\xc0\x99\x20\xc8\x27\x84\x2a\x69\x56\x63\x40\x61\x23\x13\x32\xad\xc7\xbf\x3f\xfa\x27\xa6\x65\x51\xe2\xf2\xf7\xba\xe5\xec\xed\xc3\x05\xd8\x52\x26\x08\x12\x85\xe3\x74\x9c\x1a\x19\x99\xf8\x18\x5b\x1c\xf6\x2f\x2a\x35\xc8\x05\x53\xf8\x68\xb8\x7b\xe2\x9e\x24\x39\x58\x7f\xa1\xd3\x15\x63\x05\x76\x1f\x1f\x32\x69\xef\xaa\x57\x77\x7b\x91\xfd\xda\xf9\x6f\x65\xc2\x83\x5e\xc3\x44\xb8\xcf\x6a\x91\x07\xf7\x48\xaf\xca\xe8\x71\xe0\xcb\x37\x78\x47\xa4\xa3\x10\xcd\x6f\xae\x18\x2b\x4c\x41\xbc\x71\xa6\x75\x37\x27\xa9\x2f\x79\x76\x7a\xa8\x9b\x77\x57\x66\xdd\xe3\x57\x4a\xf4\x4f\x8f\xd0\xa7\xe5\xf8\x84\x62\x50\x39\xd4\xd6\x22\x68\x2e\xb2\x3f\x3a\x3f\xfb\xdd\xe2\x04\xb1\xde\x71\xcd\x1f\x2e\x6c\xf3\xd7\x49\x9b\xb8\x79\x0e\xf4\xbc\x26\xd9\xde\x73\x5f\x68\x1d\x5f\x8c\x4e\x65\x33\x5f\x66\x23\xde\xd5\x12\x7e\xe7\x8a\xb1\x12\x31\xc1\x2a\xec\x1a\x70\xbb\xbf\x35\x1c\x58\xad\x71\x62\xce\x9e\x4b\x10\x46\x99\x77\x42\x7c\x1c\x71\x2c\xd2\x59\x74\x36\x35\xe5\xb4\x2d\x19\xc1\x15\x56\x33\x86\x5e\x88\xe4\x71\xcd\x23\xb3\x05\x9c\xd8\x7f\xa9\xd1\x98\x04\x65\xfa\xa1\xf0\x12\xf2\x04\x4e\x43\x83\x05\x9d\xc9\x84\x86\xd6\xbc\x7c\xe8\x14\x62\xa4\xb6\xd5\x08\x79\x9a\xf9\x1a\x2c\x30\x10\x25\x72\x6c\xc4\x3a\x25\xd7\xef\x6a\x2f\x37\xfb\x2d\xd2\xb3\x5c\x26\x0e\x1d\x3c\x9a\xb3\x26\x49\xe7\x28\xf4\x15\x8d\x4e\x7b\x21\x46\xb0\xe2\x34\xa4\x61\x2a\xea\xff\xd4\x02\x00\xad\x78\x50\xfe\xfc\x5b\xf2\x01\x55\x70\xa6\xd5\xf6\xf0\x7f\xb1\xf2\xd6\x5f\x51\x7d\xef\xfb\xf0\x99\x61\x48\xe9\x6e\x46\x5a\xba\x44\x52\x06\xe9\x46\xba\x41\xba\x4b\x4a\x72\x68\xa4\xa5\x11\x85\x41\xe4\x45\xa7\x80\x80\xc4\xd0\x25\x29\xdd\x29\x2d\x21\x5d\xf3\x2c\x79\x7f\xfe\x83\xe7\xfb\xe3\xac\x35\x7b\xf6\xbd\xef\x2b\xee\x6b\xcf\x3a\xeb\x08\x7b\x5f\x95\xe4\x5e\xe8\xd2\xec\xf2\x74\x0f\xe4\x1b\x70\x75\x51\x90\x60\xc9\x22\x3c\x31\x60\x67\xbe\x11\xc9\x83\xb8\x88\x66\x5e\x17\xb7\x21\x4d\xf3\x60\x35\x89\xcb\x3a\x4c\xe5\xa3\x83\xa6\x18\xd8\x16\x2e\x0c\x21\x28\x3d\xf1\x4e\xee\x81\x18\xf5\x8d\x43\xc6\xdc\xf8\x46\xe5\xc4\x67\x32\xca\xb2\xea\x36\x27\xbf\xeb\x99\x49\x7d\x92\x18\xab\x25\xd9\xc3\x37\xd7\xfa\x8a\x2c\x90\xf3\xe7\xfc\xf6\xf6\xcc\x06\xd1\x05\xaa\x66\x6a\xb6\xb5\xe5\x5d\xf2\x2f\xd8\xbe\x59\x72\x97\x2f\xac\x5b\x14\x72\x92\x87\x05\x52\xd5\x00\x26\xa0\xdd\xc3\x29\xbf\x8c\xff\x50\xa8\x02\xab\x9b\x1d\x65\x6c\x30\xfb\x2d\xdc\x18\xde\xbc\x94\x5f\x1a\x02\x52\x0e\x58\xe6\xd3\x79\x31\x4b\x3a\x50\x46\x5e\xd7\xb7\xe8\x7f\xd2\x42\x93\xca\x39\x0d\x2c\x62\x29\xa5\xe4\x14\x9b\x05\xc7\xcf\x1c\x85\x3e\xfd\xb1\xdd\x58\x9a\xf7\x75\x92\x34\x81\xdb\xd5\x3c\xb8\xf0\x73\x19\xf6\xd3\xf1\x2c\xa2\xe0\xe2\x20\xff\x5f\xd3\x6b\xd1\xca\x11\x7b\x0f\x24\x7b\x5b\x49\x8c\xce\xf8\x82\x4b\x90\xc5\x29\x00\xd2\xfa\xfe\xc2\xde\x7a\x6a\x5d\xf3\x8b\xe2\x58\x24\x81\x39\xe3\x4b\x2c\x96\x72\xb5\x50\x0b\x9e\x7b\xbd\x2c\xf5\xdb\x97\xb3\xa7\x3d\x10\xc6\xa7\xab\x0d\x18\xc9\x67\x56\x65\xd3\x96\x04\xed\x71\x9d\xf1\xa0\xb4\x1b\xa9\x7d\xff\xeb\x2e\xdc\xb4\x2e\x65\xb4\x50\x29\x7f\xfe\x09\x53\x0c\xe8\xb3\x71\x2a\xc0\xf6\xe6\xfc\x2f\x98\xbb\xd8\x18\xf7\x50\x32\x5c\x0b\xd5\x89\xf0\x9c\x95\x22\x61\x67\x85\xaf\xed\x53\xf5\x5c\x0e\xde\xfb\xa4\x83\x56\xd1\xdf\xb5\x7c\x4a\x16\x91\xd2\xde\xfe\x1b\x59\x22\xa5\xfc\xe0\x8d\xe5\x76\xc4\xd7\xb5\x59\x3d\x21\x03\x38\x01\xf4\xa7\x96\x15\x3f\x5e\x02\xbc\xc4\x56\x9b\xe4\x32\xc1\x34\x5d\x62\x9f\x04\x39\x6d\x6c\xe5\x48\xbc\x3d\x03\xa4\xe4\xb1\x99\xd1\x4b\x9b\x4b\x41\xcc\xe9\xe1\x8b\x39\x37\xd1\x6f\x16\xbe\xc8\xd5\x96\xee\x6f\x11\x30\xf1\xe1\x33\x0d\x43\xcc\xce\x1d\x5b\x6e\x71\x01\xf1\x15\x7f\x32\xd7\xfa\x5b\xdc\xa5\x45\x2d\xb6\xf9\xae\xb1\x93\x65\xdf\x2b\x78\x3d\x9f\x48\x91\x24\xee\x4f\xe0\x6c\xf2\x41\xbf\xc5\x64\x18\xa2\x83\x1f\x9d\xc7\x26\x95\xe9\x54\xc4\x36\x79\xc9\x6c\xf2\x86\xfb\x44\x2e\x9a\x81\xe0\x94\xe5\x69\x47\x37\x32\x0a\xfd\x3c\x8d\x08\x9c\x13\xfa\xae\xd1\x64\x06\x70\x9f\x1f\x4e\xa5\xdf\x9c\x3f\xd4\xd1\x64\x0f\xb8\xfa\x3b\xe4\xe6\x2b\xa0\xf8\xd1\xc7\xcc\x3c\xd8\xa6\x7d\x1f\x17\xaa\x54\xcd\xf7\xdb\xad\x45\x34\x7c\xf9\x81\x4c\xc9\xb2\xb7\x61\x56\x0d\xa0\x9b\x6f\x6b\xa8\x38\x4e\x03\x21\x5a\x8f\xd3\x96\x28\x39\x9c\xf4\x3f\x77\xb4\xf9\x45\x55\x35\xb3\x8a\xf2\x9e\x08\xb2\xe1\x09\x5a\x9f\x2c\x63\x21\x96\xa5\xe6\x72\x92\x92\x4c\x02\x86\x80\xd2\x1d\xb6\x60\x70\x4d\x7f\x92\x89\x98\x8a\x84\xad\x16\x83\xf3\xaf\xe7\xe0\x8a\x87\x13\xd6\x2e\x8b\x39\x55\x44\x16\xb2\xd3\xff\xc4\xfd\x44\xf2\x45\xbb\xa4\x0d\x50\x23\x05\x56\x19\x7b\x70\x45\x40\x3c\xc2\x5d\x9a\x4d\x5c\xfa\x68\x99\x71\x2f\x86\x20\x5e\x44\xc7\x69\xa0\x1d\x1c\x21\x0e\x51\xfb\x5b\xd4\x82\xf5\xec\xce\xd9\x13\x6f\xfe\x0f\x4a\xc6\x06\x3e\x81\x58\x08\x87\x3f\x01\x46\x4d\xdb\xb8\xc0\x67\xbc\x17\xbd\x98\x6a\xa1\xff\x51\x51\x1b\x1f\xab\xdc\xce\x9c\xbc\xdd\x74\x20\x14\xd3\xfc\x61\x41\xde\x0f\xe1\x20\x34\xe0\x1b\x47\xbd\x12\x1e\xa5\x82\xff\x5c\x5d\xfc\x4e\x69\xc6\xfd\xad\xdb\x32\xd5\xd1\x6a\xa6\x8e\x46\x75\xd0\x6e\x4e\x15\x09\x01\x8d\x52\xc1\x86\x54\x4f\x2a\xb1\xe5\x54\x07\x65\x2b\x6c\x12\x95\xae\x77\xce\x93\x02\xff\x6a\xa6\x5e\xd4\x38\x07\x60\x5b\x43\x4c\x09\x65\xc5\x67\x04\x41\x4f\xd0\x3a\xe8\x43\xab\x56\x2f\xd9\x70\x8e\xe6\xee\x96\x36\xcb\xa5\xbc\x83\xe9\x13\xc7\xfc\x7f\xd9\xde\x1a\x7e\xdf\x24\x36\x10\x21\xea\x31\x86\x0f\xbd\xc5\x83\x45\x46\x42\xfb\x20\x58\x82\x26\x55\x61\xf1\xd3\x06\xee\xce\x13\x4e\x6b\xd4\xdd\xf9\xfc\xa0\x20\x48\xa0\x0d\x30\x2b\xf2\x36\xfb\x25\x59\xbc\x8a\xd8\xa0\x0e\xd6\xec\xc4\x3e\x54\x15\xa9\x78\x9e\xe2\xa8\xed\x6c\xe8\x6a\x03\x2e\x7e\xc8\x7b\x3d\xa7\xfb\x8e\xa2\x4d\x00\x60\x21\xae\x87\x67\x0e\xc6\x35\x6c\x94\x0c\xe4\x4b\x39\xef\x9e\x17\xd3\xe9\xd5\x92\x3b\x30\xf3\xb5\x9b\xdd\x89\x15\x2f\xb5\x09\x02\xce\x92\xd6\x41\x82\x40\xf6\xe4\x4a\x38\xd8\xf3\x34\xc9\xa5\x25\x41\x83\xc3\x13\x27\xe7\x48\x10\x54\xbe\x71\x9f\x89\x8f\xd3\x26\x08\x2f\x14\x8c\xac\xea\xc1\x14\x4b\xf3\xe1\x2c\xf0\xe5\x15\x5b\xae\x30\xae\xfa\x63\xcd\x46\xf5\x59\xeb\x40\x97\xc1\x27\x8f\x07\xac\x1b\x26\xbf\x5f\x3d\xeb\x8b\x81\x00\x2b\x60\xdf\xc6\xe0\xb3\xa8\x0e\xf0\xd5\x0f\x5f\x36\xa2\xd7\x62\xc4\x05\xf9\xe7\x4c\xe4\x6c\x09\x84\x2a\x43\xaa\x2f\xf3\x32\x0c\x8b\x42\x05\x00\x51\x78\x9b\xa6\xd2\x78\x71\xae\x95\x73\xf7\xe2\x03\x3a\xdd\xa6\xc3\x46\x4f\x31\xa5\x7b\xe3\x00\x33\x3c\x4c\x7f\xe1\x4d\x6b\xa8\x00\x3c\xa3\xdc\xc0\x8d\x7b\x1d\x37\x68\x26\xcb\x35\x45\x9e\x3a\x75\x38\x2c\x1b\x86\x0e\x7e\xb2\x17\xb9\x5d\xd1\xfe\x49\x16\x63\x10\x48\xd3\xc4\x95\x9b\x14\xc7\x4e\x3a\x0d\xfe\xcb\x75\x12\xf1\xfe\x78\x6a\x2c\x0f\xbb\x89\x2b\x15\xbb\x91\xd9\xbd\x4c\xc5\xb7\xf2\x13\xfa\x08\x90\xf1\x22\xb6\xa9\xf2\x95\x72\x4c\xc1\xa7\xaf\x72\xd8\xfc\x91\xc3\x31\x4f\x41\x3f\xef\xc4\x0d\x8b\xe6\x43\x05\xe1\x6a\x83\x12\x05\xda\x25\x88\xda\x31\xf9\x8f\x0c\x3a\x51\xa9\x21\xce\x17\x35\x71\xbf\x04\xdb\x46\x21\xb8\x24\x63\xc1\xf0\xf2\x0c\x5c\xc4\x0a\x4c\x6c\xac\x7a\x2d\xb7\xdb\xaa\xe7\xcb\xd1\xf9\xf8\x16\xb8\xd3\x3f\xc4\xf5\x36\x13\xad\x7b\x34\x9e\x78\xd6\x92\x2f\x48\xdd\x17\x30\x12\x80\xb3\x18\xd6\x10\x15\xfe\xc1\x58\x1a\xbc\x4e\xb7\x73\xec\x61\x74\xfe\x79\x33\xf5\xfe\x9e\x3f\x14\x06\xa9\xfe\xaf\xd0\xa3\x7c\xec\x21\xd1\x61\x00\x48\x7b\xa3\x3b\xf5\xfb\xfb\x02\x0e\x44\x33\xdc\x4e\x07\x95\x34\x0e\x8d\x92\xe3\x03\x8d\x42\x6e\x2e\x0b\x96\x24\x02\x3c\xd7\xa4\x8d\x31\xaa\xcf\x3c\x4f\xa4\x28\xd6\xa8\x7c\xc3\xb4\x9a\xe7\xfc\xa0\xb4\x00\x09\xd6\x07\x60\xe2\xcc\x58\x50\x9d\x62\x4f\xd3\xf0\x30\xb3\x01\x17\xe6\x10\xf5\xb4\xc3\xcd\x71\x66\xac\x0c\x26\xad\x1f\x70\xbe\xde\x2b\x39\x7d\x1f\x32\x98\x20\xee\xd3\x05\xf1\x22\x99\xcd\xe7\x3d\xac\x34\xb6\x35\xcb\x9d\xc6\x05\x64\xc2\x3e\x10\x7c\x98\x52\x14\xa8\x3d\xd7\x67\x7b\x2d\x43\x4f\x1d\x22\x10\x4a\x88\xdd\xf2\x51\x52\xc6\x59\x88\x2c\x77\x1a\x17\xf6\x2c\x7b\x60\x0c\x95\xad\x35\x9d\xb0\xa8\x40\xd3\x73\xeb\xba\xf8\xce\x3b\xdc\x1b\x65\x7e\xb2\x17\xbd\x24\x18\x8a\x80\x24\xd2\xab\xca\x84\x0d\xb2\x6f\x9b\x07\x60\x54\x07\x66\x34\x56\x98\xc0\x6b\x82\x58\x1d\x66\x66\xf7\x46\x62\xfb\x52\x80\xe9\x6f\x8b\xa2\x3e\xe5\xb0\xad\x5f\x8b\x85\x92\x68\x9a\xa5\x5f\x78\x57\xf7\x7f\xeb\xd8\x0e\xa8\x42\xe9\x20\xd5\x4b\x97\x33\xaa\xc6\x8e\xcc\x68\x30\x73\x64\x9e\x2a\xa7\x99\x72\xdb\x1e\x37\xb7\x77\xde\x11\x7f\x68\x23\x11\xec\xa9\xd8\x33\xdc\xcf\x09\xd6\x80\xf2\x09\x1f\xfe\x1a\x17\x46\x84\xcf\x4d\x78\xcf\xe5\xd5\x0b\x92\x18\x26\x90\xf3\xa5\x8d\x17\xe7\xad\x04\x89\x15\x15\xf2\x3f\x19\x91\x2e\x53\x1e\xae\x1d\x86\x77\x5d\x5e\xc1\xd3\xe6\xbc\x98\xbb\x69\x7d\xb5\x59\x30\x51\xf0\x54\xd8\x05\xfb\xa5\xc9\xb6\xa0\x15\x15\x2c\x33\x05\xcd\xc1\xf8\xf3\xa0\x5e\x4a\xa4\x4b\xca\x83\xf1\x40\x42\xde\x36\x1d\x8d\xbd\x9d\xd4\xc3\x2c\x01\xc9\xb1\x2a\x10\x70\x3f\x5c\x41\x31\x1a\x70\xb1\xfd\x2b\x7c\x1c\x17\xe6\x42\x19\x96\xfb\x73\xcc\x67\x64\x78\x32\x6b\x00\x28\x0e\xf7\x39\x1d\xc8\x6c\xe5\x07\x69\x40\xdc\x7f\xfa\x16\xe7\x0c\x53\x0f\x03\x69\x5b\xc3\xdf\x7a\x3a\x72\xb1\x20\xee\x77\xb3\x2c\xeb\x5b\xc0\xf2\xe7\x56\xdb\x46\x8c\x55\xdc\xe8\xbc\x1d\x46\xb8\xfa\xc1\x98\xc2\x68\xbc\x1d\x80\x83\x8f\x9b\x53\xf9\x44\x4b\xd6\xd3\x5f\x8e\x94\x07\x33\x87\x1e\x5c\x56\x3d\xa5\xbf\x53\x60\x97\x6f\x0d\x88\x28\xed\x78\x0a\xa1\xc7\xab\xdb\xf3\x65\xab\xf3\x35\x23\x82\xa8\xfe\x53\x0a\x32\xf4\xb9\xc3\xb2\x28\xca\xab\xf8\x32\x26\x96\x86\x0b\xa3\xd2\x63\x2a\x36\x27\xc5\xd8\xc3\x12\x64\x12\x45\x1b\xeb\xf8\x60\x23\x42\xd8\x9f\x25\xde\xde\xf9\xb4\x7b\xf8\xbb\xcc\x10\xc0\xa7\x60\x9e\xfe\xa5\x7d\x99\xd6\x33\xbe\x0d\x81\xfd\xd7\x3f\x7e\xd2\x46\x77\x43\x16\x36\xf6\xf7\x09\x5b\xcc\x8a\x42\xa1\xa7\x3d\x15\x5c\x80\xb0\xcf\x2b\x8f\x28\x3d\x5f\xba\xb3\xa2\x32\x9f\x22\xec\xca\xae\x5d\x15\xf9\x1e\xf0\xbf\x97\xa1\xf9\xcb\x5b\x28\x53\x4c\x05\xd7\x42\xf8\xba\xdc\x45\x4d\x56\x4a\xa8\xb8\xe3\x21\x74\xf6\xd6\x02\x42\xb1\x56\x03\x87\x35\x30\x88\x11\x1d\x6f\x77\xa8\x90\x52\x3c\x24\x9c\x9a\x85\x6d\xf2\xe1\x7f\xb8\xc2\xb0\xbb\x33\x80\xe5\xd0\x32\xf7\x96\x99\xb8\xd7\x34\x84\xfe\x18\x08\xdc\xde\x62\xe4\x25\x80\x60\x72\xdc\x10\x0d\x64\x25\x44\x07\xc5\xc7\xb4\x46\x3f\x6d\xf7\x78\x1d\x61\x4a\x6b\xcb\x4c\x05\xd7\x5a\x2f\x43\x8b\xe9\x9b\x8e\xb3\x0a\x0f\x29\x0a\x03\x32\xae\x5d\xad\xe2\xf2\x3f\xd8\x00\x73\xe5\xfd\xf9\xe4\x88\xf3\xb4\x54\x67\x72\x36\x70\x56\x33\xa4\xd5\x41\x59\x68\x48\x8d\x00\x54\x77\xfb\xbd\x61\xc0\xe8\x2d\x6f\xfc\x13\xce\x71\x52\xcd\xed\x4f\xf7\x43\x91\xda\xfa\xea\x0f\x2d\x1f\x7d\xde\x6e\x8d\x45\x33\x3d\x7d\x96\x2d\x4e\x77\x6d\xd1\x61\x16\x48\xdc\x3f\xe6\xeb\x45\xb7\x7f\xa8\x1d\x4e\xbf\xcc\x38\x0c\xa4\x09\x53\x52\xeb\xc4\x31\xf0\xcd\xa9\x77\xb1\xd8\xfb\xe2\x69\x29\xc7\x22\x95\xbb\x22\x59\x18\x8e\xd5\x58\x57\xc3\x00\xc7\x1f\xbe\x16\x2d\x28\x7f\x0a\x75\x19\x6f\xe2\x77\x18\x88\x72\x17\xd7\xaf\x1c\xdc\x7a\xdb\x3b\x00\xb7\xa7\x32\x56\x07\xf1\xb0\x9d\xf2\xe2\x6f\x63\x55\x84\x00\x48\xba\x0a\xf1\xeb\xa8\x7b\x10\xbf\xcb\xf7\x8d\x1c\x06\x34\x22\x79\x8a\x5a\x9d\x7c\x90\x88\x8e\xf8\xe5\x2b\xfc\x0f\xd8\x22\x24\xb0\xa4\x10\x4c\xd6\xdb\x83\xdf\x07\x8c\xf3\x6c\x7a\xd6\x00\x4e\xc7\x04\xd5\xba\x39\xf3\x4e\x2c\x4c\x04\x42\x65\xea\x1f\xef\xb8\x18\x14\x7a\x66\x35\x5a\xc2\x04\xa7\x47\x51\xe7\x24\x34\xb0\xa2\x69\x26\x1b\x51\xf7\x34\x5d\x1d\xaf\x3c\x63\x77\xa8\x56\x9a\xb5\x2f\x52\x15\x7c\x96\x67\xc3\x16\x07\xab\x7a\x3a\xb9\xe0\x13\x57\x3e\x08\x90\x72\x4d\x3d\x8b\x49\xf1\x49\x48\x58\x1d\x23\x38\xfe\x9a\xe0\x5f\xa3\x4e\x4e\x5c\x9c\x1f\xaa\x1f\x6c\x58\x67\x54\x6c\xf8\x22\xbd\x7c\x08\x48\xf3\xa1\xa4\x3f\x58\x51\x53\xf9\x11\x4c\x29\xfa\xae\x9f\x87\xc4\x30\x07\x0a\x71\xbc\x1d\x53\x7f\xb2\xdf\xbd\x07\x15\xe8\x3c\x75\xb2\xc1\x40\xc4\xf7\xf5\xc3\x79\x97\xf0\x6f\x43\x85\x7e\x10\x39\x44\xa9\x13\x70\x7a\x8a\x7c\xba\x22\x42\x26\xb6\xdd\x8e\x88\x6a\x97\xc7\xc4\xfd\x6e\x33\xab\xe5\x8b\xd7\x66\x42\xbb\xc7\x48\xd9\x36\xd5\x9a\xfe\x3e\xa1\xc4\x7a\xde\x65\xf0\x27\x4f\x6d\xd0\x6e\xee\x84\x05\x9e\x89\x4a\x6e\xc4\xa3\x30\xce\x01\x15\x5b\x57\x33\x73\xea\xad\x59\x29\xf0\x2a\x81\x05\x2f\x46\x4e\xd7\x97\x33\x8d\xa5\x55\x82\xae\xad\x34\xde\xb3\x40\x4b\x77\xdf\xfa\x5d\x33\xbc\xcf\x09\xd5\xb3\x03\x70\x58\xc5\xd0\x57\xca\xcf\xdd\x35\xc3\xd2\x7e\xb3\xa2\xb9\x24\x2e\x3a\x8a\x39\xfe\xf5\x7d\x48\xf1\x07\xef\x41\x93\xd0\x37\x7a\xa4\x36\xb0\x3a\x6f\x70\x61\xd2\x3d\x3e\x96\x7b\x88\x88\xfc\x06\x40\x1e\x73\xd4\x3f\x5e\xa7\xbc\x5e\x8e\x61\x9a\x49\x0c\x5c\xda\x45\xc0\x12\x62\x8f\xf9\x6e\xa7\x41\x88\x9c\x0a\x2e\x40\xfd\x3c\xb4\x6f\x9c\x7b\xa7\x74\x93\xee\x5a\xa6\xe9\xb3\xab\x66\xcf\xa9\x6c\xd4\x05\x4f\x5b\x5f\xfb\x2f\x39\x58\xc5\x41\x9c\x76\xb4\x79\xc9\xec\x7b\x35\x0c\x44\x9a\x5b\x36\x0b\x7d\x71\x69\xa5\xc4\x42\xd5\x5b\xb4\xfb\xf2\xb4\x1a\xb1\xa3\x61\x29\xe3\x96\x50\x87\xdc\xac\xa0\x9f\xfa\xd4\xd8\xb4\x92\x59\xa5\x2e\xc6\x73\xdb\x6c\xf4\x96\xe9\x20\x76\xb4\xcc\x61\xc2\xa4\x75\xac\xea\xda\xb8\xe0\x31\x02\xc2\x41\x57\x4e\x83\xa7\x7e\xc9\x0c\x3b\x07\x6c\x6d\x90\xe4\xdd\xef\x96\x04\x21\xfc\x3e\xe5\x31\x87\xa2\x14\x91\x67\x56\x99\x20\xf6\xad\x4c\xf3\x44\xaa\x77\xba\x75\x1a\xf9\x4f\x5f\x07\x2a\x2c\xb8\x89\x4e\xf3\xd6\x29\x10\x09\x47\x53\xbd\x04\x9d\xdd\xb6\xc4\x34\xdd\x4f\x6b\x1c\x9d\xbf\x62\xcd\xa0\x82\x0b\x54\xdb\xfc\xe7\xd7\x50\x4a\x20\xea\x5a\x21\xe4\x1c\xcb\x65\xac\x72\x0c\x2e\xf9\xb4\x10\xda\xea\xa0\xd9\xb4\x7d\xc7\xc5\x0f\x09\x8e\x63\x69\xfd\x70\xb4\x5e\x96\x63\xeb\x2c\x08\xa0\x5b\xce\xf5\xac\x4b\xaa\x92\x73\x34\xcd\xe3\x0c\xc3\xf7\xbd\xba\x38\x58\x8e\x6a\x05\x7b\xa8\xd3\x70\x09\xd2\xfd\x7b\x2f\x89\x5f\xc1\xc6\x32\x35\x0f\x5f\x88\x75\x70\x71\x68\xd9\x4f\x30\x6f\x50\xcf\x43\xc5\x6b\xaa\x34\xbf\xe3\xe2\x31\x61\xe6\xcf\xbd\x70\xc5\xaf\xa5\x6d\x23\x56\xb0\x88\xeb\x98\xfc\xee\xe1\x3c\x53\xa2\xf7\xfe\x9b\x1a\xd5\xe4\x61\xe4\xfb\x6f\x91\x06\xca\x26\x91\x17\x57\x9c\x91\xc2\xb8\x52\x1a\xae\xe6\x57\x0b\x9b\xbe\xd6\xcf\x57\x84\x9f\xe5\xd9\x44\xab\xaf\xba\x4c\xcd\x65\x6e\x66\x9a\x13\xa9\xa9\x62\x20\xe2\xa5\x59\xab\x69\xcc\xba\x73\x26\x7d\xbd\xb7\xc4\x76\x7e\x27\xb5\x65\xa3\x92\x2e\xd6\xf0\xb0\xc4\x4f\xc3\xe9\x7f\x1a\x7f\x0c\x23\x84\x98\x86\x65\x4a\xd5\x75\x32\x29\x7f\xc9\xd7\xfd\xd0\x25\xe4\xb9\xa3\x73\x8d\x47\x2b\xff\x20\x4e\x66\x9b\x35\x0c\x90\xd1\xbf\x40\x27\x8d\xbc\x32\x33\x46\x68\x7f\x3f\x09\x60\x7c\xae\xd2\x46\xa2\x8b\xd6\xcf\x26\x1e\x4f\x78\x17\xac\xf9\xdc\xa5\x24\x38\x29\x8b\x55\x61\xeb\x28\xfa\x64\xae\x88\xa2\xf0\xcb\x26\x56\xb8\x4d\xff\x1b\x89\x65\xdd\x2d\x8d\xf1\xa1\xaa\x2b\x56\x01\x34\xcd\xa8\x25\x41\x99\x72\xed\xc2\x90\xca\xd4\x4a\xad\xf6\xae\xe6\x60\xef\x0c\x3f\x9a\x5f\x11\xbc\x04\x9c\x12\xf8\x6c\x22\x20\x9d\xf0\xa4\xde\x21\xb7\x61\xa3\xd4\x55\xf2\xa6\xcc\xe4\x7e\x56\x78\xc0\xdf\xe1\x26\xda\x19\x66\x86\xae\xe2\x6e\xc5\xb7\x4f\xab\xad\xf1\x20\xb9\x5d\x71\xed\x99\x18\xa2\x35\x64\x1d\x54\xf0\x8e\xe2\x32\xa7\x14\x37\x2b\xf7\xb1\x1d\xf9\x42\x8c\x29\x8d\x3a\x7b\xae\x35\x49\x40\x50\x54\xbb\xbd\x8f\xc9\x0e\x88\x4a\x7d\xb7\x44\x3b\x97\x88\x0d\x9e\x8a\x0a\x7f\x73\xc2\x83\x0d\xed\xe0\xed\xf0\x5a\x66\x32\x15\xd3\x68\x11\x1c\x01\x5e\xc5\x58\xd2\x53\x61\x81\x3c\x0b\xa1\x10\x97\x83\x95\xa4\x86\x6c\x8f\x66\x03\xfd\x01\x87\x8f\xb9\x6f\x31\x08\xb5\x9c\x0b\x34\x10\x68\x41\x60\xff\x44\xd8\x13\xa5\xed\x6e\x08\xd3\x0e\xfb\xa7\x91\xbf\x30\xcb\x83\x71\x7b\x2c\x3b\x80\xfa\x8d\x1e\x71\xe4\x47\xf8\xbc\x9c\x7d\x9c\xf2\x9f\xab\x26\x7a\x70\x56\xd6\x39\xa7\xea\xd8\xc7\x72\x05\x23\x81\x42\x77\x0c\x42\xcf\x96\x2f\x56\xc7\x6a\x5e\xb8\xa7\x26\xa0\xf0\xc5\x93\xf5\x95\x44\x8a\x90\xf8\x0e\x28\x31\xd3\x47\x41\x38\xd6\x17\xe2\xe7\xa1\x52\xd0\xd9\x2a\x05\x42\xaf\x2f\xe1\xb2\x96\x0f\x34\x62\x57\x6d\x59\xf6\x4c\xcf\x69\xfa\xa8\xe0\xb6\x08\xd7\x9e\xcf\x92\xfa\xf4\xe3\xd9\x05\x2c\xae\x4b\xdf\xc4\xed\xc0\xec\x27\x47\x32\xef\x43\xea\xbe\x3d\x09\x5e\x97\x85\x0b\x02\x6c\x02\x4f\x17\xcd\xeb\x14\xf5\x96\x7e\x10\x8b\xe3\x28\x95\x5b\x6d\x0e\x89\x83\xa4\x13\x76\x16\x73\xd6\x97\x98\x6e\xfb\x49\x56\x23\x32\xd9\x88\xd6\xd8\x5e\x60\xb7\x74\x8c\x62\x89\x59\x05\xb7\x5e\xd5\xbf\x30\x3f\x68\x26\x05\x8d\x00\xca\xaf\xdf\xaf\x2e\x9f\x39\x59\xb7\xeb\xd2\xec\xa2\xd1\x73\x70\xe1\x31\x4c\xdd\x65\xb2\xf8\x44\xf4\x66\xe3\xba\x65\xf8\x74\xf8\xde\x13\xae\xe2\x22\x09\x9e\x87\x07\xf7\x0e\xa7\xa7\xd6\xcc\xf9\x15\x74\x40\xd7\x59\x6f\x14\xb2\xaa\x50\x43\x8d\xcf\xe8\x28\x82\x44\xd1\xaa\x85\xfe\xe3\xf3\xb0\x27\x72\x44\xdb\xa5\x1d\x24\xae\x6b\x9c\xf9\xe3\x35\x9f\x6e\x4e\x5e\x91\x21\xaf\x61\x39\xb9\x8e\x8b\x3c\x2d\xee\x6e\x09\x35\xe6\x73\x5b\xb5\x1e\x9a\xc2\x2d\xa7\x2f\xbd\x22\xf8\x12\x1b\xc2\x58\x7a\x75\x84\x41\xde\x0b\x36\x21\x59\xc5\x45\x3e\x2f\xb5\xa7\xb3\x7c\x3d\x4e\x66\xa0\x23\xf4\xcc\x88\xfb\x2c\x2a\xb1\xfb\x85\xf1\xf4\x98\x57\xcb\x59\x60\x43\x98\x59\x5d\x65\xa1\x07\xc6\x2a\x75\x3a\x1d\x7e\x1f\x77\x32\xa6\x16\xe6\xd2\xfb\xdf\x1d\xf8\x3e\xf6\x9b\xd2\x4f\x68\xcb\x72\x07\xc6\x34\xdc\xcb\xe7\xcd\x25\xaf\x2c\x8b\x30\xb0\xdd\x31\x2c\x08\x2b\x1d\xc6\xbd\xff\x6e\x51\x54\x77\xdb\xd3\x77\xd6\x9c\x22\x71\x98\x2b\x6f\x6d\xa2\x6c\xb9\x3f\x41\x1f\x9c\x3f\xa2\x0f\x5d\x2a\xc0\x05\x81\x90\xc5\xf2\xbf\xe9\xe9\x02\x7f\x7f\x2f\x56\xb2\x76\xbe\xdb\x11\x9c\x7d\xe6\x8c\xfe\x21\x39\x63\xd5\x06\x75\x9e\x68\xf7\x2b\xc1\xf0\xa0\x9b\xdc\xe7\x8a\x36\x57\x0a\xfc\x09\x74\xb5\x41\x4e\x63\x4e\xa9\x26\xa2\xa3\x78\x03\xfe\x4d\xfd\x27\x29\xfe\x8d\x14\xfb\x9f\xb2\x06\x78\x44\x4a\x6a\x58\x46\x17\x8a\xa9\xb8\x17\x55\x60\xab\xdf\x9c\x1a\xb0\x6b\x95\x8a\x4b\x4b\xb6\x85\x8b\x24\x52\x6b\xa6\xb7\x70\xe9\x24\x6c\x59\x0d\xba\xc5\xfd\x42\x91\x12\x4c\x29\xdf\x6c\x99\x51\x61\xf3\xff\xe3\xd1\x8b\xff\x07\x1f\xca\x19\x91\x3f\x42\x8d\xc8\xe8\xca\x71\x49\xd8\x35\x2c\xbc\xf4\x5c\x9b\x3c\x98\x5c\x98\x16\x1c\x08\x13\x63\xe6\xff\x13\x54\x08\x77\x17\xfb\x09\x75\xbe\x6c\xc1\x1b\xd1\xbd\xdd\x11\xff\x23\x33\x08\x75\x46\x49\x60\xe5\x19\x6f\xb0\x1c\xa1\x7d\xd7\xdd\x62\x11\x7f\xe9\x12\xbd\x78\x79\x5c\x47\x77\x2a\x46\x34\x22\xef\xcc\xdb\x4a\x24\xde\xe7\x13\xb4\xfe\x80\x71\x80\x86\x7a\xe9\x03\x37\x57\xa2\xf2\xa7\x18\xd5\x63\x6c\x49\x9f\x25\x7c\x48\x78\xd9\xba\x5b\x18\xcd\x43\xce\x49\xc7\xf2\x17\x8d\x15\x09\x61\x64\x41\x92\xc1\x15\x4f\xde\xae\x3a\x30\x1f\xf7\x38\x78\xc6\x5d\x8a\xef\xfe\xaa\xbe\x17\x64\x6f\xb9\x94\x7b\xd3\x2c\x6e\xd6\xbd\xa4\xa9\x78\x14\xb5\x62\x5c\x18\x8a\xcd\x41\x46\x57\x7d\x6e\xa8\xc3\x9e\x1b\x71\x98\x64\x5b\xba\xb3\x66\xf5\xfd\x6b\x51\xad\xe1\x4b\x55\x56\xbc\x93\x51\xe1\x79\x69\x38\x27\xe0\xd3\x8d\xe6\x44\xf4\x16\xdc\x67\xf6\x34\xa0\x22\xf0\x43\x54\xfe\x73\x09\x62\xf4\x05\xbb\x37\x23\x76\xc7\x9e\x87\x71\x7a\x6f\x8f\xb2\x72\xc8\x3f\xdf\x84\x2d\xcb\xa1\xaf\x55\x65\xd3\xde\xb3\xe8\xcb\x85\xb8\x64\x0f\xb0\xf5\x2a\x50\x50\xd1\x7a\x12\x63\xbb\xa3\x43\xdf\xd7\x0c\x0a\x3b\xb0\x40\x0b\x49\xbb\x46\x0b\x34\xe2\xd4\xc5\x28\xd1\x6f\x9e\xda\x97\x30\x84\x01\x81\x9f\xcb\x8b\x75\x6b\xd2\x70\x64\xfe\x2b\x8c\x62\xa4\x87\x99\x2c\xea\x49\x26\x93\x73\x0f\xc7\x12\x68\xc7\x86\x0d\xdb\x82\x43\xb1\xdc\xd1\xa1\x84\x2f\x2f\x3e\x91\x82\x1d\x9d\x83\x0e\xa3\xbd\xd2\x7e\x8e\xf3\x57\xef\x1a\xdc\x1d\x66\x90\x2e\x4c\x58\x62\x0a\x7c\x2b\x1a\x43\x7b\xab\x7b\xe4\xd8\xfc\x87\x21\xf3\xfd\x73\x87\x9a\x9c\x43\x6b\x70\x30\xb6\x3b\x3a\x92\x57\xf4\x82\x42\x1c\xcc\xbe\x19\x50\x65\x28\xd3\x67\x91\x76\x5d\x66\xdf\xc3\x10\x5e\x79\xf3\xd9\xd2\x0e\xc2\x79\x10\x09\xff\x88\xf4\xe3\x5c\xbf\x39\xcd\x90\x3f\x71\xe3\xa5\x9f\xe3\x26\x51\x44\x03\x55\x02\x5f\x9f\x66\x68\xdb\x6e\x8c\xa1\xd7\xca\x4b\x28\x28\x14\x3c\x47\xa9\x65\x3d\xe0\x91\x9e\xa1\x69\x45\xc1\x87\xb9\xe5\x60\x9a\xf8\x32\x98\xed\x25\xe9\x69\x41\x75\xaf\x25\xcc\x07\xb1\x57\xac\xc0\x0e\x8c\x48\x32\xb8\x50\x8f\x0f\xd8\x85\x4e\x54\x8e\x3e\xa2\xd0\x7d\xa5\x43\xf5\x86\xe4\xf5\x58\xd9\x96\x5b\x20\x3f\xc8\x17\x02\x69\x0d\xb7\x89\xfb\xf5\xd1\x2e\x8e\x66\xe9\x9d\x85\xbe\x2a\xd4\x10\xd2\x08\x4e\x2e\xbf\x52\xad\x7b\xde\x55\x34\xd8\x35\x5e\x2a\xf5\x44\x3e\xb7\xfb\xdb\x3e\x09\xdd\xd4\x6b\xca\x99\xc4\xe5\xd0\xec\x1d\xce\x9b\x77\x2a\x7a\xe5\x49\xaf\x40\xf8\xa9\xd8\x11\x6a\x70\x4e\xe0\x0d\xc9\xf6\x31\x07\xb1\xe6\xb7\x3f\x0a\xaa\xf9\xa3\x56\x82\x54\xba\xb3\x65\x3c\x77\xf3\xb1\xb9\xb3\x20\x92\x31\x45\x80\x6a\x83\xc1\x86\xf7\xe3\xa4\x67\x89\x9f\x6e\x81\x01\x79\xcf\x3f\xba\x91\x01\x65\x5f\x98\x3e\x0f\xe2\x7e\xe6\xf8\xde\x41\xfc\xc3\x5f\x75\xba\x14\x33\xd4\xe5\x97\x52\x68\x45\x43\x06\x2c\xca\xf6\x6c\x5f\x43\xca\x20\x85\x8c\x6e\x7a\xaf\x3f\x96\x1f\xc4\x00\x69\x04\xaf\xa2\x51\x07\x60\xcb\x5b\xcc\x5a\x97\x4c\x4f\x68\xc8\x64\xee\xcf\x8c\x37\x8f\x42\x52\x7b\xdb\xb2\x61\x8a\x90\x6a\x7e\x22\xe2\x7d\x87\x21\x9a\x9e\xa5\xa7\x91\xfd\x1d\x7c\xa0\x02\x48\x23\xd8\x82\x94\xf7\x89\xfe\xd2\x75\xd7\x7f\x13\x4a\x59\x21\xf7\xda\x63\xb3\xd1\xef\xf9\x42\x99\x09\x61\xbd\x4d\xb2\x93\x63\x03\x43\xbc\x14\x6e\x2c\x1d\xf4\x0d\x4f\x3f\xff\x3b\xea\x88\xdf\x0b\xc7\xf3\xea\x92\x53\x03\xd2\x2b\xa9\x2e\xd9\xd6\x37\xf2\x68\x96\x6b\xaa\x50\x4b\x70\x3f\x4c\xea\xab\xa3\x58\xe5\xbb\x28\x03\xe2\x1a\x0e\x5a\x09\x92\x63\x55\x38\x27\x90\xfb\xa1\x26\xda\x12\x4c\xd9\x25\x45\x9a\xb3\x6f\x12\x01\x46\xc5\xac\xdb\xdd\xe5\x60\x7f\x0d\x05\x04\x26\xd4\x3f\xe4\x1f\x71\xe7\xb1\x04\x7f\xc6\x08\x98\xeb\xb5\x26\x5c\xc5\x81\x09\xac\xf3\xeb\x70\xca\x3f\xef\xaf\x58\x40\xbf\xc7\xad\xb8\x3b\xa1\x1c\xba\x0c\xf8\xe9\x5c\x2c\xf6\xd6\x42\x15\x2a\x0b\xa6\xf8\xfe\x93\x5c\x0a\x97\x5f\x02\x3f\x16\xfb\xea\x5f\x47\xcc\x67\x27\xb6\x1d\xba\x75\xae\x0b\x47\xd4\x1d\x23\xb6\x24\x12\xf3\xda\x76\xec\xe2\xee\x09\x09\xeb\xec\xfb\xd9\xc5\x6c\x4e\x0c\xca\x3d\xd6\xe2\xb0\x0d\x14\xe1\x9c\x00\xb9\x7c\x2c\x1e\x07\x9e\xa4\x39\x3e\x61\xc5\x99\x55\xdd\x31\x9b\x74\x1e\x35\x8d\x97\x25\x5d\x16\x8c\x16\xdb\x1a\x72\x0f\xe1\xc4\x0c\x26\x57\x58\x32\xdc\xb6\x26\x59\xc5\x81\xd5\x6e\xcc\xa4\x7a\x63\x6a\xa4\xff\x68\xf0\x9e\x90\x20\xbd\xd9\x13\x92\x68\xcb\x02\x48\xc6\x64\x81\x68\x62\x6f\x8b\xb9\x7d\x8f\xe1\x6f\xdd\xa6\x1f\x65\x6b\x29\x59\x09\xb3\x00\x7d\x00\xcc\x14\xff\x1d\xfe\xe6\xd7\x66\x70\x6d\x6a\x65\xa7\xff\x5d\xf8\xba\x0b\xb6\xd3\x28\xc4\x12\x06\x6c\x13\x58\x4c\x21\x3b\xb8\x33\xe3\x28\x2c\x11\xdc\x65\x59\xee\x60\x13\x90\xa2\x1f\x24\x53\xc0\xed\x97\xbc\x84\xfe\x1a\x55\xd2\x76\x26\xb8\xfb\x32\x0b\xfe\x06\xdc\xef\x97\x39\x83\x25\x06\x2e\x22\x76\xe5\xa3\x25\x8d\xb3\x03\x27\xfe\x43\x2f\x86\xd5\x90\x20\x4a\x3d\x03\x93\xb1\xd6\x4d\xfa\xf2\xc1\x6c\xa0\x36\xbe\xe2\x0d\xf8\x84\x25\xb9\xe4\x0b\x49\xe6\x28\xa9\x6f\xf7\x0c\x78\x5a\x62\x04\xd2\x08\x26\xdc\x9e\x2d\x43\x88\x67\xec\x1f\x4e\xca\x7b\x31\x35\x5f\x26\x95\xaf\xa6\x31\x08\x82\x58\x09\xe9\x42\xa3\xa3\x69\x55\x0b\xde\xd5\xc3\xbc\x88\x92\xa7\x93\x9b\xc0\xc9\xd5\x59\xa8\x75\xa1\xa6\x9e\x5b\x3a\x2f\x74\xa3\x9b\x15\xb5\x2c\x07\x67\x7c\x12\x45\x1e\x90\xb4\xe8\x27\x41\x77\x52\xbd\x27\x77\x92\x4d\xf2\xb5\x36\x0d\x44\xab\x38\x70\x17\xfe\x75\x6d\x86\xf8\x7d\x8d\x3e\xae\x0d\x73\x8b\x17\x6d\x8e\x79\x8c\xb3\x34\x24\x16\x60\x22\x12\xa4\x63\xa8\x94\xd0\x8b\x58\x37\xd9\x72\x0c\xcc\x3c\x62\xb0\x09\x28\xc6\x43\xd6\xea\xc9\x72\x6b\x49\xea\xe4\xd5\x53\x8d\xdf\x71\x1e\x12\xb5\x7b\xaa\x08\x1a\xd0\x27\xb1\x59\x37\xe0\x30\x74\x23\x5a\xdf\xfb\xc7\xa8\x54\x16\xdc\x16\xbc\xe3\xbd\xce\xa9\x0e\xa9\x35\xcc\xee\x88\x68\x33\x5f\xd7\xf8\x72\x1c\x82\xd1\xfc\x76\x8d\xa1\x08\xcb\xda\x34\x1b\xc6\x02\x4e\x69\x30\xfc\x11\xbb\xac\xab\xe2\xc5\x29\x9a\xf0\xeb\xaf\xc7\xdb\xcd\x7e\x91\xdd\x1c\x0c\xd3\x26\x4c\x28\x6b\x4d\xb9\xed\x49\x41\x1c\x0a\x5f\x75\x67\xe1\x39\x2b\xc7\xb7\x8f\xaa\x70\x6c\x08\x4b\x72\x7e\x0d\xf7\xb7\xee\x75\x84\xa5\xf3\xb1\x94\x2b\xc8\x9f\x6b\x61\x97\x8a\x54\x6c\x26\x28\x98\xef\xf3\xf3\x8c\xef\x8a\x89\x12\x46\x8d\x60\xc2\x77\xa4\x22\x9c\xff\x8c\x89\x66\x67\x3b\x6b\xec\x92\xc9\x4e\xff\x2e\x02\x9b\x2f\x54\x96\xa4\x7f\x6c\xf4\x35\xf6\x95\x07\xb1\x73\xb9\x53\xca\x4c\xc1\xd1\xa9\x97\xcd\x93\xdf\xe2\x8b\x4b\xbe\xc6\x62\xf9\x1e\x5c\x47\x91\x84\xba\x8b\x9e\xe8\x50\x8e\x53\x9b\x4e\xc9\xb3\x5b\xcf\xb2\x04\x9a\xdd\x4b\xf6\x2b\x02\xde\x8d\x78\x06\x7e\x10\x6b\x32\x31\x98\x9d\x2b\x24\x6e\x20\x94\xad\x67\x69\xf1\xfd\x4c\x3f\xdd\x82\xf0\x18\x8d\x9c\x8f\x44\xe2\x2f\xf9\xb6\xba\x6a\xf5\x16\x63\xaf\xbc\x10\x6a\x56\x24\x19\xd0\x05\x6f\x8d\x61\x10\xc3\xb3\xb2\xfe\x7c\xa6\xe0\xf5\x97\xe0\x62\x3d\x69\x49\x00\xc4\x9a\x1c\x08\x2e\x86\x2c\x26\x2a\x23\xb3\x1a\x8d\xc5\x2a\x95\xcc\xde\x4b\xb8\x5a\xd6\xd0\x55\x1f\xd9\x18\xaa\x29\x14\x30\x22\x17\x98\x29\xba\xf8\xcf\x72\x38\x81\x28\xa4\x3f\x91\xb8\x73\xac\x8e\xf6\x8d\xed\x7a\xe1\xaa\x52\xb6\x19\xb2\xc6\x98\x35\x59\x00\xcc\xce\xec\x26\xc7\xb2\xba\x29\x92\x93\xd0\x04\xa0\xb9\x0b\x4d\x04\xf4\x1f\x95\xd2\x1e\xf8\xb5\x1b\x8d\xf1\xbf\xdd\xef\xf1\x8c\xde\x0e\x34\x26\x01\x55\x02\xf6\xe0\x5d\xdd\xf8\x8f\xc3\x21\xdb\x8e\xcd\xd4\xe8\x28\x2a\xb3\xfb\xda\x00\x56\x24\x44\x4b\x15\x36\x56\x65\x44\xdd\xb3\x29\x42\x52\x9c\xc3\xc4\xdb\x41\xb8\x7d\x6d\xe3\x42\x58\x87\x91\xf3\x31\x30\x97\x13\x6c\xf3\x0c\xdd\xbf\x9f\x0c\x0e\xbb\x6a\x09\x78\x79\x81\x33\xe7\xb4\x15\x57\x87\xf5\x1e\xb5\xbf\x1c\xf4\x8d\xe0\x71\xf6\x61\x59\xef\x98\xa8\xe2\xb6\x30\x56\x72\xb1\x0a\x0d\x04\x89\x31\xdf\xf7\x25\x3c\xec\x9c\xfb\x3d\x31\x45\x8f\xce\x67\x3c\x6e\xa1\xb9\x3c\xe8\x95\x04\x55\x02\x8d\x76\x64\xfd\x5b\xfd\xe5\x07\x2b\x35\xb1\x0f\xb8\x4f\xa3\x31\x88\xbb\x73\xb3\xff\xcd\xcd\x58\x38\x82\x37\x9f\x6d\x35\xb7\xb1\x13\x69\x02\xb7\xa1\xc4\xa0\xfc\x23\x8d\xda\x76\xf7\x9b\x78\xf3\x77\x94\xfc\xc8\xef\xb8\x4b\x7d\xe8\x9f\xfa\xa9\x44\xc4\xe8\xe9\x24\xd4\xf0\x5d\x0f\x11\xed\xd2\xd3\x76\xde\xfd\x56\x54\x8f\x03\x57\x0e\xe0\xde\x48\xa8\xcd\x68\x70\x6b\xd2\x29\x4f\x64\xfa\x70\xa2\xe6\x69\xa9\x3e\x91\x9e\xeb\x4d\x51\x47\x2a\x83\xa6\x50\xa0\x60\x51\x61\xd7\x7e\x90\x4f\x03\xca\xf5\x9a\xc6\x8b\x6e\x63\x28\x5d\xed\x7b\xb8\x1b\xfd\x72\x1c\x42\xa3\xd5\x74\x3c\x13\x9d\xc1\xc2\x0f\x62\x05\xc0\x59\x52\x93\x39\xf3\x3b\x7f\x1a\x3b\xfb\x75\x37\xbe\x6a\x49\x65\x7e\xfd\x40\xf9\xd2\x20\x9c\x3e\x62\xc5\xa6\x70\x53\xe0\x27\x41\x97\x5a\x70\x23\x26\x14\x68\xd1\x32\x23\xc8\xe6\xb9\x75\x71\xde\x77\x3c\xf9\xdb\x90\x59\x08\x9c\x48\xb2\x22\x21\x67\xc4\x84\x42\x78\x32\x20\xc1\x73\x1c\x3c\x05\x6a\x61\x8c\x1b\x49\x0e\x81\x3e\x74\x1c\x6e\x19\x12\x0a\x75\x42\xb5\x50\xeb\xaf\x93\x82\xfa\x80\x90\xdc\x5d\x56\x79\x79\x90\xc3\xf3\x7b\xd0\xfb\x6b\x4a\x35\x46\x43\xdc\x7f\x79\x01\x89\x07\xfa\xf9\xec\xbf\xcf\x46\xb6\x71\x2f\x96\x44\x1a\x06\xf0\x38\x00\x36\xe8\xe8\x9d\x8b\xe6\x67\x3e\xda\x5a\x9f\x5f\xb2\x1d\x6c\xe1\x83\xca\xa9\x21\x7f\x5e\x62\x53\x2e\x38\xfe\x58\x7e\x83\x77\x1a\x45\xa1\xff\x9a\x93\xe2\x01\xf4\xa6\xd6\x97\x15\x09\xb9\x23\x84\x5d\x2b\xcc\x5c\x9d\x50\xd6\xe7\xcd\xbf\x3c\x4b\xc6\xa7\x4b\xbe\x74\x7d\xff\x26\x94\x8d\x8f\xeb\x18\xa2\x47\xe9\x5c\x22\x63\x4b\x6d\xed\x4e\x00\x83\x1b\xd0\x2f\x43\x79\x3b\x98\x33\x4e\x9d\x0c\xd1\xfa\xed\xaa\x1e\xbb\xf6\x1d\x22\x10\x26\xcf\xeb\x46\x1a\xe2\xbb\xbf\x4c\xee\xbb\x83\xee\x87\x8d\x7e\xe5\x2a\x76\x2e\xdd\x31\x5d\x67\xf1\x65\xa7\x66\x01\x31\xc2\x97\x02\x8d\x0b\x00\x02\xbb\x19\x71\x1e\xac\xf8\x3a\xaa\xc2\x9f\x84\x30\x1c\xcf\x3e\x21\xb1\x00\xcb\x63\x41\xa5\x9a\x27\x63\x2c\xfe\xbe\xca\xdc\xc3\x07\x5b\x31\x9e\x8b\x04\x37\xa6\x27\x41\x79\x34\x32\x38\x81\xad\x6b\xaf\x00\xb1\x52\xe9\x3f\x42\x75\xd2\x6d\x89\x14\x87\xbc\x8a\x16\x94\x9e\xeb\x71\xff\x62\x91\x05\x5e\xe8\x87\xae\xff\x06\xc6\xa7\xed\x37\xf4\x88\xa4\x87\x16\xc5\xce\x77\x2a\xc9\xff\x30\x74\x55\x86\x5f\x72\x1b\x31\x8b\xb6\xf3\x80\x92\x38\x01\x16\x04\xe9\x0a\x75\x78\x77\x38\x39\xca\xd4\x25\xc5\xac\xaf\x97\x4c\x9c\x4c\x6a\x7b\xe5\xb1\x60\x1a\xac\x7e\x75\xb1\x3e\x0c\xc9\x96\x1d\xf8\x9f\x10\x6d\x32\x38\xcf\xf3\x31\x03\xf1\xbd\x65\xdf\x62\xab\x3b\x89\x77\x2d\x14\xad\x13\xab\x19\xdb\x80\x4e\x8c\x8d\xea\xb1\x38\x01\xf6\x59\x2d\xce\xc8\x15\xff\x63\x8b\x71\xc0\xf5\x61\x3e\xc1\x75\xaf\x49\x19\x9a\x9c\x22\x5d\x0b\xd3\xfa\x79\x52\xea\x39\xf5\x26\xe4\x85\x2a\x7f\x66\x2a\x84\xe5\xfe\x59\x49\x92\x1f\x11\x31\x2d\xe7\x2c\x54\x99\xff\xe3\x41\x00\x97\x89\x27\xc8\xe1\xb9\x7c\x55\x16\xf2\x9c\xe2\x01\x1f\x7e\x25\x4c\x62\x01\xd6\x23\xb6\x67\xa3\x76\x2a\xb4\xc4\x57\xb6\xe9\x8b\x15\x4e\xbb\xab\x12\x91\x98\x0e\x30\x9e\x28\x92\xba\x4b\x9e\x2e\x35\xc5\x3a\xc7\x49\x2c\x12\xaa\x04\xd2\x62\x5e\xc4\xff\xe5\x4d\x71\x39\xe3\x6a\x4e\xbc\xc9\xf4\xfb\xf9\xfd\x31\x12\x0a\x93\x88\x0c\xd8\x6e\x29\xef\xb1\x3e\x9b\x94\xc4\xe5\x4b\xda\x57\xfe\x89\xe7\xa7\x75\xfe\x32\x6d\x92\x8d\xe5\x45\x13\x58\x93\x70\xdc\x11\x8c\xd7\x7c\xb7\x30\x4e\xf6\xfc\xbf\x55\xe1\x90\xc7\xdc\xda\x1d\x05\xf8\x73\x13\xd0\xfb\xb7\xd1\x12\xd2\x44\xa6\x7f\x61\x5c\xc4\x81\xe3\x10\xe3\xb5\xdc\x4f\x8d\xa1\xfd\xc6\xa0\x2d\x0c\x2e\x3a\x59\xc7\x01\x2c\x4d\x0f\xd7\xa3\xf5\x50\x05\xb5\xe1\xf4\xc8\xa1\xf0\xb7\xac\x57\x96\x8f\x4b\x33\xe1\xf6\x45\x32\xeb\x5f\x25\x4f\x97\x2e\x99\xc6\x29\xfe\xe2\x7b\x7e\xf6\x62\x10\x26\x34\x22\x55\xba\x22\xc2\xfc\x78\x83\x83\xac\x7e\x76\xea\x55\x1f\xc7\x50\x1a\x8e\x29\x47\x4b\x41\x2b\xf1\xaf\x41\x30\x02\x10\x55\x15\x0e\xd0\x20\xe0\xfc\xcb\xaa\x51\xe3\xd9\xce\x79\x4f\x32\x72\xef\xbd\xfe\xc0\x52\x90\x72\x4c\xe1\xf7\x49\x3d\x40\xde\xce\xe6\x79\xf3\x6d\xe6\x20\xad\x29\xc3\x50\x96\x55\xe1\xa3\x62\xf1\x21\x63\xad\xad\x49\x5d\x4c\xe2\x6e\x43\x31\x9c\x00\xe2\xcb\xef\xc0\xfa\xfa\x89\xb8\x2c\xa8\xc8\x92\xba\xe2\x4d\xbd\xb2\x0d\xba\xc5\x8e\xce\xbb\x9d\x79\x5d\x11\x15\xe3\x09\xac\x7b\x45\x43\xc6\x7f\x3b\x41\x3d\xc1\x32\x8c\x33\xc8\x70\xb0\x56\xf1\xe9\x4c\xa2\xca\x61\x71\xcc\x32\x3c\xe0\x60\xac\xb7\x9c\xbc\xa4\x0c\xc0\xfd\xcc\xe8\xf6\x45\xdd\x1f\xab\x24\xc1\x37\x4a\x20\xa7\xc1\x40\x8c\xc4\x02\x3c\x4e\x34\xcb\xdd\x8c\x68\x8d\xe6\x62\xc6\x3b\xfb\x33\xf4\x89\x20\x8d\xc0\x1c\xd9\x02\x4f\xdf\x20\xef\x77\xf9\x19\x49\xdc\xba\x39\xa9\x03\xe0\xe7\x72\xf8\xf6\xc8\xb6\xeb\xa6\x15\x68\x17\xf4\x8d\x50\x3f\xc6\x6f\x5c\xe2\xe4\xc9\x19\x84\x17\xc9\x97\x8a\x52\xc0\x8b\x8a\xdd\x81\xc6\xb1\x28\xbd\x18\x2b\x70\x3c\xa2\x43\xb8\x5f\x55\x0e\x1d\xa8\x78\xf8\x6b\x2c\xbe\x6b\xe3\x25\xd0\xe3\xe4\x10\x8f\xf7\x2c\xc2\xfb\x5f\x6d\x89\x10\xc7\x49\xf2\xdf\x1e\xaf\x69\x65\x80\x0b\x5d\xe0\xf4\x98\xf9\xbe\xde\xb5\x52\x75\xd3\xb5\xfa\x7d\x15\x80\x98\x0a\x91\x32\xba\xcf\xdc\xdc\x48\x91\x7a\x3c\xfd\x33\x28\x94\x22\x41\x7a\x84\x22\xcf\x29\x79\xb8\xd4\xb2\xf6\xea\xdd\x0e\xb6\x9f\xaa\xb2\x8e\x2e\xb1\x17\xcb\x60\x56\xa7\x1f\xd5\xb5\x4c\x93\x69\x1f\x86\x3f\x46\xc5\x43\x05\xce\xd1\xdf\x7f\x4a\xcd\x82\xe1\x60\x95\xdb\x67\x73\x5b\xbe\x75\xcf\x16\x6b\xa6\xf0\xb0\xbc\xaf\x0c\x34\xa8\xbc\x32\x5a\x71\x71\xa8\xea\xad\xb1\x94\x21\x9e\xd0\x64\x0c\x00\xa2\x5e\xf4\x57\x79\x97\x17\x7d\x6f\x3c\xd6\x78\x45\x6c\x43\x93\x05\x90\x1c\x2b\x03\xdc\x3f\x66\x69\x31\x22\xde\xfb\xe4\x45\x04\x4d\x53\x3c\x70\xe0\x57\x7b\x3a\x67\x7a\x73\xee\x9a\x1e\xd0\x53\xe6\x0c\xea\x36\xd5\xa5\x36\xe2\x00\xc2\x17\xd9\xe1\x36\xb4\x21\x5c\x76\x42\x52\x56\xff\x78\xc0\xfc\x11\x8e\x20\xf3\xa8\xe1\x4d\x8d\x5b\xca\x45\x0f\x7a\x2b\xea\xef\xf2\x2a\x95\x96\x9e\xa2\x57\xdd\x9f\xf5\x3f\x30\x82\xb5\x65\xf5\xac\x2d\xc4\xaa\xfc\xbf\xe5\x01\x83\xb6\xd1\x7f\x57\x17\x45\x34\x10\x97\x55\x9c\x1a\x01\x60\x34\x95\x97\x68\xfa\xc9\xe2\xc9\x1a\xbe\xd2\xd0\xde\xc7\xcd\x17\x56\x45\x01\xa1\x9d\xef\x8b\x01\xda\x9b\xa0\xa6\x29\x95\xa4\xb1\x05\xc5\xb3\x5b\xb2\xd9\x5e\xf3\xc7\x36\x38\xb0\x54\x73\x09\x47\x6d\xef\xf4\xcf\xee\x18\x7d\x65\xe7\xe0\xfd\x6e\x19\x89\xbc\x96\xfb\x6e\xf5\x57\xf0\x82\x0c\xfe\xe6\xd7\x96\x19\x8d\xb0\x0f\xd9\x83\xde\x28\x63\x82\x5a\xac\x85\x5c\x36\x40\x12\x23\x19\xba\xf7\xd2\xcb\x97\x36\x7e\x56\xa8\x2c\xd8\x8b\xd6\xcb\x7b\x82\xa8\x75\x24\xd3\x62\x1b\xf9\xe4\x53\xee\x42\xa0\xd4\x34\x19\x9c\x48\x7b\x2b\xd3\x9a\x46\xf2\x09\xf2\xb9\xb0\x8c\xed\xd2\xa3\x82\xde\x10\x21\x21\x48\xb6\xcc\x07\xad\x16\x3a\x3d\x3f\xe9\xce\x6c\xbe\x24\x7c\xb9\x51\x97\x2a\xa8\x80\xf3\xf1\x13\x9a\xe0\x44\x41\x48\xad\xf0\xce\xba\x5c\xf4\xac\x1e\xe0\x9e\x3c\xda\x3d\x32\xe2\x37\xe9\xd9\x2a\x8b\xf5\xe3\x51\x4a\x90\xa7\xf0\xf4\xbd\x1a\xfb\x7b\x4e\x1a\xfe\xec\x3f\x3b\xd0\x86\xf9\x4d\x8a\xd4\xd1\x90\xb0\x35\x78\xde\xc2\x57\x6d\x16\x53\x4b\x43\x10\xf2\xf7\xcb\x6f\xfc\x17\x9e\x36\x2c\x1b\x57\xa2\x8f\x1c\x75\x81\x08\x50\xdd\xa8\x98\x38\xcb\xdb\x6c\xa5\x35\xee\xec\xc9\x6b\xe0\x62\x9a\xc0\xf1\xc2\x79\x7c\x36\xa6\x31\x5e\xd4\x2c\x60\x61\x09\xde\x6f\x17\xfc\x28\x1c\xc1\xf0\x2b\x47\x7b\xf4\x17\x0e\x70\x98\x91\x11\x75\x0f\x5f\x99\x97\xa7\x26\x46\x0e\x2a\xbe\xbb\xa0\x8f\x96\xbe\xef\x46\x58\x18\xf7\x63\x0d\xc2\xec\x93\xdd\x0f\xa2\x9a\x3d\x10\x6c\x2d\x04\x8f\xe2\xa1\x81\xed\xd9\x74\x12\x36\x5f\x68\x31\x96\x35\xc4\x94\x5e\x77\x36\xb7\x8b\xec\x8c\x7b\x34\xd8\x72\x1d\x24\x39\xf9\x8b\x8f\xcd\xa2\xf9\x70\xaf\xf7\x3f\x30\x9c\x1f\x45\xa3\x79\x15\x32\xe3\x83\x28\x67\x78\x2c\x89\x11\x5c\xc5\x93\xc7\xe2\x1a\xc7\xee\xac\xd1\xe1\xfa\xf1\x3e\xe4\x23\x9b\x06\xff\xdb\x78\x51\x50\xa6\xa5\x3a\x7c\x2a\xfd\x93\x81\x0e\xa0\x79\x85\xc2\x78\x5e\x2a\xcb\x96\x91\x55\xe8\xa2\x97\x89\xcd\x07\x1a\xc2\x42\x2c\x88\x0a\x57\xa0\x4e\xfe\xee\x94\x0b\x7d\x1a\x89\x15\x05\xbd\xb0\x54\x87\xd7\xdf\xd2\x1a\x98\xff\xab\x45\x1c\x07\x85\xfa\x76\x60\x6a\xe5\xfd\xd8\xe1\x69\x42\xa4\x75\xe5\x4c\xe6\xe8\x17\x56\x27\xd2\x52\x04\x16\x8e\xfc\xfe\x8f\x3e\xce\xac\xd5\xad\x93\x20\x91\x23\x0b\x37\x5e\xfa\x4e\x4f\x27\x6f\x74\x84\xd3\x4f\xf3\x89\xf7\x6f\x3a\x56\xdd\x1f\xd7\xd4\x30\x6b\xaa\x15\x61\x3f\xe5\x53\x76\x44\x45\x1e\xbe\xd5\x80\x67\xec\x01\x08\x2f\x93\x59\xe1\x2c\xb1\x9d\xf7\x4a\x33\x83\x2e\x2e\x82\xb3\xf3\x38\x00\x0e\x2a\xce\xef\xe7\x4a\xc3\x66\xe7\xcd\xbf\x01\x40\x17\x8a\x6b\xba\x24\x21\xc3\x55\xa3\xce\x6b\x17\x19\xbc\x73\xc7\x9e\xaf\xc1\x7c\xee\x6a\xaa\x91\x64\x57\x58\x57\xfa\xb3\x5e\x39\x3b\x70\x72\x43\x64\x05\x9b\xfd\x2e\x24\x0d\x35\x9c\xf7\xbf\xcb\xb4\x66\x18\x1c\x31\x25\x73\xd3\xb7\x0d\xd4\x9d\xbc\xdd\x74\xa0\x9c\xa0\x33\xea\x4c\x11\x5a\x9c\xbf\x1e\x66\x6d\x5e\x62\x95\xa9\x28\x03\xe2\xed\x93\xfb\xac\x2e\xac\x9d\x7b\x6b\x9d\x63\x55\xa7\x23\xb1\xf9\x42\xd3\x88\xfa\xc7\x7c\xc9\xed\xe4\x8c\x69\xcb\xf5\x2a\x56\x3e\x21\x0c\x3d\xc6\xa6\xd2\x12\xed\x67\xe9\xdd\x7e\x9d\xc2\xca\x38\x00\xa6\xa2\xfe\x70\x31\x96\xa5\x37\x38\x2f\x87\x1e\x59\xc2\x1c\x09\xb0\x3e\xd8\x18\xdb\xc6\xae\xf4\xf5\xe4\xbe\xd8\x1e\x47\xcf\xba\x6e\x57\x33\x39\x7b\x5e\x58\x64\x44\xef\x77\x61\xf2\x2e\xeb\xd9\xb5\xd9\xa6\xd1\x37\x92\xd5\xa7\xbf\xb6\x12\x2b\x5c\xce\x38\x1c\x15\x75\xcd\x70\x2d\xbe\x3f\xbe\xcf\x64\x92\x88\xb0\x0e\x4b\xfc\xa1\xe7\x37\x97\xff\xcf\xb0\x15\xe9\xba\x5f\xfb\xfd\x2b\x15\x8e\x5e\xf2\xe9\xae\x9a\xc7\xae\xc9\xcf\xeb\xba\x3a\xc5\x6a\xc4\x38\xe8\x74\x1a\xf5\x64\xa3\xe6\x49\xbf\xd4\x7f\xa6\x5f\xef\x94\x1a\xfc\x8a\x7c\xf3\x2f\x87\x3f\x01\x87\x3d\xd0\x15\x75\xb6\xc7\x39\x60\x72\xaf\x77\xa2\x36\x26\xd1\xc9\x83\x8a\x3f\xff\x41\x5d\xa9\x0b\xad\x94\x17\x03\xb8\x6e\xd0\xfa\xf1\xd1\x64\x7b\x42\xf7\xe2\xff\x7b\x77\x0a\xf2\x6b\xbb\xb4\xae\x10\x07\xeb\xbc\x4f\xc9\x7b\x9b\x90\xed\x2f\xfb\xa8\x31\x91\x5d\xda\x94\x4a\x4c\xcb\x54\x44\x5e\x24\xa9\xde\x80\x05\x23\x03\x18\x29\x2f\x85\xc7\x7e\xa7\x2d\xc9\xff\xd5\xfa\xe7\xb1\xda\xa3\xfb\x80\x40\x07\x67\xdf\x31\xe2\xfa\xa3\x2c\x16\x51\x4b\x61\x0b\x7a\x21\x9f\xc7\x98\x7d\x77\xa1\xfe\xe8\x64\xf0\xfe\x21\x6a\x27\xe9\xa9\x31\x3b\x7e\xd2\xe3\x23\xf6\xb3\xb8\x3a\x4c\x8b\x2b\xd2\x77\x7c\x14\x0f\xaf\x65\xc5\xa3\x07\x20\x59\xb0\x4f\x58\x88\xb3\xc0\x2a\x47\xe0\x90\xb6\xa8\xd3\xfc\x44\x6e\x0d\xa5\xcf\x73\x37\x54\x24\x34\x2e\x1d\x37\xf4\x83\xef\x52\xa8\x16\x07\xd9\x5f\x7e\x90\x34\x97\x7c\x99\x25\x98\xc0\x22\xf8\xcf\x7f\x89\xa5\x2d\xe4\x12\x10\xa6\x19\xb6\x3d\xd1\x1e\xb5\x18\xa6\xa8\x99\xfc\xe3\x15\x36\x75\x31\x85\x7c\x4e\xea\x8e\x80\xb5\x31\x44\x9e\x02\x91\x8f\x35\x19\x7c\x64\xca\xe0\x0f\x9b\x43\x1c\x7b\xfc\x6f\xbe\x47\x3b\xf1\x80\xc2\x5d\x51\x14\xaf\x23\xfe\x5c\xd8\x17\xcc\x12\x62\x06\xfd\x15\xfb\x02\xa3\x49\x0a\x3b\x14\xbf\x5e\xb9\x33\xcc\x05\x46\xe4\x1b\x01\x15\x34\x29\xe3\xe5\xf4\x87\xa2\xa9\x1b\x39\xbd\x0c\x91\xba\x7c\x4e\x8f\xc0\xb6\x5a\x15\x9f\x8e\x47\x0f\x7b\x06\x92\xbe\x7c\xf1\x22\x76\x76\x2b\x95\xf2\x12\x65\xa2\x90\xf8\xbb\x50\x68\x3a\x30\x27\x81\xfe\x44\xee\x98\x76\x2f\x5f\x3a\xff\x12\x88\xbf\xcb\x5f\xc4\x57\xd0\xfb\x79\xa2\xf6\x5e\x52\xe0\x5f\xa5\x29\xea\x50\x99\x95\x3e\xad\x76\x11\xf2\x87\x05\x2b\xc1\xef\x7d\x29\xf4\x92\xac\x07\xda\x32\xa0\x59\x16\xf7\x2f\xd8\x73\xea\x02\x32\x55\x80\x97\x2b\x62\xc1\xaf\xb5\x5d\xdb\xeb\x38\x88\x15\x09\x99\x50\x05\x52\xef\xc5\xca\xca\xec\x0d\x86\xb8\x3c\x1c\x16\x45\x2c\xbe\xe5\xb5\xb1\xdf\xe5\xbd\x7a\x58\xe6\x74\x6d\x5e\xf8\xc2\xeb\x0f\xe2\x19\xe0\x49\xa9\x7f\xb3\x4b\xe2\x88\x0e\xa8\x3c\xb0\x7e\xc9\x78\x2b\x6b\xd0\xeb\x21\xf2\x08\x5f\x23\x21\xd2\x0f\xa5\xe2\x09\x3d\x37\x17\xd3\xae\xeb\x96\xdb\x6e\xc9\x35\x2d\x5a\xf4\x1e\x93\x7a\x7d\x45\x30\xb8\xb2\xa1\x61\x0e\x69\xf0\xfb\x6b\xda\xdc\x9f\xa9\xc1\x90\xfb\xca\x38\xa7\xa4\xe1\x66\x69\x56\xbd\xea\xcd\xba\x79\x71\x3a\x3e\x83\xea\x63\xf2\x52\x85\xea\x80\xa9\xa4\x29\xb8\xdd\x48\x29\xa2\xa8\x8b\x7b\x91\xd5\xf9\xc3\x56\xfd\x0b\x0a\x8e\xa4\xd9\x8e\xaf\xeb\x83\xec\x8b\x44\xed\x62\xc9\xfe\x7b\x1a\xa1\x47\xe9\xe6\xdc\x85\x1d\x62\x72\x95\x93\xa8\x91\x31\xfa\x88\x21\x96\x7f\x81\x1b\x03\x35\xed\x76\x27\xc3\xd0\xfd\xc7\xa6\xe3\x99\x9c\x9d\xf9\x17\x51\xdf\x44\xcd\xd8\x25\x81\x2e\x9a\x4d\x22\xca\x05\x83\x2f\x14\x44\x2a\x56\xff\x17\x22\xfa\x35\x65\xfe\x72\xf1\x8b\x57\x92\x17\x0b\x9a\xec\xfd\x9e\x48\x65\xbf\x93\x31\x6f\x23\xd7\xb7\x35\x3b\x1b\xd1\x19\xef\xbf\xb6\x8b\xb3\x31\xbb\xf3\xf3\xa6\x51\x26\x00\x7a\x23\xa9\x5b\x39\x7a\xff\x3c\x02\xa8\xc4\x0c\xaf\x79\xd8\xf6\x9f\xd1\x42\x89\x50\x3c\x38\xfe\x0c\x09\x24\x91\xec\x89\x6c\x6f\x22\x8d\x6d\x05\x8d\xbc\x60\xbb\x67\x1a\xe8\x0d\x00\xa2\xd4\x3e\x14\x75\x25\xef\xab\xd1\x74\x9e\x66\xff\x2f\x1f\x69\x06\x5c\x17\xf4\x78\x4f\xd6\xca\x8f\x3b\x7f\xcb\x4d\xf7\xca\xf1\x09\x5f\x5c\xef\x22\xd8\x15\x6d\x5c\xa8\x49\x31\x0e\xa6\x8f\x07\xfc\x41\x3e\x0a\xbc\xc8\xa1\x8e\xaf\x22\xb7\xc2\xf3\x68\xc9\xc3\xeb\x3b\xb1\x26\x22\x56\x54\x23\xac\xa7\x24\x8f\xdc\x8e\x80\x40\xb6\xc6\x96\x42\x88\x85\xcf\x77\x19\x2e\x3b\xdb\x83\x13\x17\xcf\xbb\x9e\x7f\xc5\x67\x5a\xef\x94\x8a\x60\x66\x11\x77\xf8\x38\x60\x11\x7f\x01\x58\x1c\xa0\xfa\x28\x6f\x51\x25\x4a\x68\x06\xc2\x8f\xbe\xad\x07\xce\xc6\xbd\x77\xbf\xe6\xf2\xa8\xa9\xb8\x79\x37\xfe\x44\xf0\x9e\x40\x2e\x13\x25\x63\x76\x57\xbd\x00\x87\x40\x2e\x22\xa1\xd4\x22\xdf\xcd\xca\xf1\xd8\x4b\xbe\xfa\x5a\x49\x02\x56\xe4\x03\x1c\xa4\x0f\xdb\xe9\xb8\xe9\x6e\x8f\xc4\x21\x56\x05\xb8\x1f\x86\x8c\x6c\x9f\x7c\x48\xeb\x64\x10\x9f\x9c\xf2\x58\x63\x90\x0e\x4b\xd7\x89\x1c\x4e\x67\xcd\xc1\x99\x9b\x35\x04\x78\x25\x5f\x6d\xe4\x9f\x65\xfc\x47\x6a\xd7\xf4\x68\x64\x39\x58\x16\xf1\xed\x68\x24\xb9\xed\xd1\xdc\x81\x24\xcf\xb7\x4b\x5c\x13\x5b\xd0\x12\x9a\x36\x5c\x2c\x3f\x73\x98\x42\xd4\x42\x5b\xe5\x85\x31\x05\x84\x21\x70\xb4\x10\x33\xf9\x04\x8f\x19\x1d\x39\x52\x9a\x21\x48\x16\x8c\x1a\xbb\xbc\x94\xf8\xcc\x3b\xfe\x88\xad\x34\x20\xf0\xd4\xdb\x73\xf5\xe6\xfc\x8c\x61\x73\x43\xfc\x2b\xbf\x96\x4b\x2d\x15\xfa\xb9\x3e\xb9\x2a\xa9\xef\xee\xf4\x80\x22\x01\x72\xec\x99\x27\x2e\x2b\xca\x63\xad\x4a\xbc\xc1\x80\xfe\xd1\xd4\x61\x71\xa8\xf7\x7b\x66\x5e\x9d\x56\x99\x59\x39\x85\x74\xe9\x35\x22\x1f\x2f\xb0\x48\x1f\x08\x10\xc7\x2f\xa6\x15\xe3\x07\x1b\x0c\xa2\x38\x77\xac\x77\x2a\x5a\xc1\x16\xcc\x9e\x35\xdb\x28\xad\x83\x6b\x29\xc6\x0c\x84\xa1\xc3\xbf\x9e\xc2\xd1\x40\xa4\x37\x34\x1f\x1c\xd4\x91\x23\x41\x33\xa2\x22\xef\xef\x0f\x3d\xde\x6e\xe1\xd9\x23\x3f\x93\x07\xc8\x10\x5b\x03\x13\x26\xfb\xdb\x98\xbf\xc8\xad\xfa\x62\xd5\x3f\xdb\x3a\x1c\x81\x28\xc7\xa1\x04\x5d\x5f\xd1\x79\xee\xbc\x7b\x89\x87\x2c\xc1\xaa\x50\x2d\x70\x3f\x1c\xd5\xb8\x05\xbb\xb9\x48\x29\x37\x20\x2b\x61\xc4\x40\xeb\x73\x08\xce\x43\xe0\xdf\x50\xe0\xa0\x40\x18\xe1\x6f\xc6\x5f\x62\x59\xb8\x2a\x55\x05\xac\x14\x92\xac\x7a\xd7\x10\x1c\x25\x9a\xd5\xe9\x03\x62\xe8\x9f\x13\x5d\x99\xda\x1e\xc7\xcb\x09\x2b\x74\x27\x6f\x8a\x4a\x4c\x30\xb1\xe8\xef\x3b\xf4\x24\xc3\x07\xa9\xc1\xfa\x9c\x6c\xfb\xdf\xba\x14\x3e\x47\x30\xd8\xc4\x33\xbf\x2f\xf5\x60\x84\x37\x16\xec\x10\x4f\xb2\x3c\xf4\x65\x44\x8a\xc4\xed\xca\x53\xfc\xeb\xc7\xb0\x4e\xe2\x67\x30\x39\x71\xf9\x91\x97\x04\x55\x6f\xa4\xa2\x36\xf8\x39\x20\x7d\x11\x1f\xb3\xbe\xde\xa2\xdf\x87\x4d\x8d\xd1\x30\xfe\x29\x98\xbd\xfc\x6d\x10\xe6\xaf\x8c\x04\xab\x1e\x0c\x53\x69\xfb\x43\x10\xe5\xcb\xf4\x36\x8c\x9e\xc6\xe3\x19\x32\x71\xae\x68\x6c\x3e\xd0\x5f\x08\xe4\xbe\xa9\x39\xaa\x97\xb7\x55\xb5\xc5\xf5\x25\x5f\xc0\x2b\xe4\x69\x5b\x2f\x5e\xc5\xef\xe9\xac\x05\x2b\x07\x01\x21\xe9\x3e\x7f\xdb\x7b\x65\x31\xf0\xf4\x62\xc5\x10\x63\x05\x19\x10\x4f\x57\xc2\x83\xf3\xbf\xaa\x2f\x88\x09\xcf\x24\x8c\xb4\x29\x78\xf2\xe4\xbe\x63\x3f\xd5\x7a\x61\xf1\xbe\xe6\x61\xd4\xa2\x1c\xc5\x5f\x77\x73\x3b\x4f\xa3\x54\x6e\xf8\x0c\xac\x58\xee\xa3\x07\xf4\x5a\xdb\x1c\xaa\x94\xed\xca\xd2\xa3\x78\xc9\x5c\x02\xff\x25\x02\x2c\xec\xf2\x4e\xcb\x06\x15\xfe\xfa\xc3\xd8\x8c\x72\x83\xbc\x19\x99\xaf\x07\xf1\x13\x07\x8c\x86\x3f\x2c\x59\x8c\x92\x0e\xbd\xac\x73\x41\x21\xbd\x71\x00\x47\x65\x81\xb7\x23\xee\x3b\xff\xca\xb5\xd4\xad\x12\xd1\x2f\x39\x67\x8a\x56\xcf\x1e\xd9\x15\x02\x49\x2e\x91\x54\xd6\xf5\x2a\x5c\x4c\x75\x75\x2b\x21\x39\x7c\xf8\xca\x3c\x44\x71\x71\x82\xa2\xa2\xb6\xa3\x60\x1d\x2a\x25\x35\x62\x52\xbc\x98\xff\x7c\x63\x72\x6d\x33\x5e\xda\xe5\xef\x22\x03\xb0\xdf\x25\x4d\xe7\x13\x0e\x3d\xfe\x65\xed\x07\xad\x06\xbb\x6e\x5f\x96\xfe\x87\x9e\xf4\x93\xf0\xc8\xef\x38\x13\xa7\x68\x76\x6c\xdb\x9e\x6b\xa8\xed\x49\x64\x88\x1a\x07\xae\x7a\xf3\x87\xd9\xac\x92\x43\x5d\x31\x5a\xdb\x07\xb5\xe8\x92\x79\x0e\x40\xd3\xb6\x0e\x3f\xd2\x00\xe3\x9f\x8c\x10\x98\x20\x69\x37\x4b\x92\x5c\x71\x3e\xcb\xf6\x2b\x4e\xb4\x9d\x7c\x67\x3d\xc4\x70\x47\x26\x49\x28\xb6\xda\xa9\x36\x9d\x2c\x81\xcf\x6f\x3f\x1a\x73\x36\x79\x8f\xd6\x24\xa6\xb0\x29\x09\x20\x80\x03\x90\x19\xed\xc3\x20\xae\xa8\x33\x36\x09\xad\x5d\x56\x85\x63\xcb\xaa\xc3\xd4\x7a\x03\xc8\xad\xce\x09\x0a\x10\x21\x94\x7d\x3b\x2f\xeb\x9c\xa3\xfc\x4a\xd2\xf4\x86\x54\x96\x36\x03\x4c\x21\x7c\x1d\x6e\x98\xf1\x27\x52\x11\xda\xef\x5f\x0e\x28\xa6\x28\x01\xe9\xab\x41\xde\x86\xff\x15\x62\x02\x05\xce\x05\x53\x0b\x43\x14\x8f\x35\xc0\x61\x9c\x38\x6f\xa7\xb8\x51\x1c\x0f\xb9\x32\xf4\x27\xb4\x38\x17\xdb\xd5\x46\x3b\xed\x0b\x07\xea\xa3\xa8\x2d\x5a\xc9\x8d\x2c\xf4\xb5\xc2\x0b\xce\xe6\x9b\xef\x83\x5b\x3b\xa0\x39\xf5\xdb\x22\xf2\x57\x46\xb8\x14\x75\xd1\x3c\xda\xf5\x3a\x00\x5f\x9b\x90\x51\xe6\xab\x47\xe0\x19\x20\x90\x8a\x28\xde\xfa\x96\x43\xef\xba\x2f\xe6\x7d\xc4\x55\x33\x82\x57\xb2\x0a\xd7\x38\xce\xf4\x6d\x38\x2b\xfa\xef\x97\xeb\x9a\xdd\x78\x8d\x12\x0e\x9d\xc7\xc5\x7f\xea\x13\x63\xa9\x36\xeb\xb9\x2e\x34\xe7\xfe\x91\xd7\x47\x85\x2a\x55\x47\xbb\x14\xab\x02\x47\x17\xb9\xe9\xa6\x4d\x6f\xf3\x6d\xc8\x00\x7c\xd4\x3b\x90\x32\x9e\x07\x05\xf3\x0f\x4b\xb0\x2a\x92\x25\xf4\x9c\xfd\xa7\xf1\xaa\x0f\xd5\xcb\xcc\x0b\xe2\xba\x83\x0f\xd9\xeb\x64\x99\xc1\x73\x86\x61\xd8\x93\xc3\x99\xb7\x5a\x6c\x4b\xe1\x81\x99\xbe\xc7\x2a\xee\x12\xe2\xd9\x51\x54\x9f\x7f\x3c\x57\xc3\xcd\xa5\x80\xfc\x01\x51\x4e\x41\x6f\xeb\x3c\xd6\x8e\x48\x35\x02\xf3\xb0\x45\x48\x08\xcf\x78\xe8\x5f\xc2\x5d\x4f\x6f\x4b\x4b\x77\x1e\x0a\x33\xe3\x50\xa2\xe2\xbf\xd9\x54\xe1\x58\x43\xd7\x6d\x31\xf4\x33\xe2\xd6\x98\x2e\x1d\x12\x13\x2a\xd0\xcc\x5d\x6a\x0c\xac\x45\x4a\x2c\x13\x10\x72\x4d\x2a\x80\x51\xfa\xb4\x07\x92\x05\x73\x00\x3b\x6e\x64\x07\x8c\xa1\xa3\xfa\x96\x5b\x77\x47\xa2\x79\xc8\x39\x55\xc4\x37\x7e\xa8\x22\xb3\x91\x8d\xa2\xa7\xce\x5e\x33\x23\xd2\x71\x52\x1b\x07\xb1\x79\x5f\x23\x61\x7f\x0a\xde\xc0\x03\xc2\xe7\x69\x5a\xc0\xb0\x9b\x5e\xa6\x30\xea\xae\x87\x6c\x58\x04\x64\x7e\x5c\x0d\xa5\x4f\x7a\xf6\x42\x57\xe5\x66\xa3\x20\xe1\x06\xff\x20\x66\x8c\x15\x5f\xec\x15\x78\x6e\xdf\xfa\xe8\xc5\xcc\x2f\x30\xe9\x4d\x11\xe7\xf3\xc6\xcf\x64\x6f\xac\x0d\xc8\x85\x26\x3a\xa1\x74\x1c\xe8\x95\x00\x42\xaf\x99\x8d\x4d\x95\xee\x75\x87\x80\xa5\x2c\xcc\x85\x3b\x40\x72\xde\xf2\xaf\xb1\x6d\xac\x9d\xd5\xd7\x17\x65\xd4\x68\xe0\x8d\xed\x81\x02\xbe\x02\x54\x03\xd9\xbe\x7d\x0e\x65\xf1\x10\x87\x3c\x0c\xe8\x8a\xba\xf7\x82\xd0\x34\x82\xe1\x2c\x92\xf3\xb6\xcc\x7b\x7c\x31\x36\x7c\xa0\xcf\x90\xe3\x2f\x2e\xb2\xe8\x97\xf2\x81\x23\x4e\xb9\x2c\xb9\x63\xcf\x72\x6c\xf8\x43\x25\x40\xe5\x2b\x47\x71\xf5\x54\xfa\x05\xf5\x21\x9e\xf8\x43\xc2\x57\x96\xe0\x2d\x2c\xa8\xc6\x84\xe7\x9e\xeb\x2a\x0e\x7c\x53\x14\xd8\x5a\x7f\x9f\xd7\x93\x00\x47\xe8\xf3\xf5\xcf\x37\xea\x92\x99\x06\x8d\xe2\xd6\xf0\xb8\xee\x7d\x6b\x3b\x61\x84\x4f\x3f\x64\x6a\xae\xae\x84\x0d\x07\x34\xfc\xce\x9d\xf4\xeb\x31\x4d\x9b\xb7\x14\x84\x8a\xfb\x03\x7c\x90\x6a\x3a\xb6\x45\xf6\x54\x70\x34\x5d\x04\x60\x74\x31\x9a\xcf\x29\x75\x3b\x15\xec\x45\xe3\xc6\x4b\x13\xc1\x7c\xeb\xad\x02\xe4\x5c\x1c\x44\xde\x5f\x57\xf5\x21\x1e\x14\x5d\x0f\x7f\x14\xf6\xfe\xc1\xc1\x9e\xfd\x85\x06\x3d\xf7\x92\x23\xa5\xee\x5b\xc9\x86\x3f\x03\x17\x57\xb7\x25\x82\x51\x8c\x4d\x14\xa6\xc6\x7e\x5a\x26\xdf\x4a\x00\x43\x1e\x12\x20\xf4\x46\xd4\x73\xc6\x47\x7a\x26\x7f\x4c\x8a\x38\xe7\xe2\xb8\x07\x02\x26\x82\xbd\xb4\x55\x22\x00\x58\x99\x2c\x16\x63\x79\x59\x2d\x38\x41\xf1\x5a\xe3\x09\xad\x8e\xbb\x98\xa8\x46\xd5\xe2\xd4\x8d\x2b\x4b\x70\x3e\x21\x32\x54\x62\xa1\xa0\x30\x84\xac\xb6\xaf\xaa\xa1\x8c\x50\x34\x0f\x37\x32\x80\x1a\x2c\xad\x35\x91\xf2\x11\x3c\x0c\xa2\xfc\xa6\xa8\xd7\x7a\x85\x75\xae\x8e\xe6\xde\xc0\x2f\x0f\x99\x1c\xf0\x90\xd5\xfe\x48\xd3\x53\xc1\x3f\xf1\x51\x57\x0d\x08\xad\xcc\x78\x39\xae\x9a\xe5\xc9\x88\xbf\xb9\x16\x87\x9d\xc5\x58\xad\x17\xbd\x0a\x23\x83\xa7\xa3\xc6\x7f\xe1\xe5\x77\x11\x66\x7c\x70\x05\x53\x0e\x85\x50\x87\x6c\x64\x8c\x12\x27\x7d\xcd\x81\x18\x33\x08\x83\x54\x37\x6f\xa5\xb2\x0b\x86\xc6\x48\x9a\x55\xf4\x55\xa4\x9c\xd1\x45\x5a\xce\x88\x08\xeb\xe4\xa3\xc7\x43\x39\x00\x9a\xe9\xbf\x57\xed\x89\x8a\x16\x54\x0f\x58\x88\x74\x94\xbd\x2e\x5e\x50\xce\xf7\xb1\xf3\xbe\xa4\xa0\x6b\x26\x04\xfe\xaa\xc3\x02\xac\x1d\xc6\x76\x90\x6d\xbf\x69\xe7\xc7\x98\x27\x95\x78\xc0\x49\x18\xba\x13\x00\x88\x41\xdc\x54\xa8\xd8\x71\xe6\xbe\xf9\x82\xc3\x1e\xc2\xe3\x2f\xeb\x32\xe6\xd6\x3d\x8e\x72\xe7\x30\x49\x8e\xd5\x2d\x88\xa2\xc4\x8e\x82\x32\xdb\xde\x17\xea\x4b\xc9\x73\x86\xf0\x7e\x6a\xeb\xa3\x20\x89\xc9\x80\xd7\x21\x30\x11\x0d\x09\xd3\x0d\x72\x71\xa1\x32\x1a\x20\x50\xdd\xd9\x0a\x39\x95\x18\xd9\xd2\xed\x65\x21\xd2\x44\x98\xdf\x12\x9c\xfa\x27\xa5\x75\xde\xec\x3f\x41\xcd\xd9\x10\x86\xf4\x61\xd3\xa3\xa0\x6d\xa6\x48\x3f\x45\xa9\xf5\x98\xb5\xd5\x27\xd8\xb2\x2b\x68\x63\x0d\x2f\x1c\x9f\x8e\x92\xee\x75\xaf\x64\xc3\x85\xc1\x1c\xed\xad\xd6\xfd\x1d\x5e\x6b\xeb\x35\x61\x97\xf2\xbf\xa2\xd2\xd1\xc9\x48\x90\xce\xf7\xdc\x35\x02\x6e\x60\xe2\x45\x1d\xd2\x9b\x70\x63\x73\x2e\x9f\x8e\xf6\x6c\xb8\x29\x84\x6f\x45\x69\x28\xdf\xd2\xde\x04\xfd\x47\x94\x70\xbf\xde\x64\x8a\x53\xb8\xd2\x9b\x15\xd5\x55\x26\xb0\x62\xf2\x90\x53\x99\x3d\x6e\x5e\xc0\xe8\xb3\x4e\x48\xe8\x01\xa3\xe1\xed\x6f\x65\x31\xfa\x77\xd3\x7e\xa4\x57\x05\x6a\x11\x1d\x02\xd9\x70\x07\x70\x36\xc7\xcd\xdd\xdd\xb7\x9e\x7b\xe9\x2e\x6c\x21\x6c\x4d\xf4\x44\x8f\x9a\xe7\x7e\x1f\xea\x3e\xa9\x92\x4e\x52\x5e\x30\x18\x83\x89\x4d\xef\x28\x2c\xab\xee\xcd\xbb\xa7\xc1\x7a\x8b\x62\xe0\x39\x4c\xeb\x73\xe3\xd1\x09\x8f\xda\xd4\xbd\x6a\xaa\xee\x71\xf6\xb3\x9e\x58\xb5\xa5\xeb\xe9\x67\x43\x38\xfc\x20\x02\x88\x63\x69\x4d\x78\x49\x14\xa7\x3b\x3a\xc0\x3b\x6d\xd4\x62\x60\x02\x1a\x23\xa4\x72\x20\x09\x9d\x6e\x9b\x4f\x3f\xda\x0f\xec\x57\x9f\xb7\x34\xab\x6a\x75\x4c\x59\xbe\x3f\x1a\x7f\x23\x22\x7d\x24\xbb\x29\xc7\x06\xbb\x49\xe4\x88\x20\xd3\xa0\x88\x28\xc0\x48\xbb\xb2\x04\x2b\x41\xe1\x68\x83\x95\x12\x2a\x2d\x95\x5d\x69\x48\x32\xc0\x7a\xfd\x68\x63\x69\x5e\x37\x5a\x80\x8b\x89\x05\x02\x59\x5a\xf9\x11\xd5\x16\xfa\xf9\xba\xae\xdc\x46\x0d\xbb\x7e\x32\x47\x74\x97\x75\xae\x7d\x43\x86\xfa\x73\xaa\x97\x44\xef\x5e\x3b\x3e\xd4\x98\x93\xfd\x5a\xc9\xbf\x04\xb3\x1b\x98\x78\x05\x53\xd9\x37\xef\xc0\x31\x01\xc1\x12\x8c\x9f\xbd\x85\x19\xf5\x7f\xfb\x1c\x8a\xf5\xf3\x76\x1e\xf6\xb1\x3f\xfa\x0f\xc4\x32\xcb\x60\xd4\x51\x80\xde\x36\x80\x3e\x16\xa3\xe7\x03\xa5\x11\x6d\xc2\x72\x4f\x7e\xbf\x79\xe9\x29\xc6\xf7\xca\xc1\x90\x0d\x0d\xd6\x64\x4b\x70\xca\x43\xd1\xd0\x0d\x92\x0c\xc8\x96\x46\x87\x13\x7c\x1f\x23\x63\x18\x48\x4b\xcd\x7f\x6b\x6c\xfb\x9e\x33\xcd\x83\x7b\xa0\x2e\xb9\xc2\x13\x8a\xc8\x98\xf4\x6e\x93\x95\x19\x73\x44\xa9\xaa\x8f\x05\xb3\xcf\x5e\xca\x74\x3c\x50\x05\xe2\x4b\x4b\x27\xa5\x66\x4a\xb5\xe1\x7c\x1f\xe9\x11\x54\xfb\xf1\x39\x84\x2b\xaf\x9d\x3f\x94\x99\x10\x56\x15\xb0\xb6\xaa\x07\x4d\x05\xeb\x03\xc7\x18\x52\x7d\x5b\x21\x08\x11\xc5\x72\x3b\x2e\xdd\xec\x88\xfb\xab\x6d\xe6\x69\x64\x16\x25\x6b\x21\xe9\xf6\xa2\xea\xbd\x98\xfe\x2f\x78\xa2\x23\xb5\xc1\x94\x12\xda\x6b\x2c\x02\x58\xfe\x22\x26\xba\x07\x83\x35\x7b\x90\xe6\xea\x45\xaf\xf9\x8c\x1b\xe9\x50\xd0\x58\xcf\x32\xe6\xef\xf3\x9e\x6f\xa1\x57\xb4\xf0\x8c\x2b\xe0\x8a\xaa\xf8\xe5\x6e\xc1\x28\xf5\x8b\xdf\xbe\xc6\x5a\xd1\xc0\x29\x7a\xc0\x4c\x11\x0d\xe8\x20\x0a\x9b\x2f\xd4\x15\x22\x4b\x76\xdf\xba\x90\x00\x48\x81\xf5\x81\xe4\xd7\xf6\x34\x49\x58\x16\x98\x01\xf5\x31\x00\x4e\xc2\xfb\xe1\x6f\x72\xa9\x72\x1c\x2c\xaf\xd2\xdf\x56\xa5\x2c\xb8\x38\x17\xa0\x1d\x8f\xd0\xc5\x0c\xa6\x53\xfb\x88\x13\xae\x44\xeb\x08\x54\x56\xf2\xb1\x56\x1b\x06\xad\xfd\x87\x53\x0a\xe5\xe1\x8a\xff\xd1\x46\x31\xb9\xf3\x24\xcf\xc5\x67\xf6\xd0\xb6\x70\xec\x5a\x94\xc4\x02\xdc\x8c\x05\x75\x1b\xde\x12\x38\x4b\xe6\x79\x17\xca\x09\x18\xe3\x23\xb6\xa7\x8f\x67\x3f\x55\x5e\xc5\xd4\xd3\x32\x8f\x70\xe1\x3c\xe4\xf5\xce\xc7\xc4\xa4\xad\x08\xa5\xde\x43\x7f\x5a\x4b\x91\xd3\x26\x49\x53\x05\x40\x71\x4c\x02\xef\xaf\xe6\xc7\x6e\x4e\x7c\x49\xef\x02\xf9\x41\xac\xc9\x2f\xc1\x49\x3c\xe5\x24\xf3\x23\x9f\x70\x4c\x40\x06\x29\x64\x65\x51\x6a\x19\x6e\x4c\x52\xf3\x3c\x41\x1e\x1d\xe4\x9c\x60\xf6\x42\xd7\xdb\x3d\x98\x58\x24\xdb\xa5\xae\x3a\x41\xd6\xce\x45\x89\xba\xf4\x8a\xfc\xda\x03\x1e\xe9\xfa\xed\x56\x10\xe9\x88\xf5\x76\xad\xa4\x46\xa4\x54\x36\x40\xc2\xce\x0c\x7f\xd3\xc8\x12\xd9\x1e\x1e\x4c\x60\x02\xd2\xc4\x81\x95\x60\x7e\xc8\x4f\xc0\x2e\xc5\xbd\x4d\xa2\x00\x79\xc9\xf0\x2e\x34\xc7\x26\x36\xdb\x45\x19\xcc\xd0\xf2\x4e\x25\x38\x95\xf5\x2e\xed\xff\xb6\x2c\x12\x95\xb6\x5b\x5d\xd2\xdc\xff\x75\x5b\x0a\xfb\xc1\xda\xec\x81\xed\xf6\x49\x0a\x13\x09\x49\x51\x84\x6d\x5f\xb5\xaf\x17\x14\x82\xe1\xef\xe1\x2a\x7c\xce\xfd\x64\x70\xe6\xff\x1a\x27\x84\x2b\xe4\x3a\x7c\xf8\x58\xaf\xee\x7f\x9c\x6d\x9c\x2d\xd1\x7d\x87\x05\xa7\xcc\x7b\xf8\xe1\x8e\xef\x5e\x95\x2d\x49\xfc\x19\x89\x0c\xba\x21\x46\x33\xfe\x09\x51\x25\x24\x9c\x34\xbc\xc5\x16\x6a\x78\x6e\xe6\xcf\x01\x50\xe9\x00\x38\x76\xe4\x0e\x3a\xc9\x72\x86\xf2\x50\x19\xed\x9a\xaf\x6e\x19\x36\x46\x91\x95\x23\x57\xef\x3c\x23\x7e\x8e\x13\xbc\x6e\x0b\xa1\xab\x08\x08\xed\xcc\xe3\x7d\x4c\xae\x4a\x60\x5f\x93\x6b\x9b\xd7\x7c\x24\xec\x7e\x9a\x46\x1c\x80\x8a\x5d\x2c\x6a\x55\x13\xe1\xfb\x81\xc8\x95\xc4\x84\x25\xc3\x82\x09\x14\xff\x57\x8a\xfd\x32\xbf\xc0\x58\x48\x1d\x56\x33\xae\xce\xf6\x79\xac\x13\x15\xb1\x83\xc8\xa6\xfc\x2e\xa5\xd4\xb4\x86\x53\x45\xf2\xac\x6d\x14\x92\x05\xc7\xfe\x77\x3b\x90\xff\x6e\xc2\x4d\x06\x14\x92\xe2\xc4\xb0\xd8\xe3\x79\xdb\x24\x36\xa7\x5b\xbf\x1b\x27\x82\xb5\xf8\x58\x22\x76\x76\x7e\x53\x59\x2a\x79\x19\xc9\x92\x78\x9a\xa6\xde\x51\xbf\xca\x5d\xaa\x9f\xc4\xe7\x0e\xfc\x33\x9c\xc4\x4a\x2f\xa2\xc3\x9a\xec\x0f\x0e\x9b\x76\x93\xca\x7d\x80\xd9\xed\xb3\xe4\x7f\x03\x1f\x03\xfa\xc0\x99\xbc\xfa\xe4\x04\xdf\xc0\x91\xc6\x90\xdd\xb8\xc7\x2b\x8b\x1f\x59\xa4\x26\x7b\xc5\xb3\xdf\x97\x0b\xf3\x2c\x9e\x2d\x0b\x65\x19\xc7\x85\xfd\xef\x08\xb0\x4d\x48\x32\xda\x4a\x06\xd9\x17\x8b\x68\x7c\x49\x8e\xdd\x32\xe0\xec\xbf\x05\x7b\x34\x32\x57\xd1\x2f\x0a\x32\x19\xc4\x62\x20\xd2\x3b\xba\xac\x59\x51\x47\xc3\x02\x7b\xf2\x84\x7c\x4c\x06\x7f\xf8\xc6\xef\xc1\xa3\xfc\x77\x28\x4e\x5a\xb2\x85\xe7\xda\x52\x5e\xe8\x22\xb0\xc7\x9f\x11\x05\x4f\xdd\xfc\x40\xe9\xba\xef\xac\x4d\xf9\xbe\xa1\x47\x9a\x7f\xf8\x10\xfc\x3a\x4f\x36\x83\x54\x18\xc4\x1c\xa3\xe0\x2b\x95\x85\x6f\x2c\xa1\xc7\xec\x6f\x64\xb7\x44\xfb\x4e\x44\x0b\xa5\x66\xbf\x75\x44\x2c\x6c\x85\x9f\x84\xcd\x07\x62\x5d\xcd\x00\xa8\xad\x8f\xb8\x8a\x29\xe4\x2f\xe6\xc6\xa7\xd1\xaa\x07\xb2\x8c\x8f\x07\xc8\x80\xef\xfc\x4e\x79\x3f\xbe\x55\xa7\xae\x4c\x0d\x7f\x3b\xd4\x56\x8d\x96\xb7\x1b\x4d\x37\xf6\x56\xbe\xa1\xe3\x28\x51\xf0\x3a\xff\xf3\x96\xa2\x1d\xbf\x9c\x2b\x1c\x9b\x0f\x94\x0a\x81\x50\x19\x7b\x17\xd6\x83\xc7\xdc\x80\xa5\x06\x1f\x32\xd3\xf0\x40\xef\xbf\x44\xb9\xac\x4d\xd5\xce\x92\x10\xcd\xae\xc0\xf6\x86\xd8\x8b\x77\xd6\x51\x7e\x0a\x49\xb2\x3f\xbe\x3a\x1b\xd5\x5e\x16\x8d\xa0\xdc\x8e\x4c\x10\x65\xa5\x23\x12\x0f\x87\x01\xa9\x16\x9a\xf4\x3c\xef\xe6\xb4\x0a\x27\xa6\x79\xea\x05\x3f\x63\x24\x47\x07\x21\xce\x0d\x9d\xed\x02\x35\x4d\x0a\x1b\xec\x59\x9e\x4a\xe3\x84\xf1\x69\xbb\x53\xef\xe8\x64\x12\x12\x67\x24\x27\x43\xa2\x5f\xda\x7e\xc5\xc7\xfd\xac\x7e\xf2\x5a\x36\xf3\x4a\x56\x51\xab\xc2\xa9\x5e\x44\xa7\x1a\x5f\xeb\x93\xd6\xbb\x49\x69\x52\xcf\xa3\x5c\x94\xad\x62\xeb\x2b\xcf\x00\x86\xed\x9a\x4b\x51\xd4\x0f\xf2\xfd\xe5\x4f\x7d\xdf\x51\x2b\x6e\x0c\x23\x0f\x23\x2f\x03\x42\xc4\xb9\xc3\x0f\xb4\xe4\x9f\x33\xc3\xc0\xcc\xc9\x91\x00\x2b\xe5\x25\x3d\xb4\x4f\x5f\x6b\xd8\x53\xa7\xe3\x87\x44\x10\xba\x85\x4e\x7c\x56\xe1\x4c\xbe\x71\xfa\x37\x10\x4e\x65\x0a\x5c\x43\xe7\xd4\x5a\x21\xbc\x59\x68\x55\x0b\xed\x99\xeb\x1e\x8e\x24\x1a\x85\x1f\x1a\x58\x0b\xd7\x61\x35\x1a\xa2\x08\x87\x2c\x32\xc2\x6f\x67\x6a\x33\x76\x1d\x33\xcc\x4b\x25\x0f\x41\x7c\x8c\x1e\x45\xa6\xe1\x99\x7d\xb8\xc0\x5d\x29\x3f\xc1\xe1\xfa\x40\xc8\xcb\xda\xeb\xa5\xc3\xfc\x81\x31\xb5\x37\x6d\xc1\xcf\x7e\xef\x4b\xc5\x40\xcf\xc4\x98\xa2\x5a\xef\xf2\xf5\xb1\xd1\x93\x01\x6c\x52\x45\xa0\x24\x64\x1f\x47\xe2\x79\xd1\x2f\x89\x23\x10\x5f\xa1\xde\xcf\xc9\xaa\x35\xa7\xac\xeb\xe1\xa4\x74\x88\x57\xad\x6c\xaf\x4b\x99\xb6\x71\xb9\x8e\x3e\x9c\x3d\x35\xa0\xbd\x54\x49\xaf\x60\x0d\x65\x0b\x2a\xfa\x4b\x4a\x0c\x05\x11\x57\x27\x20\xc3\x2b\x7e\x4d\xa9\x05\xc7\x9e\x16\x3a\x91\xbe\x8e\xac\x7a\x1d\x97\x07\xb3\xb4\xb8\xfd\x9c\x22\x20\xca\xa6\x9c\x80\x9a\x94\x0f\xe2\xf5\x3c\x2a\x9a\xbb\xea\x5b\xdd\x2b\x8c\x63\x26\x24\x01\xbf\xff\xca\x75\xb1\xa0\x6b\xee\x0f\xb8\x9a\x94\xa5\xfe\xc8\xcd\x0c\x27\x0c\x89\x5a\xc1\x1f\x0b\xfe\x03\x19\xdb\x6a\x37\xbe\x4c\xd5\xf0\x99\x2c\xf5\xf5\x94\x1a\x5a\x66\xe2\xcc\x39\xa3\xeb\xef\x6b\x9f\x34\x8b\xd4\x91\x07\x33\xc3\xc0\xe8\x84\x8a\xfd\xed\x75\x7a\x9c\xdf\xaa\xb3\xaa\x18\xcc\xc1\x40\x41\xe3\x3a\x7e\xab\xe2\x84\x67\x66\xd5\x9e\x83\x84\x2f\x58\xd9\xcc\xbe\x2a\xb3\xe6\x75\xff\x9e\xfe\x5c\x79\xdf\x8e\xfa\x1c\xee\xf6\x90\x27\x26\x92\x49\x09\x0e\x51\x44\x82\xc0\xca\x5e\x55\x9e\x54\x2d\x77\xe4\xf5\xa3\x6e\xf5\x0f\xe8\xc0\xdf\xe3\xf2\x77\x3a\x17\x56\xa4\x19\xbc\x55\x54\x77\x18\x24\x2c\xb7\x7e\xa7\x21\xb4\xe1\xf7\x3c\xbe\x4b\x6c\x82\x48\x0d\xd5\xae\x2a\x9b\xf2\xfd\x36\x4d\x29\xec\x64\x00\xdb\x4b\x05\x36\x70\x69\xec\x34\x19\xe6\x7a\xf9\xae\x65\xfc\x7b\x6f\xd3\x86\x99\x37\xd6\x75\x9c\xfe\xbb\xf2\xcc\xdf\xa7\x2c\x88\xcd\x35\x76\xa1\x07\x83\xac\x6d\x3d\xae\xa6\x80\xb4\x84\x90\x36\x0a\x20\x89\x0d\x44\xec\x1e\x05\x4f\x91\x61\x68\x86\x39\x86\x4f\xec\x5f\x0b\x21\x55\xd7\x9a\x33\x7f\x6a\x2b\x6c\xe9\xe1\x8e\x9c\xd6\x7f\xfa\x29\x70\x7d\x1b\x04\xf6\x3b\x35\x4f\xea\x5d\xd9\x7d\x96\xbd\x62\x56\x88\xc9\xf0\x4e\x63\xde\x03\x0f\x2f\x68\x45\xf0\x81\x11\x44\x0c\x0d\xdd\x21\x42\x4a\x06\xb8\x1e\xfa\xa9\x5a\xe3\xef\x6c\x18\x13\xc0\xc7\xdd\xfc\x41\xc7\xe7\x4b\xf0\xc0\x37\xfc\x54\x10\xf7\xa7\x92\xeb\xfe\x1b\x49\xd2\xc1\xda\x63\x57\xed\xd8\xdf\x67\xaf\xec\x26\xb9\x43\x52\x00\x6c\xd9\x64\x78\x4a\xa6\x71\xa9\xae\x53\x72\xee\x35\x35\x40\xa9\x50\xfd\xe9\x40\xd2\xc0\x8b\x25\xe5\x99\x6d\x78\x79\x71\xe0\x60\x27\x32\x51\x58\xe8\xc1\x7c\x70\x9b\x76\x21\xb1\xc7\x52\x92\x86\xaf\x33\xa4\xde\xa5\xb9\xf8\x91\x42\x77\x50\x4d\x23\x8e\x17\x37\x6f\x5e\xe4\xa8\xad\xa0\xc1\x49\x0a\x46\x82\x54\x6c\xb2\x86\x9b\xb2\xfe\x2c\x88\xe6\xb7\xc7\xfb\x4c\x5d\xee\xc9\x4b\x42\x9e\x05\xae\xbc\xc2\x68\xc7\xae\xbc\x81\x2d\x3d\xd2\x96\x20\x34\x22\x05\x3d\x41\x7b\x2a\x31\x70\xe4\x64\xdd\x60\xc5\x16\xf4\x89\xcb\xb5\x5b\xb5\x15\xef\xc5\xf9\x07\x36\xb7\xed\x15\x7a\x62\x24\x40\xbc\xcb\xc6\xe0\xe9\x9d\x2b\x45\x7e\x98\x9d\xa6\x7e\xfd\xed\x4f\x7d\x74\x9a\x43\xec\xbf\x0d\x25\x98\xe0\xf2\x57\xfa\xfd\x97\x28\x87\x51\xdc\xdf\x6f\xfa\x2f\xe9\xe1\x3c\xdc\xcd\xb2\xae\x47\x37\xc3\x6e\x21\x58\x08\x81\xbe\xa6\xf9\x2b\xa6\x9c\x15\x46\xe1\x87\x07\x13\x8a\x3a\x65\x30\xb3\x05\x7f\x68\xca\xea\x8f\x87\x1f\xf6\x10\x72\xc0\x6b\xb2\xa4\x82\xf2\x09\xb2\xdc\xc5\x74\x53\xf2\x41\x5e\x4e\xdd\xd5\x49\xb3\xfd\x62\xd6\x19\xfa\x9b\xaf\xc7\x8d\xe5\xbf\x4b\x7e\x07\x1d\x68\x9d\x21\x16\x76\x32\x5c\x0e\xf2\xfb\xbb\x4e\xc9\x4a\x54\x21\x5b\xb5\x3e\x60\x8a\xaf\xf7\x73\xa2\xbd\x6b\xf8\x61\xb1\xb2\xfd\xfa\x10\x14\x1a\x31\xe9\x3d\x59\x26\x2e\x59\x4d\xda\x88\xdd\x72\x84\xf2\x25\xf5\x0f\x5a\x45\xff\x06\xfb\x47\x6a\xac\x0f\x00\xf5\xca\xf6\xd8\x79\x88\x52\x0c\x71\xd8\xe8\x44\xa6\x62\xc4\xcc\x12\x11\xab\x3d\xc3\x50\xf0\xdc\x54\x2f\x83\xc6\x83\x46\xe8\x13\x9a\x10\x06\x5e\xfc\x8f\xac\x20\xe2\xea\x24\x80\x1a\x25\x75\xbe\xcb\xa9\x1f\x55\xc1\xf5\x6f\x97\xc4\x06\x6e\x5d\x17\x8e\x35\x14\x87\x82\xe9\x96\xdc\x9d\x31\x13\xc2\xd3\xb3\x4e\x62\xf9\xda\x4d\xde\x33\x6f\x54\xae\x25\x78\x87\xfe\x1f\xa7\x3e\xbd\x82\x96\x6c\xc6\x79\xbf\x28\xeb\x2a\x3a\xc0\xf2\x93\x59\x05\xc1\x4f\xaa\x5a\xcd\x86\xbb\x66\x46\xe0\x41\x09\x26\x1e\xf6\x77\x9c\x0b\x7b\x53\xae\x33\xb4\x5d\xb4\xa8\x29\x3f\xbc\xb3\x77\x33\x5e\xda\xbc\xff\xd6\x91\xaa\x00\x04\x48\xc1\x8f\x8e\x3a\xc6\x35\x3e\x2d\x22\x52\x69\x00\x12\x8b\x57\x69\x30\xb3\xd5\x1d\x5a\x29\x3c\x16\x59\x87\x9d\xd0\xfe\xd6\x89\x1b\x71\x62\x0e\xdf\x45\x68\xaf\x1b\xb9\x9d\xe5\x40\x14\xa1\xd3\x90\x69\xe8\xc2\x8a\xa7\x31\x56\x04\x39\xe0\x6c\x5a\x1a\x1c\xbe\x89\xf9\x7d\x16\xdc\xf9\x9c\xce\xc0\x6e\xcd\xb8\xd2\xa1\x57\x1c\x95\x33\x76\x15\x32\xfa\x7c\x69\x52\xe5\x9f\xca\xe8\x09\x67\xe7\xb4\x98\x52\x25\xab\x37\xb2\xdf\x8f\x81\x81\x0d\xd0\x7f\x15\xf7\x80\x46\x2d\x77\xee\x3b\x12\x12\x99\x9d\x57\x46\x31\xde\xe4\x0f\x0b\x2c\xbe\x1f\xd6\xdc\x98\x97\xaf\xab\x3c\x94\x04\xeb\x53\x00\xec\x64\x38\x1b\x24\xad\x85\xbb\x50\xcb\x83\x51\xb0\x92\x8d\xb5\x95\x8f\xd8\x11\xb0\xa0\xb5\x37\xff\xaf\x94\x10\xd2\xb2\x19\x29\xe8\x51\x0d\xd2\x73\xb3\xc0\x95\xab\x50\x69\x73\xac\xd0\x55\xb6\x6e\x55\xf9\x58\x92\xfe\x48\x83\xa7\x08\x66\xdd\xd2\x2d\xed\x8a\xf4\x3e\x8a\xbe\xbf\xdd\x5f\xf5\xe5\x5f\x11\x00\xf1\x4c\x76\x67\x99\x27\x06\xad\x7f\x62\xf4\xd5\xe5\xe6\xd5\x5f\xfd\xfe\xf1\xdb\x5c\xb7\x60\x72\x6d\x17\xc5\x54\xb9\xfb\x9f\xd9\x3f\x88\xd8\x33\xe0\xca\x83\x3b\xbd\xbb\x7b\xe7\x96\x87\x57\x1e\x2f\xe9\xd9\x0f\xaf\xe2\x3f\x16\x4a\xe5\x4c\x9c\xd6\xd1\x39\x1e\xe8\x84\x42\x1d\x30\xf5\xae\xc5\x57\xd4\xbd\x97\xca\x3e\x4e\x7f\x55\x28\x9a\xa8\x2d\xbc\x6d\x5d\x54\xfe\x77\xc0\x71\x96\x64\xd5\x7e\x7d\x3d\xbd\xb2\xbc\x85\xbd\x7c\x32\x49\x00\x63\xa4\x01\xe3\x1c\xb7\xcd\xf5\x1b\x59\x1a\x5e\xb3\x90\x5e\x7c\xad\xb4\x42\x25\x75\xa2\xef\x7d\xd1\xd6\x8a\xa7\x64\x6e\xdf\x07\x00\x3b\x19\xa6\x83\x65\x91\x1c\x90\x3e\x9c\xd0\xbe\xe6\xac\x06\x58\x74\x7b\x71\x69\x5f\xa2\xcd\xfb\x0e\xbb\x05\xab\x33\x22\x36\x75\xad\xef\x8c\x7d\x27\xf4\xca\x50\xe5\xce\x69\x21\x70\xe4\xdb\x72\x72\x25\x8f\x7f\xfa\x58\x95\x0c\xbd\x1e\x7e\x3e\x78\x03\xfa\xa3\x87\x0e\xfc\x87\xcf\x27\x68\x41\xd4\xdc\x9c\xd3\x5a\x45\xd0\xc7\xcd\x51\x63\xfb\xc7\x9e\x87\xd9\xa9\x5e\x9e\x8b\x8d\x75\x8d\x44\xea\xdf\xd7\x09\x69\xc0\x8d\x27\xc3\x4e\x9f\x2b\xff\xf8\x74\xbc\xd9\x07\x03\x68\x78\x47\x4d\x45\x4f\xb1\xae\x34\x28\x00\x8c\xaf\x27\xb3\x88\x37\xae\x6a\x99\x77\x41\x05\xaa\x7d\x9f\x50\x6d\xa0\x93\x37\xfc\x8f\x6b\xc4\x40\xaa\xe3\xb9\x09\x6c\xa8\x9e\xfc\x27\x03\xaf\xe1\xe9\x20\xf8\x78\x22\x74\xd5\x8d\x08\xe2\x3c\x34\x9e\x64\xcf\xf0\x9f\xf5\x54\x81\xe0\x64\x00\x8f\xe8\xfb\x66\xc1\x25\xd4\x5d\xf2\xbf\xa3\x98\x60\x05\xd2\x18\x3e\xec\x99\x7a\x4e\xcf\x03\x48\xd8\xdd\x0e\x25\x15\xa7\xdf\xe5\x21\xb1\xa6\x54\x1d\xab\x1c\xfd\x59\x57\xa5\xb9\x30\x67\xce\x19\xa9\xea\x2d\xcd\x7a\x66\xd0\x3c\x0b\x88\x18\x0a\xca\xc1\x5a\x0d\x2d\xc2\x58\x7a\xb8\x9c\xfb\xfa\x8c\x82\x5b\x0f\x13\xd8\x67\x2d\x9d\xac\xbf\xdf\x0c\x84\x80\xaa\x36\xd7\x55\x49\x93\x3a\x02\xce\x50\xa2\xfc\x32\x9d\x74\x97\x13\x9e\xa9\xe2\x96\x25\x69\xff\x90\xc5\x61\x83\xfb\x3e\x68\x1b\x3b\xea\x68\xaf\x91\x77\x8a\xff\xfa\x28\x01\xcc\x11\x66\xed\x5a\x33\xd9\x0d\x0c\xf9\x15\x05\xbe\x6e\xd8\xf8\xd2\x48\x70\x94\x96\xc1\xf4\x77\x05\x57\x3f\xf0\xc7\x3d\xd1\xd2\xfe\x0e\xcf\x3b\x4c\x6f\x1b\x6f\xf7\x5d\x1c\x8d\x3d\x66\x10\x71\x75\x26\x9c\xe3\x03\xa7\x51\xe9\x24\x6b\x00\x99\xad\xfe\xef\x6e\xb5\xf9\x4d\x0d\x57\xa7\xe4\xf6\x57\x2f\x86\xe2\xe6\x96\xde\x2f\x9b\xc9\xda\xab\xe3\x45\xc9\x6e\x84\x90\xd1\xa0\x76\x4c\xa3\xcf\x62\x20\x8a\xd0\x70\x78\x8a\x95\xe2\xe9\x5f\xa5\x4c\x9a\x90\x8d\x04\x12\x10\x9c\xc8\x31\x0c\xc0\xc5\xbd\xc3\xa5\x96\xe5\x9c\x7e\x2d\xfc\x11\x7c\xb5\x03\xea\xda\x9c\x03\x06\x4f\x2a\xb1\x58\xcc\x4f\x47\x28\xb9\xff\xa1\x0b\x37\x85\x8c\x61\xb4\xa6\xeb\x08\x50\x2a\x05\x3f\x0c\xf1\xd8\x5c\x97\x79\xb0\x02\x3b\x9e\x78\x71\x98\x09\xaf\x34\x90\x7f\x4d\x43\x14\xee\x02\x72\x9c\x0a\x50\xaf\x19\x66\x64\x5b\xd4\xff\x09\x18\x66\x82\xcd\x3e\x17\x7c\x11\x29\x00\x49\x40\x85\xb2\x43\xdd\x79\x00\xbe\xb1\x71\x12\x3e\xfc\x20\x0a\x02\xd9\x7c\x70\xed\x35\x1c\xb6\xbd\xeb\x7c\xeb\xb2\xf0\xa2\x5e\x2e\xd3\xf2\x0c\x15\xed\xf2\x4b\x4e\xf2\x1f\x5c\x9a\x5c\xa0\xc5\xa4\x90\x71\xa3\x02\x9e\x62\xba\x2a\xb1\xb8\x7a\x9b\xa1\x6b\x75\x0c\x00\x83\x7e\x62\x5d\x5d\x5e\x5f\xb5\x82\x1b\x7a\x3f\x16\xea\xbb\xab\xce\x9d\x6a\x92\x91\x9c\x1f\xec\x8e\x50\x7b\x74\xa3\x54\x00\xc3\x2a\x04\x93\xe9\xbe\x0a\x5f\x3b\x9c\xc1\x46\x9c\x06\xa0\xa4\xf4\xa3\xab\x26\xd4\x86\xb4\xff\xc6\xa4\xa4\x71\xb6\x7c\x40\xe1\xd3\x78\x6d\x96\xae\xed\xbc\x7e\x79\xbf\x3d\x18\xfb\x8f\xb1\xb3\x1a\x00\x41\xf6\xae\xac\x16\x8f\x7c\x58\x5e\xc0\x81\x7e\x4e\xfb\xab\x22\x34\x60\xc3\x55\x21\xdc\x28\xbc\x32\x3b\xee\x84\x84\xe0\xe7\xf8\x4d\x5a\x46\xac\x76\xb8\x2a\xf1\x01\x28\x66\x1a\x5d\xd1\x4d\x11\xda\x0b\x19\xab\x3c\xe8\xb5\x68\x0f\x1e\xfe\xa5\x63\x2d\x38\x21\xc6\x00\x64\xed\x93\x58\x81\x1b\xd2\x9f\x5d\x63\xf9\xa3\xe1\x2b\x6c\xf9\xf7\xf4\x5c\xfe\x7e\x1b\x37\xb5\xc0\x73\x9d\x6a\x7b\x21\x95\x59\x1a\x67\xa4\x04\x87\xf8\x33\x22\xac\xe9\x9a\xef\x46\x1d\x4a\x5f\xa3\x16\x7e\x3d\x7d\x3d\x4b\xff\x1e\x40\xea\x74\x67\x60\xd4\x6f\xb7\xf0\x4f\x10\xe0\xd9\x31\x7b\xa2\x23\xc4\xad\xda\x9d\x28\x28\x9b\x87\x96\xbd\xd5\x04\xcf\xff\xf9\x05\x8c\x15\x94\x3a\x47\x10\x7e\xcf\x6a\xeb\x1a\xb7\x77\xd4\x0f\x01\xfe\x0b\x53\xdd\x5b\xdd\x68\x02\xa7\x71\x79\xb4\x76\x8e\x65\xd1\x7b\x0d\x63\x16\x52\x01\x8d\x7a\x76\xff\x5c\xc9\x3d\x0c\x9e\x22\x95\xc1\x2e\x4a\x53\x76\x5d\x11\xfb\x24\x55\x11\x1d\x30\x4d\x8f\x82\x5a\xf0\x2c\x2b\x84\xd4\xec\xbb\x29\xb4\x7f\x7e\x02\x4c\x0c\xb6\x22\x7a\xc6\x9d\xc2\x6b\x95\xe0\x90\x16\x16\x77\xa9\xdc\x1b\xcc\x2f\x43\x28\x35\xb7\xe1\x79\x17\xee\x14\x10\x5c\x7a\x59\xaf\x2a\x17\xd9\x08\xff\xc6\xc7\xb3\x4a\xe0\xa3\x2f\x9d\xb4\x97\x78\xd6\xd8\x37\x4d\xa7\x34\xe7\x50\x26\xb4\xf7\x38\x72\x53\xb1\x11\x45\x53\x3f\x77\x19\x12\xd2\xef\x5c\xc5\xdf\x99\xd3\x3e\x24\x3a\x03\x16\x1c\x04\x1b\xe0\x0b\xab\x0c\xa4\x05\x04\x44\xf0\x43\x2f\x9b\x12\xcd\xfd\xa3\xd3\xc7\xdb\x8c\x21\x9e\x19\xa1\x7f\x8e\x0c\x93\xc0\x46\x9c\xac\x78\xce\x41\x45\xf1\x12\x50\xd3\x7e\xc4\xee\xf6\xdc\x70\x4b\x0e\x2c\x69\x24\xe4\xe7\x56\x4b\x1b\x25\x8d\x74\x5e\x5c\xdc\x37\xfd\x31\x1b\x72\x63\xb3\xa5\xe1\x3d\xbe\xb0\x0a\xfd\xb8\xfa\xae\xbf\x8f\x91\x44\x1f\x8c\x7d\x6d\x3b\xe4\xf5\xdc\x87\xb1\x37\xe1\xda\x28\x71\xab\x97\x69\x09\x2d\x79\xa0\xcd\xa5\xe4\x66\xd7\x90\xc5\x13\xa3\xe1\x5e\xf8\xed\x8f\x8a\xf6\x0f\x5a\x33\x4d\xf4\x40\x17\x71\x68\x9c\x71\x1c\xc5\x9c\x3f\x48\x93\x02\x3b\x19\xbe\x0d\x71\x0f\x71\x3c\xf2\xa6\xcf\xbd\x29\x9b\x4a\x92\x78\xf1\x07\xd1\x31\x0b\x01\xfe\x73\xa5\x2f\xd3\x8e\x16\xcf\x28\xd1\xb0\x28\x5d\x0d\xdc\xdf\x57\x56\x62\xd8\x7f\xee\xc3\x44\x28\x08\xca\xdd\xb5\x15\x7c\xf1\x68\x63\xf6\x90\xb1\xe3\x9c\xf8\x60\xfd\xb5\x92\x90\xcd\x53\xa7\xc9\x80\x7c\xec\x9a\xf2\x55\x03\x74\xc0\xf4\x80\x5f\x65\xd5\xd5\xab\x3a\x2f\xae\x6f\x4a\xc6\x74\xc1\xf9\x56\x5e\xe6\xe6\xf5\x82\xd0\xd6\x97\xa2\x3b\xa1\x6b\x43\x9e\xbe\x13\xca\x47\x22\x46\x00\xbd\xf0\xe7\x33\x8a\xd8\x02\x37\x2e\xb8\x5f\x25\xa2\x71\xa4\x2d\x48\x8f\x46\x63\xb2\x6f\x14\x28\xdd\x7d\xbf\x25\x90\xfe\xe4\xc2\x10\x4c\x1e\x97\x77\x99\x13\x52\x73\x99\xcc\x49\xce\x9a\x3b\x77\xc8\x9a\x33\xd9\x7c\x49\x0c\x05\x0d\x61\x23\x3c\xc4\xc3\x74\xda\xac\xf8\xeb\x47\x4b\xe4\xa6\xc2\xba\xa9\x87\xe8\xe1\xaa\x48\x03\xcd\x1d\x1a\x2d\x0e\x86\x2e\xe1\xfd\xdf\x4b\x45\x24\xae\x17\xe0\x55\xb2\xa1\x8f\xaa\xbd\x77\x6a\xff\x7c\x5a\x9a\x18\x29\x59\x8c\xbf\x74\xdf\x3a\x77\x65\x57\x44\x7f\x0b\x20\x57\x77\x0d\xbe\xf8\x58\x3a\x23\xb3\x0d\x4e\x3d\xde\xf8\x98\x74\xfc\x51\x2b\xdc\xda\xe8\xc8\xd8\x51\x73\x18\xfe\xb5\x19\x5d\x6d\x6d\x0a\xdb\x4a\xf0\xad\x7b\x05\x66\xb6\xe0\x04\x49\x9c\xbb\x89\x07\x25\x9f\xc9\xd3\xa3\xc4\x5d\xa6\xec\x53\x79\x30\x00\xaa\xfa\x71\xb3\x2a\xc7\xdb\xb3\x4c\xc1\x9a\x81\xc4\x08\xe1\x9d\xb6\xc1\xe4\xed\x9f\x1a\x85\x7c\x61\xd2\x03\x02\x76\x10\x6d\x76\xec\x64\xf8\x02\x84\x2f\xb7\x4c\x67\x93\x51\xe2\xdc\x7c\x91\xef\x75\x53\xa6\x2c\x37\xf3\x0d\x2e\xa0\x0e\x6e\x6f\xd2\xa3\x93\x75\x43\xf6\x01\xb6\xa7\x4a\x3f\xc0\x28\x12\x6d\xd0\x67\x5c\x20\x31\x9c\xe3\x03\x4b\x4c\xaf\xe8\xbc\xf0\x71\x59\x14\x7a\x0a\xac\x05\x0b\xf1\x03\x65\xac\xb8\xb1\xd0\xee\xd1\x7c\xe3\xdd\x22\xc1\xbb\x6c\xbc\x58\x70\xbd\xfb\x1e\x49\xe1\xe8\x3d\xb0\x80\xb9\xf5\xf4\xa0\xbd\xb6\xc8\x2a\x70\xb9\x12\xf3\x33\xdb\x56\xd2\x88\xfb\xdb\x79\x65\xdd\x82\xdc\x38\x96\xb0\xa3\xf3\x6c\xa2\xe1\x54\x00\xbb\xfb\x03\xdc\xb0\xf6\xbb\x51\x9b\x7f\x4b\x1f\x7f\xe2\x43\xc0\xaa\x20\x1a\x9c\x16\x6a\x26\xa1\x4f\x70\x28\xc1\xca\x6b\x61\x7d\x1b\xfd\x56\x64\xf1\x97\x4c\xb5\xd0\xd6\x96\x0b\xde\x9e\x87\x46\x02\x86\xb5\xaa\x53\x05\x07\x8d\x0d\x6f\x2c\x0d\xad\xe6\x07\xae\x28\x88\x22\x74\x1d\x32\x66\x2f\x59\xa4\xb2\x15\x3b\xad\x7c\xae\xde\x6d\x7a\xbe\x24\xd9\x06\xee\x07\x9d\x4c\xf7\xec\xe1\x7d\x25\xa1\x8f\xed\xbd\x72\xf4\x7a\x91\xdd\xc3\x04\xbe\x5d\x7d\x8e\xc4\x0b\x25\xfb\xed\x21\xcd\xd6\x0b\x36\x10\xed\x99\xb0\xd2\x77\x48\x84\x28\x22\xdd\xc0\xca\x0d\x56\xbd\xd3\xb0\x96\xed\xf6\x88\x84\xf6\x17\xd5\x73\x68\x9a\x40\x5f\xac\xe1\x0d\xfd\x19\xc6\x5d\x10\xa8\xe8\x77\x08\xce\x74\xb1\xfc\x31\x3f\x1f\x8a\xe4\x50\xb4\xc0\x33\xd2\x2c\xc1\xe4\x89\xf6\xc1\x6b\x59\x16\x66\x18\xb8\x92\x10\x29\x33\x93\x3b\x21\x70\x7d\x10\xbb\x30\xe9\x54\x69\xef\x23\xc7\x86\x06\x07\x3b\xed\xed\xdd\x7a\x55\x49\x1d\x10\xff\x7a\x1e\xa2\x14\xca\xea\xf9\x12\x4f\x92\xc0\x1c\xe9\x04\x2f\xf2\x7c\xd9\x51\x8b\xe6\x94\x37\xc9\x12\x10\xc2\x14\x30\x96\xc3\xdf\x2f\xe0\x90\x26\xf3\x88\x5c\xfc\x81\x06\xb3\xb5\x84\xc0\x55\xab\x7d\x99\xec\x8c\x37\x3f\xc0\x5e\x8b\xc1\x69\xbb\x0f\x4a\xc9\x28\x1a\x63\x72\x97\xfe\xf0\x9f\xbf\x04\x5d\xfa\x64\x58\x84\x9c\xae\x24\xfd\x2a\x32\x71\xd0\x36\x28\xf4\x0f\x69\xe2\x84\x37\xa2\x92\xfd\x03\xa4\x93\x19\xce\xf6\x80\xd6\x3f\xe0\x49\x46\xfd\xe0\xf2\x66\x2f\x46\x66\x0e\x17\x90\x28\xdd\xaa\xf9\x76\xde\x74\x54\xb8\xe9\x90\x25\xde\xc7\x94\x1a\x22\x6c\xd5\x4b\x67\x91\xe8\x64\xfe\x15\xdd\xc7\x3f\xd8\xc9\x26\x35\xb7\xf4\xd7\xc4\xa9\x5d\xdf\x55\xf8\xbf\xa9\xd5\x8c\xc5\x3e\x67\xcc\xe8\x49\x55\x7b\xe9\x72\x34\xdf\xed\x16\x82\xcd\x07\x1c\x67\x1d\xf5\x1b\xde\x74\xd6\xf5\xdb\x9e\x61\xe1\x1e\x4f\x7a\xbd\xb2\xf5\x9d\x2c\xf3\xd7\x70\x89\xb2\xc0\xdd\x87\x2c\xa2\x0b\xc7\xbd\x62\xff\x28\x97\x02\x60\xcf\x2a\x59\xb0\xd1\xbb\xf3\x74\x49\x3c\xcc\x1c\xa6\x51\x98\xea\xe2\x02\x81\xa5\x0b\xaf\xdf\x9e\x65\xe9\x14\x49\x60\xfc\xb5\xf3\xd3\x8a\x48\x99\xe1\xa7\x74\xcf\x62\x6b\x78\x25\x1c\x26\x1d\xaa\xc2\xcf\x7e\x9c\x98\x6c\x53\xed\x47\x0c\x0d\x25\xc4\x46\x9c\x5c\xeb\x1a\xba\x35\x05\x5e\x73\x3b\x9a\xc7\x08\x58\x9a\x0a\xa1\x01\x79\x65\x21\x9b\xce\xf7\x4d\x5e\xca\xf4\xf2\xfc\x3d\x98\x60\xec\xec\x18\x33\xb8\xf7\x4b\x15\xfc\x6e\x09\x7f\xf0\x03\x95\x24\xe8\x3b\x44\x8b\xf2\xc9\x53\x10\x71\x75\x14\x60\xe6\xe0\x3a\xc6\x22\xf0\x5e\xfb\xba\xb3\x8a\x18\x03\x00\x4d\x81\xc0\xa1\x1f\x76\xeb\x9c\x65\x0b\xec\xa6\xa9\xd9\x77\xc2\x51\x22\x3f\xe6\x69\x26\x8f\xc3\xd4\x1b\x8e\xbf\x0e\xca\xb7\xd2\x0b\xa2\x55\x7e\xd3\xa4\x66\xf9\x00\x60\xfb\x29\xc1\xd6\x46\x8a\x6c\xcc\xf6\xbd\xea\xbb\x55\xbe\xd5\xe9\xd2\x82\x30\x80\x9e\x93\xa1\xdb\x03\xa2\xb7\x67\x72\x8a\x2c\x67\x22\xcd\xc8\x27\xc3\x89\xbe\x34\xd3\x1c\x8d\x52\x47\x61\xdc\x92\x20\x69\x64\x01\x16\xb8\xb2\x56\x87\xde\xe6\x03\x80\x4d\xaa\x60\x21\x45\x8e\x71\x8b\xe3\x79\x2e\x65\xfc\x89\x2a\xf7\x10\x13\x84\x01\x04\x6b\x0e\x77\xfc\x97\xfd\xdc\x5d\x88\x85\x86\x08\xeb\x53\x5e\xd7\x5a\x76\xf4\x81\x93\x5b\x72\xc7\xeb\xc1\x90\x84\x39\x50\x1c\xbf\xf8\xea\x88\x2a\xdb\x75\x0e\x44\x11\xf9\x06\xac\xdc\x70\xc1\x91\xe9\x74\x1d\xbc\xf2\x47\xcc\x1a\x20\xf4\xbc\xd7\x99\xdc\x5b\xde\x4b\x2e\xef\xd2\x3e\x7e\xde\xa4\xfc\xcb\x8a\x99\x1c\x00\x30\x34\x95\x64\xa5\x75\xa4\x0b\xa7\x18\x79\x91\x9d\x26\x49\xbe\x6b\x22\x5c\xb4\x67\xcf\xb9\x68\xcf\xaa\x78\xec\x0b\xe5\x89\xa1\xa1\xda\xd8\xab\x6d\x69\x19\x11\x5c\xf6\x25\x7a\x97\x9f\x9a\x33\x8d\x9d\x99\x91\x00\xf2\x8b\xd1\x00\x5b\x0f\x5f\x2d\x1a\xbe\x82\x0f\xd2\x94\x7c\x80\xd7\x08\x27\x05\xfd\xbe\x5e\x5d\x09\x73\x99\x8c\x35\x4e\x58\x1e\x8d\x19\x06\xee\x20\xd4\x3c\xd5\x32\xcc\x36\xe9\xd3\x69\xed\x58\xbd\xa8\x25\xc5\x00\xcc\x26\xce\xfa\xa7\x8b\xc5\xcf\x20\x12\x78\x55\xd2\x55\xb0\xbc\x5c\x55\x4b\xd8\xea\x5f\x4a\x42\x91\xca\xa2\xfb\x4a\xd7\xbc\xe9\xaf\xa3\xaa\x0e\x73\xa1\x50\xe4\x82\x04\x4e\x25\x38\xdf\x95\xb8\x3a\x19\xa0\x4e\x54\x6f\x69\xfb\x94\x20\x1d\x74\x69\xc8\x9e\x94\xe2\xc9\x8c\x04\xa0\x0a\x9a\x6f\x68\x85\x7d\x12\xe9\x23\x3c\xc0\xa8\x50\x98\x85\xb3\xef\x16\x93\xa9\xad\x6e\x40\x6b\xac\xb5\x6d\x6b\x09\xe7\x99\xc6\xea\xdf\xaf\x7f\xee\x7e\x0b\x13\x43\x43\xdd\xb1\x56\x3b\x36\xd0\x17\x7d\x5d\x61\x1f\x97\x25\xd7\xd8\x2d\x4a\xcc\x88\x2d\x80\x55\x16\x35\x06\x97\x84\xac\xc2\xf6\x70\xd8\x6a\x9e\x66\xf7\xad\xf7\x7f\xcc\x09\xfa\xa0\xae\xf9\xbd\x29\x57\x86\x38\xfc\x61\xaf\x29\x65\x49\x1c\x6d\xb6\x3c\x39\x37\x80\x38\xf2\x44\x06\xcc\x4c\x48\x1c\xfa\x82\x58\xe9\x5a\x8c\xfa\x7e\xf8\x69\xfa\xa8\x65\x10\xe3\x71\xb0\xd5\xba\x36\x48\x68\x9f\x1b\xd4\x42\x7f\x05\xa1\xee\x39\xdf\x09\xfe\xd1\x6f\x20\x2f\xdb\x86\x56\x05\x3e\xfd\xac\xb4\x5a\xc1\xce\x50\xe1\x50\xa1\x6b\x93\x7a\x07\x96\x46\x92\xbd\x24\x97\xf9\xc5\x0c\x03\x33\x30\xbb\x53\xa2\xdd\xd8\x36\xe8\x29\xd8\x0d\x9e\x60\x2e\x6d\x98\x47\x01\x68\x40\x74\x55\x78\x6c\xf6\x8d\x4f\xbf\x79\xac\xb2\xc9\xe1\x8d\x63\x68\x48\x09\xf5\x18\x8d\x3b\x0b\x38\x4f\x81\x08\xeb\xf8\xe3\xbd\x4a\x75\x63\x1e\x04\xe7\x29\xdc\x5a\xd2\x0f\x51\xfc\x4b\x29\x3b\x89\x2b\xa8\x0f\x87\xbf\xe3\xed\x22\x23\x32\xa7\xc4\xf8\x7c\xaa\xc2\x48\x50\x0f\xa1\xbd\x79\xe6\xe2\xbd\x57\xef\x4a\x10\xd3\xdf\x5b\xef\xe4\x7d\xfa\x3e\xa8\xaf\x4f\xd6\x84\x86\x28\x73\x07\x03\x3b\x42\x05\x29\x74\x63\xe0\xda\x52\x9e\xf7\xd3\xf8\xa5\xe1\xfd\x33\x13\x7e\x2e\x49\x7b\x30\x2e\x10\xc6\x3a\x72\xfa\xff\xa9\x4b\xcd\x60\xab\x2b\x7f\xc0\xdc\x4f\x36\xc7\x5c\x6a\xf6\x64\x24\x9b\x38\x30\x19\x2a\x37\xcc\xb6\x9b\x27\x9e\x72\xf2\xe6\xf2\xd3\x8b\x6e\x69\xbe\xba\x3b\x63\xa7\x7f\xb9\x31\x87\x01\xc3\x89\x86\x83\xf3\xf3\x04\x1d\xee\x35\x08\xee\x12\xf6\xd6\x5f\xfc\xfd\xb0\xee\xd3\x10\x6f\xa6\x83\x42\x07\x7a\xff\x71\xec\xfa\x9e\xad\x2f\xab\xe1\xad\xee\x17\xb2\x32\xc1\x3b\x3d\x73\x9b\x50\x02\x43\x42\xf6\xd9\x80\xf0\x73\x2c\x1b\xe6\x1d\x58\xfb\x82\xb7\xe3\xcc\x2f\x0e\x4b\xeb\x73\xcc\x9e\x0a\xd6\x8d\xf7\x93\x4f\xdd\xdb\xf3\x2c\xf3\x93\xc3\x94\xa0\xf6\xf4\xf2\x99\xd5\x9f\x15\x0f\x30\x28\xc8\x47\xd9\x5c\xcb\x62\xe2\x60\x79\xa6\x20\xf0\x20\x2b\x39\xec\xba\xd0\xd1\x9f\x3e\x09\xb6\xcb\xde\x9c\x3d\x38\x65\xef\xfd\x9f\x31\x7c\x67\xdd\x1b\x18\x98\x1b\x38\x42\x94\x62\x7f\x28\x30\xb2\x30\x99\x2b\x08\x54\x30\x44\x9f\xb6\xdb\xd1\x5e\x3f\xd1\xe1\x08\x87\xc6\x4f\xe5\x5d\xdf\xde\xef\xca\x69\x58\x93\x74\xbd\xee\xc8\x2b\x33\x86\x72\x09\x06\x16\x86\x99\xae\x2d\xce\x0c\xc9\x2c\xc7\x3c\xbc\xe4\xdc\x0c\x0a\xd2\x2c\xb8\x22\xb4\x38\x2b\xbc\x19\xcc\xdf\x98\xa8\x1d\x5a\x77\x30\x49\x92\x7b\x76\xd6\x95\xd5\xf7\xa2\x96\x6f\xdd\x21\x98\xc0\x20\xb0\x5d\xaa\x7f\xe1\xfe\x19\xa6\x06\x31\x7d\x27\xdd\x76\xd8\xd9\xb4\xbd\xbb\x9c\x7a\x9c\xf3\x01\x67\x3d\xb3\xd4\x9f\x7a\x97\xe6\xff\x93\x1e\xaf\x0b\xd8\x97\xca\x22\xc1\x10\x11\xa6\x38\xe5\xb1\x3c\xe3\xe4\xd0\x0d\x59\x4b\xcf\xb8\xf6\x1f\xf8\x3e\x31\x80\xe3\x7b\x48\x9d\xc7\x01\x3b\xa6\x8c\x0f\xf3\x0f\x7e\xdd\xb9\x20\x75\x57\xd5\x2d\xbb\xd2\x10\x11\x55\x26\x1e\x86\x45\x21\xb3\xbf\xa8\xa6\x33\x5d\xed\xad\xe2\x50\x73\xb6\xef\x90\x7e\xfb\xbc\xd8\xae\x93\x7d\x52\xc3\x71\x96\x02\x66\xb3\xd5\xaf\xd6\x1e\x3d\xb0\xd7\x8a\xe7\x4e\xf5\xc5\xe4\xcf\x26\xee\x4c\x91\x9c\x06\x0c\x27\xba\xda\xad\x1f\x3b\x30\x34\xb3\xad\x77\x5d\x7f\xa0\xff\x61\xf6\x7f\x8b\x1f\xde\xf2\xce\xaa\x09\xcb\x9e\xdd\x0d\x8f\xd3\xd3\x3d\xbd\x6c\x45\xf3\x42\xad\xc4\x87\x1b\xd5\x0f\x30\x28\x7c\x9b\xce\xc0\x98\x22\x74\x60\x16\x73\xfd\x74\xbf\xce\xc8\xc7\x35\x19\xcf\xca\xfe\xa9\x35\xd6\x70\xce\x58\x5e\x3d\x67\x33\xe3\xce\xb2\xd9\xd1\xab\x52\x85\x9f\x3f\x7a\xee\x3d\xe1\xf8\x6f\xdf\x06\xc6\x86\xfb\x2d\x99\xf7\x23\x99\x2e\xcf\x2a\x71\xd5\xd2\x5d\x5b\xf0\xc0\xf8\x9c\x95\xe3\xc3\x46\x01\x8b\x7b\x37\xb4\x7f\x5a\xce\x7b\x17\x1d\x1e\x76\x32\x39\xe7\x0d\xf3\xc1\x73\x4e\x5d\x2a\x07\x18\x16\x78\x34\xd8\xd8\xca\xb1\xe4\xc5\x2f\x6d\x97\xb3\xd5\xf2\xfe\xb8\xef\x9b\x5b\x8f\xf4\x83\xff\xb3\x2b\x42\xaa\xbf\xc7\x69\x59\x2e\xd9\xf2\xc7\x64\xe2\x04\x53\xdf\xcb\x4f\x38\xcd\xbe\xdd\x4d\x7e\x14\xf6\x9b\xf3\x83\x5b\x5a\xbd\x6c\xe0\xc2\x56\x96\xac\xb0\x17\xdc\xd6\x13\x1b\x58\x0f\x1e\xe8\xe5\xe0\x12\x12\xf3\x5a\xb2\x44\x89\x73\xc6\xf2\xaa\x92\xfb\xf9\x5e\x19\x3f\x3d\xef\x17\xfd\xbc\xf9\x28\xfa\xea\x6d\xd7\x59\x4f\x5e\xaa\x24\x88\x32\xb2\x31\x84\x85\xb2\x1f\xdd\xe1\xc5\xb0\x9e\xfb\x9c\x7f\xf6\x4e\xee\x83\x07\x54\x58\x58\xe7\x24\xbd\x08\x72\x9d\xa5\x5e\x35\xb1\xb7\x62\x55\xbd\xc6\x4d\x77\xb9\xcc\x3f\x6d\x55\xa7\x55\x7f\x5e\xf1\x62\x6a\x15\x4a\x60\x08\xd0\xb0\x9c\xe7\xce\x14\xc9\xa1\xf0\x33\xe0\xfd\x11\xc3\x99\x53\xc2\x82\x5a\x1b\x12\x52\xa6\x39\xef\xd4\x66\x60\x7a\x96\x29\xa7\x9f\xb7\x2d\x61\xdb\xf1\x36\x21\x55\x7e\xc5\x95\xe7\xbe\x31\x74\xa5\x0a\xaa\x24\x98\x82\x2c\x0a\xe7\x3f\xea\xda\xe9\xb0\xf6\x5a\xe7\xde\x5e\x23\x39\xde\x8b\xbe\x19\x1d\xeb\xda\xf3\xe7\x94\xbd\x08\x65\xd5\x56\xa9\x15\xfb\xa9\xfa\xcf\x76\x66\xc8\xa6\x9d\xfe\xfa\x95\xd3\x62\xbf\xc5\x1d\x5c\x3a\x77\x85\x50\x02\x83\xc0\xd5\x59\x4b\xe3\xfd\x04\x0d\xd6\x0b\x04\x45\xa9\x3d\xb0\x7f\xb2\xb4\xa2\xd7\x80\x6f\x2f\xdb\xdf\x39\x45\x07\xe2\x37\xb6\x4f\x94\x7d\x3f\xfd\xc1\xa5\xbe\x07\x2b\x65\x95\xdf\xde\x9e\xa5\xfd\x34\x94\x6f\xdf\x67\x71\xab\xb5\xee\xf3\x19\x98\x1b\x5e\x5c\x37\xb4\xed\x61\x60\xdc\x13\x24\xd1\x50\x7e\xa5\x7e\xb1\xf5\xd3\xcb\x05\xc7\xff\xfc\x16\x91\x3a\xfc\x90\x43\xa4\xca\xfa\xf9\xbd\xff\xf6\x6b\xf7\xb3\xd5\xc7\x1d\xfc\x70\xf2\xad\x96\xee\xfa\x17\x42\x37\xe7\x1d\xf8\x7e\x2a\xab\xf4\x80\x65\xbd\xc6\x0c\x16\x19\xd5\x03\x0c\x07\x2e\x76\x2d\xce\x11\x3a\x31\xf5\xc0\xad\xad\x56\x3b\x2b\xe7\x4f\x51\x3f\xbd\xd4\xa6\xd4\xc5\x2f\x78\x69\xd0\xbd\x99\xd3\x8a\x4c\x76\xfc\x35\x3c\x55\xcb\x10\xe7\x3e\x87\x35\xda\xb9\x24\x4a\xeb\xc3\x12\x5b\xa9\x7a\x7e\xab\xa3\xdb\x26\x95\x6f\x3c\x6b\x72\xee\x77\xe1\xe5\x1b\xfd\xc9\x7c\x0f\x6e\xfc\xad\xd0\xb2\x6f\x50\x48\xd1\xaf\xdb\xdf\x78\x7f\xb7\xf7\xd6\x37\x72\x15\x0b\xdf\xac\x94\x5d\xef\x23\x24\x53\xe7\xd1\xc0\x42\x0b\xf4\x49\xfd\x43\xfd\xb9\xe2\xfa\xb3\xb2\x5d\x79\x77\x19\x18\x18\x18\x3c\x5d\xfd\x5c\xd6\x39\x25\x34\x01\x02\x00\x00\xff\xff\x09\x02\x07\xb8\xfe\x86\x00\x00")
-func initScriptsDashJsBytes() ([]byte, error) {
+func initPublicAssetsImagesIconsAppPngBytes() ([]byte, error) {
return bindataRead(
- _initScriptsDashJs,
- "init/scripts/dash.js",
+ _initPublicAssetsImagesIconsAppPng,
+ "init/public/assets/images/icons/app.png",
)
}
-func initScriptsDashJs() (*asset, error) {
- bytes, err := initScriptsDashJsBytes()
+func initPublicAssetsImagesIconsAppPng() (*asset, error) {
+ bytes, err := initPublicAssetsImagesIconsAppPngBytes()
if err != nil {
return nil, err
}
- info := bindataFileInfo{name: "init/scripts/dash.js", size: 127, mode: os.FileMode(420), modTime: time.Unix(1730855738, 0)}
+ info := bindataFileInfo{name: "init/public/assets/images/icons/app.png", size: 34558, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
-var _initScriptsGuardJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8f\x4d\x4b\xc4\x30\x10\x86\xef\xf9\x15\x2f\x73\xea\x42\x28\x0b\x7a\x72\xd9\x8b\xe2\x55\x3c\x79\x11\x29\xb1\x99\xdd\x46\x63\x52\x27\xa9\x6b\x69\xfb\xdf\xa5\x1f\x82\x17\x4f\xc3\xbc\x1f\x4f\x32\xa7\x2e\xd4\xd9\xc5\x80\xbb\xc6\xe4\xa2\x35\xb9\xd1\x68\x8d\x98\x8f\xa4\xf1\xd9\xb1\xf4\xf3\xda\xfb\x68\xac\x46\xc3\xc6\xb2\xa4\x1d\x06\x85\xd5\xc4\x71\x9b\xe3\x88\x61\x3a\x28\x20\xc7\x77\x0e\xbf\x72\xb9\x6e\xe3\x08\xa2\xbf\xe6\x32\x9f\xf7\x2f\xff\x38\xa5\x70\xeb\x4d\xcd\x05\xdd\xb2\x11\x16\x90\x06\xd1\x6e\xce\xb9\x13\x8a\x2d\x7b\x04\xd1\x0c\x58\x2b\x9e\xc3\x39\x37\xb3\xba\x5f\xff\x07\xe4\x46\xe2\x05\x81\x2f\xb8\xff\xae\xb9\x9d\xaf\x2c\xe8\x21\x6e\x6f\xb5\x12\xbf\x9c\x65\x4b\x1a\xd7\xfb\xab\x05\x3e\x29\x05\x78\xce\xb0\x26\x1b\x1c\xf1\x28\xb1\xe6\x94\x0a\xea\xb2\xf3\xa9\x7c\xbb\xe4\xf2\x89\xc5\x9d\x7a\xd2\x2b\x64\x69\x09\xe7\x4e\x02\x06\x54\x55\x72\xf6\x66\x29\x97\xc9\x59\x8d\xaa\x3a\xfb\xf8\x6a\xfc\xa6\x2d\xd4\xe9\xa0\x26\xf5\x13\x00\x00\xff\xff\x96\x5a\x0d\x45\x75\x01\x00\x00")
+var _initPublicAssetsImagesLogosLogo_colorSvg = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x96\x4b\x6f\x1b\xc9\x11\xc7\xef\xfb\x29\x1a\x93\xeb\xb8\x54\xef\xc7\x42\xf4\x22\x21\xe0\x5c\x1c\x6c\x90\xc7\x25\x37\xc7\x62\x24\x62\x69\xd2\x90\x18\x4b\x9b\x4f\x1f\x54\xcb\xd6\xd2\x80\x12\x1f\x8c\x99\xdf\x94\xaa\xab\xbb\xff\xf5\x2f\x5e\xff\xf4\xf4\xe9\x30\xbe\xec\xee\x1f\xf6\xa7\xe3\x66\x21\xc0\x65\xec\x8e\x1f\x4f\x37\xfb\xe3\xed\x66\xf9\xfb\xdf\xde\xbd\xc9\xe5\xa7\xb7\x3f\x5c\x3f\x7c\xb9\x1d\x8f\xfb\x9b\xf3\xdd\x66\x09\xfe\xfc\xb4\x8c\xbb\xdd\xfe\xf6\xee\xfc\xed\xed\xcb\x7e\xf7\xf8\x87\xd3\xd3\x66\xc1\x81\x23\x78\x04\x2f\x97\x49\x69\x19\x4f\x9f\x0e\xc7\x87\xcd\x72\x77\x3e\x7f\xfe\xf1\xea\xea\xf1\xf1\x11\x1e\x05\x4e\xf7\xb7\x57\x8c\x88\x57\x0f\x5f\x6e\xbf\x86\xfc\xf8\x74\xd8\x1f\x7f\x79\x2d\x90\xaa\xea\x6a\x7e\x5d\xde\xfe\x30\xc6\x18\xd7\xe7\xfd\xf9\xb0\x7b\xfb\xfe\xe7\x3f\xfe\xfc\xe6\xf7\x87\xcf\x77\x1f\xae\xaf\x9e\xc9\xf3\xd7\xdb\xb1\xbf\xd9\x2c\x7f\xfd\xf5\xd3\x3f\x4f\x87\x87\x65\x3c\x9c\xef\x4f\xbf\xec\x36\xcb\xf1\x74\xdc\x7d\x7b\x7b\xf3\x75\x4b\xb4\x8c\x7f\xed\x0f\x87\x6f\x1f\xfb\xf9\xcd\xfd\xbf\x0f\xbb\xcd\xb2\xfb\xb2\x3b\x9e\x6e\x6e\xbe\xae\x78\x91\xf7\xb7\x55\xbf\x8b\x3f\x9e\x8e\xff\xd9\xdd\x9f\x2e\xe2\x9f\xff\xe6\xfb\xf7\xc9\xee\x77\x1f\xcf\x33\xd5\x5f\x76\x1f\xcf\x1f\x8e\xb7\x87\xdd\xb7\x2a\x7e\x87\xf3\xdf\x32\x4e\x9f\x3f\x7c\xdc\x9f\x7f\xdd\x2c\xb8\x8c\xa7\xf9\xff\xf3\xf3\xcb\x4d\x5c\xde\xc3\xf2\xf6\xfa\xaa\x73\xbe\xb2\xd4\xe7\x0f\xe7\xbb\x71\xb3\x59\xfe\x64\x02\x8a\x61\xea\xb5\x9a\x82\xb3\x1b\xb2\x8c\xad\x11\x60\x52\x3a\xd7\x6a\x0e\x15\x48\x6a\x39\x34\x41\xc2\x34\x3d\x56\x4b\x48\xa2\x66\x06\xe2\x6a\xe6\xb6\x3a\x02\x96\x21\x4a\x8e\xad\x32\x38\x56\x70\xda\xea\x04\xec\x9e\x6c\x3e\xa4\x20\x90\x9d\x65\xd2\xe2\x52\xe7\x1a\xe2\x10\x68\x26\x9e\xab\x33\xa0\x67\xb9\xd9\xd8\x8a\x83\xba\x70\xe4\x8c\xad\x62\x52\xee\x58\xc6\xa0\xb0\x9a\xd4\x42\x5c\x74\x88\x41\xa9\x92\x31\x5d\xd2\x2d\x17\x84\x0b\x96\xc8\xc4\x98\x26\x61\x83\x15\x22\x4a\x53\xb3\xf7\x96\xc8\xa1\x1c\x4d\x93\xc3\xd2\x79\x35\x04\x0b\x29\xe3\xb1\x6d\xaa\x19\x48\xbe\x6a\x40\x26\x99\xf1\x60\x83\x74\xa7\x4c\x59\xd5\x80\x55\xcb\x64\x70\x80\x0b\x31\xb9\xac\x2a\xc0\xcc\xe4\xf6\x5c\x82\x12\x62\x46\xac\x4a\x40\x91\x6a\xac\x43\x08\x92\x2d\x4c\x6c\x95\x82\x12\xcf\x28\x1d\xa2\xa0\xca\xa4\x51\x4d\x4d\x8a\x2b\xc6\x56\x14\x8a\xdd\xdd\xb4\xa9\x7a\x99\x5a\xf4\x8e\x95\x92\x50\x7d\xd2\x3e\x93\xca\x79\x0e\x58\xa6\x12\x93\xa2\x87\x57\x9f\x64\x00\x89\x7a\x62\x36\x96\xa0\x2c\xa9\x21\x09\xe2\x1e\x52\x33\x85\xb0\xa0\x67\xdf\x90\x05\x11\xd1\xcc\x80\xae\x95\xc9\x63\xab\x04\xe8\x4e\xa5\xbc\x4a\x42\xa8\x92\x30\x0f\x65\x30\xaa\x50\x8f\xa6\x4c\x8a\xcc\x3a\x54\x20\xc3\xa5\x2c\x56\x09\xd0\x32\x4b\x1d\xdb\xd6\x89\x4a\x14\xd9\xda\xf7\x4d\x2a\x5d\x9a\x3a\x78\x89\x51\xe6\x2a\x06\x41\x5e\xec\xa3\x4f\x3a\x82\xd8\x72\x15\x05\x53\x23\x54\xfe\xaa\xc9\x8c\xec\x2d\x13\x88\x85\xc6\x30\xee\x4b\xd1\x2a\x59\x39\x80\x90\x5d\xa9\x61\x91\x13\x46\xac\xcc\x60\xa6\x69\x6e\x63\xdb\x98\xab\x8c\x68\x65\x84\x08\xa7\x4a\xed\x60\x0f\x49\xad\x95\x0a\x50\x58\xc9\x67\x06\xf2\x34\x77\x5b\x29\x40\xa2\x84\x50\x66\x06\xab\x08\xc2\x89\xc3\xac\x3c\x64\x98\x00\x92\x20\x11\xaf\x94\x40\xea\x16\xea\x4d\x95\x54\x3d\xbd\xa9\x19\x91\x30\x8d\xad\x19\x84\x22\x19\x5b\x17\x91\xa5\x11\xe6\xc3\x02\xcc\x43\xc3\x62\x65\x01\x67\x46\x23\x19\xdd\x63\x4a\xe8\x6a\x2b\x3b\xb8\x39\x0b\xc7\xd8\x3a\x02\x99\x53\x8a\xae\x2d\xf0\x32\x54\x1a\x8e\x2f\xf2\x15\x01\x12\x27\xce\xef\xa0\x83\x25\xa5\x76\x0d\x17\x58\x11\x90\xc3\xcc\x67\x86\x6f\x69\x55\x40\x3c\x5d\x85\x2e\x6b\x50\x07\xc3\x50\x23\x1d\xdb\x2e\xd8\xc4\x85\x65\xd5\x02\x33\xb3\xec\x60\x83\x90\x16\x52\xad\xc6\xc0\xc9\x69\x19\xe3\x75\x8b\x79\xff\x3a\xfe\xc7\x32\x1d\xf0\xcf\x1f\xce\x77\x2f\xe6\xe7\x5e\xfa\xee\x5d\xbb\x59\xdb\xd6\xff\x73\x33\x12\xa0\x40\xc6\xd0\x6e\x57\x71\x2e\xcd\x1c\x5b\x22\x48\x0d\xe7\xee\x4d\x05\x66\xf1\x88\x41\xdd\x8e\xac\x24\xd9\xa7\x90\xc9\x58\xee\x97\xb4\xc5\x2b\x96\x21\xcf\x19\x5e\xb0\x40\xb5\x43\xd1\xb8\x48\x2b\x08\xae\x89\x81\x3e\x2e\x6a\xe0\x00\xc3\x8c\x9a\x35\x28\xb4\x90\x99\x63\x65\x05\x0d\x25\x2f\x1d\xe4\xc0\x99\x41\xaa\x2b\x13\x84\xba\x16\x0d\x4a\x70\x0e\x2b\xf5\xd6\xa4\x22\x1b\xf6\x99\x33\x42\xb9\x6b\xb4\x54\x03\xd0\xd2\x88\x72\xb4\x5e\xba\xf8\xf0\x95\x0c\x98\x3c\xd1\x7c\x70\xb7\x98\x33\x33\xaf\x24\x50\x22\x54\x6d\xeb\x5c\x90\xa2\xc1\x25\x2b\xb5\x41\x47\x30\x8f\xd6\x8b\x19\xa1\xd4\x4a\x04\x25\x89\x84\xde\x46\x6b\x51\x59\xfc\x95\x12\x8a\x3e\x9b\x72\x48\x55\x69\x4e\x6c\xed\x24\xd4\xc1\x85\x88\xe5\x31\x69\x70\x16\xe9\x90\x00\x0c\x25\x46\xbf\xa4\xef\x25\x80\x45\x99\xd9\x2e\xf1\x56\x11\xfa\x80\x4d\x79\xe2\x92\xa4\xaa\x36\x13\xf4\x30\xa4\xb9\x11\x2a\x09\x2a\xed\xa1\x43\xe1\xbd\x5a\xbb\x0a\x4b\x74\x7f\x6b\x40\x0b\x4e\x72\x9e\x8f\x16\xa1\x88\xf7\xcc\x52\x51\x29\x9f\x5d\x2f\x12\x82\x1e\x93\xd2\xec\xeb\x6e\x38\x31\x42\x8c\x18\xdb\x1e\x70\xc5\x2e\xa8\x2b\x1b\x94\x47\xaf\xdd\x7e\xa4\x6a\xa5\x98\x2b\x27\x18\x87\x50\x52\xd7\x10\x4e\x52\x48\x7d\xfb\xc6\xa5\x61\x3d\xf8\x14\xb0\xfa\x5c\x65\x15\x06\x43\x09\xae\xa1\x04\xe1\x96\x28\xad\x9e\x8c\x6c\x9f\x69\xab\x65\xe1\x1e\x2d\xa2\x20\x56\x92\xa1\xd3\xab\x43\x4c\x89\xa8\xb1\x4b\xaa\x48\xce\xb1\x47\x51\x2c\xb2\xce\x29\x21\xd4\x92\x10\x85\xe0\xe4\xa8\x49\xdd\x58\xd2\x69\x6c\x05\x5b\x49\x4e\x4a\x6d\xaa\xcc\x1d\xce\x3d\xa0\x30\x92\x8a\xa6\xb2\x19\xcd\x1d\xe7\x30\x54\x62\x6a\x0b\x9f\x17\x10\xec\x9d\xa2\xc5\x48\xc4\xe5\x35\xcd\x80\x3c\xc2\x65\x30\xf6\xf0\x0d\xa1\xee\x2e\x76\xe3\x64\x6f\x48\xc1\xc5\x3d\x38\x09\xc4\x91\x33\x65\xaa\x95\x8c\x51\x45\x57\x6b\x4b\x43\x73\xed\x58\x0b\x77\x27\x5b\xcd\x7a\x04\xa2\xa0\x0e\x26\x90\x22\xec\xcb\xb0\x80\x74\x46\xaf\x99\x40\x59\xac\xd5\x63\x3d\xbf\xdc\x34\x75\x74\x43\xb4\x05\xcb\x1c\xde\x22\xca\x35\xfb\x45\xd4\xcc\xbc\xb3\xaa\x33\x07\xd2\xd8\x5e\xf4\x96\x09\x10\x1b\x5b\x37\xf8\x6f\x7d\x68\x08\x52\x61\x91\x3c\x5e\x37\x8e\xd7\xcc\x48\x24\xf0\x7f\x99\xd1\xf5\xd5\xc5\xcf\xba\x97\x97\xf9\x70\xdd\xbf\x68\xdf\xfe\x37\x00\x00\xff\xff\xce\x6c\x71\x2b\x5d\x0b\x00\x00")
-func initScriptsGuardJsBytes() ([]byte, error) {
+func initPublicAssetsImagesLogosLogo_colorSvgBytes() ([]byte, error) {
return bindataRead(
- _initScriptsGuardJs,
- "init/scripts/guard.js",
+ _initPublicAssetsImagesLogosLogo_colorSvg,
+ "init/public/assets/images/logos/logo_color.svg",
)
}
-func initScriptsGuardJs() (*asset, error) {
- bytes, err := initScriptsGuardJsBytes()
+func initPublicAssetsImagesLogosLogo_colorSvg() (*asset, error) {
+ bytes, err := initPublicAssetsImagesLogosLogo_colorSvgBytes()
if err != nil {
return nil, err
}
- info := bindataFileInfo{name: "init/scripts/guard.js", size: 373, mode: os.FileMode(420), modTime: time.Unix(1730855738, 0)}
+ info := bindataFileInfo{name: "init/public/assets/images/logos/logo_color.svg", size: 2909, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
-var _initScriptsSetupJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x91\xbf\x8e\xe2\x30\x10\xc6\x7b\x3f\xc5\x28\x15\x44\xe4\x2f\x17\xa4\xe3\xba\x3b\x9a\xeb\xe8\x11\xc5\xc4\x99\x0d\x81\xc4\xe3\xb5\x9d\x22\x5a\xed\xbb\xaf\x62\x21\x30\xd2\x4a\xdb\x80\x64\xf9\xf3\x7c\xa3\xf1\xcc\xcf\xce\xe2\x58\x40\x0c\x3b\x1a\x18\x76\xe8\x50\x40\x9c\x89\xb7\x51\x49\xd7\xb1\xf2\xce\x62\x09\x1f\x02\xc0\x90\x1b\x8d\x82\xbd\x61\x49\xd6\x2e\x04\x00\x40\x34\x70\x43\xbd\x4d\x35\xb9\xf4\xbf\xb2\x64\x5c\xb4\xf2\x89\x43\xa4\x70\xa0\x68\x05\x91\x9b\xb4\x57\xeb\xd0\x8d\x76\x3e\xcd\x35\x57\x67\x9a\x55\xb2\x75\xb3\xa2\xd6\x84\x06\x95\xf4\xd9\x6e\xc0\x96\x6c\x74\xbc\xde\xe7\xf7\xbb\x02\x44\xff\x98\x2f\x1d\x5d\xfb\x79\x47\xa2\x7b\x08\x4f\x24\x2f\xd4\x84\x16\x29\xac\xfb\x47\xab\xcc\xcb\x75\x92\x57\x49\x51\x41\x9e\x6f\xfd\x0a\xd2\x45\x5e\xdd\x83\x43\x71\x0c\x0a\x4f\xce\x69\xbb\xcd\x32\x43\x3d\xa1\xa5\xa4\x3e\x27\x45\x59\x95\x79\x51\x6c\xaa\xdf\xa9\x64\x9b\xa2\x4e\x6a\xea\xce\x9d\x6a\xd3\x61\x7a\x97\x3d\x8f\x4d\x2a\x79\xc8\x1a\x96\x36\x9b\x90\x13\x6c\x86\x4e\x65\xf3\xe3\x9d\x75\x7b\xeb\x7a\x6b\x12\xc0\xfe\xc5\x7a\x0a\xa7\x6e\xb8\x7d\x36\x6a\xf9\x2b\x20\x2d\x5f\x42\xda\x70\xfb\x23\xe9\x9e\x39\x9c\x99\xdd\x89\x8c\x7d\x36\xeb\x66\x13\xb0\xae\x5f\xf3\xab\xdd\xb7\xac\x47\x01\xb0\xfc\x23\x3e\xc5\x57\x00\x00\x00\xff\xff\x0a\x0d\xb9\x19\x78\x03\x00\x00")
+var _initPublicAssetsImagesLogosWordmarkSvg = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x57\x5d\x6f\x2b\xb7\x11\x7d\xcf\xaf\x20\xf6\xa9\x17\x58\x8f\xe7\x93\x43\x06\x96\x03\x54\x40\x9f\x1c\xa0\x40\xdb\x87\xe6\xcd\x88\x15\x59\xb8\xba\x5a\x43\x56\x6c\xb7\xbf\xbe\xe0\xae\x24\xcf\x0a\x57\x45\xf2\x26\x9e\x25\x87\xc3\x73\xe6\xcc\xd8\x77\x3f\x7d\x7c\xdb\xa6\xb7\xd5\xfe\x75\x33\xec\x16\x1d\x01\x76\x69\xb5\xfb\x75\x78\xda\xec\xd6\x8b\xee\x5f\xff\xfc\xdb\x4d\xe9\x7e\xba\xff\xe1\xee\xf5\x6d\x9d\xde\x37\x4f\x87\xe7\x45\xc7\x28\xe0\x82\xc6\xfc\xf2\xd1\xa5\xe7\xd5\x66\xfd\x7c\x58\x74\x45\xc1\x2b\x3b\x92\x36\xf4\xb7\xcd\x76\xbb\xe8\x7e\xfd\x7d\xbf\x5f\xed\x0e\xcb\x61\x3b\xec\xbb\xf4\xb6\x59\xbd\xff\x75\xf8\x58\x74\x98\x30\x7d\x06\x49\x9f\x27\xbb\x98\x08\x75\xe9\xe3\xdb\x76\xf7\xba\xe8\x9e\x0f\x87\x97\x1f\x6f\x6f\xdf\xdf\xdf\xe1\x5d\x60\xd8\xaf\x6f\x19\x11\x6f\x5f\xdf\xd6\xc7\x2d\x3f\x7e\x6c\x37\xbb\xaf\xdf\xdb\x48\xb5\xd6\xdb\xf1\x6b\x77\xff\x43\x4a\x29\xdd\x1d\x36\x87\xed\xea\xfe\x7d\xd8\x3f\x7d\x7b\xdc\x7f\xbd\xbb\x9d\xd6\xd3\xb7\x75\xda\x3c\x2d\xba\xbf\x3f\xae\x57\x37\xd4\xa5\xd7\xc3\x7e\xf8\xba\x5a\x74\xbb\x61\xb7\x3a\xad\x6e\x8e\x1c\xd0\xf4\xc4\x9b\xfd\xef\xdb\xd5\xa2\x5b\xbd\xad\x76\xc3\xd3\xd3\xf1\x8a\x10\xea\x74\x4d\x97\x0e\xfb\xc7\xdd\xeb\x6f\xc3\xfe\xdb\xa2\x1b\x7f\x6e\x1f\x0f\xab\xbf\x08\x64\x63\xed\x13\x7e\x99\x85\xdb\x0d\xbb\xff\xae\xf6\x43\x08\x17\x42\xfe\xfb\x4a\x2c\xec\x13\x39\x98\xeb\x97\xcb\x5c\xf9\x22\xd0\x18\xec\xe5\xf1\xf0\x9c\x9e\x16\xdd\xcf\x44\xe0\x44\xce\x2e\xfd\x0d\xa5\x07\x41\x70\x54\x52\xd2\x9e\x2b\x18\x99\x94\x6a\xe9\x41\x2b\xb8\x32\x21\xd6\x71\x57\x16\x60\xaf\xc2\xa2\xd3\xa1\x0c\x26\xc4\xd6\x2b\x42\x91\xca\x84\x39\x80\x39\x03\xa3\x7b\x65\x49\x0f\xac\x50\x99\x8a\x5f\x43\x63\x80\x1b\x82\xc2\x99\x6a\x91\x3c\xde\x32\xcf\xf4\x97\xee\x28\xd6\xe1\xb9\xbb\xbf\xbb\x6d\xef\xb9\xe0\xeb\x76\x7d\x01\xbc\x0c\xdb\xff\xac\x87\xdd\xe7\xb9\xf4\x32\x6c\x76\x87\xd7\x45\x47\x64\x80\xc4\xc5\xd2\x4d\x81\xa2\x5a\xcc\xb8\xae\x6e\x28\xa7\xea\x60\xec\xc4\xc5\x13\x29\x58\xc9\x46\xce\x89\x30\x8f\xdc\x70\x9e\x48\x97\x6a\xa4\x89\x58\x81\x24\x8b\x7b\x62\xc0\x4a\xe2\xa5\xda\x98\xdc\x74\xf1\x77\xf5\x1c\xae\xe8\x49\x5a\x00\xbd\x50\x9f\x78\xf2\xc7\x97\xff\x2b\xa3\x71\xaf\x05\x2a\x92\x62\xb1\xb4\x34\xee\x0d\x41\x95\x84\x34\x27\x23\x70\x2c\x5c\x0a\xf5\x46\x50\x8a\x0b\x4b\x6d\x28\xb1\x96\xac\xd2\x9b\x00\x4b\x55\xc9\x39\x2d\x0d\xc1\x94\x54\xd1\x7a\x53\xb0\x4a\xa6\x55\x52\x2b\x00\xc3\x5a\x4d\x7a\x33\xf0\x6c\x6c\x85\x93\x16\x70\x13\xe3\x52\x7a\xcb\xe0\x19\x2d\x8b\xa6\xa5\x3a\xb8\x65\xcc\x2c\xbd\xb5\x9f\x56\x72\xb1\xa4\x19\xac\x54\x26\xcd\xbd\x15\x30\xd5\x8c\x58\x93\x1a\xb0\x71\x2d\x56\x7b\xab\x40\x9c\x3d\x63\x4e\x4b\x15\xa8\x94\xdd\x9c\x1a\xec\x58\x2a\x23\x27\x65\x50\x77\x24\xf7\x3e\x63\x52\x84\x2a\xe2\xd9\x73\x5b\xb5\xfa\xc0\x9c\x59\x58\xdb\x72\x59\x61\x4c\x81\x8d\xda\xb2\x00\x09\x72\x15\xca\x31\x5e\x06\x77\x63\x6d\x0c\x84\xbb\x0d\x94\x91\xaa\xa9\xce\x12\x05\x56\xa9\xe2\x6e\xf1\x51\x02\xac\x59\x9d\xda\x53\x03\x03\x0c\xac\x15\x51\x5b\xfa\x9f\x74\x11\xa8\x15\xb3\x6a\x1a\xa9\x45\x28\x6e\x24\xe6\xcc\x33\x21\x10\xb8\x92\x13\x55\xf4\x28\x1b\x46\x65\x31\xaa\xfe\x80\x7d\xe3\xa0\x71\x49\x96\x96\xd8\x57\x98\xb2\x54\x4b\x31\x58\x01\x3a\xbd\x35\xde\x7d\x4a\x5f\x4a\x5a\xc6\x4c\x41\xb1\xa8\x61\x2b\xea\xf3\xa3\x14\x58\xd4\x95\xbc\x44\x06\xce\xc9\x73\x5a\x06\xba\xda\xb9\x53\x25\x7e\x52\xdb\xae\x30\xa9\x15\x73\x90\xa1\xe5\x23\x63\x10\x4f\xcb\xa0\xd9\x98\x3e\x7a\x2d\xc4\x29\x08\x8b\x29\x88\x8e\xe9\x21\x54\x04\xa6\x65\xa8\x16\x4c\xa1\xa0\x62\xb0\x50\x7e\xb3\xbb\x43\xb1\x86\x44\x43\x61\x87\x47\x05\x17\xcc\x18\xf8\xb4\x4c\xa0\x2b\xda\xeb\xcc\x6c\xb0\x62\x54\x21\xf8\x36\x68\x66\x1c\x85\x35\x8e\xa2\x3f\xcc\xfb\xc0\x2f\xe9\xe7\x40\x50\xdc\x17\xe0\x58\x41\x81\xc0\x2b\xf0\x95\x20\x01\x3e\x76\xe6\x7f\x3c\x3f\xbe\xac\xfe\x68\x6b\x9e\x7a\xe1\xe3\x95\x5e\xe8\x7f\xaa\x15\x62\x2f\x02\x05\xb9\x50\xae\xcd\x05\xc2\xc0\xb9\x29\x5e\x46\x17\xb0\x1a\x17\xe9\x05\xdb\x74\xe1\x4a\x34\x9a\xc0\xc5\x8a\x56\x6a\x43\x4f\x2b\x57\x73\x1f\x4d\x90\x99\xb3\x92\xf5\x5c\x80\xac\x66\x56\x6d\x2e\x30\x75\xca\xb5\xf4\x9c\x61\x7a\xf3\xd8\x07\xce\xa8\x41\x75\x2a\x42\xa3\x09\xce\xa8\x42\x8b\xaa\xd9\x9a\x09\x44\x6a\x0b\xdd\xd0\x53\xdc\xdc\x9e\x36\xe5\xc6\x02\xe3\x56\x2d\xa3\x09\x0c\xab\x8a\xf6\xcc\xd0\x8a\x09\x6d\xb4\x40\xd1\x8a\x96\x73\x43\x1d\x95\xd9\x74\xf4\x42\x1d\x43\x47\xf4\x41\x2a\x7c\x67\x73\x84\xa3\xa6\x02\x63\x0e\x48\xf5\x1a\x8c\xb3\xb3\xcd\x67\x04\xd3\x73\x9a\x07\x95\x3f\x3f\x45\x9f\x69\x1b\xf7\xa6\xce\x17\x3e\x33\xb0\x9c\x51\xdc\x67\x3e\xcb\xe0\x47\x2a\x82\xcd\xfc\x04\xce\x5c\x56\x4e\x68\x30\x99\x56\x30\x19\x35\x8d\x26\x43\xa0\xa3\x9c\x33\x93\xb5\xbf\x78\xa6\xcc\xa2\xc9\x68\x66\x32\x9a\x9b\x6c\x1c\x29\x91\x85\x8b\xa5\x56\x28\x53\x7b\x4f\x4b\xa9\x70\x2a\x2e\x23\x60\x2d\x85\xb3\x24\xa9\x30\x82\x98\x7b\x63\x18\x53\x41\x49\x52\x60\xac\x16\xa2\x36\x09\xce\x35\x2c\xad\xfe\x5b\x21\x79\x9b\x26\xa3\x80\x62\x49\x7c\xaa\x2e\x6f\x93\x87\x98\x31\x9b\x27\xc9\x67\xd0\xcf\x3b\x97\x62\x01\x1d\xcb\x8d\x24\x89\x02\x91\x34\x55\xda\x98\x6b\x0f\xd5\x9c\x84\xa1\xa9\x5c\x8a\xb7\x91\xc8\x13\x1f\x69\x29\x04\xa7\x42\x6e\xe3\x53\xc6\x01\x9a\x04\x81\x4a\xc9\x5e\xb9\x11\xc0\xad\x0d\x8e\x97\x9c\xa6\xf1\xb1\x18\x8f\xd3\x38\x70\xf5\x59\xd4\xf3\x61\x7c\x32\xc0\xc5\x34\x3e\xb9\x65\x3e\x8d\xcf\x09\xcd\xa6\xf1\x19\x9d\x4f\xe3\x33\x3c\x9b\xc6\x27\x7b\x5f\x4c\xe3\xb3\x5e\x17\xd3\xf8\x94\xdd\x1f\x1c\xc6\xa1\x0d\x1d\x1b\xf1\x91\x90\xb8\x2d\x56\xcd\xf7\xe1\x10\x26\xb2\x7a\x05\x8e\xdd\xff\xcf\x35\xe2\xf3\x62\xfc\x71\xd7\xfe\xbf\xba\xff\x5f\x00\x00\x00\xff\xff\x3a\x68\xc1\x0c\x1f\x0e\x00\x00")
-func initScriptsSetupJsBytes() ([]byte, error) {
+func initPublicAssetsImagesLogosWordmarkSvgBytes() ([]byte, error) {
return bindataRead(
- _initScriptsSetupJs,
- "init/scripts/setup.js",
+ _initPublicAssetsImagesLogosWordmarkSvg,
+ "init/public/assets/images/logos/wordmark.svg",
)
}
-func initScriptsSetupJs() (*asset, error) {
- bytes, err := initScriptsSetupJsBytes()
+func initPublicAssetsImagesLogosWordmarkSvg() (*asset, error) {
+ bytes, err := initPublicAssetsImagesLogosWordmarkSvgBytes()
if err != nil {
return nil, err
}
- info := bindataFileInfo{name: "init/scripts/setup.js", size: 888, mode: os.FileMode(420), modTime: time.Unix(1730855738, 0)}
+ info := bindataFileInfo{name: "init/public/assets/images/logos/wordmark.svg", size: 3615, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
-var _initScriptsStatJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x52\xc1\x6e\xd3\x40\x14\xbc\xfb\x2b\x9e\x56\xa2\x75\xa2\x68\x13\x90\xb8\x38\x8a\x04\x14\x0e\xe5\x40\x91\x2a\x71\xa9\x7a\xd8\xae\x9f\x1d\xab\xf6\xbe\xb0\xbb\xa6\x44\xae\x8f\x9c\xf8\x04\xce\xfc\x02\x07\x38\xf0\x33\x45\xe2\x33\xd0\xee\xda\xae\x09\x8d\x4a\x4f\x59\xcf\xce\xcc\x9b\x37\x9b\xf9\x74\x1a\xc1\x14\x2e\x30\x23\x8d\x49\x2a\xac\x80\x35\xd1\xa5\xc3\x9e\xc9\x2a\x05\xd8\x0a\x02\x5d\x2b\x30\x52\x17\x1b\x6b\xb8\xb1\xc2\xf2\x17\x9e\xfe\xd2\xb1\x0f\x93\xa4\x69\x0f\x3d\x7f\x23\xb4\xa8\xa0\x99\xb6\xe0\x4f\xc6\x83\x1a\x6d\xad\x95\x3b\xcf\xa3\xac\x56\xd2\x16\xa4\xe0\x56\x1f\x07\xea\x04\x9a\x08\xa0\xa4\x9c\x1f\xab\x8c\x62\x76\x26\xd7\x42\xdb\xf3\x2e\x17\x0c\xb9\x12\x78\x64\xd8\x0c\x5e\x9f\x9e\xbc\xe1\xc6\xea\x42\xe5\x45\xb6\xed\x3d\x26\xcb\x08\x40\x92\x32\x54\x22\x2f\x29\xbf\xd7\xa6\xd3\x39\x59\x88\x09\x67\x01\x3a\x5f\x46\x6d\x14\x75\xdd\x88\xcc\xa2\xfe\xef\x6a\x9e\x3b\xf6\xd0\x0c\xcb\x88\x58\xc2\x2e\x84\x66\xff\x94\xe4\x1c\xf7\x57\x34\xf8\xc4\x8e\xb7\xaf\x1f\x9f\xed\xbe\x7a\xbc\xc1\xfe\x72\xee\xf6\xf0\xa2\x51\x33\xee\x7b\xdc\xca\x11\x55\x9b\xda\x22\x50\x6d\x77\xf6\xca\x0a\x2c\xd3\x1d\xec\x83\x28\x6b\x7c\xd0\xfe\xc7\x4a\x52\x85\xb1\x37\x9b\x05\x7d\x17\xea\xef\x2a\x22\x00\x80\x61\x97\xa0\xea\xc3\x85\x55\x3c\x63\xa7\x92\x26\xa4\x4c\x60\xec\x9f\x8c\xc7\x24\xa1\x91\x76\x12\x01\x8c\x7b\xf0\x14\x5f\xc4\x10\xf5\x44\x1d\xad\x85\xca\x31\x7e\x5f\xa3\xde\x86\x7c\xf3\x39\xfc\xfe\xf9\xe5\xd7\xa7\xaf\xa4\xa4\xbf\xbc\xf9\xfe\xf9\xe6\xc7\xb7\x08\xc0\x93\x60\xd5\xfd\x5e\x5f\x43\xd3\x3a\x7b\x1f\xa4\x87\xf9\x25\x6e\x1d\xa8\xf0\xea\x9d\x28\x07\xb4\x9b\x0d\x40\x65\x3a\xc6\xa9\x4c\x97\x91\x2b\x05\x6d\x48\xbd\x82\x26\x5c\x25\xdd\x18\x3f\xa2\xc8\x20\xee\x1d\x57\xc0\xa4\xb0\x2c\x84\x05\xaf\xe2\x92\x8c\x85\x15\x3c\x5e\x2c\x16\x8e\xde\x02\x96\x06\xef\x20\x3c\xe9\x09\xfd\x4c\x83\xd6\x16\x2a\x87\x15\xbc\xd5\x24\xd1\x98\x98\x6d\x05\xf1\x8c\x74\xc5\x4f\xc3\x1d\x9b\x01\x4b\xb1\x22\xbe\x41\xcb\x26\x3e\xad\x8b\xd3\x2b\x0f\x0e\x7a\x13\x2e\x29\xc5\xf1\x77\x85\xc6\x88\x1c\xfb\xa4\x76\xad\xe9\xca\x15\x03\xaf\x3e\x4a\xdc\xb8\x07\x88\x77\xa8\x33\x78\xba\x58\x4c\x86\x84\xdd\xc3\xdd\xee\x11\x9e\x36\xfc\x2f\x3a\x69\xd2\x1f\x1c\xda\xba\xe7\xfd\x13\x00\x00\xff\xff\x55\xb3\xed\x3a\x19\x05\x00\x00")
+var _initPublicAssetsLibsuiMinJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x7b\x7d\x73\x1c\xb7\x91\xf7\xff\xf9\x14\xc3\x79\xb6\x36\x80\x09\x0d\x97\x8e\x9d\xa7\x32\x6b\x90\x25\xd3\x94\xe3\x94\x62\xeb\x44\xa9\xae\x52\xab\x3d\x12\x9c\xe9\xdd\x85\x34\x0b\x6c\x00\x0c\x29\x66\x76\xbe\xfb\x15\x80\xc1\xbc\xec\x8b\x4c\x9f\xeb\xae\x2a\x55\xae\x68\x39\x68\x34\xba\x1b\x8d\xee\x5f\x37\x90\x07\xa6\xa2\xd7\xf4\x97\xfb\x8f\x90\x99\x24\x87\x05\x17\xf0\x46\xc9\x0d\x28\xf3\x34\xb5\x63\xd7\x61\x6c\x09\xe6\x97\x47\x11\xc6\x6e\x9e\xd6\xf7\xb2\xd0\x8e\xe4\x2a\x90\x6c\x94\x34\xd2\x3c\x6d\x20\x59\x31\xdd\x23\x26\x1f\xf7\x29\x36\xcd\xd8\x4f\xfa\x5a\x94\x6b\x50\xec\xbe\x00\xc7\xed\x25\x45\x8a\x18\x02\x98\x5e\x98\x88\x8b\x48\x5d\xbe\x76\x1f\x2a\x68\xe9\xd2\x93\x09\xc9\xa4\x58\xf0\x65\xd9\xfe\xfd\xa8\xb8\x09\xbf\x1f\x58\x51\x42\x0a\x35\x4e\xd5\xcc\xcc\x29\x90\x1b\xc7\x13\xd3\x8b\x6a\x21\x15\xb2\xab\x80\x65\x6d\xb6\x5b\x64\x68\x55\x63\x7c\x95\x64\xac\x28\x90\x5d\x76\x3c\x7e\x89\x14\x01\x62\x66\x30\xc7\x53\xbe\x40\xd7\xb8\x9b\x24\x17\xd1\x35\x32\x18\x7f\x3c\x46\xaf\xc0\x94\x4a\x44\xaa\x76\xba\x6c\x3a\x5d\x90\xa5\xb2\x9a\xcb\x45\x64\x4e\x68\xac\x9d\x01\xe3\x4b\x73\x1a\xc7\xa9\x25\x21\x80\xdd\x9c\xbc\x9b\x23\xe0\x31\x7a\xa3\xe4\x9a\x6b\x40\x48\x10\x69\x15\xb0\x24\x9a\x96\xf4\xa2\x32\xea\xa9\x62\x08\x12\x01\x9f\x0d\x2a\x31\xae\x33\x66\xb2\x15\xca\x70\x25\x51\x86\xeb\x9a\xf0\x01\x99\x59\x29\xf9\x78\x90\x8e\x59\xba\x32\xc9\xa5\x80\x4b\x81\xca\xc4\x99\x0f\xa7\xcd\xca\x89\x02\x2d\x8b\x07\x68\x07\x12\xb3\x02\x81\x34\xe1\x78\xca\x10\x02\x0a\x09\xdb\x6c\x8a\x27\x67\x61\xec\xa5\xc1\xb8\xc6\xd3\x45\x29\x32\xc3\xa5\x88\x46\x23\xa4\x70\x55\x80\x89\x0c\x15\x65\x51\x58\xa3\x36\x96\x50\x94\xc6\xda\x28\x2e\x96\xf1\x78\x8c\x0c\xcd\x65\x56\xae\x41\x98\xe4\x9f\x25\xa8\xa7\x1b\x28\x20\x33\x52\x21\x85\x31\x51\x11\x17\xda\x30\x91\xd9\x79\x7f\x7d\xf7\xf7\xd7\xd7\x05\x58\x52\x37\x4f\x61\x62\x70\x95\x49\xa1\x4d\x04\xd4\x39\xeb\x4b\x63\x14\xbf\x2f\x0d\xa0\x58\xa7\x99\x88\xdd\x5e\xc2\x78\x0c\x27\x34\x8e\xc7\xe3\x46\x80\x47\x2e\x72\xf9\x38\x83\x39\xa5\x71\x10\x38\x0e\x9c\x04\xb5\x3b\xd0\x92\x20\xd3\xee\xaf\xfd\x7e\x7b\xab\x4b\x7e\x9b\xc9\xf5\x46\x0a\x10\x06\x19\x22\x70\x5d\x07\x82\xb2\x28\xea\xd6\x02\x3b\xa4\xb7\x4a\x4a\xe3\xec\x55\x05\x7f\x49\xb2\x42\x6a\xd0\x06\xdd\xcd\xf4\x87\x0f\x69\x26\xe8\xa8\x32\xf5\xfc\x0e\xef\x32\xd1\x86\x19\xb0\xf6\x34\x2b\xae\x93\x15\x13\x79\x01\x4a\x53\x95\x3c\xda\x5d\xdd\x6e\xab\x9a\xb8\x91\x1b\x30\x34\x4c\xb5\x7e\x4a\x44\xbb\x58\x8e\x2c\x05\xb1\x22\x92\x40\xf2\x15\xc2\xde\xb5\xa6\x5e\x75\x49\x07\xfc\x67\x66\x6e\xcd\x27\xa8\xd8\x6e\x55\x62\xc5\x27\xb2\xb5\xa1\x1c\xda\x8e\x2f\xd0\x13\x87\x22\x8f\x24\x02\x52\x19\xa6\x96\x60\x52\x41\xb4\x91\x1b\x1b\x10\xd8\x92\x59\xc2\xb4\x15\x0e\x57\x22\xd1\xc3\xfd\xb2\x3a\xbe\xd8\x74\xc4\x31\x89\x8d\x2a\x21\xc6\x75\x8d\x89\xb8\x14\xbb\xfb\xbb\x47\x8f\x29\xa5\x7e\x4a\x7a\x72\x8e\xbd\xde\x53\xeb\x81\x25\x45\xd6\x58\x56\x83\x64\xc3\x14\x08\xd3\xb8\x11\xa6\xce\x37\x2f\x1f\x24\xcf\xa3\x49\xaa\xdb\x0d\x89\x9b\x0d\x99\x7b\x0f\x2a\x3d\x5d\xe0\xe9\xad\x95\x39\x47\xb9\x2a\xb5\x91\xeb\xeb\x07\xeb\x0c\x5e\xa6\x34\x5b\x31\xb1\x84\x98\x54\x39\x18\xc6\x8b\xb4\xfa\x04\x4f\xa9\x09\x01\x8a\x34\xc6\xf1\xf2\xd4\x35\x9e\x96\x49\xce\xf5\xc6\xee\xa4\x67\x63\xcf\x27\xae\x77\x7d\xc0\x6a\xaa\x5b\x1f\xf8\x71\xb0\xd3\xce\xfe\x27\x6a\xbb\x0d\x27\x6c\x60\xab\x93\xfe\x4e\xf5\x5c\x75\x1a\x8e\x4e\x6c\x79\xa7\xf1\xa9\x21\x82\x0e\xa7\x22\x70\xfa\xef\x7c\x8c\x3f\x6a\x29\x5e\x30\x63\xd4\x8b\x30\xb3\xb3\x3d\xb6\xb1\xa7\x59\xe5\x6f\x37\xbf\xfc\x6c\x2d\xae\x01\x89\x10\x82\x74\xeb\x92\xee\xb8\x84\xdf\x8d\x07\xbf\xe6\xba\xa7\x58\x38\x93\x36\x5e\x4f\x7f\xab\x8a\xa6\xd5\x4f\x25\x2c\x10\xea\xa9\x8d\xeb\xd6\x29\x04\x9d\x4c\xc5\x77\x90\x14\x20\x96\x66\x35\x15\xa7\xa7\x61\x35\x49\x61\x26\x9c\xeb\xcb\x44\xb0\x35\x24\xda\x30\x65\xf4\x7f\x72\xb3\x42\x8d\xa9\x70\xa0\xd5\xb4\xa1\x51\xb0\x29\x58\x06\x81\x80\xc4\xf1\xf3\x2c\xa7\x7b\x96\x73\x61\xdb\xcc\xf4\x9c\xf6\x0c\x27\x9b\x08\xdc\x98\x8f\x61\x4f\xe1\x8c\x97\x49\x61\xb8\x28\xa1\x76\x9f\x1a\xca\x36\x1c\x99\x3d\x1f\xea\xe2\x96\x8b\x43\xce\xe2\xd6\x0b\xa9\xf2\xd6\xd7\x46\x2a\xa0\x5d\x9c\x73\x7f\x23\x1b\x67\xed\xa8\xf3\xc0\xde\x68\xf0\xc8\x30\x97\x19\xa0\xe6\xb2\x3f\xdb\x46\x2d\x83\xd3\xaa\x6e\xb7\xc2\x92\x4e\x1d\xfd\xc8\x2d\xec\xa9\xff\xc3\x06\x7e\xd4\x8a\xd3\x70\x5c\x70\x91\x77\xbe\xd0\x85\xb2\xfe\x1c\xf0\x13\x1c\xad\xf5\x31\x3f\xd3\x25\x92\x43\x53\x3d\xf9\x4e\xa2\x19\x4e\x7b\x59\x14\xcf\x9d\xf9\xb2\x28\xba\xc9\xb0\xe6\x3d\xcf\xb5\x89\xbb\x75\x91\xdd\x38\x21\xda\xd0\x20\x6b\x3c\x6d\x38\x0f\x63\x80\x0e\x6c\x15\x88\x1c\xd4\x80\x31\xd1\x3b\xa6\x78\xeb\x68\x10\x10\x8d\x93\xeb\xcf\x90\xb9\xd5\xf7\x36\x1f\x2c\xe3\xdb\x26\xb8\x7b\xb8\x41\x1a\x6e\x5e\x50\x6e\x4f\x99\x8b\xf6\x2e\x4b\x08\x9b\x64\x93\x85\x54\xd7\x2c\x5b\xa1\x56\x00\x16\xc8\x4b\xba\x1b\x92\x73\x66\x58\x1a\x9f\x32\x3c\xe5\x33\x36\xa7\x65\x8d\x09\xfc\x26\x06\xf6\x74\x34\x0c\x16\xc8\xf1\x70\x92\x94\xe3\x71\x69\x13\xb8\x0b\x2d\xee\x73\xef\x7c\x94\x3d\x6c\xe3\xf9\x16\x34\x4b\xd6\xa0\x35\x5b\xc2\x76\x9b\x6d\xb7\xf1\x4b\x11\x81\x52\x52\x45\x32\xcb\x4a\xa5\x20\x8f\x9d\x3f\xca\x02\x12\xf7\x1d\xdd\xcd\x6e\xde\xff\x34\x8f\x9c\xe9\xa3\xbf\x7a\x0b\x45\xd7\x76\x28\x8d\x46\x55\x51\x47\x77\x2e\xcd\x63\x4c\xf4\x78\xac\x91\x22\x9c\x54\x76\xd3\x9a\x34\x92\xca\x26\xa8\x87\xbf\x45\xbd\x97\xc2\xbd\xf5\xb9\xe0\xc6\xc6\xf0\x10\xd6\x24\xbd\xe8\x05\x92\x5d\x00\xe3\xe6\xbc\xb0\x30\x66\xbb\x8d\x63\x6b\x13\x4d\xad\x19\xaa\xa1\xf4\xb1\x97\xfe\x2a\x1c\xee\xc8\x06\xa4\x88\xeb\x48\xc1\x3f\x4b\xae\x20\x8f\x16\x52\x45\x8e\x59\x74\xcf\x45\x6e\x81\x17\x51\x01\xd6\xd4\xdd\xe6\x13\x46\x67\x73\x52\xd2\xd9\xbc\x8d\x92\x19\x9d\x4c\xb3\xef\x64\x2f\x80\x86\x80\x99\x9d\x9e\x62\x17\x22\xbb\xa1\x59\x36\xdf\x0f\x98\xde\x29\xf0\x78\xcc\x92\x4d\xa9\x57\x87\x27\xb4\xd1\xd3\x53\xdb\xe8\x89\xc9\xaf\xb2\xf6\xee\x82\xc7\xe3\xf2\x39\xac\x3d\xf5\x33\x59\xeb\x54\x8a\x17\x5d\x98\x2f\xe8\x97\x79\x7b\x72\x1f\xf4\x67\xc5\x7c\x8f\xda\x07\x66\x6b\xd4\x06\x3b\xd8\x4a\x84\x77\xdc\xf9\x2c\x9b\x87\xfd\xbd\xbd\xdd\xb0\x25\xb4\x78\xf4\x89\x36\x58\xb4\x98\x93\x75\x87\x95\xef\x65\xfe\x44\xee\xa9\x9c\xca\x84\xe5\xb9\xf3\x5c\x9b\x3b\x41\x80\x42\x19\x79\xa0\x17\xd5\xa1\x53\xff\x40\x18\x29\xc9\x3d\x59\x93\x27\x8b\xd6\xdb\xfc\xe1\x97\x5a\x51\x79\x08\x92\x6a\x0b\x49\x7b\xf8\xbd\x91\x47\xcf\x4f\xf6\xe0\xf3\xde\x91\xea\x9c\xd2\xf2\x89\x84\x34\xd1\x42\x96\x22\xbf\x23\x72\xc7\x01\x97\x7d\xdc\xad\xe7\x68\x85\xc9\x23\x5d\x5a\xad\x6f\xe9\xd2\xa3\xcf\xc5\x31\x75\x9f\x8e\xa8\xfb\xe4\xd4\x5d\x90\x5b\xf2\x88\x2d\xa4\x22\x16\x0b\xec\x85\x70\x0f\xf6\xdc\xcc\x79\x8c\x1d\x06\xfa\x12\xcd\x8b\x8f\xdc\xd2\x4d\xbb\xd0\x26\xe9\x85\x41\x12\x63\x22\xf6\x3e\xed\x23\x79\x9f\x51\x2b\x45\xd5\x76\x3b\xdc\xcd\x83\xc0\xae\xad\x15\x0e\x86\x5a\x83\x8f\x20\x7f\x5c\xa9\x1d\x7c\x1d\x66\x10\x08\x73\x7e\x04\x63\xe3\xe8\x60\xb9\x0e\x32\x1d\x8c\xcc\x66\x50\x50\x1d\x81\x7a\x2d\x56\x11\x1d\xa2\x12\x5d\x44\x16\x87\x23\x72\xc3\xe7\xb7\x04\x66\x59\xdf\x11\x85\xc9\x00\x47\xda\xdf\xad\x49\x76\xd4\x3b\x64\x96\xa0\x18\x71\x0a\xf8\xb2\x94\x2f\x9e\x10\xe0\x9e\x99\x7e\x60\x86\xf5\x51\x69\x00\x58\x3d\x2b\xa2\xf8\xb6\x57\xeb\x59\x63\xdb\xa8\x5d\xd5\x7b\x69\xf8\x9e\x65\x9f\x40\xe4\xb7\xae\x97\xe0\xb3\x70\x92\x24\xbf\x5e\xa8\x05\x4b\xde\x9d\xb1\x0d\x3f\xbb\xbd\x7d\x62\xf2\x4c\x97\xfc\xec\xe1\xfc\x4c\x95\x62\x54\xa9\xfa\x6e\x6a\xe8\x0d\xaa\xe2\x2b\x29\x8c\xf5\xd3\x77\x4f\x1b\x88\xd3\xd8\x16\xea\x3c\x73\x25\xd2\x99\xd5\x36\x26\x6f\x61\x01\x0a\x54\xea\x0f\x5b\x52\x48\x3f\x9a\xac\x14\x2c\xc8\x95\x94\x9f\x38\xa4\xad\x6b\x66\xee\xef\x9a\x18\x3c\x0d\x99\xaa\x5a\x83\x59\xc9\x3c\x05\xc2\xd4\x52\xa7\xa2\x9e\x5a\x47\x08\x79\x64\xc7\x90\x1a\x13\x46\x7d\x6d\xb8\x00\xeb\x15\x92\x84\xf9\xf1\x9b\x5f\x6e\xde\xc5\x64\x05\x2c\x07\xa5\x53\x43\xec\x31\x48\x79\x8d\x49\xd9\xcc\x60\x89\x71\xad\x85\xa9\xcf\x45\xa1\x91\x10\x00\xc1\x78\x8c\xb2\x21\x16\xc0\x84\x39\x24\x5a\xea\x0b\xfa\xcd\x64\x72\x00\x12\x5c\xb6\xbf\xd2\xbb\x57\x8c\x17\x90\x47\x46\x46\x76\x37\x22\x6b\xc4\x68\x54\x41\x7d\x47\x56\x34\x4b\x32\x99\x5b\x6a\xfb\x4f\xfa\xed\x64\x12\x3c\xb4\x6b\x91\x7c\x84\xcc\xa0\x2a\x70\x2b\x88\xa3\x5c\xd5\xb8\xde\xa3\xf4\xcd\x94\x2c\x1c\x8c\x36\xf2\x33\xca\x5b\xb9\xf8\x73\xe4\x2a\x29\xf7\x72\xf1\x3d\xb9\x0e\x9e\x9c\x63\x9c\xd2\x3b\xc2\x31\x39\xa6\x0a\xf3\xaa\x94\xb5\xab\x44\x77\x1c\xd8\x23\xd2\x00\x20\x9f\xed\xb7\xbd\xe6\x8f\x74\x7d\xc1\xf8\x52\xa5\xae\x4b\xe4\x2a\xad\x41\x85\x7d\x58\x97\x1e\xc0\x09\x69\x24\x75\x1a\xdd\xed\x69\x12\x1f\xa0\x8d\x3b\x07\x96\x47\xc0\xbc\x4f\x7a\x0d\xe4\x6e\x7a\x31\xae\xee\x0c\xa8\xe7\x8b\xf2\xfd\x2c\x23\xf0\x00\xd0\x2f\x18\x3d\x72\xb3\x8a\x74\x9f\xdf\x01\x49\x77\x67\xc5\xd8\x63\xf0\xaa\x26\x22\x00\x0c\xda\xfd\xa2\xd4\x37\x2b\x2e\x4f\x26\x69\xfb\x95\x88\x44\xaf\xe4\xe3\x6b\x69\x0f\x12\x1d\xfc\xd1\xd1\x9f\xa7\xfd\x01\x22\x12\x2b\xde\x1b\xb6\x04\x17\xdd\x76\xfe\x1c\x4e\xeb\x0f\xb9\xa3\xc8\xe9\x1f\xbf\xd3\x1b\x26\xa2\xac\x60\x5a\xd3\x58\x97\xfc\x85\x57\xf3\x45\x21\x99\x43\x98\x17\xaf\xfd\x8f\x24\x49\xbe\x3b\xb3\xb4\x17\x7f\x9c\xf6\x05\x18\x8f\x5b\xf1\x6d\xa1\xe1\xbd\x63\x28\x7a\xe8\x12\x5e\xf2\x81\x4e\x03\x3d\x8e\x37\x08\x87\x93\x12\x59\x1a\x50\x96\x02\x13\xdd\x15\x25\xf4\x62\x91\x70\x21\xfc\x08\xe5\xd8\x47\x1a\x46\xa5\xaf\x85\x43\xf0\x47\x2e\x96\x4f\x87\x96\x18\x8f\x11\xa3\x37\xe8\x06\x59\xe4\x8c\x89\x3f\x1d\x36\xf2\xe3\xe0\x69\x65\xf0\xb4\x61\x5f\x49\x59\x59\x2c\xd4\xc8\x68\x79\x59\xee\xc1\x7e\x37\x1c\xe3\xf4\xe4\x9c\x14\x43\xc0\xb7\x47\xba\x29\xef\x0b\x9e\xf9\xfa\xc0\xc6\xac\xcb\x3b\x5b\xae\x8c\xaa\xac\xbe\xdb\x8b\xee\x1b\x66\x56\x16\xb5\x4e\x45\xd2\x26\x2a\x9a\x8d\xc7\x8d\x88\x87\xba\xa7\xae\xec\x08\xf0\xec\x50\xe2\x71\x5b\x3e\xaa\x56\xf5\x1d\x79\xa4\x95\xe5\x9e\x1a\xe2\x90\x06\x23\x72\xe3\x5a\x7e\xc2\x75\x6e\x00\x77\xe0\x77\x61\xc1\x2f\xe0\xc7\xc4\x12\xce\x16\x73\x0a\xb3\xc5\xbc\x59\xe6\x96\x3e\x23\x7f\x1d\x49\x51\xbd\x2c\xb4\xd8\xcd\x42\x8f\x98\xac\x7d\x4e\x41\xfd\x5c\xb4\x3c\x96\x8b\x6e\x7d\x2e\x5a\xd4\x18\x87\x14\x14\x10\x46\xe7\xb5\x9d\x1f\xdd\xd3\x8b\xea\xbe\xe7\x48\x6b\x27\xcb\x5e\xe5\x77\x1f\x12\xc0\x43\x88\x8b\x23\xfa\xd0\x21\xa3\xb8\x8b\xd6\x96\xdc\x97\x6c\x3a\x9e\xee\x84\x8c\x91\xeb\x88\xee\x26\x97\x75\xe0\xbd\x68\x43\x72\x27\x9f\x05\xc8\x4f\x3d\xf9\x8e\x9e\x5e\x17\xd0\xe2\x8b\x4e\x10\xff\x3d\x9c\x60\xb2\x53\x79\xee\xd2\xc5\x64\x81\xeb\xfd\x18\xb7\x47\x36\xcc\x2b\xa3\x9b\x80\x8a\x5d\x8f\x6f\xd0\xa3\x3c\x78\x6d\xe0\x08\xd5\x91\x8b\x03\x1b\xc8\x15\x26\xaa\x09\xd9\x94\x4e\x06\x0c\x15\x55\xb3\xc9\xbc\xde\xeb\xe9\x07\x64\xde\x13\xcb\xb7\x98\xd4\xc1\xc6\x93\xc2\xb5\xb3\x5e\xf8\xe0\xf7\x53\x95\xae\xa3\x64\x70\xb5\xf1\xe9\x30\xd6\x8d\x54\xbe\x38\x0c\x5f\x9b\x88\xaf\x63\x97\x2f\xf7\xbe\x87\xcf\xe1\xea\xa8\x17\x0a\x7d\x97\x2c\x70\xa5\xa6\x69\x3e\x35\xfc\xbe\x60\x92\xd0\x55\x0b\xa4\x8d\x79\x2e\x26\x36\xfa\xf6\x06\xe8\x80\x6a\x36\x99\x63\x9c\x9a\x7e\x94\xfd\x59\xe6\x60\x6b\xaf\x4b\x34\x5c\xda\xfc\x0e\xfe\x83\x71\xb2\xa3\x62\x0d\xc5\x7a\x07\x74\x37\xb4\x76\x44\x1f\x1e\xd2\xb5\x6b\x09\x1a\x7f\xc3\x21\xda\x06\x24\x12\x03\x01\x76\x6e\x00\xc4\x4e\x6b\xb0\xbb\xfc\x81\xcb\x41\xdb\x11\xa7\xfe\xb2\x87\x8b\xdc\x1b\xf7\xf7\x2c\xe3\x39\x7c\x79\xa5\x90\x41\x7e\xf3\x4a\xdd\xc4\x2f\x2f\xd0\x16\x48\xfb\xb6\x1c\xee\xf4\x7e\x01\xee\x6e\x32\x2d\x89\xdf\xc9\x7a\x34\x42\xfe\x28\x0f\x04\xdb\xbf\x79\x18\xfa\xc2\xc1\xcb\x97\x20\xcd\xe5\x68\x84\x4c\x23\x29\xd8\x88\x16\xda\xd7\x61\xbb\xc7\xe3\xa1\xf7\x85\xc8\x87\x2c\x46\xa5\x17\x95\x41\x43\xa5\x89\xc0\x35\xae\xfd\xa1\x0f\x4a\x0f\xe4\x6d\x6f\x1a\x06\x32\x1e\xbb\x74\xb8\xb4\x92\xa5\xbb\xd1\x64\xa0\x7f\xcd\x8c\x51\x5d\x49\xff\xbb\x17\x3b\x4a\x8a\x0c\xae\x6d\x6a\xfd\x3f\x59\xab\xd7\x89\xb0\xc9\x39\xdc\x45\xfd\xcf\x17\x3c\x78\x43\xf5\x85\xf5\x07\x9d\x89\x13\x18\x4c\xff\xf5\xfe\xc4\x61\x3c\xef\x3a\x0c\x91\xa5\xe6\x62\xe9\xa6\xba\x16\xea\x27\x78\x8a\x2c\x8a\xb7\x55\x87\xb0\x58\xde\xb9\x63\xbd\x51\x72\xf3\xbf\xa4\x77\xff\x66\xee\xb8\x0d\xfc\x25\xdd\xaf\xd8\xe8\xd8\x7d\xdd\x78\x2c\x9e\x7f\x65\xf7\x3c\x3b\xd9\x45\x5a\x43\xe9\xd6\x50\xed\x55\xdf\x8a\xe9\x2b\x9b\x3b\x43\x30\x83\xe6\x98\x23\xf8\x52\x28\x83\xc4\x25\x5c\x1b\x75\x92\x4c\x0a\xc3\xb8\xb0\x1c\x6a\x23\x97\xcb\x02\x5a\x86\xc1\x74\x2f\x95\x62\x4f\x09\xd7\xee\x5f\x64\xf0\xa5\x49\xcd\x90\xa1\x49\xf4\xa6\xe0\x06\xc5\x51\x17\x68\xc0\x93\x6c\xb7\x5d\x77\x4f\x84\x07\x18\xd3\xae\x99\x15\x1a\xbf\x67\xb3\x0f\xe2\x83\xfa\xa0\xe7\x67\x4b\x97\xdf\xe5\x09\xf5\x6d\x09\xa4\x0f\xa9\xb2\xdd\xea\x9e\x12\x5e\x70\xd7\x25\xf4\xe1\xb3\x56\xb0\x96\x0f\xff\x8e\xaa\x78\xc1\xfb\xaa\xb0\x3c\xff\x37\xd4\x83\xe5\x79\x5f\x89\x95\x59\x17\xbb\x4e\x6a\xd1\x58\x28\x8e\xd1\xaf\x79\x6c\x8b\xb8\x5d\x29\x95\x0e\xce\xe8\x0e\x2e\xea\xa1\xf3\x06\xaa\xf5\xaf\xf0\x46\x6f\xdb\xae\xcb\xe1\xcb\x3f\x3b\xd0\x22\x52\xff\x6d\x08\x49\x6d\x6e\x0f\x30\xd3\xd6\x7f\xbb\xd0\xd3\x97\x6b\x2d\xf2\xb4\x92\x59\xb2\x00\xc7\xfc\x30\x85\xda\x5d\x30\xf6\x91\xc2\xb1\xc6\x4f\x33\x3c\x68\x1a\xb5\x6c\x5d\xf3\xa8\xc7\x18\x0f\x5e\x3c\x8c\xbe\xf7\x4d\x52\xaf\x6e\x70\x9f\x67\x97\xc2\x67\xf1\xd4\xb5\xd7\x8f\x56\xc0\xfd\x97\x3e\x6f\x61\x79\xfd\x79\x83\xe2\xff\x8a\x4f\xa1\x7b\xca\x45\xe1\x54\xb5\x2e\x25\xac\x23\x11\x6f\xee\xbe\x64\xad\xbd\x9b\x8f\xbb\x06\xa7\x55\xdd\xd9\xdc\x57\xf5\x83\x2a\xa0\x29\x36\x63\x52\xd5\x8d\xc5\x1d\x51\x30\x79\x33\x4c\xa1\xbe\xf2\xef\xce\x92\x24\x79\xb6\xd9\x7d\x95\x7b\xa0\xe5\xdc\xad\x33\x58\x85\x34\xec\x07\xfb\xf0\x0f\x26\xbb\x57\x47\x52\x1b\x7a\x37\xaa\x0e\xd9\x55\x49\x23\x33\x59\x9c\xc6\x67\x67\xf1\xe9\x5e\x57\x59\x6a\x53\x9f\xb1\x0d\xbf\xeb\x5f\xce\x57\xb5\x33\xe8\xfb\xb7\xaf\x6f\x80\xa9\x6c\xf5\x86\x29\xb6\xd6\x68\x77\xb2\x76\x83\xb8\x83\x73\xfe\x91\x5c\xd5\x71\x72\x8f\xfd\x6a\x5c\xff\x83\xc9\xde\x4b\xc3\xc1\x35\x8a\x7f\x5a\xf7\x4c\xc3\x39\xce\xaf\x5c\x77\x20\xfe\xf1\xfa\x5d\x4c\xec\x6c\x47\xec\x8c\x43\x86\xeb\xbc\x91\x7a\x77\xa1\x67\xf4\x44\x0f\x2c\xe5\xdb\x0f\xee\x4d\xa1\x87\xa6\x3b\x0b\xfd\x20\x1f\x45\x21\x59\xfe\xdb\x17\xeb\xba\x22\xba\xe9\xaa\x1f\x57\x51\x90\x93\x89\x7f\x91\x28\x9b\x6b\xc7\xe4\xfd\xdb\xd7\x49\xa6\x80\x19\xf0\xcf\x39\xdf\xbf\x7d\x8d\x34\x6e\xba\x80\x5d\x0b\xc6\x51\x34\xcd\x37\x14\xb3\x18\x4f\x87\xc7\x95\x6d\x36\x20\xf2\xab\x15\x2f\x72\xc4\x31\xe1\xee\xb2\x81\x4a\xc2\x93\x3c\x68\x06\x84\x27\x59\xc1\xb3\x4f\x08\x93\xde\xe2\x0a\x1e\xe4\xa7\xde\xe2\xb2\x07\x4b\x58\x01\xca\xa0\xf8\x43\xf9\xe7\xaf\xcf\x27\x1f\xca\x6f\xbf\xfe\xcb\x2b\xfb\xbf\xe7\xdf\x7f\x28\xbf\xbd\x7e\xf5\xf2\x43\xf9\xed\xf7\xaf\xae\x3e\x94\xdf\x9e\xdb\xdf\xdf\x5c\xbf\xb2\xdf\xbf\x7e\x79\x7e\xe2\x1b\x10\x3b\x26\x76\x16\xd9\xb3\xef\xe0\xbd\xc5\x31\x1b\x03\x05\xd7\xb1\x95\x54\xfa\xce\x6d\x78\x45\xe1\x6c\xc9\xed\xb9\x69\x0f\x51\xed\x1a\xc1\x84\xd1\xe6\x96\x4a\x71\x56\xf0\x7f\x39\x14\xc7\x9a\x4b\x0d\x4e\x79\xc2\x45\x56\x94\x39\x68\x14\x5f\xc6\xf8\xf2\x6e\x54\xf1\x7a\x3c\xaa\x58\x7d\x97\xba\xdf\x97\xee\x77\xd7\x68\x74\xcc\xde\xc9\x4f\x20\x10\x9e\x86\xcb\x11\x99\xb0\xd2\xac\xa4\xe2\xff\x72\xa7\x89\xde\x7d\x0f\x4c\x81\x8a\x46\x55\x69\x51\x99\x9c\x0d\x7b\x6d\xf3\xed\x16\xed\x7d\xa3\xfb\x0d\x38\xef\x21\x59\x7b\x0f\xa4\xc8\x5a\xe6\x90\xc6\x99\xb4\xc1\x2c\x63\xd9\x0a\xd2\x58\xc8\x17\xee\x57\x4c\x32\x05\x39\x08\xc3\x59\xa1\xd3\x58\xb3\x35\xbc\x90\x8a\x2f\xb9\xe8\xba\x6d\x92\x28\xc8\xb9\x82\xcc\xa4\xf1\x42\x16\x85\x7c\x8c\xeb\xa9\x38\x71\xc9\x74\x3c\x46\x99\x73\xa1\xdd\x96\x9e\x68\xdb\xac\xc5\xe0\x7e\x89\x93\x0c\x93\x15\x2d\x42\x64\xb3\x99\x02\x0d\x95\x6a\xdf\x53\xac\x7a\x66\xde\x57\xb3\x8f\x8b\xfd\x0a\x45\xe2\x8a\x9c\xe0\x81\xcb\xe0\x18\x95\xbb\x2f\x29\x9a\xab\x27\x12\xee\x51\x62\x58\x6f\xcc\x53\xe4\x69\xe2\xba\x86\x42\x83\x2d\x13\x74\x00\xfb\x45\x72\x5f\xc8\x7b\x84\x77\x65\x31\xf0\xd9\x9c\x59\xf4\x61\x45\xdd\x1b\xd8\x14\x8c\x5b\xf1\x5a\x26\xbe\x43\x59\xef\xfe\xbd\xe7\xe1\xce\x3f\xfa\x17\x99\x76\x1f\x15\xd5\xa0\x35\x97\xe2\xc6\x48\xc5\x96\x60\xed\xf5\x93\x81\x35\x8a\x8d\x25\x6f\x8c\xd5\x26\x46\x1a\xc7\x97\xce\xd9\x7c\x17\x16\xc5\xb7\xb7\xe6\x93\x27\x4a\xd5\xee\x82\x9e\xa6\x77\xa6\x70\xfb\x18\xdb\x50\x75\x1a\xd3\x98\x00\xcd\xc1\x5a\xef\xfd\xdb\x9f\xda\x4b\x1b\xb4\xd3\xda\xc5\x44\x50\x08\xd0\x70\x1a\x63\x22\xe9\x64\x2a\xbf\x13\xe1\x2d\x8a\x3c\x3d\x6d\x5e\xb2\x52\x31\x93\xf3\xc4\x28\xbe\xf6\x46\xd5\x09\x17\x39\x7c\xfe\x65\x81\x5c\xc9\xd3\xb6\x02\x75\xa2\xcb\x7b\xef\x4b\xc8\x34\x6c\x48\x7b\xcb\x33\xbc\x4d\x1e\xaa\x74\x03\x66\x4f\x2b\x9f\x5f\x5c\x10\xf8\xd3\xc4\x1d\x0e\x8f\x2d\x7e\x60\x06\xa6\xee\xa1\xeb\x3b\xbe\x06\xe4\x9e\x3b\xb9\x5f\xf8\x14\xbe\xfa\xfa\x9b\xaf\xfe\x3c\xb1\xff\x9d\xc3\x9f\x42\xcc\x8d\xe1\xf3\x86\x2b\xd0\x34\x3e\x15\x89\x91\xef\xdf\x5d\xdd\x78\x19\x7b\xe1\xd4\x9b\xc4\xa5\xe2\xda\x5d\x2a\x4d\x47\x95\xac\xa7\x16\xdc\xd0\xb3\xbb\xbd\xbc\x01\x05\x18\x38\xb0\x0f\x87\xf9\x4d\xa3\x20\xc1\xbb\x55\x49\xa2\xc9\x79\xf4\x37\x26\xa2\xf3\xbf\xfc\xff\x49\x34\x99\xa4\xee\xbf\xe8\xfd\xbb\xab\x69\xe4\x97\x9b\xee\xad\xd7\xc6\xb3\xc1\x62\xa1\xdf\xd3\xbc\x2c\x6a\x10\x9d\x7b\xe9\x8f\xd5\xce\xff\x71\x00\x01\x1e\x8f\x8d\x7f\xd1\x03\x62\xcf\x35\x00\x5b\xb7\x39\x3d\x30\xa2\x66\x30\xc7\x5d\xcb\x28\xf9\x28\xb9\x40\xf1\x38\xc6\xf5\xf4\x0f\x7f\x38\x3b\xfb\x7f\x91\x96\xa5\xca\xe0\xef\x6c\xb3\xe1\x62\xf9\xfe\xed\x6b\x5a\xf0\x7b\x5d\xf2\x64\xcd\x45\xf2\x51\x27\x6b\xb6\xf9\xef\x00\x00\x00\xff\xff\xd2\xeb\xb1\xfb\x19\x31\x00\x00")
-func initScriptsStatJsBytes() ([]byte, error) {
+func initPublicAssetsLibsuiMinJsBytes() ([]byte, error) {
return bindataRead(
- _initScriptsStatJs,
- "init/scripts/stat.js",
+ _initPublicAssetsLibsuiMinJs,
+ "init/public/assets/libsui.min.js",
)
}
-func initScriptsStatJs() (*asset, error) {
- bytes, err := initScriptsStatJsBytes()
+func initPublicAssetsLibsuiMinJs() (*asset, error) {
+ bytes, err := initPublicAssetsLibsuiMinJsBytes()
if err != nil {
return nil, err
}
- info := bindataFileInfo{name: "init/scripts/stat.js", size: 1305, mode: os.FileMode(420), modTime: time.Unix(1730855738, 0)}
+ info := bindataFileInfo{name: "init/public/assets/libsui.min.js", size: 12569, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
-var _initServicesFooJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\x2b\xcd\x4b\x2e\xc9\xcc\xcf\x53\x70\x4a\x2c\xd2\x48\x2c\x4a\x2f\xd6\x54\xa8\xe6\x52\x50\x48\xce\xcf\x2b\xce\xcf\x49\xd5\xcb\xc9\x4f\x87\x88\x5a\xa3\x09\x2a\xbd\xd8\x3f\xfb\x69\xeb\xd2\x27\xbb\x26\x3e\x6d\xdf\xfb\x6c\xea\x06\x25\xb0\x0a\x7d\x7d\x85\x92\xfc\x94\x7c\x85\xa7\x4b\x5a\x9e\x4f\x68\x7b\x36\x75\xc3\xb3\xde\x75\x2f\x1b\x76\xbf\xd8\x37\x91\x4b\x41\xa1\x28\xb5\xa4\xb4\x28\x4f\x01\x64\x9c\x35\x57\x2d\x17\x20\x00\x00\xff\xff\xad\xf9\x21\xcd\x7a\x00\x00\x00")
+var _initPublicAssetsLibsuiMinJsMap = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\x6d\x73\xd3\xc8\xd2\xe8\xf7\xf3\x2b\x66\x53\x29\xca\x01\x63\x27\xcb\xb2\x2c\xce\x86\x9c\x91\xac\x18\x93\x84\x60\x9c\x90\x03\x98\x0b\x8a\x3d\x89\x95\xd8\x92\x91\x64\x93\x00\xf9\xef\xb7\xba\x7b\x5e\x25\x39\x09\xbb\xec\x79\xee\xad\x7a\xb6\xb6\x1c\x59\x9a\xe9\xe9\xee\xe9\xf7\x69\x99\x6f\xff\x62\x6c\x65\x21\xd2\x2c\x4a\xe2\x95\x16\x7b\x54\x87\xef\x59\x32\x4f\x87\x22\x5b\x69\xb1\xf7\x2b\x93\xe8\x24\x9b\x47\x8d\x3c\x5b\xf9\x60\x3f\xf3\x93\x38\x17\x71\x8e\x43\x4e\xe7\xf1\x30\x8f\x92\x98\xad\xae\xd6\x32\x31\x11\xc3\x3c\x49\xd7\xd8\xb7\x41\xcc\xd8\x44\xe4\x4c\x4c\xa6\x2d\xf6\xfc\x70\x7f\x2f\x98\x88\xa9\x88\x73\xf6\x9d\xc5\xf3\xc9\x84\x6d\xe1\x9f\x4d\x18\x16\x9d\xb2\x5a\x7e\x35\x13\xc9\x29\x53\x00\xd8\xd6\xd6\x16\x1b\xac\x64\x79\x1a\xc5\x67\x83\x15\x09\x8f\x01\x34\xb6\xc5\x46\xc9\x70\x0e\xb0\x1a\x9f\xe7\x22\xbd\xea\xcb\x39\x66\x75\x84\x7a\x3d\x88\x15\x70\x0d\x35\x8a\xb3\x3c\x8c\x87\xb0\x92\x85\x52\x01\xba\x1a\x5d\x84\x22\x26\x53\x3d\x72\x98\xc4\x59\xce\x86\x31\xdb\x82\x49\x8d\x33\x91\xf3\x3c\x4f\xa3\x93\x79\x2e\x6a\x83\x95\xac\x35\x8c\x07\x2b\x84\x06\xcd\x1d\xc6\xec\xde\x3d\x18\xff\x0b\x90\x35\x58\x81\x6f\x92\xe4\x2f\x51\x3c\x4a\xbe\xbc\x1f\xc6\x1f\x24\xd1\x8a\xa1\x16\xd9\x7a\xc1\x64\x3a\x4b\x62\xe0\xe2\x16\x8b\xc5\x17\x6b\x2e\x62\xb7\xa9\x46\xa7\x22\x9f\xa7\x31\x0e\xf9\xf8\x31\x9b\x47\x1f\xf5\x44\x18\x57\x37\x70\xd4\x94\x6b\x49\xab\x99\x4a\x9b\x83\xe4\xeb\x1d\x2e\xc0\xfa\x98\x26\x09\x02\x6c\x31\xc9\xc9\x3a\x8b\xc3\xa9\x68\x31\xda\x37\x89\xbe\x84\x08\x7c\x1a\x4e\x92\x4c\x64\x79\xed\xd3\xfb\x6c\x30\x18\x0c\x5a\xc3\x78\x6b\xf5\x1b\x4c\xb9\xfe\xf0\x69\x6d\xc9\x72\x59\x1e\xe6\xa2\x66\x30\x26\xa0\xf9\x38\xca\x1a\xe3\x30\x1e\x4d\x44\x9a\xb1\x2d\x43\x51\xe3\x4b\x98\x0f\xc7\xec\xfb\x77\xf6\xed\x7a\x53\x8f\xec\x0b\x60\x59\x98\x5d\xc5\x43\xa6\xe1\xd7\x2e\xc4\x55\x9d\x2d\xc2\xc9\x5c\xd4\x59\x1e\xa6\x67\x22\x2f\x6c\xb0\x5c\x80\x6d\xb9\xeb\xbd\xbf\x10\x57\x1f\x24\xe7\x68\x1e\x8c\xa0\x8b\xef\xdf\x2d\x5c\x80\x41\x96\x14\x28\x70\x66\xf3\xf5\x02\xb7\xed\x3c\x72\xe1\xe0\xe4\x9c\x6d\x99\x27\x6a\xf1\x96\xfc\x5b\x37\x0f\xb2\x3c\x99\xbd\x4a\x93\x59\x78\x16\x02\xc0\x96\x45\xf4\x9a\x0d\x40\x81\x68\x64\x05\x09\x86\xe5\x1e\xce\x0c\x84\xc1\x4a\x9d\x0d\x56\xf2\x74\x2e\x8c\x60\xa3\xe0\xe8\x45\xaf\xf5\xdd\xf0\x4b\x18\x69\xde\xd5\x24\x7f\x15\x01\x66\x32\x11\x16\x65\x7d\x17\x57\xcd\x4a\xb3\xc8\xb6\xc2\xb2\xa8\x67\x65\x2c\xd7\x24\x2b\x09\x53\x03\xa2\xc5\x4e\xc3\x49\x26\xf4\xe2\xb0\x1d\xa5\xa5\x1d\xd6\x90\xd8\xea\x09\xd2\x10\xc0\x7f\x60\xd6\x66\x61\x4a\x6a\xe8\x6e\x76\x83\xee\x4b\x75\xd8\xae\x10\x78\x12\x74\x83\x84\x02\x44\xf6\xf0\x8e\x18\x34\x9b\xac\x1d\x65\x33\x94\xf4\x7c\x2c\x88\xb9\x6c\x38\x0e\xe3\x33\xc1\x86\xf3\x2c\x4f\xa6\x4c\x2c\x00\x6e\x9e\x28\x54\x35\xa2\x2e\xff\x69\x18\x99\x13\x1f\x67\x06\x70\x47\x71\xb7\x45\x40\x61\xfb\x2d\xcc\x46\x22\x0f\xa3\x49\x8b\x7d\x63\x17\xe2\xaa\xc5\x8c\x1e\xb5\x5c\x75\x6a\x15\xd8\x63\x8b\x8b\x61\x03\x21\xd8\x18\x49\x8a\x68\x7d\xc4\xcb\x35\x4f\x4b\x0c\x04\xec\x7f\x66\x59\x67\x54\xd5\x0e\xea\xa4\xa3\xea\x9a\xb7\xc0\xf6\x5f\xc0\xd6\x7f\xff\xae\xf4\xb0\x68\xc4\xd9\x2f\xcb\x15\xd2\xb5\x90\x1a\x3d\xc5\xd0\x0b\x06\x33\x01\xa9\xd6\x60\x85\x3d\x00\xe6\x6c\xda\xcf\x17\x55\x3e\xe3\x62\xcd\x19\x73\x9e\x25\x4b\x5c\x0b\x3c\x79\x18\xe6\x79\xfa\xd0\x59\xc1\x15\x7b\xcb\xe4\xc0\x78\x0b\xf7\x3c\xbd\x2a\x4b\x18\x7b\xd1\x3f\x78\x09\x92\x9b\x89\xda\xc2\x6c\xcb\x35\x1b\xa2\x80\xd5\x44\x85\x54\xda\xe4\x6b\x06\xc8\x3f\x72\xc4\x62\x53\xed\x9a\xde\x95\xbd\x28\x73\xb7\xa5\x60\x6f\x71\x2b\xc1\xc4\x5d\x6f\xfe\xcc\xad\x42\xb0\x66\xaf\xec\x15\x81\x95\x99\x64\x75\xa8\x40\xaa\xb1\xa7\x49\xca\x6a\xa0\xed\x11\xdb\x62\xeb\x9b\x2c\x62\x7f\xd2\x84\xc6\x44\xc4\x67\xf9\x78\x93\x45\x0f\x1e\x94\x4c\x35\x8c\x00\x67\x03\x03\xdf\x47\x1f\x1c\x6d\x87\x9b\x0d\x70\x78\x8d\x2c\x0f\xd3\x3c\x3b\x8e\xf2\x71\x4d\x4b\xcb\x9a\xc3\x68\x23\x4e\x66\x56\x2a\x66\x93\x70\x28\xcc\x94\x3a\x86\x13\xb6\x45\xfe\x4b\x12\x54\x29\x3f\x4b\x64\xa8\x42\x8e\x50\x8b\x81\xc9\xef\x2f\x3e\xb0\x2d\x5b\x9e\x10\x75\xb4\x09\x36\x8e\x4b\x85\xab\x00\xc8\x11\x32\x4b\xc2\x34\xa5\x79\x14\xcf\x85\xed\x8e\xcc\xa5\x05\xc6\x20\x71\xb3\xc4\x1a\x39\x59\x66\x6b\x96\xc6\x51\x96\xe9\x41\x43\x87\xac\x37\xf1\x47\x96\x27\xa9\x90\x56\x56\x85\x35\x49\x2a\x4c\xd4\x86\xa3\x94\xf8\x9b\x51\xc6\xb6\xd9\xb0\xc0\xd8\x5b\x9e\x87\x6d\x3b\x70\x0b\xe1\x52\x8b\xb4\x09\xa6\x93\x68\x7c\xfc\x98\x89\xc9\xa9\x8c\x69\xe4\x93\x66\x93\xfd\x3b\xcf\x1e\x46\x67\x71\x92\x0a\xbd\xd2\xaa\x24\x85\xa0\xf7\x20\xd8\xae\x69\x12\xd7\x6c\xc5\x3e\x8d\xe2\x91\xa3\xd8\x85\x4c\xa0\x62\x85\x42\x94\x4a\xd0\x09\x37\x82\x8f\x40\x8b\x41\xbd\xbd\x28\x46\xff\x37\xaf\x2a\x97\xb0\xc0\xde\x9c\x33\x94\xc0\x73\x4c\x55\xfe\xc6\x0a\x7c\x32\xb9\x69\x11\x31\x8d\x5c\x8b\x08\x6a\x5e\x67\xa3\x30\x0f\x0b\xb6\x71\x99\xa3\xa6\x09\xdf\xb4\x4f\x86\xa9\xc6\xbb\xda\x78\x2d\x75\xb0\x0e\x46\xa9\x88\x47\x18\xf2\x56\xe1\x54\x67\xc9\xcc\x89\x94\x2a\xb6\x95\xd0\x4d\xb5\xdc\xbc\x46\x80\x72\x6b\x35\x80\x4d\x87\x7d\x69\x23\xb8\x14\x43\x9b\xf8\x1b\xd5\x10\x71\xff\xa8\x22\x4c\xfc\x46\xd3\x76\xc5\x55\x56\x47\xe3\x47\x57\x32\x30\x66\x40\x7f\x5d\x85\xa4\x12\x79\xc2\x13\xd9\xa5\x3d\x4e\x45\x34\xef\xa6\xa9\x6e\x96\xa0\x96\x6c\x9c\x26\x69\x10\x0e\xc7\xb5\xea\x80\x43\xbb\x7e\x30\x41\x1a\x78\xd1\x30\x03\x30\xe3\xd0\xb5\xa5\x82\xdb\x98\x70\xb0\x2d\x66\xdb\x30\xbd\xc5\x8a\xda\x9f\x82\x04\x00\xbb\x05\x09\xc7\x28\x03\x53\x08\xe2\xbd\x7b\x12\xb4\x4c\x71\x1d\xbb\x5e\xf2\x17\x36\x40\x3b\xfc\x28\x7a\x8a\xa5\x7e\x82\x88\x99\x8a\x2c\x0b\xcf\x80\x1c\xd1\x50\xd7\xdf\xbf\x33\xfc\x18\xac\xf0\x98\x89\x34\x4d\x52\x96\x0c\x87\xf3\x34\x15\x23\xc7\xb5\x11\x8c\x64\x22\x1a\x38\xa8\xf6\xe9\x7d\xff\xa8\xfb\x81\xa1\x76\xb0\xe7\x32\x31\x0b\xe0\x51\x8b\xad\x7e\x93\xd0\xaf\xd9\x27\x9d\x2b\x56\xf9\x9d\x6b\x67\x73\xf0\x9b\xc9\xfa\xe8\x59\x85\xd8\x5a\xc1\x35\x48\xaa\x4c\x1f\x5a\x24\xb6\x3a\x76\xc3\x55\xf5\x33\x27\xe7\xbb\x5e\x96\x3d\x93\xa6\x44\x71\xe4\x26\xea\x8e\x0a\x9c\x44\xf1\x28\x90\xd6\x85\xb0\x0a\x20\x98\xde\x7a\x56\x55\xed\x90\x8f\xcb\x25\x0f\x7c\xf2\x10\x0b\x1f\xc4\x7d\x27\x0e\x85\xc9\x25\xb9\x70\xf9\x3f\x58\xa1\x0d\xf0\xb5\x5f\x03\x73\xc0\xa2\x8c\xa5\xe2\xf3\x3c\x4a\xc5\x08\x03\x32\xb2\x83\x80\x33\x96\x86\xea\xac\xa2\xf2\x51\x8c\xf5\x20\x5f\x02\x3d\xbf\x10\x57\x59\xc9\xa6\x66\x2d\xf6\x5a\x0c\x93\x74\xf4\x27\x95\x2d\xea\xb2\x7c\xf1\xcc\x0e\x44\x8d\xb1\x00\x55\x53\x15\x8e\xf7\x20\xbe\xef\x3f\x94\x62\xf7\xe5\x63\xaa\x42\x4a\xcd\x53\x13\x80\x2e\x09\x30\xb1\x0c\x55\x1e\xfd\x3e\xfa\x50\x11\x54\x4a\x7b\xe2\x06\x95\xda\x62\xcd\xe6\xd9\xf8\x46\x58\x26\xd4\x94\x80\x64\xa8\xb9\x56\x8c\xa1\x7e\x10\x2d\x69\x61\x5c\xb4\xb4\x0d\xfb\x01\xb4\x24\xa0\x9f\x84\x56\xd6\x4a\xe2\x87\x4b\x42\x70\x71\x65\x4b\xfe\x8d\x48\x49\x30\xe5\xb0\x9c\x44\x4d\x99\xbc\x25\xc0\x96\xc5\xa8\x5a\x8a\x3d\x88\xb3\x20\xe3\x47\x00\x96\x48\x11\xa6\xa4\x30\xb1\x5c\xac\x64\xfa\x4f\x28\x4a\x93\xa8\xc0\x60\x37\x3b\x51\x4a\xfa\xf1\xe3\x2c\x84\x9c\xbf\x82\x17\xa6\x22\x26\x6b\x8f\x00\xf3\x43\x29\xfd\x90\x81\xa3\x2e\xd4\x9e\x24\xa3\xab\xd2\x20\xed\x6c\x15\x37\x8a\xec\x42\x06\x8d\xc8\x36\x41\xea\x28\x62\x91\xca\x18\x41\x86\x2f\x96\x91\xa2\xff\x7e\x4a\x7c\x60\x1b\xf6\x42\x6a\xe5\x26\x1c\x56\x49\xa6\x5c\xa0\xd5\x24\x54\x56\x3d\x87\xf1\x75\xb1\x14\x54\x2e\x08\xdf\x90\xda\x2e\xf1\x5e\xc6\x78\xe2\x12\x2c\x4e\x72\x76\x9a\xcc\xe3\xd1\xa7\xba\x46\xc8\x26\xe9\xc6\x1a\x53\x31\xb2\xb3\xa9\x2c\x57\xa0\x4b\x45\xe5\xb2\xcc\xc0\x90\x82\xc4\x38\xf2\x02\xcf\xed\xa2\xe9\xed\x92\xf2\xd7\xe4\xe4\xe7\x4a\xc9\x75\xa9\x4c\x65\x7c\xab\xc2\x4f\xd5\x18\x4a\xb9\xc1\x60\x45\x4a\x05\x8e\xfc\xa0\x8c\x86\xf4\x25\x51\x1e\xfc\x18\x80\x87\xe7\x91\x01\xa2\x17\xd7\xa1\xa1\xeb\xde\xb5\xe3\x37\xb7\x69\xa2\xbd\xee\x8f\xcd\xad\xae\xe0\xab\x54\x97\xf6\x80\x8e\x59\x64\x55\xa7\x68\x22\x06\x77\xa9\xe0\x59\x47\x0a\xb7\x07\xd1\x4e\x76\xd3\x2f\x43\x95\xa5\x4b\xfb\x14\xa8\x58\x0e\x77\xa0\xaa\xf1\x65\xe0\x1d\x91\x43\x2c\xbb\x14\x6d\x37\x00\x5f\x52\x9b\x29\x45\xdf\x77\x0a\xb1\x0b\x01\xb6\xd4\x2a\x91\xdd\x12\x5e\xab\xf4\x4b\x97\xbc\x96\x46\xdc\x7f\x3f\xde\xfe\x2b\xd1\xf6\xa7\x42\x78\xf7\x03\xe5\x47\x3d\xa2\xb8\xff\x55\x5b\x74\x07\x19\x70\xf6\xa6\x4e\x5c\xa5\x08\x2f\x3a\xbd\x92\x9c\xad\x96\x89\x36\xa5\x98\x15\x55\x4f\x89\xaa\x2d\x3c\x35\x70\xbf\xe6\x88\x0d\x24\x4f\x46\xd4\x32\x16\xd5\x39\x71\xe1\x34\x8b\x74\xed\x24\x1c\x5e\x88\x78\xf4\x71\x18\x82\x69\x88\x21\x9f\x98\xe7\xfa\x44\x0e\xb3\x85\xb1\x08\x47\x22\xcd\x5a\xec\xbd\x1b\xef\x7e\x78\xff\x81\x7d\x5f\x16\x0a\x7f\x67\xcf\x69\x1a\x82\x98\x8a\x7c\x9c\x8c\x1c\xa8\x8d\x46\x23\x4c\xcf\xb2\x16\x0b\xe3\xab\x41\xbc\xd6\x62\xaf\xd2\x64\x1a\x65\xe2\xcf\x30\xbe\x7a\x66\x67\x1b\xf3\x74\xc2\xb6\xd8\xa7\x66\x38\x8b\x9a\x1f\x3f\x5e\x85\x49\x33\x9b\x47\xcd\xc5\x46\x33\x9d\xc7\xab\xdf\x10\xdd\xeb\x4f\x9b\x16\xa2\xe6\xc8\x6b\xb0\x22\x0f\x9e\x1f\x1e\x5e\xcd\xc4\x60\xa5\xc5\x06\x2b\xe1\x6c\x36\x89\x86\x78\x7c\xd3\x84\x2d\x1a\xac\xc8\x94\xe8\xb5\x38\x15\xa9\x48\x5b\xd2\x45\x35\x26\x09\x8d\x6a\x8c\x53\x71\x2a\xc7\xf8\x49\x72\x11\x89\x96\x31\x42\x43\xbc\x21\x9f\x36\x1a\x8d\xb1\x45\xf4\xb5\x65\x98\x67\xe1\xd5\x24\x09\x21\x98\xfa\x26\x99\x51\x67\x40\xbe\x1c\x64\x69\xa3\x8c\xbc\x92\xd1\x95\x52\x45\x23\x34\x12\x8a\x5b\xfb\x4f\x45\x36\x4b\xe2\x0c\x74\x8c\x0e\xd2\x4e\x45\x3e\x1c\xd7\xe6\xe9\xa4\xae\x17\x03\xc2\x5f\x1d\xf4\x0f\x21\xd0\x54\x28\xe2\x1a\x2d\x5a\xe9\xda\x05\x99\x8b\xcb\x5c\x83\x53\xf0\x1b\x70\xb7\xa6\x06\x42\x4a\x82\x56\x0e\xf6\xaf\xe2\x8c\x5e\x46\x28\x00\xe8\xde\x3d\x02\x58\x36\x42\xb2\x96\x62\x19\x1c\x18\xb8\x56\xcc\xc6\x00\x92\xc6\x22\xcb\xc3\x7c\x9e\xb1\x67\x5b\xec\xb7\xf5\xf5\x52\xc4\x6a\xec\x0d\xc0\x56\x26\xc7\x58\x83\xed\x25\xf7\x5b\xec\xd3\x4e\x18\x4d\xc4\x88\xe5\x09\x03\x5d\x60\x4a\xb4\xd0\xb8\x00\x0f\xa5\x90\xd9\x51\xcd\x48\x2f\x84\xd7\xdb\xd6\x75\x8b\x3d\x5e\x5f\x2f\x9e\xaf\x4b\x11\x6f\xa4\xe2\x5c\x0c\xf3\xda\x37\x85\x6e\x9d\x60\x5d\x97\x28\x2f\xcd\xcb\x92\xc9\x42\xd4\xac\x82\x57\xd9\xf8\x2e\x37\xbc\xdb\xd6\xf5\x8f\x10\xec\x90\x2b\x14\xad\xa2\x4c\x68\xa5\xc5\xbe\x75\x99\x16\x18\xed\x42\x7d\xef\x6e\x9c\xba\x96\x96\xad\x79\xff\xfe\x20\x66\xf7\x59\xff\xa8\xcb\xa8\x7a\x88\x5f\xff\x3d\x0b\xd3\x70\xea\x1c\x64\xea\x9b\x10\xed\xc1\xf7\xe6\x12\xbb\x48\x55\xcd\x1a\x69\xb0\x9c\xdf\xb2\xa2\xe5\xef\xb6\x2d\xb3\x9b\x18\xf0\x06\x69\x46\xc1\x34\x82\x61\xc3\xa7\x54\xd1\xdc\x6e\x49\x5c\x0f\xf0\xab\x63\x03\x95\x15\xb5\xcc\xa0\x8c\xa1\x6b\xc4\x26\x19\xfa\x5b\xe9\x03\x46\xfe\xc9\x09\xb0\x6b\xb0\xc2\xb6\xad\x47\x2d\xb6\xba\x6a\x05\xdb\x00\x60\x8d\x85\x99\x21\x66\xd3\xf4\xac\xd0\x2a\x85\xb3\xe5\x5b\x12\x07\x9d\x32\x80\x23\xd6\xeb\x5c\x7f\xba\x79\x4b\xc1\x36\x97\x20\xa8\x40\xf4\xda\x09\x89\x29\x98\xd5\xb1\x7e\x39\xa4\x55\x89\x12\x6d\x9a\xdb\x22\x62\xce\x04\x55\x91\xe4\x66\xba\x5e\x26\x4c\xc8\xce\x23\x44\x89\x7d\x89\xf2\x31\xcb\x0a\xb0\x6f\x25\xae\x08\xa6\x40\x59\xb3\xc9\x20\xb2\x1c\x89\xd3\x70\x3e\xc9\xa5\x44\x64\x46\x38\xd8\x96\xba\x30\x8e\x9c\x6e\xa8\xda\x81\x1e\x61\x6e\x6c\x6d\xb1\x79\x3c\x12\xa7\x51\x2c\x46\x6c\x9b\xe5\xe9\x1c\xd4\xd3\x1d\x65\x43\xca\xc6\xc9\x97\xbd\x24\xc4\xea\x3d\x51\x53\xf1\xa0\x00\x14\xbb\x22\x0c\x54\x33\xd2\x06\x0c\x2c\x7b\x15\x9e\x09\x0a\x64\x1c\xd0\xee\xa3\x9b\x81\xdb\x63\xcd\xb9\xd3\xab\x54\xcc\xc2\x54\xb0\x09\x2e\x3b\x90\x6d\x63\x13\x89\x2e\xfb\xf4\x67\x36\x0b\x63\x36\x9c\x84\x59\xb6\x35\x58\xc9\xe6\xd1\x43\xda\xba\x87\x30\x04\x4b\x80\xcf\xf6\xe8\xaa\xd1\x68\xfc\xd9\x84\xd1\xcf\x3e\x69\x41\x29\x73\xe0\xde\xbd\x02\x0b\x9d\xbe\x00\xa9\x88\xd5\x8c\xab\x68\x48\x63\x06\xd3\x6a\x16\x82\x4d\x17\xc0\x86\x6a\x6c\x6e\xe9\x48\xbb\x09\x7c\x03\xec\x6e\x0a\xb3\xdc\x36\x04\xe1\x26\x6d\x32\x5f\x83\x8b\x46\x14\xc7\x34\x83\x6d\x49\xc0\x6b\x45\x31\x56\xdb\x81\x81\xa7\xdc\x8c\x8f\xd2\xb1\xa3\xca\x62\x36\xa7\xc2\xda\x9a\x1d\x99\x5a\x14\xda\x5b\x7d\xd3\x59\x91\x82\xfc\x0d\x82\xad\x8f\x54\x0a\x87\x2b\xb4\xd9\x74\x92\x55\xc0\xef\x4c\xe4\xa0\xbd\x40\x3b\xd3\xc5\x33\xc7\xb8\x38\xb6\x45\xd5\x5e\x74\x96\x8c\x33\x0b\x69\x36\xde\xe3\x74\x6c\x0f\x00\xb6\xab\x9b\xfa\x70\x18\xec\xbd\xdd\x4c\xb4\xbc\xde\x55\x06\x30\x9b\x9f\x4c\xa2\x61\xb1\x40\x6e\xe1\xc0\xb6\x2c\x5c\xb6\xd9\x27\x70\xae\x49\x7e\x2d\x7d\x2c\xdc\xbd\xfe\xc4\xca\x11\xed\x2c\xcc\xc7\x60\xc6\x6c\x9d\xb5\x2b\x51\x35\x03\xf4\xde\x3d\x8b\x39\xd5\x6d\x8b\x36\x76\x77\x09\xdb\x51\x1b\xdd\xc8\xbd\x1c\x24\x9b\x93\xbd\x16\xfb\x68\x9f\x24\xea\x6c\xa9\xd9\x64\x53\x91\x9e\x09\x2c\x6f\xce\x33\x91\x6a\x11\x04\xb9\x72\x0e\x44\xad\x8a\xe7\x85\xb8\x62\x51\xec\x9e\x97\x32\xb5\x72\xc3\x3e\x65\xd2\xd7\xa5\x96\x47\x59\xa5\xfa\x5b\xd9\xc6\x4d\x99\x84\x45\xe1\xcb\x30\x8f\x16\x82\xcd\x12\x0c\xf4\x3f\xcf\x45\x86\x2d\x5a\xd8\xc3\x25\xd2\x05\xd9\xbf\xff\xff\xb2\x07\x74\xc9\x4b\xac\xea\xd2\xa8\xb7\x32\x37\x90\x8e\x14\x18\xa2\x49\x41\x04\x24\x97\xa4\x13\xce\x6e\x32\x75\x7a\xe1\xa2\xc9\x03\x40\x9b\x4b\x2a\x26\x55\xc7\x65\xb7\xf6\x42\xdd\x58\x14\x19\xac\x98\x50\x19\x20\xca\xba\xbb\x53\x13\x29\xc4\x19\x72\x76\xe9\x2c\xe3\x5a\x35\x5b\xdc\x81\x99\x15\xa8\x36\x9b\x8a\xa7\x54\x9e\x71\xd2\xa5\x1f\xe4\xe1\x72\x7f\x8c\xb0\x07\x2b\xcf\x0c\xd5\xf4\xc0\xf1\xc9\xe5\x38\xcd\x66\x13\x4d\xc0\x43\xbd\xb5\xe2\x31\xf7\xb2\xc8\xac\x3c\xdb\x4d\x26\xc4\xe5\x2c\x49\x73\x8c\xb0\xad\x20\x57\x6a\x39\x98\x41\xa7\x3d\x1d\xa7\x52\xe7\xa3\x19\xdd\x87\xef\xf2\x49\x92\xba\x4f\x92\x94\x9e\x60\xdb\xf1\x76\x29\x49\xa8\xc9\xb6\xc8\x30\xbe\x92\x3d\xb0\xdb\x2d\x86\xf0\x90\xcd\x8b\x24\x1a\x3d\xc3\xf9\x7e\x82\x91\x40\x9e\x95\x61\x40\xa2\x21\xf7\xff\x3d\xf6\x5b\xca\x7a\x0d\x42\xdd\x1c\xc4\x64\x5f\x6c\x3a\xed\x44\x44\x91\x4a\x45\xec\x6d\x97\x5a\xd0\x37\x15\xb4\x46\x19\xcb\xc2\xa9\x70\x03\x64\xab\x17\xd7\x44\x1e\xdb\xc5\x8e\x7e\x42\x88\x7d\x67\x27\x49\x32\x11\x61\x5c\x84\x8b\xee\x12\xf9\x4d\xc6\x61\xbb\xb5\x6c\x24\x36\xa0\x01\x3b\xad\x00\x62\xf9\x68\x0d\x57\x7b\xbb\x6d\xc5\x9d\xe2\x50\x31\x9d\xe5\x57\x55\xbc\x72\x77\x59\x71\xab\x2f\xf2\x16\x56\x06\x75\x1e\xc8\xcc\x4e\xea\xad\xab\x64\xbe\x2b\x1c\x0a\x60\xa7\x08\x10\x81\x48\x5c\x7f\x68\x45\x84\x05\xbe\xa0\x02\x1e\x09\x04\x02\x2b\x8f\xb8\x11\x60\x1b\x5d\x73\x0d\xef\x57\xcb\x5f\x99\x52\x87\x63\xaa\xe3\xb7\xac\x4c\x4e\x8f\x35\xfa\x0c\x02\x65\xde\x1c\xe9\x17\x4e\x08\x54\x8a\x57\x2c\x94\x9a\x9a\xae\x49\x71\x4d\x5b\xe8\x5f\x79\x69\x04\xd2\x4d\xcb\xd2\xcb\xf7\x3c\x64\x66\x09\x99\xf3\xfa\x5d\x3a\x7f\xf5\x89\xc6\xfb\xf5\x0f\xa6\xf1\xa3\x14\xef\x96\x5e\xcb\x70\x9a\x00\xdd\xa3\x93\x55\x6a\x88\x53\xad\x63\x2d\xa3\x63\x2a\x47\x68\xa9\xae\x39\xe7\x35\x0b\xbb\x9b\xce\xee\x3b\x43\xe8\x68\xb5\xdd\x69\xcb\x17\x60\xdf\xd9\xcb\x64\x24\xf6\xa2\x2c\x3f\x38\xfd\x53\xde\x7c\xc6\xbe\x5b\x29\xde\x96\x89\x62\x95\x63\x6e\x2d\x99\x54\x2c\x28\x0a\xd5\xc7\xb2\xfc\xbd\x20\xf4\xae\xe9\xdc\xe9\xd3\xbb\x2b\x9a\x55\x49\xdd\x6d\x2f\x17\xa9\xfe\x4a\x3d\xcc\x7d\x15\x48\x0f\x50\xa4\xde\x28\x54\x6e\xcf\x9f\xc6\xc4\x9e\xaf\xa4\xec\x99\x23\x64\xee\x22\xea\xd5\x13\x35\x47\x09\x98\x1d\x1c\x98\xfc\xb2\xea\x45\x27\xc5\x9c\x22\x99\x16\x15\x25\x32\xff\x61\x54\x2b\x11\x29\xe3\xa1\x83\xc2\x1b\xb7\x45\x8e\x12\x93\x69\x6d\xad\x24\x4d\x15\xe7\x2c\xc2\xb2\x4d\x66\x6e\x06\x93\x6f\x90\xdc\xe5\x80\x32\x1b\x92\xd3\xb2\xaa\x2d\xb3\xd1\x54\x17\x9a\x9d\xb2\xda\x20\xb7\x6f\x6c\x52\x2d\xbf\x8d\x56\xa9\xfc\x96\x55\x5b\x76\x30\x66\x70\xb6\x25\xf6\xee\x68\x67\x37\xe3\x5d\xa5\x06\x12\xf5\xec\x56\xdc\xb3\xbb\x21\xaf\xf2\xfb\x9f\xc0\xf3\x22\xa8\x7f\x86\xdb\x49\x4c\x07\xe6\xc6\x29\x0f\xc3\xc9\xe4\x24\x1c\x5e\xb4\x98\x7a\x12\xe8\x9e\x05\xf0\xd0\x45\x43\x2f\xdd\xa3\x8d\x7c\x19\x37\xd9\xdb\x6d\xe1\x63\x8f\x2f\x77\x4b\xc8\xee\x07\x85\x4b\x21\xe8\xd6\xd0\x24\x11\xab\xab\xb5\xb5\x1f\x40\x66\xd9\xab\x32\xb2\x6a\xe2\x60\x56\x2a\xd8\x0c\xe3\x0f\xee\xbb\x94\xbf\x60\x77\xf8\x2d\x8b\x0c\x96\x55\x9c\xe4\xe8\xd5\xd5\x9a\x6a\x62\x37\x66\x00\x32\x20\x7b\x37\x94\x8b\x92\xec\xaf\xb3\x28\x1e\x89\xcb\x16\x8b\xe7\xd3\x13\x91\x9a\x0d\x5a\xca\x8a\xb2\x98\x2f\xdf\x13\x27\x09\x93\x6f\x53\xe2\x7a\x6e\x3e\xa6\xf0\xab\xb9\xd2\x47\x9c\x57\x33\xaa\x73\x27\x9b\x56\x8a\x3c\x96\x63\x6e\xbd\x70\xe3\x6c\xcf\xdf\x7a\x49\xea\xb6\x4d\x29\x06\x46\x8e\x54\xd9\xd8\x87\x79\x9e\x96\x5f\xe9\xfa\xc7\xf1\x5f\xe2\x01\x0a\xaf\x72\xe9\xbe\x13\xc2\x75\x14\xe6\xe1\xff\xab\xb8\x56\xf7\xcb\x10\xde\xe7\x59\x12\xff\x0f\xe1\x6d\x5e\x94\xbb\x09\xf5\xa5\xcd\x32\xbf\x2c\xee\xb2\x88\x53\xff\xb9\xe1\x45\xb8\xca\xd2\x4f\xe1\xa8\x09\xfb\x56\x18\x4c\x84\xd0\x14\x1b\x4c\x4e\x93\x14\x8b\x93\xab\xdf\x2e\xc4\xd5\x75\x8b\xad\x7e\xb3\x4e\x99\x96\xa2\x25\x79\x3f\x4b\x93\xd9\xff\x28\xef\xef\xf2\x12\xe3\x0d\x2a\x50\xf9\x36\xe3\x6d\x7b\xf9\xa3\xaf\x35\x62\x3b\xd4\xcf\x7d\xb7\xf1\x6e\xdb\x0a\x28\x2e\xdb\xd7\x1f\x7f\x3f\x92\x76\x7c\x1c\x66\x3e\x24\x67\x35\x4c\xd1\x5e\x86\x53\x51\xd9\x24\x64\x05\x2b\x61\x96\x81\xf7\x6e\x0c\x93\x38\x0f\xa3\xd8\x9e\x69\x03\xce\x93\xb3\xb3\x89\x58\x06\x5b\x9e\x45\xc3\x7d\xec\x15\xe3\x69\x1a\x5e\x35\xa2\x0c\xff\x5a\xe3\x15\x21\xdb\x4c\xdf\x53\xb7\x5a\xe6\xd6\x76\x23\x9b\x4d\x22\xf0\xdd\xcc\xb8\x6c\x09\x7c\xdb\xb8\xb7\x61\xc1\xa3\x69\x89\x1a\xea\x46\xea\xe6\xfb\xc1\x20\x1e\x0c\xd2\xc1\x20\xfb\xd0\x3c\x2b\x76\x53\x63\x47\x9c\x14\x0d\x90\xea\x42\x13\xeb\x32\x4e\x11\x2b\x2c\xcd\xbe\x25\xca\x49\xc5\x34\x59\xfc\x2f\xeb\x80\x75\xc4\x8a\xbb\xb3\x2e\x1c\x8d\xfe\x97\x6f\x19\xc6\xd9\x77\x67\xda\x38\x9f\x4e\x6a\xf0\xb1\x5d\x99\xc5\xc8\xc2\x87\xe5\x11\x60\xac\x7b\xe8\x5e\x9d\x08\x18\xcc\x4c\x25\xdf\x7d\x45\xe7\xda\x00\x5d\x12\xca\x3b\xd6\xdb\x3e\x10\x00\x24\x96\x86\x1d\x4e\x25\xde\xd4\xb6\xe4\x2b\x81\xc3\x64\x3a\xd3\x2f\x04\xb6\xf4\xab\x82\x76\x9b\x4c\xe9\x35\x42\x67\xce\xe6\xc0\x14\xbe\xd2\x62\x91\xcb\x05\x46\x1d\xeb\xca\x28\xeb\xae\x8c\xca\x62\x93\xb3\x86\x62\x01\x32\x40\xc2\x81\x3f\x9b\xd6\xed\x42\x93\x87\x29\x01\x52\x2f\x52\xf1\xdd\xc6\x25\x8d\x41\x37\x85\xc6\x4e\x17\x93\x46\xa5\xce\xec\x57\x33\x2d\x54\xd6\x96\x30\xde\xa3\xf6\x50\xd3\x19\xba\x5d\xd5\x1a\xba\xfd\x17\x7b\x43\x07\xb1\xf3\x5e\xd9\x5f\x3a\x14\x6f\x4a\x99\x74\xce\xc3\xe1\xd1\x8d\x87\xde\xea\xf0\x53\x4a\xcb\x6b\x71\x16\x5c\xce\x6a\x83\x95\xff\x83\x91\x84\xc9\xf4\x0c\xd4\x24\xc7\x07\xf3\xdc\xbc\xbd\x93\x0a\x5b\xeb\x9d\x9c\x44\xf1\x0d\x27\xe8\x53\xd3\x52\x5d\x55\x0e\x53\x67\x4b\xb4\x96\x56\xb3\xbf\xd7\x78\x6b\xde\x46\xb3\x45\x55\x0a\x49\xa9\xc9\xf7\xa7\xac\x36\xc0\xd6\x32\x5b\xfe\x9d\x5d\xb1\x35\xc0\x9c\x9e\xcb\x2b\xc7\x1b\xa0\x16\xf8\xe1\x64\x52\x2b\x74\x0e\x3b\x6d\xc3\x95\x4d\xc3\x37\x29\x05\x1d\x49\x57\x34\x3e\x1b\x5c\xeb\x0e\x7a\x75\xdd\xac\x2b\xd7\xad\xee\x3b\x7c\xcb\x0f\xd8\xab\x79\x2a\xd8\x8b\x70\x11\xf6\x87\x69\x34\xcb\x59\xbf\xbd\x4b\xfd\x86\xe1\x3c\x1f\x27\x29\xdb\x0f\x2f\xff\x9c\x86\x97\xff\x8e\x3e\x5f\x84\xa0\x8b\xcf\xe8\xe9\x34\x8c\x30\x1c\x13\x29\x1b\xe7\xf9\x2c\x6b\x35\x9b\x57\x61\x12\xce\x66\xa8\xb0\xb2\x43\xd1\x5a\x29\x4c\xd8\x01\x35\xf9\x59\xcd\x8c\xdf\xee\x5f\xb3\x71\x92\xe5\x72\xb8\x56\xdf\xb7\x61\x52\x83\xfb\xce\x6f\x20\x25\xf8\x93\x1a\x9f\x56\x25\xb7\xf0\x7b\x95\xba\xa4\x49\x9e\x0c\x93\x09\x7b\x00\x4a\xd6\x44\xbd\x28\x75\x46\xd3\x9a\xec\xba\x19\xce\x22\x3a\xaf\x75\x5e\xb4\x97\xf2\x07\x2a\x71\xf4\x7a\xaf\x2f\xc2\x74\x38\x7e\x05\x18\x67\xb5\x22\xa8\x0c\x1f\xae\x19\x0f\x6c\x37\xd9\x1b\x57\x6c\xc0\x97\x5f\x71\x36\xef\xb4\x2a\x6e\x75\x44\xce\xf8\xab\x6e\x91\x55\x60\x09\xca\xf7\x00\x2d\xc9\xc0\xb7\x61\x42\xf4\x43\xc6\x24\x5f\x2c\x29\xfe\x16\x14\x00\xa9\xcb\x69\x46\xc1\x9d\xa3\x15\x44\x76\x07\xfb\x29\x06\x2b\x9d\x00\xfb\x27\xdc\x69\xe0\x4d\x5c\xeb\xb0\x69\xe3\xff\x0a\xf6\xe6\x8e\x04\xc8\xe6\x97\x25\x44\x39\x92\xa2\x8c\x6f\x05\xad\xaf\x48\x3a\xaa\x89\x25\xaf\x71\x77\x92\x55\xcf\x88\x4b\x33\x41\x59\x4a\x73\x3b\xf9\x12\x63\x17\xd0\xdf\xdf\x38\x0d\xea\xb6\xdd\xcb\xc2\x85\x38\x8d\x26\xa2\x48\x54\xb9\xb1\x66\x92\x9c\xe8\xd6\x96\x1f\xdc\xde\x3a\x9e\x55\x9b\xc6\x8c\x45\x98\x32\xea\xd7\x3d\xc2\x56\x29\xa9\x11\x47\xaf\xf7\x1a\xc3\x54\xd0\x8f\x5f\xc1\xc3\xd7\x7b\x35\x58\xd6\x6e\xbc\x0f\xe3\xe1\x18\x0f\x36\x4c\xf7\x10\xce\x90\x87\x10\xb5\xc1\x4a\x68\x62\x51\xd7\x9d\x86\xb3\x99\x88\x47\xfe\x38\x9a\x8c\x6a\x04\x46\x8d\xa3\x6f\xf8\xb6\x03\x04\x26\x0a\x33\xf7\xe9\xc8\xb0\x54\x31\xcd\x1d\x30\x9c\x44\xc3\x0b\xdd\xe7\x63\xd1\x94\x8a\x45\x72\x61\xd1\xa4\x17\x28\x76\xa1\xa4\xe6\xb7\x32\xc2\x89\x48\x81\x9a\xc1\xfc\xf7\x5f\x37\xd6\x07\xf3\xc7\xbf\x3e\xdd\x81\xcf\x0d\x6f\x30\x7f\x1c\xec\xf0\xc1\xfc\xb1\xb7\xe3\x0f\xe6\x8f\x37\xe0\xfa\xb7\x60\x07\xee\xff\xca\x37\x7e\xb1\x7b\x3a\x1c\xe9\xc2\xed\xaa\x12\x2d\xb2\xf3\x3f\x26\x70\xb7\xa9\xdf\x4d\x8a\x46\x88\x94\x05\x73\xa0\xdf\x96\x41\xb7\x8c\xf2\x44\x17\x28\x52\x03\x59\x20\xb4\xa3\x2f\xbc\x8e\x32\x10\x12\x1d\x50\xd1\x70\xb6\xa5\x2e\x4c\xd3\x65\xc9\xf1\x5a\xcf\x64\x73\x25\xfe\xb1\x7f\xc9\x02\x44\x55\xf6\xf3\xad\x7e\xd3\x5e\xe4\x7a\xf5\x1b\xa0\x27\x5b\xf8\x60\x0c\x9d\xe6\x50\xda\xb1\xa5\xde\x9f\x4a\xa3\x70\x12\x7d\x15\x35\xc2\xc4\xb4\x64\xdb\x83\x8b\xaf\x86\xd0\x62\xf3\x74\xd2\x88\xe2\xe1\x64\x3e\x12\x59\x6d\xb0\xb2\x0d\x03\xb0\xc9\x71\x9e\x4e\xae\xef\xad\x7e\xb3\x20\x60\x9b\xa3\x7c\xb2\x5d\x78\xe2\x1c\xff\x50\x87\x5a\x72\x21\x74\x85\xe9\x10\xbe\xd4\x0c\x5e\xf4\xb0\x88\x91\x64\xd6\xfb\xc1\x0a\xf9\xf3\xe8\xab\xfc\x01\x39\xf0\x41\x9f\x3c\x11\xa6\x22\x65\xab\xdf\x70\xb2\xbb\x24\x96\xe2\xcc\x74\xb7\x47\xf0\x43\xc5\x02\x85\x11\x18\x11\x96\xfb\x08\xed\x25\xd0\x94\x50\x0b\x39\xbd\x8f\xa3\x7b\x12\x55\xf8\x64\x89\x14\x63\xd3\x64\x24\x5a\x6c\xb0\x32\x4c\xd2\x0c\x8c\x56\xb3\xc9\xe2\xe4\x21\x7c\xab\xb3\xfb\xf4\x27\x0b\xa7\xe2\x61\x92\x46\x67\x91\xfa\xf5\xab\x70\x38\xc6\x49\x30\x12\xae\xe5\xc4\xfb\xb2\x65\xa6\xce\xd4\x83\x3a\x4b\x05\x98\x88\x3a\x3b\x4d\xd2\xa1\x50\x37\x93\x78\x72\xf5\x30\x3a\xa5\xaf\x23\x09\x34\x15\x23\x11\xe7\x51\x38\xc9\x00\xb4\xbd\x28\x41\x97\xbb\x5f\x67\xf7\xad\x67\x75\x96\x4c\xa3\xbc\x10\xb4\xda\xba\x00\xde\x68\x14\xa5\x62\x98\x03\xd4\xd3\x64\x32\x49\xbe\x48\x80\xd3\x30\x9e\x87\x93\x3a\xbb\x4f\x77\xeb\xd4\xe0\x36\xb0\x9a\x2e\x55\xf3\x28\x48\x80\xf3\x16\x84\x64\xf0\xfb\xc1\x0a\x18\x52\xda\x98\x42\x87\xa5\xf5\x5e\x8e\x2d\x6e\xa9\xc8\x66\x55\xfd\x95\x12\xa2\xdd\x59\x8c\x6d\x32\x5b\x38\x43\xc5\xa0\x90\x01\xd5\x8a\x52\xe1\x76\x04\xab\x9e\x05\x5b\x5b\xca\x12\x63\x7e\xaa\xc0\xa9\x7c\x3a\x3f\x6b\x63\x9a\x36\x1b\x58\xcf\x2f\x15\xa0\x47\xd4\x8b\xef\xd6\x44\x2d\x93\xad\x07\x7e\xc3\x37\x75\x5a\x04\x8b\x5e\xda\xaa\xab\x46\x42\xd8\x16\xec\xaf\x92\x83\x07\x2b\xfa\xd7\x20\xa9\xaa\x6d\x3a\x14\xc8\xae\x15\x6b\x9b\x08\x14\x1e\xd4\x94\xf7\xd0\x13\x8a\x7c\xc8\xc5\x65\xde\x1c\xe7\xd3\x89\x64\x5a\xe5\xf3\xd9\x24\x8c\x1c\x0e\xd9\xeb\x58\x9d\xab\xf6\x2f\x9e\xba\xcf\x5c\x37\x83\x36\xe5\x27\x44\x30\x87\xd2\x50\x95\x5e\x05\x05\x8d\x57\x56\x2c\x13\x59\x16\x25\x71\x3f\x4f\xd2\xf0\x4c\x80\xb8\x74\x73\x31\x05\xd2\x60\x40\xa5\xac\xd0\xcc\x82\x89\xb3\x43\x38\x6a\x4f\xc6\x77\x4b\xf3\x8b\x22\x08\x9b\x0b\x08\xaa\x44\x3f\x84\xcc\x04\xa2\x48\x2c\xb5\x39\xcb\xe2\xdc\x7d\xf6\x6f\x02\x53\x4d\x3d\x41\x70\xc8\x37\xd3\x2d\x46\xe0\xaf\x58\x6c\x59\xa0\x31\x67\xd9\x92\xd8\xc2\x88\x91\x00\x61\x1c\x69\x80\xf4\xfd\xe8\x75\x57\xf7\xde\xd5\x0a\x8d\xd8\x6b\x7a\x2e\x7d\xc7\x6a\xa3\x9e\x29\x21\xe9\x5a\xe2\x26\x05\x1c\x30\x05\x7b\xcd\x61\x9e\xf5\x83\x2d\x16\x88\xca\x1f\x6a\x31\xcb\x68\x32\x70\xf0\xfb\xe8\x43\x23\x4f\xa3\xa9\xd3\x37\x4d\xcf\x1b\x78\x70\x7b\x70\x8a\x65\x22\x3a\xf6\xa8\xe8\x3c\x93\x63\xb3\xf9\x09\x19\x29\x1c\x2d\x51\xa8\xab\xa7\xf2\xad\xa8\xc2\xb1\x52\xe9\x97\x7d\x91\x3e\x77\x83\xfa\x22\xbf\x71\x8f\xd4\x12\x6f\xe8\x37\x3e\xc5\xe5\x2c\x4a\x45\x3b\xbc\x52\xf1\xb5\xb9\xc1\xb6\xec\x2f\xdf\xbf\xb3\x47\xeb\x66\xf3\x64\x91\xa6\x1d\xe6\x42\x72\x62\xd4\xc8\x44\x7e\x18\x4d\x45\x6d\x04\xf2\x8e\x57\x6b\xec\x81\x0d\xe3\x3e\xfb\xf5\x37\x76\x9f\xfd\xbe\xae\x3e\x36\xd6\xd7\xd7\xcd\xae\xd2\xc8\x0c\x9d\xab\xbc\xde\xc2\x1c\x77\xd4\xc8\x93\xa3\x43\x9f\x82\x07\xb5\x9c\x2b\x1b\x14\x07\x19\x32\xaf\xb7\xd4\x37\x24\xf4\x7a\x73\xf5\x9b\x04\x79\xbd\x09\x0a\xbf\xd5\xfc\xb4\x84\x81\x6d\x31\x11\xb9\xb8\x8b\x9c\xdf\x8a\xc2\xa6\x22\x69\xeb\x70\x3c\xaf\xb3\xf5\x0d\xf6\x22\x8c\xd9\xc6\xd3\x27\xeb\x6c\x7d\xbd\x85\xff\xb3\xa3\x43\x7f\x93\x11\x46\x9b\x9f\x4a\x4a\xab\x43\x35\x76\x98\x30\x2a\x22\x13\x17\x8a\x3a\x9c\x9c\x9c\xdf\xae\xbc\x06\x9a\x4d\x57\x72\x72\xee\x94\xfc\xb2\x3c\xad\xfa\xdd\x23\xeb\x85\x8d\x19\x8b\x62\x58\x71\xcd\x68\x40\x72\x72\xde\x18\x87\xd9\xc1\x97\xf8\x55\x9a\xcc\x44\x9a\x5f\xd5\x66\xf6\xef\xf0\x64\x79\x2a\x7f\x17\x28\x2e\xa9\xf9\x6c\x4d\x19\x07\x10\x97\xf2\xf3\xe4\xe4\xfc\xfd\xec\xc3\x9a\xa3\x0d\x52\x11\x00\xec\x79\x12\xc5\xb5\xc1\xca\x3d\xd2\x77\xe0\x9f\xfc\xa1\xf3\x69\x38\x9b\x45\xf1\x59\xb6\xd2\x62\x2b\xeb\x13\x8f\x73\x5e\xef\x73\xde\xaf\x77\x38\xef\xf0\x7a\xc0\xf9\x51\xdd\xe7\xfe\xcc\xab\x77\x39\xef\xfa\x70\x63\xdd\xab\xef\xf2\xfe\x53\xaf\xde\xe1\xaf\xbb\xf5\x03\xce\x0f\xda\x30\x3a\xac\x1f\x73\x3f\xf7\x70\xc8\x3e\xc1\x18\x72\x3e\x6c\xd7\x7d\xce\x7b\xf5\x0e\xef\xc4\x3e\xaf\x87\x9c\x27\x5e\x7d\x68\x06\xc2\xd4\xce\x0b\xbc\xde\x85\x85\x5e\xd5\xf7\x39\xdf\xa7\xef\x6d\xf8\xec\xc2\x9c\x10\xef\xd6\x03\xee\x4f\x7c\x58\xab\x8b\x9f\xfb\x1c\x3f\x01\xb3\x7d\xc4\x03\x3f\x38\x2c\x18\xd0\x93\x63\xce\xdf\x02\xd4\xbc\x6d\xc0\xbe\x45\x4a\x24\xde\x38\x34\xe0\x3c\xc0\xcb\x0e\xac\x30\xf3\x09\x16\x8e\x3a\xf3\x38\x3f\xf3\x90\x0f\xbb\x01\x0c\xe9\x03\xb8\x47\x3e\x7c\xee\xc0\x07\x57\x83\xfd\xc3\xba\xcf\x03\xc9\xbc\xcf\x1e\xe7\x9f\xbd\x1d\x98\x36\xec\xe0\x27\x8c\xbd\x6c\xe3\xe0\xe7\x44\x56\x0f\xd8\x72\xcc\xf9\x71\x07\xe0\x76\x91\xe1\x30\x6a\xe1\x5b\x80\xde\x72\xfe\x16\xd9\x70\x0c\x8f\x9e\x02\xe7\xf9\x2e\x3c\x3a\x96\x7b\x73\x40\x28\x71\x5f\xa2\x8e\xcf\xbb\x72\x07\xce\x3c\x24\x6e\x17\xe9\x3e\xc0\xcf\x1e\xac\x8b\xa3\x39\xaf\x67\x1e\xdf\xf0\xce\xdb\x30\x1e\x6f\xfd\xea\x75\x0d\x9f\x8e\xf4\x5a\xfd\x3d\xc5\x9c\xe0\x1c\x18\xdf\x26\x9e\xf5\x91\xfd\x47\x2f\xd4\x60\xff\xab\x77\x00\x77\x8e\xe5\x36\x74\x80\xd7\x72\x07\x8e\x1f\xc3\xc4\x17\x1c\xc1\x23\xea\x3d\x98\xf7\x12\x29\x3e\x85\x09\x3d\xa4\xe0\x35\x72\x3c\xf2\xea\x47\x72\xe7\x1e\x11\xf3\x0f\x48\x0a\x12\xe4\x2b\x09\x83\xcf\xfd\xf3\xb6\xde\x87\xdf\x3d\x98\xfe\x1c\x06\xfb\xb9\x33\x67\xea\x71\x3e\xf5\x94\x90\xf8\x4f\x00\x91\x60\xa7\x7e\xc0\x3b\x3b\xb8\xc7\xc8\xf9\x3e\xee\x15\x7f\x69\x11\x0e\x88\x9c\xc2\x06\xa0\xe0\xf1\x3f\x3c\xda\xb1\xb7\xdc\x8f\x51\xde\xbb\x28\x63\x48\xf8\xbb\xfa\x01\xef\xee\x18\xd6\xf5\x48\x78\x60\xf3\xea\x02\xb6\x01\x30\x7c\x8c\x72\xd5\x23\x91\xeb\x72\xbe\xfb\x8a\x84\x7e\x5f\x6d\x0d\x8a\x6f\xef\x39\xa1\xd0\x95\xfa\xf0\xa8\xad\x77\xb7\xdd\xa3\x51\xa0\x55\x20\x23\x34\xe0\xb1\x47\x3c\xe8\x10\x23\x6c\xc1\xf9\x8f\xd6\xaa\x4b\xcf\x15\x8c\xa3\xae\xfd\x08\x88\xc1\x55\x5e\xc0\xa5\xd2\x22\x14\xd2\x21\x6e\x06\x28\xb6\xd4\x8a\x5d\x1e\x1c\x22\xa1\x6f\xb5\x14\x1f\xbd\x06\xec\x46\x7d\xbc\x71\x62\x74\xf6\xad\xc2\x3c\x78\x0c\x6b\xb4\xc3\x77\x96\x3e\x5f\x78\x60\x09\xba\x24\x58\x72\x6f\x82\xaf\x6d\x85\x8b\xbf\xa3\x96\x23\x0e\xed\x4b\x21\xf7\xb9\x9f\x7a\x28\xf4\xc8\x32\x14\x9f\x37\xae\x0a\xee\x68\xd5\xf6\x0f\x61\x71\x4e\x40\x76\x61\x8c\x92\xaa\x9c\x64\x28\xa0\xcd\x52\x0c\x3e\x35\x9c\x38\xbd\x95\x13\xa2\x1e\xf0\xce\xa1\xb5\xe7\x63\x8f\x06\x1e\x73\x7f\x82\xb2\xd2\x8f\xe4\x9d\x40\x99\xd2\x6e\x9b\x8c\x23\x89\xbb\xda\xe2\xd4\x37\x50\x0e\x50\x0e\xf7\x7d\xa3\xd2\x9e\xb4\x77\x81\x24\x62\x17\x6d\x06\x91\xac\x38\x70\x4e\x10\x50\x7a\xbb\xfb\xd6\xd0\x9e\x54\x78\xdc\x1b\xa0\x36\x58\xa0\x02\x87\x13\xaf\xb4\x17\x72\xbb\x94\x9e\x34\x91\xd9\xaf\xcd\x86\xa0\x1d\xdb\x7f\xae\x30\xe3\x5d\xb3\x39\xf6\x92\x3e\xda\x68\xd8\xa1\x17\x66\x87\xfc\xd2\xdc\x2e\xf7\x4f\xc8\x7e\xf6\x94\x25\x2d\x2d\xa0\xc1\x02\x43\x5d\x83\xfb\x9c\xb6\xd7\x77\x85\x9e\xac\xf5\xa9\xb4\xd6\xca\x6a\x2e\x7c\x23\x01\xc0\x5e\xff\x9d\xc6\xdc\x52\x54\xae\x1d\xc0\xd8\xbf\xfb\xf3\xc0\xf2\x28\x7a\x14\x69\x82\x96\xfe\x05\x39\x1f\x92\x86\x7e\x7d\x97\x77\x4e\x8b\x0b\xe0\x3e\x29\x0d\x05\x81\x09\x26\x16\xd2\xa8\xb1\x33\x4f\x39\xe3\xe0\xa9\x67\x79\x28\x98\x9a\x78\x64\x19\xe4\x64\x1e\xe0\xdc\x99\x47\xae\xd7\xc7\xcd\x34\x9a\x80\xcb\x02\x48\xe3\xde\x9b\x04\x51\xc1\xc1\x61\x60\x66\x2c\x10\x8f\x6c\x10\xe0\x80\x0a\x20\x68\xd3\x5d\x10\x11\xda\x72\x0b\xc8\x53\xbf\xa8\x91\xda\x18\x49\xfe\xa0\x5d\x1f\x93\x3c\x1f\x16\x6c\xe9\x6b\x35\x80\x07\xa8\x42\x91\xa7\xac\xa0\xd4\x95\x76\xbb\x80\xff\x6b\x6d\x26\xcf\xed\x95\xd1\x69\xf6\xa5\xe5\xd2\x2b\xfb\xca\x1a\x74\x36\x80\x96\xf6\x11\xad\xdc\x57\xde\xa1\x87\x01\x00\x46\x21\x8f\xc9\x9e\x92\x16\xed\x13\x1e\xa8\x25\x1b\x5e\x51\x26\x13\x54\x2e\x24\xe5\xe0\x18\xb9\x45\xde\xf5\x1c\xe7\xf6\x2e\x08\xc4\x29\xc9\x86\xcf\xfd\x27\x01\xd2\x7e\x4c\x94\x28\xd2\x46\x23\xcb\xe3\x82\x46\x9c\x72\x50\xa1\x9d\x33\x29\x54\x3d\xb5\xa7\x84\xd2\xae\x8c\x16\x8c\x75\xf2\x2d\x8f\x08\x36\x7b\x47\x8b\x73\xd3\x27\x20\xbb\x63\x4f\xdd\x03\x7b\xe3\x73\x7f\x64\x5c\xcf\x45\x71\x9d\xf8\x47\xd7\x09\x9a\x14\x3a\x54\x2c\x06\xf4\xbc\xc6\x88\x8e\x08\x84\xe0\x53\x19\x3e\x64\xa7\xa8\x9a\x22\x6d\x8f\xf1\x84\xa4\x16\xfd\xbe\xe5\x18\x34\x27\x8f\xfe\x43\x7a\x41\x91\x53\x07\x66\x24\x1e\x0a\x2d\x52\x84\x01\xc5\x1f\x1e\x78\x79\x30\x19\xa4\x4a\xbb\xb1\x47\x1b\x0e\x12\x09\x7b\x1f\xbc\x20\x86\x74\x78\xf0\xbc\x03\x38\x06\x5c\xca\x05\xd0\xdc\xd7\xe2\x1b\x7b\x20\xae\x21\x88\xb5\x7f\x02\x72\x28\xc8\x7e\x9d\x7b\xda\x89\xed\x59\x12\x42\x5a\xf2\x52\x87\x89\x39\x49\xff\x3a\x32\x2a\xf4\x29\xb6\x36\x7c\xde\x20\x06\xae\xcb\x1d\x41\x4e\x63\xa4\x81\x54\x75\xb8\x3f\x21\x2f\xba\xe1\x51\x0c\xac\xb8\xf8\xce\x22\xf5\x73\x9b\xf3\xac\x6d\x62\xde\x05\x08\x1d\x8a\x6d\x87\x42\xb4\xdf\x10\x7a\x64\xfc\xd0\xc4\x47\x04\x3f\x7b\xfa\x8e\x8c\xe0\xad\x3b\x8f\xc9\xed\xbd\x2c\x7a\xbd\x23\xc2\x54\xf9\xad\xde\x9b\x7a\x97\x1f\x3c\x05\xc2\x5e\xda\xcf\xde\x68\xcb\x1f\x14\x1d\x5d\x87\xfb\xe3\xf6\xae\xb2\x9f\x7c\x77\xf7\x86\x59\x05\x9f\xa7\x63\x90\xf6\x0f\x2c\xb5\x6f\x96\xea\xfe\x73\x4b\x29\x39\x8d\xc9\x41\x60\xe8\xb4\x3f\xf7\xee\xbe\x60\x00\xf1\x21\x59\x8a\x4b\x4b\x39\x96\x83\xa0\xe4\xa2\xbb\x03\x81\xd0\xf1\x08\x60\xf6\xae\x3c\x65\xf6\xfc\xaf\x96\x22\x1f\x90\x29\xfd\x2a\x4d\x5b\xa0\x03\xc5\x1d\x92\xaa\xbe\x32\xfb\x34\xa7\x57\x57\xd9\x08\x78\x00\x35\x25\xf5\xf6\xc8\x1c\xf4\x89\x9b\xfe\xd8\x23\xfb\xd4\xff\x8c\xe1\xfa\x29\x27\x44\x49\x03\x2e\xc9\x75\xf4\xc8\xc6\x01\x3e\xbe\xb4\x9e\xfc\x56\xeb\xe9\x93\xb1\xf4\xf3\xc0\xd8\x2c\x15\x59\x04\x24\xd2\x18\x6e\xbf\xbd\xb2\x0d\x19\x30\x08\x2d\x36\xe5\x8b\xa8\x0a\x32\xb8\xbf\x39\x9f\x9c\xd9\x76\x83\x12\x0c\x39\x2c\xe4\x7c\xb8\x2e\x1d\x5e\xc0\xfd\xaf\xed\x82\x62\x75\x2c\x4f\x0d\xd0\x9f\x78\x26\x07\xf5\x55\xf0\xe0\x37\x3d\x94\x8e\xa3\xcf\xa4\xeb\x6d\xcd\xd1\x58\x72\xd4\x84\x46\xef\x2e\xff\x3b\x1c\xf5\xb9\xff\x9c\x7c\x5b\xc0\x83\xfd\x0c\x87\xbd\x6d\xca\x30\x92\x96\x23\x5b\x14\x80\x9b\x3f\x43\xa0\x62\xec\x3b\xcf\xe5\x1f\x14\xdb\x07\x32\x9e\xe9\x61\xa4\x08\x36\xae\x2d\xb1\xf1\xed\x98\x3c\x26\xb5\x47\x67\xd2\xdf\x5b\x32\x8e\x72\x6b\x37\xf9\x79\x64\x1c\xd4\x25\x91\x4b\xe5\x02\x2d\x8c\x41\x7e\x63\x52\x04\x9b\xf3\xa2\x6e\x82\xe4\x1e\x0e\xf0\x4d\x92\x6e\xc2\x09\x0d\x80\xea\x04\xbe\x72\xdd\x7e\x93\x76\xcb\x81\x40\x23\x94\xcf\x72\xe0\xc0\x00\x84\xd3\xd6\x88\x3c\xb6\x7d\x6b\x19\x98\xb2\xdf\x8f\xad\xaa\x48\xa5\x0f\xc5\xac\xa8\xfd\xd6\xb8\x4d\xae\x50\x08\xfe\x9a\xdb\x14\xd5\x6e\x13\x96\xfb\xaa\x4d\x11\x28\x93\x9b\x96\xd1\xd7\x0a\x92\xbb\x05\xd6\xc5\x7e\x35\xeb\x68\xda\x91\x12\x80\x5d\x2d\x00\x8b\x76\x11\xac\x4a\xf6\xbe\x7a\x56\x2e\x89\x6a\x0b\x09\xcf\x85\x47\xf4\xa8\xf9\x4f\x7d\x37\x72\x13\xa0\xd7\xfe\x09\x3a\x42\x9f\x64\x91\x43\x4c\xee\x77\xf0\xfa\x18\xeb\x28\x4f\x50\xc8\xb0\x90\xe2\x8f\x90\x1d\x7f\xc8\x28\xf6\x8b\xc7\xf9\x17\xef\x05\xe1\xd8\x01\xcd\x23\x35\xeb\xd2\x04\x4c\xad\xa8\x34\x00\xcb\x8c\xc9\x73\x12\x9e\xca\x58\x12\xde\x3d\xfa\xde\xe3\xfe\x08\xd4\x24\xd8\xc3\x65\x76\xeb\x32\xee\xa6\x50\x98\xbf\x20\x23\xbe\xcb\x89\x1a\xbe\x4b\x56\xc4\x4a\xa7\x61\x56\xb7\x6e\xc2\xe3\x23\x94\x33\x9f\xfc\x90\xff\xc4\x93\xf9\x12\x6e\x29\x7c\xbc\x50\x32\x28\x83\x6d\xfa\x00\xa2\x9f\x6b\xe7\xb8\xbf\xef\x06\xe0\x71\x40\xa1\x10\x02\x68\x1b\x1f\x0a\xcf\xce\x31\xb5\xec\xa6\xc8\x9f\x29\xa8\xde\xee\x02\xf0\x7b\xd1\xcd\x10\xcd\x1e\xca\x57\x8f\xb2\xbd\xdc\xce\x22\x00\x58\xe6\xa9\x22\x59\x67\xe6\xb5\xb5\x09\x37\x75\x92\x0d\x52\x14\x4a\xc2\x8f\xf6\x08\xf9\x1e\xc4\x5c\x5c\x5f\xef\xc9\x8d\x0f\x09\xeb\x2e\xd6\x70\x7c\x8a\x91\xfc\xa6\x47\xe5\x95\x85\xa7\xe5\xec\x80\x9b\x4b\x10\xdc\x54\xd6\x40\x7a\x92\x1d\x07\xc4\x1d\xe0\x89\x89\x4d\x40\xb0\x1c\xc1\xfc\x2a\xeb\x79\x66\x2a\x7c\x2c\x4c\xce\xf0\x84\x14\xf0\xe5\x4d\x0a\xd8\x53\xd6\x85\x2e\x25\x21\x53\xaf\x8a\x92\x38\x20\x4a\x48\x38\x03\x43\x49\xa0\x29\x69\x7a\x96\x02\x93\xa8\x56\xc0\x02\xde\xa6\x9e\x95\x5e\x55\x51\x7e\x7c\x0b\xe5\x58\x9a\x3a\x90\x2a\x15\x72\xff\xe4\xab\x6f\x69\x54\x64\xa9\x57\x84\x4a\xc0\x47\x46\xa5\xce\x69\x53\x31\x9e\xf1\x5f\xe0\xc2\x58\x4a\xe2\x43\x53\x02\x7d\x2b\x2b\xd5\xd2\x75\x76\x36\xc8\x7f\xff\xe6\x69\x71\x7a\x53\x32\x56\x58\x33\xb3\x82\xa8\xb1\x4d\x19\xd5\x6e\x01\xd4\x13\x19\x88\x93\x55\x1a\x59\xf6\x47\x3a\x32\xc1\xb9\x78\xe4\x59\xe5\x5b\xf0\x7d\x6d\x53\x45\xba\x92\x65\x9b\x03\xa9\xed\x8a\xe1\x3e\xe7\x5f\x88\x3b\x2a\x5f\x87\x60\xc9\x46\x42\x5a\xa8\x80\x77\x37\x7c\x99\x7b\x71\xe5\xc5\x55\x61\x48\x16\x39\xb5\x68\xc8\xf2\xd6\x81\xe4\xc9\x81\x7e\xee\x3f\x6d\xcb\xeb\x63\xee\xef\x99\xda\xa8\xd0\x63\x7b\xe6\x79\xdc\xd6\x03\xf4\x58\x81\xd4\x16\x07\x87\xbc\x93\x62\xed\xb8\xfb\x45\x06\x55\x9f\xdb\xdc\x3f\x94\x41\x07\x38\xe1\xa1\xc6\x0b\xf4\xf3\xc0\xe0\xf4\x16\x16\xef\x83\x1c\xca\xa9\x6a\xd2\x31\xf7\x5f\xc9\x31\x99\xc7\x79\x46\x67\x05\x7e\x69\x14\x3f\xae\x1f\xf3\xe0\x89\x37\xf7\x94\x76\xf3\xfe\x63\xe5\xfe\xd0\x6f\x00\x2f\x7e\xf7\x95\x57\xea\x8e\xdb\xe6\x00\x43\x96\xea\xc8\xb2\x10\xd3\x3b\xb6\x19\x3b\xf7\x0f\x15\xdd\xc1\xa1\x8c\x8f\x5f\x63\x91\x1c\xc7\xc9\x70\x2a\x44\x4f\x07\x20\x9e\x52\x79\xeb\x0f\xaf\x5e\xa8\xbc\xa9\x78\x28\xf5\x23\x19\x2f\xf9\x32\x10\x31\xae\xad\xaf\xeb\x45\x98\x79\x7c\xf1\x9c\x88\x99\xef\xd2\x28\xb0\xd6\x3a\xc1\x3b\x6f\xe3\x8c\xde\xd0\xc8\xff\xc2\x92\xc2\xb9\x94\xee\x8e\x2c\x75\x48\x60\x7d\xee\x4f\x82\x0d\x4f\x4b\x4a\xb8\x8e\x2a\x12\x9e\xdb\x68\x9b\xb3\x16\x99\x3b\x06\x33\xaa\x47\x1c\x90\x5b\xfb\xd5\xe3\xfc\x57\xcb\xad\xe5\xfe\xbe\xe5\x89\xc0\x08\xcc\xe4\x01\x10\xb8\x87\x5f\x4d\x5d\x9b\x53\x54\x00\x60\x3a\x32\x5a\x01\x33\xee\x53\x2a\x32\xc6\x50\xec\x00\x6b\x03\xfe\x18\x6c\x91\x72\x67\xbb\xb1\x6f\x12\x9b\x52\xed\xa0\x23\x2b\x45\x7f\xe8\xe2\x98\x3f\x72\xdd\xaa\xf1\xa0\xfb\x98\x98\x07\x60\x2b\x5c\xaf\xb8\xbf\xcc\x2b\x06\x4f\xbc\x8e\xf2\x67\xed\xae\x71\x8d\x7b\x3f\xea\x1a\x3b\x78\xec\x60\x79\xc2\x03\xaa\x2e\xc8\x9d\xde\x7d\x57\x16\xe3\x1e\x9d\xba\x59\xc2\x8c\x66\x08\x48\x32\xd8\x93\x19\xda\xf0\x75\x58\x9a\x93\x2b\x19\xde\x16\xcb\x81\xcd\x07\xbf\xa3\x0d\xce\xb1\x8e\xf7\x2f\x75\x05\x8b\x92\xd9\x7d\xe3\xb3\xa2\x92\xcf\x7a\xec\xa9\x95\x02\xac\xc2\xf3\x3f\xee\x40\x48\xfd\xaa\xad\x22\x1e\x2b\x83\x4a\xbc\xa1\x29\xf1\x9b\xba\xc3\x7e\xd9\x28\x82\xb7\xd7\x9e\xe5\xb3\x2f\x63\xfe\x03\x63\xa2\xa9\x04\xa3\xad\x30\x9e\x09\x3d\x57\x31\x60\xe7\xd0\xe4\x77\x32\xe4\x90\xb9\x6c\xf0\x08\x8f\x29\x38\x25\x0b\x76\x6d\xc6\xd4\x7e\x9b\x8a\x10\xf4\xc2\x81\x12\x31\x3a\x17\xe1\xb6\x72\x2b\x5a\x4e\x2c\xef\x5f\x2c\x26\xab\xe3\x9b\xc0\xa2\x01\x83\x9b\xcf\xbe\xac\x0b\xb8\x75\x5e\xae\x0b\xa9\x4f\x3c\x93\xd8\xaa\x63\xa5\xee\x3b\x09\x3b\xe0\xfc\x02\x84\xf8\xf9\xd3\x76\xd4\x26\x6f\x7a\xe6\x71\xfe\x00\x83\xf1\x26\xd9\x77\xba\x35\x07\xf5\xf1\x17\xbe\xbc\x25\xf0\x70\x77\x9f\x07\x33\xa2\xea\x5c\x1e\xec\x1e\xa1\x64\x39\x47\x8f\xfe\xd8\x73\x4b\xc1\x0e\xaf\x7a\x94\x05\x9a\x13\x44\x2a\xb9\x76\x31\xa8\x35\x11\xba\x79\x2c\x8f\x1e\x82\x85\xa7\xce\x88\x8f\x90\x48\x77\xcd\x77\x3f\x0c\xb0\xa3\x8a\xf5\xca\x4b\x76\xce\x1d\xa0\xbe\x3c\x5b\xa0\xc4\x01\xa3\x4c\x7f\x66\xe7\x0b\x07\x54\x06\x25\x56\x4f\x7d\x59\x4a\xb6\xf3\x09\xf5\x1c\xbe\x12\xef\x61\xd4\x13\xf1\x15\x03\x5e\x34\xee\x7f\x08\xb2\x1e\x78\x9a\x42\xb5\x12\xae\xed\xcd\x1e\x9e\x31\xe2\xcc\x21\x16\xad\x41\x40\xfd\x4b\x5c\x04\xfd\x95\xbf\x5b\x90\x00\x3a\x89\xf5\xac\x43\x67\x78\xd4\xd6\x6b\xa7\xa7\x8f\xcd\xda\xd9\x29\xad\x9d\xa0\x36\x1e\xcc\xfc\x1b\x56\xa7\x1d\xc4\xf5\xe9\xb4\xb2\xfb\x7b\x25\x02\x74\x42\x51\x44\xe0\x89\x6f\xa8\xb7\x31\xf8\xe3\xf4\xae\xd4\x03\x14\x5c\x7d\xf2\x43\xd4\x83\xd3\x43\x13\x27\x32\x44\xe1\x57\x5f\x9e\x9c\x1e\x68\xbf\xd6\xe7\x9d\x37\x96\x63\x26\x42\x73\x72\x4f\x99\xaf\x45\x16\x4b\xaf\xcf\x83\x7a\x97\x77\xff\x43\xb0\x55\x7e\xf1\xdc\xd8\x13\xbd\xf1\xaf\x0b\x47\xa2\x5f\xed\xac\x45\x5b\x4d\xf2\xdd\x81\x62\x29\xca\xc8\x6e\x60\xa2\x56\x60\xe6\x8b\xbd\x7a\x97\xef\xfe\xc7\x08\x12\x45\x1d\x9f\xdb\xd2\x0c\x48\x6e\x29\x1a\xfa\xba\x82\x05\xf8\x20\x15\x7d\xe4\x37\x7a\xc0\x4b\xac\xd1\xa0\x76\x48\xbe\xf9\xca\xa3\xf1\x8e\x29\x3d\xe4\xbe\xb2\x51\xc1\x73\x6d\xa3\xd0\xb8\xbc\x04\x6a\x6c\x5a\xfb\xba\x64\x69\x48\xd3\xe7\xa1\xe7\x80\x5e\x77\xc7\x3a\xf2\xde\xd5\x81\x87\xb2\xe5\x92\xaa\xa6\xe9\xf3\x78\xfd\xe3\x6b\x04\x3b\x85\xd0\xca\x58\xd1\xdc\x2f\xe8\xe0\x4f\x5b\x43\x1a\x0e\xb5\xd0\xb8\x5d\xbd\x50\xe7\x07\x16\x92\x6d\x20\x46\x6e\x64\xfc\x57\xb1\xf0\xa1\x76\x3c\xe7\x56\x5a\xd1\x77\x1c\x5a\x70\xb8\xf4\xd0\x9c\xd7\x6f\x38\x34\x2f\x26\x45\x6f\x68\x2d\x98\x7c\x64\x15\x8d\x29\x3d\xea\xba\xa7\xad\x30\xe8\xcd\xcf\x22\xbf\x57\xaf\xec\x24\x28\xf0\x43\xf7\x41\x04\x29\x1d\x61\x17\xf9\x45\xa7\xd8\xaf\xeb\xa6\xa3\xa0\x07\x8b\x21\xb3\xde\xfc\x5d\x16\x3d\x00\xff\x79\x03\x8b\xce\x8b\x85\xae\xb6\x3a\xa0\x96\xbe\x7d\xee\xd7\xe5\x79\xf4\x13\x2c\x6f\x80\x71\x7c\x0c\xf7\xfe\x98\x78\x5d\x93\x1a\x2d\x31\x8c\x47\xb2\x4c\xd6\xff\x0d\x4d\xe2\x86\x14\x77\xed\xee\x8f\x25\x01\x56\xf3\x8e\xce\x6d\xda\xba\xaa\x1c\x53\x28\x44\x69\x0c\x37\xf0\x65\xd5\x67\x57\xf1\x00\x23\x56\x8e\x1e\x8f\x73\x5d\x6b\xe9\x53\xcf\x15\xf8\x97\x29\x64\xd0\x40\x01\x66\x3e\xd9\xd4\xdb\x37\x45\xa9\xee\x95\xaf\xeb\x14\x3d\x3c\x07\xd3\x4c\x6a\x7a\x5f\x65\x7f\xc1\x3e\xf7\xdf\xec\x15\xe9\xdd\x2f\xd0\x0b\x4c\xa1\x7c\x07\x23\x68\xbb\xc9\x0a\x08\x37\x1c\xfd\xef\x51\x7e\x1e\x3b\x94\x5f\xc4\xff\x75\xca\x5d\x59\x52\xc7\x2f\xff\x3c\xe5\x4f\x5c\xca\xff\xf8\x87\x28\x07\x27\x82\x94\x63\x7b\xa1\x43\x39\x4c\xa2\x52\x0c\x1e\x4b\xa6\x89\x77\x49\x31\x06\x7a\x95\x2c\x21\x35\xea\x3e\xc0\x9b\x98\xee\xbe\x68\xde\x14\xec\x20\x9a\x5d\x1e\xa8\x08\xf1\x88\xfb\xaf\x2c\x9b\x02\x99\xca\x03\x3c\xeb\x9d\x41\xc4\x58\x6e\x36\x81\x51\xe4\xf1\xa9\x51\x01\x33\x93\x60\x51\x6c\x1d\xe8\xcb\x11\xf2\x24\x39\x50\xfe\x50\xed\x15\x84\xaa\x9d\x13\x94\xe8\xbe\x01\x06\x7e\x78\x67\xc3\xfb\x55\xd6\x97\xdf\x52\x12\x2a\x6b\x23\x1c\x8c\x29\x24\xb4\xc1\x2b\xd3\x49\x81\x07\x6b\x2a\x42\x06\x43\x86\x08\x63\xaa\xec\xef\x17\xba\x15\x02\xce\xe7\x54\x6c\x3b\xa9\xab\x62\x5b\xa0\x3a\xbc\xd0\x98\x2a\xb0\x54\x06\xd6\xbd\x19\xda\x6c\xca\x23\x97\x42\xd3\x59\x9f\xfb\xaf\x42\xab\xba\x47\xfd\x3a\x30\xfe\xcd\x2d\x55\x8d\x2e\xf7\x17\xb2\xaa\x21\x8f\x2f\x9c\xc2\x85\x6c\x70\x52\x69\xb2\x3e\x3d\x43\xc9\x1a\xeb\x42\x9a\x3f\x46\x1a\xa8\xa0\xd2\xa3\x22\x8e\x3c\x96\x87\xdd\x9a\x9b\x7e\xac\x40\x9e\x57\x77\x65\x52\x7a\x44\x65\xdf\x03\x5f\xe7\xc1\xce\x3e\xc9\x0c\xb1\x33\xaa\xbf\xe5\x7e\xd0\xd6\x24\xf2\xc8\x9c\x37\x4e\xe0\x72\x6f\x67\x48\x1c\x0d\xa9\x73\xc5\x7f\x6d\x52\x2b\x35\xb6\xc3\x77\xc7\x81\x69\xc5\x39\xa5\x36\x01\x9d\xa5\xf8\xba\x55\x20\x20\x86\xa3\x7c\x4e\xe9\xb4\xfd\xca\x2b\x9e\x3b\x04\xa9\xf4\xa7\xd6\x59\xa4\x06\x6e\x1c\x70\xff\x37\x59\x53\xe9\xa8\x20\x10\xdd\xe1\xa3\x40\xed\xe1\x5b\xb9\x87\xc0\x91\xcf\xa6\x15\x47\xa5\x4b\xbb\xf2\x6c\xfc\x8d\xcc\x99\xed\xed\xe1\xc7\xf4\xd8\xdc\xeb\x72\xff\x31\xa0\xe5\xdb\x2d\x47\xba\x97\xc5\x6e\xad\xb5\x26\xc9\x16\x5f\x65\x46\x60\x78\x4a\x27\x61\x26\xb6\x9d\x18\xc6\xed\xb7\xeb\x6e\xbb\xca\xcc\x73\x4e\x2a\x0f\xb8\xd9\x5d\xab\x23\xf6\x33\xf5\xe0\x51\x21\xf0\xab\x39\x0d\xe6\x8f\xac\xb3\x9c\xaf\xed\x42\x98\x80\xcc\x9c\xda\x53\x51\x3b\x54\x51\x8b\x5a\x8c\xbb\xbc\x6f\xaf\xa9\xfa\x9b\xce\x64\x91\x73\x9f\xf2\x8d\xfd\xf9\xcd\x6b\x8f\x83\xe2\xda\x10\x97\x3b\x6b\x2f\x08\xd0\x50\x2f\xbe\x80\xc5\x1d\x82\x55\x5a\xae\x17\xb7\xda\x73\x8e\x36\x96\x2c\x7d\x19\x14\x4a\x63\x99\x6c\xa8\xda\x77\x95\x7f\x5f\x75\x31\x17\x78\x11\xe8\x5a\x66\xc0\x83\x1c\xbb\x5c\xbb\x24\x77\x6f\x4b\x3d\xd5\xe6\x4c\xbb\xe9\xcb\x43\x87\x40\x8a\x13\x35\x8e\xeb\x8a\xfa\xc2\xb7\xec\x86\xae\x9e\xec\x93\xbe\x73\x9d\x72\x61\xe5\xc4\x1f\xf9\xda\xd2\x1c\x3f\x47\xb5\x34\x35\x3c\x9a\x73\x52\x8d\x4a\x5f\xe6\x11\x60\x3a\x03\x1d\xda\xbe\x93\x6a\xd5\x96\xfe\x36\x96\xd5\xb1\x2e\x24\x05\x86\xdb\xb2\xa5\xce\x9f\x79\x4f\xe8\x40\x63\x6e\x1f\x1b\x2e\xe8\xcf\x10\x3f\x1f\xd0\x13\xe4\xfd\x46\xdb\xf0\x9e\x27\x74\xac\x55\x2a\xf3\x13\x5f\x8f\x38\xb5\x56\x9b\xee\x1b\x2c\x76\x1d\x98\x53\xb3\x53\xc4\x47\x59\xea\x8e\x0a\x54\x09\x4b\xf8\xfa\x59\xd7\x88\xfd\xaf\x74\xd8\x35\x34\x45\xcf\x57\x9a\xa7\xb1\x8f\xc7\xb8\x02\x60\x9e\x13\x3d\xba\xa8\xa5\xdf\x0c\xa8\x07\x0a\x2a\xd7\x01\x77\xf7\x77\x5c\xe0\x58\xd5\xa9\x79\xe7\x89\x57\x7e\xd8\xe5\x9d\x47\x81\xdd\x2a\x6d\xc4\x0a\x3b\x46\xa4\xf9\xdf\xe5\xfe\x7f\xce\xe5\x88\x21\xda\x34\xc0\x32\xf2\xd5\x21\x55\x67\xe1\x5b\x8f\x87\x54\x09\xe2\xd6\x0d\x44\x30\xf1\x78\x47\x5a\xf9\x0b\xea\x48\x90\x36\x0d\x54\xea\x5c\x76\x9c\xef\xca\x8e\xd7\x97\x64\x31\x8f\x21\x0e\xc0\xe0\x60\x08\xc2\x02\xb6\x13\x25\xeb\x90\xbc\x40\x0f\x84\x22\xe0\x41\x77\xa4\x0c\xa1\xff\xe6\xac\xad\x49\x39\x32\x2c\x1d\xb7\xf5\x99\xe5\x82\xfc\x57\x64\xab\xd3\x3e\xb9\x2e\x90\xb4\x07\xba\x36\xee\x37\xe9\x20\xf6\x40\xb6\x00\xf4\x74\x03\xa4\x52\x09\x79\x02\x60\x77\x05\xe3\xae\xe8\x13\x23\xf5\x8a\x84\x3e\xf5\x0f\xcd\x71\xac\xee\xd1\x0d\xa8\xe3\xb3\xbf\xe7\x4a\xfa\x81\xae\xe3\x53\x60\xb7\xab\x4b\xdb\xa8\x93\x42\x1a\xba\x5d\x55\x95\x79\x41\x8c\x01\x85\xb2\x8f\xe7\x31\x10\x29\x22\x78\xac\x44\x83\x5b\x37\xb1\x5e\x00\xf9\x53\x60\x8a\x9f\x1a\x48\x10\x5b\x87\x46\xa6\xbd\x38\xf6\x8a\xc6\x6e\x5f\x05\x6c\xb2\x79\xb4\x8b\x7d\x4a\xb8\x25\x02\xb0\x36\x25\x64\xc5\xc0\x26\x15\x98\x4c\xab\xc4\x0b\xab\x6a\xa1\xce\x3f\x60\x64\xf0\x15\x2b\x9a\x78\x22\xe4\xac\xa9\x7b\x48\xbb\x64\xdf\x7c\xbe\xfb\xc8\xaf\xf7\xf8\x8b\xee\x8c\x76\x30\xc1\x3f\x10\x62\xfa\x33\x72\xde\x74\x2a\x01\xb2\x6c\xfb\x3b\x7f\xd2\xc6\xa7\xc3\x36\xa9\xe4\xbe\x56\xdf\x00\x82\xd3\x45\xbb\x5e\x68\xa7\xfb\xd2\xd6\x16\xb5\x77\xd9\x36\x6f\x0a\x10\xdd\x57\x64\x46\x68\xcc\x65\xbb\x5e\xe8\x20\x0b\x64\x52\xa1\x06\xd2\x91\xf4\x22\x20\x51\xed\x4a\x94\x1e\x11\xe3\xe7\xf2\x38\x1f\x03\xa4\xc0\x08\xc4\xdc\x3a\xe6\x07\x61\xca\xdb\xf5\xc2\xab\x30\x81\xac\x9d\x49\x66\xe1\xde\x00\xb3\xd0\x6b\xbc\x45\x6a\x42\x5f\x31\xce\x5f\x50\x23\x65\xc8\xe9\x6c\xb7\x83\x08\xe8\xe3\xba\x2e\x01\xda\xe5\xfe\x3b\x73\x04\xde\xb3\x2e\xeb\xba\xb5\x3e\xd4\xb6\xc7\x7c\x50\xf3\x5a\xdb\xf8\x98\x23\x10\x45\xea\x22\x0a\xb4\x00\x7e\xf5\xad\xb2\x32\x70\xff\x25\x70\xe4\x48\xbe\x21\x22\x2d\x17\xef\x76\x48\x51\xfb\x58\x5e\x2c\x10\x19\xd2\xa1\x26\xd8\x52\x45\xd8\x79\xbb\x00\x95\x13\xd4\x69\x5b\x76\x24\x1f\x54\x72\xa9\xa7\xb5\x72\x61\xbd\x1b\x70\x66\x8e\xe2\x17\x68\x0e\x8f\x29\x73\xc1\x9e\xf6\x37\xd2\x42\x83\xbc\xeb\x38\xd3\xcf\x3d\x29\x3d\xb8\xf7\x24\x7c\xfa\x6c\x45\xed\x37\xdd\x46\x7d\xe9\xea\x66\x2f\xee\x9b\x7a\x8b\xa5\x9b\x12\x92\x7a\x57\x29\xf5\x56\xf0\x25\xb2\x38\x9c\x8a\x6c\xa5\xc5\xde\xaf\xa8\xdf\x94\x5e\xa9\xb3\x15\x31\x99\xc2\x9f\x61\x8c\x9f\xea\x4d\x35\xf8\x02\xe3\xe1\xef\x85\xb8\x82\x3f\xf8\x53\x38\x70\x41\xff\xb4\x02\x5c\x7d\xfc\x88\x3f\x30\x81\x97\x21\x7c\xca\x7f\x8c\x1a\x2e\x67\x61\x2a\xe1\xe0\x8f\x39\x23\x20\x04\x83\xb7\x70\x44\x9a\xcc\x32\xb8\x08\xf3\x3c\xc5\x8b\x48\x7d\x23\xe0\x99\x98\x9c\xc2\xd5\x28\xcc\x11\x3a\xbd\xd1\xae\xee\xec\x8a\x2b\x9c\xa4\xfe\x61\x6c\xb8\x4e\x93\x04\x57\x92\x6f\x82\xc3\xa5\xfe\x97\xa1\x35\x2a\x01\x51\x4c\xff\xfe\x8d\x1a\xa2\xa8\xb7\x47\x11\x78\xeb\x1f\x9f\xa6\x25\xe6\x39\x02\x96\x2f\xd0\xd3\x72\xf9\x38\x41\x10\x61\x7a\x86\x77\xe6\xe9\x44\xd2\x30\x4b\x45\x38\xc2\x37\x37\x33\x62\x0b\xfe\x33\x49\xb8\x6c\x32\x42\xc6\xaa\x7f\x59\x08\x79\x2b\x2e\x73\x42\x65\x24\xe4\xee\xe0\x34\xfa\xe7\xd1\x10\xa4\xe2\x86\xfe\x57\xb4\x68\x21\xfa\xe1\xb2\x9d\x48\x4c\x88\x16\xf9\xc3\xcc\x04\x04\x7f\xb8\x05\x39\x1c\x8f\xc4\x25\x3e\x57\x3f\x59\xa8\xbf\x10\x7e\xb8\x99\xe3\x7c\x3a\x21\xcc\xf0\x5b\x92\xe5\x84\x7a\x3e\x96\x3b\x1b\x12\x56\xea\x47\x5a\x90\x9a\x49\x72\x82\x9b\xa4\x7e\x79\x05\xd9\x81\x3f\xdb\x82\x38\xa4\xf8\x87\x5e\xb8\x87\x2b\xeb\x47\x34\x90\xf0\xe4\x42\xc4\x66\x93\x33\xc5\x18\x7c\x76\x35\x23\x34\xf5\x0b\xa9\x28\x03\xf6\xbb\xd2\xe6\x31\xbe\xda\x6c\xbe\x9a\xab\x37\x4a\x7e\xcd\x6b\xbc\x08\xc6\xdc\xca\x24\xfe\x48\x1a\xf1\x75\xb6\xf2\xe1\x5f\xd7\xff\xfa\xbf\x01\x00\x00\xff\xff\xee\x6e\xa4\x00\x99\x96\x00\x00")
-func initServicesFooJsBytes() ([]byte, error) {
+func initPublicAssetsLibsuiMinJsMapBytes() ([]byte, error) {
return bindataRead(
- _initServicesFooJs,
- "init/services/foo.js",
+ _initPublicAssetsLibsuiMinJsMap,
+ "init/public/assets/libsui.min.js.map",
)
}
-func initServicesFooJs() (*asset, error) {
- bytes, err := initServicesFooJsBytes()
+func initPublicAssetsLibsuiMinJsMap() (*asset, error) {
+ bytes, err := initPublicAssetsLibsuiMinJsMapBytes()
if err != nil {
return nil, err
}
- info := bindataFileInfo{name: "init/services/foo.js", size: 122, mode: os.FileMode(420), modTime: time.Unix(1730855738, 0)}
+ info := bindataFileInfo{name: "init/public/assets/libsui.min.js.map", size: 38553, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
-var _initStudioHelloJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\x2b\xcd\x4b\x2e\xc9\xcc\xcf\x53\x08\xcf\x2f\xca\x49\xd1\x48\x2c\x4a\x2f\xd6\x54\xa8\xe6\x52\x50\x48\xce\xcf\x2b\xce\xcf\x49\xd5\xcb\xc9\x4f\x87\x88\x5a\xa3\x09\x2a\xbd\xd8\x3f\xfb\x69\xeb\xd2\xe2\x92\xd2\x94\xcc\x7c\x25\xb0\xb4\xbe\xbe\xc2\xd3\x25\x2d\xcf\x27\xb4\x3d\x9b\xba\xe1\x59\xef\xba\x97\x0d\xbb\x5f\xec\x9b\xc8\x55\xcb\x05\x08\x00\x00\xff\xff\x18\x8a\xe1\xc4\x65\x00\x00\x00")
+var _initPublicIndexCfg = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xaa\x56\x4a\x49\x2c\x49\x74\x4e\x4c\xce\x48\x55\xb2\x32\xd0\x51\x4a\x2c\xc8\x54\xb2\xca\x2b\xcd\xc9\xd1\x51\x2a\xca\xcf\x2f\x51\xb2\x52\xd2\x57\xd2\x51\x2a\xc9\x2c\xc9\x49\x55\xb2\x52\x52\xd2\x51\x4a\x2f\x4d\x2c\x4a\x81\x30\x93\x41\xba\x82\x4b\xf2\x8b\x52\x91\xf8\x4a\x56\x06\xb5\x80\x00\x00\x00\xff\xff\xa5\x4b\x9b\x6c\x55\x00\x00\x00")
-func initStudioHelloJsBytes() ([]byte, error) {
+func initPublicIndexCfgBytes() ([]byte, error) {
return bindataRead(
- _initStudioHelloJs,
- "init/studio/hello.js",
+ _initPublicIndexCfg,
+ "init/public/index.cfg",
)
}
-func initStudioHelloJs() (*asset, error) {
- bytes, err := initStudioHelloJsBytes()
+func initPublicIndexCfg() (*asset, error) {
+ bytes, err := initPublicIndexCfgBytes()
if err != nil {
return nil, err
}
- info := bindataFileInfo{name: "init/studio/hello.js", size: 101, mode: os.FileMode(420), modTime: time.Unix(1730855738, 0)}
+ info := bindataFileInfo{name: "init/public/index.cfg", size: 85, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
-var _initTablesAdminUserTabYao = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xaa\xe6\x52\x50\x50\xca\x4b\xcc\x4d\x55\xb2\x52\x50\x7a\xbe\x6e\xe1\xf3\x09\x6d\x4f\x27\xce\x50\xd2\x01\x09\x27\x26\x97\x64\xe6\xe7\x29\x59\x29\x80\x14\x29\x28\x28\x25\x65\xe6\xa5\x80\x78\x0a\x4a\xb9\xf9\x29\xa9\x39\x20\x1d\x89\x29\xb9\x99\x79\x7a\xa5\xc5\xa9\x45\x4a\x3a\x0a\x4a\xf9\x05\x30\x0d\x0a\x4a\x69\xf9\x45\xb9\x68\x2a\x14\x6a\x15\x6a\xb9\x14\x14\x6a\xb9\x6a\xb9\x00\x01\x00\x00\xff\xff\x0d\x8c\x68\xf0\x77\x00\x00\x00")
+var _initPublicIndexSui = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x58\xcd\x8e\xe3\xb8\x11\xbe\xfb\x29\x2a\xea\xdd\x60\x1a\xb0\xfe\xec\x76\x77\x5b\x96\x9d\x4c\x7a\x27\xc0\x2c\x02\x6c\x63\x67\x36\x9b\x05\x02\x34\x4a\x12\x2d\x71\x9a\x22\x15\x92\xb2\xdb\x6b\x18\xd8\x63\x6e\x01\x92\x3d\xe5\x12\xec\x3d\x6f\x90\x63\xde\x64\x2f\xb9\xe6\x11\x02\x52\x92\xff\x7b\x30\xb3\x49\xc6\x03\xb7\x5c\x55\xac\x9f\x8f\x1f\x8b\xa4\xe2\x9f\x7d\xf6\xc5\xdd\xdb\x6f\xee\x5f\x41\xa1\x4b\x36\x8b\xdb\x6f\x82\xd9\xac\x07\x00\x10\x97\x44\x23\xa4\x05\x4a\x45\xf4\xd4\xf9\xea\xed\xaf\xdd\x5b\xc7\x6f\x75\x9a\x6a\x46\x66\xeb\x35\x7c\x92\x33\x91\x20\xf3\xac\x00\x36\x9b\xd8\x6f\x54\xbd\x3d\x1f\x1c\x4b\x32\x75\x16\x94\x2c\x2b\x21\xb5\x03\xa9\xe0\x9a\x70\x3d\x75\x96\x34\xd3\xc5\x34\x23\x0b\x9a\x12\xd7\xfe\xe8\x03\xe5\x54\x53\x64\xae\x4a\x91\x91\x69\xd8\x07\x55\x48\xca\x1f\x5d\x2d\xdc\x39\xd5\x53\x2e\xb6\x39\x34\xf9\x75\xbe\x34\x79\xd2\xbe\xa9\x61\xb2\xcd\xd9\xa6\x3c\x81\xdf\xb9\x77\x8d\x91\xfb\x76\x55\x11\xf7\x8b\x4a\x53\xc1\xd5\x94\x0b\xc5\xe9\x7c\xee\x40\xa1\x75\xe5\x92\x3f\xd4\x74\x31\x75\xf6\x2d\xb7\x81\x18\xe5\x8f\x20\x09\x9b\x3a\x34\x15\xdc\x01\xbd\xaa\xc8\xd4\xa1\x25\xe6\xc4\xaf\x78\xee\x40\x21\xc9\x7c\xea\xf8\xa8\x14\xd1\xca\xb7\x0a\xe5\x1b\x5b\xe5\x63\x55\x79\xc6\xc6\xfa\x8a\x55\x2a\x69\xa5\x41\x45\x5c\x4d\x1d\x07\x54\x94\xf2\xe6\x6f\x81\xaa\x98\x3a\x8d\xfa\x61\x34\x1f\x05\x18\x66\xc9\xed\x7c\x78\x73\x75\x13\x0c\x1d\x50\x32\xdd\xf9\x67\x34\x51\x35\xf5\x4a\xca\xbd\x77\xaa\xcb\xc6\x96\xff\x0e\x17\xd8\xf8\x70\x5a\xd0\x1b\x5b\x67\x16\xfb\x8d\x7c\xd6\x8b\x95\x5e\x31\xd2\xa6\xc0\xd5\x03\x86\x37\x69\x98\x91\x34\x0c\xb2\xeb\x41\x36\x1f\x75\x59\x3d\x3c\x54\x98\x13\xa7\xa9\xdb\x8e\x51\x05\x21\xfa\x20\x5e\xaa\x94\x33\xeb\x45\x52\x08\xbd\x76\x5d\x19\xc1\x28\x9c\xb8\x6e\x1e\x41\x18\x0e\x27\xae\x9b\x44\x30\x18\x0d\x26\xae\x5b\x44\x30\x18\x18\x95\x8a\x60\x7c\xe3\x85\x9f\x4e\x5c\x97\x45\x30\x1a\x7b\x57\xe6\x31\x15\x4c\xc8\x87\x12\x29\x8f\xe0\x62\x38\xbc\x09\xe7\xe9\x56\x6a\xe2\x44\x70\x11\x86\xe1\x81\xe8\x21\x97\x64\x15\xc1\xc5\x78\x3c\x3e\x94\x1b\x3e\x48\x54\x3a\x82\x84\x61\xfa\xb8\x53\x1a\x56\x1a\xf7\xd7\xe6\x73\x28\xee\x9c\xe1\x18\x13\xdc\x85\x5e\xa2\xe4\x94\xe7\x11\x5c\xcc\x11\xb3\xf0\x6a\xab\x50\x75\x9a\x12\xa5\x22\xb8\x08\x82\xf4\x76\x34\xdc\x2a\x32\xe4\x39\x91\x11\x5c\x90\xeb\xc1\xf8\x7a\xb4\x95\x57\x0c\x53\x52\x08\x96\x59\xe5\xcd\xc0\x7c\x76\x4a\xcc\xc9\x73\xe9\x25\x36\x7a\x60\x3e\x7b\xb2\x07\x8e\x0b\x23\x1f\x9b\xcf\xbe\xbc\x24\xbc\x36\x0a\xfb\x6f\xa7\x10\x32\x6b\xb3\x32\x9f\x23\xf9\x03\xa3\x79\xa1\x23\x90\x79\x82\x2f\x82\x3e\x34\xff\xbd\xe0\xfa\xf2\xd8\x50\x89\xf9\x19\xbb\xa1\xb1\x53\x05\x66\x62\x19\x41\x00\x01\x0c\x83\xea\xe9\xc4\xea\x36\x34\x66\x12\x33\x5a\xab\x08\xae\xab\xa7\x89\xeb\xce\x05\xd7\x8a\x7e\x4b\x22\x08\xaf\xac\x20\x41\x45\x1e\x0a\xd2\xe4\x33\xbc\xb5\xb2\x12\x9f\x1e\x6c\x67\x88\x20\x1c\x04\x81\x95\x29\xa2\x35\xe5\x79\x27\xbf\x19\x04\xd5\xd3\x26\x11\xd9\x6a\x6d\x5c\xba\x73\x2c\x29\x5b\x45\x5f\x54\x84\xc3\x1b\xe4\xaa\xaf\x90\x2b\x57\x11\x49\xe7\x13\x6b\x60\x83\x2e\x50\xbe\xd8\xe5\x70\x39\x61\x94\x13\xb7\x0d\x1e\x7a\xa3\x89\x2d\xbd\xb5\xda\xf1\xeb\x72\x52\xa2\xcc\x29\x8f\x82\x49\x85\x59\x66\xe8\x11\x4c\xdc\x25\x49\x1e\xa9\x76\x1b\xe7\xa5\x10\xba\x30\x0a\xe4\xa6\x91\x51\x54\x24\x9b\xb8\xa5\xf8\xd6\x15\xea\xe9\xd8\x26\x97\xb8\xb2\x9d\x6e\x22\x16\x44\xce\x99\x58\xba\x4f\x51\x41\xb3\x8c\xf0\x49\x82\xe9\x63\x2e\x45\xcd\x33\xf7\x34\x99\x76\xb6\x2f\x37\x8a\xa4\xa6\x9f\xad\x9b\xbc\xdc\x44\x68\x2d\xca\xc8\x42\x72\x61\x17\x66\xab\xd0\xa2\x8a\xae\x0c\x7e\x19\x55\x15\xc3\x55\x34\x67\xe4\x69\x62\xbe\xdc\x8c\xca\xc6\x49\x94\x0a\x56\x97\xbc\x41\x69\xd9\x60\x71\x1d\x04\x13\x53\xb9\x8b\x8c\xe6\x3c\x4a\x09\xd7\x44\x6e\x3c\xb3\xce\x90\x72\x22\xd7\x1f\xe0\xcf\x0e\x75\xa9\x26\xa5\x6a\x1d\x4c\xde\xd5\x4a\xd3\xf9\xca\x6d\xfb\x77\x27\x2e\xf1\xa9\xd9\x08\xa2\x76\xb6\x3b\xb8\x01\x6b\x2d\x76\x98\x83\x2d\x65\x29\x64\xe6\x26\x92\xe0\x63\x64\xbf\x5d\x64\x6c\xe3\x95\xd2\xfd\xbd\x37\xea\xea\x96\xb6\x0a\x6f\x24\x49\x69\x55\xe1\xa1\x22\xb4\x72\xbb\xfc\xd6\x3b\x72\x0c\x24\x29\xcf\x30\x60\xb7\x54\x3b\x1e\x74\x78\x07\x1b\x6f\x41\xa4\x32\x13\x71\x02\xd6\x01\x9c\x57\x41\xf0\x0c\xb5\x6c\x17\xba\xdc\x63\xa8\x49\x6d\xb2\x37\x7b\xde\xc0\xe6\xaa\xea\xe4\x38\xdd\xd0\x96\x77\xce\xef\xb9\x5c\x6d\xc9\xb8\x7e\x6f\x79\x1b\x8c\x0a\xc3\xc8\x33\x56\xa6\x4f\x5f\x6e\xbc\x92\xed\xa0\x64\x64\xde\x21\x99\x30\x91\x3e\xaa\x63\x36\x36\xf0\x57\xfb\xd8\x98\x31\xcf\x2e\xb2\x43\x10\x36\x9e\xa1\xd5\x21\xd1\x8e\xf9\xa3\x34\x4a\x7d\x86\x68\x1b\xcf\xec\xde\xea\x43\x58\x7a\xd6\x65\x3b\x1e\xaa\xfd\x75\xd4\xc0\x7d\xc4\x00\x23\xda\xe5\xed\x8d\xf7\xe0\x88\x18\x2a\xed\xa6\x05\x65\xd9\xfa\x98\x37\x1a\x13\x46\xd6\x2d\xe7\x83\xe0\xd3\x49\xd3\x6d\x0d\x1c\x0c\x2b\x45\xa2\xee\xe1\xdc\x2c\x16\xc3\x8f\x60\xc1\x11\xf8\x4d\x64\xd0\x72\xdd\x46\xec\x1c\x57\x4f\xa0\x04\xa3\x19\x1c\xf4\x1b\x6b\x73\xb9\x1d\xb4\x5f\xd2\xe1\xf8\xa0\xb3\xc9\xa2\x39\x95\xc7\x46\xed\xaa\xfb\x90\x18\xd9\xba\x5b\xee\x76\x25\x1c\xa7\x9f\xd4\x5a\x0b\xbe\x9d\x58\xca\x6d\x07\xb7\x80\x6f\xfb\x44\x38\xa8\x9e\x20\x34\xdb\xcd\x7b\x9b\xa9\xa5\x74\x0b\x9c\xd9\x3d\x4f\x1a\x60\x97\x7c\xb3\x7f\x35\x43\x9b\x1f\x97\xad\x2e\x0a\x26\x69\x2d\x95\x90\x51\x25\xa8\x25\x5e\x93\x5f\xbb\x8c\x4e\xc2\x5f\x84\xe4\x2a\xcb\x6e\x37\xbd\x5e\xec\xdb\xd3\xd5\xac\x17\xfb\xdd\xe1\x3b\x36\x9b\xd9\xfb\x8f\x68\x55\x9d\x30\x6a\x0e\x85\xe6\x47\x73\x30\xdc\x9e\x10\x9d\xf6\xdc\x9a\xd1\x05\xa4\x0c\x95\x9a\x3a\xdb\x76\xed\xcc\x62\x2e\xda\xb3\xe0\x37\xa2\x06\x4e\x48\x06\x5a\x00\xe1\x16\xf4\xcf\x71\x81\x6f\x9a\x43\xaa\x16\x20\x6b\x0e\xba\xa0\x0a\xcc\x29\x36\xf6\xb7\x03\x7b\xd6\x35\xcd\xa6\x8e\xd9\x61\x9c\xe6\x68\xdb\x2c\xa6\x36\x74\x11\x76\x91\x2d\xf9\x9c\xd9\x37\x28\xe0\x65\x55\xc1\x2b\x9e\x53\x4e\x62\xbf\x08\x5b\xcb\xaa\x33\x6c\xfb\xa7\x33\xfb\x6d\xf3\x00\xeb\xf5\x0a\x45\xd7\x56\xcd\xcd\xa2\xb2\x81\xfc\x6d\xa4\x33\x61\x07\x9d\xb7\xae\x4b\x3a\xb3\x97\x89\xa8\x75\xec\x17\x83\x53\x54\x9a\xd5\xd9\xc2\x65\x86\x0f\x67\x5f\x17\xa8\x81\x2a\x30\xf9\xfe\x22\xf6\x8b\xe1\x56\x59\x75\x4f\x60\x95\x06\x15\x98\x4b\x42\xfa\x20\x2a\xc2\x5d\x25\x6a\x99\x12\x83\x14\xa3\x29\x9a\x9c\x80\xd8\x5a\x41\x1b\x97\x0d\xbe\x0a\x32\xb2\x20\x4c\x54\x44\x2a\xd0\x62\xeb\x30\x95\x04\x35\x81\x25\x49\x8c\x03\xd5\x87\x2f\x5f\xbd\x79\x0b\x2f\xef\x5f\xab\x3e\x24\xb5\xa2\x9c\x28\xb5\xef\x5a\xf5\x01\x79\x06\xa5\x90\xa4\x0f\x4b\xaa\x0b\x78\xf9\x1a\x50\x6d\xfd\x61\x17\xa7\x24\x5c\x43\x85\x52\x73\x22\xbd\xae\x12\xbf\x7a\xa6\xa8\x9f\x5f\x0c\xc7\x13\x65\xaf\x0e\x90\x8a\x92\x28\x98\x4b\x51\x82\x2e\x08\xdc\x15\x26\x09\x62\xef\x56\x98\x6a\x22\xe1\x5f\x7f\xfc\x07\xbc\x58\xfd\xf3\x07\x71\xd9\xb7\x16\xa9\x90\x04\x6a\x4e\x35\x88\xf9\xd6\xa9\x51\xbc\x32\xcb\x08\xde\x4a\x9a\x4b\x2c\x15\x50\x6e\xa5\xaf\xad\xcb\xdc\x83\x57\x98\x16\xd6\x59\x81\x0a\xf4\x52\x80\xd2\xa8\x89\xfa\xf1\xbb\xef\x57\x94\xdb\x32\x57\xc8\xf3\xfe\xd6\x25\xa3\x8f\x04\x02\xab\x08\x7f\xfc\xee\xfb\x65\x21\x14\x01\xbb\xe4\xd0\x52\x01\x32\x49\x17\x44\xd9\x20\xba\x0d\xda\x07\xb5\x2a\x13\xc1\xe8\xb7\x94\xe7\xc0\x51\xd7\x12\xd9\xce\x23\x2e\x95\xf5\x67\x6e\x6c\x1a\xb9\x36\x55\xf2\x9c\x1c\x00\xd6\x3d\xef\xd1\xc7\xee\x0c\xce\x0e\xc1\x1d\x97\xcd\x06\xb3\xa7\x30\x3c\xad\x90\x77\xda\x52\xba\xde\xc8\x99\xfd\xfb\x6f\x7f\xf9\x2b\x7c\x26\xd2\xda\x4c\x92\x9d\xd6\x28\xf6\x8d\xdd\xc1\x40\x6c\x6f\x97\xe6\x96\xaa\x22\xdf\x5f\xa1\x30\x14\xf1\x52\x51\xfa\x99\x48\xcd\x05\x10\x65\x6e\x6e\xe8\x0f\x09\x43\xfe\x78\x10\x16\xe0\xb9\x61\xfb\x21\x7c\xdc\xab\xc1\xaf\xfe\x8b\x82\xfe\xf4\x03\x7c\x2e\x28\xb7\x0b\xe4\x4e\x94\xa5\xa1\xc3\xea\x63\xab\x4a\xbb\x81\x3f\xa1\xb4\xed\xd8\xff\x4f\x7d\x7f\xfe\x3b\xfc\xaa\xa6\x2c\xb3\xad\x6c\x41\x11\xee\x0a\xd4\x1f\x52\x5f\x29\xb0\xa2\x1e\xd2\xd3\x92\xe0\xd8\xe4\xd9\x7c\x63\x3f\xa3\x8b\xb6\x89\x75\x8f\x1f\xdf\x0d\xed\xd5\x15\xee\xcd\x26\xa5\x3e\xac\x2b\xda\xed\x78\x2f\x23\x6d\x76\xa7\x83\x6a\xb5\x3c\x9c\x99\x58\x67\xb3\xaf\x49\xa2\xa8\x26\xb1\xaf\xb3\x53\xe5\x81\xe0\x08\xae\xc8\xf7\xd7\x6b\xf8\xa4\x96\xcc\x2b\x84\xd2\xb0\xd9\xb4\x20\x9d\x2a\x0e\x90\x6a\x70\x39\x74\x1e\xfb\x87\xa9\x9d\xcd\xf4\x65\x56\x52\x0e\xf7\xc8\x09\xfb\x5f\x64\xeb\xa3\xf1\xe7\x33\x91\x53\xde\x3c\x9f\x4c\xfa\x1e\xaf\x42\xe7\xd8\x3d\x3c\x53\xec\xa9\xdf\xe3\xbc\x8e\xd1\x68\x59\x3c\x83\x17\x80\x69\x2a\x6a\xae\x23\xc8\x48\x29\x7e\xb9\xa5\x9a\x0f\x15\x2a\x65\xae\x51\xad\x66\x14\x8c\xc7\x70\x09\xa7\x8c\xfe\xa9\xd8\xde\xbf\x86\x2f\x85\xd0\xf0\xd5\x97\xbf\x39\x0f\xee\x73\xc5\x56\xf4\xfd\x01\x63\xff\x80\x87\xb1\xbf\x47\xd3\x73\xcb\xa3\x95\x6d\x55\xbd\x5e\xaf\xd7\xbd\x8f\x6b\xde\x95\xa5\x82\xcf\x69\xde\xbd\xe0\x7a\xa7\xcc\x59\xa4\xb7\x76\x32\xd4\x78\x87\x69\x41\x9c\x28\xe8\x3b\x58\x51\x27\xe2\x35\x63\xfd\xe6\xec\x13\x39\xbe\xd3\x6f\x0f\x39\x91\xe3\xf4\x9d\xbc\x46\x99\x35\x8f\xa9\x19\xf5\x46\x0b\x49\xf6\x7e\x3b\x51\xb0\xe9\xed\x5e\xc7\x9d\x64\x61\xc2\x1d\xe7\xd0\x03\x70\x3e\x59\xa1\x70\x22\x70\x6a\x4d\x99\xf2\xcc\x81\xec\x9e\xf2\xdc\xe9\x35\x27\xc8\xe7\xbc\x35\x6f\x67\xcf\xf9\x6b\x53\x06\xc7\xf4\xea\xcf\x48\x69\x8f\x67\xc7\xee\x62\xdf\x62\x1c\xdb\x17\xab\xb3\xff\x04\x00\x00\xff\xff\x80\xbe\x3f\xea\x32\x16\x00\x00")
-func initTablesAdminUserTabYaoBytes() ([]byte, error) {
+func initPublicIndexSuiBytes() ([]byte, error) {
return bindataRead(
- _initTablesAdminUserTabYao,
- "init/tables/admin/user.tab.yao",
+ _initPublicIndexSui,
+ "init/public/index.sui",
)
}
-func initTablesAdminUserTabYao() (*asset, error) {
- bytes, err := initTablesAdminUserTabYaoBytes()
+func initPublicIndexSui() (*asset, error) {
+ bytes, err := initPublicIndexSuiBytes()
if err != nil {
return nil, err
}
- info := bindataFileInfo{name: "init/tables/admin/user.tab.yao", size: 119, mode: os.FileMode(420), modTime: time.Unix(1730855738, 0)}
+ info := bindataFileInfo{name: "init/public/index.sui", size: 5682, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
-var _initTablesDemoPetTabYao = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x59\xdd\x8e\xd3\x46\x14\xbe\xcf\x53\x8c\xa6\xbd\x0c\x51\x12\xba\x14\xed\x2d\xa8\xa2\x17\x48\x48\x6c\x2b\xad\xaa\xa8\x1a\xec\x93\xcd\x08\xdb\x63\xec\x31\x69\x84\x2c\xd1\xaa\xa8\x2c\xdc\x50\x21\xb1\x20\xb6\x05\x21\xb6\x14\x55\x2d\xd0\xa6\x20\x58\x04\x4f\xe3\xfc\xbc\x45\x35\xfe\x8b\xc7\xb1\x27\xde\x24\x70\xd5\x1b\x48\x66\x4e\xbe\x73\xe6\x9c\x6f\xce\xcf\xec\x95\x1a\x42\xd8\x22\x26\xe0\x4d\x84\x83\xbf\x1e\x8e\x77\x9f\xe2\xba\x58\x23\x1a\xa7\xcc\xc2\x9b\x48\x48\x20\x84\x2f\x50\x4b\x17\xdf\x10\x36\x99\x0e\x86\x10\xb7\x81\xe3\x3a\xc2\xcc\x4e\x24\x11\xee\x32\xc7\x14\x5b\x3a\x98\xac\x21\xf6\x91\x8f\xfc\x7a\x84\xe0\x02\x71\xb4\x5e\x8a\x88\x84\x54\x97\x78\x06\xc7\x9b\xe8\x9b\x2b\x08\x33\x47\x07\xc7\x8d\xbf\x68\xcc\xf0\x4c\x01\x8a\xa9\x2e\x29\xc1\x3a\xb8\x1a\x46\x7e\x07\xf9\x75\xd4\xaa\xa3\x56\xb3\x13\xc2\xf9\x35\x14\x69\xc2\x06\x19\x30\x8f\xcf\x2c\xb7\x1d\x6a\x12\x67\x90\x60\x45\x8b\x3d\x20\x3a\x38\x59\x63\x6c\x07\x5c\x08\x7f\xe6\x47\x80\xb1\x64\x97\x1a\x5c\x96\x8c\x6c\x0b\x2d\x8d\x97\x50\xba\x19\x0a\x24\xfe\x1c\xdd\xfd\x77\xfc\xe4\x79\xac\x32\xde\xeb\x53\x9d\x0b\x27\x7c\x96\x2e\xfa\x75\x35\xca\xf8\xc5\x61\xf0\xeb\xcd\x85\x28\xf1\xa7\x4e\x22\x17\x47\x50\x61\x26\xd5\x22\x8f\x8a\xff\x8f\xd9\x86\xe7\x16\xeb\x38\x2e\xad\xe6\x78\x91\xae\x9f\x62\xa6\xc9\xac\x06\xb3\xc1\x3a\xcb\x74\x62\xcc\x49\x64\x10\x5b\xed\x66\xb3\x9e\xdf\xfc\x22\xa2\x4e\xfe\x47\x08\x61\x3e\xb0\x43\x47\x80\x4e\x39\xce\xff\x0e\x65\x08\x99\xb2\x2e\x27\xe3\xd7\xca\xbe\xf9\xd2\xd9\x38\xe5\x46\x14\xb8\x57\x87\xc1\x8d\x87\x78\xde\xb9\x12\x33\x38\xb9\x10\x8a\x67\x28\xc4\x6c\x37\x64\x50\xbd\x32\x57\x52\x9f\x6c\x48\x2e\xc9\x73\x68\x21\x5b\x12\x9c\x9c\x6b\x67\x77\xfb\xfe\xbb\xf1\xee\x4f\x8b\x71\xe4\x5c\x10\x3c\xbe\x33\x79\xf2\x43\x31\x2f\xda\xcd\xe6\x5a\x38\xdc\xda\xa8\x8e\x13\x5c\x3b\x98\xde\x7b\x34\xbe\xf1\x72\x74\xf5\xfb\xd5\xd1\xd6\x85\x33\xba\xfb\x2c\xb8\xf5\x5b\xb0\xff\xfb\xf8\xcd\xfb\x4a\x68\x6a\xb8\xc9\x8d\x17\x93\xe1\xeb\x75\x39\x6b\xb4\xf7\x72\xba\x37\x5c\x3d\x84\xc1\xf5\xfb\xc1\xe1\x9b\x75\xa1\x8d\xee\x0f\x47\x77\x9e\x57\x46\x9b\x4b\x6e\xcc\x06\x87\xcc\x65\x22\xdc\x65\x86\xa8\x52\x5d\x62\xb8\x30\x43\x2d\x4c\x85\x28\x9f\xc1\x4a\x32\x5b\xb5\xdc\xb6\x20\xbb\xa9\xf2\x5b\x26\xc3\x5d\xa6\xd0\x2f\xc8\x70\x55\x72\x5c\x3e\xcb\xcd\x65\x3d\x19\x36\x93\xeb\x1e\x1c\x8c\xf7\x6f\xe6\xb4\xca\xb5\x01\x06\x80\xcb\x92\xe6\x95\x12\xd8\xf1\xdb\x3b\x93\x77\x3f\xab\x61\x75\xca\x8f\xb5\xf3\x22\xab\x86\xa1\x8a\x9f\x4b\x2a\xc9\x5a\xfc\x5c\xd1\x51\x92\x27\xb8\x43\xdc\xde\x51\x5c\xb1\x25\x4a\x4f\x43\x07\x03\x38\xcc\x5a\x96\x42\xbd\xa2\xf3\xe2\x83\x28\x28\x3a\xb1\x76\xc0\xc9\xab\x49\x63\x16\x5c\x7f\x38\xbd\xf7\x58\x0a\x75\xfa\xb9\x53\xcb\xae\xcc\xba\xad\x2e\x05\x43\x77\x67\xdd\xd6\x7c\xbb\x14\x57\x30\xe9\x9e\xc6\xdd\x24\xee\xf7\xc0\x81\x86\x48\x0a\x0d\x93\x70\xad\x97\x31\x2d\x0a\x92\x7c\xf6\x34\x80\x5f\x5a\xb6\x27\x47\x10\x6b\xcc\xb4\xbd\xd0\x1b\x78\xcb\xa1\xa6\xbc\x99\x56\x66\xf9\xe4\xb6\x41\x34\xe8\x31\x23\x6a\x05\xf1\xe4\xd9\xab\xc9\xbb\xdb\xc1\xb5\x83\xc8\xe4\xd1\xad\xfd\xf1\xf0\x51\xb1\x3b\x92\x4f\xb3\x4a\x1f\x97\x38\xc5\x31\x85\xf1\x0d\xb8\xb4\xe8\x8c\x25\xb6\x46\x1d\x70\x3e\x87\xa1\x39\x66\x85\xc2\x06\xb9\x10\xd1\x58\x23\x85\x2d\xd3\x65\x62\x78\x90\xec\xe7\xf9\x9c\x97\x57\xe1\xeb\x6c\x47\x89\x2f\xf6\x57\xc1\x67\xbc\x27\x86\x02\x95\x8a\x58\x44\x79\x2b\x3b\xe5\x3d\x5f\xcc\xa8\xf3\x60\x80\xc6\xe7\x5b\x3e\x5f\xdd\xf2\xa9\xc8\x1d\xd6\xba\xe5\x09\x5d\xc2\x03\xca\xc1\x3c\x57\xb8\x85\x10\x76\x3c\x03\x92\x11\xca\x81\x4b\x1e\x75\x40\x98\xc2\x1d\x0f\x90\xdf\x51\x26\x89\xdc\x5d\xc8\xf7\x9d\x12\xf9\x33\x87\x0a\x4b\x56\xc9\xa1\xb6\xe0\xbb\xb2\x33\xa9\x6e\x52\xdc\xaa\x4a\x3e\x4d\xd4\x64\x3c\x66\x92\x1d\x10\xa3\x61\xe6\xe2\x9f\x66\x7d\xcb\x60\x44\xc7\x92\x89\x2a\xbf\x7f\x65\x87\xf2\x65\x99\xa4\x68\xbb\x24\x2e\x5d\x6a\x40\x82\x4a\x23\xdb\x64\x81\x4f\x89\x4d\xa3\x23\xd8\x0e\xd3\xc0\x15\x18\xb8\xeb\x36\xdc\x81\xcb\xc1\x6c\xc4\xaa\xe4\x02\x52\xd8\x34\xa6\x04\x0b\xd5\xa4\xcc\xcf\x38\x30\xdb\xbb\x17\x52\x93\xd8\x36\x10\x87\x58\x9a\x44\x50\x65\x2c\xc9\x4e\x25\x37\x28\xd2\x54\xe6\x5a\x4f\x6e\xff\x32\x3e\x7c\x3f\xd9\xfd\x5b\x04\x30\xb9\xc9\xad\x30\x98\x06\x0b\xf9\xf7\x49\xab\x7d\x02\x4e\xb6\x71\x41\xba\xc8\xe0\x8c\x87\x7f\xe4\x40\xda\x12\xc8\x89\x93\xad\xcf\x37\x16\x81\x04\xfb\x0f\xa6\x87\x3f\x66\x41\x8e\x4b\x20\x27\x5b\x1b\xdd\xf6\x06\x56\xa5\x94\x25\xeb\x42\xe8\xdc\x05\x01\x98\x1f\x2a\xd1\xdc\x1d\x2b\xbc\x99\x2a\xda\xc7\xd9\x6e\x89\x1a\x59\x30\xc9\xfd\x5f\x9c\xca\x55\x1c\xb9\x38\xa9\xf2\x62\x76\xf8\x2d\xe4\x93\xcb\x09\x97\x9e\x71\xd6\x90\x9e\x3f\x38\xa3\x4a\x67\xfa\xe5\x79\xd5\x03\xed\x22\xe8\x6a\x6e\xc5\x32\xab\xc4\x5f\xf3\x1c\x6a\xa9\x29\x16\x8b\xac\xa8\x65\xd1\x59\x42\x89\xb5\x70\x4c\xc5\x2e\x31\x1b\x55\xed\x67\x8e\x40\x87\xe5\x62\x0c\x96\x68\xc5\xd4\x7e\x49\x64\x56\xca\x21\xd4\x5d\xac\x28\x15\x5a\x26\x06\x1f\xb6\x99\x92\xde\xa6\x0a\xc3\xca\x2c\x83\x5a\x22\xb0\xd5\xec\x38\xdf\xa7\xf2\xa0\x56\x1e\xd9\xf8\x8e\x7d\x9d\xb8\xa9\x95\xbf\xde\x9e\x75\x2a\x27\xd2\xcc\x8b\xc4\x18\xa7\x7a\xd4\xd0\x1d\x08\x47\xe6\xe0\xed\xd5\xe0\xd6\xb3\x52\x2c\x49\xf4\xda\x3f\xd3\xbd\x3f\xab\x8e\x70\xd2\x83\x59\x59\x82\x1d\x2c\x39\xbf\xcd\xcf\x9a\xd3\xab\xbb\xa3\x9b\x4f\x4b\x5f\xe9\xc4\xe0\xde\x63\xfd\x2d\x1a\xbe\x98\xc5\x7f\x5c\x21\x42\x1d\x3e\x73\x66\xd3\x34\x37\x5d\x17\xab\x1e\xb3\xe3\x78\x9d\x26\x1c\xce\x51\xed\x22\x38\xc5\x6d\xc2\x92\x9c\xcb\x9a\xb3\xbd\xbd\xbd\x1d\xbc\x1e\x9e\x1d\xed\x5f\x3f\x3d\xda\x3b\xc0\x6a\x27\x67\xdf\x11\x0b\x9d\xac\x39\x40\x38\xe8\xdf\x4a\xdd\xc1\x47\xb7\x53\x7a\xa1\x2c\xb4\xd3\xb3\xf5\x99\x9d\x1f\xdd\xd0\x5a\xf2\xaf\x5f\xf3\x6b\xff\x05\x00\x00\xff\xff\x46\x78\xf1\x05\xc7\x1b\x00\x00")
+var _initScriptsAccountTs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x55\x5d\x6f\xdb\x36\x14\x7d\xd7\xaf\x38\xd1\x43\x21\x07\x82\x14\x0c\x7d\xb2\xe7\xa1\x41\xdb\x0c\x7d\xd8\x60\xb4\x58\x5f\x86\xa1\x60\xc4\xab\x88\xa8\x48\x7a\x24\x15\x2f\x48\xfc\xdf\x07\x52\x9f\xb6\x65\x67\x58\x9f\x12\xdf\x7b\x79\xcf\xb9\x5f\x47\x42\x6e\xb5\x71\x78\xc6\xc7\x7f\x0a\xda\x3a\xa1\x55\x8a\x0d\x7b\x20\xfe\x81\x39\x96\x62\x63\x74\x41\xd6\x62\x8f\xd2\x68\x89\xf8\xdd\x13\xd3\xb9\x69\x94\x13\x92\xe2\x55\x14\xe5\xd7\xd7\x11\xae\x71\x5b\x3a\x32\xb0\xc4\x4c\x51\xa1\xd2\xfa\xfb\x12\xa5\xa8\xbd\x6d\xcb\xac\xdd\x69\xc3\x51\x0a\xaa\xb9\xf5\xc1\xef\xb6\xcc\x30\x09\xce\x1c\x8b\x70\x9d\x47\x65\xa3\x0a\x0f\xdc\x66\xf9\x12\x92\x24\x86\xec\x72\x24\xb2\x98\xfc\x8f\xe7\x08\x30\x64\x33\x9f\x20\x2b\xb5\xf9\xc8\x8a\x2a\xb1\x54\x34\x86\xee\x02\xe8\x62\x15\x22\x5c\x63\x94\x0f\x5c\x45\xfb\x23\xa2\xa5\x50\xfc\xbf\xd2\x14\x8e\x64\xf8\xd9\x26\xb4\x33\x94\xef\x84\xe2\x89\x8f\x5b\xe2\x33\x15\xda\xf0\x9f\xad\x33\x42\x3d\xa4\x60\xea\xe9\x97\xc5\xac\x35\x54\x31\x25\x1d\x12\x4c\x99\xfb\xdf\x53\xea\x9f\x49\xea\x47\x3a\x66\xda\xce\xc5\x55\x34\x12\x1d\x79\x0f\x76\x38\xdd\x55\x7a\x48\xff\x84\xc0\x7c\x05\x81\xac\x77\x67\x03\xfa\x1a\xaa\xa9\xeb\xd5\xb1\xfd\x27\x35\xba\x46\xea\xef\x1b\xeb\xb4\x84\x65\x9e\x7f\xbb\x51\x13\xa6\xa5\x36\xb2\x5b\x86\x33\x5d\xfe\xc2\x1e\x29\xe9\xc3\xce\x35\x59\x35\xf2\x9e\x0c\x5e\xd0\xda\x03\xe7\x3c\xc7\xfb\x8a\xa9\x87\xb1\x6d\x9e\x70\x89\x21\x59\xa6\x68\xf7\xad\xf7\xb5\x75\xb6\x01\x57\x43\x84\x18\xec\x80\xab\x8c\xde\x41\xd1\x6e\x3c\x97\x24\xbe\xe5\x52\x28\x34\x96\x0c\x3e\x7d\x80\xb0\x30\xf4\x77\x23\x0c\xf1\x38\xc5\xdb\x9b\x9b\x30\x53\x60\x1f\x85\x3f\x81\x11\x15\xdf\x3d\x48\xa1\x55\x29\x8c\x1c\x47\x2a\x2c\x2c\xb9\x81\xc3\x2c\x49\x5c\xad\xd7\x98\xf5\x7c\xeb\xf2\x5d\xa6\xdb\xb9\x80\xf8\x77\xda\x8d\xd0\x4c\xf1\x53\x3e\x5c\x43\x69\x07\xc9\x5c\x51\xc5\xe9\xf0\xf2\xed\xcd\x4d\xf7\xff\x49\x6d\x5f\x59\x2d\x38\x73\x14\x36\x4f\xd7\x7c\xda\x77\xe0\xb1\xf3\x6e\x3a\x63\x32\x69\x72\x3a\x16\xd5\xbf\x49\xe7\xeb\x5c\xac\x06\xb8\x3f\xb6\x03\xd8\x01\xd0\x49\x2a\x9c\xe9\x59\xcb\xbf\xbb\xb8\x4e\xec\x92\x58\x6a\x4e\xb5\xcd\x98\x1f\x6c\xe6\x07\x9b\xf9\x0d\x8c\x47\x3e\xa1\xee\x50\x75\x9e\xe3\x4e\x1b\xc9\x5c\x20\x21\xf5\xbd\xa8\x29\x34\x93\x24\x13\x75\x34\xa1\xd2\xf9\xd6\x27\x96\x97\x97\xe1\x96\x06\x57\x78\x3d\x8d\x6d\x0d\x43\x68\x8b\x7c\xcb\x79\x98\xae\xa7\x18\x9d\xdf\xdb\x43\xfb\xf1\xb6\x9f\xd9\xea\xcd\x64\x29\x5f\x59\xe8\xdf\xda\x3a\xb4\x69\x8b\x9e\xbe\x98\xc1\xef\xaa\x7e\xf3\x06\x57\x87\xd5\xbd\x42\xe8\x02\xca\x1c\xaf\x1f\x9b\x69\xb7\x58\x5d\x63\xf3\x3c\x48\x50\x18\xb1\x0f\xc5\x4e\xb8\x4a\x37\x6e\xbc\x94\xa4\x09\x0f\x16\x11\xc0\xa9\x26\x47\xa7\x2b\xb8\xf2\x69\x66\x45\x3c\xfa\x7f\x6c\xf7\xd1\xa8\x90\x27\x97\xe5\xd7\x81\x2f\x7b\x2d\x7c\xe9\xd4\xd1\xdf\x70\x8f\xdd\x3b\xbd\x4d\xd1\x6e\x73\x64\x8e\x3a\xd5\x2f\x91\x8c\x47\xb4\x5e\x4f\x43\xfb\x81\x5d\x90\x99\x43\x91\x29\x98\xf2\x7a\x72\xdf\x76\xd2\x32\x49\x60\xf6\x44\x2a\x06\xa5\xe9\x75\xe6\x60\x32\xbf\x92\x3b\x88\x46\xc5\x6c\x15\xc1\x8b\x97\x75\xad\x0a\xaf\x2f\xf5\xd1\x7f\xac\xe3\x14\x5e\x70\x9e\x61\xa9\xa6\xc2\x2d\xf1\x67\x3c\x80\xff\x85\xfd\xa2\xbf\xaf\x03\x35\x9b\x08\x8c\x33\x4f\x5d\xe9\x03\x50\xe3\x44\x6d\xb3\xed\x8e\x67\x5f\xc9\x88\xf2\x29\x4e\x31\xca\x58\x00\x9e\xc8\x17\xb0\x47\xe1\x45\x15\x09\xf5\x4d\xf4\x1f\x86\xf6\x33\x49\xc6\x68\x03\x49\xd6\xb2\x07\x3a\xdb\xe0\xf8\x93\x0a\x43\x9f\xb4\x6d\x38\x82\x7d\xb4\x8f\xfe\x0d\x00\x00\xff\xff\x24\xe4\x59\x90\xd9\x09\x00\x00")
-func initTablesDemoPetTabYaoBytes() ([]byte, error) {
+func initScriptsAccountTsBytes() ([]byte, error) {
return bindataRead(
- _initTablesDemoPetTabYao,
- "init/tables/demo/pet.tab.yao",
+ _initScriptsAccountTs,
+ "init/scripts/account.ts",
)
}
-func initTablesDemoPetTabYao() (*asset, error) {
- bytes, err := initTablesDemoPetTabYaoBytes()
+func initScriptsAccountTs() (*asset, error) {
+ bytes, err := initScriptsAccountTsBytes()
if err != nil {
return nil, err
}
- info := bindataFileInfo{name: "init/tables/demo/pet.tab.yao", size: 7111, mode: os.FileMode(420), modTime: time.Unix(1730855738, 0)}
+ info := bindataFileInfo{name: "init/scripts/account.ts", size: 2521, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
-var _libsuiIndexTs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x5a\x5f\x73\xdb\x36\x12\x7f\xd7\xa7\xd8\x72\x3c\x1e\x39\x95\xa9\xdc\xcc\xdd\x0b\x15\x5a\xcd\xa5\xbe\xb6\x77\xb9\x26\x57\xb7\x73\x0f\xae\x47\x82\x29\x48\x62\x4c\x11\x2a\x00\xda\xd1\xd8\xfa\xee\x37\x8b\xff\x20\x29\x39\x49\xf3\x72\x99\x49\x42\x91\x8b\x1f\x76\x17\x8b\xc5\x0f\x0b\x2c\x9b\xba\x90\x25\xab\xe1\xe4\x64\x28\x68\x45\x0b\xc9\xf8\x19\x3c\x0e\x00\x2a\x2a\x81\x56\x9b\x0c\x7e\xfc\xf5\xdf\x6f\x2f\x2b\xba\xa1\xb5\x84\x27\xa8\x9b\xaa\x82\x5c\xfd\x37\x19\x00\x94\x4b\x18\xca\xdd\x96\xb2\x25\xd8\xe6\x90\xe7\x39\x24\x42\xf2\xb2\x5e\x25\x1a\x0b\x10\x09\x72\x58\xb0\xa2\x41\x9c\xf4\x8f\x86\xf2\xdd\x95\x69\xe0\x3b\x46\xc4\xfd\xc0\xc0\x3a\xbc\xb2\x16\x92\xd4\x05\xf6\x11\xe8\x12\x23\x5b\xe1\x08\x81\x56\x1b\x2b\x55\xb0\x5a\x48\x28\x6a\xc8\xb1\x41\xba\xa2\xf2\xb5\x94\xbc\xbc\x6d\x24\x1d\x26\x22\x2b\xea\x44\x75\xae\xdb\x15\x35\x9c\x9e\xa2\xf0\x37\x39\x24\x09\x3e\x1b\x13\x1f\xca\x7a\xc1\x1e\xae\x8b\xfa\x46\x1b\x69\xbd\xe7\xcc\x74\x1d\xb1\xcd\x96\xd5\xe8\xb1\x1c\x6a\xfa\x10\x34\x54\x4a\x4d\x8c\x30\xa7\xb2\xe1\xb5\x92\x98\xcd\x44\x53\xce\x5c\x3b\x14\x1b\x79\x18\xd3\x62\x3f\xd0\x7f\x6d\x3b\x35\x08\xfb\xc1\xc0\x8d\x62\x0b\x65\xc6\x19\x53\x50\x19\x18\xaf\x8d\xa0\x26\x1b\x9a\x81\x1e\x1e\xad\xb6\x41\x43\xbf\x14\x15\x13\x54\xc8\xe1\xfc\x5a\xfc\xfe\x7b\x56\xd4\xf9\xc9\x23\xca\xef\x6f\xe6\x67\x7d\x1d\x09\x49\x24\x1d\x7a\x2d\x15\x9c\x5c\x97\x22\x5d\x93\x7a\x51\x51\x2e\x20\xf7\x46\xa4\x0f\x44\x16\x6b\x78\x7a\x82\xc7\xfd\xc4\x0a\x5e\x51\xf4\x11\x11\xbb\xba\x00\x87\x3e\xbc\xa3\xbb\x11\xdc\x93\xaa\xa1\x23\x90\x84\xaf\xa8\x8c\x07\xd2\xc0\x43\x1e\xf7\x76\x7d\x47\x77\x37\xda\x55\xba\x15\x0a\xe8\x87\xa7\xa7\x40\x11\x74\x8b\x1f\x6e\x0b\xe6\xc7\xd9\xc1\x1f\x1d\x64\x65\xfd\xbb\xdb\x0f\x90\xbb\x0f\xb6\xdf\xcc\xfc\x3f\x72\xef\x85\x64\xdb\xf7\x9c\x6d\xc9\x8a\x20\x58\x16\x18\x7b\x16\x34\xb7\x00\xa9\x88\x23\x14\xbb\x3a\xdf\xfa\xf6\xc9\x08\x12\xc9\x1b\x9a\xb8\x58\x02\xd8\xdb\xde\xf6\xf6\x1d\x79\x20\xa5\x73\xd6\xd0\xf8\xd3\xaa\xed\x5a\x6a\x6b\x4a\x71\x15\xab\xe8\x7c\xe7\x3a\x98\x5a\xe5\x56\xcf\x28\x77\xa6\x3d\xa7\x14\x74\xad\x33\x58\x92\x4a\x50\xdb\x2b\x7a\xbe\xd3\x67\xe8\x0a\x1d\x96\x56\x5c\x4d\x6a\xfc\x83\x79\x69\x4b\xb8\x9e\x5b\xf1\x90\xa6\xfa\xbd\x09\xf5\x69\x27\x9a\x55\x14\xfb\xde\x2d\x8a\xce\x66\x9f\xd0\xf5\x78\x0c\xdf\x97\x62\xab\xa2\x58\xae\xa9\xf6\x24\x14\x6b\x52\xaf\x28\x14\x8d\x90\x6c\x03\xf4\x1e\x31\x25\xb3\x3a\x3a\x0d\x23\x67\x6b\x29\x9d\x1b\xde\xa8\x86\x97\xf8\xc6\xf8\x32\xd3\x90\xc9\x28\x50\x69\x41\x25\x29\xab\x0c\x1e\xe1\x8e\xee\x32\xf0\x13\x24\x8b\xe7\x49\xd6\xf2\x49\x10\x15\xce\x78\xad\x5a\xba\x30\xb6\xe8\xae\x95\x4a\x61\x9e\xe9\x9b\xf0\x38\xc8\xc2\xe7\x55\x35\xf9\x7e\x50\xd3\x2c\x9a\xbb\xd6\x97\xe8\xe5\x6f\x30\x41\x3f\x3d\xd9\xa9\xd5\xce\xbe\xf0\xcd\x81\x39\x16\xe5\x38\xab\x94\xf5\xdf\x1d\xe4\x90\xa0\x32\x59\x02\xdf\xa2\x33\x26\xc1\xc7\xfb\xbe\x24\x7f\x77\x16\x8a\x7c\x10\xac\x7f\x29\xc0\x0f\xe7\x44\x4a\x7e\x1e\xa2\x87\xf1\xec\xf3\x06\xca\x7a\x7d\x25\xdf\x75\x22\x08\xfe\x79\xf5\xee\x67\x8c\x4a\x41\x87\xf7\xce\xfd\x7b\x28\x54\x08\x0d\x69\x37\xe6\x02\x7b\xad\xc5\xfa\x5f\xf3\xf9\x7e\xa2\x87\xc6\x3a\xff\x6d\x29\x62\xef\xc7\x79\x52\x8d\x17\xe6\xa7\xfd\xe4\x6b\x0d\x88\x82\xb4\x23\x12\x74\x85\x4e\x13\xc6\xa7\xc4\x82\x19\xc1\x25\xe3\x30\xc4\x89\x5b\x42\x0e\x2f\x27\x50\xc2\x2b\x2d\x9f\x56\xb4\x5e\xc9\xf5\x04\xca\x6f\xbf\x6d\xa7\x57\x14\xc0\xa5\x01\xe5\xae\xcb\x9b\x70\xe6\xe2\xbb\x14\x17\xa6\x54\x48\xc2\xa5\xf8\x6f\x29\xd7\x43\x13\x0f\x67\xa1\x53\x7d\xb4\xf8\x26\x9c\x6e\x2b\x52\x50\x2b\x3f\x82\x24\x4c\xa2\x5f\x10\x1f\xdd\xe8\xe8\x8f\x90\x6e\x94\xa8\xc9\x88\xfe\xbc\xbe\xbb\x81\x3c\x8c\x16\xa5\xae\x9a\xd8\x81\x6e\x87\x42\xa7\x05\x13\x86\x90\x0f\x20\x67\x9e\x2c\xeb\x86\x06\xab\xc6\xa0\x07\xc2\x77\x7f\x24\x16\x5d\x24\xf4\xa6\x8a\x83\x54\xc6\x67\x0e\x95\x9f\x94\x97\x1d\x1d\x10\x92\x71\x6a\x12\xa3\xe5\x18\x8c\x53\xc7\x9a\x94\x90\x8d\x6a\x2f\xe4\xf3\x52\x80\x84\xc9\x39\x58\x22\x60\x1a\xa1\xb6\x98\x4b\xa6\xe6\xc8\xc0\x06\xc0\x6c\x26\x68\xb5\x34\xfc\x42\xbd\x1f\x8f\xe1\x3b\x29\xce\xcb\x55\xcd\x38\xb5\x9d\x9c\x18\x13\x34\xf0\x7f\x90\xd5\x0e\x9d\x69\x67\x7e\x9a\x2e\xcb\x7a\x11\x4d\xd3\x98\x6b\x77\xd1\x5b\xdc\x50\x23\x6b\xa5\x34\xb6\x82\x6c\x31\x67\xdf\x9f\xe2\xd7\x47\x3b\x34\xf0\x01\xe4\x51\x52\xde\x82\x7e\xad\x36\x01\x5f\x8e\xfe\xba\xaa\x0e\x76\x40\x37\x65\x9c\xd2\x70\xd6\x8e\x60\x41\x24\x89\x93\xdb\xa1\x45\x54\xcb\x3f\xba\x25\x13\x5b\xba\xd5\x2f\x54\xe9\xd0\x02\x18\x28\xc3\x69\xbd\x50\x3c\xb3\x4f\x9d\x11\xb0\x6d\xc8\x5a\xba\x83\xa8\x15\xe5\x2e\x42\x7e\x51\x70\x66\x20\x5d\xf3\x49\xe8\x33\x9e\x5e\x7e\xa4\x45\x68\xf4\xc1\x29\xa6\x34\x9e\x59\x7a\xa7\x7e\xe9\x26\xff\xa2\x3b\x31\x52\x49\x4c\x3f\x19\x32\x0a\x68\xf5\xc8\xf2\x41\xad\xb5\xd6\x50\xb9\xc8\x2e\x13\x3d\xd4\x39\xda\xee\x45\x7c\xdc\x76\x97\x2e\x19\xbf\x24\xc5\x7a\xd8\x4b\x04\xdc\xd2\x8c\x29\xc5\x21\xb7\x72\x2b\x42\xb9\x15\xd7\xe6\x1d\x7c\xa9\x68\x3d\xe4\x10\x24\x24\x3b\x9c\xd6\xc6\xaf\xd0\x3d\x42\x1d\xed\x3e\xcc\xab\xe8\x08\x8d\x76\x7a\x6a\x60\xd5\x66\x31\x4c\xcb\xed\x5c\x1f\x62\x85\xc4\xa0\x95\xe5\x0f\xe5\x78\x6d\xc2\x86\x0a\x41\x56\x68\x04\x4d\xed\xf3\xd3\x13\xa8\x7f\x92\xd7\x35\x50\xce\x19\x07\x56\x14\x0d\xe7\x74\x91\x4c\x5a\x00\xac\xa2\xa9\x12\x19\xce\xaf\xaf\x7e\xfb\xe9\x06\x54\xec\xc3\x8f\x66\xc3\x73\x89\x9f\x32\x38\x79\x34\xd0\x7b\x98\xbb\x0d\x58\x77\xc9\xd8\x07\x43\x81\xcf\x7e\x23\xa5\x3e\xf4\x04\xa6\x67\xb4\x18\x8a\x86\xa8\x67\x3a\x2e\x2d\x8f\x52\xbd\xb9\x4f\xe1\x3e\x6a\xdf\xbb\x09\xd5\xb3\xa0\xac\xcb\x78\xa7\x1b\x86\xf7\x6d\x59\x2f\x2e\x4d\xb6\xd0\xea\x5c\x22\x85\xcd\x2f\x7a\xaa\x03\xe6\x6b\xa7\x44\xa0\x3e\x9c\x17\xc8\x88\xd0\xd5\x49\x54\x2e\xc8\xe3\xb1\x8f\x3d\x9d\x68\x4f\xbf\x71\x0b\x11\xce\x6d\x28\x05\x70\xfa\x47\x53\x72\xba\x50\xfc\x48\x67\x33\xd4\xb4\xac\x57\xc9\x08\xba\x75\x82\x88\x74\xe1\x5e\x04\x27\xed\x1d\xdd\x89\x76\x4e\x14\x19\xfc\x42\x0b\xc6\x17\xaf\xf4\x36\x7f\x64\xb6\xfb\x17\x01\x13\xf4\xf3\x1e\xa7\x8f\x2d\x08\x5c\x63\x6c\x5e\xdf\xb4\xa9\xf2\x41\x91\x3e\x62\xe7\x3c\xe8\x59\x60\x3f\xcd\x53\x25\x9a\xae\xf0\x75\x79\xd3\xe5\x76\x3a\x37\x44\xdc\xce\x65\x9e\x6d\x23\xd6\x47\x81\x1c\xe3\xd3\x28\x8a\xf1\x9d\xc5\xc4\xe6\xf3\xb4\xd1\xa9\x22\xd2\xc6\x25\xa2\x4f\xd7\x46\xa3\xfc\x79\x6d\x44\xc6\xea\xf3\x5e\xde\x4b\x77\x61\x44\x1f\xd3\x45\x63\xb4\xb8\xb0\x0e\x26\x9b\xb2\x0e\xe0\xf4\xb2\x44\x1b\xa2\x7f\x47\xde\x83\x5b\x65\xd5\xd8\x87\x8c\xd6\x4f\xcf\x83\xda\xf4\xd3\x4e\xd6\xb7\x9a\x33\x19\x25\x50\x36\xda\x03\x98\x59\x37\x9b\x6d\xc9\x8a\x26\x5d\xe3\x7d\x89\xc8\x14\xdf\x10\xef\xa6\x4d\xf4\x0d\x7f\x73\x85\xc9\x5b\xb6\xd8\xb5\x65\xdc\x7a\x68\x3d\xd0\xf2\x90\xf2\xc9\x42\x27\x18\xdc\x8f\xd1\x9a\x72\xb3\x7e\x1b\x52\xe1\x33\x8d\xfe\xf3\x55\x96\xef\x20\x1f\xc7\xfb\x97\x88\xe0\xbb\xe2\x45\xb7\x30\xe9\x94\xef\xa9\xfa\x15\xf5\xbe\x55\x2d\xe9\x96\x40\x0f\x6d\x14\x0f\xac\x34\x3e\xff\x29\x78\xa8\x99\x84\x25\x6b\xea\xc5\x7c\xe4\x54\x09\x0c\x39\x5c\x83\x69\x71\xac\xd0\xb4\x6e\xb9\xb5\x5d\x42\xed\x86\x07\x4a\xc4\xc1\x11\x85\x06\x7e\x0e\x0a\x86\xcf\x06\xc5\x17\x85\xc4\x57\x0d\x88\x7d\x5c\xc5\x19\x44\x6b\xc3\x65\xb5\xb1\xbb\xf4\x0e\x23\x4f\xd4\xf8\x2b\xb1\x1b\x9d\x07\xcc\x12\x50\xca\xcb\xcf\x68\x7b\xfe\xa1\xb4\xed\x5d\x97\x8e\x9f\xc5\xcb\xaf\x5b\x98\xfd\x6b\xd5\x2e\xec\xf1\xb3\x9a\xf6\xd5\xa8\xed\xfe\x51\xf9\x5b\x1f\x17\x98\x12\x48\x6b\xda\x7f\x42\x45\x2b\xa8\x95\x3f\x43\x5e\x83\x4d\xc4\x55\x17\xcf\x14\xef\x82\x43\x8c\x56\xc5\x37\xc4\xb3\xc2\x2d\xd8\x1f\xa8\x44\x1a\x79\x48\xd5\x98\xf2\xf6\x97\x32\x5a\x7c\xf7\x79\x56\x1b\x73\x5a\x33\x51\xa8\x38\xce\x68\xed\xce\xc6\x96\x83\x0e\x71\xdc\x3f\xc9\x70\xbf\x84\xdf\xce\x63\xa2\xf5\xa9\x65\x38\xfb\x39\x1e\xe4\xbe\xd1\x78\x76\xa0\xc3\x61\x18\x69\x2f\x6a\xa2\x55\x2e\x77\xc6\x93\x3d\x03\xff\xbd\xde\xb0\x75\xeb\x7e\x46\xc1\x30\x40\x86\xc9\x2c\x38\x12\xc2\xc0\xd2\x1c\x56\x53\x41\xbd\xb3\x6c\x1d\xc0\xe8\xa9\x73\x4b\x8a\x3b\x5a\x2f\x66\x05\xa9\xaa\xe1\x00\x39\x7b\x23\xdd\xd9\x11\x52\xf2\x35\x25\x0b\xca\x45\x06\xd7\x31\xd1\xbc\xb9\xbe\x81\xa7\x43\x1c\xf4\x09\x7e\xd4\xcd\x10\x61\x43\xe5\x9a\x2d\x42\xcc\x34\x4d\x09\x5f\x89\x0c\x48\xbd\x1b\x9c\x65\xf0\x9e\xb3\x4d\x29\xe8\x2b\x52\xef\x2e\x02\x4a\xdf\xf0\x0a\x72\x98\x8f\xc9\xb6\x1c\xcf\x66\x3b\xc2\xc6\xa2\x29\xc7\xf7\x7f\x19\xf3\xa6\x3e\x79\x54\x9a\xee\xe7\x13\xaf\xa3\x3b\xa4\x49\xde\xb0\x5a\x62\x96\xfa\x75\xb7\xa5\x49\x06\x09\xd9\x6e\xab\xb2\x50\xc7\x0f\x63\x1c\x8c\x44\x6f\x36\x7e\xa1\x4b\xca\x29\xcf\xcc\x62\x92\x56\x4c\xcb\xa4\x6b\x4e\x97\x5a\xe4\x0d\x63\x77\x25\xcd\x7c\x1a\x29\xd4\x0b\xfd\x31\x4d\xd3\xb5\xb7\x73\xef\xb3\xe9\x96\xec\x2a\x46\x90\xda\x3c\x1a\xf3\x47\x80\x16\x6b\x19\x3f\xc1\x0c\x0b\x62\x8b\x9d\x9d\x5d\x3e\x2e\x0c\x46\x54\xd3\xe6\x54\x6c\x59\x2d\x70\xe2\xe8\x73\x9f\x25\x95\xc5\x7a\xd8\xf0\x6a\xe4\x7a\xca\x20\x79\xff\xee\xea\xd7\x64\x64\xdd\x32\x52\x1d\x64\xba\x9b\x7d\x84\x27\xe9\x47\xe9\xb0\x2c\x78\x8a\x6f\x87\x46\x0e\x89\xbf\xca\x53\x38\x56\xdd\xb3\x61\xc3\x1b\x10\xe6\xf4\x54\xc3\xb5\xb2\x89\x29\x3b\x04\xa9\x03\xa5\xce\xa2\x8d\x0e\x62\xb8\xde\x85\x24\xb2\x11\x70\x91\xc3\x5f\x5f\xbe\x6c\x13\x46\x9f\x38\x10\xd7\xe6\x0e\x37\xb3\xa7\xfd\xaf\x33\x98\xff\x83\x94\x15\x5d\x80\x64\x80\x91\x0e\x36\x7c\x54\x9a\x40\xaf\xe9\x40\x0a\x99\xc6\xc2\xf5\xa2\x9e\xa7\xc1\x73\x06\x7f\x7b\xf9\xb2\x75\xc0\x6b\x62\x38\xe5\xf4\x03\x2d\xe4\xf0\xd1\xaa\x3a\xd2\x50\xfb\xd8\xe2\x4e\x23\xc1\xaa\x7b\x3a\xf4\xb5\xa0\x4e\xf2\x3c\x9c\x38\xa7\xc1\xf3\x67\x58\x1a\xd9\x49\xad\x91\xb4\x63\x61\x6f\xca\x7d\xb6\x93\x0c\xb3\x6e\x5c\xf5\xfa\x24\x0f\xed\x31\x53\x8d\x5f\xbc\x18\xc0\x0b\xb8\xfa\xed\x27\xd0\xd5\x34\xfc\xf5\xdd\x96\x70\xb2\x09\x0f\xdb\xdc\x3b\x64\x5d\x03\x78\x31\xee\x4f\x71\xba\xbe\x37\x54\x93\xd3\xb4\xcd\x02\xa6\xfa\x14\x24\xa6\xf0\xe0\x1c\x7f\xeb\xc8\x6f\x25\x39\xcc\x52\xf8\x51\x57\xf6\xa6\x99\xd1\xf1\x9d\xfa\x19\xa6\x33\x9b\x0d\x7d\x46\x33\xfc\x75\xa8\xdc\x62\xd8\x76\x40\xd7\x91\x6c\xb3\x5b\xf4\x4e\x02\xd3\xe0\x43\x06\x27\x27\x01\xcb\x1d\x00\x9c\x01\x11\xde\x86\x89\xbd\x0d\xa1\xf1\xe3\xc3\xce\x67\x88\xba\xa3\xe8\xb8\x64\xba\x3e\xf6\xf3\xa3\x63\x97\xf4\xb4\x4f\xfc\xd5\x0e\xc3\x45\x35\x95\x74\xe4\xba\x4b\x28\xf5\x66\x44\x8f\x4f\x74\x0d\xc1\x9f\x62\xd9\xba\xc2\x51\x6b\x7e\x66\x40\xcd\xed\x15\xa5\x0a\x3c\x94\x72\x0d\xa2\x85\xfc\x8c\x49\x6d\x90\xc0\x9e\xf1\x18\x90\xdf\x2d\xe8\x92\x34\x95\x34\x03\x2f\x5c\x08\x40\x6e\x1f\xdc\x8a\xab\x7f\xdb\xbd\xb7\x13\xf0\x2f\xf2\x1c\x9a\x7a\x41\x97\x65\x4d\x17\x30\x05\xc9\x1b\x9c\x74\xb1\x54\x00\x24\xd6\xec\xe1\x2d\x23\xaa\x4e\xad\x8c\xe8\x79\xdf\x82\x54\x27\xf1\x1e\xd3\x4b\x06\xb0\xe8\xa7\xf7\x64\x45\x35\xd5\x08\x81\xe3\x2f\xc7\xa1\x43\x59\x7b\x8e\xf2\x9e\xd3\x2d\xe1\x14\x2a\xd5\xa5\xb9\x6b\x54\x19\x4d\x61\xfe\x4a\x6c\x49\x0d\x45\x45\x84\xc8\x13\xd1\x94\xe7\x7a\xa8\xce\x51\xa2\xac\x57\xc9\xc5\x5b\xfd\x90\xa6\xe9\xab\x31\xca\x5e\xcc\x6d\x54\x74\x2d\x3f\x3d\x6d\x39\x2e\x3c\x9b\x36\xb3\xac\xdf\x5f\xed\x2b\x4c\xe0\x55\xec\x75\x1b\x26\x66\x8a\xb6\xf7\x2b\x72\xfc\x16\xd3\x31\xf0\x14\xd3\x27\xc7\x46\xe1\x41\x38\x8d\xb7\x46\x66\x57\x84\x0f\x69\x59\xd7\x5a\x1e\x72\x03\x7b\x16\xc5\xab\xf5\x3f\x66\x30\xe3\xfd\x99\x59\x8a\xd5\x84\x54\x5b\x26\xcb\x32\x87\x01\x57\x0c\x2c\x0b\xc7\xf5\xf0\xf9\x87\x85\x7d\x44\x3a\x34\xd3\x15\x60\x7c\x52\xb9\x57\x9f\xcb\x84\x8a\xe1\x8e\x5a\x64\x6a\xb9\x00\x57\x65\x0a\x73\x46\x94\x32\x6c\xd9\x42\x6f\x3d\x55\xab\x68\xdb\xaa\xde\xbc\xd6\xa7\xc8\xd8\x76\xda\x7b\xf5\x4b\x49\x25\x67\xe1\xf5\x94\xc3\xa5\xa1\x4e\xeb\x6d\x73\x5b\x95\x45\x58\x13\x0e\xfa\x86\x3c\xd0\x61\x0a\x73\x5c\x09\x99\xdc\x9b\x05\x11\xdf\xee\xe7\xd0\x25\x98\x5b\x22\xd7\x98\x94\x82\xb9\x18\x96\x6d\x86\x1e\xf3\xf4\x34\x70\x47\xdf\x9d\x36\xa7\xd7\x27\xf0\x66\x35\xc9\x22\xea\xdc\xe5\xab\xfe\x54\x2a\x83\x59\x78\x04\x66\xb6\x27\xe3\x31\x6c\x28\x5f\x51\x55\xf3\x6b\x04\xe5\x36\xc6\x30\x72\xc2\x13\xbc\xa0\x0a\x78\x47\x77\x50\xd6\xd1\xf9\x1e\xd8\x4e\xd3\xf0\xcc\xc4\x3d\xc7\x97\xe1\x4c\x3d\xe7\x0b\x69\xfe\x11\x0e\xef\x4c\xfa\x99\xc8\xf2\x9e\xc2\x96\x29\x96\xfd\x47\x43\x85\xba\xe1\xa3\xae\x00\x51\x7e\xaf\x52\xd8\xff\x13\x6f\x57\xeb\x67\x7f\x56\x3c\xc8\x3e\xbb\xc4\xdc\x2c\x7c\xe8\x05\x67\x82\xea\xdb\xb8\xc6\x2c\x98\xe2\x48\xb6\xb2\x7d\xb6\x93\x16\xc2\x4c\x7a\x2b\x0e\x7d\x47\x3e\xcf\x5c\xac\x39\x5a\x55\x48\x3c\x59\x45\x38\x53\x6d\x0e\x8a\x0a\x2d\x26\x60\x9a\xb6\xea\xf5\x7b\x7d\xd4\xff\xbc\xf3\xba\x1a\x8e\xc7\xd6\x89\xba\xae\x11\x6e\x4f\x3e\xcf\x69\x07\xd7\x4d\x05\x9c\x5c\x78\x4b\xf5\xfb\x70\xed\xec\xb2\xa7\xa4\x2d\x9e\x78\xce\xbe\x3f\x4e\x96\x3a\x2d\x3d\x79\xa7\x1f\xb7\x8c\x4b\xc5\x6e\x03\x9a\xa9\xe7\x2c\x26\xb1\xe8\xb6\x31\xb6\xd2\xf7\xe1\xbc\xec\x15\xfe\xd6\x1f\x18\x8f\x3f\x30\xae\x3e\xa8\x4b\xa6\xd3\x0e\x31\x1f\x9a\xcb\x72\xa4\xde\x99\x2b\x90\xd3\x0c\x14\x9a\x72\xea\x3d\x2b\x17\x17\xd8\xfc\x0d\x53\xeb\xb4\x14\x5d\x08\xe4\xf6\x6a\x9c\xaf\xd5\x15\x3c\x53\xea\x50\x90\x93\x01\x26\x8b\xd0\xba\x90\xf7\x1b\x03\x75\xd5\x76\x1a\xdb\x88\xd3\xc8\x72\xc7\x52\x80\x20\x1b\x1a\x33\x54\x7f\x09\xd3\x33\x82\x69\xfb\x56\xb6\xd6\x05\x9e\xe0\x96\xb1\x8a\x92\xba\x0d\xab\x96\x36\x75\xd5\x57\xcd\xf6\x69\x76\x48\x10\xb9\x26\x3a\x31\x58\xdd\x0f\x0b\x5b\x54\xb7\x3a\x4d\xad\x57\xda\x92\x74\xb3\x95\xbb\x8e\x8f\xe2\x51\x35\x5e\xba\xa2\x32\x53\x95\x33\xb7\xd7\x02\x3f\x74\x6e\xac\xba\x0e\x8f\x23\xc1\x80\xfd\xd0\x06\x53\x00\x46\xc7\xcf\xe8\x4c\x21\x61\x2e\xef\x41\x53\xc3\xaf\xa0\xba\x02\xc7\xe0\xbe\x57\xab\xe8\x50\xbd\xee\x8d\xb4\xb6\x85\xa1\x97\xec\x65\xcf\xce\x74\x89\xae\xd3\x62\xc2\xdf\x4f\x06\xff\x0b\x00\x00\xff\xff\xf0\xc8\x18\x6d\xe5\x2f\x00\x00")
+var _initScriptsAiNeoTs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8f\xbd\x6a\xc3\x40\x10\x84\xfb\x7d\x8a\xc1\x95\x7d\x88\xa8\x97\x0b\x07\x52\x27\x84\x34\x29\x8c\x0b\x21\xd6\xce\x11\x6e\x57\xec\xad\x88\x83\xf1\xbb\x87\x93\xa2\x04\xe5\xa7\x9c\x99\xdd\xf9\x98\x98\x7a\x35\xc7\x05\x51\x2b\x08\x2b\xae\x38\x9a\x26\xac\x6e\xdf\x5b\xad\x6d\x10\x8f\x89\x57\x5b\xa2\x3a\x04\x42\xc0\x03\x2b\x1e\x8d\xfb\xd6\x18\x2f\xaa\xaf\x84\x50\xd3\x71\x90\xce\xa3\xca\x9c\xac\x3b\x3f\x37\xa5\xed\xe6\x4e\xc5\xf9\xec\x15\x12\xe7\xdc\x9e\x38\x4f\xf6\xfd\xa4\xf6\x87\xcd\x0f\x8d\x0b\x01\xc6\x3e\x98\x7c\xbd\x6c\xe9\xba\xc0\x3f\x5b\xf4\xbf\xe0\xa3\xbf\x26\xe0\x17\x9d\xf0\x1f\xbf\x1a\x71\xb9\x57\xc9\x3c\x45\x4f\x9f\xaa\x24\x5d\xf9\x17\xdf\x35\xc8\x6e\x51\x4e\xc5\x7b\x2b\x14\xdb\x35\x88\xdf\xb7\x23\xd9\x68\xb3\x6c\x58\xae\xd9\xcf\x98\x43\xd9\xf3\x11\x00\x00\xff\xff\x0d\xf0\x85\x9d\x77\x01\x00\x00")
+
+func initScriptsAiNeoTsBytes() ([]byte, error) {
+ return bindataRead(
+ _initScriptsAiNeoTs,
+ "init/scripts/ai/neo.ts",
+ )
+}
+
+func initScriptsAiNeoTs() (*asset, error) {
+ bytes, err := initScriptsAiNeoTsBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "init/scripts/ai/neo.ts", size: 375, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _initScriptsTestsTs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x93\xcf\x8e\x9b\x30\x10\xc6\xef\x3c\xc5\x57\xd4\x03\x44\x11\xdc\x37\x97\x8d\xba\x95\x5a\xa9\x4d\xa5\xf6\xb0\xd7\xb5\xc0\xc9\x5a\x02\x8f\x65\x0f\xa2\xdb\x88\x77\xaf\x18\x03\x09\xda\x44\x6a\x4f\x78\x86\x6f\xc6\x3f\xcf\x1f\xd3\x3a\xf2\x8c\x33\xbe\x91\xaa\x7f\x38\x36\x64\xb7\xf8\x6e\x4e\x5e\xb1\x8e\x26\x06\x1c\x3d\xb5\x48\x1f\xdf\x14\x95\xbe\xb3\x6c\x5a\x9d\xee\x92\x25\xf2\x40\xfd\x16\x3f\x75\xd0\xbc\xaf\x5b\x63\xc3\x64\x3c\xe9\x96\x9e\x14\xab\x4b\x7c\xa8\xbc\x71\x1c\xca\x8e\x4d\x13\xd2\x1d\xca\x12\x5f\x63\x92\x03\xf5\x38\x76\xb6\x92\xfb\x44\xbd\xd2\x16\x1c\x8a\x24\x29\x37\x9b\x04\x1b\x7c\xea\x02\x53\x0b\xe7\xa9\xd2\x21\xa0\xd6\x2d\x8d\xee\x37\x45\xf0\x9d\x9d\x03\x0b\xd6\x81\x43\xf1\x45\x37\x0d\x21\x95\xcf\x16\xcf\xe4\x9b\xfa\x43\x3a\xca\x1f\x9d\xf2\xaa\x85\xb1\xae\x63\x04\xf6\xc6\x9e\xc0\xaf\x7a\xe5\x10\x9d\xd7\xdc\x79\x1b\x2e\xae\x32\x59\x48\x25\x6d\x26\x21\x0f\x93\x20\x9f\x0f\x38\x27\x40\x45\x36\x50\xa3\x8b\x86\x4e\xd9\x4b\x64\x99\xb9\x4d\x80\xfe\xad\xab\x8e\x75\x8d\xde\xf0\x2b\xa6\x34\x1f\xcf\x72\x18\xb6\xb0\xd4\x8f\xe6\x81\xfa\x2c\x1f\x5e\xf2\x5d\x02\x44\x98\x28\xdd\x25\xc3\x52\x93\xcf\x73\x26\x75\x64\xed\xe5\x21\xca\xb9\xc6\x54\x4a\x38\x83\xe6\xce\x21\xc3\x2f\xf9\x3e\x9b\x3f\xca\xd7\xc8\xef\x57\x6d\xef\x9c\x48\xd7\xaf\x9d\xbd\x59\x2e\x6f\x93\x26\x67\xf9\x7f\x60\x34\xa4\x6a\x64\x72\x67\x60\xe5\x19\xe4\x17\x80\xfc\xaa\x29\x14\xe7\xee\x32\x91\xef\x38\xf6\x63\xfe\xf1\x7f\x16\xb5\x0f\x57\xe2\x1c\xe7\x7f\x26\x6a\xe3\xa0\x4f\x50\xb3\x75\x83\x65\xb5\x11\xb7\x71\x26\xc9\x42\xb4\x0a\x59\x41\x49\xe5\x84\x65\x1c\x5e\xd4\x8a\xd5\xfd\x5e\x88\x78\x7d\xe3\x54\xf9\x4b\x17\xe6\x55\xcb\x72\x59\xaa\x9b\xf9\xaf\x37\xf4\x9d\x4e\x89\x3b\x2a\x87\xe4\x6f\x00\x00\x00\xff\xff\xb7\x89\xd8\xf4\x14\x04\x00\x00")
+
+func initScriptsTestsTsBytes() ([]byte, error) {
+ return bindataRead(
+ _initScriptsTestsTs,
+ "init/scripts/tests.ts",
+ )
+}
+
+func initScriptsTestsTs() (*asset, error) {
+ bytes, err := initScriptsTestsTsBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "init/scripts/tests.ts", size: 1044, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _initScriptsUtilsTs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x52\x4d\x6b\x1b\x31\x10\xbd\xef\xaf\x78\xe8\x64\x9b\x45\x6e\x0f\x3d\xc4\x26\xe0\x82\x69\x68\xa1\xa5\xb4\xbe\x05\x13\xd4\xdd\x71\x22\x58\x49\x8b\x66\xb6\x8e\x31\xfe\xef\x45\xda\xb5\xeb\x36\x38\x1f\x17\x21\xe6\x3d\xbd\x79\xa3\x79\xd6\xb5\x21\x0a\xf6\xf8\x1e\x43\x45\xcc\x38\x60\x13\x83\x83\x5a\xec\x4c\x98\xc6\xce\x8b\x75\xa4\xe6\x45\x31\x9d\x4c\x0a\x4c\x70\x43\x02\x79\x20\x54\x5d\x8c\xe4\x05\x09\x86\xf5\x70\xb6\x69\x2c\x53\x15\x7c\xcd\x89\xb7\x88\x24\x5d\xf4\xe9\x3e\x2d\xe8\x31\x37\xd9\x74\xbe\x12\x1b\x3c\xbe\x85\xed\x68\x8c\x7d\x01\xf4\x2c\x78\xda\x62\x69\x84\x46\x63\x7d\x4f\xb2\xb2\x8e\x46\xe3\x79\x71\x38\x75\xfd\x41\x3c\xf4\xad\xc9\x05\xd4\x46\x4c\x2a\xef\x4c\x40\xec\x3c\xb8\x8a\xb6\x15\xd6\x9d\xd8\x86\x75\x26\x2f\xc9\x85\x65\x4f\x7b\xda\xff\x1f\xc6\xe0\x64\x98\x7f\xa4\xb8\x7a\x20\x67\x58\xd7\xb4\x31\x5d\x23\x7a\x19\x43\xab\x4a\x28\x21\x16\xbe\x6b\x49\xd4\x78\x8e\xe9\x14\xa9\x9e\x2d\x9d\x00\x88\xf9\xd5\x10\xec\x06\x56\x40\x8f\x96\x85\xcf\x85\x5d\xa8\xa9\x61\x9d\xe9\xba\x25\xd1\x5f\xed\x7d\x34\x42\xaa\x84\xc4\x8e\x7a\xd5\xa1\x96\x85\x7b\x27\x45\x81\x04\x7c\xf6\x4c\x51\xce\xe7\x3f\x29\x17\x00\xf0\x54\xbe\x7f\xa1\xca\x0c\xdf\x2a\x6f\x5c\x6a\xa5\x6a\xea\xbf\xcb\x06\xaf\xd6\x03\x98\xcf\x44\x5a\x05\x97\x38\xab\xe0\x60\x19\x06\x95\x91\x23\x29\xc1\x5f\x28\xc6\x5d\x22\xe4\x4b\x4f\x71\xa1\x63\x3a\x92\xd6\x05\x30\x9e\x0f\x96\x8f\x59\x89\x54\x85\x98\x62\x71\x5c\xf7\xe5\x2f\xb9\x21\x51\x25\xf6\x87\x0b\xdb\x37\xb5\xb3\xde\xb2\x44\x23\x21\xf2\x0b\x11\xf8\x98\xc8\x2f\x87\xf1\x8c\xfb\xda\x28\x64\x1b\x77\x1d\x53\xfc\x3f\x0b\xa9\xc6\xaf\xcb\x41\x16\xd1\xe9\xc1\x1b\x82\x50\x05\xcf\xd2\x7f\x03\xae\xb3\x59\x80\x9c\xb1\xcd\x2c\x2d\xd6\x85\x85\x0b\xa6\xb5\xda\xd8\x61\xed\xad\x61\xde\x86\x58\x1f\xe1\x0f\xef\xae\xae\x06\x48\x76\x2d\xcd\x86\x59\x72\xe9\x30\x7f\xde\xe5\x4f\xf3\x3b\x59\xcc\x95\xde\x63\xaa\xfc\xdd\xcb\xc5\xad\xf7\xa6\x63\xd8\xe2\xfa\x39\xfd\x4f\xd6\xd7\xaa\xc4\xfb\x12\x7b\x30\x35\x54\xc9\x0c\xb7\x2a\x4f\xa7\xd6\x48\x91\x38\x05\x68\x0f\xad\xfb\xa7\x65\xba\x25\xe9\x43\x4a\xcc\x9f\x00\x00\x00\xff\xff\xef\xf7\x72\xe0\xce\x04\x00\x00")
+
+func initScriptsUtilsTsBytes() ([]byte, error) {
+ return bindataRead(
+ _initScriptsUtilsTs,
+ "init/scripts/utils.ts",
+ )
+}
+
+func initScriptsUtilsTs() (*asset, error) {
+ bytes, err := initScriptsUtilsTsBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "init/scripts/utils.ts", size: 1230, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _initSuisWebSuiYao = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x52\x4d\xae\xd3\x30\x10\xde\xe7\x14\x9f\xbc\x82\xd2\x24\x6c\x89\x04\xd2\x13\x1c\x81\x0d\x10\x84\xdc\x78\xf2\x62\xe4\x64\x2c\x7b\xd2\x12\x50\xef\x8e\xec\x94\x94\x94\x05\x3b\xeb\xfb\x9d\xd1\xf8\x57\x01\xd4\x35\x16\xcd\x88\xb3\xc5\x69\xb6\xce\xe0\x42\x27\x18\xea\xf5\xec\x64\x4f\x5f\xb4\x74\xc3\x03\xad\x26\x3d\x92\x6a\xa0\x3e\x69\xc6\x07\x1a\x19\x4f\xde\xab\x63\x91\x9c\x87\x43\x01\xe0\x80\xf7\x03\x73\x24\xc8\x40\x88\xc2\x41\x3f\x13\x4c\xb0\x67\x0a\xe8\x39\x64\x58\x68\xf4\x4e\x0b\xc5\x2a\x3b\xea\x14\x7c\x93\xaa\x06\x69\x4a\x40\xad\x9e\xd4\xe5\xb8\xd3\x4e\x1d\xd3\x6c\xf9\xb9\xcf\x80\x0e\x6b\x11\x19\xd8\x29\x73\xab\xaa\xb7\x8e\x10\x97\x28\x34\x56\x78\x81\x6e\x0e\x81\x26\x71\x0b\x78\x72\xcb\x4d\x63\x23\xe2\xec\x3d\x07\x21\x83\x97\x6b\x31\x7b\xb1\x3c\x6d\x83\x6c\x9b\x21\x6f\xf7\x71\x20\x04\x66\x81\xb1\x81\x3a\xe1\xb0\x80\xfb\x87\xad\x52\x6c\x20\xa7\xc5\x9e\x09\xc2\x99\xf5\x81\xbf\x53\x27\x30\x5a\x74\x0e\xa8\xee\x99\xf4\xdc\x64\xa8\x81\xaa\xb7\x14\x85\xb7\xef\xfe\xbb\xe9\x3f\xa9\x7f\x8d\x55\x27\xf0\x9e\xb7\xd5\xd5\xb7\x97\x4a\x7a\xb5\xef\xcc\xd4\xb5\x00\xae\xf9\xa6\xca\xcf\x27\x67\xbb\xfb\x51\x36\x8b\x3a\xae\xc0\x98\x3e\xc9\x7a\xa6\x2f\xaf\xcb\x37\xba\xfc\xf9\x54\x7e\xfe\xd6\xb6\x65\xdb\x56\x5f\x5f\xfd\x51\x05\x1a\x59\x68\x67\xb4\x93\xa1\x1f\x19\x59\x5f\xa9\xb3\xb8\x16\xbf\x03\x00\x00\xff\xff\xc7\x83\x5f\xb9\xa3\x02\x00\x00")
+
+func initSuisWebSuiYaoBytes() ([]byte, error) {
+ return bindataRead(
+ _initSuisWebSuiYao,
+ "init/suis/web.sui.yao",
+ )
+}
+
+func initSuisWebSuiYao() (*asset, error) {
+ bytes, err := initSuisWebSuiYaoBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "init/suis/web.sui.yao", size: 675, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _initTablesAccountTabYao = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x58\x4d\x6f\xe3\x36\x10\xbd\xfb\x57\x4c\x79\xce\x0a\xdb\x00\xed\xc1\xb7\xc5\x3a\x05\x72\xd8\x45\xd1\xb8\xa7\x20\x07\x5a\x1c\xad\x89\x52\xa2\x4a\x52\x71\x8d\x85\xff\x7b\xc1\x0f\xd1\xa4\xbe\x62\x77\x9b\x60\x0f\x7b\x8a\x35\x9c\xa1\x1e\x67\xde\xe3\x8c\xf2\x75\x05\x40\x1a\x5a\x23\x59\x03\xf9\xc0\x6a\xde\x70\x6d\x14\x35\x52\x69\x72\x63\xd7\x68\x69\xb8\x6c\xc8\x1a\xac\x27\x00\xd9\xf1\x86\xd9\x27\x20\xb5\x64\x28\x6c\x18\xb5\x61\x45\xa7\x51\x91\x1b\x20\xb2\xed\x03\x80\x54\x52\xd5\xce\xa3\x2c\x65\xd7\x18\x02\x27\x38\xdd\xf8\x7d\x68\x65\x50\xad\x35\x52\x55\xee\xad\x8b\x2e\x15\x6f\x8d\x2e\x82\x6b\xf1\xc1\xae\x3f\xf8\xe5\x15\xf8\x30\x22\xe8\x51\x76\xe6\x0c\x66\x8f\x94\xa1\xb2\xcf\xfd\xb6\xad\xe2\x35\x55\x47\xbb\x23\x67\x24\x18\x2b\x2e\x8c\x77\x73\xcf\x00\xa4\x94\xa2\xab\x1b\x4d\xd6\xf0\x18\x4c\x60\xf1\xf6\x89\xd8\x1e\x5b\x24\x3d\xd4\xc1\xda\x5d\x4d\xb9\x98\x5b\xfc\x24\x77\x5c\xcc\x86\x7e\xb6\x7f\x67\xd6\x1e\x0c\x35\x9d\x26\x70\x0a\x8b\x4f\xbd\x57\xa8\xc0\x00\x6b\xfc\x05\x40\x0c\x37\x22\xd4\x8f\x41\x56\x43\x72\x93\xfa\xf1\xd2\xd5\xc5\xfd\x7d\xd7\x8a\x4e\xe7\xcb\xda\x1c\xfd\x36\x7d\x0e\xb3\xd5\xc8\x83\xc7\xc4\x9a\x03\x71\x7e\xfd\x79\x64\x8b\xcd\x27\xc9\xa8\xc8\xb6\xf1\x78\x6d\x76\xd7\x40\x3e\xca\xba\x96\x4d\xb1\xe0\xd9\xd2\xa3\x90\x94\x25\x95\x4b\x16\x77\xc7\x8d\xa2\x07\x5f\x57\x20\x35\xd5\x7f\x91\x35\x18\xd5\x61\x9a\xe1\xe8\xfd\x9b\xa7\xe2\xd7\xf3\xeb\x29\x63\x96\xaf\x67\x1a\x47\x92\x0e\xa2\xf3\xe7\xf4\xe9\x69\x35\xb4\x7a\x4b\xcf\x46\x43\x77\x2e\xa5\x97\xf2\xee\x7e\x63\x11\x1d\x38\x33\x56\x13\xbf\xbe\x9f\xe1\x8a\xa3\x67\xe2\xf8\xf3\xed\x9c\xa7\x27\x6b\xe2\x7a\xfb\x7e\xce\x35\x50\x37\xdd\xf6\x97\x39\x5f\x47\xe4\x8b\x3c\x03\xad\x53\x5f\x8b\x60\x44\x72\xd9\xa2\xa2\xd9\x4d\xe3\xcc\x95\x14\xb6\xfa\x15\x15\x1a\xcf\xfb\x4f\x4a\x62\xc8\xc5\x65\x3e\xa7\xb2\xb9\x63\xdc\x0c\x17\x33\xad\x20\xe3\xe6\xdd\xed\xd0\x65\x46\x11\x63\x4d\x5c\xa4\x8a\x6b\x74\xf1\x82\x32\xae\xd5\x46\xa2\x8e\x89\xb5\x04\x18\x8e\x13\x15\x7d\x46\x32\x9a\xf1\x6b\xa9\xa2\xb5\xf6\xb8\xb8\xc5\x4f\xc6\x82\x83\x91\xe8\xa6\x2c\xf9\xf3\x53\xf2\x94\x9d\x71\x8e\x15\x8c\x36\x5f\x50\xcd\x92\x62\x83\x02\x0d\x2e\xd2\xc2\x28\xaa\xf7\xff\x0f\x2f\x3e\xca\xa6\xe2\xaa\xbe\x80\x15\xe5\xbc\xe7\x0b\x9c\x88\x47\xfb\x5d\x20\xd5\x08\x61\x27\x30\x12\x98\x3b\x2c\x3c\x3e\x4d\x56\x8d\x94\xb2\x31\xd8\x18\x77\xf5\xec\xb9\x06\x7f\x42\xe0\x1a\xb8\x52\xf8\x8c\x4a\xf3\x9d\xc0\x9f\x60\xbb\x47\xb0\x63\x00\x1c\xb8\x10\xb0\x43\x68\x51\xd5\xb4\xc1\xc6\x88\x63\x78\x07\x2b\xc8\xcb\x85\x1d\x82\x48\xee\x93\xbe\x2c\xe7\xbc\x6c\xed\x1d\x5b\xb0\x68\x4f\xb2\x70\x5a\xe2\xc8\x6a\x68\xf5\x96\x53\x1c\x36\x2a\x8e\x82\xe9\xf3\xb0\x31\x9e\x22\xb6\x1e\x42\x72\x5f\x85\xe9\x88\x1c\xf6\xa8\xb0\xb0\x10\x0b\xfc\x3b\x49\xaa\x97\xd0\x7a\xd0\xbf\xc3\x49\x1e\x50\x60\x99\x0b\x87\xb4\x4a\xb6\x7a\x54\x51\xd2\x0a\x5a\xe2\x5e\x0a\x3f\xfd\x84\x86\x90\xbb\xf8\x39\x6c\x78\x47\x86\x74\x0a\xba\xf3\x6a\x75\xe3\x82\x4d\xdb\x33\x15\x1d\xc6\x69\x8e\x4c\x16\x21\x46\x3d\x18\x5a\x55\x59\x94\x76\x96\xe5\xa8\x3f\xc3\x84\x18\x83\xdc\xc8\xb8\x1c\xf3\x87\xdc\x49\x93\x05\x29\x67\xb9\xa8\xb2\xfd\xaf\xf8\x86\xd0\x0f\x17\x4a\x86\xd6\xa1\xa8\xa9\x29\xf7\x97\x96\xed\xbe\x69\xbb\xb9\xaa\x8d\x2a\xd5\x4f\x8f\x0b\x18\x43\x23\x5e\x00\x59\x3b\x8f\x57\x44\x19\xc7\xd8\x05\x98\x9f\xbd\x22\x67\x41\x5a\xc5\xbe\x22\xc4\x30\x4b\x2f\x00\x0c\xa3\xc7\x02\x44\xed\x3c\xde\x44\xa1\xfd\x1c\xf4\x5f\x34\x7a\xd7\xd8\x2b\x8e\x65\x2a\xc0\x60\x5b\x56\xcf\x86\xeb\x71\x28\xeb\x8d\xd7\x69\x68\x79\xb0\xbd\xdf\x4c\x27\x3a\x7e\x84\x39\xeb\x33\xc7\x43\x3e\x84\x6f\xf1\x1f\x93\x1d\x22\xe6\x7f\xc4\x8b\x8c\x0d\xf1\x10\xfd\x58\x33\x41\x80\xf9\xeb\xd9\xe4\xf7\x65\xc4\x35\x55\xf3\x2d\xfd\x72\x51\xc1\x7f\xdc\xb7\x93\x65\xfc\x46\x19\xfd\xc8\xea\x75\x5d\x0c\xfd\x07\xdf\x6b\x48\x6e\xa6\x93\x5d\xd9\xc1\xea\xf0\x99\xf9\x06\x08\x63\x17\xbb\xaa\x7b\xb9\x49\xf3\x2d\xe0\x85\x0e\x76\x65\xe7\xd2\xc3\x46\xf2\x86\x97\xd7\x52\x23\xba\x71\xff\xdc\x90\xee\x64\xba\x2b\x4b\xd4\xfa\x9b\x9a\x53\xba\x5f\xf8\x54\xfb\xbe\xef\xa0\xef\xa9\x4b\xdb\x6f\x98\xd5\x69\xf5\x6f\x00\x00\x00\xff\xff\x92\xd3\x97\x9f\xdd\x15\x00\x00")
+
+func initTablesAccountTabYaoBytes() ([]byte, error) {
+ return bindataRead(
+ _initTablesAccountTabYao,
+ "init/tables/account.tab.yao",
+ )
+}
+
+func initTablesAccountTabYao() (*asset, error) {
+ bytes, err := initTablesAccountTabYaoBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "init/tables/account.tab.yao", size: 5597, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _initTsconfigJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\xcd\x41\x0a\xc2\x30\x10\x85\xe1\x7d\x4f\x31\xbc\x65\x29\x8d\xba\x50\xc8\xca\x1b\x78\x00\xe9\x22\xa6\x83\x06\x5a\x13\x32\x83\x50\x24\x77\x17\xa3\xb4\xcb\xf7\xf3\xc1\x7b\x37\x44\xf0\x71\x4e\x61\xe2\x7c\x49\x1a\xe2\x53\x60\xe9\x9b\x89\xa0\x2e\xdf\x59\x61\x09\x2c\x47\x74\xbf\x98\x9c\x3e\x36\x43\x84\xf3\xe2\xa2\x69\x61\xe9\x8a\xde\xf4\x2f\xf1\x71\x64\xa3\x4b\x62\x31\x2d\x86\x6e\x65\xe2\x73\x48\x2a\x2b\xdd\xf6\x50\x4d\xf9\x1f\x4c\xe1\x56\x05\xcb\x61\xb7\x3f\xa1\x23\x8c\x71\xae\xa6\x34\xa5\xf9\x04\x00\x00\xff\xff\x89\x37\xd0\xc0\xb2\x00\x00\x00")
+
+func initTsconfigJsonBytes() ([]byte, error) {
+ return bindataRead(
+ _initTsconfigJson,
+ "init/tsconfig.json",
+ )
+}
+
+func initTsconfigJson() (*asset, error) {
+ bytes, err := initTsconfigJsonBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "init/tsconfig.json", size: 178, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _libsuiAgentTs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x3b\x5d\x73\x1b\x39\x72\xef\xfe\x15\x6d\x96\x4b\x19\x3a\x5c\xd2\xde\xbb\xcb\x03\xb5\xb4\xd6\x25\xef\xdd\xea\x52\xde\x75\xad\x7c\x95\x4a\x39\x2a\x19\x9a\x69\x8a\x58\x0d\x01\x1e\x00\xea\x23\x12\xff\x45\x5e\x52\x95\xaa\x3c\xe5\x25\x2f\xf7\xaf\xf2\xf1\x2f\xae\xd0\xc0\xcc\x00\x18\x0c\x25\xdf\xed\xc3\xe9\x45\x24\xd0\xdd\x68\xf4\x77\x03\xe0\xec\xe5\xcb\x67\xf0\x12\xfe\x99\x49\x78\x7b\x02\x6f\x2f\x51\x18\xf8\xb0\x55\x08\xbf\x67\xd7\xec\xb4\x54\x7c\x63\xe0\xf4\xdd\x3f\x5a\x98\x6f\xd9\xd6\xac\xa4\x82\xf7\xec\xf6\x9b\x35\xbb\xfd\x96\xff\xf1\x8a\x4d\x4b\xb9\x7e\x43\x93\x6b\xc6\x85\x61\x5c\xa0\x82\x95\x31\x1b\x3d\x9f\xcd\xee\x98\x64\x9b\x8d\xb6\x30\xcf\xe0\xe5\xec\xd9\x33\xbf\xd8\x7b\xd4\x9a\x5d\x22\x68\xa3\xb6\xa5\xb1\x8b\x2d\xa5\x02\x46\x6b\x2b\xd4\x1b\x29\x34\x6a\xc2\xe0\xc2\xa0\x5a\xb2\x12\x1d\x67\x0d\xe2\xfd\x33\x00\x83\xb7\x66\x6e\x49\x70\x71\x79\x68\xbf\xdf\x6d\xf0\x28\x1c\xa8\xa4\xb0\x03\x17\x52\xd6\xc8\x84\x1d\xe1\xfa\x5c\xa0\x8c\xc7\x98\xd6\x5c\x1b\x26\xcc\x39\xaf\x22\xf4\x6e\x42\xb0\x35\x0e\x4c\xb1\x6b\x66\x98\x8a\x26\x37\x4a\x6e\xf4\xd1\x1c\x7e\xc2\x52\xaa\xea\x1b\x37\x31\x01\x26\xee\xde\x10\x9b\x52\xd6\xe9\x52\x02\x6f\x62\xa6\x2a\xac\x0d\x8b\x87\x14\xea\x6d\x6d\x8e\xe6\x96\x90\x5b\x06\xaf\xb9\xdc\xea\xf3\x81\x0d\xec\x5a\x69\xbf\x93\x02\x01\xaf\xad\x70\x2b\x66\x58\x27\x75\x92\xb0\x15\x9b\x13\xae\x85\x7b\x67\x01\x16\x91\xb0\x3f\x9d\x1d\xb6\xa4\xbe\x23\x2a\x2b\x26\xaa\x1a\x15\x2c\xb7\xa2\x34\x5c\x0a\x12\x7d\xaa\x2f\x8f\xfd\xbd\x87\xb5\x1a\x2b\xd6\x6e\x6c\x1e\xd1\x1f\xcf\xe1\x5a\xf2\x8a\x38\xee\xd0\x2d\x33\x39\x5c\x3d\x8f\x99\x0d\xb1\x23\x26\x89\x27\x30\x2b\x66\xa0\x64\x02\x2e\x10\x6a\xae\x0d\x0a\xac\xc0\xc8\x64\xe7\x0e\x63\x01\x23\xbf\xc8\x08\x1e\x60\x64\xcd\x67\x34\xb0\x75\x0d\x8a\xb4\x4b\xab\x24\x1b\x27\xc0\xef\x1b\x38\xcb\xbb\xa7\x7a\x34\x4f\x84\x12\x18\x69\xb0\x5d\xda\x4a\x59\x33\xad\xbd\x37\xde\x93\xb6\xf9\x35\x33\x08\x2b\xa9\x4d\x6c\x6c\x6e\xdc\xc8\x2b\x14\xb9\x09\xd2\xbb\x9e\xc7\x5c\x85\x00\xa1\xf9\xe4\x08\x94\x2b\xd6\x73\x8d\x96\x78\x43\xf8\x54\x6e\x55\x89\xf0\x00\x62\x5b\xd7\x11\xb6\x14\xce\x4f\x07\xbc\xa1\x81\xd3\xbc\x46\x61\x3a\x8b\x87\x05\x2c\x59\xad\x31\x84\x59\x71\x6d\xa4\xba\x3b\xbf\xe6\x9a\x5f\xd4\x98\x03\x7e\x06\x40\xea\x02\x78\xe9\x85\x57\x4a\xe1\xec\x5d\x2a\x37\xfc\xed\x86\x29\xb6\x06\xb9\x21\xcb\x75\x40\x5c\x70\xc3\x59\xcd\xff\x95\xd1\xa0\x9b\xd3\x04\x3f\x7b\x06\x21\x8d\x22\x27\xae\x89\xc7\xf0\xa6\xf9\x23\x7d\x19\x93\xde\x00\xcc\x8a\xeb\xa9\x55\x1b\x2c\x3c\x98\xfb\xf6\xf0\x00\xa3\x19\xdb\xf0\xd9\xf9\xf9\x1d\x93\x33\x81\x72\x74\xd8\x21\x90\x3e\x3b\x0c\xfa\x1a\x4c\x3b\xad\xc2\x02\xee\x77\xc1\x68\xc8\x1b\x2c\x22\xcd\x06\x50\x5e\xa1\x1d\x71\x3f\x10\x92\xb7\xa4\x1b\x55\x36\x68\x4e\x93\x01\x9a\x1f\x78\x78\x20\x2e\x08\x72\x36\x83\x53\x34\x5e\x9b\xb0\x96\x15\x4e\xa0\xc2\x25\xdb\xd6\x06\xb8\x06\xa3\xb6\x48\x70\x7c\x09\x85\x27\xe3\x61\x9f\x2f\x16\xb0\x15\x15\x2e\xb9\xc0\xaa\x91\x9d\x5f\xda\x83\x2c\xfc\x18\x40\x8c\xba\x58\x2c\x88\x32\x3c\x3c\xec\x81\x18\x59\x90\xd1\x7e\x98\xd7\x8f\x90\x78\x3d\x6a\x67\x01\x8e\x9c\xd1\x05\x23\x73\x62\xc3\xc9\x6c\x17\x09\xc4\x9b\x2e\x78\xd3\xed\x4b\xa6\x23\x15\x88\x26\x31\xf8\xbd\x32\x4a\x61\x7b\xc2\xea\x01\x0c\x4b\x2d\x07\x3a\x28\xbe\x1c\x70\x4e\x8e\x59\xa2\x89\x40\x5b\xfb\x68\xe4\xd9\xc6\x00\x2b\x50\x2f\xd4\xd6\xc1\x7f\x87\x02\x15\x85\x30\x0a\x52\x70\xf2\xce\x7b\xb8\x42\xb3\x55\x42\xc3\x5b\xd8\x0a\xfe\xc7\x2d\x36\xd3\xc0\x05\x98\x15\x15\x1b\x6b\x66\x40\x2e\x5d\x70\xfb\x64\xf8\x1a\xb5\x61\xeb\xcd\xd9\xf9\x27\xc5\x44\x25\xd7\x67\xad\xef\x37\xc1\x67\xcd\xae\xf0\x78\xc5\xcc\xc9\xbb\x62\xdc\xf8\xbd\xd7\x00\x85\x07\x70\x88\xb0\x80\xf7\xcc\xac\xa6\xee\x5b\x31\x9e\x1a\x79\x4a\xb0\xc5\xaf\xfe\x61\x3c\xd5\xdb\x0b\x87\x59\x7c\x3d\x81\xd7\xbf\x19\x1f\x06\xf8\xe4\xce\xef\x98\xc1\xa9\x90\x37\x85\x9f\x72\x3b\x81\xcf\xc4\xe7\x8b\x7b\xa3\x77\xe7\x2f\xee\x1d\xed\xdd\xe7\xc3\x9e\x44\x7e\xc2\x4b\x9b\xe3\x14\x30\xe1\x13\xbe\xcf\x57\x51\xe8\x73\x33\x5d\x96\x04\x23\x7d\x6e\xa4\x32\xac\xe8\xb2\xa0\x54\x3e\x0d\x8e\x23\x02\x4d\xfe\xff\x6d\x9b\xff\xa5\x1f\x23\xf1\x12\xfd\x44\x15\x1f\x57\xd8\xc6\x5a\x1b\x93\x4a\x57\xf2\x95\x2b\xc6\x05\x17\x97\xad\xb8\x7f\x14\xdf\x7c\x07\x78\x6b\x50\x54\x3a\xc8\xcd\x6f\x0a\x12\x07\x51\x9e\xc3\x77\x13\xfa\xe6\xd9\x98\x43\x87\xd1\xb1\x7e\x94\x16\x20\x51\x8e\x7d\x06\x30\x9e\x07\xe9\xd5\xb9\x9d\x13\x0c\x19\x66\x43\x27\xf1\x32\x17\x77\xa7\x7e\x16\x16\xad\x28\x98\xce\xe4\x76\x80\x1d\x60\xad\x31\x25\xee\x44\x9a\xa5\x6c\xa7\x62\xb2\x51\x65\xd0\x38\x42\x6b\x19\x16\xb7\x6f\x07\xc7\x56\xc0\x35\x29\x83\x8a\xea\x56\xbc\x6e\xa2\x18\x07\x9b\xf6\x01\x3f\x65\x47\x4f\xcb\x5a\x6a\x6c\x0c\x31\x9f\x18\xfa\x3e\x79\xcc\x6a\xb7\x6e\xd3\x4b\x44\x86\xc3\xc5\x66\x6b\xe0\xa3\xcd\x1a\x8d\x08\xa5\xf2\xa3\xf2\xe2\x67\x2c\x0d\xdc\x70\xb3\xa2\xd2\x1e\x98\xa8\x7c\xec\x60\x35\x30\x63\x58\xb9\x5a\x5b\x19\x45\x14\x99\xba\xd4\xf0\xb6\xaa\x78\x03\xa7\x2e\xb7\x04\x65\x6d\x72\x63\x6b\x28\x23\x33\x72\x60\xfa\x4e\x94\xc4\x6c\x41\xab\x7b\x5b\x38\xb1\x9f\x27\x30\x9d\x4e\x2d\x5d\x2a\xb5\x3f\x9d\x8d\xe7\xf0\x41\xc9\x35\xd7\xf8\x8d\xad\x5a\xbc\x9c\xbc\xfc\x05\xde\x34\xb3\x45\xa1\x50\xcb\xfa\x1a\x27\xa0\xd0\xee\x65\x0c\x8b\x37\xad\x54\x9d\x93\x27\x45\x6c\x5b\x61\xc3\x02\x6c\x99\xed\x40\x6b\x34\x50\x33\x6d\xde\x36\xf9\xdb\xe6\xf9\x36\x2c\xc6\x05\x88\xd5\x85\xb5\x12\x1f\x90\x5c\x01\x36\xc9\x00\xdb\x1e\xe6\x0b\xc0\x5d\x5f\xf3\x08\x42\x93\xf5\x29\xcd\x7d\x50\xb2\x44\xad\xbd\x36\xa9\x38\x70\x02\xf7\x3b\xf2\x23\xa1\xa4\x8f\xdd\x50\xb3\x6f\xb2\xc6\xbb\x0d\xca\xa5\x27\x42\xce\xe2\x56\x0e\xdc\x05\x1a\x52\x56\x2c\xbe\x0b\x74\xf0\xbb\x86\x92\x77\xbb\x47\x31\xa6\x64\x68\x2d\x9a\x63\xc1\xcd\x04\x06\x07\x07\x07\xd0\x1b\x9c\xd6\x28\x2e\xcd\x0a\xde\xc0\xab\x90\xb5\x76\xa9\x88\xc0\x22\x83\xbf\x66\x9b\xa2\xe8\x06\xc8\x58\x8a\x90\x10\x80\xd3\x59\x07\x33\xb5\x03\x93\x08\x64\xab\xea\x08\x62\xab\xea\x18\xc0\x0a\x34\x82\xb0\x03\x31\x88\xe7\xf8\xbc\x07\x1a\x4e\xc4\x28\x17\x77\xc6\x1a\x71\x00\x4b\x23\x09\x5d\x85\xcc\x60\x75\xce\x4c\x4c\xb5\x1d\x8e\xc1\x97\xbc\x46\xb2\xe9\x00\xd6\x8f\x25\x74\x5d\xbd\x1a\x13\x75\x63\x31\x60\xec\x2a\x01\x74\x38\x11\xa3\x54\xa8\xe9\xc8\x83\xaa\xf9\x00\x23\x18\x0f\x11\x76\xe3\x71\x67\x3c\xbb\xc6\xfa\x02\xaf\x78\x5b\x55\x4d\x0f\xd4\x44\xa2\xd8\x35\x5c\x5c\xe8\x8a\xeb\x7b\x1b\x7d\xc2\x82\x7b\xe2\x62\x5c\x6b\xa4\x01\x82\x30\x3f\xb1\x1b\x58\x00\x8a\x52\x56\xf8\x87\x9f\x4e\x8e\xe5\x7a\x23\x05\x0a\x53\xfc\xfe\xf4\xc7\x1f\xa6\xce\x75\xf8\xf2\xae\xf0\xe0\x1d\xb7\xd1\xb2\x5f\x44\xe5\xb6\x47\xa5\xe9\x55\xba\xc6\x25\x9e\x6f\x2a\xe8\xa8\x98\x3f\x6a\x2a\xca\x39\x8c\xa8\xca\x1b\xc5\x48\xbd\x72\x31\x5f\xe6\x3e\x46\xc6\xda\xc5\x49\xd5\x60\x37\xad\xcf\xc3\x83\xfb\x1e\x16\x75\x31\x5e\x6b\x21\x1f\x28\xcd\x2c\xe0\xf3\x41\x68\x34\x8b\x17\xf7\xbd\x8e\xcb\x15\x64\xc1\xb6\x0d\x33\x5b\x7d\x8e\xa2\xda\x48\x4e\xfb\xff\xec\xb1\x6c\xff\xb7\x9b\xb9\xf9\x23\xaf\x9a\xc5\x8b\xfb\x4e\xa7\xbb\x03\x2f\xea\x66\xf4\xd6\x8d\x92\x70\xed\xda\xf6\xff\xee\xc0\x6f\xc7\x02\xd1\x36\x77\x2f\xee\x63\xbe\x53\x96\x86\x78\x39\x2a\x6b\xde\x38\xfa\xe2\x67\xad\xab\xab\x83\xbf\x82\x2d\xa7\xe1\xc5\x8b\x7b\xf7\x61\x77\x90\x28\x6d\xf1\xe2\x3e\x19\x79\xe2\x56\x62\x03\xa1\x9a\xe8\x3b\xa5\xa4\xa2\x5e\xd7\x26\xf4\x02\xed\x57\xca\xdb\x51\xf2\x05\x30\xea\x2e\x8d\xd2\xba\x3b\x6b\xb4\x04\x6e\x18\x37\xb0\x44\x53\xae\x8a\x44\x73\x13\xb8\x4f\xe3\x5a\x85\xc2\x70\x56\xeb\x39\x8c\xb8\x28\xeb\x6d\x85\xa3\x38\x8e\xac\x90\x55\xa8\xf4\x1c\xee\xe1\x6d\x59\xe2\xc6\xcc\x61\xc4\x36\x9b\x9a\x97\x74\xc4\x30\xfb\x59\x4b\x31\x82\x5d\x1c\x4b\xda\x1d\x82\x4f\x45\x0d\x7f\x53\xc7\x11\x25\xc4\xaf\x5f\xbd\xb2\xf6\x9b\x9f\x7a\x3d\xf6\x85\x49\x44\xca\x6d\xb6\x72\x47\x7b\x6e\xa3\x2d\xba\x65\xa4\x18\x4f\x4b\x66\x37\x5e\xe4\xb2\x50\x7b\x68\xf7\xf9\xfb\x8f\x1f\x3f\xc0\x8b\xfb\x64\xe9\xdd\xe7\x5e\x44\x0c\xbe\xdb\xd4\x4f\x5a\x79\xdf\xd6\xcc\xa3\x1f\xd0\xdc\x48\x75\xe5\xc6\x27\xb0\xa9\x91\x69\x24\x15\xb1\x4b\xc6\x05\xd4\xcc\xa0\x1a\x1d\x26\xc2\xb0\xfc\x1f\x35\xa5\xf7\x38\xd1\x49\xb2\x84\x85\x6d\x40\x43\x3a\x61\x3d\x6e\x31\x1a\x98\xa3\xa9\x57\xa3\x2e\x46\xbf\x7e\xf5\x7a\x34\x7e\x84\xfe\xe8\x14\xb5\xb6\x9d\x0f\xde\x6e\xb8\xc2\x6a\x0e\x1f\xdc\x26\x6a\x79\xc9\x85\xdb\xc6\xe8\xcb\x17\xfe\xd5\x63\x0b\x47\x53\x00\x23\x6b\x5b\x5a\x43\x85\x82\x07\x4c\x94\x2b\x2c\xaf\xe0\x4e\x6e\x15\x6c\x50\xad\x39\xb1\xaa\x6d\xa9\xfd\xd7\xb0\xf7\x9b\x57\xaf\xbe\x94\xbd\x53\x54\xd7\xa8\xc0\x7b\xa5\xed\x01\x35\xaa\x6b\x5e\x22\x1d\x06\xe1\x7a\x23\x15\x53\xbc\xbe\x83\xad\x60\xd7\x8c\xd7\xec\xa2\xc6\xbf\x40\x6c\xbf\xfe\x62\xb1\x9d\xb4\x8c\x08\x69\x60\x29\xb7\x22\x2b\xbd\x52\x8a\x25\xbf\xdc\x2a\xf2\xd9\xfd\x8c\xd9\xd2\xcc\x15\xac\x1f\xef\x36\x2e\x2c\x8d\xbe\x8c\xa9\x63\x29\x04\xba\x7e\x7a\xc9\x78\x9d\xd7\xa7\xf0\xae\x53\xb6\xc0\x31\x5b\x7d\xb7\x5f\xc7\x6d\xf0\x22\x6c\x37\x3f\xb5\x7d\xee\xd9\x50\x07\xeb\xfe\xec\x3e\x63\x42\xe9\xde\xe2\xd9\x24\x84\x34\x97\x35\xa1\x00\x26\x29\x04\x55\x9f\x23\x02\x19\xa5\x93\xee\xe2\xc6\x9d\xaf\xa5\x73\xb6\x65\xce\xcd\xec\xc6\x83\x92\xf1\xcd\x9b\x6b\xd3\x0a\xdb\xc3\x91\xc2\x8a\x90\xbf\xa8\xb2\x03\x8a\x8f\xe0\x33\x03\x01\xf7\xaa\xfe\xbf\x31\x59\x93\xf3\x59\x0b\x0f\x7c\x6b\x30\xd6\xfe\xed\x28\x23\x6e\x80\x5a\xcd\x7c\xd1\x6e\xc6\x01\x91\x5c\x7d\xde\x26\xa8\xb8\x2a\x68\xfa\x6e\xdf\x08\x45\x2d\x6f\x74\xec\xd1\x29\xdc\x9d\x87\x58\x2e\xbb\x5b\x90\x22\xa8\x1b\xe8\x38\xe3\x38\xac\x17\xe8\xc8\x35\x94\x46\x77\xae\x82\x3a\xc8\x9c\xa8\xa7\x52\xc8\x0d\x15\xd6\x2e\x2d\xdf\x07\x7d\x2a\xcd\x76\xa7\x50\xc5\xbd\xcb\xee\x3b\x5b\x6f\xd8\x4f\x2d\xf7\xbb\xa4\x0e\xea\x57\x42\xcd\x56\xdc\xa1\x28\x56\xe7\xbe\x4e\xa0\xda\x7f\xc3\x94\x46\xca\xbc\x91\xfe\x9c\x91\x3e\x8f\x50\xb2\x95\xc7\x2f\xea\x18\x7e\xd5\xd4\x37\xf6\x2c\xdb\xf3\x0c\x77\xf7\x9a\x1a\xed\x05\x5e\x72\x91\x73\x81\x74\x0c\x45\x0f\x97\x5a\xb4\x64\x8c\x6e\x80\x73\x9e\x91\x8e\x0d\xf7\xa1\xe9\xd1\xcd\xf0\xac\x3b\xa9\x49\xe7\x05\xde\xcc\x9d\xa3\xde\xf4\x18\xc1\xda\xb0\x74\xd0\xdd\x2e\x27\x3e\x0b\x8b\xd8\x2a\x12\x19\xcf\x66\xe0\x94\x00\xcc\xa5\xad\xc6\x20\xdd\xa5\x68\xf0\xd7\x9c\xec\xb8\x04\xe9\xa0\x7b\xd9\xb1\x55\x1a\x9d\x7b\xe8\x0d\x2b\xad\x87\x2b\xbe\x66\xea\x6e\x42\x56\x7d\xce\x0d\xae\x27\x7e\xb5\x09\xe0\xad\x51\xcc\x72\x99\x90\xf1\x0a\x68\x2e\xa6\xe2\x29\xcb\x8a\x67\xf7\xe0\x00\xde\x2a\xc5\xee\xa6\x5c\xd3\x7f\x3f\xde\xab\x25\x3a\xd6\x1c\x40\x57\x06\xf6\xe1\x9a\xe8\xdb\xdc\x8c\x8d\x7a\xd1\x13\xba\xf0\xea\x05\x91\x83\xa0\x1d\xcc\xb3\x0b\x40\x27\x9f\x79\xf7\x91\x16\xb3\xbd\x53\x96\x1c\x34\x82\x9c\x37\x1f\x08\x9e\x57\x03\xd0\xad\xb4\xe7\xdd\x47\x27\xcf\x3c\xbc\x57\x49\x76\x8e\xd4\x94\x9b\xca\xd2\xda\x97\x5c\xa0\x4d\x30\xcf\x9f\xe7\xdc\x29\x0c\xed\xdd\x5f\x73\xe6\x3a\xdd\x6c\xf5\xaa\x88\x54\x38\x4e\xad\xa3\x97\x5b\x53\xf0\x1e\x3c\x75\x26\x52\xf4\x1a\x12\xf7\xe7\x3b\xaf\xe0\x2d\x43\x12\xfa\xe8\x2a\xe0\x2c\x7b\xce\xdf\xdf\xb7\x9f\x3e\x9a\xb6\x8f\x21\x32\x1b\xa0\xe4\x90\x9c\xdd\x07\x02\xea\x8d\xb4\xe9\x97\xce\xae\x0b\x17\x08\x7a\x98\x31\xde\xae\x17\x08\x8e\xa9\x44\xe5\x4b\xb8\x41\x10\x48\x6f\x2c\xfc\xf9\x1f\x30\x4a\x90\x9e\xe3\x4c\x90\xd6\x2b\xb9\xad\xab\x63\x02\xfe\x01\x6f\x86\xea\x63\x17\x40\x9e\x2f\x16\x5d\x8e\x86\x83\x83\xde\x76\x0a\xb2\x0c\x6b\xab\x85\xbb\x4b\x69\xae\x39\x0f\x0e\xa0\x68\xbc\x92\xbc\x6b\x3c\x1e\x8f\xed\x97\xd9\xcc\xf2\x4d\xf4\xca\x15\x13\x97\x58\xd9\x4e\x89\x90\xfd\x95\x35\x5d\x45\x98\x15\x2a\xdf\xb7\xdc\x1a\x0b\x41\x44\x92\xf5\x5b\x5b\xf3\xa7\xc3\x76\xf5\x57\xe1\x65\xa8\x67\x32\xba\xa9\xcf\xec\xa2\xa1\xf3\x29\x25\xf8\x15\xbc\x3e\x8b\xef\xf9\xad\x44\xc2\x81\x71\x66\x39\x97\x08\xac\x08\x9e\x53\xf4\x1f\x1f\xda\x5d\xff\x28\xea\xbb\x46\x49\x81\x8a\xac\x34\xb8\xf9\x3b\x4d\x63\x76\xe7\xb6\x45\x62\x2e\x6d\xc0\x76\x53\x31\x83\x3d\xf5\xff\x81\x86\x49\x33\xfd\xe8\xdf\xe9\x6b\x41\x93\xfd\x34\xe2\xd1\xdb\x6d\x00\x17\x2e\xf1\x70\x29\x7a\x89\x24\xde\x6c\x74\x51\xf2\xf8\x0b\x88\x3c\x21\x1b\x45\x87\x49\xb9\xd6\x2e\x49\xc8\xfb\xc8\xb9\x94\x3c\x4e\xb4\x30\x44\xde\x41\x47\x0b\xb8\xa1\x44\x4e\x76\x8d\xbc\xaf\xf4\x63\xcf\x6c\x06\xef\x99\xba\xa2\xf3\x66\x52\x4a\xa3\x5b\xa6\xbd\x65\x5b\x1d\x03\xde\x72\x6d\x52\x1b\x0e\xfa\x8f\xf0\x96\xc3\x5a\xcf\x7e\xb3\x74\xa1\x3b\x17\x08\xf7\xe2\x0d\xe4\xd1\xe9\x74\xba\x17\x6d\x38\x39\xe4\x53\x47\xaf\x12\xd8\xa5\xc1\xdc\x86\xb1\xbe\x37\xd0\x85\x24\xab\x6b\x90\x8a\x5f\x72\xc1\x6a\x72\x7c\x54\x86\x63\x2a\x39\x17\xcf\x44\x10\xc3\x32\x3b\x7b\xbc\x3e\x70\xd5\x01\x39\x8c\x85\xb0\xa0\x19\xa8\x6c\x91\xf9\x58\xfe\x0c\xcb\xc2\x36\x04\x68\x24\xa6\x5b\xbf\x5f\x2a\xb9\x26\xcb\x69\x77\x9c\x0b\xde\x30\x5c\x4f\x37\xe5\xe4\x3c\x5b\x56\x42\xef\x66\x66\x8f\x0f\x3f\x3c\x74\x2f\x5e\xf6\x91\x71\x57\x65\x7b\x3d\xf8\xa9\xa4\x9a\xab\xcf\x47\xfc\x75\x1f\xb9\x7e\x19\x12\x17\x21\x9d\x89\xf4\x12\x6d\x52\x7f\x44\x90\x7d\x7b\x3d\x59\x92\xa2\xda\xc8\xed\xbc\x7b\x02\x94\xff\xbb\xc7\x18\xa0\xa9\x33\xcd\x38\xfa\x50\xe9\xf2\x4b\x15\x2e\x4f\x2e\x5b\xf6\x15\x2d\x7f\x49\x89\x02\x6d\x5f\x18\xc3\xa4\xa9\xe7\x77\x68\xa0\xdc\x2a\x45\xef\xd5\xbc\x18\x8b\x1b\x84\x2b\x21\x6f\xba\x10\x09\x17\x58\xb2\xad\x46\x5b\xde\xd0\x69\x1c\x56\xbd\x5c\xcf\x2e\xe4\x35\x8e\x33\x05\x8e\x27\x7f\xce\x84\xbe\x21\x41\xee\x8d\x6b\xfd\xec\x78\x8a\xa6\x7d\xed\x1b\xe6\xc8\xaa\x97\x1e\xfa\x61\xfb\xf5\x50\x97\xd5\x3e\x1f\xee\x4e\x11\xf6\xb0\xf5\xf5\x59\xae\x8f\x4a\x69\x4c\xe3\xd4\x9c\xb1\xaa\x48\x12\xd3\xec\x13\xe6\x4c\x3b\x07\x3d\x6e\xa7\xc3\x99\xfd\xf1\x5a\xd5\x37\xad\xcd\xc6\x4b\xb9\xde\xd4\x48\x1d\xa1\x2b\x19\x97\x35\xbb\xb4\xae\xa4\xd1\x8c\x7b\x22\xce\x3b\x0c\x35\xb8\x78\x6b\x9e\xb0\x69\x7f\xcf\x6b\xff\x3d\x66\xc1\x4d\xdb\xfc\x14\xaa\x61\x79\xf5\x38\x55\x57\x00\x3f\x45\x43\xb6\x91\x5e\xb8\x64\xf3\x94\x04\x6a\x6d\xd5\xf9\xa7\x5d\xa7\x3d\xaa\xcb\xb0\xe0\xbd\xf8\x71\x1e\x3c\xb9\x85\xa7\xfb\x14\x2e\xa8\xf6\xb1\x39\xbb\x75\x1b\x81\xb2\xb5\xef\xa6\x08\x4a\xf0\xe8\xed\x5b\x8d\x06\x78\xe0\x0b\x81\x67\x1e\x02\x87\x37\x0b\x78\x75\x08\xfc\xab\xaf\x86\x63\x66\xc6\x9f\x78\xcf\x7b\x22\x77\xdd\x53\x38\xc5\x70\xce\xf6\x2e\x14\xb2\xab\x5c\xdf\x17\xac\xd7\x3c\x24\xf0\x43\x93\xa0\x32\xea\x17\x42\x7d\x13\xe9\xc9\xf4\x97\x49\x07\x4f\x4c\x06\xc3\xa9\xe0\x29\x89\xa0\xef\xef\xa7\x57\x7c\x63\x2d\xb8\x44\xad\xb9\xb8\xb4\x22\x15\xb2\x7d\x12\x64\x64\xd3\xd4\xa4\x62\x7f\x4e\xae\x6a\x9b\x26\xe7\x06\xf6\x93\x73\xc7\xec\x91\x63\xd7\xc7\x38\xf0\x41\xfb\xdf\xe3\x80\xf1\x41\x99\x59\x71\x71\x35\xa2\xd7\x0a\xdd\x98\x94\x75\xe6\xe8\x6c\xd0\x73\x07\x4a\xeb\x22\x0b\x4e\x27\x3c\xe3\xec\xb1\x4c\x35\x1f\xae\xf6\x06\x4e\x50\x21\x7f\x62\x9a\x2b\xc5\xd3\xf7\x5a\x8f\x6c\x6a\x20\x1c\xc5\xdf\x06\xc2\x3e\x29\x35\x7e\x83\xe3\xb7\x38\x18\xc3\x29\xee\x53\xdf\xfc\xe4\xf0\x9e\xca\xb7\xab\xf7\xc7\xf0\xf7\xd9\xe0\xdf\x31\x30\xd5\x86\x29\xa3\xff\x89\x9b\x55\x31\xfa\x17\xd5\xbf\xdc\xdc\xb7\x30\x11\x50\xb8\xa9\x59\x89\x84\x3d\xb1\x6b\x3e\xc1\xe5\x9f\xa8\x82\x27\xa7\xaf\x8c\x1f\xa2\xa8\x7a\xb5\x56\xfb\x74\x58\x45\xe0\x49\x19\x1c\x33\x11\xdf\x25\x35\x77\x73\xa8\x7a\x17\x65\xfe\x92\x66\xdf\xb5\x2b\xaa\xf6\x52\xd9\xea\x27\x79\xf1\x44\x34\xad\xda\xfe\xe7\x3f\xfe\xfb\x7f\xff\xf3\xbf\xfe\xff\xdf\xfe\xfd\xff\xfe\xf4\xa7\xd1\x61\x6f\x11\x59\xe3\x14\xdd\x45\xd5\x6f\xe9\xee\xd6\x3d\x3f\x55\xba\x2d\x33\xe6\xa3\x89\x5d\x2b\xd1\xc4\x93\x6f\x20\x43\xe9\xee\xd2\x6b\x22\xf4\x8f\x60\x0a\xbc\xee\x5d\xf7\x04\xcf\x64\xec\x74\x48\x31\x17\x67\x83\x27\x94\x9d\x58\xe3\xcb\xce\x88\x22\x4d\xb6\x38\xf4\xdf\x5d\x6e\xed\x82\x1f\x64\xbd\x6d\xdf\xd1\x85\x07\x3b\x94\x70\x97\xbc\x46\xd8\x6e\x6a\xc9\xaa\xec\x0f\xfe\x02\x54\xcb\x81\x6b\xf3\xba\x1f\x22\xd1\xf3\xc7\xf8\x27\x80\xe1\xf7\xf8\x65\x63\x37\xee\x9f\x2f\x8a\xed\xfa\xc2\x65\xa9\xf0\xa9\x62\x07\xd6\xbe\x48\x0c\x28\x66\x7e\x0d\x35\xf8\x0b\xc2\xe0\xd1\x60\xf6\x87\x79\x27\xe1\x53\xd9\xec\x8f\x21\x4b\x56\xd7\x59\xb9\x84\xef\x67\xb3\xbf\x86\x0c\x9e\x9a\x1e\xcd\x53\x59\x7e\x3a\xeb\xb3\x41\x29\x26\x59\x79\xd2\xfc\x74\x0e\xb9\x59\xa1\x02\xd6\x5c\x2b\x4a\xff\xd9\x31\x5c\xb9\xe7\xad\xc9\x8f\xea\x1c\x59\xeb\x6f\x0f\x1e\x8d\x3e\xb6\xcf\xcc\x13\x86\xed\xdf\xa3\x4c\x37\xe6\xdf\x18\xd6\xde\x5f\x6f\xf5\xa5\xe6\x7e\x99\x45\x2c\xac\xa4\x36\x91\xb2\x7a\xbf\xa0\xeb\xfd\x24\xed\x21\xbc\x12\x6e\x2c\x67\xf8\x47\x69\x59\xf0\x9c\xfd\xf8\xa7\x74\x43\x3f\x19\xdd\x3d\xfb\x73\x00\x00\x00\xff\xff\xc4\x6d\xb5\xcc\xa3\x3b\x00\x00")
+
+func libsuiAgentTsBytes() ([]byte, error) {
+ return bindataRead(
+ _libsuiAgentTs,
+ "libsui/agent.ts",
+ )
+}
+
+func libsuiAgentTs() (*asset, error) {
+ bytes, err := libsuiAgentTsBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "libsui/agent.ts", size: 15267, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _libsuiIndexTs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x5b\x5f\x73\xdb\x36\x12\x7f\xd7\xa7\xd8\x72\x3c\x1e\x29\x95\xa9\xdc\xcc\xdd\x0b\x15\x5a\xcd\xa5\xee\x9f\xbb\x5c\x93\xab\xdb\xb9\x07\xd7\x23\xd1\x24\x24\x31\xa6\x08\x15\x00\x9d\xea\x2c\x7d\xf7\x9b\xc5\x7f\x90\x94\x1c\xa7\x79\xb9\xcc\x34\xa1\x48\xe0\x87\xdd\xc5\x62\xf1\xdb\x05\xba\x6c\xea\x5c\x94\xb4\x86\xb3\xb3\x21\x27\x15\xc9\x05\x65\x23\x78\x1c\x00\x54\x44\x00\xa9\x36\x09\xfc\xf0\xcb\xbf\xde\x5e\x55\x64\x43\x6a\x01\x7b\xa8\x9b\xaa\x82\x54\xfe\x33\x1d\x00\x94\x4b\x18\x8a\xdd\x96\xd0\x25\x98\xee\x90\xa6\x29\x44\x5c\xb0\xb2\x5e\x45\x0a\x0b\x10\x09\x52\x28\x68\xde\x20\x4e\xfc\x7b\x43\xd8\xee\x5a\x77\x70\x03\x23\xe2\x61\xa0\x61\x2d\x5e\x59\x73\x91\xd5\x39\x8e\xe1\xc9\x12\x22\x9b\xc6\x01\x02\xa9\x36\xa6\x55\x4e\x6b\x2e\x20\xaf\x21\xc5\x0e\xf1\x8a\x88\xd7\x42\xb0\xf2\xae\x11\x64\x18\xf1\x24\xaf\x23\x39\xb8\xea\x97\xd7\x70\x7e\x8e\x8d\xbf\x4a\x21\x8a\xf0\x59\xab\xf8\xb1\xac\x0b\xfa\xf1\x26\xaf\x6f\x95\x92\xc6\x7a\x56\x4d\x3b\x10\xdd\x6c\x69\x8d\x16\x4b\xa1\x26\x1f\xbd\x8e\x52\xa8\xa9\x6e\xcc\x88\x68\x58\x2d\x5b\xcc\xe7\xbc\x29\xe7\xb6\x1f\x36\x1b\x3b\x18\xdd\xe3\x30\x50\xff\x99\x7e\x72\x12\x0e\x83\x81\x9d\xc5\x16\xca\x9c\x51\x2a\xa1\x12\xd0\x56\x1b\x43\x9d\x6d\x48\x02\x6a\x7a\x94\xd8\x1a\x0d\xed\x92\x57\x94\x13\x2e\x86\x8b\x1b\xfe\xdb\x6f\x49\x5e\xa7\x67\x8f\xd8\xfe\x70\xbb\x18\xf5\x0d\xc4\x45\x26\xc8\xd0\x49\x29\xe1\xc4\xba\xe4\xf1\x3a\xab\x8b\x8a\x30\x0e\xa9\x53\x22\xfe\x98\x89\x7c\x0d\xfb\x3d\x3c\x1e\xa6\xa6\xe1\x35\x41\x1b\x65\x7c\x57\xe7\x60\xd1\x87\xf7\x64\x37\x86\x87\xac\x6a\xc8\x18\x44\xc6\x56\x44\x84\x13\xa9\xe1\x21\x0d\x47\xbb\xb9\x27\xbb\x5b\x65\x2a\xd5\x0b\x1b\xa8\x87\xfd\xde\x13\x04\xcd\xe2\xa6\xdb\x80\xb9\x79\xb6\xf0\x27\x27\x59\x6a\xff\xee\xee\x03\xa4\xf6\x83\x19\x37\xd1\xff\x8e\xed\x7b\x2e\xe8\xf6\x3d\xa3\xdb\x6c\x95\x21\x58\xe2\x29\x3b\xf2\xba\x1b\x80\x98\x87\x1e\x8a\x43\x5d\x6c\x5d\xff\x68\x0c\x91\x60\x0d\x89\xac\x2f\x01\x1c\xcc\x68\x07\xf3\x2e\xfb\x98\x95\xd6\x58\x43\x6d\x4f\x23\xb6\xed\xa9\xb4\x29\xf9\x75\x28\xa2\xb5\x9d\x1d\x60\x66\x84\x5b\x3d\x21\xdc\x48\x59\x4e\x0a\x68\x7b\x27\xb0\xcc\x2a\x4e\xcc\xa8\x68\xf9\xce\x98\xbe\x29\x94\x5b\x9a\xe6\x72\x51\xe3\x1f\x8c\x4b\xdb\x8c\xa9\xb5\x15\x4e\x69\xac\xde\x6b\x57\x9f\x75\xbc\x59\x7a\xb1\x1b\xdd\xa0\xa8\x68\xf6\x09\x43\x4f\x26\xf0\x6d\xc9\xb7\xd2\x8b\xc5\x9a\x28\x4b\x42\xbe\xce\xea\x15\x81\xbc\xe1\x82\x6e\x80\x3c\x20\xa6\xa0\x46\x46\x2b\x61\x60\x6c\xd5\x4a\xc5\x86\x37\xb2\xe3\x15\xbe\xd1\xb6\x4c\x14\x64\x34\xf6\x44\x2a\x88\xc8\xca\x2a\x81\x47\xb8\x27\xbb\x04\xdc\x02\x49\xc2\x75\x92\xb4\x6c\xe2\x79\x85\x55\x5e\x89\x16\x17\x5a\x17\x35\xb4\x14\xc9\x8f\x33\x7d\x0b\x1e\x27\x99\xbb\xb8\x2a\x17\xdf\xf7\x72\x99\x05\x6b\xd7\xd8\x12\xad\xfc\x15\x06\xe8\xfd\xde\x2c\xad\x76\xf4\x85\xaf\x8e\xac\xb1\x20\xc6\x19\xa1\x8c\xfd\xee\x21\x85\x08\x85\x49\x22\xf8\x1a\x8d\x31\xf5\x3e\x3e\xf4\x05\xf9\xfb\x91\xdf\xe4\x03\xa7\xfd\x5b\x01\x7e\xb8\xc8\x84\x60\x17\x3e\xba\xef\xcf\x2e\x6e\x60\x5b\x27\xaf\x60\xbb\x8e\x07\xc1\x3f\xae\xdf\xfd\x84\x5e\xc9\xc9\xf0\xc1\x9a\xff\x00\xb9\x74\xa1\x21\xe9\xfa\x9c\xa7\xaf\xd1\x58\xfd\xad\x3f\x3f\x4c\xd5\xd4\x18\xe3\xbf\x2d\x79\x68\xfd\x30\x4e\xca\xf9\xc2\xf8\x74\x98\x7e\xa9\x09\x91\x90\x66\x46\xbc\xa1\xd0\x68\x5c\xdb\x34\x33\x60\xba\xe1\x92\x32\x18\xe2\xc2\x2d\x21\x85\x97\x53\x28\xe1\x95\x6a\x1f\x57\xa4\x5e\x89\xf5\x14\xca\xaf\xbf\x6e\x87\x57\x6c\x80\x5b\x03\xb6\xbb\x29\x6f\xfd\x95\x8b\xef\x62\xdc\x98\x62\x2e\x32\x26\xf8\x7f\x4a\xb1\x1e\x6a\x7f\x18\xf9\x46\x75\xde\xe2\xba\x30\xb2\xad\xb2\x9c\x98\xf6\x63\x88\xfc\x20\xfa\x19\xfe\xd1\xf5\x8e\x7e\x0f\xe9\x7a\x89\x5c\x8c\x68\xcf\x9b\xfb\x5b\x48\x7d\x6f\x91\xe2\xca\x85\xed\xc9\x76\xcc\x75\x5a\x30\xbe\x0b\x39\x07\xb2\xea\x89\xb2\x6e\x88\xb7\x6b\x0c\x7a\x20\xdc\xf0\x27\x7c\xd1\x7a\x42\x6f\xa8\x38\x4a\x65\x5c\xe4\x90\xf1\x49\x5a\xd9\xd2\x01\x2e\x28\x23\x3a\x30\x1a\x8e\x41\x19\xb1\xac\x49\x36\x32\x5e\xed\x1a\xb9\xb8\xe4\x21\x61\x70\xf6\xb6\x08\x98\x05\xa8\x2d\xe6\x92\xc8\x35\x32\x30\x0e\x30\x9f\x73\x52\x2d\x35\xbf\x90\xef\x27\x13\xf8\x46\xf0\x8b\x72\x55\x53\x46\xcc\x20\x67\x5a\x05\x05\xfc\x6f\x64\xb5\x43\xab\xda\xc8\x2d\xd3\x65\x59\x17\xc1\x32\x0d\xb9\x76\x17\xbd\xc5\x0d\x15\xb2\x12\x4a\x61\x4b\xc8\x16\x73\x76\xe3\x49\x7e\x7d\x72\x40\x0d\xef\x41\x9e\x24\xe5\x2d\xe8\xd7\x32\x09\xf8\x7c\xf4\xd7\x55\x75\x74\x00\xb2\x29\xc3\x90\x86\xab\x76\x0c\x45\x26\xb2\x30\xb8\x1d\xdb\x44\x55\xfb\x47\xbb\x65\x62\x4f\xbb\xfb\xf9\x22\x1d\xdb\x00\x3d\x61\x18\xa9\x0b\xc9\x33\xfb\xc4\x19\x03\xdd\xfa\xac\xa5\x3b\x89\x4a\x50\x66\x3d\xe4\x67\x09\xa7\x27\xd2\x76\x9f\xfa\x36\x63\xf1\xd5\x1f\x24\xf7\x95\x3e\xba\xc4\xa4\xc4\x73\x43\xef\xe4\x2f\xd5\xe5\x9f\x64\xc7\xc7\x32\x88\xa9\x27\x4d\x46\x01\xb5\x1e\x1b\x3e\xa8\xa4\x56\x12\x4a\x13\x99\x6d\xa2\x87\x3a\x07\xe9\x5e\xc0\xc7\xcd\x70\xf1\x92\xb2\xab\x2c\x5f\x0f\x7b\x89\x80\xdd\x9a\x31\xa4\x58\xe4\x56\x6c\x45\x28\xbb\xe3\x9a\xb8\x83\x2f\x25\xad\x87\x14\xbc\x80\x64\xa6\xd3\xe8\xf8\x05\x86\x47\xa8\x93\xc3\xfb\x71\x15\x0d\xa1\xd0\xce\xcf\x35\xac\x4c\x16\xfd\xb0\xdc\x8e\xf5\x3e\x96\x4f\x0c\x5a\x51\xfe\x58\x8c\x57\x2a\x6c\x08\xe7\xd9\x0a\x95\x20\xb1\x79\xde\xef\x41\xfe\x15\xbd\xae\x81\x30\x46\x19\xd0\x3c\x6f\x18\x23\x45\x34\x6d\x01\xd0\x8a\xc4\xb2\xc9\x70\x71\x73\xfd\xeb\x8f\xb7\x20\x7d\x1f\x7e\xd0\x09\xcf\x15\x7e\x4a\xe0\xec\x51\x43\x1f\x60\x61\x13\xb0\xee\x96\x71\xf0\xa6\x02\x9f\x5d\x22\x25\x3f\xf4\x38\xa6\x63\xb4\xe8\x8a\x9a\xa8\x27\xca\x2f\x0d\x8f\x92\xa3\xd9\x4f\x7e\x1e\x75\xe8\x4d\x42\xd5\x2a\x28\xeb\x32\xcc\x74\x7d\xf7\xbe\x2b\xeb\xe2\x4a\x47\x0b\x25\xce\x15\x52\xd8\xf4\x52\x8b\x83\xd4\x44\xd5\x06\xf4\xb7\x4e\x81\x40\x7e\xb8\xc8\x91\x0f\xa1\xa1\xa3\xe9\xc0\xac\xf8\x1f\x31\x5d\xe4\x1d\xba\x3f\x86\x86\x13\x99\x25\xb4\xbf\xc8\x0c\xdc\xe7\x68\x26\x99\xb1\x83\x1f\xcd\x5b\x5c\xd6\xe2\x79\x36\xca\xad\x19\x7d\x5f\x59\xc3\xc8\x0b\x8e\xb0\xe9\x1a\x47\x1a\x3a\x6c\xe8\x1e\x91\x72\x8f\x37\x81\xd4\x50\x72\x60\xe4\xf7\xa6\x64\xa4\x90\xa4\x4e\x85\x60\x34\x6f\x59\xaf\xa2\x31\x74\x8b\x1b\xc1\xc0\x98\x40\x61\xa4\xb9\x27\x3b\xde\x0e\xe4\x3c\x81\x9f\x49\x4e\x59\xf1\x4a\xd5\x26\xc6\xba\x46\x71\xe9\xd1\x57\x17\xac\x70\xcd\x9b\x2a\xc6\x0d\x2e\xa8\x9b\xdb\x36\xbf\x3f\xda\xa4\x8f\x8d\x5a\xdb\x3b\xea\xda\xcf\x4d\x65\x5d\xa9\xdb\xf8\xa6\xbc\xed\x12\x52\x15\xd0\x02\x42\x6a\xc3\xe5\xb6\xe1\xeb\x93\x40\x96\xa6\x2a\x14\x49\x53\x47\x21\x1b\x7b\x9e\x34\x2a\xbe\x05\xd2\xd8\xe8\xf9\xe9\xd2\x28\x94\x3f\x2f\x0d\x4f\x68\x7d\xd1\x4b\xd6\xc9\xce\x5f\x0b\xa7\x64\x51\x18\x2d\x02\xaf\x9c\xc9\xc4\xd9\x23\x38\xbd\xd4\xd6\xb8\xe8\xdf\x91\xac\xe1\xca\x95\x9d\x9d\xcb\x28\xf9\xd4\x3a\xa8\xf5\x38\xed\x1d\xe6\x4e\x11\x3d\x2d\x04\xb6\x0d\x12\x17\xbd\xea\xe6\xf3\x6d\xb6\x22\x51\x57\x79\x57\xd7\xd2\x15\x43\xc4\xbb\x6d\x67\x27\x9a\x74\xda\x6a\xea\x1d\x2d\x76\xed\x36\x76\x13\x37\x16\x68\x59\x48\xda\xa4\x50\x51\x11\x93\x48\x52\x13\xa6\x49\x87\x66\x42\x2e\x3c\xaa\x3f\x5f\x84\x73\x78\x9b\x48\x98\x74\x05\x59\x89\xad\xb8\x74\xab\xa9\x47\x83\x64\x7a\xf6\x98\xd7\x87\x56\x89\xa7\x5b\xb7\x3d\x96\xdd\x1e\xd9\x1e\x5d\xfc\x93\xf0\x50\x53\x01\x4b\xda\xd4\xc5\x62\x6c\x45\xf1\x14\x39\x5e\x38\x6a\x11\x43\x5f\xb5\x6e\x8d\xb8\x5d\xf7\xed\xba\x07\xb6\x08\x9d\x23\x70\x0d\xfc\xec\x55\x39\x9f\x74\x8a\xcf\x72\x89\x2f\xea\x10\x87\xb0\xf4\x34\x08\xf6\x86\xab\x6a\x63\x4a\x0b\x9d\x34\x22\x92\xf3\x2f\x9b\xdd\xaa\x38\xa0\xb7\x80\x52\x5c\x3d\xa3\xef\xc5\x87\xd2\xf4\xb7\x43\x5a\x52\x19\x72\x06\xcb\x26\xdc\x6b\xd9\xcf\x1f\xf1\x59\x5d\xfb\x0a\xeb\x26\xe9\x95\xf6\x56\x67\x1c\xba\x6e\xd3\x5a\xf6\x9f\x50\x86\xf3\x0a\xfc\x4f\x30\x6e\x2f\xf3\xb9\xee\xe2\xe9\x8a\xa3\x77\xf2\xd2\x2a\x53\xfb\x78\xa6\x71\x0b\xf6\x7b\x22\x90\xfb\x1e\x13\x35\xe4\xe9\xfd\xf5\x97\x16\x49\x7f\x9a\x8a\x87\x44\x5c\x2f\x14\xc2\x4f\xd3\x70\x93\x8e\x99\x1a\xd6\x31\x62\xfe\x27\x69\xf9\xe7\x90\xf2\x45\x48\xb4\x3e\xb5\x76\x68\x3e\x87\x93\xdc\x37\x1b\x4f\x4e\xb4\x3f\x0d\x63\x65\x45\x45\xb4\xca\xe5\x4e\x5b\xb2\x67\xe2\xbf\x55\x59\x66\xb7\x58\xa9\x05\xf4\x1d\x64\x18\xcd\xbd\x73\x2c\x74\x2c\x45\x65\x15\x15\x54\xe9\x70\xeb\xd4\x48\x2d\x9d\xbb\x2c\xbf\x27\x75\x31\xcf\xb3\xaa\x1a\x0e\x30\xd1\x68\x84\x3d\xf0\xc2\x3c\x62\x4d\xb2\x82\x30\x9e\xc0\x4d\x48\x34\x6f\x6f\x6e\x61\x7f\x8c\x83\xee\xe1\x07\xd5\x0d\x11\x36\x44\xac\x69\xe1\x63\xc6\x71\x9c\xb1\x15\x4f\x20\xab\x77\x83\x51\x02\xef\x19\xdd\x94\x9c\xbc\xca\xea\xdd\xa5\x97\x87\x34\xac\x82\x14\x16\x93\x6c\x5b\x4e\xe6\xf3\x5d\x46\x27\xbc\x29\x27\x0f\x7f\x99\xb0\xa6\x3e\x7b\x94\x92\x1e\x16\x53\x27\xa3\x3d\x59\x8a\xde\xd0\x5a\x60\x94\xfa\x65\xb7\x25\x51\x02\x51\xb6\xdd\x56\x65\x2e\xcf\x4c\x26\x38\x19\x91\xca\x90\x7e\x26\x4b\xc2\x08\x4b\xf4\x66\x12\x57\x54\xb5\x89\xd7\x8c\x2c\x55\x93\x37\x94\xde\x97\x24\x71\x61\x24\x97\x2f\xd4\xc7\x38\x8e\xd7\x4e\xcf\x83\x8b\xa6\xdb\x6c\x57\xd1\x0c\xa9\xcd\xa3\x56\x7f\x0c\xa8\xb1\x6a\xe3\x16\x98\x66\x41\xb4\xd8\x99\xd5\xe5\xfc\x42\x63\x04\x85\x78\x46\xf8\x96\xd6\x1c\x17\x8e\x3a\xac\x5a\x12\x91\xaf\x87\x0d\xab\xc6\x76\xa4\x04\xa2\xf7\xef\xae\x7f\x89\xc6\xc6\x2c\x63\x39\x40\xa2\x86\x39\x04\x78\x82\xfc\x21\x2c\x96\x01\x8f\xf1\xed\x50\xb7\x43\xe2\x2f\xe3\x14\xce\x55\xf7\x40\x5b\xf3\x06\x84\x39\x3f\x57\x70\xad\x68\xa2\x6b\x25\x5e\xe8\xc0\x56\xa3\x4e\x86\x65\x47\xe7\x22\x13\x0d\x87\xcb\x14\xfe\xfa\xf2\x65\x9b\x30\xba\xc0\x81\xb8\x26\x76\xd8\x95\x3d\xeb\x7f\x9d\xc0\xe2\xbb\xac\xac\x48\x01\x82\x02\x7a\x3a\x18\xf7\x91\x61\x02\xad\xa6\x1c\xc9\x67\x1a\x85\x1d\x45\x3e\xcf\xbc\xe7\x04\xfe\xf6\xf2\x65\xeb\x54\x5a\xfb\x70\xcc\xc8\x07\x92\x8b\xe1\xa3\x11\x75\xac\xa0\x0e\xa1\xc6\x9d\x4e\x9c\x56\x0f\x64\xe8\x0a\x58\x9d\xe0\x79\x3c\x70\xce\xbc\xe7\x67\x68\x1a\xe8\x49\x8c\x92\xa4\xa3\x61\x6f\xc8\x7d\x72\x90\x04\xa3\x6e\x58\xaa\xfb\x24\x0b\x1d\x30\x52\x4d\x5e\xbc\x18\xc0\x0b\xb8\xfe\xf5\x47\x50\x25\x40\xfc\xf5\xcd\x36\x63\xd9\xc6\x3f\x21\xb4\xef\x54\x89\xe0\xc5\xa4\x3f\xc4\xa9\xa2\xe4\x50\x2e\x4e\xdd\x37\xf1\x98\xea\xde\x0b\x4c\xfe\x69\x3f\xfe\x56\x9e\xdf\x0a\x72\x18\xa5\xf0\xa3\x2a\x47\xce\x12\x2d\xe3\x3b\xf9\xd3\x0f\x67\x26\x1a\xba\x88\xa6\xf9\xeb\x50\x9a\x45\xb3\x6d\x8f\xae\x23\xd9\xa6\x77\x68\x9d\x08\x66\xde\x87\x04\xce\xce\x3c\x96\x3b\x00\x18\x41\xc6\x9d\x0e\x53\x73\x85\x43\xe1\x87\x27\xb4\x4f\x10\x75\x4b\xd1\x71\xcb\xb4\x63\x1c\x16\x27\xe7\x2e\xea\xe9\x1f\xb9\xfb\x28\x9a\x8b\x2a\x2a\x69\xc9\x75\x97\x50\xaa\x64\x44\xcd\x4f\x70\x77\xc2\x1d\xbd\x99\xba\xc2\x49\x6d\x7e\xa2\x40\xf4\x95\x1b\x29\x0a\x7c\x2c\xc5\x1a\x78\x0b\xf9\x09\x95\xda\x20\x9e\x3e\x93\x09\x20\xbf\x2b\xc8\x32\x6b\x2a\xa1\x27\x9e\x5b\x17\x80\xd4\x3c\xd8\x1d\x57\xfd\x36\xb9\xb7\x6d\xe0\x5e\xa4\x29\x34\x75\x41\x96\x65\x4d\x0a\x98\x81\x60\x0d\x2e\xba\xb0\x95\x07\xc4\xd7\xf4\xe3\x5b\x9a\xc9\xe2\xba\x54\xa2\xe7\x7d\x0b\x52\x5e\x1f\x70\x98\xae\xa5\x07\x8b\x76\x7a\x9f\xad\x88\xa2\x1a\x3e\x70\xf8\xe5\x34\xb4\xdf\xd6\x1c\xfe\xbc\x67\x64\x9b\x31\x02\x95\x1c\x52\x5f\x90\xaa\xb4\xa4\xb0\x78\xc5\xb7\x59\x0d\x79\x95\x71\x9e\x46\xbc\x29\x2f\xd4\x54\x5d\x60\x8b\xb2\x5e\x45\x97\x6f\xd5\x43\x1c\xc7\xaf\x26\xd8\xf6\x72\x61\xbc\xa2\xab\xf9\xf9\x79\xcb\x70\xfe\x81\xba\x5e\x65\xfd\xf6\x6a\xdf\xbb\x02\x27\x62\xaf\xd9\x30\x30\x13\xd4\xbd\x5f\x90\xd3\x57\xaf\x4e\x81\xc7\x18\x3e\x19\x76\xf2\x4f\xef\x49\x98\x1a\xe9\xac\x08\x1f\xe2\xb2\xae\x55\x7b\x48\x35\xec\x28\xf0\x57\x63\x7f\x8c\x60\xda\xfa\x73\xbd\x15\xcb\x05\x29\x53\x26\xc3\x32\x87\x1e\x57\xf4\x34\xf3\xe7\xf5\xf8\xa1\x8d\x81\x7d\x44\x3a\x34\x57\x65\x6b\x7c\x92\xb1\x57\x1d\x26\xf9\x82\x61\x46\xcd\x13\xb9\x5d\x80\xad\x32\xf9\x31\x23\x08\x19\xa6\x6c\xa1\x52\x4f\xd9\x2b\x48\x5b\xe5\x9b\xd7\xea\xe8\x1b\xfb\xce\x7a\xef\xab\xc9\x56\xd1\xc8\xbf\x53\x73\xbc\x34\xd4\xe9\xbd\x6d\xee\xaa\x32\xf7\x4b\xc3\xde\xd8\x90\x3a\x19\x06\x8a\x82\x2c\x70\x37\xa4\xe2\xa0\x37\x45\xfc\x72\x58\x0c\x14\x0f\x31\x7e\x2a\xbb\xee\xf7\x1d\xe2\xb9\xcd\xc4\x1a\x83\x95\xb7\x46\xfd\x72\xce\xd0\xe9\x7b\x7e\xee\x99\xa9\xaf\x92\xed\x97\xde\x9f\xe2\xd3\x72\xf1\x05\x94\xba\xcb\x63\xdd\x11\x5b\x02\x73\xff\x3c\x4f\xa7\x2d\x93\x09\x6c\x08\x5b\xa9\x2a\x7e\xc3\x09\x33\xbe\x87\x1e\xe5\x1f\x47\x7a\xd5\xc1\x7b\xb2\x83\xb2\x0e\x0e\x2b\xc1\x0c\x1a\xfb\x07\x40\xf6\x39\xbc\xd9\xa7\xeb\x3c\x9f\x49\xff\x4f\x70\x7b\xab\xd2\x4f\x99\x28\x1f\x08\x6c\xa9\x64\xdf\xbf\x37\x84\xcb\xeb\x4a\xf2\x3e\x13\x61\x0f\x32\xb4\xfd\x3f\xf1\x79\xb9\xaf\xf6\x47\xcb\xa3\xac\xb4\x4b\xd8\xf5\x86\x88\x56\xb0\x2a\xc8\xb1\xb5\x69\xf4\x46\xca\x4f\x44\x31\x33\x66\x3b\x98\x21\xcc\xd4\xab\x04\x7e\x57\xd6\x05\xf0\xe6\xce\xd1\x21\x0e\x59\x5d\x40\x59\x97\xa2\xcc\xaa\xf2\xbf\xd2\xe1\x36\x01\x79\xe7\xcd\xdd\xd3\x75\xac\xbc\xbe\x75\x85\x70\xdd\xc3\x89\xa9\x5e\xb4\x4a\x78\x86\x83\xe3\xb4\x40\xaa\x3b\x75\xa3\x0d\xc9\x8a\x5d\xf7\x92\x8c\x3c\x79\x3a\xd2\xc5\x5d\xa8\x35\x73\xa4\x07\x51\x17\x6b\x9f\x75\xa5\x16\x7a\xef\xcd\xb4\x4a\xa6\x5a\xbd\x4f\xbb\x2c\xf3\xa7\x8f\x52\x8f\xd0\x36\x55\x23\xee\xd6\x6b\x46\xfd\xd7\x71\x0e\x5e\xed\xb3\xb7\x54\xd5\x77\xc0\xf9\xc4\x35\xb2\x93\xaa\x45\x2e\xcb\x41\x38\x7d\x4c\xe1\x69\xd6\xa2\x90\xba\x6b\xeb\xa0\xc7\x8a\xfb\xd4\xea\xea\x4a\x38\x99\x98\x55\xa6\x8c\xeb\xe7\xb5\xcf\x5b\x55\x47\x09\x97\x04\x8e\x2e\x9d\xa6\xea\xbd\x4f\xba\xba\xf3\x17\xb5\x9b\x47\x2e\xd9\x3b\x9c\x66\xd9\x9d\x9e\x2e\xeb\x23\x7f\x6c\x29\x13\xd2\xd3\xbd\xfc\x44\x05\x75\xdc\xe5\x82\xbb\xf5\xd8\x4b\xdd\xfe\x74\x6d\xaf\xf1\xb7\xfa\x40\x59\xf8\x81\x32\xf9\x41\x5e\xa9\x9e\x75\x32\xba\xa1\xbe\x1a\x9a\xd5\x3b\x7d\xe1\x77\x96\x80\x44\x93\x46\x7d\xa0\x65\x71\x89\xdd\xdf\x50\x49\xf0\x04\xef\x42\x60\x52\x28\xe7\xf9\x46\x5e\x38\xd5\x35\x32\x09\x39\x1d\xe0\x6e\xe2\x6b\xe7\x27\x8c\x5a\x41\x55\xee\x9f\x85\x3a\x62\xfc\x33\x49\x47\xc9\x81\x67\x1b\x12\xa6\x36\xee\xca\xb1\xa3\x92\xb3\xf6\xff\x83\xa0\x64\x81\x3d\xdc\x51\x5a\x91\xac\x6e\xc3\x4a\x4e\x24\x2f\xb6\xcb\xed\x60\x96\x1c\x6b\x88\x49\x0a\x1a\xd1\xa3\x85\xc7\x1b\x1b\x54\x1b\xb6\x67\xc6\x2a\xed\x96\x64\xb3\x15\x3b\x53\x7a\x7c\xa2\x55\xdb\x92\xe1\xdc\x6b\x5b\x5e\x13\x91\xc8\xc2\xac\x4d\xe5\xc1\x4d\xb0\x9d\xd1\xee\xb4\x84\xfe\xa2\xc1\xbe\x6f\x83\x49\x00\x2d\xe3\x33\x06\x93\x48\x48\x09\x7a\xd0\xa4\x93\x48\xa8\x6e\x83\x53\x70\xdf\x4a\x32\x36\x94\xaf\x7b\xfd\xb1\xad\xa1\x6f\x25\x73\x01\xba\xb3\xa8\x82\x2b\xe6\xc8\x1b\x0e\xd3\xc1\xff\x02\x00\x00\xff\xff\x14\xab\x83\x7c\xf9\x32\x00\x00")
func libsuiIndexTsBytes() ([]byte, error) {
return bindataRead(
@@ -895,7 +1592,7 @@ func libsuiIndexTs() (*asset, error) {
return nil, err
}
- info := bindataFileInfo{name: "libsui/index.ts", size: 12261, mode: os.FileMode(420), modTime: time.Unix(1730855738, 0)}
+ info := bindataFileInfo{name: "libsui/index.ts", size: 13049, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
@@ -915,7 +1612,7 @@ func libsuiUtilsTs() (*asset, error) {
return nil, err
}
- info := bindataFileInfo{name: "libsui/utils.ts", size: 5959, mode: os.FileMode(420), modTime: time.Unix(1730855738, 0)}
+ info := bindataFileInfo{name: "libsui/utils.ts", size: 5959, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
@@ -935,7 +1632,7 @@ func libsuiYaoTs() (*asset, error) {
return nil, err
}
- info := bindataFileInfo{name: "libsui/yao.ts", size: 4338, mode: os.FileMode(420), modTime: time.Unix(1730855738, 0)}
+ info := bindataFileInfo{name: "libsui/yao.ts", size: 4338, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
@@ -955,7 +1652,7 @@ func publicIndexHtml() (*asset, error) {
return nil, err
}
- info := bindataFileInfo{name: "public/index.html", size: 11, mode: os.FileMode(420), modTime: time.Unix(1730855738, 0)}
+ info := bindataFileInfo{name: "public/index.html", size: 11, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
@@ -975,107 +1672,7 @@ func uiIndexHtml() (*asset, error) {
return nil, err
}
- info := bindataFileInfo{name: "ui/index.html", size: 11, mode: os.FileMode(420), modTime: time.Unix(1730855738, 0)}
- a := &asset{bytes: bytes, info: info}
- return a, nil
-}
-
-var _xgenSetupIndexHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8a\x70\x77\xf5\x53\x08\x76\x0d\x09\x0d\xe0\x02\x04\x00\x00\xff\xff\xdb\x53\x4c\xdc\x0b\x00\x00\x00")
-
-func xgenSetupIndexHtmlBytes() ([]byte, error) {
- return bindataRead(
- _xgenSetupIndexHtml,
- "xgen/setup/index.html",
- )
-}
-
-func xgenSetupIndexHtml() (*asset, error) {
- bytes, err := xgenSetupIndexHtmlBytes()
- if err != nil {
- return nil, err
- }
-
- info := bindataFileInfo{name: "xgen/setup/index.html", size: 11, mode: os.FileMode(420), modTime: time.Unix(1730855738, 0)}
- a := &asset{bytes: bytes, info: info}
- return a, nil
-}
-
-var _xgenV09IndexHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x52\x56\x88\x70\x77\xf5\x53\x28\x33\xd0\xb3\xd4\x33\xe2\x02\x04\x00\x00\xff\xff\xff\x2b\x17\xc6\x0e\x00\x00\x00")
-
-func xgenV09IndexHtmlBytes() ([]byte, error) {
- return bindataRead(
- _xgenV09IndexHtml,
- "xgen/v0.9/index.html",
- )
-}
-
-func xgenV09IndexHtml() (*asset, error) {
- bytes, err := xgenV09IndexHtmlBytes()
- if err != nil {
- return nil, err
- }
-
- info := bindataFileInfo{name: "xgen/v0.9/index.html", size: 14, mode: os.FileMode(420), modTime: time.Unix(1730855738, 0)}
- a := &asset{bytes: bytes, info: info}
- return a, nil
-}
-
-var _xgenV10IndexHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x52\x56\x88\x70\x77\xf5\x53\x28\x33\xd4\x33\xd0\x33\xe4\xe2\xb2\x49\xb2\x53\x56\x56\x08\xf2\xf7\x0f\x51\xd0\x8f\x8f\xaf\x4c\xcc\x8f\x4f\x4c\xc9\xcd\xcc\x8b\x2f\xca\xcf\x2f\xd1\x57\xb0\xd1\x4f\xb2\xe3\x02\x04\x00\x00\xff\xff\xb5\x26\x94\x2e\x32\x00\x00\x00")
-
-func xgenV10IndexHtmlBytes() ([]byte, error) {
- return bindataRead(
- _xgenV10IndexHtml,
- "xgen/v1.0/index.html",
- )
-}
-
-func xgenV10IndexHtml() (*asset, error) {
- bytes, err := xgenV10IndexHtmlBytes()
- if err != nil {
- return nil, err
- }
-
- info := bindataFileInfo{name: "xgen/v1.0/index.html", size: 50, mode: os.FileMode(420), modTime: time.Unix(1730855738, 0)}
- a := &asset{bytes: bytes, info: info}
- return a, nil
-}
-
-var _xgenV10Layouts__indexAsyncJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2a\x4b\x2c\x52\x28\x48\x2c\xc9\x50\xb0\x55\x50\xd2\x8f\x8f\xaf\x4c\xcc\x8f\x4f\x4c\xc9\xcd\xcc\x8b\x2f\xca\xcf\x2f\xd1\x57\xb2\xe6\x02\x29\x48\xcb\xcf\x57\xb0\x55\x48\xce\xcf\x4b\x4e\x2c\xd1\x50\x42\x57\xa5\xa4\x69\xcd\x05\x08\x00\x00\xff\xff\x99\x7c\xcb\xfe\x47\x00\x00\x00")
-
-func xgenV10Layouts__indexAsyncJsBytes() ([]byte, error) {
- return bindataRead(
- _xgenV10Layouts__indexAsyncJs,
- "xgen/v1.0/layouts__index.async.js",
- )
-}
-
-func xgenV10Layouts__indexAsyncJs() (*asset, error) {
- bytes, err := xgenV10Layouts__indexAsyncJsBytes()
- if err != nil {
- return nil, err
- }
-
- info := bindataFileInfo{name: "xgen/v1.0/layouts__index.async.js", size: 71, mode: os.FileMode(420), modTime: time.Unix(1730855738, 0)}
- a := &asset{bytes: bytes, info: info}
- return a, nil
-}
-
-var _xgenV10UmiJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2a\x4b\x2c\x52\x28\x48\x2c\xc9\x50\xb0\x55\x50\xd2\x8f\x8f\xaf\x4c\xcc\x8f\x4f\x4c\xc9\xcd\xcc\x8b\x2f\xca\xcf\x2f\xd1\x57\xb2\xe6\x02\x29\x48\xcb\xcf\x57\xb0\x55\x48\xce\xcf\x4b\x4e\x2c\xd1\x50\x42\x57\xa5\xa4\x69\xcd\x05\x08\x00\x00\xff\xff\x99\x7c\xcb\xfe\x47\x00\x00\x00")
-
-func xgenV10UmiJsBytes() ([]byte, error) {
- return bindataRead(
- _xgenV10UmiJs,
- "xgen/v1.0/umi.js",
- )
-}
-
-func xgenV10UmiJs() (*asset, error) {
- bytes, err := xgenV10UmiJsBytes()
- if err != nil {
- return nil, err
- }
-
- info := bindataFileInfo{name: "xgen/v1.0/umi.js", size: 71, mode: os.FileMode(420), modTime: time.Unix(1730855738, 0)}
+ info := bindataFileInfo{name: "ui/index.html", size: 11, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
@@ -1095,7 +1692,7 @@ func yaoDataIcons404Png() (*asset, error) {
return nil, err
}
- info := bindataFileInfo{name: "yao/data/icons/404.png", size: 9342, mode: os.FileMode(420), modTime: time.Unix(1730855738, 0)}
+ info := bindataFileInfo{name: "yao/data/icons/404.png", size: 9342, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
@@ -1115,7 +1712,7 @@ func yaoDataIconsIconIcns() (*asset, error) {
return nil, err
}
- info := bindataFileInfo{name: "yao/data/icons/icon.icns", size: 67465, mode: os.FileMode(420), modTime: time.Unix(1730855738, 0)}
+ info := bindataFileInfo{name: "yao/data/icons/icon.icns", size: 67465, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
@@ -1135,7 +1732,7 @@ func yaoDataIconsIconIco() (*asset, error) {
return nil, err
}
- info := bindataFileInfo{name: "yao/data/icons/icon.ico", size: 54993, mode: os.FileMode(420), modTime: time.Unix(1730855738, 0)}
+ info := bindataFileInfo{name: "yao/data/icons/icon.ico", size: 54993, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
@@ -1155,7 +1752,7 @@ func yaoDataIconsIconPng() (*asset, error) {
return nil, err
}
- info := bindataFileInfo{name: "yao/data/icons/icon.png", size: 34558, mode: os.FileMode(420), modTime: time.Unix(1730855738, 0)}
+ info := bindataFileInfo{name: "yao/data/icons/icon.png", size: 34558, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
@@ -1175,7 +1772,567 @@ func yaoDataIndexHtml() (*asset, error) {
return nil, err
}
- info := bindataFileInfo{name: "yao/data/index.html", size: 282, mode: os.FileMode(420), modTime: time.Unix(1730855738, 0)}
+ info := bindataFileInfo{name: "yao/data/index.html", size: 282, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _yaoDataKbProvidersChunkingSemanticEnJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x98\x5f\x6f\xdb\x36\x10\xc0\xdf\xf3\x29\x0e\xc2\x1e\xda\x21\x36\x92\x38\xe9\x86\xbc\x19\x69\xbb\x65\x58\xda\x62\xc9\xf6\x52\x04\xc1\x59\x3c\x5b\x6c\x29\x52\x25\x4f\xb6\xd3\x22\xdf\x7d\x20\xf5\xc7\x92\x2c\x39\x71\x16\x60\x2f\x6d\x42\xde\x91\xba\x1f\xef\x6f\x7e\x1c\x00\x44\x52\x44\xe7\x10\xdd\xdd\xdd\xa3\x19\x3b\x4a\x51\xb3\x8c\xa3\x43\xbf\xc3\x92\x15\xf9\xcd\xeb\x14\x2d\xc3\x0d\xad\x19\xae\x33\x25\x99\xa5\x5e\x14\x22\x82\x5c\x6c\x65\xc6\xd2\x68\x2f\x38\xbd\x1c\x65\x66\x45\x96\x04\x48\xcd\xa4\x94\x5c\x90\x66\x10\x26\xce\x53\xff\x83\xab\xb4\x81\x13\x64\xc8\xb5\x20\xeb\x18\xb5\x70\x10\x1b\xcd\x5e\x24\x25\xd4\x5e\x00\xb5\x28\xd6\xd6\x3c\x86\xbf\x1d\x39\x50\x68\x17\x04\x0a\xf5\x22\xc7\x05\x41\x6a\x04\x29\x07\x6c\x8a\x53\xc1\x4b\x02\x32\x68\xe4\xdc\xa2\x02\x36\x99\x8c\x61\x66\x72\x2d\xd0\x4a\x72\x87\x90\x59\x72\x64\x97\xfe\x74\x97\xcf\xbe\x50\xcc\x10\x9b\x84\x2c\xe9\x98\xc2\x7d\xca\x2c\x64\x8c\x0a\xe6\xca\xac\x60\x6e\x2c\xcc\x88\x99\x2c\x38\x42\x1b\x27\x60\x89\xad\xa4\x25\x2a\xf8\x96\xa3\x92\x7c\x3f\x2e\x20\x58\xfa\x96\x4b\x4b\x9e\xe3\xe7\xc8\xc9\xef\x14\x1d\x42\x64\x96\x64\x15\x66\xfe\xc7\x14\xd7\x77\x82\x32\x4e\xa2\xdb\x20\x9f\x59\x93\x91\x65\x49\x2e\x3a\x07\xff\x06\x00\x85\x5a\xf5\x9b\x67\x7f\x9f\x05\xf4\x1e\xe3\x82\x6c\xb8\xa8\xd8\xa8\x1f\x85\x16\x81\xe9\x75\xb8\xb0\xda\xee\x3c\xc8\x8d\x67\xc6\x10\x27\x68\x31\x66\xb2\x0e\x32\xb2\x05\x2a\x57\xe8\x8f\x9b\xba\x73\xcc\x15\x47\xe7\x30\x39\x3a\xaa\x57\x53\xa9\x65\x9a\xa7\xd1\x39\x9c\x35\x16\x71\x5d\x2e\x9e\x1e\x35\x64\x63\x93\x66\x46\x93\xf6\x67\x44\x97\x3a\xcb\xf9\x43\x9e\xce\x9a\x9f\xbf\x92\x82\x13\xbf\x9b\xa0\x9a\x6f\x96\x8d\x15\x64\xa3\x73\x38\x0e\x0b\x0f\xc5\x7a\xcd\x70\x2f\x2e\x1f\x2b\xf0\x03\x48\xca\xfd\xcc\xbb\x41\x83\xcb\x8c\x78\x45\xa4\x01\xc5\x17\x8c\x83\xaf\x16\x7c\x5c\x2f\xa0\xb3\x3e\x3e\x7d\x78\x8e\x5f\x14\xcf\x49\x0b\xcf\xc6\xaf\xf6\x02\x74\x85\x6b\x78\x1b\xd4\x86\x10\x5d\x15\x9f\x0f\x89\x24\xeb\x3d\xff\x1e\xc2\x35\x3e\xd6\xd8\xe2\x92\xac\xa3\x10\x1e\x75\x38\xf7\x3b\x51\x0f\xa2\xe3\x5e\x44\x2f\x07\x68\xd2\x02\xe4\x83\xea\x2e\xcd\x15\xcb\x4c\xc9\xb0\xbf\x4f\x7c\xc9\xef\x04\x57\x1b\xe5\x41\x58\xb5\x88\xe7\x83\xe2\x4b\xee\x18\x68\x3e\xa7\x98\xe5\x92\xc0\x7f\x83\x4f\x4b\x82\xc8\x87\x9e\xa2\x25\xa9\x7e\x9f\xfa\x3f\x78\x9d\x6e\x39\x54\x6c\x74\x9c\x5b\x5b\x9c\xb9\xa7\x57\x5d\x6c\x74\x87\x68\x7d\x42\x8b\x4a\x91\x92\x2e\x85\x55\x42\xba\x51\x12\xaa\x2a\xd1\x4f\xe7\xf8\x89\x74\xa2\x1f\x3f\xe0\x27\x25\x53\xc9\xe3\xb6\x39\xf0\xf0\x10\xbd\x1c\xb8\xb3\xb6\xa3\x55\x75\xb3\x07\x99\x09\x95\xa6\x37\x81\x17\x4a\xf0\x31\xd0\x71\x83\xcc\xa6\x62\x89\x3a\x26\x01\xa6\x10\x2c\x62\xaf\xd2\x0e\x75\x10\x62\x54\x2d\xb7\x6a\x19\xf8\x81\x1c\x93\xd8\x36\xe2\x4d\xbd\xd2\x28\x61\x73\x54\x8e\xb6\x36\xde\x4b\x52\xc2\x85\x0a\x17\x1b\xad\x29\x66\x63\x7d\x6d\x2b\x4b\xf4\x5d\xa8\x5f\xb7\xb5\x5a\x4f\x89\x2b\x3f\xab\xd2\x6d\x2e\x37\x68\x39\xb6\x55\x73\xb1\xd9\xab\x88\x5d\x6c\x6e\x6e\xee\x77\x70\xd5\x52\x70\xf9\x36\xa0\xe2\x84\x60\x7a\x59\x82\x7a\x45\xe3\xc5\x18\x4c\x46\x1a\xe5\x78\x91\xf1\xe8\xd4\x8c\xbc\x47\x1d\x86\x08\x75\x44\x5f\xc7\xcb\xc9\xeb\x71\xf7\x86\xca\x0d\xa3\xf6\x46\x0b\xf3\x35\xa9\xe6\x4b\x07\x01\xd2\xc1\x2b\x3f\x37\xd6\xa0\x65\x79\x90\x5a\x58\x93\x67\x7f\xe2\x8c\x54\xa8\x50\x19\xe9\xe9\x25\x5c\x85\x06\xa7\x75\x5c\xf1\x7a\xa5\xbb\x74\x4f\xed\x3b\x39\x28\xa8\xea\xe0\xdf\x3e\xdd\x8c\x4e\x0d\x5c\x49\x2d\xb7\x8e\x0d\x92\x4b\x54\x79\xe1\xb4\x5b\x7c\xfa\x15\x3a\xe8\xdf\xa3\xe3\xb2\x73\x73\x3c\xaa\x93\xe0\x21\xcc\xc8\x71\x78\x8b\xd4\x38\x86\xdc\x11\xc4\xe8\x68\xdb\xb8\x0e\x6d\xb6\x39\x6d\x49\x3c\x6c\x2b\x3d\xc5\xec\x7d\x2c\x7e\x92\xb1\xbf\xcb\x45\xe2\xcd\x2a\x9b\x41\xef\x62\x9b\x64\xe6\x6d\xf5\xce\xa1\x68\xbd\x49\x6c\xd1\xb6\x2d\x9d\x95\xdb\x83\x1d\x96\x3e\xe2\x36\x53\xc5\x64\x35\x86\xaa\xf3\xf2\xbe\xf3\xb6\x8c\x0e\xf8\x67\xf2\x08\xc9\x46\x1c\x3d\x89\xe3\x45\xcb\x57\x00\x1b\x66\xac\x24\x27\xb0\x30\x46\xf8\xb6\x75\x6e\x6c\xea\xf3\x60\x0f\xc5\x7d\x3d\xe2\x42\x61\x2e\x08\x26\xe3\x33\xb8\xf6\xd9\x82\x1f\x31\x09\x35\x27\xd6\xcf\x13\xe3\x38\x68\x8e\x26\xa3\xb3\x91\xdb\xa1\xd9\x31\xf1\xdd\x3a\x26\xa5\x7c\x11\xb2\x84\xce\x74\x07\x9c\xc6\x20\xe4\x93\xdf\xbe\x5e\xd2\xf8\xed\xb6\x95\x7c\xfa\x6b\x18\x6c\x37\xdc\x1d\x88\x11\x1b\xa3\x7c\x45\x19\xca\xd2\x33\x63\x14\xa1\x1e\x48\xd3\xef\x34\xce\x14\xc1\x8d\x31\x0a\x2e\xfc\x29\xbb\xb2\xf5\x54\xf9\x61\xcb\x5f\x58\xd4\x30\x10\xb9\x0d\x13\x5a\x55\xdf\x50\xa3\xba\x77\xd2\x0d\xa6\xe4\x56\xc1\x82\xed\xac\xbc\x92\x1c\x27\xd1\xbe\x60\x4e\x7a\xc1\xb4\xca\xdd\x00\x9c\x6e\x8f\x04\xdd\x1a\x16\x9e\xbc\x35\xb6\xf5\x82\xc9\x32\x6b\xd6\x32\x45\xa6\xd6\xfc\x66\xcd\x52\x0a\x12\xa1\x19\x4f\xca\x31\xb8\x4c\x37\xc5\xc9\xaf\x4a\x34\xc5\x6c\xec\xdb\xcf\x9f\xe1\xcd\x70\x45\x3b\xfe\x75\x33\xa1\x40\xbb\xbf\x3a\xe9\xee\xd4\x5d\xd6\xe4\xe4\xa8\xb3\xf7\x68\x47\xf5\x54\xf0\x93\x5e\xf0\x9b\xc4\xb5\x7f\xdb\x10\x92\x61\xd5\x65\xc1\xab\x3f\xae\x3f\x7e\x78\xbd\x13\x7d\x21\x8a\xaa\x80\x3b\x72\x19\xc5\x72\x2e\xe3\xba\xff\x92\x1a\xfc\x21\x50\xdc\xfa\xac\x5e\xe1\xc2\x08\x7a\x27\xe4\x56\x2f\x53\x03\x9a\xe7\xdd\xc0\x69\xf7\xec\x5d\x40\x99\x35\x69\xc6\xcf\x6b\xab\x72\xc7\x26\x85\x4f\xc5\x09\x3b\xc1\x2c\xc9\x5a\x29\x08\x4a\x23\xa1\xb8\xb5\x2a\x78\x75\xcc\xf6\x0c\x86\x7b\xb0\xb9\xa1\x35\x4f\x2d\xe1\xde\x64\xce\x7a\xc9\xf8\x31\xc0\x12\xdb\xfb\xe7\x05\xac\x1f\x6c\xfe\x0a\xea\xbb\xc8\x54\x23\x73\xf1\x37\x22\x57\xf6\x3a\x3d\x9d\x39\x0c\x0c\x7d\x30\xf0\xb7\x04\x18\x1a\xfe\xb6\xb9\xfd\x97\xa8\x7b\xd3\x8b\xae\x7a\xd0\xbb\xc1\xc9\x70\x0f\x90\xf5\xbc\x33\x30\x2a\xf6\x61\x6d\x8e\x8b\x8f\x4f\x3d\x30\x30\x32\xc2\xc0\xd8\x08\x83\xa3\x23\xa3\xfb\xba\x63\x7e\x7c\x59\xf6\xbf\x6c\xd8\x1f\x34\xff\xf7\xff\x3e\x1c\x3c\x1c\xfc\x1b\x00\x00\xff\xff\x2e\xa2\x0e\x53\xa7\x15\x00\x00")
+
+func yaoDataKbProvidersChunkingSemanticEnJsonBytes() ([]byte, error) {
+ return bindataRead(
+ _yaoDataKbProvidersChunkingSemanticEnJson,
+ "yao/data/kb/providers/chunking/semantic/en.json",
+ )
+}
+
+func yaoDataKbProvidersChunkingSemanticEnJson() (*asset, error) {
+ bytes, err := yaoDataKbProvidersChunkingSemanticEnJsonBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "yao/data/kb/providers/chunking/semantic/en.json", size: 5543, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _yaoDataKbProvidersChunkingSemanticZhCnJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x97\x5f\x4f\xdb\x56\x14\xc0\xdf\xf9\x14\x96\xb5\xc7\x82\x80\x40\x37\xf1\x86\xda\x6d\x62\xda\xda\x49\xad\xf6\x52\x21\x64\x92\x0b\x78\x75\x6c\xcf\x71\x5a\xba\x0a\xc9\x84\x94\x90\x12\x48\x5a\xf1\x37\xa1\x14\x4a\x28\x59\x29\x09\xad\x52\x9a\x84\x00\x1f\xa6\xbe\xd7\xf6\x53\xbe\xc2\x74\x7d\xf3\xc7\x4e\xec\x40\x10\x93\xf6\x02\xe4\xde\x73\x0e\xf7\xfc\x72\xfe\x3e\xef\xa2\x28\x9a\xf5\xd1\x43\x14\x3d\x36\xf6\x8c\x11\x7a\x02\xc0\xcf\xf0\x32\xeb\xa5\x6f\xe1\x1b\x99\x95\x39\x80\x2f\xd1\x66\x49\x9f\x3b\x43\x6b\x11\xb4\xf5\x11\x2e\xcc\xc3\xe8\x67\x22\xe0\x03\x01\xaf\xc4\x8a\x32\x2b\xf0\x58\x6c\x78\xc4\xf8\xe7\x13\x7c\x99\xd1\x92\xe1\x86\xc6\xee\x1e\xd1\xa8\x94\x63\xfa\xdc\x19\x4c\xbf\xd5\x12\xf3\xfa\xc1\x1e\x9c\x7f\x01\xb3\x45\x98\x38\x54\x8b\x51\xf8\x3a\xa6\x16\x5e\xaa\x85\x45\xb4\x16\xf9\xa6\x84\xd4\xb3\x0b\x6d\x25\x03\xd3\x07\x7a\xee\x48\xcf\x28\x28\xb3\x0b\xb7\x17\xe1\x56\x46\x8f\x7c\xd0\xc2\x27\x6a\xe1\xd4\x78\xb7\xa1\x9f\x17\xb5\xd5\x18\x4c\x87\x89\x71\xf2\xb4\x4a\x39\xa6\x5e\xbc\x41\xb1\xd9\xaa\xcc\xc5\xb6\x9e\xcf\x21\xe5\x00\xbe\x8e\x19\xca\xa9\x7e\xfe\x0a\x7d\x99\xd5\x32\x8b\x95\x72\x0c\xc5\x13\xea\x79\x0a\xa5\xf2\x70\xff\x0c\xbf\x36\xb1\xa5\xe5\xdf\xa1\x3d\x45\xcb\xbf\xd3\xf3\x19\x23\x12\xff\xa6\x84\x88\x8b\x12\xf8\x2b\xc8\x4a\x00\x33\x7a\x44\x07\xd8\xbf\x01\x7d\x8b\xa2\x85\x27\x40\xe2\x18\x11\xff\xe9\x67\xa6\xc7\x7c\x40\x94\xa7\xe8\x51\x53\x5e\x94\x04\x11\x48\x32\x0b\x02\xf4\x10\x85\xf9\x52\x14\x51\xab\x7d\xc2\x5c\x9f\x89\x26\x56\x96\x97\xc1\x24\x90\xcc\x7f\x44\x2e\x6a\xc0\xb5\x68\x04\x65\xbf\xc0\xf4\x01\x3c\x8e\x37\xae\x9b\x70\xa3\x5c\x5c\x2d\x7c\x20\xa2\x5a\x32\xac\xa5\xb2\x68\x27\x02\x8f\xd6\xb5\x8f\xef\xd1\xea\x71\xcd\x83\xaa\xe6\x04\x13\xe4\x64\x7a\x88\xf2\xf4\xf6\xd6\x4f\xfd\x2c\xcf\xfa\x83\x7e\x7a\x88\x1a\xb4\x1c\x32\xd3\xd5\xc3\x81\x5e\x8b\xac\x57\xf0\x8b\x02\x0f\x78\x6c\x83\x1e\xe1\xc5\xa0\x7c\x2f\xe8\x1f\xb7\x3e\xfe\x29\xeb\x93\xa7\xf0\xed\x14\xc3\x4d\x34\x8e\x05\xc9\x07\x24\x7a\x88\xea\x33\x0f\x66\xc8\x79\x9d\x60\x47\x54\x8c\xc8\x12\x8c\xef\x10\x0f\x5d\xa9\x68\xa9\x82\x11\x3a\x25\x54\x8c\xf5\xbc\x96\x0c\x5b\xd5\xdc\xc1\x0c\x3a\x71\x71\xc2\xd2\x77\xa3\x58\xfa\x6d\x58\x1a\xd1\xd4\x11\x18\xb4\xa5\xc0\xf4\x01\xfa\xfa\x09\x96\xdc\xc1\x54\x33\x65\xfd\xc4\x98\x5d\x82\xcb\xf3\x38\xec\x4d\x35\xf8\x29\xa4\x95\xaa\xca\x6e\x41\xe3\x80\xa6\xcf\x11\xcd\xcd\x81\xf1\xd8\xc0\xe0\x14\x1a\xf3\x07\x39\x99\x15\x39\xd6\xbc\xef\x00\x0f\xc9\x23\xa8\x2c\xa1\xd5\x63\x57\x3c\xfa\xf1\x1c\x5a\xcd\xa3\x54\x1e\x93\x20\x48\xb6\xa2\x68\x75\x81\x28\x6b\xc9\x30\xd1\xff\x1f\x11\x1a\x68\x09\x1d\xaf\xc0\x7b\x83\x92\x44\x6c\x76\x1c\x3f\xb0\x78\x02\xe3\xaf\xda\x31\x6a\x14\xdb\xdd\x3d\xb4\x7e\x82\xa1\x14\x4f\xf4\xdd\x98\x7b\xe4\xf4\x5d\x91\x0b\xfd\xfc\x39\xf5\x1d\xc7\xfa\x59\xb9\xc7\xee\x08\x35\x33\x43\xdf\x1c\xb2\x41\x7b\x50\xd5\xba\x9d\x03\x2c\x61\xfc\x4f\xe0\x95\x1d\x58\xe9\xb9\x23\xb5\x18\x35\x94\xa8\xb1\x5b\x74\x0f\x26\x53\x88\x74\x2e\xfd\x78\x4e\x5b\xc1\x3d\xd1\x38\xdc\xd0\x4a\x07\x44\xd3\x86\xcb\xe6\xd6\x3d\x10\x90\x81\xaf\xf5\xe9\xb7\xeb\x27\x96\x96\x34\xc1\x70\x01\xd0\x72\xf1\x13\x0b\x38\x5f\xc0\xec\x58\x5e\x81\xe7\x81\x57\x16\x24\xdc\xab\xbc\x02\x2f\x83\x69\x79\xcc\xec\x47\xa3\x75\x35\x87\x96\x55\x7d\x56\x4d\xd7\x7a\x6c\x61\x14\x90\x25\x96\x9f\xac\x3f\xb5\x89\xd3\xc5\x36\x5a\xde\x87\x9b\x19\xfb\x7d\xcb\xc8\x40\x20\x69\xc9\x70\x5d\x61\xe4\x6e\xa5\xbc\xa0\x9e\x2f\xc2\xf7\xa1\x4a\x39\x29\x88\x80\x67\xd8\x9e\x49\x51\xee\x1e\x10\xba\x71\x14\xdd\xa2\x7c\x00\x88\x01\x00\x1e\xf7\x3c\xf1\x54\xca\x51\x2b\xcb\xa6\xf0\xa3\xed\x17\x36\xd0\x0f\x00\x67\xfd\x86\x4d\x01\xc0\x9b\xd1\xf8\xc8\x72\x46\xd9\x7c\x37\xa5\x26\x25\x21\x28\xfe\xca\x8c\x03\x0e\xdb\xb9\x2f\x02\x7e\x78\x84\x22\x7e\xd8\xcc\x91\xef\xcf\xf4\x35\xd0\x62\xd5\xc9\xb2\xa9\xc0\xd5\x0c\xff\xfc\xfb\xc3\xee\x01\x81\xfa\x8d\xe5\xd9\x16\xb3\xa6\xe4\x13\x86\x0b\x92\x60\x6d\x61\xe4\xac\xd0\x9c\xce\x17\x87\x86\xf2\x56\x2d\xac\x68\xa7\x71\xf4\x65\xb9\x52\x8e\x19\x4a\x08\x26\xcc\x92\x97\x4e\xa2\xd5\xe3\xea\x24\xb6\x55\x42\x9b\x39\x37\x8b\x35\xd4\xb2\x14\x04\x2d\x12\x33\xad\x4a\x57\xf1\xb9\x13\x77\xaf\xe4\x29\xda\x52\x8c\xc3\x0d\x32\xda\x69\xc9\xf0\xf0\x48\x7d\x26\x35\x94\x90\xb6\x92\x51\x4b\xcb\x30\xbd\x84\xde\x84\x48\x6d\xa3\x5b\x1d\x69\x3a\x19\xed\x6a\xe3\xe6\x25\x01\x83\x52\x17\xea\xe9\xde\xcd\xc7\xcb\xdd\x6a\x56\x50\x7f\x78\x2e\x01\x68\xc9\x9f\x2b\xe1\x23\xf1\x01\xb3\xdb\x68\x6e\x07\xcf\x0d\xc4\x81\xb5\x22\xda\x5d\xc0\xc3\xb4\x72\xa0\xcf\x9d\xe9\xd1\x1c\xdc\x3f\x73\x20\xd7\x69\x08\xdc\xe1\x98\xa0\x0f\x50\x9e\x9e\x41\xea\x01\xae\x40\xf2\x25\xce\x30\xbc\x3c\x25\x09\x22\xeb\xed\xf1\x9a\x9a\xdd\x9e\xee\xc1\xee\x40\x1b\xcd\xe6\x2c\x88\x94\xf4\xe8\x67\xec\xd6\x72\x46\x4b\xcc\x5b\x97\x11\xb2\xaa\xe0\xb5\xe5\x65\xaa\xe3\x98\xb0\x7c\x1a\xb5\x15\x19\xe7\x1e\x45\xb5\x0e\xcb\x4d\xf8\x68\x59\x10\x38\x2f\xc3\x71\x6e\xf5\x78\x5c\x10\x38\xc0\xf0\x2e\x05\x19\x26\x72\x38\x99\xbf\xee\xc3\x17\x5f\x49\x4f\x6a\x5b\x99\xf1\xc2\x65\x76\x31\xb8\x30\x8f\xb6\x13\xfa\x45\x44\xcb\x2c\xaa\x85\x23\xf8\x62\x56\xcf\x16\xac\x66\xda\xd4\x5f\x5b\x7f\xa2\x5a\x4b\xf0\x53\x56\xf6\x4e\xd1\x9d\xd2\xe9\x77\xa4\x63\xeb\x6e\x2e\x84\x9a\x47\x20\x3b\xa1\xfa\xf7\xde\xb4\x78\x39\xe1\x21\x1b\xa4\x76\xba\x69\xe9\x5f\xaf\xd4\x72\xb9\xbe\x66\xd4\x8d\x55\xca\x0b\xc6\xe9\x86\x9e\x4d\xab\x85\x52\x7d\x98\xbc\x0d\x95\xa5\xf6\xad\xab\xef\x87\xc6\x9a\x41\xd9\x07\xa8\xfe\xe6\x9b\xfa\x18\xe5\xe9\xef\x6d\xba\xbb\x74\x64\xba\x2a\x74\x8f\x23\xf4\x46\xb5\xea\x7c\x42\x20\xe4\xc8\x3c\x54\x29\x2f\xfc\xf2\xe0\xfe\xbd\x4a\x39\xda\x3e\x28\xe3\x39\x43\x89\xe2\x5c\x25\xd4\xa3\x45\x98\x4d\xd6\x2c\xc4\xb0\x05\xc2\x5f\x2d\x7c\x46\x3b\x65\x58\x8e\x5f\x73\x36\xb8\x23\xf8\xc0\x8f\x3e\xd6\x9c\x9b\x1c\x39\x4d\x04\x39\xce\x99\xd3\x80\x23\x27\x51\x12\xfc\xa2\x7c\xbd\x41\x2a\xf2\x01\x66\x93\x78\x9c\x8c\x27\xb4\x74\x49\xcf\x2d\xb5\x45\xa4\xbf\x9f\xd7\x52\x6b\xf5\xd4\x85\x66\x69\x23\x01\x58\x37\x70\x4d\x2a\x0f\xc1\xb4\x3c\x2c\x01\xa6\x63\x26\x83\x8e\x4c\xf0\xa0\x2f\x01\x59\x7a\x76\xbd\x6c\x25\x4b\x8b\x11\x59\xd2\x73\xab\xe8\xe3\xae\x75\x6f\x71\xe2\xd2\x34\x8c\xb7\x6a\xb7\x81\xe2\x71\x49\x44\xb7\x34\xec\xfb\x8f\x72\xf0\xb6\x23\xc7\xda\x1a\x33\xe6\xba\x02\x76\x40\xb5\xba\xb9\xb8\x2c\x84\x4e\x60\x1d\x77\x1d\xc7\xbd\x90\x72\xd9\x0d\x29\x97\xfd\x90\x72\xdd\x11\x65\x26\xf0\xb8\xcd\xa2\x78\xb3\xd4\xbf\x6f\x50\xef\xb2\xfe\xc6\x3f\x67\xba\x66\xba\xfe\x0d\x00\x00\xff\xff\xd3\x51\xca\x09\x46\x15\x00\x00")
+
+func yaoDataKbProvidersChunkingSemanticZhCnJsonBytes() ([]byte, error) {
+ return bindataRead(
+ _yaoDataKbProvidersChunkingSemanticZhCnJson,
+ "yao/data/kb/providers/chunking/semantic/zh-cn.json",
+ )
+}
+
+func yaoDataKbProvidersChunkingSemanticZhCnJson() (*asset, error) {
+ bytes, err := yaoDataKbProvidersChunkingSemanticZhCnJsonBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "yao/data/kb/providers/chunking/semantic/zh-cn.json", size: 5446, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _yaoDataKbProvidersChunkingStructuredEnJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x96\xdf\x6b\x23\x37\x10\xc7\xdf\xf3\x57\x0c\x4b\x1f\x5a\x48\x4c\x72\x3f\x5a\xf0\x6b\xae\xd0\x3e\xa4\x57\xf0\xbd\x35\xc5\x8c\xa5\xd9\xdd\x39\xb4\x92\x3a\x1a\xd9\x4e\x42\xfe\xf7\xa2\x5d\x7b\x6d\xb7\xeb\x90\xc0\xc1\x3d\x18\xec\xf9\x21\x8d\x3e\x33\xfa\xca\x4f\x17\x00\x15\xdb\x6a\x0e\xd5\x72\xf9\x80\x61\x96\x54\xb2\xd1\x2c\x64\xab\xcb\xe2\x53\x56\x47\xc5\xfd\x1b\x93\xa0\x98\x96\x0d\x3a\xf8\x42\x5b\x85\x45\x74\xac\xca\xbe\x19\x22\x2d\x25\x23\x1c\x95\x83\x2f\xf1\xbd\x37\x81\x0d\x26\x77\xe4\x35\x01\x7b\x0d\xd0\x65\xa7\x1c\x1d\x81\xc3\x07\x92\x04\xa1\x06\x2d\x6b\x25\x6a\x86\xa8\x0d\x6b\x0b\x26\xf8\x9a\x9b\x2c\xb8\x72\x04\x89\x1f\x29\x01\x7a\x0b\x61\x4d\xe2\x30\xa6\x19\xdc\x0a\xa1\x52\x82\x88\x42\x5e\xaf\x4c\xcb\xce\x82\x90\xc3\xb2\x7b\x6a\x39\x26\x58\x91\x6e\x88\xfc\x61\x65\x54\xb0\x5c\xd7\x54\x32\xc0\x52\xd4\x36\x5d\x02\x3a\x17\x36\xec\x1b\xa8\x83\xc0\x2a\x68\x0b\x96\x14\xd9\x91\xed\x77\x5c\x49\x40\x4b\x52\x0a\xea\xcb\x14\x52\x61\x5a\xa3\x03\x2e\x2b\x17\x1e\x80\x31\x3a\x36\xc3\xce\xb3\x01\x85\xd0\x3f\x99\x0b\xc2\x39\xfc\x55\x95\xfa\xab\x4b\xa8\x76\xd5\x97\xaf\x1d\x6e\x97\x7d\x05\xd5\xdf\x7d\x7c\x94\x10\x49\x94\x29\x55\x73\x28\x2d\x01\x18\xd2\xf6\xbf\x4a\x23\x1e\x62\xdf\x07\xf6\x4a\x0d\x49\xbf\xd1\xe0\xd8\x77\x68\x31\x9c\x14\x16\xfd\x86\x7b\xf7\x7f\xda\xf2\x05\xa5\x21\x05\xd3\xa2\xa0\xd1\xd2\x82\x48\x72\xd2\x83\xd9\x71\x6e\x8d\xd9\x69\x35\x87\xf7\xd7\xd7\xa3\xb5\x63\xcf\x5d\xee\xaa\x39\x7c\x3c\x32\xe2\x76\x67\xfc\x70\x7d\x14\x6b\x42\x17\x83\x27\x5f\xd6\xa8\x7e\xf7\x31\xeb\x1f\xb9\x5b\x1d\x97\xbf\x61\xab\x6d\xf1\xb6\xe8\xea\x83\x39\x88\x25\xa9\xe6\x70\xd3\x1b\x9e\x07\xfb\xc8\xf0\x4d\x5c\x3e\xef\xc1\x9f\x41\xb2\xf3\xc7\x32\x06\x47\x5c\xf6\x03\x84\xf6\x2b\x9a\xc2\x75\x3f\x49\x93\x80\xde\x4d\xf1\x99\xc2\x73\xf3\x4d\xf1\xbc\x3b\xc1\x73\x98\xab\x37\x01\xba\xc3\x2d\x7c\xea\xd3\xce\x21\xba\x1b\xca\x87\x76\x27\x02\x0f\xc3\x05\x02\x0d\xa0\x82\x6b\x92\x44\xfd\x0d\x4a\x7b\x49\x98\x1e\xa2\x09\x44\x37\x93\x88\xbe\x1d\xa0\xf7\x27\x80\x12\x45\x14\xd4\x20\x53\x80\x92\xca\x5e\xcc\x4e\xf9\xdc\xe6\xa4\xa1\x83\xc5\x98\x7c\x0e\xd3\x2e\x70\xdc\x05\x22\xaa\x92\x78\xf8\x51\xa8\xa1\x2d\xa4\x1c\x63\x10\x25\xfb\xd3\x24\x9f\xea\x60\x8c\x0e\x0d\xb5\xc1\x0d\x87\xa8\x68\xd6\xcc\xe0\xfe\xde\xdf\xdf\xfb\x4b\xb8\xba\xba\xaa\x5e\x00\xf4\x6a\x34\x1f\x4e\xd0\x90\x2f\x6a\xbb\xb4\xb4\xca\xcd\x14\x9d\x55\x08\x8e\xd0\x4f\xe0\xf9\xb5\xcf\x84\x4f\x25\x13\xee\x82\x3d\x2f\x3e\x9f\xb3\xc6\xac\x07\x89\x1d\xc7\x05\xd8\xd7\x41\xba\x5e\x44\xfb\x41\xea\xcb\x68\xce\x0d\x52\x8d\x2e\xd1\x34\x82\xc5\x86\xd5\xb4\xaf\x66\xf0\xf1\x74\x3c\xf8\x91\x96\xbb\x27\x8a\x69\x72\x48\x5e\x90\x5f\x7e\x24\xb8\x3b\x24\x9f\xbd\x4b\x63\x48\xb9\x3e\x68\xbf\xe6\xa4\x40\x75\x4d\x46\x79\x3d\x3c\x77\xfd\x5b\x45\x54\x94\xd9\xd1\x9a\xdc\xb4\xe4\x7c\x8f\xeb\xf4\xf3\xff\xf4\xc6\x04\x6f\xb2\xc8\xb0\xe6\x1b\x45\xe7\xf6\x90\x7b\x8e\xd6\x9f\x28\xe8\x1c\x39\x4e\x1d\x6c\xda\xf2\x9e\x8f\x33\x33\xfe\xb5\x98\xa4\x73\xf3\x4a\x3a\xd5\xd3\x13\xfc\xe0\xb8\x63\x9d\x9d\x1e\x07\x9e\x9f\x5f\xba\x66\x6f\x04\xf7\xcb\x00\xee\xa2\x7c\x9e\x2f\xfe\x0d\x00\x00\xff\xff\x5e\x53\x80\x9e\x77\x09\x00\x00")
+
+func yaoDataKbProvidersChunkingStructuredEnJsonBytes() ([]byte, error) {
+ return bindataRead(
+ _yaoDataKbProvidersChunkingStructuredEnJson,
+ "yao/data/kb/providers/chunking/structured/en.json",
+ )
+}
+
+func yaoDataKbProvidersChunkingStructuredEnJson() (*asset, error) {
+ bytes, err := yaoDataKbProvidersChunkingStructuredEnJsonBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "yao/data/kb/providers/chunking/structured/en.json", size: 2423, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _yaoDataKbProvidersChunkingStructuredZhCnJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x95\xcd\x6e\xdb\x46\x10\xc7\xef\x7e\x0a\x62\xd1\xa3\x1d\xd8\xf9\x68\x01\xbd\x41\x2f\xbd\xf4\x58\x17\x02\x2d\xad\xad\x05\x28\x92\xa5\x96\xcd\x87\x61\x40\x56\x14\x7d\x34\x52\xe4\xa6\x52\x8d\x52\x3a\x44\xb1\xa1\x08\x41\x2c\xc9\xb5\xaa\xca\xb4\xe2\x3c\x4c\x38\xbb\xd4\xc9\xaf\x50\x2c\x57\xfe\x50\x43\x1a\x36\xe0\x43\x0e\x02\xa8\x99\xf9\x2f\xf9\xff\x61\x66\x76\x73\x41\x51\x10\x49\xa2\x98\x82\xe2\xf1\xa7\xaa\x71\x2f\x43\x2d\x3b\x41\x6d\x0b\x27\xd1\xa2\xc8\x51\x42\x35\x2c\xd2\x50\x2a\xc0\x61\x8e\xfd\x59\x64\xad\x0f\xe2\xb9\xfc\xb7\x2c\x48\xe2\x4c\xc2\x22\x26\x25\x86\x1e\x94\x0d\x0a\xa2\xa6\xbd\x27\x6b\xbc\xb1\x0b\xfb\xce\x85\x90\x97\x8b\xac\xf7\xcf\xd9\xa4\x02\xb5\xfe\xf4\x45\x95\x7f\xec\xc1\xfe\x3b\x18\xd4\xe0\x75\x65\x5a\xac\x42\xed\x0d\xb8\x9d\xcf\xd9\x1c\xb4\xba\xde\xb8\x0a\x3b\x15\xf6\xef\x21\xb8\x1d\xee\xe4\xa5\x70\xba\x3b\x84\x52\x13\x4e\x5c\x5e\x1a\xc1\xc1\x0e\xbc\x38\xe2\x47\x27\x67\x93\x0a\xab\xf7\x59\x65\x1b\x5a\x5d\xb6\xd3\xe2\xc3\xb7\xe0\xd6\x79\xbd\xeb\x8d\x0f\xfc\x4f\x4d\xbf\x5d\xf1\xfb\x1d\x7e\x52\x80\xd7\x15\xe8\x7d\x64\x47\x4d\xee\xe4\xbd\xf1\x6f\xde\xf8\xa5\xf8\xa4\xbd\x2c\x1f\xbe\xfd\x9c\xcd\x49\x2f\x16\xfe\xc5\x26\xc2\x7a\x4c\xf9\x09\x65\xc8\x33\x8c\x16\x15\x64\xfc\x8a\x2d\x4d\x35\xc5\x63\x5a\x7d\x12\x4f\x62\x93\xa6\xd0\xcf\x41\xbd\x69\x19\x26\xb6\x28\xc1\x19\x14\x53\x04\x4a\x45\x91\xb2\xf3\x7f\x02\xe0\x53\x33\xe0\x47\x74\x8a\x37\xb0\x15\xbc\x48\x26\xce\xc9\x4a\x6f\x12\xc4\x65\xfa\x7f\x5c\x59\xbf\xe6\x8d\xdf\xcb\x52\xc1\xa3\xd9\x63\x6f\x8a\x70\xb0\xcb\x3f\x74\x58\x63\x70\xee\x60\xa6\x5c\x57\x6d\x8d\xa2\x98\xf2\x60\x79\xf9\x22\x9a\x26\x3a\x49\xdb\x69\x14\x53\x1e\x5d\x09\xaa\x4f\x66\xc1\x87\xcb\x57\x6a\x13\x46\xda\x34\x74\xac\x8b\x33\xd0\xf7\xba\x69\xd3\x1f\xec\xf4\xda\xd5\x8f\x7f\x4c\x92\x34\x25\xb2\x29\x55\x5b\xbf\x0c\x1b\x56\x12\x5b\x28\xa6\xac\x04\x81\x2d\x19\xbf\x20\x78\x2b\x2a\xb3\x7e\x08\x1c\x46\x52\xe1\xcd\xf1\x34\x77\x72\xd1\x1c\xdc\xc9\x5f\x95\x45\x83\xb9\x1f\xc6\x25\x0c\xcb\xca\x9d\x62\xb9\x3f\x87\xe5\xb2\x9b\x6e\x05\x86\xb5\xb2\xb0\xff\x4e\x4e\x46\x24\x18\x39\x7d\x6c\x77\x34\xdd\xae\xc2\xab\x02\x77\xf2\x52\x06\x87\x39\xee\xce\xc4\x51\x4d\x13\x82\x66\x25\x14\xcd\xdd\x81\x79\x30\x07\x26\x83\x4d\xd5\x52\xa9\x61\x85\x81\xc9\x50\x8b\xe8\x1b\x21\x5c\xfc\xe2\x7b\xe8\x39\xde\x71\x19\x4a\x85\xa9\x53\xbf\xae\x6d\xbe\x2c\x65\xdd\x36\x4c\x6a\x67\x93\x92\x5c\x25\xec\x60\x0f\x4a\x7f\xf9\xed\xae\x7f\x7a\x1a\xc4\xcb\x11\xb0\xd0\x65\xd0\xd4\xd4\x04\x4e\x19\x9a\x74\x84\xbc\xd3\x97\xd0\xc9\x9d\x4d\x9c\xd5\x55\x7d\x75\x55\x5f\x54\x96\x96\x96\xd0\x35\xc4\x6e\xcc\xea\xe1\x1c\x2b\xac\xab\x6b\x1a\x8e\x27\xf1\x9a\xbd\x11\x86\x6b\xcd\x30\x34\xac\xea\x21\xbc\x60\xa7\xcf\xeb\x5d\x7f\xf0\xdc\xef\x37\xa4\xfd\x68\x5e\xa7\x7f\x40\xd1\x95\x7b\x94\x3b\xf9\xd9\x6a\xff\xd4\x66\xdb\xe2\x08\xcf\x7d\x25\x4f\x89\x60\xb4\xae\x6a\x19\x1c\xee\xfc\xc7\xc7\x84\x26\x52\x37\xb6\xfe\x68\xbe\x4d\xc8\x33\x1c\x4f\xdb\x1a\x25\xa6\x46\x70\x68\xb3\x44\x4f\xd1\xec\xde\xc9\x56\x59\x63\x10\xed\x7b\xf0\x9c\x35\x86\xac\x39\x14\x03\x23\x27\xa7\x55\x66\x8d\x92\x14\x0b\x12\x81\xfe\x2b\x1a\xa4\x6f\xbf\xd8\x30\x09\x43\x4f\xd8\x96\x25\xcf\xbc\xf5\x9a\x81\xe3\x11\xd4\x7e\xbf\x8e\xd1\x6c\xd3\x04\x77\x3e\xdb\x1d\x09\x28\xc7\x23\xbf\x5d\x89\x5e\x30\x2b\x37\xe4\x82\x36\x37\x95\x6f\x34\x92\x26\xf4\xde\xbc\x11\x65\x6b\xeb\xba\x49\xba\x25\xb2\xef\x24\xb2\x05\xf1\xdb\x5a\xf8\x2f\x00\x00\xff\xff\x04\x10\x96\x8a\x11\x09\x00\x00")
+
+func yaoDataKbProvidersChunkingStructuredZhCnJsonBytes() ([]byte, error) {
+ return bindataRead(
+ _yaoDataKbProvidersChunkingStructuredZhCnJson,
+ "yao/data/kb/providers/chunking/structured/zh-cn.json",
+ )
+}
+
+func yaoDataKbProvidersChunkingStructuredZhCnJson() (*asset, error) {
+ bytes, err := yaoDataKbProvidersChunkingStructuredZhCnJsonBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "yao/data/kb/providers/chunking/structured/zh-cn.json", size: 2321, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _yaoDataKbProvidersConverterMcpEnJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x97\x4f\x4f\xe3\x48\x10\xc5\xef\xf9\x14\x25\x9f\x76\x25\x14\x69\x81\xbd\x70\x43\xd9\x45\xe2\x10\x36\x82\xbd\xad\x56\x51\x8f\x5d\x8e\x7b\xa6\xdd\xed\xa9\x2e\xf3\x47\x23\xbe\xfb\xa8\xda\x7f\x62\x67\x1c\x33\x38\x09\x73\x40\xa0\xea\xae\xee\x57\x3f\x5e\x5e\xc3\xb7\x19\x40\xa4\x93\xe8\x0a\xa2\xf5\xfa\x45\xb9\x79\x1e\x17\xd1\x99\x14\x59\xb3\x41\xa9\x2f\x17\x2b\xf8\xd7\x39\x03\x0b\x67\x1f\x91\x18\xa9\xda\x90\xa0\x8f\x49\x17\xac\x9d\x0d\xdb\x5c\x82\x61\x0f\xe3\x33\xc3\x8a\x1c\xbb\xd8\x19\xf8\x6d\xb9\x58\xfd\x0e\x71\xd3\x0a\x9c\x29\x86\xd2\xa3\x07\x7c\x66\x24\xab\x0c\xb0\x73\xc6\x43\xea\x48\xb6\x31\x5a\xae\xb7\x7b\xed\xec\x1c\xae\x8d\x71\x4f\x1e\xb4\x65\xdc\x90\x92\xdb\xe0\x49\x73\x06\x71\xe9\xd9\xe5\x9d\xad\xf5\x39\x9c\x91\x2b\x37\x19\x70\x86\x20\xd2\xa5\x91\x52\x15\xe3\xbc\x92\x4d\xf8\xb5\xd4\x84\x32\xf2\x7f\x32\xf9\x19\x44\xd2\x18\xfd\x1f\x56\x0b\x72\x05\x12\x6b\xf4\xd1\x15\x08\x9c\x06\x4f\xf5\xb3\x70\x79\x29\x02\x16\xcf\xa4\xed\x26\x9c\x59\xd5\xbb\xbc\x1e\x90\x1e\x91\xe0\xf6\xaf\xed\xfa\x0e\xae\xdb\x04\x2d\xeb\x54\x23\x81\x4b\x5b\xb1\xbe\xea\x63\x27\x88\x1a\x24\x0d\x8a\xee\x59\xa9\x2a\x0d\xcb\x39\xdb\x62\xec\xf2\xc2\x59\xb4\xa1\x7c\x6b\x8b\x92\xb7\x6b\x4f\x3a\xe1\x4c\xea\x99\x32\xe9\xb6\xec\x28\x41\x8a\xae\xe0\x8f\x50\x78\xad\xea\x15\x8e\xf7\x4c\x1c\xdc\x71\xa7\x72\xdc\x3b\xad\x2c\x76\xe7\x94\x2b\x64\x4a\x6d\x1f\xdd\x97\x0f\x1c\xf4\xbc\x37\xa8\xa2\x4d\x99\xa3\x65\xbf\xce\x55\x51\xc8\x6c\x03\x53\xbb\x4f\x9f\x31\xe6\x81\xa9\xaf\x9b\x6e\x58\xd6\xdd\xfb\xa6\xaf\xd7\x05\x40\xc7\xae\x85\x22\x95\x23\x23\x79\x21\xd1\x52\x69\x45\x75\x30\x74\x3c\x9b\x2a\xe3\x71\x18\xc5\x1d\x7a\xc6\x64\x80\x45\x5a\x1a\xf3\x23\x8b\x8b\xb6\x32\x60\xfa\x50\x4f\xb5\xc1\x75\xa1\xc2\x21\xdb\xf2\x7e\x47\xf4\xf9\xdc\x68\x83\xb0\x52\x9c\x41\x43\xaa\xbf\x71\x17\xd2\x2e\x00\xb0\x62\x1a\xb1\x86\xb8\x46\xcb\xef\x19\x44\x11\x88\xa2\xf9\xee\x59\xad\x4f\xb6\xa2\x7b\x3b\x46\x4c\x33\x62\x9c\x81\x4f\x49\xc7\x40\xf5\xc1\x21\xb3\x26\x21\x5a\xd4\x79\x77\x28\xa0\x80\xa5\x16\xb2\x9f\x4c\xa3\xf4\xd8\x5c\xce\x07\xb9\xa4\x8e\x72\x35\x0d\xcb\x4d\x68\x3d\x98\x8a\x2b\x39\x78\xa6\x3a\xcd\x17\x18\xeb\x54\xc7\xe1\x09\x19\xb1\x4f\x25\xfb\xd8\x8c\x2e\x06\x19\xb9\x30\x86\x9f\x04\xe9\x9f\xaa\xf7\x60\x4a\x2a\x49\xb4\x6c\x53\x06\x6a\x39\xfb\xe1\x34\x7a\x8f\x4d\xe7\x72\x4b\x67\xd6\xfd\xde\x04\x35\xa1\x2f\x0d\x4f\x4a\xe9\xfb\xd0\xfa\x9e\x88\x6e\x59\x11\xfa\xc2\x59\x79\x87\x35\x9a\x24\xa4\x74\x27\xbe\x2b\x4d\x27\x4f\xe9\xcb\x37\x53\xfa\x18\x01\x74\x23\x13\x8e\x3a\xe8\xbe\x07\x23\x84\x8d\xd2\x56\x90\x49\x3a\x37\x7f\xdf\x25\xbf\x2e\x85\x86\xd3\x39\x47\x56\x89\x62\x35\x89\xce\xb2\x6e\x3e\x08\x4f\xc7\x32\x8d\x98\xfd\x70\x5a\xb9\x1f\x93\xd1\x48\xe4\x68\x12\x9a\xbf\xa5\xf3\x20\x2e\xe1\x6e\xd0\xb6\x0a\xdc\xd1\x4c\xae\x64\x9e\x30\x92\x07\x43\xc7\x3a\x6e\xdf\x8b\x49\xd1\x73\xd7\x39\xe0\xa7\x03\x48\x22\x59\x12\xa8\x7b\x3b\x64\xca\x26\x46\x56\x93\x92\xfa\x9e\x3a\x75\xfc\xfc\xf9\x66\xfc\x14\xe4\x36\x84\x7e\xda\x23\xb6\xaa\x9b\xa1\xcb\x6a\xd4\x50\x3d\xa8\x72\xc7\xce\x3f\x0f\xd0\xe8\x81\xb2\x48\x14\xe3\xc8\x6b\xd6\x2a\xff\x98\x28\xf2\xac\xb8\x9c\x86\xe9\x21\xb4\x1e\x0a\xa9\x12\x00\x71\xa6\xec\x66\x8c\x4b\x2d\xf4\x84\x11\xd4\xff\xbc\xcd\xe4\xeb\x75\xf6\x3d\x00\x00\xff\xff\x76\xf3\x5c\x67\x8b\x10\x00\x00")
+
+func yaoDataKbProvidersConverterMcpEnJsonBytes() ([]byte, error) {
+ return bindataRead(
+ _yaoDataKbProvidersConverterMcpEnJson,
+ "yao/data/kb/providers/converter/mcp/en.json",
+ )
+}
+
+func yaoDataKbProvidersConverterMcpEnJson() (*asset, error) {
+ bytes, err := yaoDataKbProvidersConverterMcpEnJsonBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "yao/data/kb/providers/converter/mcp/en.json", size: 4235, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _yaoDataKbProvidersConverterMcpZhCnJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x96\xdf\x4f\xf2\x56\x18\xc7\xef\xf9\x2b\x9a\x5e\xbf\x59\xb2\xf7\x7d\x77\xe3\xed\xbb\x9b\xf7\xe2\x5d\xbc\x5f\x16\xd2\xc1\x41\xbb\x94\xb6\x3b\x3d\x64\x31\x8b\x09\x2a\xbf\x44\x10\x12\x19\x0a\x18\x85\x4d\x94\x6c\x0e\x58\xe2\x14\x11\xe5\x8f\xb1\xe7\xb4\xbd\xf2\x5f\x58\xda\x43\xa1\x60\x45\x68\x90\x5d\x18\xcd\xd3\xe7\x3c\x79\xbe\x1f\xbf\xfd\x9e\xfe\xea\x63\x18\x96\x0f\xb2\x2b\x0c\xeb\xf7\x6f\x70\xd2\x57\xe1\x80\xcc\xbe\x33\x8b\x88\x47\x02\x30\xeb\x5f\x3e\xad\x32\xf8\xa6\x8e\xe3\x37\xfa\xfd\x25\xc9\xfe\x8e\x4b\x0d\xda\x11\x04\x4a\x00\xf2\x32\xe2\x25\xd1\xec\x23\x8d\x1a\x3e\xd9\x53\x3b\x69\xb5\xb3\x47\x8a\x49\x9c\xcd\xe9\xcd\xe6\x53\x2f\xf5\xe5\xd3\xea\x53\x6f\x77\x78\xf6\xa9\x97\x51\xef\xfb\x5a\xa1\x81\xcf\x8a\xc6\x4e\x63\x30\xb9\x5f\xd1\x6b\x19\x9c\x88\xe3\xe6\x2d\xed\x7c\x8c\x6e\xe3\xf8\x96\xde\xec\x18\xd1\xb2\xde\x4f\x32\xe6\x16\x64\xbf\x8e\x73\x7f\xa8\x9d\x7d\x3d\xf9\x27\x6e\x96\xd5\x5b\x7b\xaa\x35\xc3\xa8\x24\x48\x2a\xff\x18\xdd\xa6\xdb\x41\xf0\x73\x84\x87\xc0\x94\xf6\xbd\xa9\xf0\x1d\xc3\x22\x49\x12\xd8\x1f\xac\xa7\x32\x94\x64\x00\x11\x0f\x14\x76\x85\x31\x21\xd8\x18\xe8\xdf\xa6\xfe\x0d\xd9\x92\xaf\x20\xc8\x8b\x6b\xd6\x4c\x5a\x77\x72\x21\xc7\x59\x9c\xae\xe1\x52\x83\xf9\xfc\xed\xa8\x65\x02\x8c\x56\x68\xa8\xdd\x7d\xba\xaa\x56\x8e\x31\x63\x07\x49\x35\xa9\xb7\x12\xda\xe5\xb9\xbd\xf8\x60\x42\x88\x8b\x08\xc8\x3c\x3d\x2a\x06\xa4\xb0\x2c\x89\x40\xb4\xca\x9f\x45\x39\x82\x46\xcf\x7e\xe1\x83\x68\xdd\xac\xaf\x73\x42\x68\x54\x96\x60\x10\x40\x76\x85\xf9\xda\x2a\x6c\xd2\x3a\xe5\x30\x8f\x54\x0a\x18\xe7\xb3\xda\x45\x7b\x2e\x99\xce\x83\x6f\x2a\xf0\xfd\x98\x40\x0e\xae\x45\xc2\x40\x44\x8a\x3f\xcc\xc9\xb2\xa9\xc9\x45\xad\xf4\xe3\x4f\x20\x80\xdc\xd4\xe6\xb6\xc9\x6f\x6d\x72\x54\xc5\xed\xd8\x8b\x6a\x07\xce\xb3\x5a\x71\xaa\xed\x54\x6b\xd5\xb4\x72\x8c\x4e\x18\x93\xed\x30\x65\x88\x13\x14\xe0\x2e\xfd\x3b\xa0\x20\x10\x74\xd1\x1e\x8a\x08\xc2\x73\xed\x1f\x86\x15\x17\x57\x5b\xf5\x10\x2f\x00\xbf\xcc\x59\x43\x46\xe5\x97\xff\xf3\xe3\x3c\x48\x31\xa9\xde\x5d\xeb\x37\x2d\xfc\x10\xa3\xe2\xc6\x1b\x27\xc9\x3c\x1c\xe0\x78\xdd\x79\x68\xc2\x0d\x94\xd9\x33\x4f\x4c\xfa\x62\xb4\xf4\x58\xc7\x14\x93\x4c\x31\x8a\xcb\xdb\xe0\x30\xcc\x60\xb0\x88\xe8\xd8\xf9\x11\xd1\xe4\x9a\x01\x0e\xc5\x42\xdb\xbd\x61\xb1\xd7\x5c\x34\x94\xf7\xae\x50\x42\x12\x0c\x73\xde\x98\x90\x6a\x0f\xf7\x72\x33\x1a\x26\xd9\xa5\xed\xfa\x45\x4c\xcf\xec\x78\x34\x0c\xdd\x75\xd1\x60\x3e\xb8\x82\x91\xac\xf5\x15\x4f\x64\x8c\xe8\xae\x51\x9b\xc5\x2d\x46\x29\x86\xd3\x55\xda\xee\x8d\x89\xbd\xe6\xa2\xa1\x7c\x1c\x41\xf1\x39\x7f\xdb\x09\x0c\x81\x12\x11\x90\xa7\xf8\xd5\xee\x0e\xc8\xc9\xf1\x2b\xf1\xeb\x20\x71\x90\xc5\xdd\x02\xfe\xfb\x90\x34\xff\xc5\xa9\xf6\xe0\xfe\xb1\x66\x2c\x31\x83\x3f\xbe\x9a\xc1\x0b\x88\x17\x4b\xe3\x54\xc3\xe0\x4c\x1c\xe7\xff\x1a\xdc\x4d\x76\xc8\x38\x09\xfd\x1f\xc9\xe2\x1e\xb7\x61\x80\xb8\x20\x87\x38\x6f\x40\xe2\x3b\xe6\x15\x9d\x6d\xce\xcb\xc4\x3e\x37\x07\x96\xe1\xa2\xcb\x49\x5c\x00\xa1\x04\xbd\xc5\x4a\xa1\xa4\xb7\x5a\x33\x13\xa1\xed\x6a\xbf\x46\xb6\x5a\x73\xe0\xa0\xfb\xbd\x61\xc8\xba\xe6\x89\x28\x21\x3e\xc4\x07\x38\x53\x82\xa7\x54\x31\xa2\x65\xed\xb4\x3e\xd3\x47\x1d\x39\x3e\x35\x0e\xaf\xac\xb0\xa5\xa7\xf0\x59\x4c\xcb\x27\x96\x98\x26\xdf\xbc\x9a\x26\x32\x94\xd6\x20\x50\xbc\xdd\x3f\x7a\xbf\x82\xbb\xe7\x54\xdb\xf4\x9b\xd9\xe2\x41\xdb\x49\xe5\x8a\x14\xcd\xcf\x5a\x7a\x4e\xfb\xe7\x0e\x9f\xec\x4d\x33\xca\x70\xc5\xe5\xe4\x89\x82\x38\x14\xf1\xc6\x43\x4b\x5f\x93\xe8\xd6\x0c\x3c\x68\x23\xce\x1d\x91\xca\xd5\x1c\x24\x06\xab\xbd\x61\x7e\x8c\xbf\x33\x3e\xf3\x67\xd3\xf7\x5f\x00\x00\x00\xff\xff\xd8\xac\xac\xaa\xdc\x0f\x00\x00")
+
+func yaoDataKbProvidersConverterMcpZhCnJsonBytes() ([]byte, error) {
+ return bindataRead(
+ _yaoDataKbProvidersConverterMcpZhCnJson,
+ "yao/data/kb/providers/converter/mcp/zh-cn.json",
+ )
+}
+
+func yaoDataKbProvidersConverterMcpZhCnJson() (*asset, error) {
+ bytes, err := yaoDataKbProvidersConverterMcpZhCnJsonBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "yao/data/kb/providers/converter/mcp/zh-cn.json", size: 4060, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _yaoDataKbProvidersConverterOcrEnJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x98\x4b\x73\x13\x3f\x12\xc0\xef\xf9\x14\x5d\x73\x82\xaa\x38\xe5\x84\x04\x96\xdc\x42\x20\x6c\x16\x12\x0c\x49\x71\xd9\x4a\xb9\x64\x4d\x8f\x2d\xd0\x48\x13\x3d\x12\x9b\xad\x7c\xf7\x2d\x69\x1e\x9e\x87\x66\x6c\xe7\x1f\x38\x00\x96\xd4\xad\xd6\x6f\xfa\xa1\xd6\xff\xf6\x00\x22\x16\x47\xa7\x10\x4d\xa7\x2b\x22\x0f\x24\x55\xd1\xbe\x1b\x34\xcc\x70\x74\xe3\xdf\xce\x7f\xc0\x2d\x2e\x0d\xfc\x40\x2a\xe7\x82\x19\x26\x45\xbe\x24\x46\x4d\x15\xcb\xfc\x80\x5b\x98\x19\x46\x09\x87\xf3\x05\x51\x84\x1a\x54\x75\x09\x48\xa4\x02\x5c\x1a\x37\xc3\xc4\x1c\x8c\xd3\x98\x28\x99\x02\x4b\xc9\x1c\x35\x10\x11\xc3\xe4\xe3\x05\x24\x8c\xa3\x3e\x80\x1b\x9b\x65\x52\x19\x0d\x0f\x44\x31\x69\xb5\x9f\xa3\x52\x3c\xa0\xd2\x4e\x9d\x91\x92\xe7\x42\x54\x8a\x84\xcd\xad\x22\x33\x8e\xb9\x32\xc8\x94\xa4\xa8\xb5\xdb\x47\x7a\xf3\xf4\x41\x6e\xb1\xc2\x7b\xcb\x14\xba\xf3\xfe\x37\x7a\x60\x4e\x53\x74\xe7\x67\x32\x25\x33\x54\x86\xa1\x8e\x4e\xc1\x51\x01\x88\x52\x19\x63\xf5\xcb\x21\x59\x65\x9e\x88\x36\x8a\x89\xb9\xd7\x98\x8f\x97\xa8\x26\xeb\x7d\xaf\x9c\x6c\xb5\xa2\x45\xaa\xb6\xce\xed\xe1\xd9\x38\xcc\xce\x04\x52\xb3\xb7\x90\x4d\x88\xe5\xc6\xc9\xdd\x5b\xb4\x35\xad\x28\x6c\xea\x4e\x52\xfc\x86\xca\x52\x3f\xcb\xc9\x0c\xb9\x93\xfa\xee\xa4\x9a\x06\xf9\x05\x0f\x84\x5b\xec\xaa\x1d\x30\xb8\xfc\x56\x1a\xef\x2d\x0a\xc3\x08\xe7\x2b\x60\x02\x82\x0a\x4a\xab\x8d\xb2\x58\xcd\x3c\xed\x6f\x30\xf6\x5c\x0a\x6a\x95\x42\x61\x86\x2c\xa6\xd5\xaa\x5d\xcc\x5e\x4b\xf1\x55\xb4\x36\xa9\xf8\xdf\x5d\xc5\x95\xca\x34\x93\xc2\x29\x3f\x85\xe8\x06\x39\xd2\xf5\x36\xd1\x23\x8b\xcd\xc2\x4d\x2c\x08\x4f\xd6\xc3\x52\xc5\xa8\xa2\x53\x38\xdc\xab\x1d\x33\x4a\xc9\x72\x5a\xed\x4a\x57\x21\x67\x62\xc2\xe0\x1c\x55\xc0\x9b\xae\xc8\x12\xce\x6b\xc2\x7d\xde\x74\x45\x96\x2c\xb5\x29\x08\x9b\xce\x50\x81\x4c\x6a\x07\xf5\x6e\x55\x84\x03\x86\xbd\xea\xb8\x1a\x4b\x99\x70\x8a\xdc\x29\xd6\x63\xb9\xf2\xe8\x14\x8e\xc6\x61\x40\x97\x22\xb3\xe6\xda\xef\xbd\x35\xa5\xa3\x06\x25\xa7\x4e\xa1\xd6\x53\xcd\xfe\x04\x03\xae\x9f\xd1\x79\x21\x0a\x37\xec\x0f\xc2\xab\x2f\x1f\x5e\x6f\xc4\x94\xa7\x08\xb7\x95\x73\xdd\x2f\x1f\x60\x86\x89\x54\x08\xa5\x15\x4c\x8a\x20\xa7\x93\xc3\xa3\x10\xa9\xf1\x38\xc0\xea\xe4\xf0\x25\x69\xbd\x69\xd0\x4a\xa4\xa2\x38\xf5\xa7\x98\xf6\x65\xa8\x99\x94\x1c\x89\x08\x00\xbb\x70\xd2\x70\xe9\x19\x0c\xe6\xa8\x7c\x61\x2d\x93\xba\x04\x4c\xaa\x58\x62\x42\x1b\x24\xb1\xf3\xb6\x76\x56\x8f\x99\x42\x6a\xf8\x2a\x48\x31\x21\x5c\x63\x4f\xa4\x3d\x32\x43\x17\x5b\x53\x39\x6e\x50\xc9\xe2\x64\xea\x6a\xc2\x6e\xf9\xfa\xe3\x85\x8b\xb0\xb2\xa6\xdc\x3a\xf9\x3e\x1e\x6e\x12\xac\xc6\x18\x8c\x2c\x0a\x91\xf1\x4c\x32\xcf\xc3\xc8\x82\x4c\x38\x73\x67\x71\x62\x64\x96\xa5\x3b\x27\xef\x8e\x20\x34\x12\x61\x78\xba\xfd\x29\x89\x36\xbe\x54\x2a\xe4\xcc\x97\x49\x67\x77\x69\x71\xad\xaa\xbe\x4c\x0a\x4f\xad\xa9\x83\x6c\x1a\x1c\x9a\x6c\x07\xaa\xcd\xcd\x93\xfc\x37\x33\xbe\x36\x7a\xcc\x95\x27\x46\xdb\x9b\xe2\xfd\xfc\x8a\xcc\x19\xfd\xdd\x63\x8f\x47\x90\x06\x56\xb4\x8c\xfa\x89\x4a\x13\xc3\x42\x57\x8c\xc2\xd2\xbf\x55\x51\x4e\x82\x7e\x3e\xcd\x88\x17\xda\xcd\xd9\xbd\x13\x4f\x9c\x64\x9f\x9b\x9f\x5b\x6d\x64\x0a\x4e\xbb\xf3\x10\xb3\xc0\xd0\xcd\x0b\x70\x89\xd4\x1a\xe7\x4b\x61\x7f\x8f\x06\xb2\xdf\xd6\x27\x7f\xdb\x39\x79\x9c\xb1\xdd\xea\x83\xb3\xfd\xe3\xe4\xb2\xf7\xb8\x3f\x50\x4b\x6e\xfd\x05\x95\x09\xb7\x12\x1e\x17\x28\xca\xf8\x2e\xd3\xde\x70\x70\x1f\x9e\x8c\x03\x85\xe1\xdd\x51\xa0\x2e\xbc\x1d\xbf\x60\x59\x78\xd7\xc1\x93\x48\x95\x12\xb3\xb3\x57\xe4\xd5\xe0\x22\x17\xee\x23\x95\x2f\xca\x77\xa8\x82\x72\xed\x16\x3d\x69\xaf\xbe\xe7\x96\x19\x6f\x72\xfd\xb9\x2f\xd9\xd5\xb4\x85\x4c\xfc\x2a\xb5\xe6\xee\x32\x50\x2b\xe5\xfb\x30\x43\x6d\xe0\xde\x12\xce\xcc\xea\x65\x12\xdc\x7f\x26\x9f\xfa\x4c\xfc\x95\xe1\x66\x1b\x57\x4d\x03\x75\x4a\x38\x47\xe5\x3b\x1f\x7f\x2f\xf9\x5b\x99\xe4\x5f\x1d\x87\x29\xb1\xec\x1c\x53\x0e\x01\x7c\x6f\x41\x6d\x9f\xd5\x2f\x2a\xb6\xc8\xe3\xca\xfa\x84\xe9\xc7\x0b\x4f\x7a\x35\x1e\x1d\x8e\xc7\xaf\x83\xee\xf3\x3e\x14\x57\x87\xa1\xfb\xd6\xe1\x4b\xc6\xd5\xfb\x06\xa6\xa2\x4b\x0c\x10\x92\xb3\x5f\x0d\xfa\x15\xa0\x9f\x5e\xa4\xb8\x59\x98\xfa\xce\xed\xa2\x92\x2f\x3c\xbb\x2c\x13\x0e\xaa\x75\x3b\x5b\x75\xcd\xfe\x52\xa5\xd6\xad\x74\x8d\x55\xad\x9f\x75\x2e\x1c\x66\x70\x8d\xda\x60\x1c\x38\x7e\x62\x39\x0f\x74\x30\xe3\x8e\xfa\x0b\x86\x3c\xd6\xbe\x69\xa6\x52\x08\xa4\x46\xaa\x68\xed\x93\x81\xde\xb9\xb0\xa2\x5c\x7b\xda\x8c\xa4\x9e\xac\xd4\x47\xb1\x50\x32\x14\x56\x67\x97\x90\x7f\x28\xdf\x50\x73\xa8\xb6\xde\x40\x10\xfa\xea\xd6\xc6\x60\x83\x60\x4a\x83\x56\xd2\xf0\xab\xe6\x4a\xda\xec\x6b\x99\x3d\xbe\x65\x28\xce\x2e\x21\x3f\x5e\x43\x5d\xfe\x19\xf2\x07\x8b\x8e\xd6\x90\x66\x68\xa4\xa5\xcf\x93\xdb\xd1\xb1\xec\x68\x84\x46\x82\x92\x19\x0a\xc2\x0e\xe6\x99\xe9\x5d\xdb\x42\xfb\x6f\x36\x5f\x8c\xca\x28\x6e\x40\x7e\x64\x66\x01\xb8\xa4\xc8\x79\xd9\x6a\x52\x92\x91\x19\xe3\xcc\x3b\x43\x8f\xf6\x60\xd2\x2d\xff\x3c\x75\x85\xb6\x39\x35\x5c\x31\xc1\x76\x39\xfa\x28\xed\x15\x68\xdf\x88\xa4\x36\x23\x4c\x12\xa4\x86\x3d\x60\x93\x80\x73\xae\x19\xd1\x8c\xfa\xc3\x1b\xa2\x7f\xeb\xa8\x7b\xa4\xd6\xc8\xdd\xde\xc0\x81\x37\x38\xcf\x19\x37\xa8\x04\xf1\x96\xb8\xf6\x8d\x77\x29\xff\x03\x0f\x3a\xe7\xc4\xc6\x08\x6f\x0e\x4e\xe0\xc6\x05\x90\xd9\x40\x94\x08\xb3\x50\x32\x63\xf4\x80\x7a\xc9\xd1\x9b\xd1\xc9\x48\x0f\x48\xb6\xd0\x7e\xaa\x7c\xa7\xa0\x6a\x45\x8c\x4a\x1b\x22\x62\x57\x27\x5c\xcb\xe2\x43\xb7\xec\x30\xa5\xd8\x99\x6e\xed\xd7\x5d\x23\x74\xc3\x45\x00\xba\x6f\x39\xd0\xfc\x48\xfe\x55\x90\x3f\x2b\xa3\xf9\x0f\x06\xd7\x24\x1d\x7e\x6c\xbb\xc9\x90\xb2\x84\xd1\xc2\xc7\x04\x49\x11\x5e\xe5\x1f\x95\xf0\x7d\xd7\x83\xea\x5a\x7e\x2b\xe2\xe9\xf5\xb3\x72\x5a\xf3\x3e\xbe\x2d\x97\xa3\x20\x97\x4c\xc9\x34\x33\xcf\x02\x53\x34\x1d\x93\x5c\xc3\x10\x9b\xb2\x3d\xf1\x2b\xd7\xb9\x7d\xed\x20\x6b\x52\xcf\x23\x72\x8b\x4b\x73\xa6\x90\xf4\x40\x69\x94\x4c\xe8\x3e\xd2\xb4\xa1\xf4\x3d\x6d\xc1\xd0\x55\xab\x09\x27\xbf\x78\x0f\x3c\x74\x85\x38\x05\x1e\xbb\xba\xcf\x5c\x9e\x5f\x11\x79\x67\x93\xcb\x5e\x5e\xb5\x97\x2f\x68\x5f\xc6\xc6\xcd\x99\xe0\x0b\x58\x97\x72\xe8\x5a\x06\x5b\x7a\xdf\x71\x10\x34\x27\x62\x6e\xc9\xbc\x97\xf1\xa0\xff\x7d\x2d\x85\x87\x90\x7e\x5a\x66\x48\x0d\x16\x29\xa9\xdc\x2f\x2f\x01\x68\xdc\xd5\x6d\xab\x1b\xc6\x99\x35\xf2\xc5\x23\xf2\xa4\xd3\x31\xe4\xff\xba\xbf\x9f\xf6\x9e\xf6\xfe\x1f\x00\x00\xff\xff\x38\x90\xf9\x01\xe7\x19\x00\x00")
+
+func yaoDataKbProvidersConverterOcrEnJsonBytes() ([]byte, error) {
+ return bindataRead(
+ _yaoDataKbProvidersConverterOcrEnJson,
+ "yao/data/kb/providers/converter/ocr/en.json",
+ )
+}
+
+func yaoDataKbProvidersConverterOcrEnJson() (*asset, error) {
+ bytes, err := yaoDataKbProvidersConverterOcrEnJsonBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "yao/data/kb/providers/converter/ocr/en.json", size: 6631, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _yaoDataKbProvidersConverterOcrZhCnJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x58\x5b\x53\x13\x49\x1b\xbe\xe7\x57\x74\xe5\x4a\xab\x84\x4a\x10\xf4\x93\x3b\x0f\x9f\x16\x9f\x9f\x4a\xad\xde\x6d\x51\xa9\x21\xe9\x84\x71\x27\x33\xe3\x64\xc6\xc3\x6e\x51\x95\xd5\x00\x89\x26\x84\xf5\x00\x6c\x88\x22\x2e\x48\x76\x15\x49\xed\x2a\x68\x0e\xf0\x63\x4c\xcf\x4c\xae\xf2\x17\xb6\x7a\x7a\x92\xcc\xa1\x27\x07\x0b\xb9\x00\xd2\xdd\xef\x9b\xe7\x7d\xfa\x3d\xf6\x2f\x43\x00\xf8\xd8\xb0\x6f\x02\xf8\x82\xc1\x07\x8c\x30\x22\x84\x24\xdf\x29\xbc\x28\xb3\x32\x07\xf1\xfa\x8d\x8b\x3f\x00\x75\x65\x11\xed\xae\xea\x7b\x0b\x28\xf5\x8e\x6c\x87\x61\x3c\x24\xb1\xa2\xcc\x0a\x3c\x3e\x84\xe6\xd3\x68\xf7\x2d\xda\x5d\xd5\xde\xbf\x25\xc7\x9a\xd5\x8c\xf6\xbc\x58\x2f\x2f\xd5\x2b\x4b\x68\xfd\x10\x3d\xca\xa1\xa7\x19\x30\x75\xe9\x32\x56\x56\xaf\xec\xd7\x3f\xef\xaa\xb9\x65\x94\x5b\x51\x57\x16\xd5\xc2\xfb\xaf\x89\x87\xea\xf3\x3d\x35\xf3\x2b\xda\xca\x6b\x3b\x59\xe3\xa0\x5e\x7b\xaf\x66\xdf\xa0\x83\x6d\x34\x7f\x80\x9e\x66\x50\x6e\xaf\x31\x9f\xd5\x6a\x1f\xb4\x7c\xd2\xd4\xb8\x95\xd4\x96\x17\x1a\x89\x74\x63\xf3\xcb\xd7\xc4\x43\x82\x4c\x82\x77\x14\x56\x82\xd8\xa6\x1f\x7d\x77\xd9\x38\x46\x38\x6d\xec\x88\x92\x20\x42\x49\x66\x61\xdc\x37\x01\xb0\xe5\x00\xf8\x62\x42\x18\xb6\x3f\x61\xb3\x1f\x88\x86\xd5\x71\x59\x62\xf9\xa8\xa1\x91\xac\xb7\xe8\x20\xdf\xa9\x16\x37\x51\x35\xd7\xd9\x76\xd0\x61\x70\xf6\x2c\x5b\xaf\x15\x30\x56\x8b\x44\x0b\xa5\x29\x14\x61\x14\x4e\xc6\x02\x77\x14\xa8\xc0\xce\x0e\xe4\x95\x18\xc6\x6f\x7e\x06\x6d\x7c\xc6\x2e\xc7\xcc\x40\x0e\x4b\x35\xd6\x36\x50\x6a\xd5\x81\xc5\x38\x72\x97\xe1\x14\xe8\x56\x4c\xc3\xaa\x66\xd2\x44\x4f\x63\xb3\x8c\xca\x26\xa7\x84\x5f\xa7\x5c\x0b\xae\x2c\x29\xb0\xbd\x33\x77\xaa\x07\x4a\xf4\x65\x1f\xe5\x7e\xeb\x8a\x32\x24\xf0\x21\x45\x92\x20\x2f\x77\x85\x4a\x34\xd9\x10\x76\x60\x98\xff\x4d\xb7\x49\x0c\x09\x31\x51\xe0\xb1\xce\x09\xe0\xbb\x09\x39\x18\xea\x68\xf7\xdd\x63\xc3\xf2\x2c\xde\x98\x65\xb8\x48\x67\x59\x90\xc2\x50\xf2\x4d\x80\xc0\x90\xc5\x34\x5f\x8c\xb9\x1f\x6c\x43\x0c\x3d\xa0\xf9\x0b\xcb\xcb\x30\x0a\x25\x8a\xc3\xa8\x85\x04\xda\xda\x31\x49\x78\x51\xf2\xf4\x19\xeb\x39\x80\x1d\x48\x3f\x5a\xd7\x8a\x4f\xd4\x17\x25\x0f\xa7\x19\x6b\xaf\xc5\x58\x9e\x8d\x19\x1e\x13\xe8\xac\x31\xf7\xcd\xb5\x51\x3f\x9d\x92\x49\x5e\x54\xe4\xeb\x4a\x6c\xc6\x0a\xbb\x07\x2f\xa3\x36\x5e\xb0\x3a\x09\xc6\xe3\xc1\x38\xfb\x33\x35\x8a\xbc\x59\x41\x4b\x4f\xb4\xea\x9f\xd8\xe0\x52\x0e\x9c\xb8\x7a\xe1\xa4\x27\x2f\xe6\xc9\x74\x96\xdc\xb8\x96\x4f\x9a\x4c\x19\xb2\xcd\x6a\xea\xea\x85\x66\x35\xed\xc1\xd1\x78\x60\x94\xc6\x92\xdf\x4f\xe1\x69\x3c\x70\x9c\x4c\x9d\xb6\x31\x15\x11\xa4\x10\x0c\xb2\x31\x26\x0a\x83\x5e\x29\x67\x46\x10\x38\xc8\xf0\x34\xb2\xaa\x65\x94\xda\x27\xf6\xf7\xc8\x3c\xe6\xd1\xd2\x82\x91\x41\xeb\xb5\x42\xfd\x73\xd9\x9a\x2c\x9b\xd5\x8c\x9e\xc8\xd4\x3f\x67\xd5\xb5\x3d\x6d\xfd\xa3\xba\xb4\xed\xc8\xc2\x34\x16\x23\x0c\x17\x87\x1e\x71\x75\x8f\x95\x43\xb3\x7d\xb3\x32\x66\x63\x45\x0c\x47\x82\xb2\x20\x70\x03\x25\x60\x67\x65\xf0\xa4\x82\x94\x9f\x16\x15\x8d\xcd\x4f\x8d\x97\x6f\x88\x60\x9b\x13\x9c\x9d\x0d\x25\x5e\x79\x59\x0c\x47\x64\x41\x14\x63\x03\xa7\x66\x97\x20\xb0\x25\x3c\xfa\xb6\xf3\x2e\x8f\xde\x35\x12\x1b\xb8\xec\xbd\x7c\xad\xe5\x93\x86\x19\x28\x55\x22\xd0\x89\x25\xc7\x93\xa1\x63\x8a\x71\x0b\x74\xa8\xb4\x4d\x07\xd0\x6b\x8a\x01\x8d\x14\xea\xcc\x3c\x21\x9e\xc0\x35\x9c\xce\xd7\x3f\x94\x49\x1c\x22\xd7\x98\x28\x1b\xfa\xc9\x03\x8f\x11\x44\x31\xca\x09\x27\x7b\x5b\x79\xf4\x78\x43\x7f\x54\xb3\xba\x7f\x1b\xe3\xf7\x2a\x1c\xe3\x54\x07\x0f\x8a\x8c\x21\x34\x98\x97\x13\xb0\xfa\xc1\x1e\x3a\x4c\x7a\x7a\xb9\xab\x51\xca\xed\xa9\xe9\x1d\x7d\x33\x43\xda\x2c\x2d\x9f\xd4\x17\xff\x42\x1f\xf2\xf5\x2f\x69\xa2\xc9\xcb\xd5\x7d\x5d\x72\x5f\xdf\xe6\x9f\x71\x99\x1f\x16\xd9\xc1\x2a\x03\x36\xe8\xd2\xd4\xa4\x77\x86\x33\x03\xda\x11\xca\xea\x2a\xb6\x15\xa5\x16\xf4\xc3\xa2\xb6\xb4\xd8\xac\xa6\x2e\x4d\x4d\x7a\x17\x86\xc0\xb8\x9f\x52\x18\xce\x8e\x52\xea\xc2\x19\xff\x31\x96\x85\xb3\x2e\x82\x22\x82\x14\x63\xe4\xc1\x9d\x83\x58\xfd\xba\xda\xad\x1a\x74\x78\x6a\xf7\xcc\x44\xc2\x33\xdf\x59\xbf\xaf\xcf\x54\x37\x75\xfd\x8a\x57\x96\xb3\x68\xa3\xc1\x53\x57\x5f\xab\xd9\x0d\x52\xe0\x9b\xd5\x8c\x5a\x48\xd4\x6b\xff\xe8\x1f\x8b\x8d\xc5\x63\x6a\x3d\xff\x37\xf5\x5f\x2f\x6c\xb7\x45\xd8\x03\x5c\x21\x6d\x03\x67\x84\x93\xba\xfe\x11\x95\xbe\x5b\xd7\xf9\x1f\x97\x73\xdc\x51\x18\x8e\x95\x07\xec\x38\xf1\xad\x63\xcb\x81\x83\x4a\xa7\x85\xf5\xda\x91\xf6\xbc\x48\x8e\x12\xb7\x20\x41\x44\xc4\xc0\x09\xff\x70\xc0\xef\x3f\xe9\xe1\x2a\xe7\x68\xf1\x13\xa0\xf5\x55\x81\xe3\x8c\x9f\x73\x36\x8a\xcc\xf1\x8e\xc2\x8e\x30\x73\xdb\xc6\x7c\x9b\x1c\x7d\x67\x41\xdf\x49\x9b\x19\xf3\xf7\x62\x8f\xee\x81\xb4\x45\x64\xa2\xc5\xcc\x18\xc2\xe0\xfc\x24\x68\x2b\x20\x23\xa9\x8d\x24\xcb\x04\x8a\xdd\x95\x6e\xfc\x75\x18\x97\x61\x98\x62\x77\x44\xe1\x38\xca\x40\xe2\x77\xa9\xbf\xcc\x42\x2e\x1c\x37\xc6\xdc\x90\xc0\xf3\x30\x24\x0b\x92\xaf\xe3\x88\x94\x69\xd7\x44\xd1\x3a\x3b\x61\x8f\x1a\x8f\xb4\x43\xa5\xef\xe8\x95\xba\xb4\x6d\xa5\xaf\x6f\x0a\x0d\xf2\x0c\x25\xb8\x93\x7d\xf5\xa4\xad\xca\x4a\x21\xf0\xaa\x4d\x3d\x43\x0c\x50\x13\x17\x70\x64\x08\xe3\x54\x54\x12\x14\xf1\xff\xad\x54\x71\x43\x84\xbc\x03\x9a\x4d\x29\xb9\x0d\xc3\xb6\xb8\x4b\x37\x4d\x3f\xb0\x65\xa2\x2b\x53\xb7\x86\xc7\x04\x97\x46\x60\xcb\x49\x82\x08\x79\x86\x1d\x89\x8a\xb2\xe7\x59\x07\xc5\x8d\x77\x6b\x24\x5a\xad\xb8\x9b\xd5\x0c\x9a\x3f\x50\x0b\x69\xb4\x58\xd6\xd3\x7f\x63\xd2\x8d\x79\xf2\x51\x0d\x3d\x5e\xf7\x52\x4b\x4d\xb0\xad\x9f\x39\xb7\x50\x3f\xe6\x82\x6b\x2c\xcf\x0e\x62\xf3\x70\xcc\x53\xc0\xd9\x05\x6c\x94\xb5\xcd\x84\x61\x57\xbd\x52\x41\x8f\x37\xb5\x7c\x52\xab\xe4\xd4\x4f\x4b\xd8\xa7\xac\x97\xe8\x36\xc6\xb1\x32\x3d\xd4\xc5\xd4\x1e\x5e\x83\xe6\xf7\xeb\x95\x95\xe3\x77\x97\x8b\x1c\xa3\x84\x21\x38\x3d\x32\x0e\x6e\xe2\x78\x95\x7b\xb0\xc8\xf0\xf2\xac\x24\x88\x6c\x68\x24\x64\x48\x0e\x9f\x1e\x1e\x1f\x8e\x77\x91\x74\xd2\xd9\xf2\x14\x42\x9d\xb6\xbc\xa0\xef\xfc\x81\x9e\x66\x48\xf0\x92\x11\xd1\xf4\x9f\x41\xf9\xb4\x7c\x9a\xb6\x45\x29\x3d\xd3\x03\xf7\x33\x0c\xb0\x5f\x8b\xf1\x66\xc7\x7d\x53\xf6\x22\x17\x85\x96\xb3\xda\x4e\xa9\xfb\xf0\x30\x7f\x50\xaf\x3d\xb3\x1e\x6f\x56\x53\x78\x12\x4b\xa4\x9b\xd5\x0c\x29\x9c\xed\xcc\xd5\xa8\xac\xe9\x1f\xb6\x50\xa2\xea\x68\x37\x41\xff\x59\xcc\xde\x65\xf7\x4b\xcf\x28\x95\x1e\x51\x12\x62\xa2\xfc\x6d\xd9\xbd\x35\x2a\xa8\xb9\x65\x6d\xab\xdc\xbd\x3f\xb2\xb8\x86\x75\xca\x20\xa2\x16\xba\xbe\x95\x93\x5b\xf0\xbe\x7c\x5e\x82\x8c\x07\x2d\xb6\x3a\x09\xdc\x4f\x2f\x4e\x5a\xbc\x1e\xab\x40\xb7\xa6\xca\x4e\x8f\x39\x49\x7a\x3e\x5d\xd1\x68\x6a\xb5\x0c\x53\x93\xa0\xfd\x92\xd5\x79\xc3\x32\x47\x53\xac\xaa\x0b\x4b\x96\x57\x2c\xe0\x6c\xb8\xfc\xf6\x1d\xea\x6b\x96\x9b\x5b\x5a\xeb\x05\xfa\xf4\xba\x31\x2a\xbd\x1c\xc3\x47\x15\x26\xea\xc9\x6c\x77\xbf\xdb\xdb\xd5\x8b\x89\xae\x3c\x36\xde\x24\xd5\xc2\x46\xab\x99\xc0\xc7\x71\x20\x56\xb6\xeb\x87\x47\xb8\x29\xdf\xae\xa1\x42\x89\x34\x19\xdd\xdc\xed\xbc\x22\x0b\xc7\x1e\x86\xe3\xae\x71\x80\xfc\xc5\xbf\xe7\x86\xe6\x86\xfe\x0d\x00\x00\xff\xff\x70\x09\xab\x12\x65\x19\x00\x00")
+
+func yaoDataKbProvidersConverterOcrZhCnJsonBytes() ([]byte, error) {
+ return bindataRead(
+ _yaoDataKbProvidersConverterOcrZhCnJson,
+ "yao/data/kb/providers/converter/ocr/zh-cn.json",
+ )
+}
+
+func yaoDataKbProvidersConverterOcrZhCnJson() (*asset, error) {
+ bytes, err := yaoDataKbProvidersConverterOcrZhCnJsonBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "yao/data/kb/providers/converter/ocr/zh-cn.json", size: 6501, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _yaoDataKbProvidersConverterOfficeEnJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x98\x4b\x6f\x1b\xb9\x0f\xc0\xef\xf9\x14\xc4\x9c\x12\x20\x36\x92\xf4\x71\x08\xf0\x3f\x18\x69\xfb\xdf\xa0\x4d\x1b\x20\xc1\x6e\x81\xa2\x30\x14\x0d\xc7\xd1\xae\x46\x52\x25\xca\xb1\xb1\xc8\x77\x5f\x48\xf3\xf0\x3c\x9d\xd8\x6d\xb7\x7b\xc8\x21\xe2\x63\xc4\xdf\x90\x1c\xd2\x7f\x1f\x00\x24\x22\x4d\xce\x21\x99\xcf\xd7\x4c\x4f\x75\x96\x09\x8e\xc9\x71\x38\x27\x41\x12\x83\xe8\x53\x3c\x84\x37\x9a\xfb\x1c\x15\xc1\x85\x56\x4b\xb4\x84\xb6\xd0\x4b\xd1\x71\x2b\x0c\x09\xad\x82\x76\x29\x75\x70\x25\xb8\xd5\x4e\x67\x04\xa5\x83\xb4\x74\xe0\xe0\xf0\xcd\xa7\x8b\xcf\xc7\x70\x7d\x7d\xfb\xf9\x08\x48\x03\xe1\x8a\xa6\x70\xe3\x8d\xd1\xc1\x12\x57\x64\x19\x27\xa1\x16\x51\x72\x0c\x22\x67\x0b\x74\xc7\xc0\x54\x0a\xb9\x97\x24\x72\x4c\x05\x03\xae\x15\x85\x0b\x79\x17\x54\x67\x97\xb0\x14\x4e\x68\x15\xd5\x98\x4f\x85\x06\x63\x35\x47\x17\xc4\xd3\xe2\xb2\x16\xbf\x79\x61\x31\x84\xfc\x25\x29\xd4\x93\xaf\x51\x62\xac\x36\x68\x49\xa0\x4b\xce\x21\x80\x01\x48\x72\xb6\x9a\x73\xad\xb8\xb7\x16\x15\x5f\xd7\x82\x40\x67\x6d\x22\x1c\xa1\x08\x17\x25\x8a\x42\x50\x61\xbb\x62\xab\x80\xaa\x36\xae\x35\x3a\xc0\xae\xd8\x4a\xe4\x3e\x07\xe5\xf3\x3b\xb4\xa0\x33\xa8\x1f\x49\x50\xbc\x90\x46\x1c\x10\x6e\xc9\x82\xad\x9b\x36\x5d\x66\xcc\x4b\x4a\xce\xe1\x65\x7d\x96\x0b\x15\xfc\x26\xe7\x70\xba\x39\x2b\x9e\x95\x9c\xc3\xd9\x49\x7d\xc8\x75\x6e\xb4\x42\x15\xcc\x93\x4b\x65\x3c\x7d\x8c\x57\xd9\xb8\x7f\x10\x29\xdd\x07\xe9\x3d\x93\xd9\xe6\x58\xdb\x14\x6d\xf0\x1f\x0f\x1e\x8b\xf3\x84\x30\x37\xf3\x54\xd8\x21\x5a\x8e\xac\x50\x8b\x01\x58\xb7\x98\x1b\x6d\x99\x5d\xc3\x1b\x61\x91\x93\xb6\xe3\xc0\x2e\xbc\x23\x9d\x03\xd5\x26\x69\x65\x02\x99\xb6\x90\x09\xd9\x02\x76\x88\xb9\xa1\x35\xfc\x0f\xdc\xda\x11\x16\x76\x47\x83\xec\x92\x64\x0b\x93\x67\xd3\x38\x6b\xd1\xe0\x12\x99\xf2\x66\x1e\x9e\x3a\x44\xe4\x4e\xeb\xa0\x31\x80\xe4\xa2\xb0\x84\x0d\x9a\x77\x42\xa2\x1b\xc5\x32\xf3\xa4\x73\x46\x82\x33\x29\xd7\x10\x9f\x0b\xde\x34\x30\x05\x30\x0e\x58\x46\x68\x7b\x85\xd1\x21\x41\xd6\xe3\x30\x8b\x9b\x07\x41\xfc\xfe\xd9\x30\x5e\xb4\x60\x94\x05\x37\x80\x41\xdf\xfd\x89\x9c\x06\x28\xfc\x5e\x94\x74\xbb\xe7\x0c\x85\x5f\x2a\xce\x2e\x43\xf9\x14\xba\x31\x1d\x1a\x99\x50\xb4\x91\xd8\x1e\x96\xc2\x79\x26\xeb\x0e\x22\xd4\xa6\x3b\x35\x80\x34\xba\xc5\x38\x91\x8f\xe8\x08\xd3\x01\x22\x99\x97\xb2\x4f\xe4\x65\xcf\xfb\x3b\x81\x32\x75\xb1\x23\x71\xad\x54\x4c\xe5\xa2\x29\x45\xb5\x81\xc6\x54\x5e\xa2\xd2\x6d\x1e\x8f\x17\xdb\x18\xd7\xd2\x49\x4b\xad\x9b\x5a\x75\x6b\xcd\x75\x8a\x11\x5b\x61\x15\x09\x47\xac\xc0\x14\x93\x6b\x27\x1a\xf8\x46\xab\x6b\x20\xab\x50\x36\x5f\x7f\x54\x40\x15\x1b\xd5\x97\xc6\x19\xb4\x02\x8d\x5a\x0b\xab\xbd\xf9\xc0\xee\x50\xc6\x4f\x95\x41\x35\xbb\x84\x22\xb8\x96\xbb\xe2\x1d\xc4\x88\x5c\xcf\xeb\x90\xe7\x68\x20\x2b\xc7\xff\xbf\xbe\x9d\xbc\xd4\x3d\x8f\x51\x69\xc9\xa4\x2f\x92\xd8\xa0\x62\x62\xba\x30\x34\xaa\xdb\x01\xfb\x9b\x58\xdc\x4f\xbe\x79\x26\x05\xad\xdb\x88\x03\xd8\x14\x89\x09\x89\x69\x87\xf0\x98\xe7\x66\xf1\xf6\x34\x1e\xfb\x46\xcf\x89\x18\xae\x84\x12\xbb\x84\x3d\xc9\x47\x0d\x7a\x83\x82\xa3\x09\x66\x19\x72\x12\x4b\xec\x47\x7f\xc7\x9c\xe0\x65\xe8\x9b\x22\x4e\xfa\x91\x75\x4e\xbe\x1e\x6c\x89\xfb\x89\xfc\x99\x49\x42\xab\x58\xbc\xd0\x55\xb8\x49\x1f\xf6\x77\x24\xd1\x85\x64\x3e\x45\x78\x31\x7d\x05\x37\xa1\x82\xe8\x09\xb0\x4c\xd1\xbd\xd5\x46\xf0\x29\x8f\x96\x93\x17\x93\x57\x13\xb7\xc5\xb2\x43\xf8\xed\x8a\xa3\x94\xa1\xbf\x95\x70\xbd\x4a\xd1\x3a\x62\x2a\x0d\xed\x30\xf4\xc1\xaa\x01\xd6\xb9\xb5\x2b\xde\xc6\x7f\x5f\x5b\xe5\x3b\xfc\x61\x80\xfe\xdc\x00\xed\xb7\x94\xc4\x0c\xd8\xab\xa7\xc5\x37\x06\x1f\x59\x8e\x5b\xbb\xd9\x8d\x41\x2e\x32\xc1\xcb\x5c\x53\x2c\x47\x38\x2c\xde\x2a\x93\xc7\xe0\x1d\xba\x46\x87\x2b\xeb\xea\x68\xaf\xbe\xd6\x9e\x1c\x9e\xcb\xe5\x6c\x90\x8b\xb1\x3a\x37\xb4\x17\x98\x72\x62\xba\x2e\x3c\x6c\x63\x53\x6a\x16\xcf\x1a\xe8\xee\x1b\x50\xfb\x01\xb9\xc5\x15\xcd\x2c\xb2\x11\x26\xad\x4f\x26\xf4\x07\x09\x68\xa4\xdc\x63\x67\xb4\x48\x51\xef\x38\x59\xa4\xa8\x37\x83\x05\x1c\x7e\xaa\x22\xdb\x32\x63\x04\x93\xd1\xf9\x62\x59\x89\xab\x99\xc2\x58\x74\xa8\xa8\x37\xae\x37\xe6\x8a\x8c\x49\xf7\x63\x06\x8b\x57\x4f\x4e\x0c\x7f\xe1\x3a\xb3\x2c\xc7\x79\x58\x5a\xec\x92\x8d\x56\x99\x6a\xcf\xff\x6d\x6e\xef\x4b\x2f\x70\x59\x7a\x81\x43\x87\x5c\xab\xd4\x1d\x6d\x4d\xad\x5a\xfd\x0e\xe9\x01\x51\x55\x6b\x1e\xa6\x50\x5d\x6c\x7c\x78\x38\x3d\x99\x9e\xb4\x44\x8d\xed\xa6\x2b\xa9\x77\x9c\xd7\x5d\xa3\x27\x37\x1d\xf8\xbe\xce\xc5\x56\xf3\x3a\x94\x31\xb6\xdd\x85\x11\x7a\x4b\xe3\xfb\xda\xc5\x36\x9c\xfd\xb5\xb1\x7e\x74\x58\xa9\x4b\xb8\xa3\x40\xcf\x46\x71\x8e\xc0\x3c\x3d\xf9\x49\x2c\xcf\x9e\xa8\xec\xb8\xc9\xef\x54\xd9\xb3\xb8\xfb\xef\x54\xd9\x85\xc9\x68\x65\xb3\x4a\xfc\x4b\x2a\xfb\xf5\x4f\xde\x05\x6a\x5e\xcf\x5b\x05\x0a\x18\x64\x99\xaa\x25\x9b\xef\xe5\x7f\x61\xfc\x8f\xf1\xfc\xc8\xc1\xed\x8f\x7b\xe1\x4c\x27\xb5\x6b\xad\xee\x1c\xfc\x50\x28\x4f\x4e\x77\xdf\x00\x06\xc8\xee\x37\xec\xff\xdb\x33\x9b\x64\x6a\xe1\xd9\x02\xf7\x4a\xbf\x0f\x95\xf1\xb6\xbc\x7b\xbb\x32\x18\xbf\x15\x05\xa3\xea\x81\x70\xc8\x3c\xe9\x49\x8a\x84\x9c\x40\x64\x10\x7f\xec\xf9\x45\xc3\x5a\xbb\x7d\x1d\x84\xbf\xc7\x83\x7f\x02\x00\x00\xff\xff\x1f\xd3\x4e\x4e\x64\x15\x00\x00")
+
+func yaoDataKbProvidersConverterOfficeEnJsonBytes() ([]byte, error) {
+ return bindataRead(
+ _yaoDataKbProvidersConverterOfficeEnJson,
+ "yao/data/kb/providers/converter/office/en.json",
+ )
+}
+
+func yaoDataKbProvidersConverterOfficeEnJson() (*asset, error) {
+ bytes, err := yaoDataKbProvidersConverterOfficeEnJsonBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "yao/data/kb/providers/converter/office/en.json", size: 5476, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _yaoDataKbProvidersConverterOfficeZhCnJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x98\x5b\x4f\x1b\x47\x14\xc7\xdf\xf9\x14\xa3\x7d\xae\x11\x90\xcb\x03\x52\x1f\xa2\x54\xad\x22\x35\x17\x29\x91\x1a\x29\x8a\xac\x65\x3d\x36\xdb\xae\x77\xb7\x7b\x49\x40\x15\x92\x49\xc0\xe0\x84\x60\x87\x18\x92\x38\x08\x04\xb8\xb1\x9b\x86\x8b\x0a\xa1\xc6\x97\xf2\x61\xd8\xd9\xcb\x13\x5f\xa1\xda\x9d\xdd\x65\xaf\xc6\x50\x68\xfb\xe0\x07\xcf\x9c\x73\x34\xe7\xb7\xe7\x9c\xfd\xcf\xfe\xd2\x07\x00\x41\xa7\x88\x61\x40\x24\x93\xe3\x24\xd7\xcf\xa5\xd3\x34\x05\x89\xaf\xcc\x75\x89\x96\x18\x68\x6e\xdd\xb5\x16\x81\xba\x34\xa3\xae\x6d\xe8\x9d\xcf\xea\xab\x75\xf4\xbe\x8e\x8d\x52\x50\xa4\x04\x9a\x97\x68\x8e\x35\x4d\xf1\x2e\xb8\x4d\x53\x02\x27\x72\x69\x09\xf8\x7c\x8f\xdb\xb3\xdf\xdc\xbd\xf9\xf0\x28\x37\x79\xef\xde\x83\x87\xc7\xed\x82\xd2\x68\x9a\x3b\xcb\x9f\x8f\x72\xcf\xd4\xf2\xb6\x3a\x37\xa9\x74\x0e\xb5\x72\x1d\xdc\xb8\x05\xf4\x5a\x5e\xaf\x15\xd0\xc2\x9c\xb1\xba\x6b\xac\xbf\x46\xd5\x29\xad\x94\x57\x8b\x25\x54\x5c\x72\x7c\x26\xd1\x87\xbf\xd0\xf3\x22\x5a\x98\x43\xd5\x0a\xfa\xb4\xa0\x74\xde\xa0\xfc\x34\xda\x3a\x38\xca\x3d\xc3\xc7\x13\xe0\xcf\x32\x2d\x40\x33\xc3\x47\xc4\x13\x5a\x34\x8f\xf9\xd8\xda\xe1\x05\x8e\x87\x82\x44\x43\x91\x18\x06\x26\x07\x00\x88\x2c\x39\x96\xa4\x38\x96\x92\x05\x01\xb2\xd4\xb8\xbb\x61\xc2\x18\xe7\x2d\x16\x34\x2b\xc1\x0c\x14\xac\xe8\x78\xc3\xa1\xa4\x2e\xe7\x50\xb5\x86\x0e\xf6\x51\xf1\xb5\xba\xb8\x73\x62\x11\x40\xe4\xb5\x73\xf0\xd8\xc9\xbd\x79\xa5\x74\x96\xd5\xc5\x1d\xe7\xf8\xb6\x7b\x9a\x94\x19\x89\x18\x06\x57\xdd\xb5\x2c\xcd\xd2\x59\x39\x4b\x0c\x83\xc1\x93\x35\x72\xcc\x5e\x1b\x1a\x70\x17\x29\x2e\xcb\x73\x2c\x64\x4d\x77\xe2\x16\xcb\xcb\xd2\x1d\x39\x3b\xe2\x3d\xff\x53\x3a\x25\x8d\x9a\xbb\xa3\x24\x93\x3e\x59\xe6\x84\x14\x14\xcc\xf8\xd6\xc2\x04\x5e\x27\x24\x98\xe5\x93\x29\x5a\x88\x22\x23\x4a\x02\xcd\x66\x22\xc0\x28\x8d\x3d\xf5\xed\xbe\xf6\x61\x0b\x75\x16\xe3\xa9\x2c\xcd\x28\xad\x7d\xcc\x41\xab\x4c\xe9\x33\x9f\xd0\x56\x45\x39\x28\x78\x9d\x8f\xdb\xb3\xda\x6f\x4d\xf0\x35\xd0\x76\x5b\x5a\x6b\xd5\xbf\x55\x88\x81\x46\x10\x5d\x60\xf4\x8c\x61\xc8\x87\x81\x62\x20\xc9\xca\x7c\xd2\xc4\x11\x85\x62\x84\xe3\x4c\x8b\xa8\x22\x69\x4c\x6b\xa5\x3c\x3e\x39\x4e\x39\x96\x08\x66\x81\x4a\xf3\x26\x8b\x17\xf5\xb0\x67\x4c\xc2\x92\x20\xc3\xe8\x94\xef\x3f\xa5\x25\x6a\xb4\xe7\x9c\xaf\xf8\x72\xb6\x9b\x27\x22\x5b\x6e\xe4\x47\x48\x49\x11\xc9\xe2\x0e\xf6\x0f\x8c\xa8\x4c\xb5\x72\x5d\x69\xce\xdb\x3d\x60\x0d\x0a\xa5\xb1\xe9\xb6\xb6\x3d\x07\xac\xbe\x36\x2b\xc3\xfa\x6b\x0d\x08\x27\xb0\x0f\x84\xa7\xe3\xe3\x49\xdc\x81\xa2\x04\x53\x11\x24\xd2\x32\xc3\x84\x49\x5c\x0d\x45\xff\x96\x86\x4c\x4a\xb4\xa6\x0a\xc5\xb1\x2c\xa4\x24\x4e\xc0\x83\xc5\x32\x8b\x18\x2e\xf6\x21\x1c\x5b\xef\x72\x7c\x13\x45\xf2\x3c\x5c\x51\xe7\x7f\xf5\xf2\xec\xc2\x14\x43\x9c\xcd\xab\x2b\x25\xad\x32\x75\x32\x56\xd5\xfa\x1a\x5a\x79\xe9\x86\xf2\x12\x8c\xed\x9f\x88\x82\x82\x8c\xf7\xc9\x5b\x06\x90\xb5\x66\xd0\x23\xcf\x1a\xf0\xe5\x6a\x59\x65\x04\x4e\xe6\xbf\x27\x47\x20\x63\xbd\x60\x78\xc8\x06\x8e\xe6\x0b\x8a\x1f\x86\x95\x9b\x18\x8a\x1d\x15\xdf\x72\x60\x9c\xf0\xdf\xdd\x7b\x90\xb8\xca\x85\x22\x5a\x46\x4f\x48\x46\xc6\x55\xcc\x43\x96\xa4\xfb\x33\xbc\x14\x6b\x1b\x89\x58\xdf\xfe\xa8\xb5\xf2\x01\xd0\xc6\xef\xef\xf4\xbd\xba\x31\x53\xec\x9a\x12\x08\x37\x6e\xc8\x62\x22\xec\xd4\x4b\xb2\xe0\x36\xcd\xd2\x67\xc9\x38\x91\x8d\x75\x08\xce\xa5\xd5\xa6\xb6\x96\xb3\x13\x76\xe6\xb5\xd6\x2a\xaa\x5f\xe6\xcd\x92\xf2\x26\x1c\xce\x26\xb0\xf2\xb8\xaf\x4b\xae\xa7\x14\x0d\x9a\xde\x57\x5a\x4b\x17\x5f\x2d\x37\x19\x52\x4e\x41\x70\xa5\xff\x1a\xb8\x6f\xb6\xab\x74\x0a\x46\x92\x95\x46\x05\x8e\xa7\xa9\x7e\xca\xf2\x4c\x5c\x49\x5c\x4b\x88\x5d\x3c\x83\x3c\x67\x9a\x7a\xe1\x0f\x77\xb2\x69\xa5\xbc\x5e\xdb\x30\x25\x8d\x35\xf1\x70\x49\xe9\xcf\x3b\xe8\xc5\x87\x33\xf3\xf4\xfc\x7b\xec\x6b\xd2\xe8\xc9\x0f\xc2\x2f\x7e\xe0\x7f\x2c\x44\x96\x4b\x59\x94\xce\x3e\xbc\xf0\x83\x42\xa5\x57\x5a\x6d\xa7\xeb\xe4\x42\xd3\x7f\x2a\x9d\x37\x5e\xf3\xe3\xf6\x2c\x2a\x6e\x1b\xb9\xc2\x71\x7b\x0e\xeb\x43\x77\x70\x19\xad\x77\xfa\x56\x15\xe5\xda\x01\x01\x00\x7a\x1f\x62\x7e\x21\xd0\x2b\x9e\xa1\x48\x3c\xbc\xc0\x65\x79\xe9\x7c\xc3\xdd\x51\x3c\x6a\xb1\xa4\x55\x9b\xdd\x11\xf9\xa7\x4d\xc0\xd5\x83\xeb\xbc\x4c\x1e\xc0\x31\xe9\x86\x00\xc9\x18\x2c\xbe\xb7\x24\x08\x6b\x06\xe0\x29\xbe\x89\x80\x8a\x48\x41\xee\xac\x22\xc2\x58\x7f\xed\xbe\xeb\xbd\xc9\xf5\x26\x28\xda\x65\xad\x6a\xde\x32\xb4\xfa\xa1\xd2\xd8\xc4\xe1\xbc\x6a\xc2\x1b\x3d\x4e\x49\xa4\x49\x46\xbc\x18\x29\x71\xed\x54\x8d\xf0\x13\x1c\x4f\x0b\x64\x16\x26\xcd\xab\x86\xf0\x84\x8c\x6d\x37\xd6\xaf\xe4\xfd\xd8\xd0\xf4\xae\x51\xde\x42\x8d\x9a\xf1\x76\xcf\xa8\x94\x4d\xe9\x5c\x5b\xf0\x32\x8b\xe2\x86\x6f\x57\xae\xab\x72\xf0\xd2\x78\xbb\x67\xbe\xce\xac\x18\x5d\x6a\x69\x70\xa0\x7f\xc0\xb7\xe5\xb9\xa0\x04\x77\xdc\x6b\xca\xf5\xa0\xd3\xa9\x97\x15\xf0\xcf\x66\x17\x39\x96\x74\xe0\x8a\x71\x50\x83\xf7\x3b\x10\x75\xc7\x73\x00\x79\xaf\x79\x51\x3c\xf5\x8f\x93\x18\xa9\x56\x99\x0a\xbb\x76\xe1\x39\x14\x4b\x33\x86\xe5\xe0\xc0\x25\xa1\x1c\x3a\xa5\xa1\x49\x39\x45\x9f\xad\xa1\xf1\x75\xfe\xc2\x1a\xda\xfe\x3a\xe0\x34\x74\x20\xfa\xe5\x37\xf4\xf5\x4b\x16\xfd\x76\x42\x3d\x89\xfe\x1b\xb7\x80\x9b\x3f\xea\x2c\xfe\xcf\xe4\x3d\x3e\xda\x45\x4a\xb5\x1f\x46\x69\x91\x0f\x14\xb5\x6b\x15\xd4\xb9\x4f\xb1\x71\x62\xb0\x27\x55\xe6\x2a\x78\x2f\xd0\xf3\x29\xf8\x7f\x5b\xa3\x31\x24\x9b\x91\xc9\x0c\x3c\x9f\x0c\xd9\xde\xd4\xeb\xb9\xae\x55\x66\xac\x4f\xa9\xcb\xab\x36\x17\xcb\x1c\x7f\x98\x41\xb3\xef\xed\x4f\x15\x1b\x39\xf5\xcb\xcb\xff\x50\x91\xf9\x27\x55\x9f\xf9\x9b\xe8\xfb\x3b\x00\x00\xff\xff\x8c\xc4\x71\xbb\xec\x14\x00\x00")
+
+func yaoDataKbProvidersConverterOfficeZhCnJsonBytes() ([]byte, error) {
+ return bindataRead(
+ _yaoDataKbProvidersConverterOfficeZhCnJson,
+ "yao/data/kb/providers/converter/office/zh-cn.json",
+ )
+}
+
+func yaoDataKbProvidersConverterOfficeZhCnJson() (*asset, error) {
+ bytes, err := yaoDataKbProvidersConverterOfficeZhCnJsonBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "yao/data/kb/providers/converter/office/zh-cn.json", size: 5356, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _yaoDataKbProvidersConverterUtf8EnJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\x50\x4d\x4b\xc4\x40\x0c\xbd\xef\xaf\x78\xf4\xa4\x50\x7b\x5e\xf6\x26\x8a\xe0\x41\xf0\x50\x41\x10\x59\xc6\x36\xbb\x0d\xcc\x66\xc6\x24\x55\xeb\xb2\xff\x5d\xa6\x73\xf1\x98\xf7\x91\xbc\xbc\xf3\x06\x68\x78\x6c\x76\x68\xf6\xfb\x25\xa4\x6e\xf6\xc3\xb6\x69\x0b\xea\xec\x91\x0a\xf1\x1c\x03\x0b\x7a\xfa\x71\xdc\x25\xf9\x22\x75\xd2\x2a\x19\xc9\x06\xe5\xec\x9c\x64\x15\x6a\x1a\xc8\x8c\x0c\x79\xb5\x78\xb1\x1c\x38\x92\xe1\xaa\x7f\xed\x5b\x3c\xdd\xb7\x20\x1f\xba\x6b\x7c\x2c\x50\x0a\x23\xcb\x11\x41\x46\x48\xd2\x53\x88\xfc\x5b\xe6\x97\xfe\xe1\x66\x8b\x21\x89\x93\x78\x87\x7e\x62\x03\x1b\x7c\x22\x18\x9f\x72\x24\xf3\xc2\xd6\x1c\xf0\x29\x38\x46\x56\x1a\x3c\xd6\x9d\xf6\xff\xee\x37\xfb\x94\x66\x47\x90\x05\xb7\x8f\xc8\x35\x21\xcb\xb1\xab\x1f\x28\x7d\xce\xac\x54\x0a\x78\x7b\x5f\x91\xac\x29\x93\x3a\x93\x35\x3b\x9c\x2f\x9b\xcb\xe6\x2f\x00\x00\xff\xff\xf2\x79\xd8\x5c\x24\x01\x00\x00")
+
+func yaoDataKbProvidersConverterUtf8EnJsonBytes() ([]byte, error) {
+ return bindataRead(
+ _yaoDataKbProvidersConverterUtf8EnJson,
+ "yao/data/kb/providers/converter/utf8/en.json",
+ )
+}
+
+func yaoDataKbProvidersConverterUtf8EnJson() (*asset, error) {
+ bytes, err := yaoDataKbProvidersConverterUtf8EnJsonBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "yao/data/kb/providers/converter/utf8/en.json", size: 292, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _yaoDataKbProvidersConverterUtf8ZhCnJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xaa\xe6\x52\x50\x50\xca\x4c\x51\xb2\x52\x50\x8a\x8f\xaf\x4c\xcc\xd7\x2b\x2d\x49\xb3\x50\xd2\x01\x89\x96\x64\x96\xe4\xa4\x82\x24\x9e\xef\x5a\xff\x6c\x5a\xfb\xb3\x39\x6b\x5e\xec\x5d\xf3\xac\x77\xd1\xd3\x99\x2b\x20\x0a\x52\x52\x8b\x93\x8b\x32\x0b\x4a\x32\xf3\xf3\x40\xca\x5e\x36\xcc\x7a\xb1\xbf\xfd\xc5\xfa\xdd\x4f\xfb\xa7\x3d\x9d\xd4\xf3\x62\x79\xcb\x8b\x9e\xe6\xa7\x3d\xd3\x14\x42\x43\xdc\x74\x2d\x14\x9e\xb6\xb5\x3e\x5d\xb7\xf3\xd9\xdc\xa5\x4f\x97\xb4\x3c\x9f\xd0\x06\x37\xf4\xd9\xb4\xf6\x27\xbb\xb7\xbd\xdf\xd3\x11\x12\x11\xf2\xb8\xa1\xd1\xd7\x45\xe1\xf9\xda\xce\xf7\x7b\x3a\x1f\x37\x34\xbd\xd8\x3f\xf3\xd9\x8c\xf5\xcf\xe6\x34\x3c\x5f\xd7\xf0\xb4\x77\xea\xf3\x59\x2d\x70\x17\xbc\xdf\xd3\xf3\x7c\xf6\x96\x67\x7d\x4b\x21\xf6\x21\x1b\xf5\xa2\xa1\xe7\xd9\xf4\x05\x2f\xe7\x34\x3c\xd9\xbd\xfb\xc9\xde\xa9\x0a\x8e\x9e\x0a\x10\x2b\x1f\x37\x34\x41\x1c\x5e\x94\x5a\x58\x9a\x59\x94\x0a\xf2\x75\x74\x2c\x58\xa4\xa0\x28\xbf\x20\xb5\xa8\x24\x33\xb5\x58\xc9\x4a\xa1\xba\x96\xab\x96\x0b\x10\x00\x00\xff\xff\x41\x9b\x01\x3c\x19\x01\x00\x00")
+
+func yaoDataKbProvidersConverterUtf8ZhCnJsonBytes() ([]byte, error) {
+ return bindataRead(
+ _yaoDataKbProvidersConverterUtf8ZhCnJson,
+ "yao/data/kb/providers/converter/utf8/zh-cn.json",
+ )
+}
+
+func yaoDataKbProvidersConverterUtf8ZhCnJson() (*asset, error) {
+ bytes, err := yaoDataKbProvidersConverterUtf8ZhCnJsonBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "yao/data/kb/providers/converter/utf8/zh-cn.json", size: 281, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _yaoDataKbProvidersConverterVideoEnJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x98\xcb\x6f\x1b\xb7\x13\xc7\xef\xfe\x2b\x06\x3a\x39\xf8\x45\x82\x64\xfb\xd7\xa4\x01\x72\x10\xf2\x34\xf2\x32\x1a\x27\x3d\x04\x81\x40\x91\xb3\x12\x1b\x2e\xc9\xf0\x21\x4b\x29\xfc\xbf\x17\xe4\x3e\xbc\xab\xe5\xba\x92\x23\xb7\x3d\xe8\xc2\xe5\x0c\x77\x3e\x9a\xf9\xce\x70\xff\x3c\x02\x18\x70\x36\x78\x02\x83\xd9\x6c\x43\xd4\x68\xc5\x19\xaa\xc1\xc3\xb0\xec\xb8\x13\x18\x9e\x7c\x0e\x6b\x70\x61\x14\x45\x6b\xb9\x5c\x14\x8f\x19\x5a\x6a\xb8\x76\x5c\xc9\xb0\xa9\x7c\x8c\x16\xa2\x0b\xc8\xb8\x40\x0b\xf3\x0d\xe0\xda\x19\x42\x1d\x97\x0b\xf8\x86\x9b\xcc\x90\x1c\x2d\x10\xc9\x80\x78\xc6\x15\x64\xca\xc0\xf4\x1c\x88\x24\x62\x63\xb9\x1d\xc1\x47\xaf\xb5\x32\xce\xc2\xcb\x97\xb9\xc6\xc5\x70\x4e\x2c\xb2\xd2\xa9\xae\xdf\x01\xae\xb8\x5b\x02\x55\x32\xe3\x0b\x6f\xc8\x5c\x20\xbc\xba\xf8\x04\x84\x52\x14\x68\x48\x78\xab\x78\xc8\x77\x4f\x04\x77\x1b\xb0\xe8\xc2\x2b\xd8\x51\xf1\xf2\x06\xbf\x7b\x6e\x30\x04\xfe\xe5\x6b\x5c\xd1\x46\x69\x34\x8e\xa3\x1d\x3c\x81\x80\x05\x60\x50\xbd\xef\x8c\x4b\x87\x66\x45\x44\xfd\x28\xe0\xd9\xe8\x48\x47\xfa\x7c\x8e\x26\xba\x2d\xd6\x2b\x6c\x6f\x4a\x6b\x38\x2f\xad\xe1\xd8\x22\x55\x92\xd9\x07\x37\xbb\xb7\x28\x5e\xf2\x1c\xa1\x3a\x0d\xe6\xe8\xae\x10\x65\x85\x10\x59\x83\x60\xe0\x56\x43\x6b\xfa\xcb\x88\x17\x6e\xf0\x04\x26\xe3\xd1\xb8\x5e\xce\xb9\xe4\xb9\xcf\xc3\x72\x73\x95\xac\xcb\xd5\xd3\x71\x73\x37\x55\xb9\x56\x12\x65\x70\x33\x38\x97\xda\xbb\xf7\x5b\x41\x5e\x71\xe6\x96\xe1\xe9\x92\x88\xec\x66\x59\x19\x86\x26\x1c\x12\x17\xae\x8b\xf5\x70\xcc\xac\x7e\xf1\x14\xc2\x10\xf0\x22\xc9\xf0\x1d\x59\xc3\x9b\xda\xb4\x8f\xda\xbb\x22\x0e\x28\xfe\x0a\x50\x59\x83\x93\x53\x15\x3e\xc8\x8c\xca\xc1\x2d\xb1\x48\xa6\x24\xb4\x93\x24\xb2\x04\xb0\xc9\x78\x7c\x40\x5e\x27\x2d\x5e\x0e\x73\x3d\x63\xdc\xa4\x50\x59\x67\xaa\x0a\x6c\x93\xba\xc4\x5c\x2b\x43\xcc\x06\x9e\x73\x83\xd4\x29\xb3\xe9\xe5\xf5\xcc\x5b\x17\x50\xd4\x26\xac\x32\x89\x69\xd5\xa9\xb5\x63\xcc\xb5\xdb\xc0\x53\xb0\x1b\xeb\xb0\x30\x7c\x90\xe4\x37\x18\xdc\x02\x65\x67\x1c\xa7\x2d\x1c\x54\x20\x91\x5e\xcf\xc2\xa9\x29\x24\x73\xa5\xc2\x8e\x04\x93\x67\x85\x25\xdc\xb0\x79\x19\x54\xa9\x97\xcb\xd4\x3b\x95\x13\xc7\x29\x11\x62\x03\xf1\x5c\xf0\xba\xc1\xa9\x10\x35\x92\x39\x34\x0d\x3e\x49\x12\xce\x78\x4c\xb3\xf8\x78\xc5\x1d\x5d\xee\x0c\xe3\xac\x53\x4b\x54\x49\xea\x8d\x41\x49\x37\xfb\x57\xd3\xb3\x86\xf1\xee\xf5\x54\x1f\xe9\xba\xd9\x11\x74\x33\x0a\x6e\x5a\x87\xce\x76\xac\xa8\x93\x03\xd6\xd3\xff\xb7\xea\x69\xed\x66\x4a\x3b\x9e\xf3\x1f\xa4\x8c\x71\x8f\x2c\xba\xc4\xb5\x83\x0f\x4d\xf3\x3e\x6e\x2f\x64\x6c\x44\xe1\x3c\x68\x9e\x17\xab\x6a\x8e\x2e\xa4\x0d\x55\xd2\x05\x8c\x55\x5b\x54\xf2\x7e\xd3\xe7\x97\x16\x0a\x86\xcc\x6b\xc1\x69\x7c\xad\x59\xfc\xdb\xf6\xea\x69\xcf\x9b\xf6\xf0\x5b\xb4\xef\xed\x65\x4b\x83\x76\xa9\x04\x8b\xe1\x1b\xcc\xd5\x2a\xa4\x4b\xe5\x00\x41\x19\xb0\x3c\xe7\x82\x98\x86\x5e\x1f\x8f\x47\xe3\xe1\x64\x34\x4e\xeb\xcb\x78\xf4\x38\x91\x4e\xe3\x64\x4f\x9b\x1c\xb2\xa3\x3d\x6a\x61\xcc\xb2\x30\x9a\xcc\x34\x89\x26\xbb\x8b\x74\x31\xd2\xc0\x45\xb0\xfb\x1b\x71\x0e\xbe\x43\xf3\x2a\x4d\x70\x8d\xd4\xbb\x98\x5e\xb5\x1a\x7b\x8b\x95\x22\x5f\x4c\x2f\x5f\xdf\xa7\x22\x3f\xde\x0a\x5f\x1b\x35\xc7\xbb\xc4\x1f\x0d\xf7\x04\x50\xd8\xfc\xcb\x04\x7e\x6d\x11\xc0\x58\xe9\xb3\x85\xf6\xfb\x69\x49\xa9\x10\x61\x54\x9d\x36\x46\xd5\x5e\x16\x9f\x6c\x62\xae\x4d\xf6\x68\x9e\x01\x59\x11\x2e\x82\xff\x24\x86\x8c\x08\x7b\x18\x49\x99\x8c\x5b\x2c\x16\xda\xcf\xb8\x64\xb8\xde\xaf\x19\x85\xb0\xce\xa3\x59\x5f\xf0\x61\x07\xc3\x15\xa7\x61\x24\x66\xb8\x0e\xd9\x10\xfe\xf1\xe3\xe1\x04\x9e\x02\xf1\x4e\x0d\x19\x3a\xa4\xee\x21\x8c\xff\x17\xa6\x13\x8d\x94\x67\x9c\x06\x62\xe9\x54\x18\x4e\x12\xea\x31\x4c\x75\xa3\x47\x07\x1c\x86\xbb\xd3\xb0\x5b\x1a\x24\xec\x0e\xb3\xf0\x65\x69\xb8\x7b\xe7\x2e\x8f\x8a\x49\x53\x6a\x49\x73\xb2\xab\x51\xfe\x2c\xb0\xd3\x93\x03\x12\x6b\xcf\xc3\x2b\x6e\x7b\x9a\xb6\x9a\xff\x81\xd4\x25\x58\x7d\x8e\x26\x61\xd8\x59\xa1\x09\x6d\xf7\xf8\x43\x64\x44\x44\xff\xdd\xab\xb4\x99\x9e\x87\x1e\x5d\x9a\xd5\xb7\xac\x1f\x81\x56\xe2\x1e\xd6\xa0\xd6\xb8\x53\xde\x52\x6b\xef\xd1\x3a\x64\x09\x14\x99\x17\x22\x81\xe2\xb4\x5e\x4a\xdc\x50\x4b\xf7\x52\xc6\xe9\xbd\xb5\xdc\x2f\xc7\x7d\xa4\x4a\x27\xad\x6d\xdb\x03\xf2\x39\x14\x7f\x06\xe4\x8a\xa1\x80\xfa\xe8\x08\xaa\x82\x92\xb8\x97\x42\x9f\x24\x77\x01\x7d\x44\xd1\xfc\x4f\xa1\x90\xdb\x98\x63\x5f\x1a\x6b\xd0\x8a\x35\xee\x5a\x18\xe5\xf5\x5b\x32\xc7\x70\x4f\x1f\x7c\xd0\x28\xa7\xe7\x50\xc4\xd7\x72\x57\x00\x8e\x41\xd9\x8e\xd7\x94\xe7\x68\x20\x2a\xc7\xaf\x2e\x2e\x87\x67\xaa\xe3\x31\x6e\x5a\x11\xe1\x8b\xcc\xd4\x28\x09\x1f\x2d\xb4\xeb\xdd\xbb\xc5\xf6\x35\x5f\x2c\x87\xd5\xe7\x8a\x16\xe5\xc0\x96\xa1\x23\x5c\x20\x83\x36\xe1\x3e\xcf\xcd\x31\xb2\xb3\xe3\xba\x6b\xb4\x4b\xc4\xf0\x8e\x4b\xbe\x4f\xd8\xc3\xbc\xd7\x60\xbb\xe5\x2b\xeb\x86\x98\x65\x48\x1d\x5f\x61\x37\xfa\x39\xb1\x9c\x6e\x87\xde\x8d\x6b\x6b\xe5\xeb\x51\xdf\xd3\xaf\xad\xec\x4a\xab\x11\x74\x3f\x68\x6c\xc1\x0b\x15\x99\x6b\xf7\x33\x65\x77\x51\x78\xb8\xad\xe6\xaa\x71\x28\xee\x3c\x60\x9d\x85\x6b\xcd\xd4\x20\x19\xa4\x59\xb4\xe4\x08\xba\x1f\x2b\x9a\x48\xaf\x5b\x72\x1d\xbf\xeb\xed\xa5\xd6\xd3\xf8\x25\x70\x2f\xb1\x2e\x4c\xda\x42\xdd\xe8\x6b\xc5\x78\x64\x95\x97\x2c\x48\xf6\xb7\x7b\x97\xe9\xb3\x7b\x96\xe9\x1a\xd1\x6e\x2a\x5d\x7c\x5b\x75\x86\xc8\xfa\xc9\x8d\x58\xff\x17\x64\x39\xc6\x73\x48\x55\xfe\x7d\xc9\xad\x46\xb3\x9b\x3e\x5d\x15\x9b\x87\x93\xfd\x95\x39\x41\xf6\x6e\x22\xfc\x4f\x8b\x95\x20\x72\xe1\xc9\x02\x7f\x22\xfd\xde\x56\x2e\x6e\xcb\xbe\x17\x6b\x8d\x71\x46\x2a\x48\x55\xc7\xde\x5c\xda\x1a\x83\xfb\x83\x3b\xa5\x62\xfb\xe2\xb6\x2b\x95\x5e\xd9\x3a\x0a\xbf\xeb\xa3\xbf\x02\x00\x00\xff\xff\xc2\x99\x50\xf4\x0b\x19\x00\x00")
+
+func yaoDataKbProvidersConverterVideoEnJsonBytes() ([]byte, error) {
+ return bindataRead(
+ _yaoDataKbProvidersConverterVideoEnJson,
+ "yao/data/kb/providers/converter/video/en.json",
+ )
+}
+
+func yaoDataKbProvidersConverterVideoEnJson() (*asset, error) {
+ bytes, err := yaoDataKbProvidersConverterVideoEnJsonBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "yao/data/kb/providers/converter/video/en.json", size: 6411, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _yaoDataKbProvidersConverterVideoZhCnJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x98\xdf\x6f\xd3\x56\x14\xc7\xdf\xfb\x57\x5c\xe5\x75\x6b\x95\xb4\xdd\x60\x48\x3c\xf4\x05\x86\xb4\x31\x24\x98\xf6\x80\x50\xe4\x26\x37\xa9\x37\xc7\xf6\x1c\xbb\xb4\x9b\x2a\x05\x94\xe6\x07\x4d\x93\xc0\x42\x0b\x69\xd7\xac\x5d\x4b\xb2\x0d\x92\x49\x2d\xa5\xcd\x8f\xf6\x8f\x21\xd7\x3f\x9e\xf2\x2f\x4c\xd7\x37\x31\x76\x6c\x67\x69\x08\x88\x07\x84\x74\x7c\xee\x89\xcf\xa7\xe7\x7c\xef\x39\xfe\x75\x02\x00\x0f\x1d\xf4\x5c\x01\x1e\xbf\x7f\x99\xe2\xa6\x16\xe9\x20\xe4\x3c\x9f\x63\xb3\x48\x8b\x0c\xc4\x4f\xd4\x72\x42\xdb\x7b\x8c\xf6\xe3\x4a\x3e\x41\x1e\x05\x61\x34\x20\xd0\xbc\x48\x73\x2c\x76\xd0\x62\x45\xf5\x3c\x29\xe7\xf2\x28\xb7\x81\x56\x0f\xb5\x42\x15\x9d\x94\xd1\x93\x8c\x56\x3a\xd4\xf6\x1e\xab\xe7\x5b\xea\x6e\x06\xcc\xdd\x00\x28\x95\x90\x77\xf2\xf2\xef\x07\x24\x16\x89\x2b\x6f\x24\xdb\x8d\xe3\xb7\xb1\x87\x72\xa1\x26\x67\x1e\xa0\x52\xbd\x5d\xcf\x82\x6b\xd7\x22\x3c\x0c\x03\xa5\x18\x37\xff\x7a\xa7\x99\x41\xab\x6f\xe4\xed\x34\xca\xd5\xb4\xd5\x75\xa5\x55\x55\x8a\x71\x70\xfd\xd6\xf7\x00\x3d\xfa\x43\x8b\x95\xd0\x93\x8c\x7a\x54\xd1\x92\x39\xb5\x7a\xa6\xb4\xaa\x6f\x63\x0f\xc9\xfb\x0a\xf0\x67\x89\x16\x20\xce\xf3\xee\x3d\xdd\xc2\x0b\x1c\x0f\x05\x91\x86\x51\xcf\x15\x80\x29\x00\xe0\xf9\x09\x2e\x87\x04\x2a\x02\xfd\x34\x2b\x42\x61\x91\x62\x8c\x47\x98\xc6\x32\xaf\xc3\x60\xa5\xc8\x3c\x14\xf4\xb0\xc4\xde\xa3\x64\x24\xae\x6d\x1e\x69\xc5\x42\xa7\x99\x52\xca\x4f\x3a\xcd\xf4\x3b\xd7\x3e\x6a\x4a\xa1\xd2\xae\x67\x09\x13\xa5\x18\xef\xc3\xd7\x3e\x5d\xd3\x36\x8f\xb0\x7d\xf3\x18\x47\xd4\x83\xf6\x12\xea\x86\x0b\x51\x12\x23\x7a\xae\x00\x9f\x77\xca\x6b\x98\x23\x34\x4b\x47\xa4\x08\x36\x9b\xad\xd4\x52\xd7\x3a\xe3\x35\x7b\x07\xb8\x08\xcf\xb1\x90\xc5\x61\x3c\x37\x58\x5e\x12\x6f\xf6\x25\x78\x9f\x0e\x8a\x0b\xf8\xe9\x02\xc5\x84\xde\x99\x39\x21\x08\x05\xfc\x23\xba\x61\x85\xd8\xf1\xcf\xf8\x7b\x18\xa3\x4e\xf8\x30\xda\xb0\x23\x3f\x79\x3b\x86\xf6\xcb\x46\xfe\xf2\xd3\x7f\x5d\xc9\xb5\x1b\x59\x52\x15\xed\x93\x57\x04\x1b\xe6\x64\x3b\xef\x42\x6b\xda\x91\x95\x03\x29\x9f\xd7\x3b\x46\x50\xd3\x16\x50\x22\x8c\xf0\xfe\x20\x2d\x38\x31\x8a\x8a\x02\xcd\x86\x1d\x10\xb5\x4f\x8e\xe4\xcd\x63\x65\xab\x8a\x5a\x4f\x5d\xe1\x98\xfb\x05\xb7\x4f\xf2\x6f\x54\x2d\xb6\x4f\xd3\xe6\xc3\xb8\x38\xff\xaa\x83\xab\x40\x39\x6c\x28\x8d\x92\xf5\x51\xda\x85\x9b\xc7\x33\x00\xc6\xd0\x18\x66\x2c\x18\x02\x0c\xa4\x58\x89\xf7\x63\x1c\x4e\x28\xe6\x39\x0e\x7b\x38\x95\xcb\xc9\xaa\x92\x4f\x90\x37\x27\x12\xe2\x4a\x84\xb0\x40\xf9\x2c\x66\xf1\xa8\x62\x3f\xe9\x92\xb0\x28\x48\xd0\x39\xe5\xdb\xf7\x69\x31\xb0\x30\x74\xce\xb3\xb6\x1e\x09\x70\x6c\x40\x12\x04\xc8\x06\x96\x47\xea\x92\xd3\x63\x94\x7b\x3c\xa8\x45\xcc\x7e\xe6\x8a\x90\x7f\x5b\x6f\xb7\xb6\xdd\x9b\x63\x76\xc8\xde\x98\x1e\x63\x67\x7c\xd1\xd7\x19\x4b\xa2\x9f\xe3\x45\x3a\x42\xff\x42\x75\xd3\xb9\x48\x5d\x6c\x24\xe5\xed\x97\xed\xe6\x33\x94\xd9\x70\xaf\x88\x7c\x4d\x29\x54\xcc\xae\xed\xc6\x81\x9a\x7d\x83\xce\x36\xe5\xad\x23\x74\xd0\x52\x8a\x71\x94\x58\x45\xd5\x53\x22\x2f\x1f\xba\x40\xbe\xb4\x10\x08\xc2\xa0\xc4\x33\x74\x40\xcf\xde\x2f\xe0\xff\x2e\x76\x13\x65\x1b\x5a\x72\x5d\xae\x15\x94\x6c\xd2\xfd\xf6\x29\x37\xb4\xe7\xfb\x5a\x72\x1d\xed\xaf\xcb\xa9\x0d\x65\xeb\xa4\xdd\x6c\x1a\xea\xa9\x14\xe3\xda\xb3\x14\x8a\x35\x3b\xcd\x94\x77\xca\x3b\xe9\x9b\xf2\xba\x0b\x83\x77\xea\xb2\x43\xd5\x78\x1d\x6f\x1f\xdf\x38\xef\x9e\x4b\x16\x6c\xa1\x10\x1e\x19\xfc\x3c\xa5\x1f\x19\x5e\x55\xbb\xa3\x86\xfa\xa6\x86\xce\xe2\xae\xbc\xba\x5e\x28\x57\x93\xd3\x65\x75\x37\x43\x94\xc3\x2c\xb0\x24\x80\x21\xad\xed\xd6\xb9\x52\xa8\x10\x81\x05\xb7\xe6\xee\x7c\xfd\xa1\x95\xf5\x72\x1f\x0d\x5e\xe0\xe6\xe1\x28\x38\xf4\x83\xff\xcf\x83\xb8\x7d\xc2\x40\xbe\xb2\x00\x81\x2c\x35\xcf\x40\x7f\x98\x97\x2e\x26\x28\x44\x2b\x4c\x43\xa6\xbb\xaa\xbc\x78\x28\xef\x6c\xa3\x1c\xf6\xef\x34\x33\x24\x5f\xd3\x41\x32\x08\x9b\xd5\xd8\x25\xfd\x10\xc5\x44\xc7\x23\x2c\x3e\xaf\x85\x41\x98\x97\xfc\x34\x1b\x84\x4b\x17\xbb\x74\x70\x0a\xca\xd1\x1e\x6a\x0e\x98\x3a\x5e\x3c\xe8\xfe\x7d\xbb\x03\xb9\x5a\x3d\x43\xfb\x49\x72\xaa\xd3\x4c\x4d\xfa\xc0\x55\xd0\xbd\x7f\xff\x8c\xc9\xaf\xd7\x3a\xcd\x8c\xf7\x33\x3c\x81\xa4\x4f\x51\xb5\x88\x8f\xb8\x97\xc3\xa4\xcf\x41\x5f\x26\x9d\xae\xa5\x4b\x63\x1c\x6c\xed\x93\xad\xb8\x20\x40\x2a\x38\xd2\x5c\xab\xd4\xcf\x95\xca\xda\xa0\x1b\xbb\x27\x30\xbd\xc1\xad\xef\x9c\x95\xe1\x38\x58\xcd\x4c\x8f\x11\x96\x75\xba\x5d\xa4\xa3\x2e\x17\x37\x37\xff\x23\x0c\x88\x0e\x98\xd4\x72\x42\x2d\xa7\xd5\xd6\x4b\x79\x7d\x0f\x3d\xaf\x74\x9a\x29\xbc\xe3\xc5\xd2\xc3\x6e\x50\x7d\xeb\x13\x59\x1c\xd5\x72\x1a\xef\x9d\x46\x54\x0b\x33\xd3\x52\x38\xa0\xe1\x6e\xc2\xa8\x08\x83\x0e\x20\x42\x12\xc3\x38\x80\x98\x31\x4c\x0e\x2b\x66\x37\x3c\xcb\xc2\x80\xc8\x09\x16\xb3\xbb\x34\x3b\x72\x3a\xdf\x91\xb3\x07\xe8\x79\xc5\xea\xe5\xcc\xc7\xd8\xc8\x7b\xab\xa6\xce\x44\x8f\x23\x57\x76\xd1\xce\x9a\x11\xcd\xcc\x07\xb8\x49\xb2\x9d\xd1\x6d\xc8\x98\xff\xa8\x80\xc8\xad\x5e\x64\x77\x4d\x36\x60\x49\x57\xf7\x0a\x0b\x9c\xc4\x7f\x43\xcd\x43\xbc\x6b\x7b\xbe\xe3\x21\xdb\xf7\x6a\x96\xa0\x84\xb4\x9e\x5e\xd4\x16\xdb\x29\xbe\x7e\x80\xe9\x85\xbf\x7e\xeb\xce\xe4\x2c\x67\x8b\xa8\x3b\x2d\x52\x8c\x44\x0a\x94\x87\x2c\x45\x4f\x85\x79\xd1\xd5\xd7\x91\xb2\x5a\x7b\xa1\x34\x12\x66\xca\xda\x3f\xcf\xba\x1f\x23\x06\xe5\x03\xec\x23\xa5\xcd\x63\xc5\x7e\x68\x98\x4c\xc1\xb7\x34\x4b\x5f\x24\xdd\xc9\x88\xeb\x81\xfe\xab\xae\x54\x57\x76\x63\xe6\x6c\x95\x46\x4e\x7e\x9d\xc5\xc5\x64\xce\xd6\x9e\x4a\x9f\xe5\xde\x84\xdb\xd3\x7b\x96\x72\x72\xd6\x1f\x60\xff\x12\xd1\xc7\x0b\x77\x61\x84\x17\xdf\xa3\xd5\xe4\x5c\x5e\xd9\xaf\x0f\xec\x33\x7b\x87\x19\x33\x10\x39\x3d\x62\x5f\xdd\x81\x4b\xe2\x9c\x00\x29\x8f\x33\x0a\x8b\x02\x01\xfb\xb7\x06\x33\xd1\x15\x8b\x3e\x53\x52\xd0\x79\xa7\x70\x95\xe7\xee\xa7\xbc\x51\xe4\xd9\xf4\xad\x4f\x2b\x1d\xaa\x2d\x3c\x22\xf4\x85\xfb\x08\xba\x3c\xfb\x81\x75\xb9\xf7\xad\x73\x18\x5d\x9e\xbb\x01\x0c\x00\xa8\xf5\xf4\x13\x93\x5f\xf2\x6a\xe3\x14\xde\x1f\x16\xe8\x28\x6f\x9a\x26\x2c\x5e\xfd\x52\x74\x9f\x38\x4f\xfa\x86\x12\x22\x43\x64\xcd\x40\x47\x13\xd9\x8f\xad\x4c\x0c\xc5\x86\x25\x2a\x0c\xdf\xa7\xdc\x6a\xaf\xd4\x4a\x6c\x60\xad\x69\x7b\x71\x79\xbb\x64\x76\x37\x16\x32\xeb\x38\x9e\x1e\xb1\xfa\xac\x3b\xd9\xb0\x48\x5c\x15\x6a\x02\xff\x5b\x99\xf8\x2f\x00\x00\xff\xff\x83\x87\x50\x72\x99\x18\x00\x00")
+
+func yaoDataKbProvidersConverterVideoZhCnJsonBytes() ([]byte, error) {
+ return bindataRead(
+ _yaoDataKbProvidersConverterVideoZhCnJson,
+ "yao/data/kb/providers/converter/video/zh-cn.json",
+ )
+}
+
+func yaoDataKbProvidersConverterVideoZhCnJson() (*asset, error) {
+ bytes, err := yaoDataKbProvidersConverterVideoZhCnJsonBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "yao/data/kb/providers/converter/video/zh-cn.json", size: 6297, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _yaoDataKbProvidersConverterVisionEnJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x57\x4d\x6f\xdb\x38\x13\xbe\xfb\x57\x0c\x74\x79\x53\xc0\x36\x92\xa6\x79\x0f\x01\xf6\xe0\xba\xd9\x6c\xda\x7c\x01\x2e\x7a\x59\x04\x01\x2d\x8d\x64\xee\x52\x24\x4b\x0e\x5d\x3b\x8b\xfc\xf7\x05\xa9\x0f\x4b\x8a\x94\xc4\xf0\xde\x6c\xce\xe7\xf3\x70\x38\x33\xfa\x67\x04\x10\xf1\x24\x3a\x87\xe8\xf1\x71\xcb\xd4\x74\xcd\x2d\x57\x32\x1a\xfb\x73\xe2\x24\xd0\x8b\x7e\x84\x43\x98\x49\x26\xb6\x96\xdb\x42\x9a\xa0\x8d\x0d\xd7\xe4\xd5\xcf\x21\x0a\xc2\x27\xb4\xc0\x73\x96\xa1\x05\x67\xb9\xcc\x60\x76\x05\x85\x47\xc8\x55\x82\xc2\x02\x29\xc0\x0d\x19\x16\x13\x10\x6e\x68\x0c\x85\x9b\x25\x42\xac\x24\xa1\xa4\x31\x30\x99\x00\x4f\x50\x12\x4f\xb7\xa0\x96\x7f\x61\x4c\x76\x0a\x0b\xa7\xb5\x32\x64\x61\xcd\x0c\x57\xae\x8c\x03\xa9\x32\x39\x23\x0b\xbf\x38\xad\xbc\x8b\x94\x67\xce\xb0\xa5\xf0\xfe\x72\x6d\xd0\x86\xe0\xde\xa5\x60\x32\x73\xde\xc4\x22\x11\x97\x99\x9d\x16\x38\x0c\xfe\x74\xdc\xa0\xe7\xe0\xcf\x28\x56\x52\x62\x4c\xca\x44\x0f\x41\xa8\x8d\xd2\x68\x88\xa3\x8d\xce\xc1\x93\x05\xd0\xd0\xa9\x8e\x3c\x57\x5b\x1d\xa8\xb2\x64\xb8\xcc\x82\xe7\xe2\xbc\xc3\xe1\xbc\x36\xae\x55\xba\x44\xb6\x29\x83\x3a\x9c\xc7\x5a\xa2\x66\xe5\x4d\x4c\x9b\x5e\x52\xe6\x04\x79\x0f\xbb\x43\xcf\x81\x92\x28\xc3\xf1\x02\x05\xc6\xb4\x13\xa2\x74\xb9\x07\x5d\xfe\x87\x1a\x4c\x90\x66\x46\x39\x7d\xcd\x96\x28\xbc\xed\x9d\x46\x39\xbb\x82\x1f\xbb\xea\xa8\x15\x55\xc8\xdc\xb6\x3c\x75\xbd\x05\x45\x51\x39\xbb\xbc\xff\x3e\xf9\xa4\x5a\x5e\x82\xc2\x9a\x09\x17\xb8\x52\x1a\x25\xe3\xd3\x4c\x53\xaf\x5e\x87\xb0\x3f\x78\xb6\x9a\xfc\x74\x4c\x70\xda\xb6\xa9\x0b\x45\x91\x20\x31\x2e\x30\xa9\x49\x83\x98\x69\xb6\xe4\x82\x87\x6b\xed\xf1\x5e\x11\x49\xc6\x61\x4b\xfa\x3c\xde\x0b\x21\xdc\x70\xc9\xdf\x0b\x73\x92\xf7\x2a\x77\xb0\xce\x95\xa5\x09\xa6\x29\xc6\xc4\xd7\xd8\x46\xeb\xcb\x63\xc9\x2c\x8f\x3b\x45\x12\xb5\x31\x34\xfe\x3d\x8c\x7a\x90\xbd\x52\x05\x33\x41\x68\x24\x0b\xa1\x6f\xc2\x7b\x3e\xb4\x14\xe6\x82\xb9\x04\xe1\x74\x7a\x06\x0b\x5f\xe7\xf4\x0a\x5d\x4c\xd2\xca\x28\xcd\xe3\x69\x1c\xac\x26\xa7\x93\xb3\x89\x1d\xb0\xea\xf0\x76\xb1\x89\x51\x08\x94\x54\x51\xe6\x64\x82\xc6\x12\x93\x89\x6f\x53\xbe\x3f\xd4\x75\xd2\x30\xed\x72\xf7\xee\xfb\x57\x2a\x13\x08\x97\xe8\x2f\xb5\xef\xd5\xb4\x91\x65\x41\x7d\x9a\x05\xf5\xc9\x7a\x40\xbd\x03\xa9\x88\xf1\x3f\x0b\xb9\x13\xc4\x73\x95\x30\xe1\xdb\x6d\xa8\xf9\x12\x64\xab\xd0\xdf\x53\x05\xe5\xaf\x87\xba\x47\xfc\xe2\x09\xad\x7c\xb4\x15\x13\xe9\xae\x75\x28\x93\xa0\x6f\x7f\x27\xa3\x06\x2d\x51\x28\xc3\xbd\x9a\x62\x28\x22\xb8\x65\x39\x0e\xb6\xc3\x85\xc6\x98\xa7\x3c\x2e\x8b\x5c\xb2\x1c\xe1\xa8\x28\x34\x26\xc6\xe0\x2c\xda\x46\x8b\x2c\x1f\xef\x87\xbd\x1a\xe3\x95\xd4\xae\xd1\x17\xdf\xc0\xfc\xb1\x85\x59\x1b\x95\x6b\xda\x0b\xf4\xdc\x59\x52\x39\xdc\x17\x96\x43\xb8\x4b\xad\xc2\x7f\x5f\xeb\x87\x6b\x64\x6b\x04\xcc\x35\x6d\xfd\x58\x75\x16\x2b\xf8\xbb\x56\x57\x98\xef\xc5\xc6\x77\xdc\xd0\xcc\x20\xdb\x89\xb5\x60\x31\xae\x94\x28\xf0\x47\x38\xcd\xa6\x63\xf8\x52\xcd\x6d\x5a\xf1\x6a\x18\x73\x59\xbe\xa2\x31\xa4\x2a\x2e\x36\x00\x25\xc3\xa0\xaf\xc6\x7b\x78\x6a\x7f\x63\x68\xd4\x8e\x09\x40\x81\x39\x4a\x6a\x4e\xb2\x9a\xff\xd4\x09\xf1\x92\xff\xd3\x16\xff\xd5\x94\x7f\xb4\xfc\x09\xfb\xae\x81\x4b\xc2\x0c\x4d\xdf\x3d\x94\xa6\xb0\xe0\x4f\x08\x47\xdf\x3e\x7f\x18\xbc\x8c\x1b\xb6\xe1\xb9\xcb\x4b\x98\x3e\x94\xc7\xfa\xed\x33\x2c\x31\x55\xa6\xbd\x6b\xf8\xab\x9a\xdd\x5f\x79\xea\x63\x7f\x24\xb3\x5e\xfa\xcf\x4e\x3e\xd6\xa7\xfe\xd9\xe7\x61\x18\x9f\x1c\x1f\xef\x4e\x8b\xa0\x85\xee\xf1\x2b\xa5\x7b\xeb\xf2\x65\x13\xe1\x1b\x05\xfc\xa9\x45\x60\xb5\x16\xed\x55\xc2\xd7\x95\xd1\x10\x61\x17\x1b\x8d\x31\x61\x52\x5f\x7b\xbd\x7d\x85\x29\x85\x44\x68\x76\x55\x7a\x34\x73\xa4\xe0\x37\x60\x8e\x54\xce\x88\xc7\xbe\x8c\xfc\x88\x53\x72\xe0\x25\x7b\x83\xff\x64\xcd\xa9\x5b\x76\x48\xe1\x4b\x08\xdb\x1e\x6a\x75\x97\x6e\xc5\xec\x03\x3d\xab\xd2\x67\x42\x6c\x4b\x08\x2f\x08\xe8\x7a\xe8\x5d\x36\x86\xc6\x71\x9d\xed\x85\xcc\x04\xb7\xab\x81\x4c\x7b\xa5\xdd\x1b\x2a\x74\x1a\xef\xb2\xbb\x2d\xbc\x99\xc4\x7c\xc5\x25\x5a\x1c\x48\xa2\x57\xda\x6d\x72\x85\xce\x21\x49\x2c\x34\x93\xc3\x4c\xf4\x4a\x5f\x4c\x98\xa0\x73\x48\x12\xbf\x1b\x94\xf1\x50\x0e\x7d\xc2\x4e\x0a\x85\xca\x21\x19\x5c\xa2\xc9\x99\x1c\xc8\xa0\x4f\xd8\xdd\x26\x82\xca\x21\x19\x7c\x65\x9a\xbd\x52\x0e\xfd\xe2\x4e\x16\x95\xd2\x6b\x79\xec\xbb\xa3\x9c\xb5\xda\xdd\x6e\x45\x7d\x7f\xb7\x9b\x25\x09\x2f\xf6\x0d\xb8\x2b\xcc\xe1\xe8\xeb\xe2\xee\x76\x78\x5e\x34\x2c\xc2\xda\x32\xb1\xd5\x16\x53\xc6\xf7\xe3\xc3\xbb\x28\xbf\x5f\xf7\x1a\xd0\x73\x95\xe0\x45\xc2\x5b\xdf\x90\x6f\xcc\xcc\xff\x8f\x2a\xea\x9e\x47\xcf\xa3\x7f\x03\x00\x00\xff\xff\xd9\xee\xa7\xa4\xf5\x0f\x00\x00")
+
+func yaoDataKbProvidersConverterVisionEnJsonBytes() ([]byte, error) {
+ return bindataRead(
+ _yaoDataKbProvidersConverterVisionEnJson,
+ "yao/data/kb/providers/converter/vision/en.json",
+ )
+}
+
+func yaoDataKbProvidersConverterVisionEnJson() (*asset, error) {
+ bytes, err := yaoDataKbProvidersConverterVisionEnJsonBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "yao/data/kb/providers/converter/vision/en.json", size: 4085, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _yaoDataKbProvidersConverterVisionZhCnJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x57\x5d\x4f\xdb\x56\x18\xbe\xcf\xaf\xb0\x72\xdd\xa0\xd2\x96\x5d\x54\xda\x05\xab\x3a\x44\xb7\xb5\x95\xa8\x76\x33\x21\xe4\x26\x87\xc4\x92\x63\x7b\x8e\xcd\xda\x4d\x48\x06\xf2\xc9\x97\xa3\x8d\xb2\x26\x20\x0a\x6b\xd2\xa4\xeb\x48\xe8\xa0\x63\x21\x0e\xf9\x31\xe4\x9c\xe3\x5c\xe5\x2f\x4c\xc7\x27\x38\xb1\x17\x07\x82\x7a\x97\x9c\xf3\x7e\x3d\xcf\x79\xcf\xf3\x1e\xff\xe2\x63\x18\x3f\x17\xf2\xdf\x67\xfc\x73\x73\x2f\x59\x71\x6c\x81\x8b\x71\xa2\xe0\xbf\x45\xd6\x15\x4e\xe1\x01\xd9\x32\x4b\x49\xb3\x94\x81\xe9\x24\xda\xcb\xd2\xad\x10\x88\x05\x65\x4e\x52\x88\xed\x7d\xc6\xdf\x6a\x34\xf1\x56\x99\x99\x9c\x66\xa8\x29\x2a\x1f\xc0\xbd\x35\xea\x00\x77\xce\xe1\x8a\xde\xaa\x17\x91\x9e\x85\xfa\x36\xda\x4e\xa1\xdd\xbf\x2e\xb4\x25\xa4\xeb\x66\xf3\x08\x26\x13\xb0\x52\x83\xbf\xae\x9b\xd5\x24\x4c\x7f\x80\xd5\x9a\xf9\xf1\xe0\x42\x5b\x46\x5b\x55\xb4\xbe\x04\x0b\x79\x5c\xda\xa0\x11\xd0\xbe\x01\x0d\xbd\x63\xac\xc3\xc4\x29\xda\xcd\x40\xbd\xda\x4e\x6c\xe0\x46\x05\xe7\xe3\x70\x73\x0d\x1b\xef\xad\x20\x87\x66\x59\x33\x2b\xe7\xb8\x51\xb9\xd0\x96\x69\xad\x32\xf8\x51\xe5\x64\x40\x40\xfe\xe0\x0f\x8a\x82\x00\x82\x8a\x28\xfb\x67\xad\x4d\x49\x16\x25\x20\x2b\x1c\x88\xf9\xef\x33\x84\x0d\x86\xe9\xb3\xb9\x5c\x22\x64\xbc\x94\x2c\x2e\x62\x8a\xcc\x09\x61\x2b\x32\x5d\x77\x92\x64\x36\xf7\xd0\x66\x11\xe6\xca\x3d\x0b\x17\x57\x78\xab\xdc\x3a\xdb\xa4\x98\x28\x43\x38\x1f\x77\x53\x67\x87\xb9\x44\xd1\x8d\x34\xcf\xaa\xbc\x42\xa2\xf4\x16\x83\x62\x54\x12\x05\x20\x58\xcb\x33\x80\x07\x41\xa5\xb7\x09\x04\x35\x4a\x70\x77\xff\x33\x36\x1e\x6b\x37\x2c\x8b\xaa\xf4\x2d\xfb\x1c\xf0\xc4\xf7\x89\x04\x04\x57\x19\x76\x20\xcb\x5c\xb4\x30\xc4\x1c\xf1\xdc\x31\x2d\x43\xfe\x32\xe4\xd4\xd3\x67\x81\x7b\xa2\x23\x8a\x65\xb0\xc0\xf2\xaa\x45\x9a\x28\x01\x81\xe5\xc6\xc2\x92\x32\xd0\xce\x45\x1d\x3d\x79\xb3\xfa\x0e\xd7\x93\x94\x3a\x73\xa5\x01\x57\x77\x70\x3e\xde\xfe\xf0\xda\x3c\x29\xb7\x53\xba\x67\xf9\x2e\x06\x15\x59\x05\x8e\xdd\xc5\x5b\x23\x81\x62\xbe\xe3\x04\xee\xba\xc8\x02\xd1\x81\xc6\x6e\x78\x6f\xce\xf0\x81\xe6\xea\x0c\x5c\xd7\xd1\xa7\x4d\xd2\x12\xfd\xc0\x9c\x95\xf7\xfd\x9b\xf5\x0d\xc0\x33\xe4\xd0\x61\xe2\x9f\x56\x7d\xfb\xf3\x9c\xf6\x03\x9e\x55\x43\x80\xb9\x3b\x36\xc1\xcc\x90\x2b\xa4\x0c\xa1\x87\x15\x94\x88\x2c\x4a\x5c\x70\x2c\x68\x79\x05\xee\x06\x26\x02\x31\x0f\x2f\x37\x4f\xa9\x33\x33\xf3\x37\xce\xc7\x29\x25\x38\x9b\x34\x4b\x6f\xad\xdb\x4f\x1a\x83\xea\x0a\x6d\x0c\xff\x0d\x4f\x58\x14\xc3\x3c\x60\xa6\x00\x39\x36\xe6\xfb\x9e\x24\x0e\xc6\x12\xb6\xcc\xc7\xc2\x96\x79\x60\xc1\xc3\xdc\x05\xa2\x9b\x83\xa8\x57\x21\x8f\xca\x07\x48\x5b\x62\x26\xa7\x6d\x79\xeb\xaa\xc9\x20\x14\x83\x4f\xbb\xfb\x6b\xd6\xbe\xfa\x3f\x71\x21\x25\x42\x32\x45\x58\x7e\xbe\xa7\x08\xa2\x1c\x02\x44\xd8\xc6\x7d\x7d\x94\xf8\xa3\x62\xc8\x82\x7e\x7d\xb9\xeb\x4a\x7c\x76\x03\x97\x8e\x3c\xb5\x0e\x26\x4e\x5b\x8d\xdf\xfa\x4d\x3b\x46\x9a\x28\xb7\x96\xe9\x18\xeb\x74\x6a\xd8\x52\xd7\xae\xbf\x36\x2b\x05\xa8\x19\x1d\x23\x33\xa2\xec\x4d\x0b\x92\xda\xa7\x7a\x57\x40\xbf\xe3\x80\x2e\xc9\x62\x54\x52\x46\x93\xfa\xd4\x9f\xb0\x92\x6f\xd5\x32\x48\xcf\xe2\xc2\x99\x37\x7c\xe7\x55\x76\xb9\x5d\x68\xcb\xf8\x55\x0e\xbf\x3f\x83\xe9\x1c\xa5\xa2\xcb\x80\x65\x6f\xdb\x8c\xc2\xc3\x33\xf0\x42\x99\x94\x01\xdb\xdb\x96\x78\x36\x08\x22\x22\x4f\x91\xfb\x5b\xe7\x6b\xf0\xdd\x72\xc7\xc8\x3b\xee\x4a\x33\x07\x8d\x7d\x5a\x6c\xc7\x58\x6f\xa7\x36\xf0\x72\x0d\x26\x8e\xd1\x71\x99\x4e\x6b\x7b\x48\xc3\xc4\x71\x7b\xab\xd2\x7d\x0e\x24\x56\xf0\xc9\xbe\xa3\x40\x9b\xf7\x79\x95\xe7\xff\xcf\xfb\x5d\x07\xef\xa4\x70\x19\xc4\x62\x73\x31\xee\x67\x30\x88\x7e\x4e\x50\x40\x18\xc8\x03\xf8\xef\xce\xfb\x42\x09\x1e\xe9\x1d\x23\xfd\xcd\x57\x1d\x23\xe3\x79\x08\x93\x4f\xa7\x19\x58\x88\xe3\x6c\x12\x66\x36\xa8\x27\xce\xc7\xd1\xae\x46\xfc\xe9\x01\x39\x02\x79\x50\x3e\x31\x7e\xc7\x5e\x25\xf7\x3c\x6a\x0d\xd6\xf1\xdb\xb7\x7b\xab\xec\x8b\xee\xea\xc4\xf8\x9d\xdb\x43\x1a\xf5\xb1\x1a\x7d\xde\x8f\xeb\x8a\x76\xbd\xe7\xa0\x8d\x67\x85\xb0\xca\x86\x07\x32\xe6\xdd\xb0\xd6\xbb\xc8\x93\xa2\xf6\x1f\x71\xb4\xfb\x86\x9e\x32\x35\x25\xb7\xb3\x5e\x6c\x9d\x37\xd1\xce\x09\x2c\x36\xe0\xee\x11\xed\xca\x8e\x91\x26\x5d\xbc\x5a\x66\xbe\x64\xe8\x0f\xf4\x56\x43\x9f\xd6\x86\x5c\xd9\x49\x55\x11\x3f\xcb\x6b\xc5\x96\xe7\xfe\xc4\xce\x99\x65\x4b\xb2\x23\xe9\x20\xc8\xfd\x31\xfa\x81\xbb\x9d\x06\x3e\x17\xbc\x46\x6b\xaf\xc2\xb5\x8f\x66\xf5\xd0\xa3\xb6\x87\x42\x98\xe7\x62\x91\xe1\xe5\x59\x01\xba\xf7\x8e\xbe\xbb\xaf\x9f\xbd\xf5\xef\x21\xda\x4e\x79\x64\x7f\x10\xe1\x04\x10\x03\x43\xb3\xd3\x00\x37\xcc\x6e\x16\x9b\x58\x3f\xc4\x99\x9c\x37\x03\x33\x12\x2b\x5c\xc9\x40\x5f\x98\x1b\x56\x82\x8e\x5f\x79\xd7\xf0\xb5\x0c\x84\xe0\xf0\x12\xa8\xff\x0d\x93\xc3\xf3\x53\xef\xe4\x53\x40\x8e\xb2\xc2\xd0\xe4\xd4\xff\xa6\xc8\x7f\x2f\x7a\x27\x7f\xc4\x4a\xec\x95\x2d\x40\x23\x78\xa4\x1f\xf5\xad\x31\xe1\x50\xb0\xde\xc3\xf2\xfa\x02\xd6\xce\xc5\xe1\xea\x7e\x5b\xcb\xb4\x0f\x6a\x1d\x23\xfd\x68\xe6\xc9\xe3\x61\x9a\x4f\xf6\x19\xfa\xc1\x48\xbe\x0d\x2c\x67\xfa\x0a\xc1\x99\x1a\xac\xe4\x69\xa0\x11\x87\xeb\x03\x31\x04\x1e\x86\x38\xf2\x5d\x78\xdd\x89\xf7\x85\xef\x92\xaf\x45\xdf\xa2\xef\xbf\x00\x00\x00\xff\xff\x75\xb0\x3b\x6c\x6d\x0f\x00\x00")
+
+func yaoDataKbProvidersConverterVisionZhCnJsonBytes() ([]byte, error) {
+ return bindataRead(
+ _yaoDataKbProvidersConverterVisionZhCnJson,
+ "yao/data/kb/providers/converter/vision/zh-cn.json",
+ )
+}
+
+func yaoDataKbProvidersConverterVisionZhCnJson() (*asset, error) {
+ bytes, err := yaoDataKbProvidersConverterVisionZhCnJsonBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "yao/data/kb/providers/converter/vision/zh-cn.json", size: 3949, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _yaoDataKbProvidersConverterWhisperEnJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x97\x4b\x6f\x23\xb7\x0f\xc0\xef\xf9\x14\xc4\x9c\xb2\x80\x6d\xd8\xbb\xc9\xfe\xff\x0d\xd0\x83\xeb\xa4\x6d\x8a\x3c\x0e\x4e\xd1\x43\x11\x18\xb2\x44\x8f\x85\xd5\x48\x5a\x3d\x12\x7b\x8b\x7c\xf7\x42\x9a\xb7\x3d\x93\xd8\xbb\xe9\x21\x40\x2c\x91\x14\xf9\x1b\x92\xa2\xfe\x39\x01\x48\x38\x4b\x2e\x20\x59\x2c\xb6\x44\x8d\x9e\xd7\xdc\x6a\x34\xc9\x20\x6c\x38\xee\x04\x86\xbd\xa9\x67\x5c\xc1\x83\x21\xd2\x52\xc3\xb5\xe3\x4a\xe6\x12\x0c\xeb\x85\x0b\x48\x66\x4a\x3e\xa1\x71\x16\x48\x54\x58\x71\x81\x16\x9c\x02\x87\x1b\x07\xde\x72\x99\xc2\xf4\x1a\xac\x46\xa4\x6b\x30\x48\x55\x2a\x79\xd0\x1d\xc1\xdc\x6b\xad\x72\x4d\xa7\x32\xe2\x38\x05\x41\x64\xea\x49\x8a\xc0\xd0\x21\x0d\x62\x03\xb0\x5c\xa0\xa4\xad\x25\x22\x19\xd0\xb5\x97\x5f\x86\x4b\x62\x91\x81\x36\x8a\xa2\x8d\x67\xad\x94\x01\xa1\x64\xda\x74\x67\x94\x3b\x6e\xf0\xab\xe7\x06\x43\xe4\x7f\x27\x54\x49\x89\xd4\x29\x93\x3c\xc6\x4d\x6d\x94\x46\xe3\x38\xda\xe4\x02\x02\x22\x80\x86\x4c\xb9\x14\x00\x6d\x75\xe4\x63\x9d\xe1\x32\x8d\x96\xf3\xf5\x36\xb8\x59\xa5\x5b\x49\xec\x80\x9b\x5e\x17\x3e\xba\x26\x63\xa8\x0e\x1d\x35\x35\x57\xc4\x0b\x17\xb4\xea\x45\xaa\x32\xad\x24\xca\xb8\x3c\x47\x81\xd4\xd5\x9b\x28\x7d\x16\xe2\x2c\x7e\x43\xe5\x7f\xdc\x4d\x8d\xf2\xfa\x86\x2c\x51\x04\xdd\x7b\x8d\x72\x7a\x0d\xd1\xef\xca\x42\x94\x53\xd1\x25\xdb\x32\xb4\x6b\x2c\x0a\x8a\xd2\xd6\x5f\x8d\x5c\x6a\x49\x3c\x11\xe1\x23\x1e\xa5\x51\x12\x5e\x26\xdd\x70\xb2\x2f\xba\xc3\xe9\x77\x9e\xae\x87\x5f\x3d\x11\xdc\x6d\x21\xf3\xc2\x71\xc1\x43\x96\x88\x2e\x7c\x5d\xd6\x4a\x76\xce\x78\x6c\xed\xbe\x34\x7e\x3d\x56\xff\xbf\x0c\x0e\x81\x36\x15\x0e\x8d\x24\x8e\x3f\x21\xdc\x2a\x86\xc2\xfe\x28\xba\xe9\x37\x6f\x10\xe6\xb1\x50\x5e\xe1\x47\x82\xd8\xc8\xf6\x88\xed\xb0\xbb\xe5\xd4\x28\xab\x56\x0e\x9a\xd6\x61\x8e\xe6\x89\x53\xb4\x49\x1b\xc7\xe0\x40\x4f\x7f\x53\x2a\x15\x07\xb8\x9a\x46\xb9\x43\x7d\x2d\xac\xce\x84\xf2\xac\xb0\x3d\x74\x6a\xf8\x80\x1b\x97\x1c\xf2\xd9\x8a\xff\x1e\xab\x1a\x78\xe6\xcc\xad\x83\xe5\x35\x11\xab\xba\x34\x94\x61\x18\x2a\x7a\x72\xd2\x08\x3a\xc9\xc2\x37\x3c\xaa\xce\xe3\x57\x87\x3b\x92\x61\x6f\x89\xcf\x35\x52\xbe\xe2\x14\xa2\x75\x90\x24\x43\x38\xcd\x33\x83\x88\x01\x78\x8b\xb6\xae\x77\x28\x32\xf5\xc3\x51\x85\x7f\x2d\xb5\x6f\xd4\xfd\x1b\x31\x7f\x6c\xc5\x5c\x76\xdb\xa3\xc2\xbe\x29\x95\xfa\x82\xbe\xda\x68\xa4\x0e\x59\x51\x9e\x55\x4b\x3f\xc5\x4c\xbb\x2d\xfc\x1c\xdb\xfd\x30\xef\xe6\x3f\x14\xab\x16\x84\xe2\x5a\x89\x3c\xb4\x04\x47\xe9\x68\x00\x28\x07\xf0\x6d\x3d\x00\xb4\x03\x58\x99\x83\xc1\x7c\x6a\x81\x89\x77\xcb\x82\x79\x43\x8a\xa0\xf6\xf0\x48\x9f\x2d\x1b\x6d\xae\xc6\x33\x0b\xaa\x70\x59\xa8\xc2\xa9\x45\xaa\x24\xb3\x1f\x7a\x71\x55\xa2\x6a\x05\x48\xe8\xba\xc0\x16\x5d\x88\xb7\x59\x7d\xb9\x75\xc2\xfa\x34\x1e\x8d\xab\xe5\x8c\x4b\x9e\xc5\xce\x7f\xde\x5c\x25\x9b\x62\xf5\xd3\xb8\x29\xbd\x0f\xf7\x6e\x27\xac\x37\xa8\x9d\xb5\x4b\x88\x68\xcd\x65\xfa\x7d\xdc\x6e\x73\xe5\xef\x22\x17\x28\x39\x9e\xa1\x75\x24\xd3\x50\xb8\x01\x84\x52\x6f\x08\xdd\x76\x52\x3b\xef\x84\x36\xe9\x81\xf6\x9e\xcc\xce\x5b\xcc\x8a\xe1\x66\xe1\xd6\x06\x6d\xc8\xe5\xa3\xa0\xcd\x8b\xd1\xe8\xa1\xd4\x86\x53\xf6\x4b\x3f\xb0\x7c\x32\x11\xf8\x84\x02\xaa\x03\x23\xbd\xbd\x19\xab\x13\xda\xf0\xac\x3b\xd7\x86\x9f\xc7\x9d\xe0\x86\x93\x77\x25\xf7\xb9\x93\x5c\xc6\xe5\x42\xa0\x4c\xa3\xe6\x11\xf9\xc6\x25\x94\xf8\x6e\xa2\xfa\x01\x19\x77\x9b\x87\x5c\xe3\x2a\x33\xd0\xa9\xd0\xc7\x2d\x67\x68\x80\x58\x58\x1a\x24\x5f\x3a\x11\x4e\x3a\x01\x8e\x47\x93\x0e\x7c\xef\x4b\xef\x7f\x2d\x7a\x28\xc9\x52\xe0\xa2\x84\x58\x7d\xf7\x2e\x86\x4b\xa5\x04\x12\xd9\x01\xf1\x2a\x5a\xa9\x38\x5e\x56\x56\xfa\x00\xfe\x69\x71\x3f\xd7\x62\x06\x2e\xd1\x39\x34\x45\xdb\x5b\x2a\x2f\x19\x31\xbc\x1c\xdd\x61\x7f\x90\xeb\x19\x83\x9f\xb9\x6b\x8c\x1a\x6f\x31\xf9\xff\x4e\xff\xda\x2c\xa8\x92\xd4\x1b\x83\x92\x6e\xbb\x50\x70\xe9\x30\xed\xe9\x5f\x9b\x30\xf3\x57\xca\xbd\x29\x94\x7f\x5e\xa8\x0e\x72\x3b\xf3\x7f\x78\xa5\xa0\x75\xdd\x91\x9f\x75\x35\xad\x8e\xd4\xf9\xf8\x8e\x89\xf3\x53\x0b\x92\xc3\x4c\x2f\x18\x3f\xee\x49\xf4\x80\x99\x56\x86\x98\x2d\x5c\x72\x13\x87\x9d\x7e\x40\x33\x6f\x9d\xca\xc0\x55\x2a\xac\x54\x89\x79\x92\xdf\x8e\x8d\x07\x5f\x35\x56\xd8\xad\x75\x98\x2b\xfe\x97\x23\xd4\x64\xdc\x1e\x15\x42\x69\x78\xbd\x08\xc7\x1e\x57\x3c\xb3\x5c\x13\x6a\x38\xbf\x86\xc7\xea\x2b\xdd\xbb\x78\x25\x13\x21\xb6\x10\xcf\x05\xaf\x1b\xa0\xf2\xa7\x37\x59\x85\x3a\x7a\x63\x68\x78\xb7\x0a\x9a\xb4\xa7\xe8\xfa\xd5\x73\xc4\x7b\x99\x31\x9e\x4f\xc4\x70\x9f\xab\xc3\xe9\x1f\xf3\xfb\xbb\x57\xee\xb1\x5a\x23\x0e\xd6\x43\x5b\xce\xd9\xc5\xf9\xc0\x25\x04\x13\x21\x63\x32\xe2\x8e\xca\x86\x99\x62\x78\xc5\x78\xeb\xe5\x5e\x41\x58\x79\x21\x3a\x20\x14\x63\xf5\x49\xf8\x7b\x39\xf9\x37\x00\x00\xff\xff\x27\xb6\x84\xbe\x61\x11\x00\x00")
+
+func yaoDataKbProvidersConverterWhisperEnJsonBytes() ([]byte, error) {
+ return bindataRead(
+ _yaoDataKbProvidersConverterWhisperEnJson,
+ "yao/data/kb/providers/converter/whisper/en.json",
+ )
+}
+
+func yaoDataKbProvidersConverterWhisperEnJson() (*asset, error) {
+ bytes, err := yaoDataKbProvidersConverterWhisperEnJsonBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "yao/data/kb/providers/converter/whisper/en.json", size: 4449, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _yaoDataKbProvidersConverterWhisperZhCnJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x97\x49\x6f\xdb\x46\x14\xc7\xef\xfe\x14\x84\xce\xb2\x21\x65\x6b\x1b\xa0\x87\x34\x28\x8a\x14\x6d\x72\xc8\xa1\x87\x22\x10\x68\x72\x2c\x11\xa5\x86\x2c\x45\x36\x4b\x61\x40\x36\x64\x59\xf2\x26\x27\xb5\xbc\x28\x4e\xbc\xd4\xb1\xd5\x78\x91\x5b\xbb\xb6\xac\xc5\xfe\x30\xd6\x0c\xc9\x93\xbe\x42\x31\x1c\x4a\x22\x25\xd1\x96\x1a\xe7\x20\x40\x9c\x79\xef\x61\xfe\x3f\xbe\xf7\xe6\xf1\xf7\x01\x86\xf1\x09\xbc\xef\x3e\xe3\x0b\x85\x5e\xb2\xd2\xd0\xf3\x88\x10\x93\x81\xe2\xf3\x93\x0d\x55\x50\x45\x40\xf6\xcc\xb5\x23\x73\xf3\xb5\x51\xdd\x43\xd5\x2c\xdd\xe2\x41\x8c\x53\x04\x59\x15\x24\x48\x0c\x6a\xd5\x0b\x7d\x21\xcf\x3c\x78\xc4\x18\x85\x7d\x73\xed\xc8\x28\x24\x51\x6a\x17\x1d\x26\xa9\x27\x5e\x9c\xac\x95\x4f\x8c\xea\x1e\x9e\xdd\xac\x15\x4b\x78\x71\x12\xaf\xee\x5d\xc6\xc7\xf1\x42\x01\xcf\x8c\x19\x93\x1f\xd1\x54\xde\x28\xec\x1b\xf9\x38\xfe\x33\x8e\xff\x9d\xbe\x8c\x8f\x99\xef\x56\xcc\xb5\x23\xfa\x88\xde\xcc\x98\xd9\x0b\x67\x28\x3d\x97\x40\xa9\x24\x7a\xb7\x84\xb6\x12\xfa\x7c\xf2\x32\x3e\x4e\x8f\xa5\x80\x5f\x35\x41\x01\x44\xd0\xcf\x3e\x4e\x82\x10\x70\xaa\xa4\xf8\x9e\x59\x9b\xb2\x22\xc9\x40\x51\x05\x10\xf3\xdd\x67\x88\x72\x86\x71\xd8\x34\x96\x88\xee\x97\xb2\x25\x3b\xa6\x2a\x02\x0c\x5b\x91\xe9\x7a\x1b\x8f\x8b\xf7\x78\xee\x03\x5a\xc9\xb7\x2c\xda\xb0\x3c\x78\xc4\x38\xd1\x35\x1d\x1a\xe7\xb5\x7d\x46\x58\x4d\x54\x89\x7d\x6b\x91\x93\xa2\xb2\x04\x01\xb4\x96\x9f\x02\x11\x70\x6a\x6b\x13\x40\x2d\x4a\x14\xda\xcf\x4c\xf3\xe4\xd6\x6e\x58\x91\x34\xf9\x07\x76\x18\x88\xc4\xf7\x89\x0c\x60\xf3\x18\xcd\x10\x96\xa1\x64\x9d\x33\xe6\x8a\xd4\x1e\xcd\x32\x14\x1b\xc1\x7e\x72\x64\x87\xcb\xe2\x37\x56\xd4\x2c\x32\x92\x0c\x20\x2b\x34\xd2\x68\x30\xd8\x69\xda\x86\xc8\xdc\x5d\x36\x8e\xf3\xe6\x64\x06\x6d\xe5\x68\x0a\x74\x24\x5b\x9b\x7b\x83\x96\xaa\x68\xc0\xb5\x3b\xea\x78\x7a\xd6\xfc\x3f\xea\xef\x05\x13\x9a\x38\xa9\x95\x17\x71\x7e\x03\xbd\x9f\xfe\x54\x4a\x0f\x5e\x69\x0a\xb0\x0b\xe1\x0a\x54\x2c\x31\x1b\x8a\xc9\x00\x70\x91\x6b\x31\xfd\x28\x70\x8a\x14\x93\x46\x54\xc6\x19\x1d\xaf\xce\xa2\xa9\x0d\x9f\x9b\x82\xbf\xc7\x63\x7e\x27\x49\x61\xb1\x87\x73\x86\x2d\xbb\x5e\x0f\x6a\x47\x7d\x28\x4a\x1a\xdf\x68\x06\xd5\x3d\x5a\xf1\xbe\x5e\x5e\x97\xfd\xef\x59\x33\xdb\x9f\x0b\xbc\x1a\x21\xa1\x23\xac\x38\xd2\x2a\x02\x49\xe1\x01\xa9\xda\xe0\x80\x43\xb5\x2f\x2a\xf1\x96\xba\xde\x6b\x99\xbe\x73\x34\x3f\xab\xef\x1c\x7a\x16\x32\x9a\x38\xad\x55\xff\x70\x9a\xd6\x2b\x29\x94\x29\x98\xf1\x74\xbd\x32\x43\xbb\x5f\xb3\xba\xcd\xf2\xb2\x71\xb0\x85\xe2\x95\x7a\x25\xdd\x67\xa5\x3f\x82\xb2\xe6\x28\xf4\x6b\xa4\xdf\x72\x49\x17\x59\x18\xd6\xd8\x30\xe8\x4b\x3d\x2d\x39\x4f\xdd\xe6\x66\x02\xaf\xae\xd9\x15\x69\x99\xd6\x2b\x29\xfd\xaf\x12\xf3\x35\x43\xbb\x36\x6d\xd0\x9f\x2c\x54\x16\x59\x0e\x44\x24\x91\xea\xf2\xd5\xce\xa7\xd1\xf6\x78\xbd\x92\x03\xd0\xcf\xbc\x8a\xf8\x19\x10\xf3\x33\x23\x4a\xcf\x60\x6e\xbb\xc0\x70\x11\x0d\xfe\x12\xe2\x35\x85\xb5\x65\x75\xe0\x81\x5a\x74\xd8\xd1\xd6\x5a\x78\xe8\x25\x83\x67\xc6\xf4\xf2\x3e\x5e\x3a\x31\x97\x8e\x89\xfe\x9d\x37\xf5\x4a\xda\x93\x19\x2e\x64\x6a\xc5\x8f\x94\x19\xf5\x27\xb7\x95\x75\x4f\x39\x03\x79\x00\xbb\x1d\x18\x0a\x34\x97\xa3\x02\x14\xa2\x56\xaf\xbf\xeb\x5c\x65\x5f\xd8\xab\xb7\x03\x4e\xeb\x4e\xc0\x8f\xdb\x74\x5d\x83\xed\x8e\xbb\x94\x58\x59\x16\x60\xf8\xff\x81\xc3\xcb\xeb\xe8\x30\xd1\x27\x38\xcb\x0e\xa7\x8e\xa8\xb3\xfe\xcf\x39\x2a\x6d\xeb\xb9\x44\x0f\xd4\xee\x76\x85\x16\xf4\x80\x76\x93\xcc\xee\xba\x98\xc5\x04\x11\x40\x0e\x84\xd4\x88\x02\x62\x24\x9f\xfb\x82\x46\x67\x1e\x73\x39\x65\xf5\x8e\x14\xff\xcd\x55\xb4\x9c\x03\x92\x9e\x4b\xd0\x7c\xd3\x4b\x3b\x28\xb5\x4b\x23\x78\xa0\x1a\xbc\xd3\x3d\xc3\x06\xef\x05\xba\xe2\x1a\x0c\xde\x28\xaf\x7b\x5d\x79\x45\x05\x18\x12\x01\x0c\x5b\x9e\x7d\x64\xd9\x6a\x1c\x1d\x66\x6c\x6c\xd9\x0b\x54\xda\xbe\x3e\xcb\x8c\xcd\x5d\x63\x27\x59\x2b\x96\x6a\xc5\x7d\xbc\xb8\x4f\xf2\xcb\x11\xa5\x87\x5c\x0b\x76\xc5\x17\x18\x0a\x76\x81\x77\xb3\xec\xbe\x70\xb1\x03\x90\x1d\x16\x41\xa8\x81\x90\x07\x2a\xe0\xbc\xea\x74\x58\x92\x44\xc0\xc2\x6e\x1d\x6e\xbe\xa0\x2f\xe4\x9d\xc9\xe4\x49\x8e\x5e\x73\x4e\x53\x63\xee\x14\x9d\x2f\xe1\xb7\xc7\xe8\x43\xb5\x39\x92\x1b\xe7\x67\x7a\x76\xc6\x03\x1e\x19\xda\x3c\x86\xdc\xe7\x82\xea\x98\x2f\xae\x63\xf1\x65\x5b\xaf\x7a\x11\xe2\x24\xc8\x69\x8a\x02\x20\xf7\xb2\x1b\x02\x01\xaa\x20\xec\x99\x45\x5b\x3b\xe8\xec\x04\x65\x5e\xe3\xac\xf7\x10\xe0\xb4\xb3\x07\xfa\xc2\x29\xfe\x7b\x1c\x67\x0f\x3d\xd4\xde\xe9\xd6\x94\xba\xa4\xc9\xad\x1b\x4c\x92\xaf\x5c\x60\x54\x10\x95\x43\xbc\xd0\xdf\xe7\x4d\xad\x78\x8c\x97\x4e\xf4\xb7\x07\xce\x09\xbc\xa3\xff\xd0\x0b\xce\xba\xd7\xf4\x5c\x82\x8c\x03\x07\xb9\xda\x59\xda\xe9\xdc\x1c\x16\xf4\xa3\xb2\x5e\x5e\x73\x6f\x7d\xde\xd9\x28\x18\x70\xcf\x00\x24\xfd\x35\x39\x44\x78\xf4\x57\x20\xb8\x38\xa1\xcf\x27\xe9\xd1\xe9\xc7\xa7\xf7\x94\x68\xc1\x40\xf3\x73\xf6\x6c\xd4\xe1\xf9\xb9\x8b\x22\xe8\x1e\x86\x5b\x9f\x2e\x7d\x7c\xda\xae\x24\xd0\xd4\xba\x19\x4f\x9b\x1b\x67\xf5\x4a\xea\xfb\xa7\x4f\x1e\x5f\xd5\x4d\xc9\x3e\x83\xd7\x2b\xa8\x92\x21\x97\x90\xe5\x4c\xc7\x64\x3d\x7d\x86\x0e\x72\x34\x50\x9f\x6f\xfa\xa1\xc4\x83\x6f\x79\x81\x7c\x95\x77\x2a\x1f\xd1\x44\xb1\x8b\x72\x7b\x16\x1e\x20\xbf\xd1\x81\xff\x02\x00\x00\xff\xff\x6c\x5d\xf3\xfd\xd8\x10\x00\x00")
+
+func yaoDataKbProvidersConverterWhisperZhCnJsonBytes() ([]byte, error) {
+ return bindataRead(
+ _yaoDataKbProvidersConverterWhisperZhCnJson,
+ "yao/data/kb/providers/converter/whisper/zh-cn.json",
+ )
+}
+
+func yaoDataKbProvidersConverterWhisperZhCnJson() (*asset, error) {
+ bytes, err := yaoDataKbProvidersConverterWhisperZhCnJsonBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "yao/data/kb/providers/converter/whisper/zh-cn.json", size: 4312, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _yaoDataKbProvidersEmbeddingFastembedEnJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x59\x5b\x4f\x1b\x39\x14\x7e\xe7\x57\x1c\xe5\x09\x24\x92\x90\x70\x29\xad\xd4\x07\x08\x6c\x17\x2d\xb0\xa8\x29\x7d\x59\x55\xc8\xf1\x9c\x64\x2c\x3c\xf6\xd4\x97\x40\x58\xf5\xbf\xaf\xec\xb9\x87\x19\x26\x43\xb3\x0f\xad\x9a\x19\x9f\xe3\xef\x7c\x73\x2e\x9f\xdd\x7f\x77\x00\x7a\x2c\xe8\x7d\x82\xde\xc3\xc3\x8a\xc8\xc1\x9c\x68\x83\xd1\x0c\x83\xde\xbe\x7b\x65\x98\xe1\xe8\xde\xfe\x41\xb4\xb9\x74\xcf\xc1\xff\x1d\x30\xb1\xd0\xc9\x92\x00\x35\x55\x2c\x36\x4c\x8a\xea\x42\x2e\x29\xe1\x40\x44\x00\x0a\x23\x69\x10\x30\xb3\x84\x48\x06\xc8\x35\xcc\xa5\x82\x90\x2d\xc2\x7e\x8c\x6a\x2e\x55\x44\x04\x45\x30\xf8\x6c\x60\x89\xd4\x48\xc5\x5e\x88\x73\x3b\x80\xa9\x8d\x63\xa9\x8c\x86\x25\x51\x4c\x5a\x0d\x32\x46\xd1\xd7\xd2\x2a\x8a\x99\xb3\x27\x66\x42\xa0\x52\xcc\xd9\xc2\x2a\x32\xe3\x08\xa1\xd4\xc6\xed\x26\x3d\x38\x3d\x48\xf0\x2a\xfc\x69\x99\x42\x17\xf3\x3f\x3d\x2a\x85\xf0\x5b\xf5\x7e\xf8\x97\xb1\x92\x31\x2a\xc3\x50\xf7\x3e\x81\x23\x07\xa0\xb4\x26\x7b\xe4\x88\x59\xc5\x9e\x17\x6d\x14\x13\x0b\xef\x39\x79\xfe\x9a\xb0\x49\x6e\x9f\xaf\x6a\xe4\x2c\xdf\xcb\x73\xb3\x46\x18\x10\x4a\x51\xa7\x71\xa4\x7e\xe6\xc4\x72\xe3\x7c\x14\x0f\xa9\x8c\x62\x29\x50\xf8\xc7\x53\xe4\x48\x4d\xf1\x12\x85\x8d\x5c\xe4\xe9\x6f\xc8\x23\xf2\x6f\x17\x4a\xda\xf8\x9a\xcc\x90\x3b\xdb\x6b\xff\x01\x6f\x3c\xbd\xb9\x07\xbf\x2e\x65\xb4\xe2\x68\xdd\x99\x5f\xc8\x33\x5f\xe7\x67\x67\x57\xc3\xd9\x02\xfb\x3a\x22\x9c\xf7\x51\xf4\x97\xa3\xc1\x71\xc5\xab\x37\x58\x12\x6e\x3d\x7f\x79\x22\x0e\x36\xb0\x5a\xe3\xf3\xf0\xf4\x08\x02\x16\xa1\xd0\x0e\xe5\x3e\x5c\x8a\x05\x67\x3a\xf4\x89\x10\xb1\x17\x0c\xf6\xc1\xb9\x07\x26\xe6\xa8\x50\x50\xac\xf3\x98\x31\x6b\x94\xc5\xca\xdb\x5f\xfb\x5d\x63\x9e\x11\x8d\x9d\x43\x7e\xdb\x68\x2d\xe2\x0f\x27\xa7\x6d\x11\xcf\x08\x77\xf5\x15\x40\xa9\xd8\x7a\xbf\x19\x18\x27\x6a\xd1\x3d\xb2\x16\xab\xb5\xd0\x46\x07\xe3\xd6\xaf\xe9\x9a\x08\x6a\x03\x3f\x2d\xe1\xcc\xac\xd6\xc2\x2a\xfd\xfa\xb1\x53\x13\xec\x1b\x25\x70\x63\xb9\x61\x9c\x89\x85\xfd\xbf\x2a\xe1\x25\x7c\x4f\x25\x34\x5a\xb5\x54\xc2\x24\x64\x02\x35\x16\xdc\xbd\x33\x03\x34\x0a\xe3\x0a\xa7\x6f\x14\x11\xda\xa5\x13\x2a\x3d\x74\xc8\x6e\x98\x60\xd7\x37\xfd\xeb\x93\xfe\x72\xbc\x51\x50\xed\x46\x2d\x31\x45\xe5\x6f\xa4\x93\x49\xb1\xf5\xb0\xa2\x58\xa0\x49\x6a\xb2\x43\x5c\x2d\x56\x2d\x45\x5c\x0e\x2c\xc9\xf1\xed\x27\xf8\xd7\x64\x34\x9f\xdd\x5d\xfd\x6e\x5e\x4f\xac\x36\x32\x72\x9e\xe0\x52\x04\xb1\x64\xc2\x6c\xc4\x13\xf5\x76\xad\xe4\xa4\x53\x14\x8c\x84\xc4\x02\x8a\xa9\xe9\xf6\xc4\x6c\xcf\x4d\xa8\x49\xff\xf5\x23\x1f\x8b\x4f\x2c\x30\xa1\xc7\x65\x39\x2f\xa6\xa5\x54\x01\xba\xb1\x3f\xda\x29\x31\xda\xf3\xc3\xb8\x93\x18\xf0\x9d\x03\x6e\x49\x84\xb0\xfb\xb7\x0f\x89\xf0\xbd\x46\x39\x30\x8d\x91\xb2\x39\xa3\xe9\xd4\x17\xce\xcc\x48\x90\x4b\x54\x8a\x05\x58\x12\x09\xe9\x94\xea\xa4\x08\xae\x44\x6c\x4b\x82\x20\xe6\x84\x62\x28\x79\x12\x68\x0f\x07\x8b\xc1\x3e\xb4\x4c\xeb\x82\xae\x90\xf0\xf9\x6b\xba\xc6\x15\xba\x8a\x94\xae\xe3\x8c\x09\x83\x0b\x54\x35\xa4\xe5\x42\x13\x2e\x0a\x0f\x4d\x9c\xdd\xda\x68\x86\x0a\xe4\xbc\x54\x41\x5e\x43\x99\xb0\x2c\x3c\x13\x5d\x59\x2f\xa1\x0e\x4f\x8f\xb6\xa1\xa1\xf2\x82\x70\x7d\x6a\xf7\xfc\xcb\x25\x4c\x1d\x89\xd9\xb7\xda\xab\xd6\x59\x56\x10\xa5\xcd\x6b\x53\xc2\x10\x11\x10\x15\x14\xd1\xf9\xe0\xfc\xe7\x49\x05\x70\x6f\xcd\xbe\x56\xbf\x34\x35\x85\x1c\xb4\xeb\x41\x1e\xf4\x39\xd1\xd8\x82\xf9\xc3\xc9\xe9\x3b\x30\xbb\x6e\x98\x41\xde\x1c\x97\x57\x01\x1e\xd8\xb5\x53\x0f\x2d\xc8\xdc\xea\x77\x40\xf3\xc2\xa4\x3b\xb6\xe3\xd1\xb8\x1e\xc6\xf1\x68\xfc\x16\x8a\xb4\x63\xae\x7d\xd2\x4a\xf1\x77\x81\x31\x3e\x3e\xa9\x87\x31\x3e\x3e\x79\x0b\xc6\x57\x0c\xac\xd3\x85\x55\x1c\x11\x46\x52\xad\x00\xe7\x73\x46\x19\x0a\x5a\x9a\x39\x6f\xb4\xcf\xfa\x7e\x70\x58\xe9\x07\x54\x0a\x6a\x95\x4a\x8a\xab\x43\x3f\x98\xe4\x76\xf0\x15\x7f\x5a\xd4\x66\x93\x76\x50\xec\x56\x6a\x03\x2a\xb5\x77\x6d\x35\x56\xb2\xf1\x54\x35\x3a\xc8\x1f\x46\x4c\xb0\xc8\xd7\xfd\xa8\x78\x46\x9e\xb3\x67\x07\x07\x6f\x74\xdb\x04\xcd\xc6\xed\xf3\xa8\x42\x97\x3b\xc5\x76\x1a\x36\x6e\x1a\xfe\x29\xb5\xd9\x64\xd4\x94\x86\xb6\xdb\xc7\x7f\xf9\xf4\xb4\x5e\x8c\x57\x8d\x6a\xc9\x28\x6e\x71\xca\x84\xc6\xc4\xfa\xd3\x70\x48\x62\x36\xc0\x67\x12\xc5\x1c\x07\xb4\x24\x02\xda\x18\x3a\xae\x30\xf4\x88\xab\xce\x04\xfd\x85\xab\x4d\xf8\x71\x4b\x1f\x71\xe5\x79\x21\xd6\x84\x28\x0c\xa3\xfe\x52\x22\xb9\x6f\x48\xb9\xda\x3e\x43\x2b\x69\x55\x9f\xc4\xac\xff\x88\xab\x7e\x88\x0a\x37\xe6\xe6\xa4\xc2\xcd\x8c\x18\x1a\x3e\x68\xf6\x82\xdd\x8a\xed\xdc\xd9\xc1\xd4\xd9\xb5\xd7\x98\xc1\xe7\xa4\x96\x7c\x85\x01\x13\x80\x84\x86\xe0\xf7\xae\x1f\xb5\xe3\x0d\xeb\xaa\xd4\x41\x7f\xbf\xae\x3e\x54\x55\x1c\x79\x7e\xe0\x28\x16\xde\xa2\x03\x33\x37\xe4\x19\xbe\xc9\x47\x14\x70\x9d\x58\x37\xf1\x73\x93\x44\x01\xc6\x2f\x4e\xb6\xf2\x89\xc4\x1c\xf6\x84\xb4\x5a\x76\xca\x41\x17\xf4\x9c\x1c\xd5\xf0\x73\x3a\xfa\xb8\x45\x82\x4e\x2b\x04\x09\xa9\x22\xc2\x1b\x32\x67\x26\x25\x47\x22\x6a\xf8\xb9\xcd\xcc\xe0\x7b\x22\xb6\x9a\x13\x28\x5f\xf9\x4a\xa0\xb9\x64\xb2\x82\x99\x94\xb6\x5a\x9a\x9c\xb0\x69\x10\x6c\x4f\xcc\xd0\x70\xe3\xb0\x3f\x56\xc7\x13\xa1\x21\x3e\x04\xac\xdb\x75\x5f\xa2\xf0\x27\xce\x16\x2e\x98\xf2\x51\xac\x1a\x23\xcf\x57\xf8\xe3\x8c\x37\x0a\xe4\x93\xe0\x92\x04\x18\x64\x17\x9a\xbb\x18\xc5\x66\x05\x9f\x33\xad\x93\x2c\xdc\xdb\x62\x93\x19\xc6\xc4\x84\x43\x23\x87\x7e\xc7\xa1\xf7\xbf\x31\x6b\xa3\x83\xaa\xca\x47\xd7\x01\x3b\x71\x36\x91\x51\x6c\x0d\xc2\x45\x62\xda\x48\x96\x7f\xed\x33\x42\x63\xa2\x4d\x3c\xd9\xf9\xed\x5d\x3d\x23\x34\xb6\x5b\xb9\x13\x2d\x0e\xb8\x77\xf7\xf5\xfa\xaa\xb2\x55\x5d\x04\xf7\x1a\x61\x72\x77\x9f\x16\x7f\x8a\x1a\x76\x1d\x28\x62\xd8\x8c\x63\x32\x4c\x9c\x96\xd7\x2b\x77\x2e\xd6\x7b\xdb\x51\xf3\x93\xfb\x8b\x33\xd8\xfd\x72\x77\xdf\xa0\x93\x7b\xd4\x06\xa4\x15\xfa\xed\xf7\xab\x8b\xab\x33\xf8\x92\x46\xe0\x8f\xee\xa5\x40\x3a\x48\xd4\x9b\xbb\x29\xec\x9e\xc5\x31\x47\x98\x32\xce\xa8\x14\x4d\xc0\xa2\xf8\xd5\x81\xe6\x15\xae\x8a\x23\x0f\x8f\x50\x8a\x1c\x95\x1f\xd0\x1d\x60\x9d\x59\x23\x1b\x70\x90\x57\xaf\xd6\x15\x82\x35\x32\x22\x4e\x15\x70\xbe\x02\xed\x53\x0b\x66\xa8\x0d\x90\x25\x61\xdc\xff\x47\x44\x5a\x1b\xef\x17\xd0\xa3\xea\x05\x84\x09\x15\x92\xa0\xe3\x71\xda\x25\xe0\xb7\xd4\xb0\x7d\xa4\xbb\xd5\xe9\x36\x59\xe5\xed\xf6\x47\xf0\xd9\xa9\x20\x59\xdf\x83\xfa\xa3\x9a\xa9\xd5\xaf\x9b\xea\x87\x5b\x9c\x59\xa3\xf4\xb2\x61\xc7\xfd\xf9\xb5\xf3\x5f\x00\x00\x00\xff\xff\x33\x8e\x8c\xd0\xd1\x1a\x00\x00")
+
+func yaoDataKbProvidersEmbeddingFastembedEnJsonBytes() ([]byte, error) {
+ return bindataRead(
+ _yaoDataKbProvidersEmbeddingFastembedEnJson,
+ "yao/data/kb/providers/embedding/fastembed/en.json",
+ )
+}
+
+func yaoDataKbProvidersEmbeddingFastembedEnJson() (*asset, error) {
+ bytes, err := yaoDataKbProvidersEmbeddingFastembedEnJsonBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "yao/data/kb/providers/embedding/fastembed/en.json", size: 6865, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _yaoDataKbProvidersEmbeddingFastembedZhCnJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x58\x5d\x4f\xdb\x58\x1a\xbe\xe7\x57\x58\xb9\xea\x4a\x13\x42\xc2\x47\x99\x4a\x73\x41\x3b\xb3\x15\x12\x1d\x21\x21\xf6\x66\x55\x21\xe3\x1c\x88\x35\x8e\xed\xb5\x1d\xa6\xcc\x6a\x24\x97\x09\x84\x94\x40\x98\x0e\x30\x69\x88\x4a\x23\x41\x49\xcb\x92\xa4\x6a\x77\x97\x7c\x35\x3f\xa6\x39\xfe\xb8\xca\x5f\x18\x1d\x9f\x90\xd8\x60\x3b\x4e\x9b\x5e\x20\x91\xe3\xf3\xbe\x7e\x9e\xc7\xef\x7b\x9e\xd7\xfe\xf7\x08\x41\xf8\xe8\xb0\xef\x1e\xe1\x5b\x5a\x5a\x27\xb9\xd1\x15\x52\x94\x40\x74\x19\x84\x7d\xdf\xa0\x4b\x12\x2d\x31\x00\x5d\xfd\x3b\x29\x4a\x3f\xa0\x75\x02\xfe\x37\x05\x37\xcf\x94\x42\x1e\xbe\xdc\xc1\x9b\xc2\x40\xa4\x04\x9a\x97\x68\x8e\xb5\x6e\x55\x72\xff\x81\xb9\x32\x7c\x9e\xd2\x9a\x39\xb5\xb0\x63\x8e\x6c\xd7\x53\xea\x41\xa1\x55\xdd\xd3\x2f\x32\x8a\x7c\xae\xfd\xd6\x50\x8e\x12\x68\xff\xfe\xef\x7a\x22\x0d\x53\x47\x9f\xe4\x0d\xe5\xa0\xa4\xa4\x9e\xc2\xfd\xb8\x7a\xbe\x0b\xeb\xb2\x52\xdd\xc7\xb1\xf0\x79\x0a\xa6\x4b\xfa\xe6\xae\xda\x28\xaa\xd9\xb8\x92\xcc\xa8\xc5\xbc\x2e\x27\xf5\x7c\xe5\x93\xbc\x81\x31\x09\xe0\x5f\x31\x5a\x00\x88\xd9\x3f\x7d\x14\xc7\xb2\x80\x92\x38\xc1\xf7\xd8\xb8\xc8\x0b\x1c\x0f\x04\x89\x06\xa2\xef\x1e\x81\x24\x20\x08\xd3\x9e\xeb\x25\x44\x7f\x9d\x37\xd8\x8b\x92\x40\xb3\xab\x46\x66\xbc\x7e\x5b\x16\xad\xf9\x52\xd9\x3b\x83\x2f\x0a\xbd\x5d\x37\x74\xc1\x7c\xcd\x22\x68\xc5\xa6\xfe\x27\xa2\x40\xd8\xe4\xb9\xa6\xd2\x49\xb5\x42\xc6\x18\x09\xa5\xe9\x2d\x52\x5c\x94\xe7\x58\xc0\x1a\xcb\x0b\x80\x01\x94\xd4\xbb\x08\xd8\x58\x14\x91\xef\xfc\x26\xba\xa4\x8c\xab\xab\x02\x17\xe3\xe7\xc8\x65\xc0\xa0\x58\xfc\x9c\x4c\x8f\xb4\xbb\x8f\x33\xd0\x8b\x96\x44\x37\x93\x19\x1b\x99\xeb\x5c\xf7\x67\x66\x66\x03\xcb\xab\xc0\x2f\x46\x49\x86\xf1\x03\xd6\xbf\x16\x1c\x9d\xb4\x64\x35\x02\xd6\x48\x26\x66\x48\xd8\xad\xb8\x51\x0f\x51\x37\x24\x1d\x9f\x9e\x20\xd4\xda\x07\x58\x7d\xdd\xae\xa7\xb4\x9d\x77\x5a\xe9\xb2\x55\xcf\xc0\xd4\x51\xbb\x9e\x82\xcd\x0b\x5d\x3e\x51\xf6\x0a\xea\xfe\x96\x5d\xa2\x6b\x41\x25\x21\x06\x2c\x57\x7f\xfd\x66\x50\xaa\xcb\xa4\x08\x06\x66\xea\x1e\x74\x83\xe8\xdd\xa9\x69\x67\xa2\x95\xf7\x5a\x3e\x8f\x9b\xc8\xf7\x85\x4c\x18\x52\x58\x1d\x9c\x4a\x9f\xa8\x1b\x5c\x82\x63\x21\xe7\xa7\xa6\xe4\x64\xfd\x22\xa3\x7d\x28\xe8\x89\xf4\x0d\x32\xa6\x5f\x8f\x47\x6c\x28\xba\x14\x38\x3c\xcd\x6a\xa5\x4b\xad\x20\x7f\x95\x1a\xff\x25\xf2\x39\x35\xee\x18\xe5\x56\xe3\xad\xab\x4b\xe5\x28\x81\xd5\xfa\xcc\x67\x2d\x02\x56\x02\x2c\x05\xfc\x92\x40\xb2\xe2\x0a\x27\x44\x81\x20\x06\x10\xa2\x47\x34\x4b\xcf\x3d\xf2\xcf\x4d\xf9\xd7\x42\x9e\xc8\xf4\x0f\x72\xe3\xd2\x7b\x28\xc6\x39\x3f\x74\x3a\x51\x9e\x05\x12\x6e\xb3\x01\xf8\xf4\x89\x72\xeb\xcb\x2e\xa1\x76\x3d\xf5\x15\x8a\x18\x9b\x28\x31\x33\x3f\xfb\xa5\xf5\xab\x25\xde\xc2\x62\xb6\x55\x49\xa2\x64\x84\x7a\x51\x52\x37\x2a\x9e\x04\xa2\x62\xa2\xc4\x45\xfb\xaa\xd2\xf1\xb0\xed\x72\xef\x46\x3d\x83\x33\xdd\xd2\x8b\x34\x9d\xff\x1e\x77\x8d\xed\x67\x3a\x2c\x45\x0c\x58\x31\x86\xe9\xf9\x1d\x27\x84\x01\xf2\xee\xe0\x88\x49\x51\x5f\x94\x0b\x1b\x94\xbd\x3b\x7a\x67\xc4\xd8\xdf\x55\xcf\xcb\xed\xfa\x36\x1a\x34\xe4\x64\xbb\x9e\x74\xb4\x75\xed\xf5\x96\x7a\x7c\xd4\xb5\x6d\xbd\x96\xd1\x8a\xa7\x50\xae\xab\xd9\xb8\x9a\xac\xc0\x62\xd6\x9c\x71\x40\x53\x9f\x65\xf9\x98\xc9\xd3\x79\x86\xa4\x40\x84\x63\x30\x53\x5f\xeb\xe3\x0e\x7c\xbd\xd1\xae\x67\xfb\x78\x6e\x4f\xb2\x08\xc9\xac\xdc\x96\x2c\x64\x91\x2c\x4c\x47\x01\x2b\x76\x2a\xea\x96\x6e\x34\x2b\x81\x55\x20\xd8\x08\x87\x07\x1b\xdc\x0c\x8e\x62\xe1\x4d\x78\xc8\x43\x02\x19\xbb\x95\xc3\xb2\x9e\x48\x3b\x48\x33\x3e\x3d\x31\x8c\x81\xa7\x5b\xfb\xe8\x08\xba\x73\xff\xe1\x0f\xc4\x02\xd2\x8a\xc0\x8f\xeb\x6f\xd6\x8e\xba\xae\x7c\xd3\xbd\x6d\xc9\x94\xd3\xf0\xe5\x0e\x7e\xbc\x68\x0e\x7d\x95\x80\x89\xad\x1b\x02\x10\x2e\xc3\x86\x53\xdb\x77\xb1\xa2\xd3\xc5\xc0\x7a\x9f\x14\x81\x3b\xd4\xbb\x53\xd3\xae\x50\x4f\xaa\x6a\x5e\xb6\x87\xea\x1d\x8f\xe1\xdc\x06\xa0\x39\xe4\xf8\xee\x88\xd0\x66\x57\x48\xa7\xe7\x8e\xea\x79\x87\x34\x19\x0c\xd9\xdf\x7e\x32\x18\x72\xbb\xbb\xb9\x35\xd5\x6c\xbc\x7b\x50\x0d\x0c\x20\x34\x39\x65\x0f\x20\x34\x39\xe5\x06\x40\x7f\xb1\xdb\x6a\xec\xe1\xdb\xb5\x6a\x67\x4a\x7a\x5f\xbf\xc8\xc0\xad\x4d\x78\x99\x51\x0e\xb7\xd5\xbd\x84\xcf\xcb\x19\x68\xdf\xd0\xe3\x96\x86\xa6\x38\x96\x8a\x09\x02\x6e\x9b\x41\x1a\xba\xf2\x3f\x98\xfe\x5d\x2b\xfd\x5f\x79\xb7\xa1\x1c\x96\x5d\x0e\xc0\xa7\xf0\x34\xae\xee\x6f\xa9\xd9\x38\x8e\xc1\x5d\xde\x8d\x74\x6e\xee\xe0\x58\x77\x31\x4a\xb3\x74\xd4\xe8\xe0\x60\x6f\x8d\x7c\x72\xbd\x36\x36\xe6\x72\x42\xfe\x18\x8b\x2e\x9b\x29\xf4\x91\x67\xc2\x22\x4f\x84\x13\x6d\x85\x71\x74\x08\x64\x60\xad\xab\x9a\x92\xab\x7a\xf3\x07\x6c\xdb\xe6\xb7\xe2\x5d\xf8\x2c\x6f\x2e\x3a\xa2\x97\x72\xa8\x06\x11\x91\x24\x5e\xbc\x17\x08\x90\x3c\x3d\x0a\x9e\x90\x51\x9e\x01\xa3\x94\xc9\xbf\xfb\x09\x35\x69\x11\xea\x27\xb0\x3e\xb0\x4e\xb0\xb4\xa5\x3f\x3f\xf3\xa4\x13\x7e\x3d\xc6\x6a\x61\x89\xb4\xea\x45\xab\xd6\xd0\xdf\xa6\xb4\xd2\x53\xf4\x92\xdc\x4b\x38\x54\x95\xd6\xb9\x98\xe0\x27\x79\xda\xff\x13\x58\xf7\x47\x80\x00\x3c\xeb\x33\x65\xd1\x67\x99\x94\xa8\xc8\x92\x48\xff\x02\x06\xeb\x33\x25\x59\xc1\xfd\x83\x4e\xc4\x72\xda\x51\x20\xa5\x94\x46\x5b\xb1\xcd\x66\xe3\xf8\x7b\x89\xbb\x77\x86\x3c\xb6\x97\xe9\xb0\xfc\xf2\xf6\xba\x6b\x9d\xc0\xc8\x27\x4b\x0c\x60\x57\x8d\x88\x41\x54\xc9\xc9\xf0\xf4\xbc\x55\x3b\x55\x93\x29\xfd\xb0\xe9\x36\x54\x68\x1f\xff\x80\x9b\x67\x58\x0f\x24\xcc\xad\x48\x07\x79\xcc\xac\x7b\xfa\x4c\x4d\xd8\x08\x34\x1d\xfc\x76\x88\x0a\x4d\x5b\x14\x62\x39\x21\x4a\x32\x0e\x65\xb3\xcc\x71\x0c\x20\x59\x1b\x81\xb4\xf3\xb8\x96\xfa\x0d\xa6\x8e\xf0\x34\xe5\x3c\x72\x95\xb7\xcc\x53\x57\x37\xac\x75\x55\x85\xbb\x87\xad\xc6\xae\xab\x46\x68\x60\x71\x98\xbf\x7e\xa6\x25\x2a\xe2\x99\xf3\xb7\x56\x4f\x22\xa9\x08\x58\x0a\xd3\x83\x7d\x6d\xeb\xd8\x75\xfd\x0f\x78\x99\x51\x8f\x8b\xb0\x71\xe8\x7c\x9a\x18\x9b\x5a\x57\x3b\x5a\xa3\xd1\x75\x79\x1c\xd3\xae\x6f\xab\x6f\xaa\xc4\x77\x9d\xf1\x05\xef\x6c\xd7\x93\x43\x3d\x54\x02\x3c\x29\x45\x02\x12\x17\x30\xde\x40\x02\x06\x5f\xcf\x5a\x05\xc7\xac\x13\x39\x58\xa3\x29\xdb\xea\x70\x54\x4a\x2b\xe6\xd5\xe2\x9f\x5a\xf1\x23\x3c\x4d\xf4\x39\x71\xb1\x3a\xf8\x3b\x19\x32\x25\x23\xc6\x49\x0b\x8a\x8f\x0d\xe5\xfb\x63\x77\x7c\x7a\x30\xbf\x68\x3f\x3e\x59\x6e\x65\x87\xbe\xd5\x68\xaa\x07\x05\xe2\xc1\xfc\x22\xa1\x35\x8f\xb5\x7c\x0a\x53\x40\x5e\xb3\x59\x87\xc5\x8a\x92\x94\x95\x5c\x52\x7d\x5f\x53\x6b\x27\x66\xdf\xb1\x29\x70\xef\xd3\xde\x83\xc5\xef\x67\x88\x3b\x0f\xe7\x17\x1d\x86\x5e\x1f\x15\x0b\x93\x5e\x60\xff\xf8\x8f\xd9\xef\x67\x67\x88\x87\x3d\xf4\xc7\x1f\x60\xf3\xa2\xf3\xb9\xd2\x3b\xa0\x47\xf3\x0b\xc4\x9d\x19\x9e\x67\x00\xb1\x40\x33\x34\xc5\xb1\x4e\xc8\xa2\xbc\xe8\x05\x98\x25\x97\x81\x0f\x3e\x7b\xa5\xcb\x27\x03\x60\x42\x73\xcd\xb3\x82\x03\x0c\x32\x26\x71\xae\x38\x70\xb4\x2e\x27\x95\x9d\x37\x4a\x4e\x6e\x35\xde\xc3\x74\x49\x3d\x28\x74\x8a\xf9\xf3\xa7\xe2\xa0\xf5\xd3\x80\x14\x11\x00\x19\x1e\xf0\x25\x17\x55\x9b\x5a\x6d\xa2\x11\xc5\x7d\x22\xc6\x6a\xa2\xa9\xc5\x12\xd2\xae\x6f\xfb\x83\xc4\x77\x04\x26\xe9\x7c\xe8\xf8\x83\x36\xce\xe4\xb7\xb3\xee\xf1\x21\xfa\x52\xb0\xf3\x25\x60\x04\xfd\xfd\x3a\xf2\x57\x00\x00\x00\xff\xff\x03\x31\x70\xdc\x1d\x1a\x00\x00")
+
+func yaoDataKbProvidersEmbeddingFastembedZhCnJsonBytes() ([]byte, error) {
+ return bindataRead(
+ _yaoDataKbProvidersEmbeddingFastembedZhCnJson,
+ "yao/data/kb/providers/embedding/fastembed/zh-cn.json",
+ )
+}
+
+func yaoDataKbProvidersEmbeddingFastembedZhCnJson() (*asset, error) {
+ bytes, err := yaoDataKbProvidersEmbeddingFastembedZhCnJsonBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "yao/data/kb/providers/embedding/fastembed/zh-cn.json", size: 6685, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _yaoDataKbProvidersEmbeddingOpenaiEnJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x58\xdf\x6f\xdb\x36\x10\x7e\xcf\x5f\x71\xd0\xcb\x52\x20\x0e\xfc\x23\x4e\xbb\xbe\x65\xe9\x06\x04\x48\xd3\x22\xe9\xf6\x32\x04\x01\x4d\x9d\x2c\x62\x14\xa9\x90\x94\x13\x77\xe8\xff\x3e\x90\xfa\x2d\x53\xb6\x94\x7a\x0f\x05\x6a\xf2\xee\x78\xdf\xc7\xfb\xee\xa8\xfc\x7b\x02\x10\xb0\x30\xf8\x08\xc1\xd3\xd3\x96\xc8\x73\x99\xa2\x20\x2c\x38\xb3\xeb\x86\x19\x8e\x76\xeb\x4b\x8a\xe2\xea\x06\x7e\x4f\x56\x18\x86\x4c\xac\x75\xbe\x1f\xa2\xa6\x8a\xa5\x86\x49\x51\x5b\xfd\xa2\xc1\xe0\xab\x01\x2c\x8d\x21\x91\x21\x72\x0d\x91\x54\x40\xa5\xd8\xa0\x32\x76\xd5\x19\x31\x61\x24\xc4\x6c\x1d\x4f\x42\x96\xa0\xd0\x4c\x0a\xc2\x61\x83\xd4\x48\xa5\xcf\xe1\x21\x4b\x53\xa9\x8c\x86\x0d\x51\x4c\x66\x7a\x37\xe8\x0b\x33\xb1\x8d\x1a\xb1\x75\xa6\xc8\x8a\x23\x54\x81\x34\x10\x11\xda\x3d\x9a\x29\x85\xc2\x40\xaa\x24\x45\xad\x99\x58\x9f\xe7\xf9\x2b\x7c\xce\x98\x42\x8b\xfe\xef\x80\x4a\x21\xdc\xb9\xc1\xa3\xdb\x4c\x95\x4c\x6d\xaa\xa8\x83\x8f\x60\x69\x02\x68\xd8\x94\x4b\x96\xa5\x6d\xea\x48\xd2\x46\x31\xb1\x76\x91\xf3\xf5\x0e\x7b\xd7\x95\x73\x65\xe2\x25\x10\xaa\x53\x1c\x65\x35\xe4\xab\xaf\x37\x40\xa8\x85\x70\xde\x0c\x11\x91\x8c\x1b\xeb\x5e\x2f\x52\x99\xa4\x52\xa0\x70\xcb\x0f\xc8\x91\x9a\x7a\x13\x45\x96\x58\xc4\xc5\x6f\xa8\x90\xb8\xdd\xb5\x92\x59\x7a\x4b\x56\xc8\x1b\x19\x7d\x76\x64\x57\x21\x9c\xa1\x74\x69\xeb\x56\xa4\x6e\x34\x67\xc8\xcb\x60\xf6\xc6\x27\x15\x9c\xc9\x62\xa2\x13\xc2\x79\x2b\xaa\x73\xd8\x10\x9e\x39\xe2\xf2\x5a\x3c\x1f\xea\xd7\x61\xf3\x96\x18\xd4\x06\x9c\x71\xb7\x70\xce\x60\xb6\x5c\x5c\x36\x6a\xe5\x0c\xa8\xd4\x66\x82\x51\x84\xd4\xb0\x0d\xfa\xa2\x97\x44\x1b\x95\x61\x6b\xf7\xc7\xd9\x5b\x19\xe0\x44\xad\x3d\x67\x1d\x64\xa0\xc7\xcf\xcf\x80\x33\xde\x65\x60\x31\x7d\x3f\x6f\x31\x60\x75\x68\xed\x9f\x33\xc2\x99\xd9\x06\x47\xc1\x48\x42\x32\x99\x4e\xe7\xa3\x31\xf6\xfa\x75\x30\x7e\x55\xb8\x71\xad\x61\x8d\x02\x15\xb1\xcb\xbd\x57\xac\x90\x33\xdb\x23\x3a\xc8\x1a\xbf\x1e\x4f\x3c\x78\xf7\xe8\xe3\xea\x7b\xa6\x10\x72\x95\xfc\xac\x3c\xf2\x58\xa3\x45\x42\xac\xdb\x5b\x35\x92\x9f\x19\x4b\x6d\x30\x3c\xa8\x91\x37\x16\x44\x0f\xae\x43\xa5\xdf\x83\x6b\x58\xe5\xb7\x70\x0d\xab\xff\x41\x45\x51\xfc\xef\xb1\x6a\xa6\x2f\x2c\x34\xb1\x3d\x31\xca\x1a\x74\x07\x52\x85\x68\x87\xc4\xec\xa4\x41\x55\xe0\x0e\x1e\x35\x3a\x5c\xe3\x85\x3b\x92\x20\x9c\x7e\x71\xe8\x08\x7f\xd7\x3b\x3f\x1e\x52\xa4\x2c\x62\x34\x47\x08\xc2\xba\x19\x09\x72\x83\x4a\xb1\x10\x1b\x83\xa5\x68\x66\xff\xe3\x1c\xa9\xae\xff\x4f\x8d\xf5\xe8\x83\x4f\xc5\x31\x2d\xad\x54\x77\xde\x5e\xee\xa0\xb3\x81\x4c\x8c\x65\xee\x05\xc8\x48\xc9\xc4\x2d\x6b\x97\x1e\x86\x35\xca\x6e\x34\x6f\xff\xee\xd3\xf9\x98\xa9\x55\x03\x18\x62\xdc\x81\x75\x68\x10\xfd\x44\xa6\xbb\x5a\xd9\x93\xa9\xc7\xb8\x93\xe9\xf0\x81\x31\x36\x55\x5f\xb3\xef\x4d\xd5\x6b\x7c\x88\xd4\x74\x77\x4c\x04\x43\x64\x1d\x13\x1e\xed\xca\x7a\xde\x92\x75\xa3\x87\x78\xb4\xcd\x84\xc1\x35\x2a\x8f\xb8\xab\xe7\x34\x7c\xaa\x23\xf4\x69\xfb\x2e\x4b\x56\xa8\x40\x46\xcd\x07\xae\x7d\x1f\xda\xda\xaf\x7b\x5b\xf9\x74\xf6\x09\xdb\x92\x72\x54\x69\x3b\x96\x4f\xfd\x35\x5f\xca\xf4\x9d\xff\x52\x9b\xb9\xf8\xe0\x3e\x18\x22\x42\xa2\xc2\x1a\x6d\x0e\x76\x90\xbe\xde\x26\x74\x57\xde\xbb\x68\xf2\xe9\xb1\x1f\x8d\x75\xdd\x87\xe6\x8f\xcc\x12\xb2\x1f\x49\xae\xbf\xe1\xe9\xce\xa6\xf3\x8b\x1e\x6e\xa7\xf3\x8b\x7d\xd9\xdc\x63\x98\x51\xec\x52\xeb\x98\x44\x05\xda\x48\x45\x46\x65\xb2\x9c\xf5\x28\x77\x39\xdb\xcb\xca\xb5\x4c\x52\x42\x4d\x27\x8f\x04\x13\xa9\xb6\x80\x51\xc4\x28\x43\x41\xc7\xb4\x95\xf9\xf2\xd2\x9f\xc9\x7c\xb9\xb7\xda\x3e\x33\xc1\x12\xd2\xbd\xa2\x15\xd1\x8c\x82\x66\x09\xe3\x44\xb5\xfb\xdb\xd8\x86\xb1\x68\x35\x8c\xfa\x9b\x74\x5c\xc3\xb8\xae\xbf\x65\xef\xf1\x39\x43\x6d\x86\xf4\x8b\xc6\x17\x70\xdd\x27\x54\xe1\x6f\xdf\x07\xc5\x77\xb1\xbf\x67\x4c\xab\xc5\xc4\x92\xe4\xfa\xc2\xac\x5e\x23\xaf\xe5\xda\x74\xea\xef\x2d\x37\x22\xcd\x4c\x9e\x4d\x30\x94\xae\x8b\x16\x5d\x2b\x62\x68\xfc\xa4\xd9\x77\x1c\x47\xd7\x6f\xd6\x0f\x1e\xac\xdf\x61\x96\xac\x1e\x1d\x1b\x8e\x23\x60\x02\x90\xd0\xd8\x7d\x73\x17\x5c\xf5\xf0\x33\x94\xa0\xf9\xf4\xe2\xc3\xf1\x18\x5a\xb6\x18\x52\x68\xd4\xf6\x89\x18\x83\x49\x6a\x46\x4e\xa1\x7b\xeb\x0b\x57\xa5\xef\x61\xa6\xdc\x61\x50\x1e\xe6\x94\x12\x11\xc6\x31\xac\x8a\xca\xcb\xd4\xc2\xc3\xd3\xd4\x5b\x48\xc7\x63\xe9\xb2\xc5\x92\x61\x09\xca\x6c\xa4\xe6\xbe\xe5\x4e\x70\xaa\x91\x4a\x11\xea\xfe\xd7\x77\x21\x49\x28\x8e\xb1\x25\x54\xf8\xf8\xf9\xf0\x15\xce\xd2\x43\xc8\xe2\x98\xca\x7a\xdf\x62\x44\x48\x95\x10\xde\x23\xac\x95\x94\x1c\x89\xf0\x70\x72\x57\xba\xc1\x5f\xf9\x73\xa3\xbf\x6a\x2a\xcb\x9d\x27\x8a\xd5\x5a\x26\x98\x01\x8e\x62\x6d\x62\x2f\x47\x76\x80\xf7\xbc\x58\x5e\x98\xa1\xf1\x60\xd8\x1f\xda\x85\xa0\x32\x41\x89\xc1\x27\x66\x19\x1c\x87\xfd\x5b\xe1\x0b\xb7\x52\xac\xc1\x5d\x41\x2f\xfa\xab\xcc\xc8\x84\x18\x46\x09\xe7\x5b\x28\x4f\x05\x77\x6a\xfe\xf7\x4f\x13\x13\x03\xf8\x4a\x11\x43\x4b\xc8\x3f\x28\x80\xb3\x84\xf5\x48\xe8\x68\x74\xfc\x9a\xd3\x71\x62\xff\xfd\x38\xf9\x2f\x00\x00\xff\xff\x80\x24\x61\x3c\x04\x16\x00\x00")
+
+func yaoDataKbProvidersEmbeddingOpenaiEnJsonBytes() ([]byte, error) {
+ return bindataRead(
+ _yaoDataKbProvidersEmbeddingOpenaiEnJson,
+ "yao/data/kb/providers/embedding/openai/en.json",
+ )
+}
+
+func yaoDataKbProvidersEmbeddingOpenaiEnJson() (*asset, error) {
+ bytes, err := yaoDataKbProvidersEmbeddingOpenaiEnJsonBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "yao/data/kb/providers/embedding/openai/en.json", size: 5636, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _yaoDataKbProvidersEmbeddingOpenaiZhCnJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x58\x5d\x6f\xda\x56\x18\xbe\xcf\xaf\xb0\xb8\xda\xa4\xa6\x22\x24\xb4\x5d\xef\x7a\x59\x69\xda\x26\xed\x72\xaa\x22\x07\x4e\x13\x4b\xfe\x60\xc6\x5e\x3f\xa6\x4a\x34\xe3\x23\xb4\x10\x48\x57\x12\x4a\x59\xd7\x6e\x49\x61\x4d\x42\xa8\x46\x29\x05\x32\x7e\x4c\x7d\x8e\xed\xab\xfc\x85\xe9\xf8\x80\xb1\x1d\xdb\xc1\x49\x7a\x51\xa9\x9c\x73\xde\xd7\xef\xf3\xf8\x79\xde\xf7\x38\xbf\xce\x51\x54\x88\x89\x87\x6e\x52\xa1\xe5\xe5\x07\xb4\x70\x55\x48\x00\x9e\x66\x42\x57\xf0\xba\xc4\x48\x2c\xc0\x5b\xdf\x27\x00\x7f\xeb\x36\x05\x3f\x14\x60\x66\x0f\x35\xdf\xc0\x57\x4f\xc9\x89\x38\x48\xc6\x44\x26\x21\x31\x02\x6f\x39\xa7\xd6\xd2\x68\x3b\x87\xea\x07\xd6\x80\x93\x61\x41\x7d\xde\x54\xfa\x9b\xb0\x9d\x25\xbb\xda\xf1\x01\x2a\xfe\xa5\xf4\xfa\xfa\x7e\x55\x1d\x74\x60\x79\x4b\xcf\x95\x3e\xa7\xd6\xd1\xf3\x23\x54\x78\x0c\xcb\x69\xb5\x51\x74\x64\x80\x99\x8f\xa8\x9e\x87\xa5\x23\x3d\x53\x54\x8f\x5b\x6a\x2d\x8d\x03\xfb\x6f\xe1\xb3\x02\xfc\xd4\x85\xa5\x2d\xb8\x9b\x56\xcb\xd9\xcf\xa9\x75\x52\x9f\x08\x7e\x96\x19\x11\x60\x7c\x3f\x85\x62\x02\xcf\x83\x98\x24\x88\xa1\x3b\xc6\x66\x42\x14\x12\x40\x94\x18\x90\x0c\xdd\xa4\x30\x11\x14\x65\x39\x33\x59\xc2\x3c\x3c\x48\x18\x34\x24\x25\x91\xe1\x57\x8d\xcc\x64\xdd\xc1\x8f\x36\x7a\x85\x36\xf7\xe0\x8b\xe6\xf4\x88\x83\xa0\x31\x03\x06\x28\xea\xd6\x0f\xb7\x29\xad\x35\xd2\x77\x30\x0e\xca\x99\x63\x82\x61\x9c\xe6\x2e\x2d\xb3\x12\x4e\x31\x5d\x8c\x09\x5c\x42\xe0\x01\x6f\x2c\xff\x08\x58\x10\x93\xa6\x9b\x80\x97\x39\x8c\x7a\xfc\x9b\x32\xd1\x18\xbb\xab\xa2\x20\x27\xbe\xa5\x57\x00\x6b\x29\xdf\xf2\x62\xcd\x83\x82\x51\x7a\xd2\x96\xc9\x99\xcd\x38\xc8\x4e\x92\x49\xe0\xbe\x34\x0f\xb8\x15\x10\x8f\x33\xfc\xea\xfc\xe2\x7c\x92\xa3\x59\xd6\x96\xd5\x08\xf8\x85\x66\x65\x83\x3c\xa2\xb8\xab\xb3\xc6\x39\x18\x45\xf5\x14\xda\x6e\xab\xb5\x34\x6c\x97\xe0\xab\xa7\x0e\xbd\x2c\x44\x17\xaf\x51\x44\x22\x58\x7f\x83\x12\xfa\xb0\xa9\xef\x57\x51\x65\xc3\x2d\xf1\x84\x63\x49\x94\x81\x6d\xf7\xd1\x95\xf3\x82\x67\x69\x71\x15\x9c\x03\xbc\x47\x9c\x27\xf8\xdd\xc6\x69\xf0\x8b\xe1\xeb\x91\x29\x78\x54\x4f\xe9\xfb\x55\xad\xd3\xd4\x73\xa5\xd0\xa5\xa0\xa3\xe3\xf4\x7c\x38\x1c\x09\x8c\xce\x33\xce\x81\x4e\xe9\x3d\x51\x7a\x29\x65\xf0\xb7\xc7\xeb\xc4\x6d\xe0\x8f\xd7\x6a\xf3\x5f\xd8\xaa\x39\x10\x59\x7e\xdd\x99\x73\xc1\xe9\x63\x86\x5b\x0f\x65\x11\x8c\xdd\x78\x51\x2f\x90\x5c\x81\x1d\x41\xe3\xb0\xf3\x1a\x82\x3c\x13\xe5\xab\x6a\xeb\x0d\x56\x86\xa7\x21\xce\x29\x02\x0f\x4c\x67\x09\xdd\x03\xd3\x6c\x3a\x77\x62\x3a\x43\xed\x33\x89\x61\xfc\xbf\x3b\x66\xc7\xbc\xc7\xc4\xa5\x35\xfc\xb4\xbb\xb2\x85\xe6\x90\x20\xc6\x01\x9e\x06\x0b\x73\x16\x9a\x42\x9c\x10\x37\xe8\x98\x7d\x46\x90\x42\x61\xb9\xa8\x36\xda\x27\xc3\x0d\x2c\xde\x54\xfe\x64\x98\xf7\x9c\x15\xda\xdb\xac\xfa\x72\xdb\x9c\x07\xfa\xa0\xaa\xb5\x76\x61\x6a\x88\x87\x5e\xfe\x13\x6c\xd5\xac\x19\xbf\xe8\xb4\x30\xdf\xbd\x72\x3c\x52\x9f\x37\x1d\x25\xd9\x4d\x62\xbe\x70\xfb\xb2\xd3\xda\x46\x22\x94\x4f\xe9\xa9\xbc\x99\x4e\xad\xa5\x49\x46\xb7\x41\xe4\xd1\x9d\xbd\x3c\x1d\x64\x1c\x4d\x6b\x9e\xe5\xb0\x03\x89\xcf\x84\xb9\x40\x91\xa7\x6d\xe1\x53\xa4\xcb\x61\x47\x91\xb3\x4c\x82\xa0\x45\xba\x75\x71\xcf\x22\x5d\x0f\xfb\x32\x69\x36\xff\xd0\x2c\x96\x5d\xa3\xd9\xbb\xa7\x2d\x1b\xb1\x59\x36\xce\x70\x80\x4f\x8e\x3b\xf8\x29\xdf\x32\xbc\x04\x56\x81\xe8\x62\x5c\xd2\x67\xc6\x9d\xc5\xcb\xac\xe4\x10\xb9\xc2\x9a\xb7\x52\x54\x69\x93\x1b\xad\x9b\x35\x31\xdc\x4b\x35\xa7\xc1\xdf\x57\xee\x12\xa6\x88\xb1\xbe\x76\x7f\x5b\xd6\x52\xdc\xc0\x79\xe4\xc4\xd7\xfc\xd7\x39\x98\xcb\x3a\xb8\xa1\x2e\xe2\x57\x43\xaa\xa7\x51\x18\x1a\xf7\x47\x81\x23\x03\xa1\x20\x39\xf1\x3c\x69\x15\x50\xa5\xe3\x9c\x1d\x67\x96\xba\x10\x8e\x2c\x79\x10\x1a\x8e\x2c\xf9\x95\xa2\xbf\x28\x2a\xc7\x9b\xe4\x81\xca\x60\x0f\xe6\x4a\xb0\xbd\x05\x0f\xab\x70\xbd\xa9\xfe\xd3\xd7\x77\x3a\x01\xaa\x88\x2e\x78\x78\x30\xba\xe0\x4b\x87\xda\x69\xc0\xdc\x96\x59\x03\x2a\x95\xf5\xfd\x2a\xcc\x66\xe0\x21\x6e\x5e\xea\x66\x2e\x40\x0d\x91\xe8\x35\xf7\x1a\x22\x51\x5f\x61\xa1\x7a\x0a\xb6\x4b\xa4\x86\xf1\xa7\xd1\x9f\x7d\x54\x3f\x50\x5f\xf6\x94\xe1\x10\xa5\x1a\x17\x30\xff\xa2\xcd\xfc\x31\x81\x8f\xc9\xa2\x48\x1c\x16\xc4\xfc\xc6\x57\xa5\x76\xf4\x11\xbd\x5f\x47\x95\xb6\xcf\xb0\x7e\x4c\x3e\x3d\xb1\x9c\xc8\x97\xa8\xd1\x11\xcc\x48\x9f\x46\x10\x36\x17\x39\x86\x67\x38\xc3\xec\x0b\xd3\x35\xfa\xfe\x64\x2d\x1c\x76\x6f\x18\xb7\xf9\x84\x2c\x7d\x27\x73\x2b\x56\x08\x67\xd0\xb3\x64\xa3\x67\x85\x96\x62\x6b\xcb\x49\xe6\x21\x08\x46\x0f\xca\x7f\x22\xb0\xf1\x95\xac\x5d\xf2\xa4\x07\x1d\x95\x94\xde\x3b\xf2\xc5\x6b\x30\xa2\xf4\x0e\xc7\x7d\x75\xf2\xb7\x82\x33\x38\x9a\x95\xa4\x48\x78\xe9\xc6\xe5\xb1\x14\xb5\xb1\x24\x02\x49\x7c\xb0\x4c\x4b\x12\xe0\x12\x52\xc0\x29\xa2\xe7\x8a\xda\x51\x05\x1d\xbc\xf1\x53\x11\xdc\x7d\xaf\x75\xc6\x9a\xc1\xb7\x21\x4b\x8c\x07\x31\x8b\x2e\xb4\x84\x5d\xb5\x73\x79\xa4\x5c\xb3\x91\x22\x31\x1c\x10\xe4\x80\xb6\xd2\xba\x19\xb4\xd3\x45\x3b\x5d\x7d\xa7\x73\x32\xdc\x50\x1b\xcf\x7c\x6f\xc2\x06\x21\xf6\x98\x82\x32\xd8\x53\x1b\xcf\x94\x5e\x1f\x16\x2b\xca\x71\xd1\x8b\x1f\x37\xdd\x44\x5d\x08\x5a\xbc\x4c\x73\x5d\xb7\x31\xc4\x0b\x22\x47\xb3\x1e\xde\x5a\x11\x04\x16\xd0\xbc\x1b\x47\x8d\xb4\x56\xf8\x0d\x16\xb6\xc9\xad\xc2\x5b\x34\xed\xac\xf5\xf6\x61\x86\x99\xd4\xe8\x95\x11\xec\xbf\xf5\x20\x08\x4f\x67\x8f\x6b\xc8\x3d\x46\x8a\xad\xcd\x8c\xf9\x86\x5d\x15\xa2\xcc\xc7\x68\x09\x2c\x33\x98\xbe\x60\xc0\xd1\xc6\x3b\xb4\x7d\xa8\x57\x46\xda\x7f\xbf\xc3\xcc\x9e\xb7\x2c\x72\xef\xe0\x93\x26\x39\xad\x75\x33\xda\x28\xa7\x0c\x76\xd5\x7c\x41\x7f\x51\x86\x1b\x5d\xb5\x96\x26\xf1\xa4\xbd\x7c\x69\xf8\xdf\x10\xf8\x73\xf8\xdf\xa3\xb9\xff\x03\x00\x00\xff\xff\x3a\x78\x28\x7e\x57\x15\x00\x00")
+
+func yaoDataKbProvidersEmbeddingOpenaiZhCnJsonBytes() ([]byte, error) {
+ return bindataRead(
+ _yaoDataKbProvidersEmbeddingOpenaiZhCnJson,
+ "yao/data/kb/providers/embedding/openai/zh-cn.json",
+ )
+}
+
+func yaoDataKbProvidersEmbeddingOpenaiZhCnJson() (*asset, error) {
+ bytes, err := yaoDataKbProvidersEmbeddingOpenaiZhCnJsonBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "yao/data/kb/providers/embedding/openai/zh-cn.json", size: 5463, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _yaoDataKbProvidersExtractionOpenaiEnJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x9a\x5b\x6f\x1b\xb9\x15\x80\xdf\xfd\x2b\x0e\xf4\x52\x2f\x20\x0b\xf2\x2d\xdb\x06\xe8\x83\x21\x3b\x81\xdb\x58\x72\x65\x6d\x8b\xb6\x08\x04\x9a\x73\x24\xb1\xe1\x90\x13\x92\xe3\x4b\x8a\xfd\xef\x05\xc9\xb9\x70\x46\x1c\x5d\xac\x6c\xba\x0f\x41\x6c\xf2\xf0\xf0\xf0\x23\xcf\x85\x1c\xff\xf7\x08\xa0\xc7\x92\xde\x7b\xe8\xcd\xe7\xaf\x44\x0e\x64\x86\x82\xb0\x5e\xdf\xb6\x1b\x66\x38\xda\xae\x49\x86\xe2\xea\x16\x6e\x84\x61\xe6\x15\x6e\x5e\x8c\x22\xd4\x30\x29\xbc\x58\x82\x9a\x2a\x96\xb9\x86\xf7\xd0\xbb\xba\x3d\xc9\xe4\x33\x2a\x4c\x00\xfd\x00\x22\x12\x50\xc8\x89\x95\xd0\x2b\x96\x01\x56\x1a\x20\xd7\x4c\x2c\xc1\x4f\xf0\x07\x0d\x9c\x88\x65\x4e\x96\x08\xa9\x4c\x90\xeb\x41\x39\x99\x06\x6d\x54\x4e\x4d\x6e\xd5\x32\xb1\x90\x2a\x75\xea\x60\xa1\x64\x0a\xb9\x08\x7a\x0d\xbe\x18\x78\x66\x66\x05\x54\x8a\x05\x5b\xe6\x8a\x3c\x72\x84\x4c\xc9\x34\x33\xda\x19\x63\xa4\xe4\x40\x09\xe7\x76\x6e\x4a\x32\xf2\xc8\x38\x33\x0c\xf5\xc0\xaf\x48\xe1\xd7\x9c\x29\xb4\x58\xfe\xdd\xa3\x52\x08\xa4\x46\xaa\xde\x67\xd7\x99\x29\x99\xa1\xb2\xd2\xbd\xf7\x60\xf9\x01\x04\x32\x65\x93\xc5\xf7\x9a\x39\x7a\xda\x28\x26\x96\x4e\xb3\x6f\x6f\x61\x1d\x55\x83\x2b\x91\x16\xd2\x42\xb0\x9a\x05\x16\x52\x85\x10\xaf\xee\x6f\x81\x50\x8a\xba\x58\x40\xa1\x63\x41\x72\x6e\xec\xf8\xba\x91\xca\x34\x93\x02\x85\x6b\x7e\x40\x8e\xd4\xd4\x9d\x28\xf2\xd4\x2e\xb9\xf8\x1d\xaa\xa5\xb8\xde\xa5\x92\x79\xf6\x89\x3c\x22\x0f\x4c\xba\x73\xdb\x54\xa9\x70\x82\xd2\xd9\xad\x1b\x9a\xda\xda\x9c\x20\x2f\x95\x7d\xbc\x9f\x9d\x5c\xc8\x86\x16\x27\xf0\x44\x78\xee\x48\xf9\x53\x39\x58\x66\x26\x2a\xd7\xc2\xf5\x89\x18\xd4\x06\xbc\x56\x7f\x92\xfa\x80\x2f\x14\x39\x47\x61\x1c\x3c\xcb\x81\xe3\x4b\x08\xd1\x10\xfd\x45\xc7\x74\x97\x18\x8d\xca\xb1\xd1\xfb\x6b\x7f\xaf\xf5\xc1\x1d\x13\x6c\xd7\x45\x9e\xa4\x51\xe1\xd6\x4a\x47\x52\x9b\x13\x5c\x2c\x90\x1a\xf6\x84\x10\xcc\xe3\x56\xf9\x48\x34\xa3\xc1\x1a\x7b\x07\x98\x0f\xb3\x5c\x3d\xee\xba\x47\x27\x26\x2e\xdc\x32\x3f\x50\xec\x3d\x16\xc5\x8a\x08\x8a\x09\x64\xa8\x9c\x8f\x0b\x8a\x07\x18\x7d\x3e\xb8\xdc\xc7\xec\xf3\xc1\xe5\x8e\x86\x7f\x20\xda\xb8\x48\x82\x54\x0a\x99\x32\x4a\xb8\x03\xae\x99\x3d\x56\x01\x71\xdd\xb2\x3e\xf8\xed\xf3\x51\x64\x4d\x1b\x3c\xee\xea\x5b\xae\xb0\x88\x94\x87\x3a\x9c\xd7\xb5\xd5\xed\x88\x15\xdb\xd5\xeb\xbc\xce\x95\xd4\x06\x93\x86\xef\xbd\x71\x03\x03\x1b\x77\x33\xf1\x0d\x16\x46\x0d\x8c\xef\x51\xf1\xd3\xe7\x2a\x5a\x3e\xb3\xc4\xac\xac\xda\x45\xce\x79\x1d\x44\xa5\x4a\xd0\xa6\x81\xd3\xa3\x60\xb5\x3d\x3f\xcf\x3e\xc9\xc1\x45\x56\x18\x93\x14\xe1\x78\xe2\x96\x40\xf8\x4f\x9d\x19\xe2\x21\x43\xca\x16\x8c\xfa\x05\x81\xb0\xc3\x8c\x04\xf9\x84\x4a\xb1\x04\x83\xd4\x51\xc4\xb3\xdf\x30\x51\x54\x3b\xf8\x8b\xc6\x3a\xb9\xc1\x75\x31\x4d\xe3\xe8\x56\xfb\xd8\x6c\x6e\xad\xce\x2a\x32\x2b\x2c\x6d\x2f\x16\xe9\x52\xbf\x6d\xd6\xce\x3c\x4c\xea\x55\xb6\xb5\x45\x43\x78\x97\xdb\x55\xf6\x47\x0e\x7e\x6d\x70\xac\x73\x7b\x1e\xea\xed\x3b\xfb\x7a\x1e\x68\x9b\x10\x91\xd8\x39\x4b\xec\x6b\x4e\x24\x3c\xb6\xcc\x89\x49\x6c\x88\xfa\x6f\x81\x12\x0f\xd3\x4d\x3b\x3a\x64\x22\x96\x54\x39\x62\xcd\x96\x6e\x8f\x5f\x11\xbe\x58\xf7\xf8\xb3\x86\xc7\xdb\x1a\xd3\x96\x98\x31\xa7\x7f\x94\x92\x23\x11\x11\xaf\xbf\x11\xae\x58\x9d\xd9\x02\x75\xe4\x0b\xd4\x4e\x9f\xb7\x5e\x11\xd6\xbd\x61\x51\x6b\x93\x51\x2a\x15\xda\xba\x9b\x39\x95\x75\x4e\x8a\xba\xbe\xf5\x8c\x0e\xe7\x7f\x66\x86\xae\x7a\xbb\x52\x38\x6f\x52\xc0\x34\x43\x45\xac\x85\x31\x10\x22\x4f\x1f\x51\x45\x38\xcc\x82\x71\x5d\xeb\x1f\x49\x61\x94\xe4\x1a\x14\x11\x89\x4c\x05\x6a\x0d\x4c\x84\x25\xdd\xf1\x70\x30\x84\x3f\x43\x82\x06\x95\xf5\x12\x6d\x18\xed\xc3\xa9\x6b\xa4\x0a\x89\x75\x87\x9f\xa2\x38\x86\x83\xd3\xaa\xd5\x8e\x4c\x5d\xc0\x1b\x0e\x86\x75\x2b\x79\x29\x5a\xcf\x82\xd6\x06\xb9\x5b\x91\xe5\x66\xdc\x5a\xe2\x16\x7c\x17\xcd\xb4\x41\x5e\xe6\x46\x7e\x41\xa1\x63\xf4\x98\x30\xb8\x8c\xe2\xbb\x23\x2f\x30\xf3\xe3\xba\xe8\xdd\x79\xfb\xc1\x6f\x01\xc8\x05\xf8\x89\x2c\x42\x1b\x54\x15\xea\x4c\x0a\x8d\x51\x3c\x17\xc3\xe1\x30\xc2\xe7\x74\x18\xe3\x73\x7e\x16\x4a\x1f\x4c\xe8\xb2\x41\x88\x4a\x41\x73\xa5\xbc\xbe\x3d\x08\x8d\xaa\x71\x30\xc5\xaf\x39\x6a\xd3\x8d\x6a\x5c\x21\xaa\x67\x0b\x8f\x99\x2a\x14\xd8\x8c\x9b\x29\xd9\x79\x0f\xbb\x8c\x21\x8b\x00\xbb\xfc\x8e\xb4\xde\x35\x68\x29\x34\xea\x75\x4e\x8c\x75\x4b\xb3\xe7\x99\x9a\xda\xb1\x70\x55\x8e\xdd\x0e\xcb\x4d\x06\xe5\x64\x2e\x24\x2d\x08\xe3\x98\x84\xf5\x71\x14\xd4\x79\xcc\xf7\x22\xa0\x4e\xbf\x23\xa8\x9f\x23\xa0\x12\xe4\xe4\x75\xaf\xb8\xe5\x21\x5d\xdb\x71\x70\xac\xed\xed\x20\xd1\xdd\x55\x9b\x97\x7b\x44\xf3\x8c\x28\xda\xbc\x98\x80\x42\x41\x94\xd1\xe9\x20\xe6\x81\x8d\xb8\x55\x71\x7a\x37\xfc\x9e\x21\xea\x8f\x0d\x52\xfe\x5d\x65\xaf\xd2\x76\x94\x6b\x23\xd3\xe0\x1d\x09\xee\xbd\x92\xce\x48\xef\x07\xf8\xa9\xfc\xe3\xc7\xf6\x97\xa5\x63\x59\x56\xcd\x7b\xd5\xba\x33\x7c\x31\x57\x0a\x49\xdd\x9d\x71\x42\x71\x25\xb9\x5f\x7d\xef\x9f\x32\x07\xa2\x10\x88\x4d\x35\x19\x2a\x03\xa4\x8e\x06\x62\xe9\x4d\x63\xa8\xd7\x8c\xd3\x45\xc5\x8a\x2f\xa6\x7a\xd7\x02\xc2\xb9\x15\xc2\x27\x62\x63\x4a\x38\xd4\xac\x90\xa9\x96\x02\x26\x80\x84\x39\xdf\xbf\x83\x0d\x06\x83\xc8\xe6\xc5\xaf\x25\x7f\x6a\x6c\x5e\x8d\x6b\x6e\x77\x2d\x1a\x11\xe4\xe3\x7f\x1a\xc5\x7f\x5d\xab\xd4\xac\x47\xe5\x4b\x5b\xf5\x2a\x18\xdd\xc6\x42\x0a\xe1\x79\x45\x0c\xb8\x19\x6d\xa0\xd8\x40\xcc\xc8\x12\x6d\xb0\xc4\xe0\x79\x6e\x41\xb8\xee\xa8\x5b\xc6\x68\xef\x79\x3b\x83\x09\x62\x49\xe4\x85\xcf\xd3\x2a\xec\x6c\xb4\x6e\x28\xeb\xa2\xb8\xfc\x2b\xaa\xd5\xb2\xa9\x32\x2d\x85\xed\x45\x2e\xa9\x01\x1d\x67\x28\x33\x8e\x7d\x70\x67\x52\xf7\x41\xaa\x25\x11\xec\x9b\x27\xd6\x07\x34\x74\x10\x1c\x77\xe8\xae\xf1\xd6\x79\xb5\xea\xbc\x0d\x91\x00\xd6\xef\xb9\xd0\x2c\xde\x7b\x8d\x5d\x3c\x8c\xd7\xb4\xa1\x6a\x17\x68\xcd\x23\x54\x86\xd7\x12\xe2\x8f\xc5\x73\x16\xc5\x63\xeb\x08\x6c\x66\xe0\x37\x90\x19\x95\x5a\x76\x81\xf2\x05\x5f\xa1\x9c\xb6\x8c\x2f\xe9\x8f\xa6\x71\x1e\xa5\xa1\xf3\x34\x25\xea\xcd\x8e\xf5\x11\x85\xbd\x2a\x20\x3c\x54\x7a\x36\x5e\xfa\x4a\xf1\x44\xd2\x3c\xb5\xa5\x5c\x35\x7f\x27\x8c\x46\x98\xf9\x6e\x34\x2e\xa2\x34\x7c\x6a\x5b\x8b\xc7\xb0\x21\xb5\xb6\x8e\x87\xcf\x8d\x33\xa7\x60\xf3\xbb\x40\x9a\x92\x13\x8d\x19\xb1\x3c\x12\xe0\x4c\x9b\x2a\x1e\xbf\x16\xf1\xd9\x48\x58\x48\x9a\x6b\xe8\x48\xa9\xd0\x95\x56\xd7\x31\xb9\x62\xa3\xd9\xdf\xca\xad\xf7\x37\xd3\x87\xc9\xb8\x0f\x93\xe9\xc7\xab\xf1\xed\xbf\xae\x66\xb7\xf6\xb7\x4f\x93\x51\xf1\xd3\xcd\xdf\x6f\xc6\xb3\x3e\xdc\x4f\x27\xd7\xbf\x8c\x66\x1d\xc0\x1b\xf1\x1d\xd6\xaf\x0e\x6d\xe0\x61\xb8\x38\x00\x7b\x18\xa7\x0e\x80\xdf\x28\x67\xfe\x0f\x5b\xf0\x8f\xc9\xf4\xaf\x0f\xf3\x0f\x93\x69\xc1\xfd\xe6\x7a\x7e\x3b\xee\xc3\xfd\xd5\x74\x36\x9f\x7c\xe8\xc3\xf4\xe6\x93\x6b\x9c\x4d\xf6\xc6\xff\xae\xc6\x7f\x14\xfe\x1f\x3e\x99\x44\x4b\x90\x6d\x95\xe4\xcc\x0e\x84\xe3\xbf\x3c\x4c\xc6\xdd\xc5\x76\x21\xeb\x9e\x49\x12\x5c\x30\xc1\x1c\x66\xff\x6e\x5f\x97\x54\x61\x05\x49\x92\x27\xff\x39\x22\xd7\x64\xd9\xf1\x52\xd0\x55\x47\x8e\x64\x82\x37\x09\x6b\x7c\xd6\xdb\x56\x82\x34\xdf\x8c\xbf\xe6\x84\xdb\x48\xa0\xd1\xd8\xc2\x72\xbf\xe2\xec\x6f\x7e\x30\x3c\x94\x83\xbb\xb0\x7c\x60\x02\x4f\x4c\x2e\xc2\x17\x22\x28\xa6\x76\x79\x22\xf8\x14\xf3\x9b\xd7\x60\x67\x5b\x6b\x30\xf7\x4d\x37\x41\x41\x71\x6e\x56\x0a\xb5\x3d\xb8\x5d\xee\xda\xba\xa5\x41\xfb\x01\xa0\x50\x04\xb3\x4a\xd1\x26\x87\xbd\xf3\x97\x2c\xa8\x2d\x00\x4d\xa5\xc2\xf0\x63\x6c\xa3\x56\x1b\x0e\x86\x27\xa7\x83\x61\xb7\xa3\x0e\x07\x3f\x37\x7a\xa2\x0f\x4d\xd0\xba\xf2\xb6\x7a\xb6\xde\xe6\xe0\xa0\x3a\x2e\xc1\x24\xcf\x38\xa3\xc4\xe0\xdb\x92\xf3\x75\xad\x00\xa6\xa8\x73\xbe\xa5\x5c\x99\x62\x2a\x9f\x10\xea\x41\xdd\x97\x83\xdf\x43\x21\x27\xac\x67\x70\xf6\x0d\xe7\x87\x5d\x0e\xc6\xa5\x9e\xf2\x8f\x2c\xc6\x24\xdd\x92\x40\xea\x21\x45\xbe\xb6\x77\x05\x5d\x7c\xdd\x16\x9a\x69\x83\x82\xbe\xfe\x1e\xea\x3b\x26\x28\xcf\x13\x9c\x53\x29\xec\xe5\xf7\x6d\x84\x6e\xbd\x12\x5b\xf4\x3a\x25\x9b\xd0\x94\xb2\x3a\x57\x4a\xe6\x22\x71\x7f\xe6\xe1\xc7\x75\x78\xeb\x8f\xc5\x74\xd1\x95\x08\x8f\xec\xbf\x5f\x8f\xfe\x17\x00\x00\xff\xff\xbc\x3d\xb9\xd2\x96\x23\x00\x00")
+
+func yaoDataKbProvidersExtractionOpenaiEnJsonBytes() ([]byte, error) {
+ return bindataRead(
+ _yaoDataKbProvidersExtractionOpenaiEnJson,
+ "yao/data/kb/providers/extraction/openai/en.json",
+ )
+}
+
+func yaoDataKbProvidersExtractionOpenaiEnJson() (*asset, error) {
+ bytes, err := yaoDataKbProvidersExtractionOpenaiEnJsonBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "yao/data/kb/providers/extraction/openai/en.json", size: 9110, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _yaoDataKbProvidersExtractionOpenaiZhCnJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x99\x5b\x6f\xe2\x48\x16\x80\xdf\xf3\x2b\x2c\x9e\xd3\x88\xdc\x7a\x76\x47\xda\x87\x68\xb5\x5a\xf5\x6a\xb7\x67\xa4\xe9\xb7\x55\x2b\x72\xa0\x92\x78\xd7\xd8\x8c\x31\x3b\xc9\xac\x46\x32\x84\x34\x90\x70\x49\x77\xc8\x65\xc8\xad\x99\x25\x81\xde\x9e\x86\x44\xc9\x24\x04\x43\xf3\x63\xe2\xf2\xe5\x89\xbf\xb0\xb2\x8b\x18\xdb\x94\x09\x24\xbd\x3d\xf3\x10\x91\x54\x9d\x3a\x39\xe7\xab\x3a\x97\x2a\xfe\x3d\x46\x10\x1e\x2a\xe0\xf9\x92\xf0\xcc\xcd\xad\x90\xac\x97\x0d\x01\x86\xa4\x3c\xe3\xfa\x38\x4f\xf1\x34\xd0\xa7\xbe\x0a\x01\x66\xf6\x19\x01\xab\x47\x52\x6b\x4b\xce\x6d\xc2\xdc\x0e\xfc\xb1\x82\x84\x02\x20\xec\xe7\xa8\x10\x4f\xb1\x8c\x2e\x2a\xb5\xda\x4a\xbe\x42\x74\x57\xa8\xb5\x0f\x6a\x45\x90\x2b\x45\x78\xb4\xa1\xb6\xf7\xd5\x62\x9a\x98\x7d\x46\x68\xef\xce\xe1\x7a\x45\x29\xc4\x91\x42\xf8\x26\x0d\xd7\x2e\x94\x0b\x11\x69\xbe\x15\x62\x92\x98\xd5\x0e\x8f\x14\x71\x4b\x3e\x8a\xc3\xf4\x8e\xbc\x93\x90\x0f\x7e\x96\xea\x1f\x90\x80\x39\x2e\xb5\x8b\x72\xb4\xd6\x69\xa6\xe5\x7c\x4d\x4e\x47\x61\xae\xa6\xad\x65\x94\x56\x55\x29\xc4\xe5\xdc\xa6\x52\x6a\xe8\x9a\xaf\x4f\xe0\xda\xb5\x7a\xb6\xaa\xe4\x2b\x70\xfd\x58\x5d\x6d\xdd\x0a\x31\x64\x39\x07\xbe\x8d\x50\x1c\xd0\x9d\xff\xbb\xc7\xcf\x32\x0c\xf0\xf3\x2c\xe7\x79\x69\x4c\x86\x38\x36\x04\x38\x9e\x02\x61\xcf\x97\x84\x4e\x89\x20\x2c\x32\x77\x43\x3a\xa4\x95\x90\xc1\x28\xcc\x73\x14\xb3\x68\x68\x46\xe3\x0e\x78\x6a\xfb\x48\xce\x9e\xdc\x61\x33\x44\x1c\xe8\x94\x7c\x45\x6a\x64\x91\x8f\xc4\xec\xd7\xcf\x08\xb5\xda\xd6\x76\x75\x6f\x08\xa7\x8e\x3b\x1f\xba\x6a\x16\xc8\x08\xcd\xeb\x2a\x7a\x83\x7e\x36\x18\x62\x19\xc0\x18\xc3\xdf\x00\x1a\xf8\xf9\xde\x24\x60\x22\x41\xdd\xeb\xee\xdf\x84\xe9\x8d\x31\xbb\xc8\xb1\x91\xd0\x5f\xc9\x79\x40\x5b\xcc\x47\x7b\x68\xaa\x30\x04\x59\xc3\xf4\xb0\x4d\x93\x53\x9b\x21\x48\xdf\x29\xfb\xf3\xd7\x2f\x9e\x4c\xb3\x36\x2d\x86\xc0\xbf\x48\x3a\x62\xc0\x42\xc7\xcf\xbb\x18\xe2\xb1\x72\x0e\x62\xf2\x81\x20\xef\x9c\xe9\x80\x90\xe2\xae\x95\x9d\x66\x5a\x13\x62\x08\x27\x2c\x65\xe4\xc3\x18\x3a\x11\x30\xb7\x23\x89\x22\x5c\x2f\xe2\x14\xdf\x31\xe4\xb9\x08\xb0\xcd\xfe\x30\x3e\x92\x73\xc4\xdf\x28\x86\x1a\xd6\xc3\x27\x41\xac\xb0\xf3\x60\x88\x39\xf9\x97\xac\xf6\x7e\x4f\xde\x4e\x5a\x9c\xd5\xff\x91\xcd\xd5\xe3\x86\x52\x14\x90\x9f\x9e\x47\xb8\x40\xbc\x88\x70\xf3\xc3\x6e\xd2\x13\x1e\x2f\xec\xdc\x29\xa1\xac\xae\xb6\xe0\x4f\x47\xb0\xd9\x30\x5d\xe8\xfe\xa3\x87\x9b\x3a\xe5\x9d\x19\xc5\xd8\x29\xef\xcc\x90\xe6\xc2\xf6\x7b\x4d\x38\x46\xdc\xad\x88\x95\xaa\x00\x33\xdb\x58\xc4\x96\xbf\x5e\x8e\x61\xbc\x19\x10\x62\xb3\xdf\x47\x38\xd0\x8d\xf1\xc7\x46\x18\xd2\x75\x6f\x9c\x91\xba\xd8\xb0\x61\x86\x74\xca\xa9\x3d\xa5\x5a\xec\x0b\xb6\x07\x6e\x9f\xc5\xce\xe1\xcc\x7c\x98\x95\x78\x23\xf1\x7b\xd5\xfd\xed\xa5\x99\x26\xbf\xa3\x02\xfc\x92\xae\x7a\x21\x42\xd3\xbd\xec\xc9\x72\x01\xa0\x97\x80\x89\x31\x8b\xc7\x9e\x20\x1b\x30\x3c\x1b\xbe\x30\x20\xd3\xe0\x66\x46\x29\x9f\x75\x9a\x49\xbd\x7c\x09\xa9\x4e\x33\xe5\x5a\x20\xd4\xd3\x57\xca\xfe\x8e\x59\x04\x34\x71\x4f\xad\x96\xa0\xd0\x54\x0a\x71\x25\x75\x03\xab\x05\xab\xc6\xff\x6b\x89\x30\xb7\x11\x95\x7b\x87\x49\xf6\x33\x6c\x6e\xa6\x7d\x18\xdb\x37\xc8\x29\x41\x13\x52\xa6\x3a\xa5\x10\x47\x1a\x71\xd5\xc7\x25\x65\xbb\x85\x9c\x69\x32\xe6\xd0\xf7\x6c\xc4\x4d\x0e\x57\x74\x3c\xa3\x5a\xd0\x9f\xfb\x9d\x66\x60\x24\x86\xaf\x0c\xa3\xda\x83\xc9\x8c\x0e\x7b\x70\x12\x0e\x7b\x2c\x69\xfd\x61\x58\xf0\x29\xda\x6e\x88\x8b\x0c\xc6\x14\xb3\x3e\xf4\x1b\xe3\x1e\xec\x4b\x24\xbd\xd0\x1f\xec\x93\xb6\x60\xe7\x59\x96\xf6\x93\x34\x36\xde\xe7\x59\x96\x06\x24\x83\x09\x78\xb8\x59\xd3\xbb\x50\x4b\x47\xea\x1a\xea\x28\x1c\xcc\x4e\xd7\xba\x46\x12\x4f\xd4\xec\x35\xfc\xb8\x2b\xef\x5f\xea\x39\xe3\xf0\xad\xd9\xdd\xb8\xc4\xbc\x1e\x1f\x2e\x51\xff\x1d\xc5\xfb\x97\x3c\xc3\x42\x98\xb2\x43\x00\xc1\x10\xe0\x48\x3e\xc2\x01\x1c\x07\x26\x12\x9c\x07\x1c\x2e\xef\xd5\xdf\xc1\xc6\xa9\xab\xeb\x72\xb6\x0c\x93\x57\xdd\x56\xbf\x10\xd7\x0a\x39\xf9\xa0\x21\x0b\xe5\x4e\x33\xe9\xf3\xfa\x88\x3f\x10\x4a\xb1\xaa\xe7\x3a\x7d\x24\x3d\x61\x8c\xc0\xe4\xbe\x26\xbc\x35\x46\x52\x2e\x0c\x7c\xde\x09\x73\x54\x0f\xab\xa0\x91\xde\x7c\x5e\x5f\x6f\x94\x5c\xee\x8e\x4e\x5a\x46\x6d\xb8\x9e\x31\xa1\x08\xff\xdc\xe1\xd7\x3d\xcc\xa6\xed\x55\x82\x5c\x9e\xe3\xd9\x7f\x02\x26\x8c\x43\x46\x31\x3c\x58\xc4\x33\x3b\x10\x60\xa9\x2c\x89\x25\x25\x95\x96\xb7\xcf\x5c\xe1\xc1\xad\x0c\x6c\xe4\xa5\xfa\x07\xfd\x4c\xd8\xd7\xb8\x80\x99\xf6\xf9\x7c\x18\x32\x13\x3e\x1c\x99\xa9\x49\xab\xf4\xa3\xd9\xcc\xd8\xd8\xf8\x59\xc6\x1f\xe1\x38\xa4\x6f\x04\x36\xf0\xe6\x0a\xe6\x5e\xab\xb5\x6b\xf9\x3c\x36\x88\x8d\x7a\x1a\x85\xa5\xb8\xb2\xf9\x4a\xbf\x79\x1a\x6b\xd0\x21\x33\x57\xba\x10\x9a\xc1\xe1\xc1\xc0\x99\xf9\x84\x64\x9e\xda\xc8\x70\x80\xe7\x56\xe6\x48\x5e\x8f\x38\x7e\xc4\x93\xa3\x25\x32\x6a\x6d\x5b\xfe\xb9\x38\xf0\xd8\x94\xce\xd5\xcb\x93\x5e\xcc\x59\xd6\xb8\x40\x99\xc2\x45\x13\x06\xca\xc4\x27\x84\xf2\x05\x06\x4a\x00\xd0\xe4\xca\x48\xe9\x07\x39\x07\xc5\x2b\xb5\x7d\xdc\x69\x26\x95\xf2\x9b\x41\x3d\x57\x57\xfa\xec\x50\xad\x6d\x4b\x37\x1b\xda\xee\xa5\x7e\x7a\x8c\xc5\xf2\xee\x95\xb6\x7b\x69\xaa\x70\x01\x35\xe1\xc5\x85\x97\x2d\x1d\x99\xb0\x9e\xfa\x3e\x65\xe6\xf9\x9d\x0d\x57\x88\x63\x83\x21\x6c\x64\xb9\x36\xa8\x6a\xe2\xbf\xb0\x5a\x90\x6e\x52\xe8\x60\xa0\x37\x95\x7b\x9e\x2f\xb0\x4f\x3a\x4a\x21\x6e\xd5\xa5\x94\x1a\xd6\x7e\x77\xc4\x4e\xf5\x05\x58\xe6\x67\x39\x40\xf6\xa6\x43\x34\xe9\x07\x4b\x2c\x8d\xdc\xf6\xc8\xb1\x8a\xbc\x57\x93\xc4\xac\xe3\xdd\xc8\x61\x9a\x52\x88\x4b\xf5\x2d\x58\xbd\xba\x15\x62\x6a\xed\x5a\x12\x4f\x7a\x0f\x4e\x6f\x9b\xb0\x99\xeb\x7a\x9d\x12\xe4\x83\x94\xb2\x5f\x87\x6b\x17\x5d\x0d\xb9\x75\xb8\x76\x85\x94\x78\xbd\x5e\xcc\x7e\xe0\xef\x0b\xbf\xb7\xed\x07\x58\xe6\x39\xd2\xaf\xc3\x9b\xd3\x37\x02\x1b\xd5\xec\xfc\x3f\x6c\x4d\x79\xaf\x1c\x18\xa6\xa1\xd7\x2e\xf7\xa3\x6b\x4c\xab\xa7\x51\x73\x13\x9c\x04\xce\x45\x78\xb4\x61\xc3\x6f\x79\x13\x5b\x20\xe9\xb0\x4b\xdb\xf0\x1c\x84\x79\x10\x18\xda\x71\x4b\x0e\xc0\x3c\xab\x21\x1a\x0c\x4f\xf5\x8d\x0e\x68\xaa\x70\x38\x90\x77\x83\x7b\x77\x24\xf8\xba\x05\x37\x33\x48\xbc\xd3\x4c\x4a\x8d\x86\x92\x7a\x77\x2b\x44\xe1\xc1\x99\x12\xbb\xb9\x15\xa2\x8a\x18\x57\xc4\x84\xf2\xc1\x79\x3a\x09\xf7\xbe\xaa\x1f\x92\xa3\xb7\x1a\x10\xb1\x44\xff\xad\x92\xb0\x37\xcc\x1e\x0e\xd0\xa4\xf1\x14\xb0\x44\x85\x1e\x07\xc9\xd8\xf9\x61\x20\x19\x78\x7a\x29\xcf\x58\xf7\xb9\x61\x4c\x62\x61\xe8\x8d\x02\xb0\x17\xc2\x91\x39\xc8\xa7\x31\xd8\xfe\x65\x18\x0e\x6b\x17\x5a\xbe\x8a\xc4\xe1\x9b\xb4\x54\x17\xb5\x9f\xf6\x3e\x37\x87\x29\x2c\x87\x70\x24\x18\x24\xb9\x07\x47\x8d\x92\x3f\x96\x93\x9b\xf2\xeb\x3d\xf5\x34\x3a\xf8\x96\x89\x04\x77\x12\x72\xf1\x3f\x48\x7c\x80\xff\xb6\xb4\xf1\xc9\x00\x4c\x63\x01\x18\x59\x63\xa5\x2f\x7f\x12\x03\xaa\x9b\x1d\x01\x3a\xe4\x28\x0f\x0e\x44\xa0\x9e\x46\xb5\x44\x46\x89\xdd\xc0\xb5\x0b\xf9\xa2\xf7\xdd\x05\x5a\xda\x69\xa6\x95\x7c\x45\x13\x76\x61\xee\x1a\x26\x5f\x69\x85\xbc\x5b\x7d\x23\xdc\x6a\x5c\x3f\x29\xa3\xe4\xdb\xe7\x1d\x85\x0e\x25\xae\x71\x02\xa5\xab\x71\x02\xe5\xaf\x71\x42\x6a\x6c\x48\xe2\x95\xfe\x59\x86\x5b\x51\x17\xd6\xb6\x54\x4d\xf4\x77\xe5\x4e\xd6\xd6\x0c\xf4\x18\xe2\x96\xca\x33\x2a\x71\xcb\xd2\x5f\x89\x38\xbc\x3e\x91\x5a\x07\x52\x23\x3b\x4e\x48\xad\x8c\xf1\x09\xcf\x8f\x8c\x4f\xd4\x21\x48\x8d\xec\xc8\xbc\x9f\xf6\x78\x8f\x59\x3f\xad\x8f\x0d\xd8\xf6\xe0\xfe\xc6\x0d\xbd\x1b\x74\x9a\xc9\xbf\x7c\xf3\xd5\xf3\x41\x6d\x6e\xf7\x79\xdb\x6c\x80\xfa\xda\x36\xa4\x09\xfd\xde\x69\x26\xb5\xf7\x7b\x4a\xa3\xac\xe4\x2b\xf2\xc5\xf6\xe8\x2d\xdc\x1f\xd9\x00\xf8\x53\x80\xe2\x59\x5c\x33\xeb\xd2\x43\xd8\x5f\x5b\xbf\x8d\x90\xb4\x1e\xfa\x61\xc0\xf3\x14\xb3\x38\x5a\xf7\xa4\x5e\x56\xb4\x44\x4e\xad\x7e\x1c\xd4\x3d\xc1\x8f\x55\xf5\x6c\xb5\x7b\x43\x34\x16\xc0\x37\x69\xf4\x35\xc6\x67\xe8\x98\x26\xef\xed\x98\xfc\x2c\xb3\x40\x05\x00\xe3\x07\x73\xfc\x12\x07\xc2\xfa\x21\x75\x8b\x48\xc7\x5d\xc8\x4e\x43\x69\x55\xa5\x76\x11\x36\x4e\xb5\xbd\x24\x14\x9a\x43\xb7\x06\xdd\x17\x86\xb3\x9c\xa9\x00\x26\x5f\xc9\xdb\x67\xe8\x9d\xe6\xc9\x84\xd7\x37\x38\x12\x7d\xde\x2f\x6c\x33\xd8\x57\x19\xc2\x71\x9b\x74\xcc\xdc\x7b\x47\x22\x1e\xd5\x75\x05\x40\x20\x12\xa2\x29\x3f\xc9\x83\x87\x95\x58\x98\x15\xf5\x24\xa6\x87\xd5\xc1\xe0\x12\x5b\x16\xb5\x1f\x4b\x5a\x22\x03\x4b\x99\xfe\x46\xfd\xb7\xd1\x76\x31\x2c\x17\x24\x69\xea\x7b\x30\xf7\xb8\x6e\x5d\x2d\xc7\xd5\xf4\x2a\x4c\xdf\x5d\xc8\x8c\xaf\x2b\x06\xd7\x02\xdc\x0a\x49\x3c\x91\xda\x87\x72\x3a\x2a\xd5\x05\x35\x71\x29\x0b\xe5\xdf\x46\x57\x46\x31\x7e\x3a\x12\x00\x73\x7e\x96\xe1\xc1\x32\xff\xc0\x83\x93\x5e\x83\x9b\xef\xa5\xfa\xba\x54\xdf\x90\x77\x12\x83\xbf\x3a\xa9\x37\x9c\x37\x3c\x63\x35\x7c\x5d\x81\xfb\x97\xa6\x8e\xcf\x4d\x67\xda\xad\xac\x8d\xe9\x3f\x3f\x8c\xfd\x2f\x00\x00\xff\xff\xad\x81\x59\x6a\x7b\x22\x00\x00")
+
+func yaoDataKbProvidersExtractionOpenaiZhCnJsonBytes() ([]byte, error) {
+ return bindataRead(
+ _yaoDataKbProvidersExtractionOpenaiZhCnJson,
+ "yao/data/kb/providers/extraction/openai/zh-cn.json",
+ )
+}
+
+func yaoDataKbProvidersExtractionOpenaiZhCnJson() (*asset, error) {
+ bytes, err := yaoDataKbProvidersExtractionOpenaiZhCnJsonBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "yao/data/kb/providers/extraction/openai/zh-cn.json", size: 8827, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _yaoDataKbProvidersFetcherHttpEnJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x58\x5f\x53\xdb\xba\x13\x7d\xe7\x53\xec\xe4\xa5\xd0\x09\x89\x43\x1a\xf8\x95\x4c\x1f\x28\xfd\x41\x7b\x4b\x68\x87\x84\xd2\x3b\x77\x3a\x19\xc5\x5e\xc7\x2a\xb2\xe4\x4a\x32\x49\x7a\xa7\xdf\xfd\x8e\x24\xc7\xb1\x83\x63\x02\xb4\xc3\xf0\x4f\xda\x5d\x9d\x73\xbc\xde\xdd\xe8\xdf\x1d\x80\x06\x0d\x1a\xc7\xd0\x18\x8f\x17\x44\xb4\x22\xad\x93\x46\xd3\xac\x6a\xaa\x19\x9a\x8d\xf7\xa3\xd1\x67\xb8\xc1\x09\x9c\xa1\xf6\x23\x94\x6e\x3b\x40\xe5\x4b\x9a\x68\x2a\xb8\x31\x72\x7b\x0a\x7c\xc1\x35\x72\x0d\xa1\x14\x31\xcc\x70\x02\xd7\x57\x17\x0a\x52\x45\xf9\x14\x4c\xa0\xb6\xf9\x31\x84\x44\x0a\x2d\x7c\xc1\x54\x0b\x86\x69\x92\x08\xa9\x15\xf8\xa9\xd2\x22\x86\x08\x49\x80\x52\x35\x21\x55\x28\x81\x4c\x4d\x34\x5f\xf0\x90\x4e\x53\x49\xcc\x71\x4d\x20\x3c\x00\x4d\x63\x14\xa9\x06\x85\x5a\x53\x3e\x55\x10\x0a\x09\x12\x19\x25\x13\x86\xf6\xe4\x25\x14\x89\x5a\x52\xbc\x23\xac\xe5\x90\x4b\xfc\x91\x52\x89\x86\xf4\x3f\xdf\xec\x4a\x22\x45\x82\x52\x53\x54\x8d\x63\x30\x92\x00\x34\x32\x18\xf9\x82\x51\x64\x91\x58\x41\xc4\xe4\x3b\xfa\xda\x06\x73\xeb\x4b\xa5\x4e\x1d\x83\xf7\x99\x6b\x6e\xb0\xa6\xd5\xd2\xcc\xe8\x9a\x1d\x03\x5a\x00\xe5\x3e\x4b\x03\x84\x19\xd5\x11\x18\x90\xa8\xb4\x6a\xad\xa2\x14\x70\x87\x84\x29\xcc\x37\x7c\x11\x27\x82\x23\xd7\x26\xf8\x25\x2a\x8d\xc1\xca\x6b\x46\x03\x1d\x99\x8d\x30\x65\x6c\xb5\x2c\x64\x80\xb2\x71\x0c\x9d\x7c\xa5\x42\x04\xbb\x7e\x92\xea\x48\x48\xfa\x93\x64\xf0\x57\x5b\x05\x49\x94\x96\x94\x4f\xf3\xf0\x65\x59\xca\x11\x4a\x36\x6b\xca\x94\x2c\x33\x6d\xec\x83\x25\xa9\x8e\x90\x6b\xea\x13\x8d\x41\x85\x38\x59\xb0\x90\xa4\xcc\xaa\x50\xde\x28\x09\xf4\x81\x27\xa9\x2e\xef\x27\x8c\xf8\x18\x09\xe6\x24\x69\xbc\x45\x22\x51\x82\x16\xb7\xc8\x41\x48\x78\x4b\x14\xf5\x2d\x84\xb2\x5b\xb5\xb4\x65\x79\xf3\xc5\x5f\xcd\x82\xa4\xbe\x8f\x89\x7e\x9a\x96\xce\xb5\x56\x44\x6b\xb2\x54\x4f\x0b\x50\x09\xfa\x34\x5c\x40\x22\x31\x44\x29\x31\xc8\x5f\x0d\x73\x64\x8d\x8a\x2f\xdb\x2f\x6b\x84\x1c\x22\x2b\xbe\x06\xd6\x00\x79\x1a\x9b\xf7\xaa\xb0\x06\x25\x96\xd6\x8a\x91\x09\x32\x0b\x95\x31\x18\x19\x0c\xa5\x28\xd6\xe6\x8e\xb0\x14\xab\x40\xd4\x50\x26\x7c\x51\xa2\x56\xe5\xb7\x24\xa7\x65\x8a\xa5\xdd\x5f\xcd\x2d\x41\xbf\x1f\x0d\x2e\x6a\xf0\x6a\x9c\xeb\x76\xa4\x63\xf6\x20\x6a\x13\x08\x02\xe1\xa7\x31\x72\xad\x40\x70\xb6\x68\x3c\x0d\xd2\x5f\xc3\x4f\x97\x35\x90\x48\x92\x30\xf3\xea\x50\xc1\xdb\xdf\xd5\xda\x3b\x58\x85\xcc\xc4\x83\x80\x68\xf2\x1c\x50\x5f\x6b\x65\x2a\x62\x9a\xc7\xac\x69\x65\x9b\x6f\xa1\xda\xd7\xa2\x68\x4f\x84\xf6\x99\x11\xca\x61\x84\x73\xfd\xd0\x83\x4c\x8c\xe5\x83\x98\x5c\x3c\xe3\xb0\xcc\xbf\x35\x60\x85\xff\xbe\x55\xd7\x90\x88\xb0\xb0\xba\x86\x1c\xd4\xd4\x90\xfd\x0b\xc2\xa7\x29\x99\xe2\x33\x8a\x09\xe4\x31\xea\xaa\xca\xe7\xbc\x78\xb0\xcc\xdc\x16\xe6\x8c\xee\xe6\x1a\x82\x7c\xff\x7a\xd8\x44\xde\xff\xf1\xc6\x6b\xbd\x7e\x56\x5d\x2e\x87\x6a\xfe\x8c\xf6\x4f\x2f\xed\xdf\xff\xdb\x50\x97\x37\x6b\xda\xad\xd4\xf4\xca\x50\xb4\xfb\x8f\xd7\x72\xe9\x5b\xa7\x61\x66\x53\x6c\x6c\x3a\xc2\x65\x3b\xfb\x43\xdd\xcc\x4c\x74\xea\xb8\xdd\xc6\x39\x89\x13\x86\x2d\x5f\xc4\x8f\x6e\x63\xaf\x2a\xe5\x3a\x15\xe2\x96\x3e\x2d\xf3\x32\xd7\x3a\xb1\x9c\x49\x51\x2b\x85\x4a\x99\xb9\x20\x26\x9c\x4c\x31\xae\x4d\xbb\x67\x49\x96\x1d\xf4\x86\x4c\xfc\xce\x41\xb7\x9f\x35\x4e\xe4\x3e\xbe\x61\x74\x1a\xe9\x47\xeb\xd7\x5b\xe9\xb7\x53\xfc\x9d\xa9\xd9\x30\xa3\xee\xd8\x8e\xba\x55\xf3\xe6\x9a\x92\x2b\x15\xaf\xcd\x84\x7c\x62\xdd\x36\xcd\x9a\xd7\xab\x21\xda\x85\xb1\x93\x66\x60\x66\xa9\x70\x61\xb3\x2f\x74\x53\x7d\xab\x18\x22\x97\xf1\x5c\x92\x24\xba\x3a\x39\xdf\xcf\x66\xff\x76\xa7\xe5\x35\xaa\x07\xcf\xb5\x71\xe0\xfe\x28\x50\xca\x92\xbc\x14\xbf\x73\x87\xc1\xf2\xa4\xb2\x80\x79\x31\xae\x05\x52\x45\x7c\x3d\xee\x92\x67\xe1\x63\xc5\xa6\xe4\x29\x8d\x06\x85\x84\xaf\x26\x70\x1a\x49\x11\x23\xbc\x43\x75\xab\x45\xb2\x01\xfe\x40\xfc\xa4\x8c\x91\x76\xaf\xe5\xc1\xee\x0d\xe5\x81\x98\x29\xb8\x1c\x41\xc7\x6b\x79\x7d\xb8\xa1\xfc\xf0\x55\x1f\xe6\x87\xaf\xf6\xe0\x24\x49\x18\xde\xe0\xe4\x23\xd5\xed\x5e\xf7\xa8\xd5\x3d\x84\xdd\x8f\x66\x52\x68\x02\xa3\xb7\x08\xe7\xe8\xdf\x8a\x3d\x70\xa7\xb6\x3b\x07\x5e\xcb\x7e\xc1\x90\x84\x44\xd2\xcc\xa5\xfe\xc5\x72\x80\x27\x52\xcc\x8c\x14\x82\x43\x06\xa8\xb1\x3d\xe9\x33\x2a\x31\x14\xf3\xdf\xc4\xba\x0f\xf2\xee\xd8\x52\xd9\x73\xfc\xda\x07\x5e\xc7\xf3\x3a\x5e\x07\xb2\x83\x1c\xd1\x5a\x5a\x4b\x48\xcf\xe2\xe5\x54\x84\x98\xf8\x9f\x86\xdb\x90\x1a\x10\x9f\x72\x2d\x54\xd4\x87\x0f\x5c\x23\x83\x01\xf1\xe1\xd3\x10\xbe\x42\xc7\x1b\x77\x7a\xe3\xa3\xad\x1f\xe8\x17\x94\xa6\xe6\xb4\x3b\x47\x8f\x7a\x98\x19\xe0\x02\x69\x87\x7d\x7b\xca\x03\x31\xa1\x0c\xb3\x84\xda\x86\xf3\x05\xe5\xe9\xbc\x0f\x27\x3c\x90\x82\x06\xd0\xf1\xfa\x30\x1c\xec\x9f\xbf\x3e\xea\x9e\x3d\x3d\x7d\x33\x14\xcf\xc9\xe2\x0c\xd0\x23\xa8\xbb\x0f\xe2\x1b\x38\xd7\x9e\xfe\x7f\xae\x51\x2e\x6f\x2c\x0a\x17\x15\x13\x64\x62\xd6\xb8\x57\xed\xbf\x6d\xfb\x71\xfc\xa0\xd4\x16\x5c\xfc\xf1\x13\xbb\x43\x76\xcd\xb0\x45\x93\x38\xbd\xc7\x23\xeb\x15\xbb\xa9\xc2\x00\x66\x11\x72\x78\xe1\x8c\x5e\x00\x55\xa0\x6c\xa9\xc7\x00\xc8\x44\xdc\xe1\x5e\x75\xeb\xd8\xd0\x26\xca\xdd\x77\xbd\xf3\xfe\x2d\xd2\x2a\x59\xd7\x39\x3e\xa0\x62\xb7\xa4\x62\x76\x53\x54\xa5\x1d\xe5\x1a\xa7\x85\xa1\x6d\x25\xde\x28\xbb\x5e\xda\x55\xe8\x0b\x1e\xa8\xbd\x8d\xe2\x5d\xb9\xe9\x2d\xbf\x90\xa2\x1c\x32\x9f\x4a\x5d\xba\x9e\x97\xaf\xc6\x94\xd3\xd8\x76\xc9\xde\x6a\x8d\xcc\xb3\xb5\xee\x61\xc1\xf4\xbe\x86\x97\x69\x3c\x29\x42\xaf\x9e\x7a\xd7\x46\xb8\xa5\x26\xa1\x60\x4c\xcc\xc6\x12\x03\x2a\xd1\xd7\x95\xd7\x5c\x13\x21\x18\x12\x5e\x21\xce\x99\xf5\x86\xab\xdc\x7b\x93\x36\x27\xa9\x16\x31\xd1\xd4\x27\x8c\x2d\xc0\x1d\xea\xee\xbd\xf2\x93\x2b\x45\x32\x1d\x78\xc3\x94\x31\xa3\xda\x8f\xb6\x66\xdd\x2b\xb1\x8e\xc9\xbc\x9e\xf2\xe6\x7c\x18\x90\xf9\x16\x7c\x07\xee\xe1\x01\xb7\xcf\x06\x44\xb8\xe2\x69\xe6\x2e\x27\x40\x25\xe3\x4e\x55\x56\x78\x15\x59\xd1\xfb\x8d\x39\x71\x58\x52\xe7\x0e\x25\x0d\x17\x63\xa5\xd8\xe3\xb2\xe1\x8b\xf5\x83\xe1\xf0\x62\xa3\x2e\x2b\x13\xf0\x51\x6a\x1a\xda\x8b\x3c\x77\x67\xeb\x2e\x84\x2b\xee\x3b\xff\x40\x3a\x1c\x39\xc2\x3b\xe6\xfb\xd7\xce\x7f\x01\x00\x00\xff\xff\xe6\x1a\x63\xf0\xfd\x16\x00\x00")
+
+func yaoDataKbProvidersFetcherHttpEnJsonBytes() ([]byte, error) {
+ return bindataRead(
+ _yaoDataKbProvidersFetcherHttpEnJson,
+ "yao/data/kb/providers/fetcher/http/en.json",
+ )
+}
+
+func yaoDataKbProvidersFetcherHttpEnJson() (*asset, error) {
+ bytes, err := yaoDataKbProvidersFetcherHttpEnJsonBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "yao/data/kb/providers/fetcher/http/en.json", size: 5885, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _yaoDataKbProvidersFetcherHttpZhCnJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x98\x6b\x53\x13\x49\x17\xc7\xdf\xf3\x29\xba\xf2\x4a\x2d\xc8\x85\x08\x3c\x92\xf2\x05\x5a\x25\xfa\x08\xb8\x65\x70\xb5\x6a\xb5\x52\xc3\xa4\xc3\xb4\x4c\x66\xc6\x99\x8e\x44\xb6\xac\x0a\xc8\x2d\x18\x2e\xba\x5c\x76\x53\xb0\x2b\x5e\x20\xeb\x25\xd1\x2d\xe5\x16\x70\x3f\x8c\x73\xcb\x2b\xbe\xc2\xd6\xcc\x24\x93\x99\x30\x09\x21\x68\x59\x2a\x74\xf7\x39\x7d\xfe\xbf\x39\xd3\xe7\x4c\xff\xda\x04\x80\x0b\x85\x5d\x9d\xc0\x15\x0a\x3d\x22\x58\x37\x85\x31\xe7\x6a\xd6\x46\x31\xc2\x34\xd4\x26\xae\xf6\xf7\xff\x04\x94\x83\x67\x4a\x7e\x55\x9d\xdb\x96\xe6\x97\xa5\x3f\x32\xc6\x92\x30\x14\x48\x1e\x71\x18\xb1\x8c\xb6\x50\x3c\xf8\x57\x59\xcc\x00\x6d\xbd\x47\xfb\x27\x08\xa4\xd9\x79\x35\x9b\x15\xf3\x73\x86\x39\xb8\x75\xb3\x07\x14\x7d\x4c\x4e\x48\xd9\xdd\x6f\x89\x31\x79\x31\x27\xa7\x46\xd5\xa9\xb7\x52\x36\x2d\xee\x26\xa5\xd7\x9f\x0b\x4f\x32\xdf\x12\xa3\xca\x62\x46\x9e\xde\x16\xf3\xaf\x94\x85\xc9\xc2\xc4\xac\x72\x90\x95\x9e\xa7\xd4\xad\x09\x79\x65\x4b\xcd\x7e\x55\x0e\xb2\x87\xfb\x29\x65\x31\x23\xee\xcd\x49\xf3\xb9\xc2\xda\x0b\x25\x3d\x6e\x6c\x62\x78\x96\x5f\x25\x94\xcf\x2f\xbf\x25\xc6\x8c\x48\x79\xf8\x20\x86\x78\xa8\x09\xfd\xe5\x9e\x3e\xc2\xf1\x2c\x07\x79\x8c\xa0\xe0\xea\x04\x1a\x06\x00\x5c\x14\x24\xc2\x90\x2f\x0f\x68\x14\x1e\x71\x3a\x04\x76\xe0\x3e\x24\xb1\xee\xcc\x18\x2f\xd1\xa9\x88\xbc\xbc\xa2\x02\x8e\x9a\xdb\x96\x3f\x8d\x89\x3b\x1f\xa4\xd4\x84\xb4\xf0\x4e\x49\x8f\x9b\x96\x3a\x31\x50\x52\x3e\x56\x76\x61\x89\x3a\x42\xd0\x02\x34\x27\x48\x36\xca\xb1\x0c\x64\xb0\xe6\xb9\x0f\x0a\x18\x86\xcb\x56\xc3\x28\x8c\x29\x6d\x22\x12\xa3\xe9\xf2\x30\xcb\x87\x21\xef\xea\x04\x3e\x73\xc4\x01\x81\x3e\xde\x15\xc3\x14\xcb\xa3\x11\xa2\x18\x7b\x79\xca\x02\x44\xc0\x3c\x62\x06\x4d\xf7\x76\x28\xf2\xdc\xb4\xbc\xf6\xc4\x3e\x59\xc1\xc3\x78\x76\xea\xde\x3b\x31\x7f\x50\x78\x9b\x52\x73\xa3\x06\x21\x25\x3d\x6e\x58\x1f\xe5\x51\x74\x13\x21\x62\xb4\x2e\xdc\x3e\x61\x63\x72\x8d\xe1\x62\xd8\x3e\xcf\xd1\x04\x09\x29\x96\x36\x28\xb8\x2e\x41\x82\x87\x3c\xc0\xec\x10\x64\x80\x3c\xbd\x0c\x2e\x11\x02\x22\x01\x11\xc3\x94\xdd\xce\x19\xa7\x1d\xa9\x39\xf8\xb8\xd9\x82\x91\x24\x21\x87\x1b\xe4\xf7\x46\x9a\x5f\xa9\xc9\x4f\x4e\x4d\x49\xd9\x74\x61\x63\xb9\x90\x48\x1a\x29\xaf\x7c\xca\x4b\x7f\x3e\xd5\xf9\x69\xd6\xc7\xf3\x3b\xe7\x39\x57\x03\x61\x10\xd2\xd6\x8c\xd7\x17\x40\x26\x16\xd5\x5e\x21\xcb\x18\xb0\xc9\xd3\x57\xd1\xc4\x00\xa4\xf5\x18\x93\x09\x79\x35\x69\xc4\x65\x73\xa4\x2f\x7b\x48\xd0\x31\xe8\x14\x87\xa3\x5c\x5d\x93\x98\xcf\x8b\x07\x4b\x56\xb9\x4e\x86\x25\x81\x98\x8f\x41\xdb\xec\xe3\xe6\x3a\x03\xbf\xda\xdf\xdb\x53\x23\x60\x0c\xe3\xd8\x43\xe1\x28\x7d\x6c\xd8\x62\x7e\x02\x68\xce\x80\xbc\x3c\x25\xaf\xbf\x72\x35\x16\xce\xff\x83\x37\xfa\x6a\x84\x43\x70\x1c\x8d\x48\xfd\x6d\xf5\xdc\x17\x58\xa6\xae\xa8\x34\x9f\x40\x5e\xfa\x28\xcf\x66\x1b\x8c\xea\x4e\x4d\x46\xd6\xa0\xe2\x51\xba\x59\x67\x16\xaf\x03\xd9\x9d\xd3\xd2\x52\xf6\x72\x9a\xfd\xea\xfb\xe3\x9e\x20\x47\x13\xe8\x78\x58\xa6\x3b\x23\xed\x2a\x82\xb2\xfc\x76\xcf\xf9\xd8\xa0\x08\x3a\xe2\x7c\x6c\xb4\xd6\x38\x36\x5a\x7a\x08\x66\x30\x46\x0c\xc2\x53\x9c\x1f\x6a\xee\x83\x9a\x49\xd4\x3c\x45\x8a\xaf\x52\x7a\xdc\x38\x48\x0c\x8b\x5a\x67\xc6\x08\xd5\x72\xb9\xaf\x79\x84\x0a\x3c\xb8\xe8\x75\x5f\x68\x86\x8c\xfe\xc3\xff\x4e\x75\x14\x1f\xf1\xd9\x72\x2b\xe8\xe4\xb6\x0e\xa4\x7e\x47\xa4\x37\x61\x04\xf2\xfa\xfc\xc9\x51\x4a\xfb\x4b\xca\x62\xa6\xb0\xfe\xa5\x26\x47\xb3\x76\x99\xcb\x7f\x70\xf9\xd2\xfa\x34\xa1\xd3\xe3\x81\x71\x22\xca\xd1\xd0\x4d\xb2\xd1\x13\x97\xad\xf3\x8e\xb0\x2e\xb3\xec\x10\x6a\x2c\xed\x8a\xa6\xc7\x97\x7d\x71\x3f\xad\xe6\xd6\x94\xec\xba\xb2\x30\xa9\xa4\xc7\x81\x61\xe8\xd0\x02\x7d\x57\x66\x02\x14\x04\xc4\x32\x17\x89\x01\xd2\xd7\xea\x0f\x00\x8e\xd7\xf3\x82\x21\xe1\x45\x1a\x0d\x52\xf8\xc4\x00\xdb\xca\x00\x9b\xac\xff\x17\x71\xba\x62\x02\xe4\x43\xc4\xa0\x11\xe0\x91\x96\xb2\x02\x65\x19\xa3\xb5\xf5\xad\xda\x4f\x1a\x20\xe5\x17\x53\x6a\x6e\xd2\x6c\xcb\xb5\x26\xd8\x62\x2c\x7d\x58\x51\xde\x6f\x88\x3b\xff\xd8\xba\x4a\x0b\xce\x6e\x9e\xe0\xa8\x9b\x5d\xdd\x2d\x57\x20\x26\x29\xc8\x7b\x7c\x6e\xaf\xcb\xb9\xcb\xac\x68\x07\x8e\xb6\x02\xb6\x74\x31\x0f\xe3\x42\xfe\x77\x35\xfb\x1a\x94\x36\xb2\x73\x34\x8f\xe3\x9a\x71\x38\xa9\xaf\x70\x0b\xca\x04\x9c\xd8\x81\x1a\x7d\x81\x25\xf5\x9d\x15\x5c\xa6\x78\x36\x0a\x81\xbc\x9e\x2a\xac\xbd\x54\x92\xd3\x55\x24\xf4\xb2\x23\x88\xa6\x09\x4f\x9b\xdb\x0b\xce\xdc\x46\x4c\x98\x1d\x16\x40\x5f\x3f\xf0\x79\xdd\xde\x00\xb8\x8d\x98\xf6\xf3\x01\x10\x6f\x3f\x7f\x16\x74\x71\x1c\x0d\x6f\xc3\x81\xeb\x08\x7b\xda\xfc\x1d\x6e\x7f\x3b\x38\x73\x5d\x6b\x12\x9a\x01\x8d\x86\x20\xe8\x86\xe4\x10\x7b\x16\x18\xfb\x7a\x7c\xad\x5e\xb7\xfe\x07\x04\x89\x08\xc1\xa3\xa2\x49\x4d\x3a\xa5\xed\xc5\x9d\x19\xfd\xed\x2a\x2a\xf8\x32\xaf\x6e\x4e\x6b\x1f\x6f\xf5\x8b\xbf\x82\x78\x18\x61\xe3\xdf\x4d\x7d\x00\xf0\x0f\x3b\x75\x49\x67\x0d\x9d\x9e\x56\xaf\xcf\xeb\xf5\x79\x7d\xa0\xb8\x95\x21\xf8\x24\xf2\xcc\x18\x1b\xd0\x67\x30\x05\x51\x82\xbc\x11\xac\x47\x5a\x2f\x41\x22\x06\xb3\x02\x15\x00\xd7\x18\x0c\x69\xd0\x4b\x90\xe0\x46\x10\xdc\x01\x3e\x6f\xc8\xd7\x16\xea\xa8\xfb\xf1\xfe\x0c\x79\xed\x30\xf2\xf8\x3a\x4e\xf4\x68\xf5\x48\x4b\xca\x8b\xd1\x37\x22\x5c\xd9\xcc\x4b\x33\x19\xe5\x5d\xae\x98\x1d\xf5\x88\xef\x41\x4c\x2c\x1e\x00\x5d\x4c\x98\x67\x51\x18\xf8\xbc\x01\x10\xec\x6d\xe9\xbe\xd0\xe1\xbf\xd2\x78\x56\xf7\xb2\x03\x88\x86\x27\x20\x50\xda\xfe\xf4\xc9\x6d\x7e\x80\x57\x11\x5f\xbb\x73\x5a\xcd\x88\x3b\x4f\xe5\xe5\x5d\xf5\xeb\x6f\xd2\xc4\x1b\xd3\x97\xed\x00\x3a\x52\x1f\xee\xd5\xfb\x95\xde\x6a\x2b\x24\x64\x4c\xc0\x6c\x34\xd4\x60\x3d\x71\x8e\xad\xea\x45\x85\xd3\x6a\xb3\x92\x1c\xee\x4f\xeb\xca\x67\xe4\xe5\xdd\x42\x22\x29\x3f\xfd\xfb\x6e\xd9\xe2\xae\x4b\x5e\xd9\x32\x6e\x81\x0e\xf7\x93\xd5\x8a\x4e\x95\x02\x63\xaf\xdf\x95\xb5\x5b\x1e\xcb\x58\xaf\x4c\x1c\x63\xab\xfb\x0a\xc4\x6f\x83\x8b\x51\x14\xb2\x31\x47\xa4\x88\xc1\x70\x10\xf2\x4e\x4c\xf5\x9b\x28\x79\x65\xab\xb0\xf2\xf9\x70\x7f\x5a\xd9\x7c\x7e\xb8\x9f\x3c\xe6\xf2\xc7\x6e\x93\x12\xf3\x6f\x94\xcd\xe7\xe2\xce\x9e\x34\xbb\x24\x1e\xcc\x56\xc1\xe5\xf7\x7a\xcd\xd1\x28\x62\x50\x54\x2f\xbb\x6d\xe5\x31\x22\x5e\x1c\xf3\xb7\x5b\x96\x1e\x45\xdb\x17\x8b\x0e\x58\xa5\x38\x77\xd3\x15\xcd\x61\x89\x51\x84\xa5\x69\x76\x38\xc4\xc3\x30\xe2\x21\x89\x1d\xaf\xc8\x06\x58\x96\x86\x04\xe3\x04\x6b\xfb\xaf\x42\x7a\xbe\x30\x35\x2b\x65\xd3\xd2\xc2\xb3\x9a\xa9\x37\x93\x31\x56\x1b\x97\x62\xa6\x4d\x15\x3a\x5a\x29\xaf\xd2\xaf\x0c\x23\x4c\x52\x75\xcb\x6d\xb3\xc9\x8d\x12\xf1\xda\x5a\xab\x27\x86\xbc\x9a\x90\x5e\x6f\x9a\x71\xcb\xef\xd7\xe5\xa5\x8f\xd5\x15\x6f\x8c\x1a\x72\x95\xf4\xb8\xa3\x65\x15\xdd\x3e\xa7\xa4\xf0\x3a\x24\x45\xdb\x77\x4c\x89\x76\x1b\xa3\x87\x90\x47\x91\x47\x21\x41\xa0\x4f\x96\x0c\xc6\x65\x1f\x08\x06\x7b\xaa\x52\x29\x2e\x31\xee\x90\xcd\x4f\x2b\xcd\x04\xa8\xb9\x51\x71\x77\xe3\x47\x67\x43\x87\xa1\xb4\x49\xfb\xfb\xb8\xe9\xbf\x00\x00\x00\xff\xff\xfa\x9d\x03\x2a\x25\x17\x00\x00")
+
+func yaoDataKbProvidersFetcherHttpZhCnJsonBytes() ([]byte, error) {
+ return bindataRead(
+ _yaoDataKbProvidersFetcherHttpZhCnJson,
+ "yao/data/kb/providers/fetcher/http/zh-cn.json",
+ )
+}
+
+func yaoDataKbProvidersFetcherHttpZhCnJson() (*asset, error) {
+ bytes, err := yaoDataKbProvidersFetcherHttpZhCnJsonBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "yao/data/kb/providers/fetcher/http/zh-cn.json", size: 5925, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _yaoDataKbProvidersFetcherMcpEnJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x98\xd1\x6f\xdb\xb6\x13\xc7\xdf\xf3\x57\x1c\xfc\xd4\x02\x85\x81\x5f\x9b\xfe\x36\xe4\x2d\xf0\x16\x34\x40\x13\x18\xa9\xf7\x34\x0c\x06\x27\x9e\x2c\x6e\x14\xa9\x91\xa7\xa4\xc1\xd0\xff\x7d\x38\x52\x92\x25\x47\x96\x57\x49\xf1\x1e\x82\x04\xa4\xee\xf8\xbd\x4f\x4e\xe4\x97\xfa\xfb\x02\x60\xa1\xe4\xe2\x0a\x16\xdb\xed\xb3\xb0\xcb\x3c\x29\x16\xef\x78\x90\x14\x69\xe4\xf1\xbb\xd5\x1a\x36\xd6\x6a\xb8\x41\x4a\x32\x74\x71\x5a\xa2\x4f\x9c\x2a\x48\x59\x13\x1e\xb2\x12\x35\xac\xac\x21\xfc\x4a\xb0\x76\x96\x6c\x62\x35\xbc\xb9\x5b\xad\xdf\x42\x1a\x03\x81\x32\x41\x50\x7a\xf4\x80\x5f\x09\x9d\x11\x1a\xc8\x5a\xed\x21\xb5\x0e\x12\x8e\x35\x04\x0e\xc9\x29\x7c\x14\x7a\x09\xd7\x5a\xdb\x27\x0f\xca\x10\xee\x9c\xe0\xa5\xe0\x49\x51\x06\x49\xe9\xc9\xe6\x31\xad\x32\xbb\x2a\x09\x65\xce\x96\xbb\x0c\x28\x43\x60\xcd\x1c\xe6\x52\x91\xe0\x32\x2a\x76\xf8\x57\xa9\x1c\x72\xad\xbf\x72\xc9\xef\x60\xc1\x81\x8b\xdf\xc2\x6c\xe1\x6c\x81\x8e\x14\xfa\xc5\x15\x30\x95\x9a\x4b\xfc\x9b\x81\x3c\x17\x81\x87\x27\xa7\xcc\x2e\xe4\x8c\xe3\x6d\x50\x5f\xd0\x3d\xa2\x83\xdb\x9f\xf6\xf3\x07\xa4\x6e\x25\x1a\x52\xa9\x42\x07\x36\x6d\xc4\xfa\x18\x47\x96\xf9\x04\x1e\x4d\x75\x15\x98\x65\x3b\x63\x2a\x4a\x4d\x9c\x6d\x3f\x98\xd8\xbc\xb0\x06\x4d\x18\xbe\x35\x45\x49\xfb\xb9\x27\x25\x29\xe3\xf1\x4c\xe8\x74\x3f\x6c\x9d\x44\xb7\xb8\x82\xff\x85\x81\x6f\x71\x3c\x42\xf9\x9e\xba\x43\x73\xdc\x8b\x1c\x8f\xd6\xcc\x93\xed\x6a\x79\x09\xae\x55\x99\x47\xfb\x27\x76\xfe\xfd\x75\xd9\xfd\xe5\x86\xd9\x59\x6a\x7e\xdf\xa9\x59\xb8\x5d\x99\xa3\x21\xbf\xcd\x45\x51\x70\x99\x3d\x00\xec\xef\x7f\x60\x42\x3d\x00\xae\xeb\x68\xb8\xab\xa2\x8f\x81\xa8\xe6\x99\x45\x28\x05\x0a\xe1\x44\x8e\x84\xce\x33\x8f\x86\x4d\xa3\xa7\x85\xa1\xd5\xbf\xa9\xd0\x1e\xfb\x29\xdc\xa3\x27\x94\x3d\x18\xd2\x52\xeb\x97\x18\x3e\x34\x23\x3d\x2f\x40\x18\x2f\x9d\xee\x0c\x1c\xef\x88\x2e\x94\x5f\x1e\x3e\x43\x0d\xa6\xfb\xc8\x21\x93\xc3\xa2\xc1\x70\xbb\x70\x53\x70\xbf\x70\x1e\xb2\x11\xd7\xf2\x30\x51\xd3\x18\xac\xb2\x33\x37\xd0\x1a\x03\xed\xd1\xf3\x5a\xb4\xda\x24\xcc\xe6\x48\x99\x95\xa3\x90\xdc\x85\xd0\xc9\x54\x3e\x6d\x36\x6b\x88\x32\x8e\x03\xa9\x64\xce\xcd\xe4\x7d\x2f\x93\x0c\x85\x44\xe7\x47\x41\xf9\x14\x63\xe7\xa1\x52\x09\x39\x8e\xa5\x56\x3a\x37\x97\x0f\xbd\x5c\x48\xe5\x68\x4b\x1a\xc5\x65\x13\x63\x27\x73\xe1\x6d\x03\x3d\x41\xa5\xe5\x38\x9a\x5a\xec\xdc\x68\x2e\x7b\xd1\x94\x1e\xdd\x56\xec\x62\xe6\x11\xbb\x8b\x47\x07\xd7\x1c\x3e\x19\x10\x2b\x81\xa0\x04\xe2\x92\x03\xbb\xcc\x5e\xf4\xdc\x94\x3e\xf6\x52\x4a\x2d\x5b\xa0\xad\x43\xa9\x1c\x26\x34\xee\x0d\xbb\x09\x49\xe0\xa1\x4e\x32\x43\x4b\xc5\x4c\x10\xe5\x85\x03\x2d\xc4\x1d\x27\xf7\xa2\x90\xb9\xf9\xfd\x7f\xcf\xef\xa2\xfd\xbb\x3e\xe1\x1d\xfa\x52\xd3\xa8\xe3\xfd\x21\x84\x7e\xcf\xd9\xde\xb0\x73\xe8\x0b\x6b\xd8\xd1\x29\xd4\xd2\x37\x07\x19\x44\x39\xaf\x7e\xbc\x5f\x9e\x3c\xde\x2b\xdf\x35\xaa\xb1\x56\x95\x67\xbb\xe1\xe2\x06\x9b\xe9\xa1\xc3\x21\x98\x3d\xa1\x4c\xf0\xee\x19\x56\xf7\x03\xf9\xd2\xe9\x1e\x76\x51\x2d\xf6\x3c\x27\xfd\x14\xe7\x33\x19\x89\xe2\xdb\x11\x67\x7a\x23\x52\xc2\xfd\x3b\xe7\xdf\x9e\xd7\x04\xf5\x1f\xf8\x9e\x04\x95\x7e\x9b\x58\x89\xa3\x10\x7d\x09\xf1\xb0\xb2\x12\x27\xa3\x0a\x07\x7f\x14\x04\x2c\xe8\x38\x9f\xb6\xea\xf3\x18\x80\x39\x8c\xd1\x54\x3e\xcd\x1e\xf4\x9f\x99\xa3\x7e\x07\x50\xbd\xcc\xdb\x0a\xc6\xf8\xed\x67\xf3\x5c\x4c\xef\xa2\xfa\xfe\xc9\x2b\x9f\xdc\x80\xa2\xe6\xf3\x58\x80\x7a\x49\x8d\x66\x17\x32\x8c\x07\xf5\x39\xa4\x98\x0d\x55\x54\x74\x1a\x56\xa5\xfc\x15\x4f\xfc\xee\xf5\x4c\x48\x41\x62\xec\x05\x2d\x04\x4f\x42\x24\xa4\x54\xfc\x94\xd0\x50\x8b\x19\xbc\xa6\x45\xb9\x73\xd3\xf9\xa1\x97\x0e\x3a\x67\xdd\x28\x34\x3f\x73\xe4\x24\x2e\x61\x6d\x50\x26\xb5\x2e\x17\xc3\x6e\x31\xca\x9c\x1b\xc9\x8f\x27\x2c\xa2\xb1\xa4\x52\x95\x04\x6d\xa3\x8c\xe2\x7d\x2b\xc1\xbf\xb6\x8b\x6c\xa8\xd9\x2f\xb6\x57\x87\x4c\x18\xa9\x79\x56\x96\x2e\x3c\xf4\xf2\xab\xd8\xab\xf8\xc5\x8f\x27\xfd\x62\xe1\xec\xce\xa1\x1f\x77\xa4\xad\xab\x60\x68\x93\x1a\x6c\xa7\x0e\x52\x5e\x63\xff\x6d\x14\x6a\x29\x50\x16\x52\x10\x0e\x1c\x6c\x8d\xe8\xf3\x18\xc7\xe8\x33\xa6\x18\xa3\x89\x7c\x6a\x37\x94\x09\xb3\x1b\xe2\x52\x09\x3d\x8f\x67\xac\x1d\xec\x28\x2e\xf5\xe5\x75\x2a\x99\xe6\xea\x8a\x8f\xdd\xcf\xab\x87\x68\x1a\xb5\xe7\x31\x8a\x53\x37\xe6\x89\x58\xe2\xde\x7c\x8a\xc9\xeb\x6c\xcb\x97\xc7\xb6\xe5\x0b\xfe\xf9\x76\xf1\x4f\x00\x00\x00\xff\xff\x97\x15\xae\x4a\xa3\x1a\x00\x00")
+
+func yaoDataKbProvidersFetcherMcpEnJsonBytes() ([]byte, error) {
+ return bindataRead(
+ _yaoDataKbProvidersFetcherMcpEnJson,
+ "yao/data/kb/providers/fetcher/mcp/en.json",
+ )
+}
+
+func yaoDataKbProvidersFetcherMcpEnJson() (*asset, error) {
+ bytes, err := yaoDataKbProvidersFetcherMcpEnJsonBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "yao/data/kb/providers/fetcher/mcp/en.json", size: 6819, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _yaoDataKbProvidersFetcherMcpZhCnJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x98\x4b\x6f\xdb\x46\x10\xc7\xef\xfe\x14\x84\xce\x41\x81\x26\x4e\x5b\xf8\x9a\x1e\x1a\xa0\x29\x8c\x22\x3d\x15\x85\xc0\x8a\x2b\x9b\x05\x25\xb2\xcb\x25\x82\xa0\x08\x20\x3b\x92\x2d\x3f\x64\xa9\x88\x1f\xb1\x6c\xf8\x51\x3f\x2a\xb4\x89\xac\xb4\xae\x65\x5b\x2a\xf4\x61\xc2\x5d\x92\x27\x7d\x85\x80\x5c\x52\xa2\x64\x5a\x22\xd7\xb2\x0e\x41\x8c\xe1\xcc\x7a\xfe\x3f\xce\xce\x0c\xfd\xdb\x04\xc7\xc5\x44\x21\x36\xc5\xc5\xe2\xf1\x97\xbc\xfc\x59\x2a\xa1\xc4\x1e\xd8\x46\x24\x22\x09\xd8\xf6\x67\x4f\xa6\x39\x5c\x3f\xc1\xb9\xba\xb9\x56\xc7\xc5\x4d\xbc\x5d\xa1\x1e\x02\x50\x13\x50\x54\x90\x28\xa7\x6d\x3f\x52\x39\xc4\x7b\x2b\xfa\xe5\xb2\x7e\xb9\x42\x36\x17\x71\xa1\x68\x56\xab\xed\x66\xfe\xd9\x93\xe9\x76\x73\xa9\x13\xdb\x6e\xae\xea\xff\xb7\x8c\xf5\x0a\x3e\xde\xb4\x5e\x57\xdc\x93\x5b\x3b\xe6\xe1\x2a\x5e\xc8\xe1\xea\x15\x39\xca\x18\xe7\x7f\x7c\xcc\xcc\xe3\xdc\x9c\x59\xbd\xb4\x32\x65\xb3\xb5\xc8\xd9\x59\x90\xb5\x13\x5c\x3c\xd2\x2f\xd7\xcc\xc5\xbf\x70\xb5\xac\x5f\x79\xa7\x3a\x67\x58\x3b\x0b\x24\x5f\xfa\x98\x99\xa7\xd9\x41\xf0\xab\x26\x42\x60\x4b\xfb\xd1\x56\xf8\x80\x8b\x21\x59\x96\x62\x3f\x39\x4f\x15\x28\x2b\x00\x22\x11\xa8\xb1\x29\xce\x86\xe0\x61\xa0\x3f\xdb\xfa\x5f\x2a\x8e\x7c\x15\x41\x31\x3d\xe3\x9c\x49\xed\x7e\x2e\x64\xb7\x80\x97\x0f\xf1\x76\x85\x7b\xfa\x75\xd7\xa5\x0f\x8c\xb1\x5e\xd1\xaf\xd7\xdc\x54\x1d\x89\x46\x39\xcb\xf5\x84\x93\x83\x45\xf3\x6c\xc1\x78\x77\xea\xa5\xef\x9e\x93\xe4\x35\x09\xd9\x67\x74\x8d\x09\x39\xa5\xc8\x69\x90\x76\xcc\x4f\xd3\x8a\x86\xba\xcf\x5e\x88\x02\x9a\xb5\xed\xb3\xbc\x94\xec\x9a\x65\x28\x00\x18\x9b\xe2\x3e\x77\x0c\xaf\xa8\x9d\xd2\x88\x22\x98\x62\xc6\xa5\x82\xf1\x67\x6d\x88\x58\x2a\x93\x4a\xf6\xc4\xfa\xc3\x6f\x93\x99\x04\x28\x31\x3b\x12\xad\x0f\x7b\xb4\xf2\x70\x46\x4b\x81\x34\x52\xe3\x29\x5e\x51\x6c\x79\x01\xc2\xe5\x9f\x7f\x01\x09\x14\x24\xbc\x38\x4f\x36\x6a\xe4\xed\x01\xae\x65\x6f\x15\xee\xbe\x5f\xc7\x15\xe7\x6b\x7e\xc9\x8e\xcd\x28\x67\xe9\x09\x3d\xda\x7d\x55\x9a\xe4\x25\x15\x04\x4b\xff\x0e\xa8\x08\x08\x01\xda\x93\x9a\x24\xdd\xd4\xfe\xa8\x63\x09\x28\x73\xc7\xae\x41\xa9\xc7\x70\xfb\xeb\xef\x25\xf1\xc3\xf7\xdf\x72\x54\x4e\xaf\x43\x3f\x8b\xd3\xb9\xee\xbb\xb7\x63\xfa\x6a\x80\x42\xba\x51\x09\xfd\xd5\x60\x67\xd9\xf3\x6c\x40\x3d\x0c\xa8\x89\x80\x3b\xe0\xab\x0d\xe7\x69\x0a\xa0\x59\x59\x60\x42\x42\x36\xaf\xc8\xbf\x1b\x21\xa0\x7c\xf3\xfc\xf9\x34\x47\xbd\xd9\x70\xb8\x49\x8e\x9a\xc8\xc3\x40\x22\xb3\x80\x17\x00\x54\x99\x90\xe0\xe3\x73\xbb\xb3\x87\x44\x42\xbd\xd9\x90\x78\x59\x8e\x9a\xc9\xa3\x40\x26\x48\x4c\x01\x59\x43\x4c\x4c\xcc\x8b\x1c\xd9\xba\x08\x73\x77\xce\xea\xe4\xc3\x3c\x75\x67\x83\xe2\xa5\x39\x6a\x28\x93\x81\x50\x34\x15\xc0\x38\x3f\x43\x4f\x8e\xce\xc5\x58\xaf\x90\x7c\x5d\x6f\x1c\x19\xa5\x85\x10\x74\x7a\xdc\xdf\x6f\x19\xef\x4e\xf5\xcb\x7f\x18\xbb\x4b\x37\xf1\x51\x93\x7a\x1c\x48\x2a\x29\x4b\x92\xfc\x22\x0e\x81\x20\x42\x90\x40\x6c\x77\xcb\xac\xef\x5b\xe5\xa2\xb5\x58\xc0\xd5\x32\x2e\xfd\x1e\x02\x59\xc7\xd7\x0d\xcd\x2c\x59\x87\x57\x6c\xc8\x6e\x28\x18\x35\xb8\x2f\xba\xe0\x26\xfc\xff\x7b\x73\x1c\x02\x55\x93\x10\xd3\x10\x37\x1a\x6f\xc8\xde\xee\x90\x21\xee\x43\xf2\xa6\x80\xaf\xd7\xf1\xfb\x2d\x52\xfd\x0f\xe7\x6b\xee\x38\x73\xce\x18\xe3\x24\x9f\x1c\x3a\xc9\x13\x72\x1a\xb1\xde\x3d\xba\xa5\x51\x8d\x03\x4b\x08\xaf\xe6\x70\xe9\xef\xbe\x0d\xd6\x4f\x68\x50\xd1\x78\x19\x8e\x67\x92\xdf\x69\xb3\x09\x4b\x82\xec\x66\x8c\x46\xde\xde\x6c\xda\xcd\x7c\xf7\x2e\x96\xd6\xda\xcd\xa5\x08\x64\xee\x63\xbf\x09\x9e\xe6\x2a\xe2\x91\xa6\xc6\x13\xb2\x00\xd8\xba\xf4\xf2\x05\xc9\xcc\x19\x07\x73\xa1\x11\x71\xce\x6c\xef\xc4\x45\xa0\xe2\xcf\x75\x3c\x73\x7d\x04\xbb\x4e\x58\x2c\x2e\x04\x6f\xe5\x09\xcb\xe4\xbe\xf6\x9c\xe0\x91\xee\xde\xd8\xb8\x0b\x80\xb5\xb1\x18\x1f\x1a\x78\x6f\x25\x3c\x1a\x5f\x50\xf4\xf6\x42\x93\x1d\xcf\x20\xf7\x7e\xa5\x04\xd2\x33\xce\x09\xac\x84\xac\x8d\x16\xbe\x3e\x8d\x48\x88\x06\x31\x10\x72\xd3\xbd\xc7\x99\xdd\xfb\x45\xc5\x0b\x3c\xe2\xd9\xe8\xe4\x5e\xdb\x1f\xdc\x85\x6a\x68\x34\xd6\x76\x16\x2f\x1f\x74\xe2\x22\xd0\xe9\x24\x3a\x6a\x2e\x5f\x06\x72\x01\x10\xca\x90\x09\x8a\xb5\xbe\x6d\x9e\x9d\x85\x27\xe2\xb8\xeb\xad\x43\x32\x77\x16\x01\x07\xcd\x6f\xd4\x2c\xbe\x1a\xb2\xd7\xa5\x65\x24\x26\xc5\x04\x6f\x4b\x60\xda\xee\xac\x4c\xd9\xd8\x3f\x09\xf5\x27\x1a\xb2\xbb\x6f\x6d\x9d\x3b\xdb\x2f\x8d\xc2\xc7\x59\xa3\xb4\x30\xc6\xad\xee\xf1\xd0\xad\x4e\x81\xf2\x0c\x04\x2a\xe3\x27\x42\x6b\x07\x5f\x9f\x52\x6d\x83\x3f\x35\x1d\x1e\xd4\x9d\xec\x9c\x93\xcd\x9a\x51\xce\xd2\x38\xda\x86\x07\x15\x4a\x27\xc5\xf1\xec\x75\x74\x2b\xb8\xc3\xf2\x12\x82\x07\x75\xc4\xc5\xb7\x64\xe7\x3c\x02\x09\x37\xb5\xf1\x6c\x72\xde\xb7\x17\x5b\x0b\xf1\x56\xd5\x10\x30\x3a\xbe\xfa\xf5\x8a\xde\xb8\x88\xc0\xa3\x93\xe2\x78\xb6\xb7\xbb\x76\xd4\x30\x2c\x68\x2f\x8d\x0a\xe2\x7e\x7a\xe9\xe4\x6d\xbd\x74\xc2\xfe\xf7\x6a\xe2\x53\x00\x00\x00\xff\xff\x5c\x96\x60\x27\xd3\x19\x00\x00")
+
+func yaoDataKbProvidersFetcherMcpZhCnJsonBytes() ([]byte, error) {
+ return bindataRead(
+ _yaoDataKbProvidersFetcherMcpZhCnJson,
+ "yao/data/kb/providers/fetcher/mcp/zh-cn.json",
+ )
+}
+
+func yaoDataKbProvidersFetcherMcpZhCnJson() (*asset, error) {
+ bytes, err := yaoDataKbProvidersFetcherMcpZhCnJsonBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "yao/data/kb/providers/fetcher/mcp/zh-cn.json", size: 6611, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
@@ -1195,7 +2352,7 @@ func yaoFieldsModelTransJson() (*asset, error) {
return nil, err
}
- info := bindataFileInfo{name: "yao/fields/model.trans.json", size: 14938, mode: os.FileMode(420), modTime: time.Unix(1730855738, 0)}
+ info := bindataFileInfo{name: "yao/fields/model.trans.json", size: 14938, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
@@ -1215,7 +2372,7 @@ func yaoLangsEnUsJson() (*asset, error) {
return nil, err
}
- info := bindataFileInfo{name: "yao/langs/en-US.json", size: 66, mode: os.FileMode(420), modTime: time.Unix(1730855738, 0)}
+ info := bindataFileInfo{name: "yao/langs/en-US.json", size: 66, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
@@ -1235,7 +2392,7 @@ func yaoLangsZhCnGlobalYml() (*asset, error) {
return nil, err
}
- info := bindataFileInfo{name: "yao/langs/zh-cn/global.yml", size: 1762, mode: os.FileMode(420), modTime: time.Unix(1730855738, 0)}
+ info := bindataFileInfo{name: "yao/langs/zh-cn/global.yml", size: 1762, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
@@ -1255,7 +2412,7 @@ func yaoLangsZhCnLoginsAdminLoginYml() (*asset, error) {
return nil, err
}
- info := bindataFileInfo{name: "yao/langs/zh-cn/logins/admin.login.yml", size: 94, mode: os.FileMode(420), modTime: time.Unix(1730855738, 0)}
+ info := bindataFileInfo{name: "yao/langs/zh-cn/logins/admin.login.yml", size: 94, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
@@ -1275,7 +2432,7 @@ func yaoLangsZhCnLoginsUserLoginYml() (*asset, error) {
return nil, err
}
- info := bindataFileInfo{name: "yao/langs/zh-cn/logins/user.login.yml", size: 90, mode: os.FileMode(420), modTime: time.Unix(1730855738, 0)}
+ info := bindataFileInfo{name: "yao/langs/zh-cn/logins/user.login.yml", size: 90, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
@@ -1295,7 +2452,7 @@ func yaoLangsZhHkGlobalYml() (*asset, error) {
return nil, err
}
- info := bindataFileInfo{name: "yao/langs/zh-hk/global.yml", size: 1762, mode: os.FileMode(420), modTime: time.Unix(1730855738, 0)}
+ info := bindataFileInfo{name: "yao/langs/zh-hk/global.yml", size: 1762, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
@@ -1315,7 +2472,7 @@ func yaoLangsZhHkLoginsAdminLoginYml() (*asset, error) {
return nil, err
}
- info := bindataFileInfo{name: "yao/langs/zh-hk/logins/admin.login.yml", size: 94, mode: os.FileMode(420), modTime: time.Unix(1730855738, 0)}
+ info := bindataFileInfo{name: "yao/langs/zh-hk/logins/admin.login.yml", size: 94, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
@@ -1335,7 +2492,267 @@ func yaoLangsZhHkLoginsUserLoginYml() (*asset, error) {
return nil, err
}
- info := bindataFileInfo{name: "yao/langs/zh-hk/logins/user.login.yml", size: 90, mode: os.FileMode(420), modTime: time.Unix(1730855738, 0)}
+ info := bindataFileInfo{name: "yao/langs/zh-hk/logins/user.login.yml", size: 90, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _yaoModelsAssistantModYao = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x97\x4d\x6f\xdb\x3c\x0c\xc7\xef\xf9\x14\x84\xcf\x7d\x80\x3e\x3b\x0c\x4b\x4e\xcb\xd6\x4b\xb1\x6e\x0b\xba\x16\x3d\x0c\x43\xc1\xd8\x8c\xa3\x55\x96\x3c\x89\x5e\x57\x14\xf9\xee\x83\x95\x37\x2b\x66\x5a\xab\xeb\x29\x00\x43\xfe\xf5\x23\x45\x4b\xd4\xe3\x08\x20\x33\x58\x51\x36\x81\x0c\xbd\x57\x9e\xd1\x70\x76\xd2\x9a\x35\xce\x49\xb7\xf6\x69\x6c\x2f\xc8\xe7\x4e\xd5\xac\xac\x89\xfe\x05\xc6\xb9\x26\x58\x58\x07\x9e\xad\x53\xa6\x84\xe9\x39\xec\x44\x21\xb7\x66\xa1\xca\xc6\x61\x1b\xe9\x01\x4d\x01\x15\x31\x16\xc8\xb8\x16\x66\x2c\x7d\x36\x81\xef\x99\x7f\xf0\x4c\x55\xf6\x23\x58\xe7\x8d\xd2\xac\xda\xa5\xd8\x35\x14\x4c\x8e\xb0\xb0\x46\x3f\x74\x6d\xde\x3a\xce\x26\x30\x1e\x8f\xc7\x1b\xb1\xb9\x6e\xb3\x6a\x33\x3c\x9a\x23\x40\x96\xdb\xaa\x22\xc3\x42\x26\xd9\x08\x60\x15\xb4\x72\xab\x9b\xca\x04\xb6\x10\xb4\xd6\xec\xa8\xaa\x62\x23\xd7\x2e\xfc\x50\x07\xdb\xf9\xd9\xde\xd6\x2f\x25\x74\xff\xee\x30\x5c\x1b\xf5\xab\xa1\x4e\xd5\x54\x41\x86\xd5\x42\x91\xcb\x82\xfb\xea\x44\x46\xd8\x45\xdc\x4a\x30\x9e\xdb\xfd\x78\x09\xd0\x54\x22\xd9\xeb\x90\x29\x79\x99\x4d\xe0\xcd\xe9\xe9\xce\x68\x1a\xad\x37\xd5\x5f\xa0\xf6\xb4\xfb\xa3\x09\xc9\x75\x76\x2d\x58\x95\x29\xe8\xcf\xc6\xf8\x64\x8a\x21\x99\xe1\xa9\x5d\x45\xee\xf2\x3e\x47\x2e\x62\x32\x05\x2d\xb0\xd1\x2c\xf5\x4e\x0a\x7b\xf8\x1d\xce\xfe\x25\x72\x17\xd9\x63\xc5\xe7\x36\xe2\x59\x40\xfc\x8d\x8c\x2e\xa5\x73\x0e\x02\x44\xc8\xb5\x2a\x5c\x5f\x5e\xbc\x22\x6a\x6e\x8d\xa1\x9c\x6d\x0a\xed\xc7\x7e\x8c\x08\x2c\x68\x0f\xea\xf1\x27\x81\xbb\x27\xe6\x70\xe4\x33\x29\x4a\x84\x16\xf5\x77\xd8\x6f\x8f\x97\x39\xbd\x8f\x6b\xe4\x65\x42\x0e\xb3\xc8\x5d\x84\x6f\xef\x0a\x2c\x09\x62\xe5\x7f\x6e\x92\x70\x1f\xf4\x40\x95\x61\x2a\xa3\x03\x6c\x4b\xfa\x2d\xf2\x97\x49\xad\x63\xb0\xae\xe8\xc6\xef\x8f\x87\xed\xcd\x93\x56\xcf\x70\xbb\xdd\x2a\xa1\x2f\xe6\xd6\x6a\x42\x23\xa0\x7e\x68\x63\xe0\x5c\xee\x8a\x9b\x25\xf1\x92\x1c\xf0\x52\x79\x50\x1e\x10\xc2\x12\xff\x29\x03\xc2\xf9\xb5\xc7\x8f\x4f\xea\xe1\xfd\xa0\x31\xa7\xa5\xd5\x51\x51\xb6\x29\xfc\xf4\x56\xe2\x9f\x49\x31\x62\xc5\x45\xf5\x94\x2e\xb0\xe1\xa3\xf0\x83\xd1\xbe\x1e\xfa\x8b\x58\x3d\xd5\x14\xa4\xda\xd9\xaa\xe6\xe1\x48\xb3\x43\x7f\xb9\x52\x87\x5e\x29\x48\xf7\xd6\xdd\x2d\xb4\xbd\x1f\xcc\x74\xd3\x0b\x10\xa1\xfa\xba\x29\x54\x77\xc6\xde\x6b\x2a\x4a\xe1\xde\x3c\x82\xf5\xa9\x1f\x21\x72\x09\xca\x29\x60\x6c\xad\x1e\xbe\x7f\x57\xb1\xb7\x3c\x87\xc4\x3e\x49\x30\xed\xd0\x3c\x98\x25\x72\x3e\x32\xfa\x96\x2f\x24\xd9\x4d\xe5\x09\x47\xd9\x65\x2f\x46\x84\xda\x4a\x83\x67\xe4\xc6\xbf\xe6\xf9\x45\xae\x52\xde\x27\x1d\x12\x33\x29\x46\xfe\x2a\x25\xcf\x94\x9a\x6a\x9b\xa3\xa6\xe1\x68\x17\x87\xfe\xf2\x24\xff\xff\x3b\x03\x3d\xe9\xa4\x69\xb1\x61\x5b\x21\x93\xf0\xd4\x38\xbe\xd9\xd3\x7e\x90\x3c\x34\x6e\xfd\x9e\xd8\xee\x97\x4d\x2f\xed\x5a\xca\x9a\x90\x65\x02\xf8\x67\x29\xec\xd8\x9d\xdb\x79\xf0\xa2\x01\xac\x6b\x42\x07\xca\xc0\x7b\xd8\xac\x0e\x5a\x79\xf1\x0a\x7e\x26\xa7\x11\xc0\xfa\x45\xec\x48\xaf\xdf\xd0\xed\xf3\x76\xfd\x42\x0d\xde\x14\x5e\xa8\x6b\x1f\xbb\x7d\x9f\x3f\x42\xc6\xaa\x22\xcf\x58\xd5\x7e\xbb\x48\x3b\x1e\x2d\xf8\xb6\x20\x4d\x1c\xa2\xc2\xd7\x03\xab\xd1\x6a\xf4\x37\x00\x00\xff\xff\xc2\x73\x39\x68\x12\x10\x00\x00")
+
+func yaoModelsAssistantModYaoBytes() ([]byte, error) {
+ return bindataRead(
+ _yaoModelsAssistantModYao,
+ "yao/models/assistant.mod.yao",
+ )
+}
+
+func yaoModelsAssistantModYao() (*asset, error) {
+ bytes, err := yaoModelsAssistantModYaoBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "yao/models/assistant.mod.yao", size: 4114, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _yaoModelsAttachmentModYao = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x57\x5f\x6f\xd3\x3e\x14\x7d\xef\xa7\xb8\xca\xf3\x7e\xd2\x7e\x48\x43\x6a\xdf\xc6\x06\x68\x12\x82\x09\x98\x78\x98\xa6\xca\x4d\x6e\x52\x23\xc7\x0e\xf6\x8d\xa0\x9b\xfa\xdd\x91\x9d\xa4\xb5\x53\xa7\x5d\x02\xe3\xa9\xea\xfd\x73\x7c\xce\xf5\xb5\x7d\xf3\x34\x03\x48\x24\x2b\x31\x59\x40\xc2\x88\x58\xba\x2e\x51\x52\x72\x66\xed\x82\xad\x50\x58\xc7\x65\xcf\x91\xa1\x49\x35\xaf\x88\x2b\x19\xba\x81\xd8\x4a\x20\xe4\x4a\x83\x21\xa5\xb9\x2c\x20\xe7\x02\x61\x8f\x6c\xe0\x27\xa7\x35\x94\x48\x2c\x63\xc4\x80\xc9\x0c\x58\x9a\xa2\x31\x90\x2a\x49\x5a\x89\x66\x09\x62\x85\x49\x16\x70\x9f\x98\x8d\x21\x2c\x93\x07\x67\x5d\xd5\x5c\x10\xb7\x8b\x92\xae\xd1\x99\x34\xb2\x4c\x49\xb1\xf1\x6d\x46\x69\x4a\x16\x30\x9f\xcf\xe7\x2d\xd8\x4a\x58\x85\x56\xed\xb0\x5e\x80\x24\x55\xa5\xfb\x1b\x11\x95\xcc\x00\xb6\x0e\x2d\x55\xa2\x2e\xa5\x63\xe7\xb2\x1a\x54\x0f\x97\x67\x2d\x9e\x5d\x7a\x53\x39\xdb\xcd\xf5\xde\x16\xa9\x2b\xf8\x7e\x8f\xc5\x9d\xe4\x3f\x6a\xbf\x7e\xc0\x33\x94\xc4\x73\x8e\x3a\x71\xf1\xdb\xb3\x38\x09\x5b\xf7\x65\x8c\x89\x21\xbb\x2f\x11\x36\xef\xec\x4e\x0d\xf0\x70\x3e\x6f\xe9\x7d\x36\xca\x82\xd6\xc9\x02\x5e\x5d\x5c\xec\x8c\xb2\x16\xa2\x2d\x79\xce\x84\xc1\x9d\xa3\x76\x72\xbc\xad\x72\x56\x2e\x33\xfc\xd5\x1a\x8f\x6a\xaa\x2b\xa1\x58\xe6\x2f\x7f\x52\xd4\xdd\x41\x4a\x5f\x55\x07\x0a\x0e\x2b\x22\xec\xfc\xfc\xb4\xb0\x67\x4b\xb0\x4d\x8e\x92\x96\xe1\x62\x27\x65\x5c\x35\x69\xf0\x35\x48\xeb\x4b\x69\xc1\xff\x8d\x12\xf7\xfb\x7c\x05\x1f\x83\xf0\x3e\xf3\x10\x6c\xc7\xf8\xe2\xaf\x32\xae\xb5\x18\xd3\x39\x9f\x3f\x0c\xf3\x0d\x9c\x3b\xba\xff\x9f\xc7\xf9\x46\xbb\xdd\x89\x38\xca\xd7\xbf\x66\x9f\xcf\xfb\x3a\x96\xd5\xe7\x1f\x85\x7e\x29\x1d\x23\x7b\xfd\x78\x8f\x8f\xeb\xed\x89\xf7\x8c\x41\xbd\xac\x18\xad\xc7\xb4\x8b\x41\x0d\xb7\x41\x8e\x7f\x8f\x1b\xd4\xff\x99\x0a\x53\x7b\x7d\x66\x90\xaa\xb2\x12\x48\xd8\xbc\x8e\xe1\x4a\xd3\x76\xe1\xa4\xa6\x91\x72\xbe\x90\xd2\xac\xc0\x61\x45\x97\x29\xd5\x4c\xb8\x67\xde\xc6\x59\x78\xf7\xee\xd3\xba\x51\x35\x42\xd0\xc4\xe3\x5c\x68\x55\x57\xe6\x50\xd3\x77\x13\x34\x75\xa7\xe8\x7d\x2f\xbc\xdf\x58\x7d\xb8\x5e\xc5\x8f\x53\x79\xe4\xd5\x21\x91\x95\x52\x02\x59\x94\x4b\x10\xef\x31\xf9\xb6\x46\x5a\xa3\x6e\xfa\x82\x1b\xb0\xc0\x15\x7a\xaf\x78\x86\x39\xab\x05\x4d\xaf\xda\x6a\x43\x18\x29\xda\x8a\x17\x37\x92\xb0\x08\xde\xf6\x8e\xee\x9b\x30\xa7\x5f\x39\xc3\x1f\x11\xb8\x84\x1e\xf4\x9f\xef\xb0\x21\x46\x75\x84\x2c\xca\xba\x8c\xf6\x6c\x18\xde\xe7\x59\x69\x65\x07\x4d\x3b\x95\xf6\x91\x55\x37\xcc\xde\xb7\x16\xe8\xa6\x0d\xff\x78\xec\x8c\xde\x8e\x74\x7a\x7a\x71\xce\x16\x86\x35\xa9\xcb\x9c\x71\x11\xc9\xef\xec\xad\xf9\x21\xb2\xe3\x11\x46\x23\xce\xbf\x56\x85\x46\x13\xa9\xe6\xe0\x1d\x70\x7b\x90\xe2\x55\xf4\x76\x5f\xcc\x0e\x1a\xb8\xcc\x95\x2e\xd9\xc0\xab\x72\xe4\x8a\x3e\xca\x1c\xb5\x56\x63\x46\xbe\xb7\x61\xbc\xc7\xd9\x79\x4e\xb0\x7c\x3d\x91\x65\x2a\xb8\x9d\xeb\x46\x4d\xdc\x57\x2e\x67\x68\xe6\x6e\xbd\x53\xa6\xee\x69\x4f\x84\xaa\x50\x8e\xe2\xff\xa9\x42\x39\x40\xbe\x71\xbd\x04\xf9\x59\x7b\x38\x12\x8d\xc2\x6d\xa2\xfd\x12\x7b\x6a\x3e\xcd\x9a\x53\xe7\x3e\xcd\x9a\x98\xdd\xb9\x7e\x82\x84\x78\x89\x86\x58\x59\x99\x6e\x11\xfb\xa5\x98\xd3\x32\x43\xfb\x16\x9b\xee\x9e\x82\xed\x6c\x3b\xfb\x1d\x00\x00\xff\xff\x6d\x48\xa5\x86\x19\x0f\x00\x00")
+
+func yaoModelsAttachmentModYaoBytes() ([]byte, error) {
+ return bindataRead(
+ _yaoModelsAttachmentModYao,
+ "yao/models/attachment.mod.yao",
+ )
+}
+
+func yaoModelsAttachmentModYao() (*asset, error) {
+ bytes, err := yaoModelsAttachmentModYaoBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "yao/models/attachment.mod.yao", size: 3865, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _yaoModelsAuditModYao = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x58\xc1\x6e\xe3\x36\x13\xbe\xe7\x29\x06\x3a\xe5\x07\x84\x1f\xdb\xa2\x39\x24\xb7\x34\x29\xb0\x01\xb6\x6d\x90\x38\xe8\x61\xb1\x10\x68\x72\x24\xb3\xa0\x48\x2d\x49\x65\xe3\x2e\xf2\xee\xc5\x50\x92\x4d\xd9\x94\x13\x79\x8d\x9e\x04\x91\xfc\x66\xe6\xe3\x0c\x67\xc8\xf9\x7e\x06\x90\x69\x56\x63\x76\x05\x19\x6b\x85\xf4\x59\x4e\x43\x8a\x2d\x51\xd1\xd8\x35\x8d\xc1\x27\x53\x75\xe3\x02\x1d\xb7\xb2\xf1\xd2\xe8\xed\xac\x32\x15\x78\xb6\x54\x08\xa5\xb1\xe0\xbc\xb1\x52\x57\xe0\xd6\xce\x63\x0d\xa6\x41\xcb\x68\x3d\x04\xf1\x60\x91\x1b\x2b\x5c\x27\xce\xb3\xca\x65\x57\xf0\x39\xeb\x16\x67\x5f\xc2\xe8\xb2\x95\xca\x4b\x52\xe0\x6d\x8b\x61\xc8\x22\x13\x46\xab\x75\x3c\xe6\x8c\xf5\xd9\x15\x5c\x5e\x5e\x5e\xf6\xc2\x96\x8a\x78\x10\xa7\x5d\x56\x85\xea\x19\x00\x64\xdc\xd4\x35\x6a\x9f\xb0\x3f\x3b\x03\x78\x0d\xb2\xb8\x51\x6d\xad\x83\x6d\x01\xd4\xc9\x8c\xa4\x4a\xd1\x8b\x23\xc5\xeb\x26\x8c\xdd\xdd\x6e\xc7\x76\x36\x30\x9e\x8a\xf4\x3f\x69\xf9\xb5\xc5\xd1\xce\x80\x14\xa8\xbd\x2c\x25\xda\x2c\x20\x5e\xf3\xb4\x05\xf8\x8c\xda\x17\x29\x3b\x9c\x27\x07\x24\x6c\xf9\x8d\x20\x6f\xd8\x12\xc4\x46\x46\x04\x9f\x72\x63\x2d\xaa\xe0\xc6\x48\x2c\xea\xca\xaf\xb2\x2b\xf8\xe9\xc3\x87\xcd\xa0\x6e\x95\xea\xfd\x30\x38\x2a\x8c\x4b\x2d\xf0\xa5\x1f\x3c\x48\x6b\x13\x2f\x33\x78\xfd\xb9\x8f\x89\x88\x6d\x66\x81\x74\xc0\xb9\x32\x95\xd4\x39\x08\x54\xe8\x31\x87\xda\x08\x59\xae\x73\x40\xcf\xff\xff\xbf\xf7\xb3\x2b\x99\x72\x47\xd0\xe3\xcc\x63\x65\xec\x7a\x06\xbb\x9b\x3d\xc8\x5e\x04\x0f\x52\xe1\x9c\xb5\x7e\x45\xae\xe3\x81\x71\x0e\xf4\x6f\xac\xfc\xa7\xff\x15\xcc\xb3\xbc\x3f\x9a\x29\xb2\x17\x27\xf4\xa4\xc3\x67\xb4\xd2\x27\xa8\xa2\x6e\xeb\x04\xd1\xc7\x3d\x40\x44\xb4\x8b\xdd\x41\x26\x28\x7c\x46\xb5\x5d\x68\x86\x94\xf4\x39\x53\xe6\x5b\x96\x43\x56\xa3\x90\xa4\x05\xb2\x95\xac\x56\xf4\xe5\x56\xd2\xbe\xa8\x2e\xcb\x04\x98\xc0\x92\xb5\x2a\xc8\x1f\xd6\xcf\xa6\xd9\x3a\xb4\xf3\x8e\xe1\x93\x43\x3b\x79\x0a\x69\x8e\xb2\x28\xda\x67\xc9\x11\x18\xe7\xa6\x1d\x1d\xc8\x84\xd7\x7e\xbe\xb8\x38\x61\x88\x06\x42\xe1\x67\x26\xa5\x3f\x46\x98\x5d\x52\x42\xba\x46\xb1\x35\x8c\x25\x6f\x39\x4c\x27\x91\x37\xa2\xcc\x39\x69\xf4\x3c\x0f\x3c\x76\xa0\x29\x27\x0c\xd3\xc7\x6c\xfa\x71\x67\x85\x2b\x19\xb2\x79\x33\x27\x2f\x04\x0c\xdc\xdd\x27\x39\x6c\x66\x81\x09\x61\xd1\xb9\x04\x85\x5f\x4e\xc8\x20\x44\x0d\xab\x48\xfb\xcc\xb0\xb9\x1e\x83\xf6\x39\x90\x68\x08\xa2\x41\xea\xd2\xd8\x7a\xaa\x10\x5d\x1c\x19\x43\x9e\xd9\x0a\x7d\x61\xd1\x99\xd6\xf2\x39\x71\xbf\x08\x48\x78\xd8\x43\x46\x2c\xfa\x35\x83\x74\x58\x22\x5d\x8f\xba\x3a\x87\x02\xe6\x32\x99\xef\x9a\x41\x73\x11\xe8\xbc\x9f\xdc\xc0\x0a\x16\x23\x5c\x4c\x6d\xdd\x20\x98\x72\xcb\xed\xbc\x94\x0a\xf3\xee\x36\x95\x03\x37\xba\x94\xd5\xec\xd2\x7a\x64\xb9\x99\xeb\xbb\xc7\x69\x97\x6d\xaf\x0c\x03\xaf\xa7\xbb\x1c\xae\xef\xef\x72\xb8\xf9\x74\x77\xa8\x80\x9e\x94\x12\x6b\x1a\xd5\x57\xf2\x19\xbc\xae\x53\xa8\xf8\xca\xb0\x9d\x8f\x2b\xcd\x44\x5e\x3e\x29\xa1\x95\x71\x7e\x66\x65\xf9\xb8\x07\x89\xa8\x0c\x93\x14\x83\x7e\x85\xd1\x63\x63\x37\x1a\xde\x93\xb6\x0f\x87\x57\xcb\xf9\x28\x8b\x0e\x96\x2f\x8d\x51\xc8\x74\x2a\xc0\x76\x21\x91\xe5\x7f\xad\xd0\xaf\xd0\xee\x58\xfd\x8d\x39\xe8\x15\x95\x6d\x74\xbd\xf9\xf1\xa2\x8e\x2f\xd2\x17\xdc\x88\xc4\xd6\x4b\xed\xb1\x1a\x95\xb8\xcd\x7b\xe1\x45\x7a\xb8\x19\x81\xe2\x2a\xd9\x3d\xf0\x38\x53\x0a\x2c\xfa\xd6\x6a\x18\x2b\x98\xb3\xbd\x16\x5d\x63\xb4\xc3\xc2\xcb\x54\x78\x4c\xdb\xf8\xd0\x03\x61\x21\x27\x82\x64\x7b\x98\x07\x25\x40\x4a\x40\x6a\xa8\xa5\x52\xd2\x21\x37\x5a\xb8\x63\xed\xfe\xda\xa2\x9b\xf9\x0e\x7b\xe8\x40\x53\xd7\x8f\x8f\x8b\xc5\x3d\xf4\x82\x0f\xdf\x41\x4e\x7a\x38\xbd\x65\x1c\xe7\x11\x59\x10\x64\x8a\xc6\xad\x24\xdc\xb2\xa5\x22\x47\xb2\xa9\xea\xfd\x77\x6c\xe8\xa5\x53\x2c\xb1\x34\x36\x11\x4e\x7f\x3b\x93\x3a\xb0\xb7\xcc\x33\xf8\x75\x07\x13\x33\xa2\x79\xe7\x99\xa7\x22\x4e\xab\x20\xf1\x5a\x9d\x13\x3d\xc1\x48\x56\xfa\x78\x3b\xde\x63\xe3\xf5\x18\x92\x36\x31\xc8\xfd\x61\x0b\xd1\x33\xa9\x12\x69\x6f\xca\xbc\xdd\xf5\x71\xe1\x11\x42\x92\x25\x4c\x45\x29\xaf\x57\x00\x4c\x0b\x68\x98\x65\x35\x7a\xb4\x47\x1e\x46\xb4\xd6\xd8\xa2\x46\xe7\x58\x95\xf0\xba\xc7\x17\x9f\xca\x72\x84\x82\xdf\x77\x51\xf1\xdb\x33\xac\xe8\xe5\x82\x2c\x23\xf3\x4b\x26\x15\x8a\xe3\xcc\x0d\xdd\xaf\xf7\x6e\xec\x62\xb4\x38\xbd\xab\x24\xb0\xeb\xd7\x74\xfd\x80\xfe\xd9\xff\x86\x75\x67\x00\x5d\xdf\x6d\x68\xf1\xb8\xec\x0a\xbe\x77\x7d\xb0\x70\xdc\xf0\x60\x1f\xec\xa5\x08\x57\xff\x44\x9c\x45\x4d\xb4\xed\x2b\x39\xee\xf0\x7c\x49\xe4\x79\x3a\xde\x07\x77\x8d\x34\x6e\x6e\xb4\x6f\x68\xdd\xbb\xd8\x9f\x44\x3b\x55\x8f\x40\x3a\xad\x94\x5b\xa4\x8b\x7d\xc1\x3c\xe9\x1b\x88\x1f\xd6\xb6\xf1\xc1\xa6\x91\xd1\x77\x31\x49\x97\xf3\xac\x6e\xdc\x28\x13\x66\xce\x94\xbe\xe8\x5a\x58\x6e\xb8\x15\x9c\x91\xa0\xd7\xb3\x7f\x03\x00\x00\xff\xff\xcb\x12\xf5\xa3\xd4\x15\x00\x00")
+
+func yaoModelsAuditModYaoBytes() ([]byte, error) {
+ return bindataRead(
+ _yaoModelsAuditModYao,
+ "yao/models/audit.mod.yao",
+ )
+}
+
+func yaoModelsAuditModYao() (*asset, error) {
+ bytes, err := yaoModelsAuditModYaoBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "yao/models/audit.mod.yao", size: 5588, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _yaoModelsChatModYao = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x54\xbb\x6e\xdb\x40\x10\xec\xf9\x15\x8b\xab\x5d\x18\x01\x5c\x48\x5d\xe0\x34\x29\x52\x25\x41\x8a\xc0\x30\x96\xba\xa5\x78\xc0\x3d\x94\xdb\x25\x10\x41\xd0\xbf\x07\xb7\x24\x25\x32\xa6\x2d\xd3\xed\xec\x63\x66\xf6\xc8\x39\x55\x00\x26\x62\x20\xb3\x05\xb3\x6b\x51\xcc\x5d\x41\x3c\xd6\xe4\x0b\xf4\x78\x81\x2c\xf1\x2e\xbb\x83\xb8\x14\xc7\x02\x08\xd6\x9e\xa0\x49\x19\x58\x52\x76\x71\x0f\x65\x05\x04\x12\xb4\x28\x08\x18\x2d\xb8\xd8\xa4\x1c\x50\xe7\x74\x91\xe0\x9e\xcd\x16\x7e\x1b\x3e\xb2\x50\x30\x4f\x8a\xd6\x9d\xf3\xe2\xca\x6a\xc9\x1d\x29\x94\x09\x6d\x8a\xfe\x38\xc5\x38\x65\x31\x5b\xd8\x6c\x36\x9b\x61\x59\xed\x8b\xf6\xe2\x63\xc9\x09\x80\xd9\xa5\x10\x28\xca\x5c\xb4\xa9\x00\xce\xba\x61\x97\x7c\x17\xa2\x2a\xd2\xfe\x7e\xd3\x64\x97\xb3\xc3\xa6\x42\x77\x3c\x28\xf6\xf5\xcb\x15\x9b\xdd\x0a\xa6\x95\x09\xf3\xcf\xe8\xfe\x74\xd4\x9f\xc7\x59\x8a\xe2\x1a\x47\xd9\x68\xe7\xf9\x6e\x99\xb8\x34\x3f\x2f\xb1\xb3\x94\x5b\xaf\x54\xf0\xf8\x1f\xf5\x75\x9a\xe2\x5e\x5a\xb3\x85\x4f\xf7\xf7\x17\x30\x76\xde\x0f\xa7\x6d\xd0\x33\x5d\x0a\x9d\x1a\x99\x3c\x89\xa2\x2e\x5a\xfa\x3b\x80\x6f\x7a\x12\x27\x9e\x56\x38\xfa\x31\xef\x7f\xf1\x96\xf3\xf2\x2d\x2b\x37\xe5\x21\xb3\x63\xc1\xb8\xf2\xee\x9f\xc7\xb1\xd7\x8e\x7f\x6d\xf8\xc8\x0b\x7c\xec\xd4\xbc\xca\xc2\x77\x62\x76\x29\xbe\x66\x60\x2c\xbf\x2d\xff\xe1\xe1\xf6\x07\xb4\x42\xbf\x2f\xe4\x2f\x2c\xd4\x29\x79\xc2\xb8\xe4\x41\x27\xe0\x5b\xb2\xcb\x9f\xcc\xaf\x96\xa4\xa5\x0c\xd2\x3a\x06\xc7\x80\xd0\x73\xc0\x24\x2e\x34\xe9\x1a\xec\xbc\xbc\x43\x79\x05\xf0\x34\x44\x95\xd7\x84\x2b\x31\x72\xea\x73\x45\xbb\x49\x73\xa5\xef\x49\x63\x76\x9e\xca\x6f\x10\x88\x05\xc3\x81\xc7\xe7\x2d\xd1\xd6\xc8\xb3\x25\x4f\xa2\x53\xca\x0d\xe7\xea\x5c\xfd\x0b\x00\x00\xff\xff\x42\xa9\x06\x32\xa4\x05\x00\x00")
+
+func yaoModelsChatModYaoBytes() ([]byte, error) {
+ return bindataRead(
+ _yaoModelsChatModYao,
+ "yao/models/chat.mod.yao",
+ )
+}
+
+func yaoModelsChatModYao() (*asset, error) {
+ bytes, err := yaoModelsChatModYaoBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "yao/models/chat.mod.yao", size: 1444, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _yaoModelsConfigModYao = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x54\x3d\x6f\xdb\x30\x10\xdd\xf5\x2b\x0e\x9c\x33\xa4\x05\x3c\xd8\x6b\xb2\x14\xdd\x8a\x7e\x0c\x45\x50\x50\xd2\x49\x66\xcb\x0f\x97\x3c\x16\x35\x0c\xff\xf7\x82\x27\x45\xa5\x44\x29\x4d\x8a\x8c\x7e\xbc\x7b\xf7\xde\xf9\xf4\x2e\x15\x80\xb0\xd2\xa0\x38\x80\x68\x9c\xed\x54\x2f\x6e\x12\xa6\x65\x8d\x3a\x81\x77\x0c\x46\x2f\x49\x39\x3b\xbc\xb5\x18\x1a\xaf\x4e\x0c\x2c\x2b\x80\x64\xad\x11\x3a\xe7\x21\x90\xf3\xca\xf6\x10\xce\x81\xd0\x40\x40\x22\x65\xfb\x00\xd2\xb6\x70\x92\x5e\x1a\x24\xf4\x61\xa0\x24\xd9\x07\x71\x80\xaf\x62\x28\x16\x0f\x8c\xd6\x51\x69\x52\x69\x08\xf9\x88\x0c\x79\x94\xad\xb3\xfa\x9c\x63\xc1\x79\x12\x07\xd8\xef\xf7\xfb\x91\xac\xd6\xc9\x50\x32\xb7\x6e\x0f\xd2\x2f\x63\xd0\xd2\x86\x01\x51\x01\x5c\x99\xac\x71\x3a\x1a\xcb\xe2\xb8\x71\x20\xcd\x68\x55\x3b\x52\xa6\xc9\xe7\x13\x63\xef\xee\xff\x62\x8b\x4d\x42\xfe\x96\x89\xf8\x64\xd5\xcf\x88\xd0\xcc\xb4\xa8\x16\x2d\xa9\x4e\xa1\x17\xdc\x72\xbd\x59\xd7\xf0\x03\xcf\xa5\x88\x40\x69\xfd\x2b\x42\xde\xe7\xd5\x9b\x7b\x98\x71\x6a\xb4\x3d\x1d\xc5\x01\xde\xee\x76\x13\x68\xa3\xd6\xe3\xaa\x3b\xa9\x03\x4e\x0f\x91\xbd\x64\x7f\x11\xa3\xca\xb6\xf8\x7b\x04\x9f\x74\xf3\x4b\xea\x88\xa5\x9f\xef\x61\x3c\xc0\xb9\x9b\xcf\xf3\xea\x4d\x3f\x0b\xd6\x4c\xfc\x3f\x05\xe5\x07\xff\xfc\x35\xdf\xaf\x75\x6d\xca\x5b\x9d\x31\xad\x7d\x77\x7b\xfb\x5f\xca\x1b\x49\xd8\x3b\xff\x92\xeb\xb8\x2b\x5a\x36\x35\x97\xec\x93\xe0\x37\xdb\x82\x5f\x7e\x10\xac\xf9\xf9\x0e\x3e\xce\xca\x9f\x3e\x08\x98\x73\x67\x0b\x7f\x3d\xf9\x53\x66\x15\x16\x6a\xe7\x34\xca\xb5\xab\xfe\x50\xf4\x64\x3e\xbe\x1c\x91\x8e\xe8\x97\x61\x11\xa0\x9c\xd4\x62\x27\xa3\xa6\xe2\x13\x2d\xc5\x57\x00\x0f\x63\xc4\x6a\x26\x4c\x99\x77\x19\x42\x90\xab\x91\x43\x70\xa8\x71\x8f\xe9\x7f\x01\x41\xca\x60\x20\x69\x4e\xe1\x71\x43\x29\x92\x3b\xfa\xd6\xa2\x46\xe2\x2e\x9e\x0d\xd7\xea\x5a\xfd\x09\x00\x00\xff\xff\xdd\x42\xa0\xf8\x71\x06\x00\x00")
+
+func yaoModelsConfigModYaoBytes() ([]byte, error) {
+ return bindataRead(
+ _yaoModelsConfigModYao,
+ "yao/models/config.mod.yao",
+ )
+}
+
+func yaoModelsConfigModYao() (*asset, error) {
+ bytes, err := yaoModelsConfigModYaoBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "yao/models/config.mod.yao", size: 1649, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _yaoModelsDslModYao = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x57\xd1\x6b\xdb\x3c\x10\x7f\xcf\x5f\x71\xf8\xa9\x05\xf7\xa3\x7c\xd0\x87\xe4\xf1\x6b\xf9\xa0\xa3\xeb\xc6\xd2\x32\xc6\x28\x45\xb1\xce\xb6\x86\x2c\x79\xd2\x99\x35\x0b\xf9\xdf\x87\x64\x3b\xb1\x1d\xbb\xb1\xb3\x51\xf6\x12\xc8\xf9\xee\xf4\xfb\xfd\x74\x77\x92\x36\x33\x80\x40\xb1\x0c\x83\x05\x04\xdc\xca\x20\x74\x06\xc9\x56\x28\x9d\xe5\x66\x79\x57\x5a\x38\xda\xc8\x88\x9c\x84\x56\x95\x1d\x88\xad\x24\x42\xac\x0d\x58\xd2\x46\xa8\x04\xbe\x30\x0d\xee\x4b\xa4\x55\x2c\x92\xc2\x30\xe7\x6e\xcb\x04\xc4\x12\x1b\x2c\xe0\x6b\x60\xd7\x96\x30\x0b\x9e\xbc\x75\x55\x08\x49\xc2\xa5\x24\x53\xa0\x37\x19\x64\x5c\x2b\xb9\x6e\xda\xac\x36\x14\x2c\x60\x3e\x9f\xcf\xab\x64\x2b\xe9\x10\x6f\x3a\xd8\x21\x88\x74\x96\xa1\xa2\x16\xc6\x00\xb6\x3e\x2a\xd2\xb2\xc8\x94\x47\x31\x03\x00\xd8\xf8\xdf\x06\x7f\xc1\x3d\x56\x6f\xa3\x75\xee\x6d\xb7\x37\x7b\xdb\x4e\x96\xa6\xb1\xb1\xe2\xa3\x12\xdf\x0b\x04\xc1\x51\x91\x88\x05\x9a\xc0\x3b\x6d\xc3\xfe\xe5\xb8\x95\xcf\x7d\x4b\x5a\x72\x6a\xf6\x2c\xeb\x18\x0d\x2c\xed\x3e\x35\xd6\xdd\xc7\xa2\x4a\x28\x0d\x16\xf0\xef\xe5\xe5\xce\xa8\x0a\x29\x2b\x05\x63\x26\x2d\xee\x3e\x14\x9e\x40\x43\x79\x6f\x15\x8a\xe3\x4b\x65\x7c\x95\x90\x27\x30\x9e\xce\x43\xcb\xbd\xbb\x73\xeb\x1c\xe1\x2c\xd3\x1c\x65\x08\x2c\x17\x61\xb9\x97\xa1\x2b\xb8\x2c\x04\x29\x2c\x85\x10\xa5\xcc\x50\x08\x9c\xd9\x74\xa5\x99\xe1\xa1\x2b\x3d\x85\x11\x69\x13\xfa\xaa\xc4\x10\x6c\x94\x22\x2f\x7c\xa4\xd4\x3f\x42\xc8\x45\x8e\x21\x30\x91\x44\x21\xd8\x42\x84\x80\x14\xfd\x73\xde\xa3\xd8\xd5\x08\xc1\x46\x4b\x53\x92\x1e\xaf\xcd\x5d\xdb\xbf\x23\x0e\x17\x36\x97\x6c\x0d\x9d\xac\xd3\x36\x7b\x34\xf6\x9c\x51\x3a\x01\xfa\xc7\x96\x7b\x07\x79\x2c\x24\x42\x3b\x61\x43\xf0\x5e\xd4\xa7\xd5\xa2\x1f\x19\x07\xa0\x85\x22\x4c\x5a\xfd\x51\xa3\x5e\xb6\xfc\x1b\xa8\xdd\x07\xd0\x86\xa3\xf1\xb3\x8e\x33\x62\xe0\x92\xb7\xc8\x0f\xc1\xe5\x18\xb3\x42\xba\x3c\x97\xd3\x29\x34\x67\xee\x01\x13\xc2\x17\xea\x1b\x11\x7d\x31\xdd\xea\xe9\xf3\xe9\x30\x38\xa2\x6d\x61\xa2\x9e\x4e\x1f\xc0\xb4\xec\xb8\x77\xe0\x94\xd9\x5c\xe7\x92\xb3\x9e\x84\xc8\x9f\x2e\x07\x78\xbe\xd9\x26\xc3\xfd\xdc\x69\x39\x1f\x9c\x18\x89\xf5\x1b\x1d\x31\xc2\x44\x1b\xf1\xd3\x9f\x62\xc0\x14\x77\xc5\x4b\x68\x5e\xdb\xf8\x63\xf3\x7e\x34\xc6\xfa\xe0\xed\x83\xd8\x3a\x5e\x41\x28\x78\xb7\xfc\x70\xef\xe7\x22\x3b\x51\xbe\x8c\x44\xd6\xb7\x9f\x22\x43\x4b\x2c\xcb\x7b\x00\xbe\xd7\x5c\xc4\x22\x2a\x31\x3c\xb4\xc2\x1b\x70\xff\x77\xed\x9e\x35\x5d\x5d\x4e\x38\x73\x02\xbb\x51\x70\xb1\x62\x16\xb9\xbb\x34\x9c\x1f\x6f\xa6\xd1\x8d\x13\x4d\xa7\x73\x6d\x70\x0c\x95\xa8\x76\x7b\x0b\x1a\xbb\x9b\xd0\x01\x93\x95\xd6\x12\x59\x5f\xdd\x7c\x3a\x88\xe9\x14\x4f\x9d\x14\x2c\x31\x2a\x1a\x7d\xb0\x1f\x55\x27\x1e\x13\xfe\x2e\xf7\x2c\x7a\x66\xd5\x30\xdc\xff\x5c\x0c\xdc\xf6\xcf\xaa\xcf\x29\x52\x8a\x06\x28\x15\x16\x84\x05\x06\x7e\x89\x0b\xa1\xa0\xd5\x1e\xbf\x8d\xfc\xef\x9b\x67\xbe\xce\xb4\x99\x76\x3d\xbc\x2e\x83\x86\xae\x88\xf5\xe7\xc2\x62\xdb\x67\x7f\x6d\xb8\xba\xfa\x83\x4d\x58\x51\xf0\xff\xa7\x93\xb8\x67\x03\x7d\xd8\xa2\xd1\x4e\x7e\xec\xfe\x73\x14\x73\x91\x73\x46\x38\x51\xf6\xc7\x32\x68\x48\xf6\x3b\x66\x09\xaa\xc4\x6f\xa5\x7d\xcd\x63\xa2\xf6\x35\x93\x41\xed\x0f\xb9\x9c\xba\x01\x33\x80\xa7\xea\xb9\x27\xab\x67\xe2\x02\x36\xe5\x3b\xcd\xd3\x44\xff\x4e\x2b\x7d\x74\xfd\xee\xdc\x34\x86\xb8\xad\xd5\x71\xfd\x1b\xd3\x33\x47\x89\xe4\xa3\xca\x29\x00\x41\x8e\x26\x13\xd6\x96\xa1\xce\x15\xb6\xb3\xed\xec\x57\x00\x00\x00\xff\xff\x17\x62\x8f\xac\xf2\x0e\x00\x00")
+
+func yaoModelsDslModYaoBytes() ([]byte, error) {
+ return bindataRead(
+ _yaoModelsDslModYao,
+ "yao/models/dsl.mod.yao",
+ )
+}
+
+func yaoModelsDslModYao() (*asset, error) {
+ bytes, err := yaoModelsDslModYaoBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "yao/models/dsl.mod.yao", size: 3826, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _yaoModelsHistoryModYao = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x96\x4d\x6b\xdb\x4c\x10\xc7\xef\xfe\x14\xc3\x9e\x9e\x07\x02\x09\x85\x1c\xec\x5b\x48\x0b\x2d\x34\x3d\x24\x0d\x3d\x94\x10\xd6\xda\x91\xb5\x65\xb5\xeb\xee\x8c\x8a\x4d\xf0\x77\x2f\xbb\x92\x2c\xd9\x5e\x99\x48\x6d\x7a\x0a\x99\x97\xff\xfc\x66\x34\xbb\xde\x97\x19\x80\xb0\xb2\x44\xb1\x00\x51\x68\x62\xe7\xb7\xe2\x22\x18\x8d\x5c\xa2\x09\xd6\xdb\x42\x32\x7c\xec\xbb\x14\x52\xe6\xf5\x9a\xb5\xb3\xfb\x80\x26\x17\x58\x2e\x0d\x42\xee\x3c\x84\xff\xb5\x5d\x81\x42\x96\xda\xa0\x82\x2c\xc4\x95\x48\x24\x57\x08\xda\xe6\xce\x97\x32\x6a\x44\x51\x96\x2b\x12\x0b\xf8\x2e\x68\x4b\x8c\xa5\x78\x8a\xd6\x65\xa5\x0d\xeb\x50\x86\x7d\x85\xd1\xe4\x51\x2a\x67\xcd\xb6\x6f\x23\xe7\x59\x2c\x60\x3e\x9f\xcf\x1b\xb1\xa5\x09\x2d\x85\xf6\x06\x1a\x04\x10\x99\x2b\x4b\xb4\x9c\xee\x41\xcc\x00\x76\x51\x2c\x73\xa6\x2a\x6d\x84\x8b\x79\xb5\x68\x4f\x56\xab\x46\x31\x54\xde\xae\xa3\xed\xd3\xfb\xce\xb6\x1f\xe5\x3d\x66\xce\x2b\xe8\xfb\x7a\x0c\x8f\x56\xff\xac\x10\x7c\x1d\xa4\x15\x5a\xd6\xb9\x46\x2f\x62\xec\xee\x22\x5d\x9c\x52\xd5\x89\xc3\xe8\x13\x04\x0f\x48\xa4\x9d\x1d\x42\x68\xdd\xbd\xe2\x9d\x06\xda\x15\x17\x62\x01\xef\xae\xaf\xf7\x46\x5b\x19\xd3\xcc\x3a\x97\x86\x70\xef\xd0\x56\xe1\xa6\xf9\x44\x67\xf9\xb3\x51\xfc\xf1\x3b\x0d\xc0\x47\xdf\x79\xf2\xab\xab\x14\x79\xbb\x46\xe3\xc0\xab\x51\xe0\x8f\x84\x7e\xf0\xc3\x07\xdf\x94\x91\x4f\x03\xf7\xce\xe0\x08\xf2\xfb\x83\xf0\x1e\xf6\x5d\x73\x94\x83\x1e\xfc\x57\x11\xfa\x4b\x49\xa4\x89\xa5\xe5\xcb\xfa\x14\xff\xff\xd6\x1f\x21\xfe\x1d\xd7\x0b\x7c\x39\xc8\xe9\x35\x14\xbd\x4a\xd3\xda\xc8\x2d\x1c\x2a\xbf\x86\xfe\xfc\x9a\x3b\xcb\xa1\xcc\x09\x2b\xe3\x86\x13\xa4\xed\x70\x6f\x8f\xf3\x7a\xbc\x5f\x71\xc3\xd0\x08\x83\xcb\x81\x0b\x6c\xef\x57\x31\x1d\x72\x93\x80\xfc\x41\xcd\x35\x7d\x74\x1a\x8f\xe3\x13\xdb\xd1\x68\x82\x92\x2c\xa7\x51\xed\x97\xea\x79\xd4\x89\xbb\x69\xd3\x86\x8e\x5d\x17\xf0\xef\x2e\x8d\xae\x97\x91\x9b\xdb\xc1\x0e\xae\x6f\x17\xf2\x46\x3b\xdc\xc1\xcb\x5f\x92\xa5\x9f\x84\x7f\x73\x94\x9a\x6c\xa0\xd6\x87\xc7\xfb\xcf\x7f\x11\x3f\x94\xd1\xce\xd2\xab\xd7\xfb\xee\x24\xe1\x60\xbf\xa3\xb3\xff\x90\x01\x6d\xff\xfc\x0c\x92\x36\xc9\x7b\x62\xe9\x9c\x41\x99\xc2\x7c\x88\x19\x70\xe7\x54\x7a\x2f\xbe\x15\xc8\x05\x7a\xe0\x42\x13\x68\x02\x09\x75\x8d\x53\x4e\x85\xb9\xac\x0c\x4f\xff\x31\xc7\xcd\x5a\x7b\x54\xcf\x32\x75\xd1\xe9\x12\x89\x65\xb9\x4e\xb4\xf0\xa1\xce\x83\x9b\xf4\x5d\xd2\xbc\x9b\xa2\x7a\x3d\xe9\x20\x36\x38\xdf\x33\xdc\x33\x80\xa7\xe6\x15\x69\x64\xfd\x71\x17\xf0\x52\xbf\xf3\x62\x34\xc6\x77\x5e\x1d\xe3\xda\x27\xee\x4b\x8f\x9e\xda\x22\xe1\xd5\x99\xf3\xb3\x42\x83\x1c\xb3\xe2\xcc\x60\x37\xdb\xcd\x7e\x07\x00\x00\xff\xff\x41\x29\xf4\xe5\x56\x0b\x00\x00")
+
+func yaoModelsHistoryModYaoBytes() ([]byte, error) {
+ return bindataRead(
+ _yaoModelsHistoryModYao,
+ "yao/models/history.mod.yao",
+ )
+}
+
+func yaoModelsHistoryModYao() (*asset, error) {
+ bytes, err := yaoModelsHistoryModYaoBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "yao/models/history.mod.yao", size: 2902, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _yaoModelsKbCollectionModYao = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x98\x4b\x6f\x1b\x37\x10\xc7\xef\xfe\x14\x83\x3d\x25\x80\x83\xc4\x46\x6c\xd4\xbe\x25\x7e\xa0\x46\x6d\xc7\xa8\xeb\xe4\x10\x04\x02\x97\x1c\x49\xac\xf9\xd8\xf2\x61\x47\x2d\xfc\xdd\x0b\x92\x2b\x2d\xb5\xe2\xca\x92\x8a\x9e\x14\x0c\xf9\x9f\x99\xdf\x72\x38\xc3\xf8\x9f\x3d\x80\x4a\x11\x89\xd5\x29\x54\x54\x0b\x81\xd4\x71\xad\xaa\xfd\x60\x17\xa4\x46\x11\x16\xce\x7a\x0b\x0c\x2d\x35\xbc\x89\x86\xa5\x65\x70\xa4\x16\x08\x63\x6d\xc0\x3a\x6d\xb8\x9a\xc0\x6f\x4a\x3f\x0b\x64\x13\x84\xcf\xc4\x22\x74\x31\x6c\xf2\xe5\xc8\xc4\x56\xa7\xf0\xbd\xb2\x33\xeb\x50\x56\x3f\xa2\xb5\xf6\x5c\x38\x1e\xbc\x3b\xe3\x31\x9a\x0c\x12\xa6\x95\x98\x55\xa7\x30\x26\xc2\x26\xa3\xd5\xc6\x55\xa7\x70\x72\x72\x72\xd2\x7a\xab\x45\x60\x09\x5c\x19\xd9\x63\x3d\xea\xc1\x41\xc0\x95\x12\x55\x90\x57\xbd\x24\xfb\x40\xd5\x1e\xc0\x4b\xf4\x4f\xb5\xf0\x52\xc5\x84\xa3\x93\x14\x27\x8b\xc4\x59\xeb\x3e\x24\x33\x6b\xa2\xed\xea\xbc\xb3\x2d\xbe\x69\x6e\xcc\x32\xf9\xe4\x9d\x7e\xc7\x15\x35\x18\x2c\xd0\x18\x2e\x89\x99\xc1\x23\xce\xaa\xb8\xfb\x65\xbf\x1c\xb7\xc3\x1b\x95\x52\xb0\x2e\x1c\x46\x21\x8d\x0c\x75\x20\xa3\x07\xc5\xff\xf2\x08\xc9\x03\x70\x86\xca\xf1\x31\x47\x13\x4f\xd9\x4d\xf3\x23\x85\x37\x63\xa3\x25\x7c\xba\xbb\x7a\x9b\x85\x42\x35\x71\xd3\xea\x14\x8e\x3f\x2e\x6c\xca\x0b\xd1\x9e\xd4\xe2\x2c\xe3\x82\x8f\xc1\xda\x63\x5f\x0b\x1c\x7f\x77\xe2\xbc\x5d\x52\x66\xa4\xe7\xdc\x36\x82\xcc\x20\xb8\x06\x3d\xee\xc1\x15\x88\x0e\x8f\x8e\x5e\x47\xe2\x8a\xe1\xcf\x4d\x88\xf2\x5b\xb5\x02\xe6\xf0\xa7\x2b\x60\x9d\x97\x34\x19\x52\x86\x5d\x74\x9f\x65\x9d\xe7\x57\x4e\xd0\x3a\xe2\xbc\x5d\xcd\x0d\x95\x97\x85\xdc\xee\x7b\xdb\xcb\x69\xf5\x9d\xea\x79\x5b\xf9\xde\x5a\x82\xd2\x20\x71\xf1\x5c\xe1\xfd\xfb\xfc\x76\xd6\x18\x6b\x52\x71\xc7\x89\xe0\x7f\x23\xeb\x34\x84\x3a\xfe\x84\x49\x71\xab\x8d\x24\x02\x74\x83\x86\x04\xdd\x3e\x84\x66\x32\x8b\x15\x1c\xfe\xf5\xfe\xd9\x70\x87\x9d\x56\x12\xae\x1c\x2a\xa2\x68\xeb\xe0\x41\x31\x34\x90\x99\x93\x87\x77\xa1\x1f\x81\xd4\x2c\xd3\x1a\x6c\x3b\x5f\x52\x7e\x26\xf4\xd1\x37\x90\xac\x08\x5c\x41\x63\xf4\xc4\xa0\xb5\xfb\xa0\x34\x10\x4a\xd1\xda\x4e\x8d\xc6\x68\xb3\x82\x39\x25\x16\xe2\x4a\x10\x21\x32\x0b\xc4\xb9\x70\x0f\xb5\xea\xa4\x8c\xdb\x70\x92\xac\x0a\xe2\x1b\xa2\x3c\x11\x62\x06\x73\xeb\x6a\xb4\x1f\x8b\x4f\xce\x70\x4c\xbc\x88\x07\xd3\x7d\xe9\x9d\xea\x7a\xa0\x6e\x52\x67\x5f\xa9\x9b\x5a\x6b\x81\x44\x95\x4a\x27\x2a\xe0\xac\x70\xf9\xb2\x2a\xfa\x36\x45\x37\xc5\xd0\x84\xb8\x05\x6e\x81\x40\x8a\x54\xbc\xb4\x1d\xe4\x32\x46\x9f\x6f\xed\x15\x8d\xe3\x66\x85\x23\x54\xc5\x04\x4d\x89\x43\x1b\x07\x5f\x0c\xcb\x17\x33\x80\xb8\xac\xc3\x72\x2c\x45\x96\xfa\x4f\x29\xe7\x0f\xbb\xe5\x4b\xf5\x53\x1e\x7a\x83\x2e\xf9\x84\x06\xae\x24\x99\x94\x3b\x64\x56\x93\xd1\x35\xf0\xb0\x15\x1e\x7e\xbf\x2e\x74\xc7\xa3\x83\xc3\xd7\xfa\x4c\x31\x69\xa6\xa9\x0f\x01\x47\x54\x7b\xb5\xd5\xe7\x3e\x6f\x95\x70\xb6\xac\xcc\x08\x6e\xbd\xac\xd1\x84\xee\x3e\x0f\x63\xc3\xa5\x1c\x6a\xf5\xff\xf9\x04\x50\xd6\xc8\x18\x57\x93\x51\x63\xf4\x13\x67\x68\xb6\x9b\xcf\x17\x73\x3d\xdc\xb5\xfa\xa1\x39\xdd\xbd\x61\x16\x31\xa1\xe9\x34\xf0\x26\x75\x56\x22\x4a\xb3\xf9\xe0\xf0\x97\x9d\xce\xaa\xc3\x4b\xde\x77\x85\xfb\xd2\xac\x7b\x82\xac\x45\xd3\x73\xe9\xff\x4d\xd8\x98\x30\x40\x1c\xc7\xc2\x08\xfc\xd3\xea\x52\x1f\x5b\x3a\xbd\x15\x71\x46\x78\xb1\xca\x45\xb5\x1a\xf3\x89\x4f\x13\x0b\x4a\xc1\xb7\xc1\x10\x9a\x12\xb1\xcd\x83\xe9\xba\x27\xc8\x92\x4d\x4b\x60\xd1\x85\x51\x51\x78\x07\x96\x3e\x7f\xf1\xfe\xcc\x1f\xf7\xbd\xbb\x56\xa1\x5a\xff\xda\x65\xdc\xba\x34\x9d\x37\x7c\x8b\x9c\xb7\x02\xb8\x41\x67\x38\x2d\x62\x7d\x45\xea\x52\x17\x4e\x5b\x29\x11\xd4\x8b\xf4\xf9\x25\xba\xa9\x66\xa5\x57\x4a\x45\xb5\xe5\x2a\xbc\x13\x2a\xf4\x54\x70\x16\x27\x5a\xe8\x62\xae\x2a\x8f\xd8\x76\xff\x4e\xed\x24\x0e\xdd\x51\x84\xdd\x14\xfd\x2a\x48\xe0\x8f\x25\xc9\x2a\x75\x74\x0c\x44\x4c\xb4\xe1\x6e\x2a\x61\x39\x44\x86\x3b\x55\xf6\x39\xf0\xf1\xa7\x71\xf8\x19\x0b\x32\xc0\x99\x36\xee\x44\x59\x78\x2b\x0c\x37\xfd\x5f\x6f\xef\xbf\xc1\x0d\xdc\x11\x43\x24\xba\x81\x49\x1b\x37\x75\x74\x37\xd0\xcc\xb7\xc3\x9b\x9a\x33\x6e\x52\xe1\x12\x01\x82\xab\x47\x0b\x0d\x1a\x50\x9a\xe1\xdb\xc1\xdb\x56\x40\x3e\x38\x5e\xdf\x49\xc6\x23\xaa\x95\x75\xc6\xd3\xf2\x1b\xff\x15\xc6\x8b\x4b\x38\x2b\xea\x87\x39\x2f\x2e\x21\x0f\xd9\x51\x6f\x83\x75\xf8\xe1\xc3\x6b\x5c\x16\x89\xa1\xd3\x5d\x88\xee\x7b\xca\xb5\x2c\x29\xcc\x6e\x14\xc7\x1f\xd7\x42\x28\x2f\x47\x82\x5b\x57\xe8\xed\xc3\x10\x57\x5f\x2f\xa1\x7b\x50\x5c\x2f\xcb\x33\x92\xb0\xaf\x03\x51\x0b\x05\x15\xde\x3a\x34\xc3\x2d\xbd\x54\x64\xaf\x9c\x46\x00\x69\x8c\xae\x4b\x53\x6a\x53\x92\xbb\x9e\x7e\x0b\x14\x70\x1a\xfa\xd5\xb0\x09\x54\x62\xda\x6b\xff\x5b\xd2\x35\x9c\xf6\x0f\x39\x0d\x1a\xc9\xad\x4d\xb6\xce\x49\xe5\xb8\x44\xeb\x88\x6c\x6c\x37\x04\x5f\xf6\x5e\xf6\xfe\x0d\x00\x00\xff\xff\xce\xc1\xd1\x9f\xd8\x12\x00\x00")
+
+func yaoModelsKbCollectionModYaoBytes() ([]byte, error) {
+ return bindataRead(
+ _yaoModelsKbCollectionModYao,
+ "yao/models/kb/collection.mod.yao",
+ )
+}
+
+func yaoModelsKbCollectionModYao() (*asset, error) {
+ bytes, err := yaoModelsKbCollectionModYaoBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "yao/models/kb/collection.mod.yao", size: 4824, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _yaoModelsKbDocumentModYao = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x5a\x5b\x6f\xdb\xb8\x12\x7e\xcf\xaf\x18\xe8\x29\x05\xdc\xd3\x0b\xda\x83\x93\xbc\xa5\x49\x0a\xe4\x6c\x2f\x41\x93\x60\x1f\x8a\xc2\xa0\xa9\x91\xcc\x9a\x22\xb5\x24\x95\xc4\x5d\xe4\xbf\x2f\x48\xea\x42\xd9\x92\x6c\xa9\xce\x3e\xb5\x26\x39\xc3\xf9\x38\xc3\x6f\x66\xa8\xfc\x7d\x04\x10\x09\x92\x61\x74\x0a\x51\x2c\x69\x91\xa1\x30\xd1\xcc\x8e\x72\xb2\x40\x6e\x87\x2f\x5a\xc3\x31\x6a\xaa\x58\x6e\x98\x14\xe1\x24\x18\xb2\xe0\x08\x89\x54\xa0\x8d\x54\x4c\xa4\xf0\x87\x90\x0f\x1c\xe3\x14\xe1\x03\xd1\x08\x95\x76\xed\xf5\x18\x92\xea\xe8\x14\xbe\x47\x7a\xad\x0d\x66\xd1\x0f\x37\xba\x28\x18\x37\xcc\x6a\x36\xaa\x40\x37\xa4\x90\xc4\x52\xf0\x75\x74\x0a\x09\xe1\xda\x0f\x6a\xa9\x4c\x74\x0a\x27\x27\x27\x27\xa5\xb6\x05\xb7\x18\x2c\x9e\x00\xd1\x6a\x31\x6f\x81\x02\x88\xa8\xcc\xdc\xcf\x53\x88\x36\x0c\x6c\x43\x89\x8e\x00\x9e\x9c\x6e\x2a\x79\x91\x09\x67\xac\x53\xe1\xf7\x08\x76\x61\x71\xa9\xdc\x1a\xb2\xce\xdd\xd8\xd5\x45\x33\x56\x9f\x64\x38\x18\xd8\x71\x56\x18\xf9\x92\x09\xaa\xd0\x6d\x9f\x2b\x96\x11\xb5\x86\x15\xae\x23\xb7\xfa\x69\xd6\xbd\x6f\x05\x6d\xde\x65\x80\x36\xd6\x09\x1d\x46\xd4\x30\x7b\xac\xb9\x13\xec\xaf\x02\xc1\xcb\x03\x8b\x51\x18\x96\x30\x54\xce\xb7\x66\xd9\x38\x12\x8e\x13\x25\x33\x38\xbb\xbe\x7a\x11\x6c\x83\x22\x35\xcb\xe8\x14\xfe\xfb\xae\x1e\x13\x05\xe7\xa5\x7f\x6a\x0f\xba\x89\xc2\x6d\x55\x3a\x7b\x10\x2a\x95\x9c\x23\xb5\x41\x37\x0e\xec\x79\x2d\xd7\x07\xf7\x1b\x26\xa8\x50\x50\x04\x23\x1d\xbc\x66\x2b\x30\x4b\xa6\x1b\xb8\x0b\xe4\x52\xa4\x1a\x8c\x9c\x08\x97\x89\x18\x1f\xf7\x41\xeb\xfe\x9d\xe0\xd1\x2f\x2d\xb9\x00\xe4\x05\xd3\x39\x27\x6b\xb0\x8a\x41\x26\x2d\x37\x76\x80\x79\xfb\xfe\xfd\x01\xd1\x84\x8c\xb1\x05\xca\xe0\xa3\xe9\x82\xd4\x25\x13\x02\xaa\x20\x77\x2a\x0f\x6c\xde\x69\x9d\x36\xc4\x14\x7a\xdb\x30\x14\x45\xd6\x61\xd8\xcd\xc6\xf2\x2e\x9b\x72\x25\x29\x6a\x6d\xaf\xcf\xa6\x76\x59\x11\xe7\xf7\x72\x04\x20\xca\x51\xc4\xce\xb1\xf0\xea\x55\x43\x42\x54\x21\x31\x18\xcf\xe0\x81\x30\x63\x55\x19\x69\xb5\xa9\x50\x7d\xa3\x83\x4a\x71\x8f\xca\xd4\x6a\xce\xeb\xdf\x90\x30\xee\x63\x1b\x1f\x0d\x14\xce\xaa\x72\x35\x2a\xab\xeb\x9e\xc5\xa8\x02\x4d\xcb\x42\xac\x6a\x3d\x37\x39\x67\xc6\x6f\x6f\xc5\x99\x30\x12\xdc\x0a\x5d\xa9\x2a\x97\x77\x68\xc2\x47\xa3\x08\x6d\x6c\xba\xac\x7f\x83\xe5\x14\xc3\x50\x03\x11\x31\x28\xe4\xc4\x9e\x8a\x5e\xb2\x5c\xc3\xb1\x3f\x22\xc2\x5f\x04\x9a\xb2\x05\xc6\xcd\x19\x9d\xdb\xa3\x71\x6a\xaa\x71\xed\xc8\xa9\x34\xcc\xea\xac\x36\x68\x74\x94\x59\xa9\x84\x55\xa6\xa8\x3a\x27\xd9\x03\xba\x47\x6a\xa4\x72\xe2\xa9\x22\xf9\x12\x62\x62\xc8\x82\xe8\x50\x0b\x95\x59\xce\xd1\x60\xec\xf5\x9c\x71\xde\xf6\x36\xe6\x1a\x12\x26\x98\x5e\x62\x0c\xba\xa0\x76\x26\x29\x38\x5f\x37\x2a\x32\xc2\x84\x41\x41\x04\x45\xaf\xe4\x4e\xc4\xa8\x20\x18\x9e\x81\xcd\x79\x2f\x6d\xd2\x83\x4c\xc6\xd8\xc8\x2a\x6c\xc1\xf8\x40\xe8\xaa\xc8\xc1\x8f\x22\x30\x61\x8d\x49\x15\x6a\x3d\x03\x21\x81\xb8\xed\x83\x63\x54\x4a\xaa\xc8\x0a\x5e\x37\x36\x27\x84\x71\x1b\x66\x74\x89\x74\x05\x6e\xc9\x3c\x43\xad\x49\x8a\x90\x30\xe4\x71\x29\xff\xa3\x8e\xe1\x18\x13\x52\x70\x17\xf2\x75\xe8\x1e\x8e\x2d\xdc\xfd\xdb\xf7\x36\xd6\xb7\xe5\xb6\x25\x15\x5c\x4a\x3b\x61\x19\xaf\x66\x71\x2a\xed\x31\x9b\xae\x2b\x19\xd9\xab\x12\xcd\x2a\x52\x82\xa8\x50\x3c\xfa\x71\x40\x6c\x9a\xfd\xea\xc0\x66\xfd\x9e\xa2\x1a\x82\x77\xd3\x12\x0c\xe0\xd9\x89\x16\x3c\x26\x60\xb1\x36\x18\x50\x4e\xe3\xae\xd7\xbd\x50\x86\xad\xc6\xd4\x55\x19\x54\x16\xe1\xb9\xed\x36\xff\xc6\x0b\xc2\x79\x5b\x30\x30\xff\x4b\x91\x2d\x50\x59\x00\xe5\x26\x1a\x52\x14\xa8\x2c\xf3\x81\xab\x2e\x5a\x29\xf8\x80\xa0\x7e\xca\xc5\xb8\x4a\xe2\xff\x72\xd1\x57\x42\x04\xb7\xe9\xa7\x5c\x6c\x95\x4c\x8a\xd0\x55\x48\x36\x21\x63\x18\xa2\x57\xba\x23\x03\xbf\x79\xfb\xbf\xbe\x6c\x36\x3e\xec\x8a\x9c\x4b\x12\xa3\x1a\x07\xf8\xae\x94\xea\xad\x13\xab\xf9\x00\x6f\xa1\xad\xdf\xa4\xf2\x49\x27\x23\x82\xa4\xbe\xa6\xb5\xa4\x4a\x8c\x21\x74\xe9\x7e\x96\x35\xff\x33\xe3\x76\x2d\xc6\x16\xe0\x9f\x3a\x2c\x15\x6a\xb8\xb7\xad\xc5\x5d\x69\xdd\xaa\xf3\x79\x86\x18\x4c\xa5\x62\xbf\x5c\xda\x72\xd8\x12\xc6\x0d\xaa\x3e\x2a\xdc\x69\x29\x97\x94\xf0\x31\x25\xdf\xa7\x0d\x81\xc0\x5e\x3f\x05\x1a\x7d\xde\xb6\x06\x57\xb9\xd9\xe5\x15\x3b\x68\x4d\x6e\xa2\xb0\xcb\x0f\x9d\xd7\xaa\xe5\x86\x20\x0d\xa0\x18\x6e\x54\x36\xdd\x5d\xc1\x5b\x48\xc9\x91\x74\x79\xe3\xc6\x49\xc0\xc5\xd6\xc5\x0f\x80\xfe\xb9\x44\xb3\x44\xe5\x29\x82\x69\x20\x65\x58\x0d\xd2\x45\x9b\xb9\xc7\xf1\xa0\xed\x39\xc7\xd0\x9f\x54\x06\xbe\xaa\x38\x9c\x0c\xa9\xdb\x4e\x4b\x3b\xed\x7c\x14\xfb\x12\xfd\x80\x14\x47\xe5\x7d\xb8\xf5\x1e\xbd\xd2\xbd\xbd\xed\x19\x49\x7b\x9a\x88\x26\x85\xda\x85\xcc\x2e\x84\xbb\x6f\x9f\x3a\xc2\xe7\xfd\x9b\xb7\x93\xee\x81\xa5\x8d\x71\x2c\xf5\xd1\x12\x4d\x0f\x43\xb9\xb9\x0d\x36\xde\x22\x21\x38\xae\xf9\xca\x6e\xd6\xd5\xca\x1e\x94\x94\x1c\xc4\x91\x0d\x9e\x03\xd2\xdb\xdc\x7d\x55\x2c\x65\x82\x70\x0f\xc2\xb5\x78\xbb\x31\xf5\xb4\x78\xfb\x99\x9f\x13\xb3\x1c\x6b\xfe\x75\x4b\x26\xbc\x07\x46\x2a\x1b\x49\x56\x69\xd5\x9b\x3a\xd3\x77\x83\xf8\xad\x30\xcb\x58\x86\xf3\xee\x6a\x73\x18\xc9\xe7\xab\xcf\x97\xfd\x05\xa7\x9b\x35\x65\xd5\x39\x02\xcb\x9b\xd7\xbd\x94\x3b\x9c\xdc\x15\x1f\x93\xd4\xc3\xeb\xda\x22\xa3\x42\x51\x77\x9b\xbd\xa9\x85\xe2\xfd\xa1\xf3\xfa\x5d\xef\x7d\xd8\x65\xea\xdc\x30\x33\x2a\xd1\x59\x8b\x6e\xdb\x32\x61\x75\x6f\x67\xa0\x6c\x34\xab\x92\x71\x3f\x10\x13\xe3\xdf\xb6\x06\xf3\xad\x1e\x62\xc7\x6b\xc6\xad\xed\x9d\xcf\x37\x85\xc2\x47\x28\xf2\xe0\x1b\xec\x52\xb3\xb7\xdf\x8d\xf8\x50\x52\x55\xba\xc6\xb8\x5a\xf3\x62\x5a\xa9\x51\xf7\xfe\xf3\xaa\x2a\x18\xfb\xa2\x56\xbd\x1d\x5c\x57\x55\x45\x0f\xfd\x06\xf9\x62\xf3\xb9\x01\xae\x2e\x7e\x8f\x77\xf7\x84\xe8\x7b\xbb\xa9\x00\xbf\xe6\x43\x0f\x87\x43\xf0\x64\x25\xf9\xaf\xa0\xcc\x95\xcc\x51\x19\x86\xfb\x57\xbb\x2d\x2f\x6e\x09\x07\x28\xcf\xb7\xc1\x51\x29\x12\x96\x16\xca\x57\xbf\x5d\x9b\x8f\xe2\x62\x34\x74\x39\x39\x1a\x3f\x7a\xe9\x9d\xb1\x68\x39\xa1\xdc\x69\x3b\x08\x87\x78\x62\xaa\x77\x2a\x58\x53\x22\xb0\x02\x35\x1c\x7f\x9d\x90\x36\x02\xef\x39\x91\x4d\x88\xba\xc0\x5b\x43\x31\xf7\x71\x13\xd5\x61\x23\xae\x7a\xb2\x9c\x4a\x80\xd5\x8b\xe7\xae\x98\x73\xac\xbf\xf5\x3e\xda\x5a\xbd\xcb\x19\x13\xdf\x99\x6a\x84\x93\xf8\xaf\xb2\x78\x38\xfc\x7a\xd0\xc9\x6d\xa1\xdf\x67\xba\xc0\x61\xa3\x89\x2e\xf0\xd6\x20\xcf\x6d\x21\xe9\x0b\x3a\x38\x66\x82\xf2\x22\x46\x0d\x3a\xe7\xcc\xcc\x33\x19\xe3\xcc\x1f\xc5\x5c\xb3\x5f\xf5\xff\x6d\x97\xc4\x49\x3e\x03\x34\xf4\x3f\x13\xb3\x75\xfd\xc2\x3d\x31\x58\x2f\x2b\xf9\x9d\xd1\xda\x7c\x0c\xad\xf7\x6c\x33\x65\xfd\x2e\x7f\x40\xcf\x36\xf0\xa6\x44\x6a\x03\x6e\x38\x54\x07\xa1\x05\x8c\xf9\xbc\x08\x27\x04\x6f\xcb\x7b\x43\xd1\x7b\xb9\x8d\xeb\xb0\x9c\x59\x7d\xcb\x91\x62\x6a\x20\xd6\x0a\xc6\x44\x62\x23\xf4\xfc\xa1\xd8\x20\x9c\x14\x8b\x8d\xa9\x7b\x07\x63\x07\xba\xe7\x8e\xc6\x96\x1b\x47\x87\x63\xcb\x87\x83\xf1\xd8\x01\xed\xb0\x01\x59\xb7\x43\x73\xd2\xd5\x87\xb1\x0c\xb5\x21\x59\xde\x81\xe2\xba\x6e\xa4\xce\xba\x9b\xb1\xdb\x4a\x18\x1e\x96\x28\x3a\x9f\xed\x83\xcf\x80\x3d\xc6\x8f\x4f\xda\xad\x4f\x6f\x7b\xb7\x96\x97\x56\x0a\x3e\x6f\x4a\x85\xbe\x70\x2b\xaa\x4f\x7a\x2c\x09\x71\xf8\x8f\x7f\x3b\x3c\x70\x54\x7e\xfc\x6b\xbe\x94\x95\x7f\x65\x93\xa3\xca\x98\xd6\x7e\xac\x01\xdd\x9c\xbe\x6e\xf4\x3c\x1d\x3d\x1d\xfd\x13\x00\x00\xff\xff\x28\x4a\x2d\xb6\x6d\x24\x00\x00")
+
+func yaoModelsKbDocumentModYaoBytes() ([]byte, error) {
+ return bindataRead(
+ _yaoModelsKbDocumentModYao,
+ "yao/models/kb/document.mod.yao",
+ )
+}
+
+func yaoModelsKbDocumentModYao() (*asset, error) {
+ bytes, err := yaoModelsKbDocumentModYaoBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "yao/models/kb/document.mod.yao", size: 9325, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _yaoModelsUserModYao = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x5a\x5f\x6f\xdb\x38\x12\x7f\xef\xa7\x18\xe8\x80\x83\x0b\x24\x6d\x93\x6e\x8a\x43\x80\x7b\x70\x9b\x66\x1b\x20\x69\x83\x24\xbd\x22\xb7\x28\x8c\xb1\x38\x92\x79\xa1\x48\x2d\x49\x25\xd5\x2d\xfa\xdd\x0f\x24\x25\x59\x96\xe5\x3f\xf2\x26\xd9\xeb\x8b\x1b\x8a\x33\xfc\xfd\x38\xc3\xe1\xcc\x48\x7f\xbc\x00\x88\x24\x66\x14\x1d\x43\xf4\xd5\x90\x8e\xf6\xdc\x88\xc0\x29\x89\xc5\x21\x46\x26\xd6\x3c\xb7\x5c\xc9\xfa\x01\xe4\x5a\x25\x5c\x10\xa0\x64\xc0\x65\xa2\x74\x86\xee\x39\x18\xab\x34\xa6\x14\x04\x2d\xa6\x26\x3a\x86\xdf\xa2\xc2\xeb\x82\xa8\x92\x72\xff\xc5\xc2\xce\xdc\x6f\x96\x60\xf4\xbd\x9a\x3d\x15\x0e\x8c\x03\xd6\x82\x56\xd4\x38\x00\xa2\x58\x65\x19\x49\xbb\x35\x8a\x17\x00\x3f\xbd\xee\x58\x89\x22\x93\x1e\x8c\xd7\xf4\xfa\x35\xfc\xf3\x11\xff\xd5\x3a\xdf\xa3\xe1\x31\x9c\x72\x12\xcc\x3c\xd9\x3a\x61\x7f\x5a\x3b\xc4\x59\xb5\x3f\x6e\x13\xcb\xdc\x8f\x9d\x9d\xcc\xc7\x1a\x93\xb6\x07\x5b\x5b\x79\xa9\x79\x86\xba\x84\x3b\x2a\x81\x33\x92\x96\x27\xbc\xd9\x73\x70\x56\xf3\xcf\xa3\x63\xb0\xba\x20\x3f\xfa\x73\xaf\x1f\x8a\x33\xd6\xa4\x0f\x8f\xb1\x9a\xcb\xb4\x07\x93\xb7\xe3\x0a\x60\xbf\x0a\x35\x45\x01\x85\xe4\xbf\x17\x04\x4e\x77\x2f\x3e\x41\x32\xb5\xb3\xe8\x18\x0e\x8f\x8e\x9a\xc1\x20\x54\x61\x6e\x46\xb9\x64\xf4\xa3\x43\xe4\x29\x1d\xe2\xcb\xd9\xc9\x07\xb8\xb6\x28\x19\x6a\x06\x1f\x04\xf2\xac\x71\x8c\x2b\x4a\x48\x93\x8c\xe9\x18\x66\xd6\xe6\xe6\xf8\xf5\x6b\x95\x93\xe4\xec\x95\x24\xfb\xda\xe4\x14\x9b\x6a\x60\x3f\x56\x52\x52\x6c\xf7\x63\xa5\x69\xff\x60\xf2\xe6\xd5\xcc\x66\xe2\x6f\xb5\xde\x45\xb5\x8f\x4e\x63\xc9\xc8\xb9\x76\xc8\x35\xb1\x89\x33\x89\x1f\xdd\xde\xde\x97\xb5\x30\x7c\x5d\x12\x6e\x99\xde\x6f\x5c\xb3\x10\x2c\x2f\xd4\x18\xfd\xe0\xcd\x9b\x66\x50\x16\x42\x54\x51\x64\xc1\xec\xdb\x3b\x43\x2f\x61\xca\x90\x8b\x01\x1c\x3f\x2e\xce\xef\xd2\xf2\xea\x00\x19\xd3\x64\xcc\x06\x37\x7e\x4a\x46\x93\x7b\xd2\xee\x28\xf5\x1c\xd7\xa9\x52\x82\x50\xae\xe2\x06\xff\x5a\x92\xec\x27\x19\x56\x88\xeb\xa8\x8c\xb6\x68\x11\x66\x94\x60\x21\x9c\x48\x82\xc2\xd0\x46\xce\x5b\xb3\x1b\xe8\x92\xa7\x85\x10\xf0\x79\xad\x27\x26\x6e\xca\x0a\x07\x3c\x5c\xed\x80\x6b\x51\xa6\xfc\x9e\xe4\x64\x20\xd6\x5f\x9d\xd0\x06\xb0\x5e\xb1\x47\x3b\x32\x2f\x41\x69\x48\xb8\x36\xb6\x1e\x18\x76\x84\xd6\x32\x48\x30\xe3\xa2\x1c\x4a\xe1\xd4\x4b\x6d\xe0\x60\x0a\xdd\x22\x20\xf0\x49\xf0\x67\x9c\x31\x41\x43\xf1\x5f\x78\xa9\x0d\xf8\x83\xea\x27\xc0\x2c\x79\x7c\x37\x10\xf0\xe7\x25\x91\x2e\xda\x18\x4d\x81\x2b\x1d\x7c\x57\xa8\x4d\xb6\x37\xe0\x72\xe8\x48\x2c\xdf\x08\x21\xe1\xcb\x31\x25\xf8\x7a\x75\xde\x83\xf6\x68\x57\xb4\x3c\xb6\x85\x1e\x84\xb6\x2b\xb1\x12\x6d\x98\xf8\xc8\x80\x1f\x68\x6a\xb8\x1d\x02\xf8\x5b\x57\xa2\x0b\xf8\x81\xa6\x61\x6b\x95\x86\xa9\x50\xe9\x23\x23\x4e\x49\xb2\x76\xe2\xb6\x39\xda\x75\x04\x96\x22\x5d\xe7\x79\x2b\x26\xef\x04\x70\xca\xb5\x9d\x31\x1c\xb4\xa9\xef\x97\x65\xba\x30\x2b\xb5\x25\x8c\x6e\x6f\x6f\x6f\xf7\x2f\x2e\xf6\x4f\x4e\x20\x54\x2b\xfd\xa1\x61\x27\xf0\xff\x55\x92\x5c\x11\x34\x00\xfb\xbf\x95\x24\x38\x5b\x90\xe9\x62\xb7\x3c\x23\x70\xaa\x61\x51\x77\xcb\x19\x76\x42\x2b\x54\x8c\x83\x62\xc3\x79\x47\xa0\x0b\x34\x28\x84\x91\x40\x99\x16\x98\xd2\x7e\xac\x0a\x69\x75\xd9\xb7\xc3\x3b\xba\x47\x3e\x53\x92\x26\xb2\xc8\xa6\x83\xbc\xf8\xd2\x89\xc1\xe7\x8e\xd8\x52\xb0\xf0\xb3\xba\xca\xb7\xd8\xe6\xe1\xf9\x51\x9b\xc7\x4e\x49\x60\x9b\xd1\x16\xb9\x60\xa0\xf6\xd7\xe4\x82\x4b\x69\x76\xcd\xee\x3f\x46\xf5\x51\x1b\x77\xe7\x2f\x93\x29\x0d\x8f\x51\x80\x4b\x70\xb9\x4c\xeb\x44\x1e\x46\xc6\xea\xc2\x07\x7a\xd6\xf2\xb9\x15\xfe\xe5\x7f\x9f\xa8\xe8\xf4\x25\x75\xa8\xb3\x5c\x79\x69\xe0\xef\xf0\xf1\x87\x25\x69\xb8\x92\xcf\x58\x26\xda\x19\x0d\x4a\x53\x6e\x16\xe7\x77\x7b\x3d\x5c\x5a\xd2\x09\xc6\x04\x5e\x71\x55\x1c\x3a\x82\xeb\x4f\xcb\xdc\xb3\x22\x2c\xac\xda\x68\x99\x5e\x2e\x19\x59\x64\x68\x71\x6b\x37\xba\x58\x12\x68\xf1\xf1\xd6\x60\x55\x59\x0b\xb5\x6e\xdf\xc5\x8a\x0b\x63\x55\x06\x89\x6f\x21\xfd\xa5\x5e\x34\x2e\xec\x8c\xa4\xad\x0f\xec\x73\x37\xb5\x72\x34\xe6\x41\x69\x36\x99\xa1\x99\x0d\x09\xb6\x95\x1c\x7c\x5a\x90\x6b\xed\xbe\x7b\x40\x0c\xea\x05\xdc\x45\x0c\xb8\x40\x76\xc7\x9a\x3c\xd6\x65\x1e\x1a\x6a\xe3\xeb\xeb\x6f\x5f\xae\x4e\xa2\x67\x3b\xed\x17\x28\x31\x25\xc7\xf0\xd9\x0d\xd5\x8d\xe4\xb5\x85\x48\x16\x59\x8f\x7d\xae\x3b\xd3\xbb\xc7\x1c\x63\x7f\x6f\x2f\x5d\x10\xaa\xee\x3f\xff\x56\x8d\x00\x44\x39\x49\xe6\xbd\xc0\x31\xfd\x4c\x0f\xe1\x3c\xe1\x03\x72\xeb\x02\x73\x4f\x0b\xc2\x99\x9a\x65\x5c\x02\xe6\xb9\x56\xf7\x28\xe6\xca\x30\xb6\xfc\x9e\x2a\x5d\x2e\x37\x13\x41\xdd\x03\xb7\xb3\x50\xff\x63\x1c\xbb\x38\x6f\x15\xa0\x10\x90\x10\xba\x58\x6f\xe6\x1a\x18\x37\xce\x2d\x58\xd0\x71\x52\xfd\x05\xd3\x32\xac\xb9\x07\x31\x4a\xa9\x2c\x08\x95\x72\x09\xd3\xc2\x82\x3f\xf6\x9a\x2c\x72\x49\x6c\xae\xc8\x14\x26\xf7\x01\x22\x68\xba\xa1\x2c\x57\x1a\xb5\xab\x9a\xa7\x28\x25\x31\x60\x05\x39\x1c\xb9\x12\x3c\x2e\xe1\x9e\x2b\xe1\xf9\xb5\xc0\x08\x15\xdf\xd5\x0a\xae\x4b\x63\x29\x83\x30\x54\xcb\x26\xc8\x1d\xba\x00\x06\xad\xa5\x2c\xb7\xc6\x6d\x90\xa1\xb8\xd0\xdc\x96\xa0\xb9\xb9\x6b\x69\x6c\x4e\x24\xfd\xc8\xb9\xae\x75\x37\xe7\xad\x1a\xdd\x03\x4d\xbf\x17\x5c\x93\x01\x4d\x86\x2c\x4c\x29\x51\x9a\xc2\x3a\x73\x65\xa1\x01\x55\xc8\x79\xf6\xe1\x94\x85\xe6\x92\xdb\xa3\x7a\x7c\x0f\x04\xcf\xb8\x25\x06\x49\x21\x63\xc7\x11\x05\xb7\x65\xcb\x6c\x3a\x9e\xf1\x7b\x62\x91\x93\x3f\x57\x32\xdd\xb7\xa4\x33\xe0\x32\xd8\xd3\xb7\x3f\x94\xce\x48\x03\x65\xb9\x50\x25\xd1\x5e\xd8\xf6\x5a\xb0\x52\xf5\xbd\xef\xc2\x68\x1c\xac\x2f\xed\xe8\x8b\x07\x3e\x79\x59\x7b\x93\x68\x25\x68\x58\x87\xfc\x4a\x09\x5a\xd5\x21\xf7\x47\xc6\xa9\x6c\x35\xc6\x61\xd4\xba\xfa\x7d\x43\xde\x4d\x78\x55\x2d\xdc\x97\x0e\x3f\x66\x6e\xe9\xe8\x0c\xe3\x77\x53\xe6\xeb\xf9\x39\x0d\x6b\xf9\xb9\x09\xaf\xaa\x85\x1f\x91\xdf\x53\x46\xed\x8b\x42\x58\xbe\x7f\x8a\xb1\x55\xba\x7b\xd5\x8e\x2e\x4e\xc7\x2f\x9f\x3d\x8e\x67\x09\x4e\x48\x56\x01\x6c\xfb\x52\xe0\xe2\x74\x0c\x1f\xbb\x62\x2d\x0b\x7e\x9b\x91\x9d\xb9\x2c\xc7\x13\x4e\x02\xe1\xc5\xeb\x16\xb8\x81\xa5\x95\x57\x15\x04\x5b\x3b\xa2\xe3\x63\x28\xd6\x64\x87\xf4\xf6\x4e\xc7\x70\xdd\x11\x6a\x91\xb9\xf9\x72\x73\x09\x66\x86\x9a\x18\x04\xdd\xfe\xa5\xd9\xe8\x3d\x1a\x7a\x7b\x08\x24\x63\xc5\xa8\xd7\x05\x07\xe5\x0f\xe3\x8f\xd7\xd1\x46\x6e\xdc\x98\x62\x50\x19\xea\xb8\x9d\x75\x84\x5a\xdc\xc2\x23\xdf\x03\x04\xc6\x4d\x2e\xb0\x24\x06\xee\x6e\x98\x1b\xcb\x99\x2e\xcf\x77\x7c\x09\xd3\x8a\xab\xb7\xa8\x60\x9c\xe7\xf0\x51\xa6\x5c\xd2\x66\xae\x28\x52\xa5\xb9\x9d\x65\x5b\xa7\x19\x8e\xec\x78\x59\xaa\x6b\xcb\x46\x31\x8c\xae\x3f\x8d\x0f\xf6\xe0\xfa\xd3\xf8\xf0\xe8\x9d\xff\x3d\x3a\x38\x7c\xd9\x97\x7f\x44\x6e\x66\xb4\x07\x51\x98\x5b\xfd\xef\xe8\xe0\x30\xea\xbd\x43\xea\x59\x3b\x95\x1d\x09\x4e\x18\x4f\xb9\xed\xc9\xaf\x5c\x3d\x94\x2e\xb4\x0a\xda\xdc\x4f\x3a\x52\x2d\xe2\x55\xd9\xae\x12\x08\xaa\x9d\x8d\xfd\x66\x38\xe7\x85\xd1\x3b\x77\x65\xfe\xe3\x65\xdf\x49\x7c\xb7\x33\x89\x9c\x34\x57\x3d\x71\x65\x3d\x89\xcb\x8e\x54\xd7\x7a\xbe\x37\x15\x54\x3b\x12\x86\x62\x25\x99\x81\x51\x61\x0a\x14\xa2\x84\xb7\x6f\x7a\x69\xbc\xdd\xf1\x6d\x41\x82\x13\x4d\xb1\xba\x27\x5d\x0e\xad\x4a\x1c\x9b\xab\x4a\x76\x63\x65\x52\x2f\x12\x0c\xe2\xca\x13\x27\x3e\xc5\xf8\xae\xc8\x37\x57\x2a\x07\x6f\x0e\x7f\xd9\x99\x5f\x15\x86\x27\xd8\x13\x34\xdd\x6e\x1b\x8b\x59\xbe\xfe\x16\x80\x71\x7f\xec\xfc\x36\x23\xb9\xf6\x16\x78\xc0\x9e\x6b\xe0\xff\xe5\xbe\xf6\x89\xc8\xd8\xa5\x94\x2e\x33\xbe\xd1\x18\xdf\xb9\x12\xe3\xb9\x2f\x69\x81\xc6\x4e\x7c\x2a\x3d\xd8\x44\xe7\x68\x2c\x9c\xfb\x6c\x7f\x85\x85\xfc\x8c\x50\x0f\xf4\x28\xfa\xd3\x99\x61\x0b\x3b\xcf\x87\x34\x7e\xe7\xc0\xcf\x2e\x37\x01\x3f\xbb\x5c\xf3\x62\xfd\x97\xdd\x03\x98\x07\x5f\x17\x25\x3b\x1d\x0f\x0f\xb2\xee\x95\xae\x35\x81\x0f\x6b\x9b\x4e\xca\x72\xdb\xf6\xcf\xb7\x85\xeb\x02\x2f\x9e\xa1\x4c\x77\xa0\xd9\xd4\x82\x1f\x82\x82\xb5\xa1\xa0\xe9\xbf\x38\x36\xfe\x05\x6f\xb5\xec\x86\xab\xf2\x45\x55\xab\x05\x5e\x34\xff\xa6\xab\xe7\xbb\xa8\x1f\xfe\x0b\x95\x49\x96\x2c\xf4\xe1\x9a\x4f\xc1\x16\x73\xde\xa5\x08\xf8\xbd\xe7\xba\x72\x5b\xd9\x9b\x3d\xb9\x27\xa0\xd6\x47\xb8\xd0\xd3\xf0\x7d\x3e\xb7\x8d\xeb\xf3\x9e\x06\x7d\xbb\x81\xd1\x4f\xa3\xfb\x35\xc7\xaa\x0e\xff\x4e\x84\x7a\xda\xf6\xfe\x4e\x4a\xb8\xb0\xe4\x8f\x6c\xc7\x2e\x9a\xaa\x66\xc4\xfc\x5b\x3e\x57\x7b\x36\x7f\xb5\x96\x9f\xa1\xf9\x22\x5b\xfd\xdb\x4c\xb1\xe0\x49\x93\x49\x89\xea\x55\x53\xbc\xce\x67\xdc\x51\xd9\x5b\x45\x27\x4a\x13\x4f\x65\xfb\x59\x7b\x77\xeb\x15\x77\x42\xe0\xe7\x76\x11\x2c\xd5\xb9\x2d\x04\xf5\xb3\x66\x63\xc2\x47\x88\xf7\x28\x8a\xe0\xaf\x61\xa3\x9a\x94\xf2\x8f\xd6\xb1\x32\xf5\xf1\x85\xc8\xa8\xc4\x4e\x18\x09\xb2\xd4\x1a\xcd\x49\x67\xdc\x98\x20\xe9\xc6\xe0\xe7\x8b\x9f\x2f\xfe\x17\x00\x00\xff\xff\xe0\xb3\x4c\xfe\xce\x29\x00\x00")
+
+func yaoModelsUserModYaoBytes() ([]byte, error) {
+ return bindataRead(
+ _yaoModelsUserModYao,
+ "yao/models/user.mod.yao",
+ )
+}
+
+func yaoModelsUserModYao() (*asset, error) {
+ bytes, err := yaoModelsUserModYaoBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "yao/models/user.mod.yao", size: 10702, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _yaoModelsUser_oauth_accountModYao = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x59\x4d\x6f\xdb\x38\x10\xbd\xe7\x57\x0c\xb4\x87\x4d\x80\x38\x1f\x05\x72\x31\xb0\x87\xb4\xd9\x14\x01\x92\xb4\x48\x91\x2d\xb2\x8b\x85\x40\x51\x63\x89\x0d\x45\xaa\xfc\x70\xe2\x0d\xf2\xdf\x17\x24\x2d\x5b\x96\xe4\xd8\x12\xea\xf4\x52\x85\x9a\x19\xbe\x37\x7c\x43\x91\xe3\x97\x3d\x80\x48\x90\x02\xa3\x31\x44\xf7\x1a\x15\x7c\x39\xb7\x26\x87\x73\x4a\xa5\x15\x26\x3a\x74\xef\x39\x49\x90\xbf\x65\x90\xa2\xa6\x8a\x95\x86\x49\x51\x99\xfd\xae\xc1\xe4\x4c\xa5\xa3\x92\x28\x33\x9b\x3b\x91\xe0\x04\x4c\x4c\xa4\x2a\x88\xb3\x07\x6d\xa4\x22\x19\x86\x40\x86\x64\x3a\x1a\xc3\x3f\x91\xd5\xa8\xa2\x43\x88\x24\xb1\x26\x77\x0f\x5a\x52\x46\xb8\x7b\xc2\x67\x83\x4a\x84\xe7\x52\xc9\x29\x4b\x51\x45\xff\xce\xdd\x13\xee\x98\x38\x56\x35\x5e\x2e\x58\xec\x23\xc5\xa4\x06\x1b\x20\xa2\xb2\x28\x50\x98\xc1\xa0\xf7\x00\x5e\xfd\xcc\x54\x72\x5b\x08\x8f\xdd\x47\x3e\x3e\x86\x3f\x7e\xe1\xbf\x2a\xe6\x47\xa2\x19\x85\x4b\x86\x3c\xd5\x3b\x9b\x27\x64\xaf\x96\x3f\x96\xce\xf3\xe5\x52\x3c\x2b\xfd\xd8\xd5\xc5\x72\x6c\xa1\x8f\xfa\x60\x2d\xb5\x5f\x15\x2b\x88\x9a\xc1\x23\xce\x80\xa5\x28\x0c\x9b\x30\xb7\xbc\x95\x69\x19\xde\x47\x63\x30\xca\xa2\x1f\x7d\x3d\xec\x86\xe2\x97\xb2\x0b\x8f\x36\x8a\x89\xac\x03\x93\xd7\xec\x1a\x60\x77\x38\x41\x85\x82\x22\x18\x09\x05\x61\x02\x5c\x7c\x58\x15\x89\x0b\x86\x22\x33\x79\x34\x86\x0f\x67\x67\x8b\x41\x61\x39\x9f\xeb\x6d\x42\xb8\xc6\xc5\x0b\x26\x52\x7c\xde\x86\xcc\x42\xbd\xdb\xb3\xf9\xda\x72\xa9\xd1\x09\x7a\xad\xa2\x82\x9b\x06\xf6\x33\x29\x33\x8e\x87\x40\xca\xd2\xfd\x97\x31\x93\xdb\xe4\x10\xd0\xd0\xa3\x83\x0e\x86\x67\x27\xc3\x08\xee\x52\xf5\x5f\xae\x2e\x3e\xc1\x37\x43\x44\x4a\x54\x0a\x9f\x38\x61\x85\x86\x89\x92\x05\x54\xe9\xa8\x2c\x17\x0b\x3a\x86\xdc\x98\x52\x8f\x8f\x8f\x65\x89\x82\xa5\x47\x02\xcd\xb1\x2e\x91\xea\xf9\xc0\x88\x4a\x21\x90\x9a\x11\x95\x0a\x47\xa7\xf1\xc9\x51\x6e\x0a\xfe\x5b\x35\x4b\x98\xe4\xfd\x4a\x4c\xdb\xa4\x87\x0a\xbe\xd9\xe4\x07\x52\xd3\x2d\x02\x97\x2c\x1d\x0c\x6a\xd5\x06\xfb\xda\x26\x40\x1d\xad\x83\x90\xbb\xb6\xfa\x76\x26\x73\xb7\x2a\x0a\xd3\xd8\x55\x97\x1f\xed\x23\xf8\xb9\x33\xdc\xb7\x9c\x9b\xac\x17\x13\x41\x35\xd1\x46\xa6\xa7\x27\x9d\x7a\xdf\xc8\x09\x0b\xc2\x78\x0f\x1a\x7f\xae\xda\x37\x91\xfb\x70\x40\xd2\x54\xa1\xd6\x43\x97\xc7\x81\xee\xbf\x3a\x7e\xea\x78\x8a\xca\xc9\xa4\x63\x63\x4d\xa4\xe4\x48\xc4\x3a\x4e\xf0\x57\xcb\xb3\x9b\x5c\x98\x81\x56\xdf\x4f\x62\xec\x5a\xa2\x29\x4e\x88\xe5\xa6\xa5\xb8\x3e\x0b\xd4\x53\x66\x97\x96\x73\xb8\x7d\x53\x5d\x13\x67\xb2\x95\xa8\x3e\x0c\x14\x55\xc6\xa6\x28\xe2\x9e\xc8\x3f\x3b\xa7\x0d\xd0\x7d\x60\x8f\x7d\x5f\x1f\x80\x54\x30\x61\x4a\x9b\xc5\xc0\xae\x8a\x64\x42\x0a\xc6\x67\x7d\x09\x5d\x7a\xaf\x0d\x8c\xb4\x55\x35\x3a\x9c\xbc\x03\x9b\x82\xa5\x29\xc7\xbe\x6c\x6e\xbc\xd7\x06\x36\x21\xf4\xce\x19\x08\x46\x1f\x7b\xc2\xbf\x6d\xb9\x34\xb1\x53\xa2\x2d\xd9\xb2\x30\x86\x02\x2f\x95\x9c\x30\xde\xef\xb3\xd1\xf0\x68\x7f\x2b\xbc\x01\x94\x24\x43\xb8\xbf\xbb\xde\x88\xfd\x6c\x28\x76\x46\x8d\x55\xbd\xb0\x37\x3d\xd6\x62\x0f\x86\x3b\x85\xff\x84\x89\x66\xa6\x0f\xfc\xef\x4d\x8f\x26\xfc\x27\x4c\x42\xda\xa5\x82\x84\xcb\x6c\xa7\xf8\x33\x14\xfd\x4e\xd8\x9f\x1b\x0e\xad\xbd\xd4\xbf\xdf\xe2\x1b\x30\x08\x6e\xc2\x94\xc9\x53\xd2\x2b\xe1\x1f\xdb\x3e\x4d\xd0\xf3\xb0\xb3\x55\xd8\xb0\xff\xf0\xf0\xf0\x30\xba\xb9\x19\x5d\x5c\x40\xb8\xdc\x76\x5d\x09\x4e\x87\x51\xf9\x4f\x0a\x74\x77\xe6\x1e\x4c\xfe\x96\x02\xe1\x6a\xc5\xa7\xc9\xc4\xb0\x02\xc1\x85\xf6\xf7\xf1\x2d\x64\x33\x08\x3b\x97\x94\xf4\xda\x6f\xae\x1b\x0e\x4d\xd8\x21\x60\x33\xfd\x9c\x88\xcc\x92\x0c\x47\xfe\xbe\xa9\x66\x5d\xd9\x1f\x28\xa4\x32\x97\x02\x63\x61\x8b\xa4\xdf\xfd\xd2\xb9\xc1\x6d\xc3\xad\xb5\x01\x79\xab\x10\x7c\x57\x4b\x50\x27\x30\xe8\x78\x5a\xa7\xb2\xc5\x29\x35\x70\x7a\xe7\x53\xea\xfc\xc4\xdf\xa6\xf5\x43\xcb\x2e\x4e\xe7\x4d\xfb\x36\x8b\x99\x66\x94\x70\x70\x67\x6e\x26\xb2\xee\x3b\x05\xec\x6b\xa3\xac\xff\x78\xa4\x35\xcd\xad\x41\xde\x0d\x5d\x91\xa7\xad\x61\xdf\xd5\x6d\x9b\x90\xa5\x62\x19\x13\x84\x87\xde\x8b\xaf\x6a\x85\xba\x94\x42\xaf\x3d\x50\xbc\x05\x74\x47\x3d\x88\x79\xbf\x13\x6e\x88\x20\x19\x3a\x02\xef\xde\x86\x73\xa7\xdc\x98\xcb\x8c\x89\x98\x98\x76\xee\xdd\xce\xa8\x0d\x29\xca\xae\xed\xc9\x1d\x90\xaf\x9d\x2b\x9c\x77\xb7\x0d\xbc\x85\x0f\x0e\x53\x46\xc0\xe4\x4c\xc3\x6a\x3f\x69\x6d\xfa\xfb\xdf\x39\x99\x8e\x09\x35\x6c\xda\xb1\xc3\xae\xaf\xe7\x2b\x0d\xe7\x0d\xa7\x1a\xfe\xef\x39\x9a\x1c\x55\x1d\xf8\xa2\x71\xab\x41\x1b\xc6\x39\x34\xe7\x5c\x56\xf0\x06\x1a\x7b\x00\xa1\xc1\xec\x5f\xe1\xb2\xcd\xdb\xd1\x2a\x7d\x8e\x6b\xed\x66\xff\xd8\x4e\x60\xad\x5b\xbc\xec\x68\x36\xbb\xd9\x2b\x69\xb1\x82\xfd\xb4\xdd\xcc\xef\xfd\x2b\xa0\x52\x68\xa3\x08\x13\x66\x0c\x6e\x27\xab\xd8\x97\xa8\x96\x75\xef\xfe\xf0\xad\xf5\xb7\x97\x67\x95\x44\xe5\x1d\xaf\x34\xa9\xea\x1c\x96\x0c\x43\x27\xeb\x57\xe0\x57\x48\xa5\x4a\x57\xe1\x2f\x5a\x58\xbd\xf0\x63\xb3\xf7\xd2\x0d\x3c\x98\xb5\xa1\x07\x39\x74\x21\xbf\x72\x6f\xdc\xc1\x69\xde\xe2\xe0\x52\x3e\xda\x52\x43\x32\x5b\x16\x4d\x1f\xa0\x4d\x7d\xd6\x91\xd6\x4a\xa6\xb9\x13\x0c\x83\x1c\xa2\x2d\x64\xf2\xd3\xa2\x62\xa8\xa3\x86\xe0\x15\x72\xff\x2d\x74\x20\x5e\xc2\x4f\x1d\x53\xc2\x6d\x28\x81\x60\x22\xab\xdf\x7d\x5e\x6a\x7b\x90\xae\x8a\x0a\x22\x2d\x27\x26\x4e\x91\xa3\xc1\xda\x68\x89\xaa\x60\x5a\x07\x4f\x37\x06\xaf\x7b\xaf\x7b\xff\x07\x00\x00\xff\xff\x2d\xc1\xa9\xeb\x8f\x1a\x00\x00")
+
+func yaoModelsUser_oauth_accountModYaoBytes() ([]byte, error) {
+ return bindataRead(
+ _yaoModelsUser_oauth_accountModYao,
+ "yao/models/user_oauth_account.mod.yao",
+ )
+}
+
+func yaoModelsUser_oauth_accountModYao() (*asset, error) {
+ bytes, err := yaoModelsUser_oauth_accountModYaoBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "yao/models/user_oauth_account.mod.yao", size: 6799, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _yaoModelsUser_roleModYao = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x58\xcd\x6e\x1b\x37\x10\xbe\xfb\x29\x06\x7b\x72\x01\xa3\x71\x0f\x45\x01\x03\x39\xb8\x71\x8b\xba\xa8\x13\xc3\x81\xd1\x43\x11\x08\x63\xee\x48\x3b\x09\x97\x54\xc8\x59\x45\x42\xe0\x77\x2f\x48\xea\x87\xbb\xa2\x2c\x5b\xad\xe5\x8b\x21\x72\x87\xfc\xbe\xf9\x1f\x7e\x3f\x01\xa8\x0c\xb6\x54\x5d\x40\x75\xef\xc9\xc1\x9d\xd5\x54\x9d\x85\x65\x8d\x0f\xa4\x0b\xeb\x35\x79\xe5\x78\x2a\x6c\xcd\x7a\xd7\x59\x4d\x80\xa6\x86\x29\xb9\x96\xbd\x67\x6b\xa0\x45\x83\x13\x6a\xc9\x48\x92\x13\x9c\xf8\xea\x02\xfe\xa9\x3a\x4f\xae\x3a\x83\xca\xc5\x23\xa1\xda\xc8\x84\x5f\xd8\x49\x53\x7d\x5a\x4a\x3c\xe8\x80\x2c\xa0\xcc\x70\x06\xf9\x91\x5b\xe1\x01\xa8\x94\x6d\xe3\x35\xcf\x44\x73\x02\xf0\x18\xcf\x57\x56\x77\xad\x89\xa0\xe2\x41\x6f\xde\xc0\xdb\xff\xf1\x6f\x75\xe6\xaf\xe8\x59\xc1\xef\x4c\xba\xf6\xaf\x76\x4f\xd2\x51\xa6\x25\xae\x97\xea\x09\x8a\x5c\x4c\xe3\xda\xf5\xd5\x66\x6d\x6d\xde\x7c\x31\xd3\xe4\xad\xe3\x16\xdd\x02\xbe\xd0\x02\xb8\x26\x23\x3c\xe6\x60\xb7\xd5\xa7\xd3\xb4\x5f\x5d\x80\xb8\x8e\xe2\xea\xe3\x59\x19\x4a\xb0\xc7\xa8\x84\xc7\x8b\x63\x33\x29\x60\x0a\xde\x06\x3b\x80\xdd\x1b\xfe\xda\x51\x32\xf2\x06\x18\x9c\x62\xdd\xb2\x39\x83\xe0\x1d\x67\xd0\xda\x9a\x1c\x8a\x75\x67\x40\xa2\x7e\xfc\x21\xbb\x83\xcc\x44\x9a\xea\x02\x7e\x3e\x5f\xaf\x75\xf1\xc8\x25\x95\xf5\x2a\x9b\x9a\xe6\xc3\x45\xd3\x69\xbd\x74\xcb\x31\x6a\xff\x34\xf1\xf8\xff\xf9\xac\xdf\xf7\x3e\xcf\x28\x5f\xb1\x9f\x6a\x5c\x40\x38\x0f\xec\x18\xa4\x49\xfc\x0b\xac\x7e\x3a\x3f\x3f\x0c\x6b\x1e\xd6\x5b\x90\x85\xe6\x52\x00\x7c\x55\x92\xc9\x71\x93\x20\x6b\xaa\x21\x3b\x3c\xc7\x1f\x83\x94\xc5\xc3\xb4\x73\x53\xeb\x33\x3e\x19\xf4\xdc\xbd\x5e\x33\x4c\x6f\x37\xc9\xe2\xd8\xb1\xba\xc9\x53\x7e\x5b\xf7\x9f\x7d\xae\xdd\xb5\xee\x6f\x4b\x32\x99\xee\xff\xfc\xf8\xe1\x3d\xd8\x87\xcf\xa4\x04\x94\x35\x82\x6c\xd8\x4c\x00\xb5\xce\xd2\xa2\x8f\x16\x40\xa5\xc8\x7b\x70\x3c\x69\xc4\xef\xb5\x41\x39\xc4\x29\x78\xb5\x12\xaa\x47\x87\x90\xb9\x5b\x8b\xc3\xb3\x78\xa1\x73\xb8\x08\x9e\x44\xf3\xa9\x66\xc5\xa2\x17\x50\x93\x61\xca\x73\xfe\x7e\x2a\xaf\xe9\x4e\x7f\x30\x39\x74\xaa\x59\x1c\xdf\x9b\xd0\x91\x91\xd1\xcb\xb3\xee\x6d\x14\x84\xa7\x92\xef\xf2\x93\x18\xbc\x63\xeb\x80\x4d\x43\x8e\x05\x8d\x22\x38\xb5\x31\xc0\x51\xef\xc9\xb6\x03\x63\x14\xf3\xed\x93\xce\xa6\x69\x46\x7a\x9b\x17\x1b\xa1\x49\x5e\xa2\xd6\xc4\xfe\xea\x0b\x64\x7c\x22\xd7\x66\x6d\xaa\x78\x32\x9c\x36\x3c\x69\xc8\xc1\x5b\x68\xad\xa3\xdc\xa3\x32\x66\x35\x8d\xb1\xd3\xe1\x90\xc3\x98\xbd\xa6\xef\xdd\xac\x9b\x9d\xe3\xb7\x1d\x7e\x84\x4a\x78\x56\xa8\x7b\x0f\xd6\x6a\xc2\x52\xf8\x5f\x7b\xb8\x1c\x08\x65\x36\xfa\xbb\x21\x09\xe6\x90\x86\xfd\xb2\xec\x7b\x50\x9d\x0b\x9e\xa8\x17\x30\xbc\x6e\x63\x98\xc3\xbc\x8b\xfd\x68\x75\xc4\xcb\x28\x5c\x0d\xa5\x76\x71\x60\x1f\x2b\xe0\xf2\x96\x4d\x30\x19\xfa\x16\xdb\x17\x5f\x22\x13\x2b\xf8\x41\x6c\xfc\xc2\x0b\xb5\x2f\x24\xf3\x71\x20\xf4\x04\x17\x84\x74\x43\x22\x72\xaa\xd0\x18\x2b\xf0\x10\x08\x6a\x12\xaa\x8b\x41\x73\x20\x1d\x6f\x9d\x8c\xac\xab\xf3\x30\xdf\x1f\xff\x1f\xad\x13\xf8\xd0\x97\x2a\xb4\x57\xf1\xdc\x68\x89\x70\x4d\x2f\x47\x3e\x23\xda\x8f\x11\xd8\x2b\xa4\xc7\x8e\x6a\x65\xb5\x2d\x68\x7c\x67\x25\x79\xd7\xff\x3e\xd3\x75\xdc\x01\x65\xeb\xe4\xf2\xf7\xd7\x50\x2f\x39\x9d\x36\x34\x0f\x6b\x2d\x4a\xa9\x80\xfc\x72\x50\x5f\xc2\xaa\xd4\xce\xee\xc4\x7d\xad\x76\x74\xb2\x61\x23\x9f\x36\xfa\xd8\x5f\x54\xef\x8e\xe1\x27\x97\xa9\xa3\x7b\x67\x8d\x38\xab\x8f\xee\x2e\x2d\xce\x47\x83\x44\xb6\x3f\x48\x6f\x70\x0e\xf7\x7d\xa1\xcc\x00\x37\x38\xe7\xb6\x6b\xc1\x74\xed\x03\xb9\xd0\xfa\xc5\x0b\x40\x1a\x14\x50\x68\xa0\xc1\x19\x65\x25\xe2\xf4\x1c\xde\x42\x67\x34\xb7\xbc\x2b\x05\xed\xb5\x50\x91\x9b\xa3\xaf\x1d\x3b\xf2\x23\x9c\x4e\x9d\x9d\x61\xa1\x11\xd9\x9d\x58\xef\x96\xc2\x70\xb9\x25\x5c\x48\xb0\xe8\x3d\x4f\x62\xd7\xbe\xe1\xb5\xba\x1e\xe2\xb8\x0b\xdb\x20\x06\x29\xf6\x49\x2e\xd8\x89\x1d\x39\x9a\xd9\x2f\x34\xaa\x71\xf1\x22\x73\x5d\x76\x62\xe1\x2e\xca\xc2\x55\x4f\x36\xcf\xac\xb8\xf0\x80\x63\x21\x07\xdf\x1a\x56\x4d\xbf\x86\x87\xeb\x5b\x14\x56\xa8\xf5\x02\x12\x8e\x3a\x59\xce\xd0\x8c\xdc\x61\x56\x7b\xcd\xb8\xfa\x6d\x2e\x64\x6a\xaa\x43\x64\x8d\x79\xd2\x39\x0c\x1d\xef\x11\x03\x8b\x04\x6b\x14\x7c\xf6\x60\x75\xb3\x25\x90\x59\xe7\xb2\xae\x39\x75\xec\xc9\x24\x2a\x27\x15\x27\x43\x4f\x12\xea\xe0\x81\x43\xa1\xb2\x26\x5d\xf0\xfc\x41\xf0\x5d\x41\xa4\x57\x3d\x56\xdb\x29\xf0\xdb\xce\xc7\x4e\xa3\x25\x01\xb1\xcb\x80\x79\xd3\x22\xc7\x79\x77\xe3\x6d\x7b\xf0\x9f\x00\xa4\x17\xc7\xd8\x87\xd0\xe6\x45\xb0\xf0\xaa\x96\x32\x5b\x9a\xae\x86\xad\x67\xf6\xa0\x98\x37\xc2\xbd\xb6\xe5\x53\x21\xc6\x42\xf3\x53\xac\x3a\x61\x27\xd6\x9a\x74\x54\xe4\xe2\xe1\x1b\x4b\x93\x9a\x95\x50\xc5\x9e\xae\x7f\x3d\xbc\xeb\x41\xa7\x0c\x79\x38\x38\xae\x26\xad\xc3\x20\xbb\xfe\x68\xf5\xb5\x23\xc7\xe4\x5f\x02\x77\xd8\xb8\x0e\xd4\xbb\xda\xce\x87\x8e\xc3\xa0\xe6\xfd\xeb\x01\x38\xb7\xc6\x85\x01\xd0\xf5\xfe\x7f\x47\x3a\x66\x53\x87\x82\xb0\x9a\x1d\x32\xbf\xa8\x06\xbe\xec\x48\x63\x8a\xa4\x0b\xf8\x9e\x1e\xbc\x67\xa8\xbb\xe4\xdd\xe9\x13\xbb\x7a\xc5\xff\x0e\x95\x70\x4b\x5e\xb0\x9d\xfa\xd5\xe4\x14\xdc\x76\x2c\xa3\xd4\xc5\x67\xab\xd9\x7b\x7d\x5a\x83\xc7\x93\xc7\x93\x7f\x03\x00\x00\xff\xff\x79\xa5\x73\x50\x4b\x18\x00\x00")
+
+func yaoModelsUser_roleModYaoBytes() ([]byte, error) {
+ return bindataRead(
+ _yaoModelsUser_roleModYao,
+ "yao/models/user_role.mod.yao",
+ )
+}
+
+func yaoModelsUser_roleModYao() (*asset, error) {
+ bytes, err := yaoModelsUser_roleModYaoBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "yao/models/user_role.mod.yao", size: 6219, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _yaoModelsUser_typeModYao = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x58\x41\x6f\xdb\x38\x13\xbd\xe7\x57\x0c\x74\x6a\x01\xe3\x6b\xbe\x43\x2f\x06\x7a\xc8\x6e\x10\x20\x8b\x4d\x1b\x6c\x1a\xec\x61\x51\x08\x8c\x34\x92\x67\x97\x22\x15\x72\x98\xd8\x08\xf2\xdf\x17\x24\x25\x9b\x96\x69\x6f\x62\xb4\x41\x73\x09\x30\xe4\x0c\xdf\x1b\xce\xcc\x13\xfd\x74\x02\x50\x28\xd1\x61\x31\x87\xe2\xd6\xa2\x81\xaf\xab\x1e\x8b\x99\x37\x4b\x71\x87\x32\x63\xaf\xd1\x56\x86\x7a\x26\xad\xd6\xab\xbc\xea\x11\x2a\x29\xac\xa5\x86\x2a\xe1\xd7\x40\xa8\x1a\x2a\xad\x1a\x6a\x9d\x09\x96\xe8\xce\xa2\xb5\xc5\x1c\xfe\x2a\x9c\x45\x53\xcc\xa0\xe0\x10\x19\x8a\x6d\xf7\x60\x09\xde\xc5\xb7\xc1\xef\x4e\x7a\x98\x1e\x72\x02\xda\x47\x29\x79\x04\x07\xde\xa9\xeb\x50\xf1\x2b\xa1\x9d\x00\x3c\x87\x63\x2a\x2d\x5d\xa7\x02\xc2\x10\xef\xc3\x07\xf8\xf4\x1d\xff\xc6\x98\xbf\x08\x4b\x15\x5c\x10\xca\xda\xfe\xb0\x73\x62\xaa\x92\x64\x51\x3d\x64\x09\x86\xb4\xcf\xa1\xb8\x3c\xdf\xd8\xd6\x57\x9e\x1a\x93\x84\x5e\x1b\xea\x84\x59\xc1\x3f\xb8\x02\xaa\x51\x31\x35\xe4\x2f\x71\xdc\xda\xc7\xf5\x62\x0e\x6c\x1c\x06\xeb\xf3\x2c\x0f\xc5\x1f\x5f\xe6\xf0\x58\x36\xa4\xda\x0c\x26\x5f\x81\xb0\x07\xd8\xad\xa2\x7b\x87\xf1\xae\x37\xc0\xe0\x9d\xa8\x3b\x52\x33\xa8\x9c\x65\xdd\xa1\x99\x41\xeb\xd0\xf2\x0c\x90\xab\xff\xbd\x4f\xce\x40\xd5\xf2\xa2\x98\xc3\xc7\xd3\xb5\xcd\x85\x90\x03\x95\xb5\x95\x54\x8d\xcb\xa9\x51\x39\x29\x87\xea\x6c\x84\xb4\x87\x89\x87\xff\x2f\x67\xfd\x79\x6b\x7b\x42\xf9\x9c\x6c\x2f\xc5\x0a\x7c\x3c\xd0\x0d\xf0\x02\xc1\x8d\x05\x9f\xa1\xf6\xff\xd3\xd3\xe3\x00\xa7\xfd\xbe\x83\x9b\x71\xc9\x19\xd4\xe7\x39\x9f\x14\x3c\xb2\x20\x89\x35\x24\xc1\x0f\x90\x48\xf0\xa6\x85\xf5\x23\x1b\xf4\xd7\x74\x3c\xbc\x79\xa3\xd6\xd8\x08\x27\xb9\x34\x5a\xbe\xb2\x4b\xce\xa3\x27\xfc\xa1\xe5\xde\x6e\x19\xf7\xf8\xe8\xe0\x07\x63\xab\xb0\x06\xd6\x21\xf5\x36\xde\x03\xd9\x7d\x85\xf4\x31\x5b\x47\x7b\xbb\xe4\x60\x6d\xd9\x6a\x81\x9d\xd8\xa5\xf7\xb7\x4d\x0b\x67\x4d\xee\x66\xb2\x3d\xe1\xf4\xdb\xcd\x97\xcf\x10\xc3\x41\x8d\x0d\x29\x52\x2d\x74\xc8\xa2\x16\x2c\xc0\xb2\x71\x15\x3b\x83\x61\xf4\xdf\x5e\x66\x84\xe9\x50\xa1\x65\xb1\x8f\xc1\x5f\x8c\xfe\x6a\xc7\x21\xc1\x7f\x56\xd7\xe4\xb1\x08\xb9\x8d\x2d\x00\xb6\xc8\x4c\xaa\xb5\xd0\x68\x13\xef\xe6\xe7\x68\x92\x2b\xa1\x44\x8b\x9e\xc2\xdb\x4b\x99\x2d\x45\xc5\xf4\x90\x99\xa5\x77\x5a\x4b\x14\xb9\x1b\xb8\xb4\x70\x36\x71\x4a\xae\xe0\xcf\x05\xf2\x02\xa7\x09\x06\xb2\x50\x39\x63\x50\xb1\x5c\xc1\xf4\xcc\xa1\x51\x8f\x6e\x00\xb2\xe5\x18\xe2\x75\x3c\xce\xa7\x5e\xfb\x88\xf8\x46\x5e\x20\x0c\xa7\x24\xbc\x7c\x2d\x29\x7c\x04\x83\x2d\x59\x8e\xd5\x66\x73\xcc\x82\x44\x1c\xd1\xdb\xda\x70\xa9\x4d\x9d\x7e\x20\x8c\xd4\x48\x31\xb6\xe9\xc2\xa6\xc5\xb5\x61\xf8\xb2\xed\x95\x51\xbd\x10\x37\x50\xf0\xc7\x6c\x8d\xc2\x0d\xf0\xbd\x83\xea\x2d\x7a\xe3\xac\xaa\xd0\x5a\xaf\x23\x6c\xb4\x7c\xf3\xfe\xe8\xc4\xb2\xb4\x68\xed\xf6\xa5\xfe\x77\xfe\xaf\xc4\x12\x6e\x76\xfc\x92\x1b\xb8\x12\x4b\xea\x5c\xe7\xa7\xd4\xd0\x16\x30\x9e\x03\x42\x4a\xfd\x88\xf5\x31\x63\x2a\x5f\x42\x31\x70\xc9\xd4\xa1\x76\x99\x16\x39\x50\x47\xd1\x15\xbe\x4e\x5d\x13\x2a\xe3\x9e\x21\x3c\x90\x82\x8e\x94\x63\xb4\xf0\xee\x14\x3e\x81\xd2\xe3\xd2\xfb\xa3\xca\x2b\xcb\xa9\x17\xd6\x3e\x6a\x53\x97\xbd\x96\x54\xad\x5e\xac\x1e\xd7\x83\x1f\x5c\x4f\xfc\xd2\xef\xf3\x71\x8f\xc1\x7b\x47\x26\x4c\x66\x1b\x14\x24\x1c\x46\xf8\xd3\x29\xc8\x05\x8a\x20\xcb\x17\x52\xb4\x6f\xd8\x1d\x4d\x3c\x36\xd3\x19\x7b\xb2\x7f\xb1\xe3\x90\xa4\x7d\x24\xd1\x78\x12\xf1\x71\x29\x7a\x71\x47\x92\xd8\xa7\x5c\x3c\x08\x0a\x79\xf5\x9f\x58\xdf\xa3\x2d\x24\x75\xc4\x2f\xc7\xfe\xfb\x64\xfb\xd6\x0b\x59\xb4\x08\x31\x5e\x00\x7e\xef\x34\x8b\x23\xaa\xe4\x04\x20\x3e\xd3\x83\x3c\xe0\xe6\xfd\x9c\x79\x83\x2e\xcb\xf5\xa3\x7d\x47\xc3\x93\xe7\x77\x2a\xf1\x5b\x6a\xf2\x2d\x33\x06\xbc\x26\xe5\x08\x5e\xfa\x95\x40\x27\x86\xda\x10\xb2\xf0\x48\xbc\x88\x42\xe2\xf5\xe3\xb0\x4c\x6f\x81\xde\x51\xec\x09\xea\xf5\x7a\xfa\x99\x72\x1c\xea\x86\x54\xed\xbf\x64\x47\xf9\x9e\xb2\x28\x26\xe9\x37\x28\x07\x21\x9f\xc3\x53\xfc\x45\xe3\x41\x48\x17\x2f\x24\x6e\xd1\xe3\x4f\x37\x4f\x50\xf8\xf1\x66\x59\x74\xbd\x1d\xbf\x60\x7c\xa6\x1b\x2e\x6b\x94\xc8\x98\x58\x7b\x34\x1d\x85\x71\x39\xd8\xe0\xf9\xe4\xf9\xe4\xdf\x00\x00\x00\xff\xff\x15\xf5\x21\xca\x40\x12\x00\x00")
+
+func yaoModelsUser_typeModYaoBytes() ([]byte, error) {
+ return bindataRead(
+ _yaoModelsUser_typeModYao,
+ "yao/models/user_type.mod.yao",
+ )
+}
+
+func yaoModelsUser_typeModYao() (*asset, error) {
+ bytes, err := yaoModelsUser_typeModYaoBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "yao/models/user_type.mod.yao", size: 4672, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
@@ -1355,7 +2772,207 @@ func yaoReleaseAppYaz() (*asset, error) {
return nil, err
}
- info := bindataFileInfo{name: "yao/release/app.yaz", size: 181682, mode: os.FileMode(420), modTime: time.Unix(1730855738, 0)}
+ info := bindataFileInfo{name: "yao/release/app.yaz", size: 181682, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _yaoStoresAgentCacheLruYao = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\x31\x4f\xc4\x30\x0c\x85\xf7\xfe\x8a\x27\xcf\x37\x00\x42\x48\x74\x43\xac\x4c\x20\x26\xc4\xe0\x4b\x7d\x47\x44\x9a\x14\xc7\x1d\x0a\xba\xff\x8e\xec\x8a\x95\x29\xc9\xf3\xf7\x5e\xf2\xf2\x33\x00\x54\xf8\x28\x85\x46\xd0\xc3\x59\xaa\xe1\x91\xd3\x87\xe0\xc5\x9a\x0a\x1d\x7c\x3e\x49\x4f\x9a\x17\xcb\xad\x3a\xf5\xf4\xfc\x8a\x14\x4c\x77\x06\xa7\xa6\xe0\x70\x9a\xcc\x4b\x53\xd6\x0d\x13\x1b\x83\xeb\x84\xaf\x35\xa7\x4f\x70\x4a\xd2\x3b\x66\x99\x9b\x6e\x7b\xa8\xf1\xb9\xd3\x88\x37\x0a\x2b\x1d\x40\x91\xe9\x9b\xa2\xab\x2f\x9c\xe9\x3d\x50\x15\x9e\x5a\x2d\x1b\x8d\x38\x71\xe9\x12\xe2\x71\xcd\xc5\xb2\x3f\xc8\x74\xdd\xa5\xde\xd4\x68\xc4\xcd\x75\x9c\x2a\xcf\xf2\x4f\x29\xdb\x96\x18\xc7\x65\x2e\xb4\xbf\x82\xfe\x27\x9e\x96\xbf\x1d\xb8\xbd\xba\xbf\x1b\x80\xcb\x70\x19\x7e\x03\x00\x00\xff\xff\x7c\x73\xd7\xda\x2d\x01\x00\x00")
+
+func yaoStoresAgentCacheLruYaoBytes() ([]byte, error) {
+ return bindataRead(
+ _yaoStoresAgentCacheLruYao,
+ "yao/stores/agent/cache.lru.yao",
+ )
+}
+
+func yaoStoresAgentCacheLruYao() (*asset, error) {
+ bytes, err := yaoStoresAgentCacheLruYaoBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "yao/stores/agent/cache.lru.yao", size: 301, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _yaoStoresAgentMemoryBadgerYao = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\x31\x6b\xc3\x40\x0c\x85\x77\xff\x8a\x87\xe6\x04\x97\x8e\xde\x5c\xba\x16\x43\x9b\xa5\x94\x12\xe4\x58\x71\x0f\xce\x77\xe6\x4e\x19\x8c\xf1\x7f\x2f\x27\x27\x6b\x36\xdd\xbb\xf7\x49\x7a\x5a\x2b\x80\x3c\xf7\xe2\xa9\x01\xb5\xa3\x04\xc5\x87\x4c\x31\x2d\xf8\xd2\x98\x84\x0e\xc5\x30\x48\xbe\x24\x37\xab\x8b\xa1\xd8\xde\x78\x18\x25\x1d\x7b\xce\x32\x20\x17\x1b\xae\x31\x81\x8d\x9e\x76\x7a\x96\x94\x5d\x56\x09\x17\x01\x87\x01\x3e\x86\xf1\xa8\x92\x26\x03\x78\xbc\x77\x56\x1e\x33\x35\xf8\x21\x83\xe9\x00\xda\xf9\x52\xf5\x36\xa6\x54\xec\xe8\xd7\xec\x49\x78\x88\xc1\x2f\xd4\xe0\xca\x3e\x8b\x89\xfd\xcd\x79\x75\x65\x33\x4d\xb7\x5d\xca\x31\x29\x35\x78\x7d\xb1\x57\xe0\x49\x9e\xc5\xd3\x65\xb6\xff\xc7\xc0\xa2\xc5\x47\xda\x72\x21\x80\x66\xd6\xbf\xe2\x59\x57\x7c\xb7\xdd\xf9\xbd\x3d\xb5\xe7\xcf\xae\x3b\x61\xdb\x6a\x3b\x41\xae\x2d\x42\x7d\xdf\xbf\x02\xb6\x6a\xab\xfe\x03\x00\x00\xff\xff\x2b\x8a\xe7\x6d\x60\x01\x00\x00")
+
+func yaoStoresAgentMemoryBadgerYaoBytes() ([]byte, error) {
+ return bindataRead(
+ _yaoStoresAgentMemoryBadgerYao,
+ "yao/stores/agent/memory.badger.yao",
+ )
+}
+
+func yaoStoresAgentMemoryBadgerYao() (*asset, error) {
+ bytes, err := yaoStoresAgentMemoryBadgerYaoBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "yao/stores/agent/memory.badger.yao", size: 352, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _yaoStoresCacheLruYao = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x8f\x31\x4f\x03\x31\x0c\x85\xf7\xfb\x15\x4f\x9e\x59\xe8\x04\xb7\xb2\x32\x51\x31\x20\xc4\x90\x5e\xdd\x12\x29\x89\xab\xd8\x37\x84\xaa\xff\x1d\xd9\xd5\xad\x9d\x92\x7c\xfe\xf4\xe2\x77\x9d\x00\x2a\xe9\xc0\x85\x66\xd0\x7e\xa8\x71\xc5\x5b\x5a\x7e\x19\x7b\x93\xce\xf4\xe4\xc2\x91\x75\xe9\xf9\x62\x59\x9a\x6b\xef\x1f\x9f\x58\xc2\x51\x77\x70\x92\x8e\x45\x6a\x95\x16\x38\xb7\x33\x72\xc3\x57\x12\x68\x04\xde\x43\x2c\x9d\x95\x66\x7c\xd3\x06\x41\x11\xe2\x97\xd2\x57\x3f\x2a\x57\xe9\x83\x7e\xc2\xef\x9c\x8e\xd2\xca\xa0\x19\xa7\x54\x94\x03\x1e\xd6\x5c\x2c\xfb\x16\xd6\xd7\x3b\x52\xe9\x46\x33\x76\xf1\x68\xa9\xf2\xa3\x26\x36\x2e\x31\x8f\x0f\x1d\xc8\xd6\xea\x0a\xd2\xfc\xe7\xc3\x97\xe7\xd7\x1d\x6e\xd3\x6d\xfa\x0f\x00\x00\xff\xff\x50\x07\x46\x42\x1d\x01\x00\x00")
+
+func yaoStoresCacheLruYaoBytes() ([]byte, error) {
+ return bindataRead(
+ _yaoStoresCacheLruYao,
+ "yao/stores/cache.lru.yao",
+ )
+}
+
+func yaoStoresCacheLruYao() (*asset, error) {
+ bytes, err := yaoStoresCacheLruYaoBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "yao/stores/cache.lru.yao", size: 285, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _yaoStoresKbCacheLruYao = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x90\x31\x4f\xc4\x30\x0c\x85\xf7\xfe\x8a\x27\xcf\xb7\x94\x09\x3a\xc2\x08\x13\x88\x09\x31\xb8\xad\xef\x88\x2e\x17\x57\x8e\x2b\x54\xd0\xfd\x77\xe4\x54\x2c\x4c\x4c\x49\x9e\x3e\x7d\xf1\xf3\x77\x07\x50\xe6\x51\x32\x0d\xa0\xc7\xa2\x9f\x59\xe6\x93\xe0\x9e\xab\xe0\x81\xa7\x0f\xc1\x8b\xab\x09\x1d\x02\x9c\xa5\x4e\x96\x16\x4f\x5a\x02\x7f\x7a\x7e\xc5\xd4\x98\x1a\x0c\x8e\x6a\xf8\xa3\x70\xb9\x2c\x6a\x6c\x1b\x66\x76\xde\x2d\xce\xa7\x4a\x03\xde\xe8\x3c\xd2\x01\xd4\x0c\x71\xc9\xb6\xc6\xe1\x7a\x96\x42\xef\x0d\x35\xe1\x59\x4b\xde\x68\xc0\x91\x73\x95\x16\x8e\x6b\xca\x9e\x62\x02\xb7\x75\x8f\xaa\x9a\xd3\x80\xbe\x6f\xaf\xc2\x17\xf9\x4f\x1d\xdf\x96\xc6\xb5\x8f\x23\xd0\xdf\x6a\xb1\x96\xd0\xa6\xaf\x00\x6e\xfb\xbb\x9b\x0e\xb8\x76\xd7\xee\x27\x00\x00\xff\xff\xd2\xb4\xa0\x9a\x30\x01\x00\x00")
+
+func yaoStoresKbCacheLruYaoBytes() ([]byte, error) {
+ return bindataRead(
+ _yaoStoresKbCacheLruYao,
+ "yao/stores/kb/cache.lru.yao",
+ )
+}
+
+func yaoStoresKbCacheLruYao() (*asset, error) {
+ bytes, err := yaoStoresKbCacheLruYaoBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "yao/stores/kb/cache.lru.yao", size: 304, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _yaoStoresKbStoreBadgerYao = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x90\x31\x6b\xc3\x30\x10\x85\x77\xff\x8a\xc7\xcd\x29\x69\x57\x6f\x0e\xd9\x3a\x18\xda\x2c\xa5\x94\x70\xaa\x2e\xae\x89\x2a\x19\xdd\x85\x12\x8c\xff\x7b\x91\x4c\x28\x74\xca\x76\xf7\x78\xdf\x93\xde\xcd\x0d\x40\x81\x9d\x04\x6a\x41\xcf\x31\xfd\x04\xf1\x83\x60\xc7\x2a\xd8\xb3\x31\x5e\x2d\x65\xa1\x4d\xf1\x79\xd1\xcf\x3c\x4e\x36\xa6\x58\xdc\x3b\xf6\x83\xe4\x07\xc7\x2a\x1e\x93\x64\x1d\xd5\x24\x1a\xb4\x10\x38\xa5\x8c\x7f\x79\x9e\x8d\xd7\x24\xe3\x41\xa9\xc5\x3b\x9d\x1d\x6d\x40\x7f\x70\xd9\x5c\xcd\x2d\x53\x05\x3e\x2a\x91\x85\x7d\x8a\xe1\x4a\x2d\x4e\x1c\x54\xaa\xe8\x2e\x63\xb0\xb1\x7c\xc6\xf2\x65\x95\x34\x65\xa3\x16\x4f\x8f\x75\x8b\xfc\x2d\x77\x14\xb3\xeb\x54\x6d\xb7\x97\x8b\x96\x6e\x3d\xcb\x89\x00\x9a\xd8\xbe\x8a\x67\x9e\xf1\xd6\xf5\xc7\x7d\x77\xe8\x8e\x2f\x7d\x7f\xc0\xb2\x6c\x6b\x63\xdd\x9e\xdd\x3a\x51\x03\x2c\xcd\xd2\xfc\x06\x00\x00\xff\xff\x7a\xea\x44\x5c\x5d\x01\x00\x00")
+
+func yaoStoresKbStoreBadgerYaoBytes() ([]byte, error) {
+ return bindataRead(
+ _yaoStoresKbStoreBadgerYao,
+ "yao/stores/kb/store.badger.yao",
+ )
+}
+
+func yaoStoresKbStoreBadgerYao() (*asset, error) {
+ bytes, err := yaoStoresKbStoreBadgerYaoBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "yao/stores/kb/store.badger.yao", size: 349, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _yaoStoresOauthCacheLruYao = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\xb1\x4e\xc4\x30\x0c\x86\xf7\x3e\xc5\x2f\xcf\x5d\xca\x04\xdd\x10\x2b\x12\x12\x88\x09\x31\xf8\x5a\x1f\x8d\xc8\xc5\x55\xec\x0e\x05\xdd\xbb\x23\xa7\x62\xbd\x29\xc9\xef\x2f\x5f\x62\xff\x76\x00\x65\x3e\x49\xa6\x11\xf4\xf2\xb8\xf9\x82\x27\x9e\x16\xc1\x9b\x6b\x15\xea\xa3\x3e\x8b\x4d\x35\xad\x9e\xb4\x04\xf5\xfc\xfa\x8e\xa9\x31\x16\x0c\xce\x5a\x71\xdc\x74\xfd\x96\x62\x3d\x4c\xcc\x92\x16\x03\x97\x19\x2e\x97\x55\x2b\xd7\x1d\x33\x3b\x1f\x46\xe7\x2f\xa3\x11\x1f\xa4\xbc\xf9\x42\x3d\xa8\x09\x63\x93\xeb\x16\x4b\x53\xd1\x67\xa3\xab\xf0\xac\x25\xef\x34\xe2\xcc\xd9\xa4\x85\xa7\x2d\x65\x4f\xf1\x21\xaf\xdb\x11\x99\x56\xa7\x11\xc3\xd0\x4e\x85\x2f\x72\xa3\x29\xdf\xd7\x56\x6e\xef\x45\xa0\xff\x0d\xc6\x4c\xc2\x96\x7e\x02\xb8\x1f\x1e\xee\x3a\xe0\xda\x5d\xbb\xbf\x00\x00\x00\xff\xff\x78\xaa\xeb\x30\x2d\x01\x00\x00")
+
+func yaoStoresOauthCacheLruYaoBytes() ([]byte, error) {
+ return bindataRead(
+ _yaoStoresOauthCacheLruYao,
+ "yao/stores/oauth/cache.lru.yao",
+ )
+}
+
+func yaoStoresOauthCacheLruYao() (*asset, error) {
+ bytes, err := yaoStoresOauthCacheLruYaoBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "yao/stores/oauth/cache.lru.yao", size: 301, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _yaoStoresOauthClientBadgerYao = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\xb1\x4e\xc4\x30\x10\x44\xfb\x7c\xc5\x68\xeb\x43\x07\x6d\xba\x00\x7d\x24\xb8\x06\x21\x74\xda\xc4\x9b\x8b\x25\x9f\x1d\xd9\x9b\x22\x8a\xf2\xef\xc8\x36\xd7\xd2\xad\xc7\xf3\xbc\x9e\xd9\x1b\x80\x1c\x0f\xe2\xa8\x05\xf5\xdd\xaa\x33\xde\x9c\x15\xaf\xf8\xd4\x10\x85\x4e\xd9\x60\x24\x8d\xd1\x2e\x6a\x83\xcf\xb6\x57\x36\x37\x89\x4f\x03\x27\x31\x48\xd9\x86\x29\x44\x54\x7a\xac\xb4\xf5\x53\x88\x77\xce\x08\xd8\x1b\x8c\x51\x8c\x78\xb5\xec\x52\x7d\x53\xf9\x96\xa8\xc5\x37\x05\x5e\x75\xa6\x13\xa8\x92\x79\x1a\xca\x82\x3c\x25\x19\xd7\x68\x75\xa3\x9f\x02\x45\x61\x13\xbc\xdb\xa8\xc5\xc4\x2e\x49\x11\x87\xd5\x3a\xb5\xf9\x67\x1a\xd7\x2a\xa5\x10\x95\x5a\xbc\x3c\x97\x93\xe7\xbb\xfc\x17\x4f\xb7\xa5\xdc\x3f\xd6\x66\x2d\x3c\xd2\xe6\x86\x00\x5a\x58\xe7\xec\xd9\x77\x7c\x75\xfd\xf5\xbd\xbb\x74\xd7\x8f\xbe\xbf\xe0\x38\xce\xa5\x82\x74\x2e\x41\xce\x7f\x29\x1a\xe0\x68\x8e\xe6\x37\x00\x00\xff\xff\x10\x3a\xdc\xe7\x60\x01\x00\x00")
+
+func yaoStoresOauthClientBadgerYaoBytes() ([]byte, error) {
+ return bindataRead(
+ _yaoStoresOauthClientBadgerYao,
+ "yao/stores/oauth/client.badger.yao",
+ )
+}
+
+func yaoStoresOauthClientBadgerYao() (*asset, error) {
+ bytes, err := yaoStoresOauthClientBadgerYaoBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "yao/stores/oauth/client.badger.yao", size: 352, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _yaoStoresOauthStoreBadgerYao = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x50\xb1\x6e\xeb\x30\x0c\xdc\xfd\x15\x07\xce\x79\xc8\xeb\xea\xcd\x45\x76\x03\x6d\x96\xa2\x28\x02\x3a\x62\x62\xa1\xae\x64\x88\xf4\x90\x06\xfe\xf7\x82\x32\x82\x4e\xdd\x74\xa7\x3b\x1e\x79\xf7\x06\xa0\x89\x07\x99\xa8\x05\xf5\xdd\x62\x23\x0e\x6c\x8c\x57\xcb\x45\x68\xe7\xdf\x41\xf4\x5c\xe2\x6c\x31\x27\x17\x3d\x73\xb8\x4a\xf9\x37\xb0\x4a\xc0\x2c\x45\xa3\x9a\x24\x83\xba\x03\x97\x5c\xb0\x8d\xe1\xc5\xc6\x5c\xe2\x37\xbb\x11\xe7\x1c\x44\x77\x28\x72\x29\xa2\x23\x2c\x7f\x4a\x52\x70\x0a\x50\x51\x75\x45\x60\xe3\x2d\xd0\xf8\xaa\xd4\xe2\x9d\xb2\xcf\xa0\x1d\xe8\x37\xc6\xd1\x50\x37\xf0\x57\xf5\x7c\x54\x53\x11\x0e\x39\x4d\x37\x6a\x71\xe1\x49\xa5\x92\xc3\x12\x27\x8b\xbe\xb6\x95\x65\xa3\x34\x17\xa3\x16\x4f\xff\x2b\x4a\xfc\x25\x7f\x5f\x6e\xb7\xb9\xfe\x3e\x02\x9d\xcb\x8f\x22\xbc\x3a\x80\x66\xb6\xd1\x35\xf7\x3b\xde\xba\xfe\x74\xe8\x8e\xdd\xe9\xa5\xef\x8f\x58\xd7\x7d\xad\x44\xf7\xf5\x8c\x0d\x50\x03\xac\xcd\xda\xfc\x04\x00\x00\xff\xff\x4f\xdd\x41\x39\x78\x01\x00\x00")
+
+func yaoStoresOauthStoreBadgerYaoBytes() ([]byte, error) {
+ return bindataRead(
+ _yaoStoresOauthStoreBadgerYao,
+ "yao/stores/oauth/store.badger.yao",
+ )
+}
+
+func yaoStoresOauthStoreBadgerYao() (*asset, error) {
+ bytes, err := yaoStoresOauthStoreBadgerYaoBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "yao/stores/oauth/store.badger.yao", size: 376, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _yaoStoresStoreBadgerYao = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\x41\x6b\xc3\x30\x0c\x85\xef\xf9\x15\x0f\x9d\x57\xc6\xae\xb9\x65\xf4\x1e\x58\x7b\x29\x63\x14\xa5\x51\xb3\x50\xc7\x0e\xb6\x52\x08\x21\xff\x7d\xc8\x59\xae\x3d\x59\xfe\xf4\xa4\xe7\xe7\xa5\x00\xc8\x71\x23\x8e\x4a\xd0\x69\x4e\x2a\x03\x8e\xac\x8c\x93\x86\x28\xf4\x66\xfd\x56\xd2\x2d\xf6\xa3\xf6\xc1\x9b\xea\x93\xdb\x4e\xe2\xa1\xe1\x24\x2d\x1e\x32\x1f\x9e\xec\x26\x41\xb2\x01\xdc\x43\xc4\x2d\x0c\x43\xf0\x68\x6d\x8d\x51\xee\x04\xbd\xc7\x85\x03\x52\x76\xd8\xd6\x2a\x77\x89\x4a\x7c\xd3\x0e\x41\xff\x6a\x2b\x9b\xec\x62\xd5\xe3\x49\x3f\x79\x20\x0a\xb7\xc1\xbb\x99\x4a\xdc\xd9\x25\xc9\xb0\x99\x7a\xa7\xbd\x3d\x4c\xe3\xb4\xa1\x14\xa2\x52\x89\x8f\x7c\xf1\x3c\xc8\x8b\x6c\x3a\x8f\xb9\xbd\xdb\x19\x0b\x7b\x54\xfb\x1d\x80\x46\xd6\x5f\xd3\x2c\x0b\x2e\x55\x7d\x3d\x56\xe7\xea\xfa\x55\xd7\x67\xac\xeb\x7b\x4e\x9d\xb6\x83\x0a\x60\x2d\xd6\xe2\x2f\x00\x00\xff\xff\xf5\x80\x51\x1b\x55\x01\x00\x00")
+
+func yaoStoresStoreBadgerYaoBytes() ([]byte, error) {
+ return bindataRead(
+ _yaoStoresStoreBadgerYao,
+ "yao/stores/store.badger.yao",
+ )
+}
+
+func yaoStoresStoreBadgerYao() (*asset, error) {
+ bytes, err := yaoStoresStoreBadgerYaoBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "yao/stores/store.badger.yao", size: 341, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
+ a := &asset{bytes: bytes, info: info}
+ return a, nil
+}
+
+var _yaoUploadersAttachmentLocalYao = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x52\x41\x6f\xdb\x3c\x0c\xbd\xe7\x57\x10\x3a\x7e\x68\x9c\x7e\x5d\x77\x58\x6e\x03\x76\xdc\x8e\x3b\x0d\x45\xc0\x4a\x74\xa2\x4d\x32\x05\x91\x4e\x9c\x16\xfd\xef\x83\x94\xc4\xf6\x00\xef\x52\xec\xe4\xc7\xc7\xc7\xf7\x28\x4b\xaf\x2b\x00\x13\xf0\x99\x82\xd9\x82\xf9\xac\x8a\xf6\x10\xa9\x53\x81\xaf\x6c\x31\xc0\xf7\x14\x18\x1d\x65\xf8\x42\x2d\xf6\x41\xcd\x5d\x19\x70\x24\x36\xfb\xa4\x9e\xbb\x32\x76\xed\x41\xa8\x23\xa2\x9c\x71\x4f\xd0\xdf\x46\x5b\xce\x20\x67\x51\x8a\x80\x53\xc0\xc5\x49\x71\x2f\x66\x0b\x3f\xcc\x45\x60\xee\xc0\x54\x97\x02\xdc\x35\xf2\xe9\x92\x99\xfd\x91\x72\x89\xbb\x0a\x0a\x99\x09\x1d\x77\xe1\x6c\xb6\xa0\xb9\xa7\xca\x3d\xf7\x3e\xa8\xef\xe6\x14\xd7\x55\x4b\xd0\x2b\x98\x84\x7a\x28\x36\x9b\xdd\xee\x8c\xbc\x99\xaf\x04\x6f\x55\x6e\x0f\x7d\xf7\x6b\x27\xfe\x85\x8a\xee\xe1\xdb\x25\x2b\xe2\x30\x72\x1f\xef\xaf\xe4\xfe\xc5\x27\xb3\x85\x16\x83\x5c\xa2\x2c\xc7\x94\x49\x64\xe7\x23\xee\x8b\xf6\xff\x4f\x0f\xf7\xb5\x83\x21\xf0\x89\xdc\x4e\xcf\x89\xea\x99\x57\x00\xe5\x0f\xd0\xa0\x9b\xff\xaa\x1b\x80\xa9\x53\x53\x79\xf4\x8e\x78\x2a\xb1\x77\x7e\x5e\xa6\x14\xbc\xc5\x72\xb6\x0d\x5b\x25\x5d\x8b\x66\xc2\xb8\xd4\x1f\xd6\x2f\x3e\xad\x6f\xdb\x91\x5b\xd6\x28\xe6\xe5\x46\x3d\xe7\x42\xe7\x8c\xbc\x44\xff\x45\x9d\x5c\xbb\x44\xff\x14\xee\x96\xf8\x63\xe7\x1a\x4e\xd4\x0d\x31\xb4\x9c\x23\xaa\xac\xb9\x6d\xbd\x25\xc7\xb6\x2f\x37\xd6\x9c\x38\xbb\x94\xd9\x92\x88\xef\xf6\x31\x34\xb7\xce\xfb\xec\x24\x95\x07\x25\x07\x22\x8d\xa1\xa9\xdf\xf7\x19\x95\x9f\x4c\x9d\x56\x79\x0c\x7f\x94\xff\xc4\x50\x82\x77\x24\x07\x3e\xdd\xdc\x9a\x38\xde\x68\xa3\xc3\xb8\x75\x63\xe5\x38\xe2\x21\xc8\x1c\x0f\x63\x91\x92\xce\xf1\xd4\x70\x6c\xe7\x78\x98\xa5\xcd\xf0\x23\x4e\x38\x7d\x98\xe1\xc7\x11\x9f\x70\x5a\xe3\x44\xcf\xe3\x0b\x6d\xca\xfb\x59\x01\x3c\xad\xde\x56\xbf\x03\x00\x00\xff\xff\xfe\xdc\x13\xbe\x8b\x04\x00\x00")
+
+func yaoUploadersAttachmentLocalYaoBytes() ([]byte, error) {
+ return bindataRead(
+ _yaoUploadersAttachmentLocalYao,
+ "yao/uploaders/attachment.local.yao",
+ )
+}
+
+func yaoUploadersAttachmentLocalYao() (*asset, error) {
+ bytes, err := yaoUploadersAttachmentLocalYaoBytes()
+ if err != nil {
+ return nil, err
+ }
+
+ info := bindataFileInfo{name: "yao/uploaders/attachment.local.yao", size: 1163, mode: os.FileMode(420), modTime: time.Unix(1755684034, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
@@ -1412,63 +3029,140 @@ func AssetNames() []string {
// _bindata is a table, holding each asset generator, mapped to its name.
var _bindata = map[string]func() (*asset, error){
- "init/README.md": initReadmeMd,
- "init/aigcs/translate.ai.yml": initAigcsTranslateAiYml,
- "init/apis/aigc.http.yao": initApisAigcHttpYao,
- "init/app.yao": initAppYao,
- "init/charts/pet.chart.yao": initChartsPetChartYao,
- "init/connectors/openai/gpt-3_5-turbo.conn.yao": initConnectorsOpenaiGpt3_5TurboConnYao,
- "init/connectors/openai/text-embedding-ada-002.conn.yao": initConnectorsOpenaiTextEmbeddingAda002ConnYao,
- "init/connectors/openai/whisper-1.conn.yao": initConnectorsOpenaiWhisper1ConnYao,
- "init/dashboards/kanban.dash.yao": initDashboardsKanbanDashYao,
- "init/flows/app/menu.flow.yao": initFlowsAppMenuFlowYao,
- "init/flows/stat/data.flow.yao": initFlowsStatDataFlowYao,
- "init/forms/admin/user.form.yao": initFormsAdminUserFormYao,
- "init/forms/demo/pet.form.yao": initFormsDemoPetFormYao,
- "init/icons/app.icns": initIconsAppIcns,
- "init/icons/app.ico": initIconsAppIco,
- "init/icons/app.png": initIconsAppPng,
- "init/langs/zh-cn/global.yml": initLangsZhCnGlobalYml,
- "init/langs/zh-hk/global.yml": initLangsZhHkGlobalYml,
- "init/logins/admin.login.yao": initLoginsAdminLoginYao,
- "init/logins/user.login.yao": initLoginsUserLoginYao,
- "init/models/admin/user.mod.yao": initModelsAdminUserModYao,
- "init/models/pet.mod.yao": initModelsPetModYao,
- "init/neo/neo.yml": initNeoNeoYml,
- "init/public/demo/pet.html": initPublicDemoPetHtml,
- "init/public/index.html": initPublicIndexHtml,
- "init/scripts/dash.js": initScriptsDashJs,
- "init/scripts/guard.js": initScriptsGuardJs,
- "init/scripts/setup.js": initScriptsSetupJs,
- "init/scripts/stat.js": initScriptsStatJs,
- "init/services/foo.js": initServicesFooJs,
- "init/studio/hello.js": initStudioHelloJs,
- "init/tables/admin/user.tab.yao": initTablesAdminUserTabYao,
- "init/tables/demo/pet.tab.yao": initTablesDemoPetTabYao,
- "libsui/index.ts": libsuiIndexTs,
- "libsui/utils.ts": libsuiUtilsTs,
- "libsui/yao.ts": libsuiYaoTs,
- "public/index.html": publicIndexHtml,
- "ui/index.html": uiIndexHtml,
- "xgen/setup/index.html": xgenSetupIndexHtml,
- "xgen/v0.9/index.html": xgenV09IndexHtml,
- "xgen/v1.0/index.html": xgenV10IndexHtml,
- "xgen/v1.0/layouts__index.async.js": xgenV10Layouts__indexAsyncJs,
- "xgen/v1.0/umi.js": xgenV10UmiJs,
- "yao/data/icons/404.png": yaoDataIcons404Png,
- "yao/data/icons/icon.icns": yaoDataIconsIconIcns,
- "yao/data/icons/icon.ico": yaoDataIconsIconIco,
- "yao/data/icons/icon.png": yaoDataIconsIconPng,
- "yao/data/index.html": yaoDataIndexHtml,
- "yao/fields/model.trans.json": yaoFieldsModelTransJson,
- "yao/langs/en-US.json": yaoLangsEnUsJson,
- "yao/langs/zh-cn/global.yml": yaoLangsZhCnGlobalYml,
- "yao/langs/zh-cn/logins/admin.login.yml": yaoLangsZhCnLoginsAdminLoginYml,
- "yao/langs/zh-cn/logins/user.login.yml": yaoLangsZhCnLoginsUserLoginYml,
- "yao/langs/zh-hk/global.yml": yaoLangsZhHkGlobalYml,
- "yao/langs/zh-hk/logins/admin.login.yml": yaoLangsZhHkLoginsAdminLoginYml,
- "yao/langs/zh-hk/logins/user.login.yml": yaoLangsZhHkLoginsUserLoginYml,
- "yao/release/app.yaz": yaoReleaseAppYaz,
+ "cui/setup/index.html": cuiSetupIndexHtml,
+ "cui/v0.9/index.html": cuiV09IndexHtml,
+ "cui/v1.0/index.html": cuiV10IndexHtml,
+ "cui/v1.0/layouts__index.async.js": cuiV10Layouts__indexAsyncJs,
+ "cui/v1.0/umi.js": cuiV10UmiJs,
+ "init/.env": initEnv,
+ "init/.vscode/settings.json": initVscodeSettingsJson,
+ "init/.vscode/types/runtime/console.d.ts": initVscodeTypesRuntimeConsoleDTs,
+ "init/.vscode/types/runtime/exception.d.ts": initVscodeTypesRuntimeExceptionDTs,
+ "init/.vscode/types/runtime/fs.d.ts": initVscodeTypesRuntimeFsDTs,
+ "init/.vscode/types/runtime/global.d.ts": initVscodeTypesRuntimeGlobalDTs,
+ "init/.vscode/types/runtime/http.d.ts": initVscodeTypesRuntimeHttpDTs,
+ "init/.vscode/types/runtime/io.d.ts": initVscodeTypesRuntimeIoDTs,
+ "init/.vscode/types/runtime/log.d.ts": initVscodeTypesRuntimeLogDTs,
+ "init/.vscode/types/runtime/neo.d.ts": initVscodeTypesRuntimeNeoDTs,
+ "init/.vscode/types/runtime/process/fs.d.ts": initVscodeTypesRuntimeProcessFsDTs,
+ "init/.vscode/types/runtime/process/http.d.ts": initVscodeTypesRuntimeProcessHttpDTs,
+ "init/.vscode/types/runtime/process/model.d.ts": initVscodeTypesRuntimeProcessModelDTs,
+ "init/.vscode/types/runtime/process.d.ts": initVscodeTypesRuntimeProcessDTs,
+ "init/.vscode/types/runtime/query.d.ts": initVscodeTypesRuntimeQueryDTs,
+ "init/.vscode/types/runtime/store.d.ts": initVscodeTypesRuntimeStoreDTs,
+ "init/.vscode/types/runtime/sui.d.ts": initVscodeTypesRuntimeSuiDTs,
+ "init/.vscode/types/runtime/time.d.ts": initVscodeTypesRuntimeTimeDTs,
+ "init/.vscode/types/runtime.d.ts": initVscodeTypesRuntimeDTs,
+ "init/.vscode/types/sui.d.ts": initVscodeTypesSuiDTs,
+ "init/app.yao": initAppYao,
+ "init/data/README.md": initDataReadmeMd,
+ "init/data/templates/default/__assets/README.md": initDataTemplatesDefault__assetsReadmeMd,
+ "init/data/templates/default/__assets/images/icons/app.png": initDataTemplatesDefault__assetsImagesIconsAppPng,
+ "init/data/templates/default/__assets/images/logos/logo_color.svg": initDataTemplatesDefault__assetsImagesLogosLogo_colorSvg,
+ "init/data/templates/default/__assets/images/logos/wordmark.svg": initDataTemplatesDefault__assetsImagesLogosWordmarkSvg,
+ "init/data/templates/default/__data.json": initDataTemplatesDefault__dataJson,
+ "init/data/templates/default/__document.html": initDataTemplatesDefault__documentHtml,
+ "init/data/templates/default/index/index.css": initDataTemplatesDefaultIndexIndexCss,
+ "init/data/templates/default/index/index.html": initDataTemplatesDefaultIndexIndexHtml,
+ "init/data/templates/default/index/index.json": initDataTemplatesDefaultIndexIndexJson,
+ "init/db/README.md": initDbReadmeMd,
+ "init/flows/menu.flow.yao": initFlowsMenuFlowYao,
+ "init/forms/account.form.yao": initFormsAccountFormYao,
+ "init/icons/app.icns": initIconsAppIcns,
+ "init/icons/app.ico": initIconsAppIco,
+ "init/icons/app.png": initIconsAppPng,
+ "init/logins/admin.login.yao": initLoginsAdminLoginYao,
+ "init/logs/README.md": initLogsReadmeMd,
+ "init/models/admin/user.mod.yao": initModelsAdminUserModYao,
+ "init/models/tests/pet.mod.yao": initModelsTestsPetModYao,
+ "init/neo/neo.yml": initNeoNeoYml,
+ "init/public/README.md": initPublicReadmeMd,
+ "init/public/assets/README.md": initPublicAssetsReadmeMd,
+ "init/public/assets/images/icons/app.png": initPublicAssetsImagesIconsAppPng,
+ "init/public/assets/images/logos/logo_color.svg": initPublicAssetsImagesLogosLogo_colorSvg,
+ "init/public/assets/images/logos/wordmark.svg": initPublicAssetsImagesLogosWordmarkSvg,
+ "init/public/assets/libsui.min.js": initPublicAssetsLibsuiMinJs,
+ "init/public/assets/libsui.min.js.map": initPublicAssetsLibsuiMinJsMap,
+ "init/public/index.cfg": initPublicIndexCfg,
+ "init/public/index.sui": initPublicIndexSui,
+ "init/scripts/account.ts": initScriptsAccountTs,
+ "init/scripts/ai/neo.ts": initScriptsAiNeoTs,
+ "init/scripts/tests.ts": initScriptsTestsTs,
+ "init/scripts/utils.ts": initScriptsUtilsTs,
+ "init/suis/web.sui.yao": initSuisWebSuiYao,
+ "init/tables/account.tab.yao": initTablesAccountTabYao,
+ "init/tsconfig.json": initTsconfigJson,
+ "libsui/agent.ts": libsuiAgentTs,
+ "libsui/index.ts": libsuiIndexTs,
+ "libsui/utils.ts": libsuiUtilsTs,
+ "libsui/yao.ts": libsuiYaoTs,
+ "public/index.html": publicIndexHtml,
+ "ui/index.html": uiIndexHtml,
+ "yao/data/icons/404.png": yaoDataIcons404Png,
+ "yao/data/icons/icon.icns": yaoDataIconsIconIcns,
+ "yao/data/icons/icon.ico": yaoDataIconsIconIco,
+ "yao/data/icons/icon.png": yaoDataIconsIconPng,
+ "yao/data/index.html": yaoDataIndexHtml,
+ "yao/data/kb/providers/chunking/semantic/en.json": yaoDataKbProvidersChunkingSemanticEnJson,
+ "yao/data/kb/providers/chunking/semantic/zh-cn.json": yaoDataKbProvidersChunkingSemanticZhCnJson,
+ "yao/data/kb/providers/chunking/structured/en.json": yaoDataKbProvidersChunkingStructuredEnJson,
+ "yao/data/kb/providers/chunking/structured/zh-cn.json": yaoDataKbProvidersChunkingStructuredZhCnJson,
+ "yao/data/kb/providers/converter/mcp/en.json": yaoDataKbProvidersConverterMcpEnJson,
+ "yao/data/kb/providers/converter/mcp/zh-cn.json": yaoDataKbProvidersConverterMcpZhCnJson,
+ "yao/data/kb/providers/converter/ocr/en.json": yaoDataKbProvidersConverterOcrEnJson,
+ "yao/data/kb/providers/converter/ocr/zh-cn.json": yaoDataKbProvidersConverterOcrZhCnJson,
+ "yao/data/kb/providers/converter/office/en.json": yaoDataKbProvidersConverterOfficeEnJson,
+ "yao/data/kb/providers/converter/office/zh-cn.json": yaoDataKbProvidersConverterOfficeZhCnJson,
+ "yao/data/kb/providers/converter/utf8/en.json": yaoDataKbProvidersConverterUtf8EnJson,
+ "yao/data/kb/providers/converter/utf8/zh-cn.json": yaoDataKbProvidersConverterUtf8ZhCnJson,
+ "yao/data/kb/providers/converter/video/en.json": yaoDataKbProvidersConverterVideoEnJson,
+ "yao/data/kb/providers/converter/video/zh-cn.json": yaoDataKbProvidersConverterVideoZhCnJson,
+ "yao/data/kb/providers/converter/vision/en.json": yaoDataKbProvidersConverterVisionEnJson,
+ "yao/data/kb/providers/converter/vision/zh-cn.json": yaoDataKbProvidersConverterVisionZhCnJson,
+ "yao/data/kb/providers/converter/whisper/en.json": yaoDataKbProvidersConverterWhisperEnJson,
+ "yao/data/kb/providers/converter/whisper/zh-cn.json": yaoDataKbProvidersConverterWhisperZhCnJson,
+ "yao/data/kb/providers/embedding/fastembed/en.json": yaoDataKbProvidersEmbeddingFastembedEnJson,
+ "yao/data/kb/providers/embedding/fastembed/zh-cn.json": yaoDataKbProvidersEmbeddingFastembedZhCnJson,
+ "yao/data/kb/providers/embedding/openai/en.json": yaoDataKbProvidersEmbeddingOpenaiEnJson,
+ "yao/data/kb/providers/embedding/openai/zh-cn.json": yaoDataKbProvidersEmbeddingOpenaiZhCnJson,
+ "yao/data/kb/providers/extraction/openai/en.json": yaoDataKbProvidersExtractionOpenaiEnJson,
+ "yao/data/kb/providers/extraction/openai/zh-cn.json": yaoDataKbProvidersExtractionOpenaiZhCnJson,
+ "yao/data/kb/providers/fetcher/http/en.json": yaoDataKbProvidersFetcherHttpEnJson,
+ "yao/data/kb/providers/fetcher/http/zh-cn.json": yaoDataKbProvidersFetcherHttpZhCnJson,
+ "yao/data/kb/providers/fetcher/mcp/en.json": yaoDataKbProvidersFetcherMcpEnJson,
+ "yao/data/kb/providers/fetcher/mcp/zh-cn.json": yaoDataKbProvidersFetcherMcpZhCnJson,
+ "yao/fields/model.trans.json": yaoFieldsModelTransJson,
+ "yao/langs/en-US.json": yaoLangsEnUsJson,
+ "yao/langs/zh-cn/global.yml": yaoLangsZhCnGlobalYml,
+ "yao/langs/zh-cn/logins/admin.login.yml": yaoLangsZhCnLoginsAdminLoginYml,
+ "yao/langs/zh-cn/logins/user.login.yml": yaoLangsZhCnLoginsUserLoginYml,
+ "yao/langs/zh-hk/global.yml": yaoLangsZhHkGlobalYml,
+ "yao/langs/zh-hk/logins/admin.login.yml": yaoLangsZhHkLoginsAdminLoginYml,
+ "yao/langs/zh-hk/logins/user.login.yml": yaoLangsZhHkLoginsUserLoginYml,
+ "yao/models/assistant.mod.yao": yaoModelsAssistantModYao,
+ "yao/models/attachment.mod.yao": yaoModelsAttachmentModYao,
+ "yao/models/audit.mod.yao": yaoModelsAuditModYao,
+ "yao/models/chat.mod.yao": yaoModelsChatModYao,
+ "yao/models/config.mod.yao": yaoModelsConfigModYao,
+ "yao/models/dsl.mod.yao": yaoModelsDslModYao,
+ "yao/models/history.mod.yao": yaoModelsHistoryModYao,
+ "yao/models/kb/collection.mod.yao": yaoModelsKbCollectionModYao,
+ "yao/models/kb/document.mod.yao": yaoModelsKbDocumentModYao,
+ "yao/models/user.mod.yao": yaoModelsUserModYao,
+ "yao/models/user_oauth_account.mod.yao": yaoModelsUser_oauth_accountModYao,
+ "yao/models/user_role.mod.yao": yaoModelsUser_roleModYao,
+ "yao/models/user_type.mod.yao": yaoModelsUser_typeModYao,
+ "yao/release/app.yaz": yaoReleaseAppYaz,
+ "yao/stores/agent/cache.lru.yao": yaoStoresAgentCacheLruYao,
+ "yao/stores/agent/memory.badger.yao": yaoStoresAgentMemoryBadgerYao,
+ "yao/stores/cache.lru.yao": yaoStoresCacheLruYao,
+ "yao/stores/kb/cache.lru.yao": yaoStoresKbCacheLruYao,
+ "yao/stores/kb/store.badger.yao": yaoStoresKbStoreBadgerYao,
+ "yao/stores/oauth/cache.lru.yao": yaoStoresOauthCacheLruYao,
+ "yao/stores/oauth/client.badger.yao": yaoStoresOauthClientBadgerYao,
+ "yao/stores/oauth/store.badger.yao": yaoStoresOauthStoreBadgerYao,
+ "yao/stores/store.badger.yao": yaoStoresStoreBadgerYao,
+ "yao/uploaders/attachment.local.yao": yaoUploadersAttachmentLocalYao,
}
// AssetDir returns the file names below a certain
@@ -1514,98 +3208,143 @@ type bintree struct {
}
var _bintree = &bintree{nil, map[string]*bintree{
- "init": {nil, map[string]*bintree{
- "README.md": {initReadmeMd, map[string]*bintree{}},
- "aigcs": {nil, map[string]*bintree{
- "translate.ai.yml": {initAigcsTranslateAiYml, map[string]*bintree{}},
+ "cui": {nil, map[string]*bintree{
+ "setup": {nil, map[string]*bintree{
+ "index.html": {cuiSetupIndexHtml, map[string]*bintree{}},
}},
- "apis": {nil, map[string]*bintree{
- "aigc.http.yao": {initApisAigcHttpYao, map[string]*bintree{}},
+ "v0.9": {nil, map[string]*bintree{
+ "index.html": {cuiV09IndexHtml, map[string]*bintree{}},
+ }},
+ "v1.0": {nil, map[string]*bintree{
+ "index.html": {cuiV10IndexHtml, map[string]*bintree{}},
+ "layouts__index.async.js": {cuiV10Layouts__indexAsyncJs, map[string]*bintree{}},
+ "umi.js": {cuiV10UmiJs, map[string]*bintree{}},
+ }},
+ }},
+ "init": {nil, map[string]*bintree{
+ ".env": {initEnv, map[string]*bintree{}},
+ ".vscode": {nil, map[string]*bintree{
+ "settings.json": {initVscodeSettingsJson, map[string]*bintree{}},
+ "types": {nil, map[string]*bintree{
+ "runtime": {nil, map[string]*bintree{
+ "console.d.ts": {initVscodeTypesRuntimeConsoleDTs, map[string]*bintree{}},
+ "exception.d.ts": {initVscodeTypesRuntimeExceptionDTs, map[string]*bintree{}},
+ "fs.d.ts": {initVscodeTypesRuntimeFsDTs, map[string]*bintree{}},
+ "global.d.ts": {initVscodeTypesRuntimeGlobalDTs, map[string]*bintree{}},
+ "http.d.ts": {initVscodeTypesRuntimeHttpDTs, map[string]*bintree{}},
+ "io.d.ts": {initVscodeTypesRuntimeIoDTs, map[string]*bintree{}},
+ "log.d.ts": {initVscodeTypesRuntimeLogDTs, map[string]*bintree{}},
+ "neo.d.ts": {initVscodeTypesRuntimeNeoDTs, map[string]*bintree{}},
+ "process": {nil, map[string]*bintree{
+ "fs.d.ts": {initVscodeTypesRuntimeProcessFsDTs, map[string]*bintree{}},
+ "http.d.ts": {initVscodeTypesRuntimeProcessHttpDTs, map[string]*bintree{}},
+ "model.d.ts": {initVscodeTypesRuntimeProcessModelDTs, map[string]*bintree{}},
+ }},
+ "process.d.ts": {initVscodeTypesRuntimeProcessDTs, map[string]*bintree{}},
+ "query.d.ts": {initVscodeTypesRuntimeQueryDTs, map[string]*bintree{}},
+ "store.d.ts": {initVscodeTypesRuntimeStoreDTs, map[string]*bintree{}},
+ "sui.d.ts": {initVscodeTypesRuntimeSuiDTs, map[string]*bintree{}},
+ "time.d.ts": {initVscodeTypesRuntimeTimeDTs, map[string]*bintree{}},
+ }},
+ "runtime.d.ts": {initVscodeTypesRuntimeDTs, map[string]*bintree{}},
+ "sui.d.ts": {initVscodeTypesSuiDTs, map[string]*bintree{}},
+ }},
}},
"app.yao": {initAppYao, map[string]*bintree{}},
- "charts": {nil, map[string]*bintree{
- "pet.chart.yao": {initChartsPetChartYao, map[string]*bintree{}},
- }},
- "connectors": {nil, map[string]*bintree{
- "openai": {nil, map[string]*bintree{
- "gpt-3_5-turbo.conn.yao": {initConnectorsOpenaiGpt3_5TurboConnYao, map[string]*bintree{}},
- "text-embedding-ada-002.conn.yao": {initConnectorsOpenaiTextEmbeddingAda002ConnYao, map[string]*bintree{}},
- "whisper-1.conn.yao": {initConnectorsOpenaiWhisper1ConnYao, map[string]*bintree{}},
+ "data": {nil, map[string]*bintree{
+ "README.md": {initDataReadmeMd, map[string]*bintree{}},
+ "templates": {nil, map[string]*bintree{
+ "default": {nil, map[string]*bintree{
+ "__assets": {nil, map[string]*bintree{
+ "README.md": {initDataTemplatesDefault__assetsReadmeMd, map[string]*bintree{}},
+ "images": {nil, map[string]*bintree{
+ "icons": {nil, map[string]*bintree{
+ "app.png": {initDataTemplatesDefault__assetsImagesIconsAppPng, map[string]*bintree{}},
+ }},
+ "logos": {nil, map[string]*bintree{
+ "logo_color.svg": {initDataTemplatesDefault__assetsImagesLogosLogo_colorSvg, map[string]*bintree{}},
+ "wordmark.svg": {initDataTemplatesDefault__assetsImagesLogosWordmarkSvg, map[string]*bintree{}},
+ }},
+ }},
+ }},
+ "__data.json": {initDataTemplatesDefault__dataJson, map[string]*bintree{}},
+ "__document.html": {initDataTemplatesDefault__documentHtml, map[string]*bintree{}},
+ "index": {nil, map[string]*bintree{
+ "index.css": {initDataTemplatesDefaultIndexIndexCss, map[string]*bintree{}},
+ "index.html": {initDataTemplatesDefaultIndexIndexHtml, map[string]*bintree{}},
+ "index.json": {initDataTemplatesDefaultIndexIndexJson, map[string]*bintree{}},
+ }},
+ }},
}},
}},
- "dashboards": {nil, map[string]*bintree{
- "kanban.dash.yao": {initDashboardsKanbanDashYao, map[string]*bintree{}},
+ "db": {nil, map[string]*bintree{
+ "README.md": {initDbReadmeMd, map[string]*bintree{}},
}},
"flows": {nil, map[string]*bintree{
- "app": {nil, map[string]*bintree{
- "menu.flow.yao": {initFlowsAppMenuFlowYao, map[string]*bintree{}},
- }},
- "stat": {nil, map[string]*bintree{
- "data.flow.yao": {initFlowsStatDataFlowYao, map[string]*bintree{}},
- }},
+ "menu.flow.yao": {initFlowsMenuFlowYao, map[string]*bintree{}},
}},
"forms": {nil, map[string]*bintree{
- "admin": {nil, map[string]*bintree{
- "user.form.yao": {initFormsAdminUserFormYao, map[string]*bintree{}},
- }},
- "demo": {nil, map[string]*bintree{
- "pet.form.yao": {initFormsDemoPetFormYao, map[string]*bintree{}},
- }},
+ "account.form.yao": {initFormsAccountFormYao, map[string]*bintree{}},
}},
"icons": {nil, map[string]*bintree{
"app.icns": {initIconsAppIcns, map[string]*bintree{}},
"app.ico": {initIconsAppIco, map[string]*bintree{}},
"app.png": {initIconsAppPng, map[string]*bintree{}},
}},
- "langs": {nil, map[string]*bintree{
- "zh-cn": {nil, map[string]*bintree{
- "global.yml": {initLangsZhCnGlobalYml, map[string]*bintree{}},
- }},
- "zh-hk": {nil, map[string]*bintree{
- "global.yml": {initLangsZhHkGlobalYml, map[string]*bintree{}},
- }},
- }},
"logins": {nil, map[string]*bintree{
"admin.login.yao": {initLoginsAdminLoginYao, map[string]*bintree{}},
- "user.login.yao": {initLoginsUserLoginYao, map[string]*bintree{}},
+ }},
+ "logs": {nil, map[string]*bintree{
+ "README.md": {initLogsReadmeMd, map[string]*bintree{}},
}},
"models": {nil, map[string]*bintree{
"admin": {nil, map[string]*bintree{
"user.mod.yao": {initModelsAdminUserModYao, map[string]*bintree{}},
}},
- "pet.mod.yao": {initModelsPetModYao, map[string]*bintree{}},
+ "tests": {nil, map[string]*bintree{
+ "pet.mod.yao": {initModelsTestsPetModYao, map[string]*bintree{}},
+ }},
}},
"neo": {nil, map[string]*bintree{
"neo.yml": {initNeoNeoYml, map[string]*bintree{}},
}},
"public": {nil, map[string]*bintree{
- "demo": {nil, map[string]*bintree{
- "pet.html": {initPublicDemoPetHtml, map[string]*bintree{}},
+ "README.md": {initPublicReadmeMd, map[string]*bintree{}},
+ "assets": {nil, map[string]*bintree{
+ "README.md": {initPublicAssetsReadmeMd, map[string]*bintree{}},
+ "images": {nil, map[string]*bintree{
+ "icons": {nil, map[string]*bintree{
+ "app.png": {initPublicAssetsImagesIconsAppPng, map[string]*bintree{}},
+ }},
+ "logos": {nil, map[string]*bintree{
+ "logo_color.svg": {initPublicAssetsImagesLogosLogo_colorSvg, map[string]*bintree{}},
+ "wordmark.svg": {initPublicAssetsImagesLogosWordmarkSvg, map[string]*bintree{}},
+ }},
+ }},
+ "libsui.min.js": {initPublicAssetsLibsuiMinJs, map[string]*bintree{}},
+ "libsui.min.js.map": {initPublicAssetsLibsuiMinJsMap, map[string]*bintree{}},
}},
- "index.html": {initPublicIndexHtml, map[string]*bintree{}},
+ "index.cfg": {initPublicIndexCfg, map[string]*bintree{}},
+ "index.sui": {initPublicIndexSui, map[string]*bintree{}},
}},
"scripts": {nil, map[string]*bintree{
- "dash.js": {initScriptsDashJs, map[string]*bintree{}},
- "guard.js": {initScriptsGuardJs, map[string]*bintree{}},
- "setup.js": {initScriptsSetupJs, map[string]*bintree{}},
- "stat.js": {initScriptsStatJs, map[string]*bintree{}},
+ "account.ts": {initScriptsAccountTs, map[string]*bintree{}},
+ "ai": {nil, map[string]*bintree{
+ "neo.ts": {initScriptsAiNeoTs, map[string]*bintree{}},
+ }},
+ "tests.ts": {initScriptsTestsTs, map[string]*bintree{}},
+ "utils.ts": {initScriptsUtilsTs, map[string]*bintree{}},
}},
- "services": {nil, map[string]*bintree{
- "foo.js": {initServicesFooJs, map[string]*bintree{}},
- }},
- "studio": {nil, map[string]*bintree{
- "hello.js": {initStudioHelloJs, map[string]*bintree{}},
+ "suis": {nil, map[string]*bintree{
+ "web.sui.yao": {initSuisWebSuiYao, map[string]*bintree{}},
}},
"tables": {nil, map[string]*bintree{
- "admin": {nil, map[string]*bintree{
- "user.tab.yao": {initTablesAdminUserTabYao, map[string]*bintree{}},
- }},
- "demo": {nil, map[string]*bintree{
- "pet.tab.yao": {initTablesDemoPetTabYao, map[string]*bintree{}},
- }},
+ "account.tab.yao": {initTablesAccountTabYao, map[string]*bintree{}},
}},
+ "tsconfig.json": {initTsconfigJson, map[string]*bintree{}},
}},
"libsui": {nil, map[string]*bintree{
+ "agent.ts": {libsuiAgentTs, map[string]*bintree{}},
"index.ts": {libsuiIndexTs, map[string]*bintree{}},
"utils.ts": {libsuiUtilsTs, map[string]*bintree{}},
"yao.ts": {libsuiYaoTs, map[string]*bintree{}},
@@ -1616,19 +3355,6 @@ var _bintree = &bintree{nil, map[string]*bintree{
"ui": {nil, map[string]*bintree{
"index.html": {uiIndexHtml, map[string]*bintree{}},
}},
- "xgen": {nil, map[string]*bintree{
- "setup": {nil, map[string]*bintree{
- "index.html": {xgenSetupIndexHtml, map[string]*bintree{}},
- }},
- "v0.9": {nil, map[string]*bintree{
- "index.html": {xgenV09IndexHtml, map[string]*bintree{}},
- }},
- "v1.0": {nil, map[string]*bintree{
- "index.html": {xgenV10IndexHtml, map[string]*bintree{}},
- "layouts__index.async.js": {xgenV10Layouts__indexAsyncJs, map[string]*bintree{}},
- "umi.js": {xgenV10UmiJs, map[string]*bintree{}},
- }},
- }},
"yao": {nil, map[string]*bintree{
"data": {nil, map[string]*bintree{
"icons": {nil, map[string]*bintree{
@@ -1638,6 +3364,76 @@ var _bintree = &bintree{nil, map[string]*bintree{
"icon.png": {yaoDataIconsIconPng, map[string]*bintree{}},
}},
"index.html": {yaoDataIndexHtml, map[string]*bintree{}},
+ "kb": {nil, map[string]*bintree{
+ "providers": {nil, map[string]*bintree{
+ "chunking": {nil, map[string]*bintree{
+ "semantic": {nil, map[string]*bintree{
+ "en.json": {yaoDataKbProvidersChunkingSemanticEnJson, map[string]*bintree{}},
+ "zh-cn.json": {yaoDataKbProvidersChunkingSemanticZhCnJson, map[string]*bintree{}},
+ }},
+ "structured": {nil, map[string]*bintree{
+ "en.json": {yaoDataKbProvidersChunkingStructuredEnJson, map[string]*bintree{}},
+ "zh-cn.json": {yaoDataKbProvidersChunkingStructuredZhCnJson, map[string]*bintree{}},
+ }},
+ }},
+ "converter": {nil, map[string]*bintree{
+ "mcp": {nil, map[string]*bintree{
+ "en.json": {yaoDataKbProvidersConverterMcpEnJson, map[string]*bintree{}},
+ "zh-cn.json": {yaoDataKbProvidersConverterMcpZhCnJson, map[string]*bintree{}},
+ }},
+ "ocr": {nil, map[string]*bintree{
+ "en.json": {yaoDataKbProvidersConverterOcrEnJson, map[string]*bintree{}},
+ "zh-cn.json": {yaoDataKbProvidersConverterOcrZhCnJson, map[string]*bintree{}},
+ }},
+ "office": {nil, map[string]*bintree{
+ "en.json": {yaoDataKbProvidersConverterOfficeEnJson, map[string]*bintree{}},
+ "zh-cn.json": {yaoDataKbProvidersConverterOfficeZhCnJson, map[string]*bintree{}},
+ }},
+ "utf8": {nil, map[string]*bintree{
+ "en.json": {yaoDataKbProvidersConverterUtf8EnJson, map[string]*bintree{}},
+ "zh-cn.json": {yaoDataKbProvidersConverterUtf8ZhCnJson, map[string]*bintree{}},
+ }},
+ "video": {nil, map[string]*bintree{
+ "en.json": {yaoDataKbProvidersConverterVideoEnJson, map[string]*bintree{}},
+ "zh-cn.json": {yaoDataKbProvidersConverterVideoZhCnJson, map[string]*bintree{}},
+ }},
+ "vision": {nil, map[string]*bintree{
+ "en.json": {yaoDataKbProvidersConverterVisionEnJson, map[string]*bintree{}},
+ "zh-cn.json": {yaoDataKbProvidersConverterVisionZhCnJson, map[string]*bintree{}},
+ }},
+ "whisper": {nil, map[string]*bintree{
+ "en.json": {yaoDataKbProvidersConverterWhisperEnJson, map[string]*bintree{}},
+ "zh-cn.json": {yaoDataKbProvidersConverterWhisperZhCnJson, map[string]*bintree{}},
+ }},
+ }},
+ "embedding": {nil, map[string]*bintree{
+ "fastembed": {nil, map[string]*bintree{
+ "en.json": {yaoDataKbProvidersEmbeddingFastembedEnJson, map[string]*bintree{}},
+ "zh-cn.json": {yaoDataKbProvidersEmbeddingFastembedZhCnJson, map[string]*bintree{}},
+ }},
+ "openai": {nil, map[string]*bintree{
+ "en.json": {yaoDataKbProvidersEmbeddingOpenaiEnJson, map[string]*bintree{}},
+ "zh-cn.json": {yaoDataKbProvidersEmbeddingOpenaiZhCnJson, map[string]*bintree{}},
+ }},
+ }},
+ "extraction": {nil, map[string]*bintree{
+ "openai": {nil, map[string]*bintree{
+ "en.json": {yaoDataKbProvidersExtractionOpenaiEnJson, map[string]*bintree{}},
+ "zh-cn.json": {yaoDataKbProvidersExtractionOpenaiZhCnJson, map[string]*bintree{}},
+ }},
+ }},
+ "fetcher": {nil, map[string]*bintree{
+ "http": {nil, map[string]*bintree{
+ "en.json": {yaoDataKbProvidersFetcherHttpEnJson, map[string]*bintree{}},
+ "zh-cn.json": {yaoDataKbProvidersFetcherHttpZhCnJson, map[string]*bintree{}},
+ }},
+ "mcp": {nil, map[string]*bintree{
+ "en.json": {yaoDataKbProvidersFetcherMcpEnJson, map[string]*bintree{}},
+ "zh-cn.json": {yaoDataKbProvidersFetcherMcpZhCnJson, map[string]*bintree{}},
+ }},
+ }},
+ }},
+ }},
}},
"fields": {nil, map[string]*bintree{
"model.trans.json": {yaoFieldsModelTransJson, map[string]*bintree{}},
@@ -1659,9 +3455,46 @@ var _bintree = &bintree{nil, map[string]*bintree{
}},
}},
}},
+ "models": {nil, map[string]*bintree{
+ "assistant.mod.yao": {yaoModelsAssistantModYao, map[string]*bintree{}},
+ "attachment.mod.yao": {yaoModelsAttachmentModYao, map[string]*bintree{}},
+ "audit.mod.yao": {yaoModelsAuditModYao, map[string]*bintree{}},
+ "chat.mod.yao": {yaoModelsChatModYao, map[string]*bintree{}},
+ "config.mod.yao": {yaoModelsConfigModYao, map[string]*bintree{}},
+ "dsl.mod.yao": {yaoModelsDslModYao, map[string]*bintree{}},
+ "history.mod.yao": {yaoModelsHistoryModYao, map[string]*bintree{}},
+ "kb": {nil, map[string]*bintree{
+ "collection.mod.yao": {yaoModelsKbCollectionModYao, map[string]*bintree{}},
+ "document.mod.yao": {yaoModelsKbDocumentModYao, map[string]*bintree{}},
+ }},
+ "user.mod.yao": {yaoModelsUserModYao, map[string]*bintree{}},
+ "user_oauth_account.mod.yao": {yaoModelsUser_oauth_accountModYao, map[string]*bintree{}},
+ "user_role.mod.yao": {yaoModelsUser_roleModYao, map[string]*bintree{}},
+ "user_type.mod.yao": {yaoModelsUser_typeModYao, map[string]*bintree{}},
+ }},
"release": {nil, map[string]*bintree{
"app.yaz": {yaoReleaseAppYaz, map[string]*bintree{}},
}},
+ "stores": {nil, map[string]*bintree{
+ "agent": {nil, map[string]*bintree{
+ "cache.lru.yao": {yaoStoresAgentCacheLruYao, map[string]*bintree{}},
+ "memory.badger.yao": {yaoStoresAgentMemoryBadgerYao, map[string]*bintree{}},
+ }},
+ "cache.lru.yao": {yaoStoresCacheLruYao, map[string]*bintree{}},
+ "kb": {nil, map[string]*bintree{
+ "cache.lru.yao": {yaoStoresKbCacheLruYao, map[string]*bintree{}},
+ "store.badger.yao": {yaoStoresKbStoreBadgerYao, map[string]*bintree{}},
+ }},
+ "oauth": {nil, map[string]*bintree{
+ "cache.lru.yao": {yaoStoresOauthCacheLruYao, map[string]*bintree{}},
+ "client.badger.yao": {yaoStoresOauthClientBadgerYao, map[string]*bintree{}},
+ "store.badger.yao": {yaoStoresOauthStoreBadgerYao, map[string]*bintree{}},
+ }},
+ "store.badger.yao": {yaoStoresStoreBadgerYao, map[string]*bintree{}},
+ }},
+ "uploaders": {nil, map[string]*bintree{
+ "attachment.local.yao": {yaoUploadersAttachmentLocalYao, map[string]*bintree{}},
+ }},
}},
}}
diff --git a/data/data.go b/data/data.go
index e6be82f2..85e1b41b 100644
--- a/data/data.go
+++ b/data/data.go
@@ -10,25 +10,25 @@ import (
assetfs "github.com/elazarl/go-bindata-assetfs"
)
-// XgenV0 XGen 0.9
-func XgenV0() *assetfs.AssetFS {
+// CuiV0 CUI 0.9
+func CuiV0() *assetfs.AssetFS {
assetInfo := func(path string) (os.FileInfo, error) {
return os.Stat(path)
}
for k := range _bintree.Children {
- k = "xgen/v0.9"
+ k = "cui/v0.9"
return &assetfs.AssetFS{Asset: Asset, AssetDir: AssetDir, AssetInfo: assetInfo, Prefix: k, Fallback: "index.html"}
}
panic("unreachable")
}
-// XgenV1 XGen 1.0
-func XgenV1() *assetfs.AssetFS {
+// CuiV1 CUI 1.0
+func CuiV1() *assetfs.AssetFS {
assetInfo := func(path string) (os.FileInfo, error) {
return os.Stat(path)
}
for k := range _bintree.Children {
- k = "xgen/v1.0"
+ k = "cui/v1.0"
return &assetfs.AssetFS{Asset: Asset, AssetDir: AssetDir, AssetInfo: assetInfo, Prefix: k, Fallback: "index.html"}
}
panic("unreachable")
@@ -40,25 +40,25 @@ func Setup() *assetfs.AssetFS {
return os.Stat(path)
}
for k := range _bintree.Children {
- k = "xgen/setup"
+ k = "cui/setup"
return &assetfs.AssetFS{Asset: Asset, AssetDir: AssetDir, AssetInfo: assetInfo, Prefix: k, Fallback: "index.html"}
}
panic("unreachable")
}
-// ReplaceXGen bindata file
-func ReplaceXGen(search, replace string) error {
- err := replaceXGenIndex(search, replace)
+// ReplaceCUI bindata file
+func ReplaceCUI(search, replace string) error {
+ err := replaceCUIIndex(search, replace)
if err != nil {
return err
}
- err = replaceXGenUmi(search, replace)
+ err = replaceCUIUmi(search, replace)
if err != nil {
return err
}
- return replaceXGenLayouts(search, replace)
+ return replaceCUILayouts(search, replace)
}
// Read file from bin
@@ -81,10 +81,10 @@ func RemoveApp() {
delete(_bindata, "yao/release/app.yaz")
}
-// ReplaceXGenIndex bindata file
-func replaceXGenIndex(search, replace string) error {
+// ReplaceCUIIndex bindata file
+func replaceCUIIndex(search, replace string) error {
- content, err := bindataRead(_xgenV10IndexHtml, "xgen/v1.0/index.html")
+ content, err := bindataRead(_cuiV10IndexHtml, "cui/v1.0/index.html")
if err != nil {
return err
}
@@ -100,14 +100,14 @@ func replaceXGenIndex(search, replace string) error {
return err
}
- _xgenV10IndexHtml = b.Bytes()
+ _cuiV10IndexHtml = b.Bytes()
return nil
}
-// replaceXGenUmi bindata file
-func replaceXGenUmi(search, replace string) error {
+// replaceCUIUmi bindata file
+func replaceCUIUmi(search, replace string) error {
- content, err := bindataRead(_xgenV10UmiJs, "xgen/v1.0/umi.js")
+ content, err := bindataRead(_cuiV10UmiJs, "cui/v1.0/umi.js")
if err != nil {
return err
}
@@ -123,14 +123,14 @@ func replaceXGenUmi(search, replace string) error {
return err
}
- _xgenV10UmiJs = b.Bytes()
+ _cuiV10UmiJs = b.Bytes()
return nil
}
-// replaceXGenLayouts bindata file
-func replaceXGenLayouts(search, replace string) error {
+// replaceCUILayouts bindata file
+func replaceCUILayouts(search, replace string) error {
- content, err := bindataRead(_xgenV10Layouts__indexAsyncJs, "xgen/v1.0/layouts__index.async.js")
+ content, err := bindataRead(_cuiV10Layouts__indexAsyncJs, "cui/v1.0/layouts__index.async.js")
if err != nil {
return err
}
@@ -146,6 +146,6 @@ func replaceXGenLayouts(search, replace string) error {
return err
}
- _xgenV10Layouts__indexAsyncJs = b.Bytes()
+ _cuiV10Layouts__indexAsyncJs = b.Bytes()
return nil
}
diff --git a/data/data_test.go b/data/data_test.go
index 59dde1bf..403ff7f4 100644
--- a/data/data_test.go
+++ b/data/data_test.go
@@ -6,18 +6,18 @@ import (
"github.com/stretchr/testify/assert"
)
-func TestReplaceXGenIndex(t *testing.T) {
- err := ReplaceXGen("__yao_admin_root", "Admin-Replaced")
+func TestReplaceCUIIndex(t *testing.T) {
+ err := ReplaceCUI("__yao_admin_root", "Admin-Replaced")
if err != nil {
t.Fatal(err)
}
- content, err := bindataRead(_xgenV10IndexHtml, "index.html")
+ content, err := bindataRead(_cuiV10IndexHtml, "index.html")
if err != nil {
t.Fatal(err)
}
- content, err = bindataRead(_xgenV10UmiJs, "umi.js")
+ content, err = bindataRead(_cuiV10UmiJs, "umi.js")
if err != nil {
t.Fatal(err)
}
diff --git a/docker/build/Dockerfile b/docker/build/Dockerfile
index 30bb33f4..9e1ff9e9 100644
--- a/docker/build/Dockerfile
+++ b/docker/build/Dockerfile
@@ -2,14 +2,14 @@
# Yao Build Environment (Ubuntu 24.04 AMD64)
#
# Build:
-# docker build --platform linux/amd64 -t yaoapp/yao-build:0.10.4 .
+# docker build --platform linux/amd64 -t yaoapp/yao-build:0.10.5 .
#
# Usage:
-# docker run --rm -it -v /local/path/dist:/data yaoapp/yao-build:0.10.4
+# docker run --rm -it -v /local/path/dist:/data yaoapp/yao-build:0.10.5
#
# Tests:
-# docker run --rm -it yaoapp/yao-build:0.10.4 /bin/bash
-# docker run --rm -it -v ./test:/data yaoapp/yao-build:0.10.4 /bin/bash
+# docker run --rm -it yaoapp/yao-build:0.10.5 /bin/bash
+# docker run --rm -it -v ./test:/data yaoapp/yao-build:0.10.5 /bin/bash
#
# ===========================================
FROM ubuntu:24.04
@@ -29,10 +29,10 @@ RUN apt-get update && \
apt-get install -y git && \
apt-get install -y unzip
-# Install Go 1.23.3
-RUN wget https://golang.org/dl/go1.23.3.linux-amd64.tar.gz && \
- tar -C /usr/local -xzf go1.23.3.linux-amd64.tar.gz && \
- rm go1.23.3.linux-amd64.tar.gz
+# Install Go 1.24.3
+RUN wget https://golang.org/dl/go1.24.3.linux-amd64.tar.gz && \
+ tar -C /usr/local -xzf go1.24.3.linux-amd64.tar.gz && \
+ rm go1.24.3.linux-amd64.tar.gz
# Install Node.js 18.x
RUN curl -fsSL https://deb.nodesource.com/setup_18.x | bash - && \
@@ -40,6 +40,15 @@ RUN curl -fsSL https://deb.nodesource.com/setup_18.x | bash - && \
RUN npm install -g pnpm
+# Install AWS CLI
+RUN curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64-2.22.7.zip" -o "awscliv2.zip" && \
+ unzip awscliv2.zip && \
+ ./aws/install && \
+ rm -rf awscliv2.zip && \
+ rm -rf aws && \
+ aws --version
+
+# RUN npm install -g pnpm
RUN chmod +x /app/build.sh
VOLUME [ "/data" ]
diff --git a/docker/build/build.sh b/docker/build/build.sh
index a8f456d5..99e3114d 100644
--- a/docker/build/build.sh
+++ b/docker/build/build.sh
@@ -4,7 +4,7 @@ git clone https://github.com/yaoapp/kun.git /app/kun && \
git clone https://github.com/yaoapp/xun.git /app/xun && \
git clone https://github.com/sjzsdu/gou.git /app/gou && \
git clone https://github.com/yaoapp/v8go.git /app/v8go && \
-git clone https://github.com/sjzsdu/xgen.git /app/xgen-v1.0 && \
+git clone https://github.com/yaoapp/cui.git /app/cui-v1.0 && \
git clone https://github.com/yaoapp/yao-init.git /app/yao-init && \
git clone https://github.com/sjzsdu/yao.git /app/yao
diff --git a/docker/development/Dockerfile b/docker/development/Dockerfile
index 387e36fd..e8ffc323 100644
--- a/docker/development/Dockerfile
+++ b/docker/development/Dockerfile
@@ -20,7 +20,7 @@ ARG ARCH
RUN groupadd -r yao && useradd -r -g yao yao && \
apt-get update && \
apt-get install -y curl sudo procps net-tools
-RUN curl -fsSL "https://yao.moapi.ai/archives/yao-${VERSION}-linux-${ARCH}" > /usr/local/bin/yao && \
+RUN curl -fsSL "https://pub-80136338e60643edbb55c6ca8a689cf8.r2.dev/archives/yao-${VERSION}-linux-${ARCH}" > /usr/local/bin/yao && \
chmod +x /usr/local/bin/yao && \
mkdir -p /data/app
diff --git a/docker/production/Dockerfile b/docker/production/Dockerfile
index 69325beb..8e788a80 100644
--- a/docker/production/Dockerfile
+++ b/docker/production/Dockerfile
@@ -18,7 +18,7 @@ FROM alpine:latest
ARG VERSION
ARG ARCH
RUN apk --no-cache add curl
-RUN curl -fsSL "https://yao.moapi.ai/archives/yao-${VERSION}-linux-${ARCH}" > /usr/local/bin/yao && \
+RUN curl -fsSL "https://pub-80136338e60643edbb55c6ca8a689cf8.r2.dev/archives/yao-${VERSION}-linux-${ARCH}" > /usr/local/bin/yao && \
chmod +x /usr/local/bin/yao && \
addgroup -S yao && adduser -S -G yao yao && \
mkdir -p /data/app && \
diff --git a/dsl/api/api.go b/dsl/api/api.go
new file mode 100644
index 00000000..ff6912bd
--- /dev/null
+++ b/dsl/api/api.go
@@ -0,0 +1,49 @@
+package api
+
+import (
+ "context"
+
+ "github.com/yaoapp/yao/dsl/types"
+)
+
+// YaoAPI is the MCP client DSL manager
+type YaoAPI struct {
+ root string // The relative path of the MCP client DSL
+ fs types.IO // The file system IO interface
+ db types.IO // The database IO interface
+}
+
+// New returns a new connector DSL manager
+func New(root string, fs types.IO, db types.IO) types.Manager {
+ return &YaoAPI{root: root, fs: fs, db: db}
+}
+
+// Loaded return all loaded DSLs
+func (api *YaoAPI) Loaded(ctx context.Context) (map[string]*types.Info, error) {
+ return nil, nil
+}
+
+// Load will unload the DSL first, then load the DSL from DB or file system
+func (api *YaoAPI) Load(ctx context.Context, options *types.LoadOptions) error {
+ return nil
+}
+
+// Reload will unload the DSL first, then reload the DSL from DB or file system
+func (api *YaoAPI) Reload(ctx context.Context, options *types.ReloadOptions) error {
+ return nil
+}
+
+// Unload will unload the DSL from memory
+func (api *YaoAPI) Unload(ctx context.Context, options *types.UnloadOptions) error {
+ return nil
+}
+
+// Validate will validate the DSL from source
+func (api *YaoAPI) Validate(ctx context.Context, source string) (bool, []types.LintMessage) {
+ return false, nil
+}
+
+// Execute will execute the DSL
+func (api *YaoAPI) Execute(ctx context.Context, id string, method string, args ...any) (any, error) {
+ return nil, nil
+}
diff --git a/dsl/connector/cases_test.go b/dsl/connector/cases_test.go
new file mode 100644
index 00000000..214deaf8
--- /dev/null
+++ b/dsl/connector/cases_test.go
@@ -0,0 +1,213 @@
+package connector
+
+import (
+ "fmt"
+ "os"
+ "testing"
+ "time"
+
+ jsoniter "github.com/json-iterator/go"
+ "github.com/yaoapp/gou/application"
+ "github.com/yaoapp/gou/model"
+ "github.com/yaoapp/kun/log"
+ "github.com/yaoapp/yao/config"
+ "github.com/yaoapp/yao/data"
+ "github.com/yaoapp/yao/dsl/types"
+ "github.com/yaoapp/yao/test"
+)
+
+// systemModels system models
+var systemModels = map[string]string{
+ "__yao.dsl": "yao/models/dsl.mod.yao",
+}
+
+func TestMain(m *testing.M) {
+ // Setup
+ test.Prepare(&testing.T{}, config.Conf)
+ defer test.Clean()
+
+ // Load system models
+ model.WithCrypt([]byte(fmt.Sprintf(`{"key":"%s"}`, config.Conf.DB.AESKey)), "AES")
+ model.WithCrypt([]byte(`{}`), "PASSWORD")
+ err := loadSystemModels()
+ if err != nil {
+ log.Error("Load system models error: %s", err.Error())
+ os.Exit(1)
+ }
+
+ // Load application
+ root := os.Getenv("GOU_TEST_APPLICATION")
+ app, err := application.OpenFromDisk(root) // Load app
+ if err != nil {
+ log.Error("Load application error: %s", err.Error())
+ os.Exit(1)
+ }
+ application.Load(app)
+
+ // Run tests
+ code := m.Run()
+ os.Exit(code)
+}
+
+// loadSystemModels load system models
+func loadSystemModels() error {
+ for id, path := range systemModels {
+ content, err := data.Read(path)
+ if err != nil {
+ return err
+ }
+
+ // Parse model
+ var data map[string]interface{}
+ err = application.Parse(path, content, &data)
+ if err != nil {
+ return err
+ }
+
+ // Set prefix
+ if table, ok := data["table"].(map[string]interface{}); ok {
+ if name, ok := table["name"].(string); ok {
+ table["name"] = "__yao_" + name
+ content, err = jsoniter.Marshal(data)
+ if err != nil {
+ log.Error("failed to marshal model data: %v", err)
+ return fmt.Errorf("failed to marshal model data: %v", err)
+ }
+ }
+ }
+
+ // Load Model
+ mod, err := model.LoadSource(content, id, path)
+ if err != nil {
+ log.Error("load system model %s error: %s", id, err.Error())
+ return err
+ }
+
+ // Drop table first
+ err = mod.DropTable()
+ if err != nil {
+ log.Error("drop table error: %s", err.Error())
+ return err
+ }
+
+ // Auto migrate
+ err = mod.Migrate(false, model.WithDonotInsertValues(true))
+ if err != nil {
+ log.Error("migrate system model %s error: %s", id, err.Error())
+ return err
+ }
+ }
+
+ return nil
+}
+
+// TestCase defines a single test case
+type TestCase struct {
+ ID string
+ Source string
+ UpdatedSource string
+ Tags []string
+ Label string
+ Description string
+}
+
+// NewTestCase creates a new test case
+func NewTestCase() *TestCase {
+ id := getTestID()
+ return &TestCase{
+ ID: id,
+ Source: fmt.Sprintf(`{
+ "label": "Test OpenAI",
+ "description": "Test Description",
+ "tags": ["test_%s"],
+ "type": "openai",
+ "options": {
+ "proxy": "https://api.openai.com/v1",
+ "model": "gpt-4o-mini",
+ "key": "sk-test-key"
+ }
+}`, id),
+ UpdatedSource: fmt.Sprintf(`{
+ "label": "Updated OpenAI",
+ "description": "Updated Description",
+ "tags": ["test_%s", "updated"],
+ "type": "openai",
+ "options": {
+ "proxy": "https://api.openai.com/v1",
+ "model": "gpt-4o-mini",
+ "key": "sk-test-key"
+ }
+}`, id),
+ Tags: []string{fmt.Sprintf("test_%s", id)},
+ Label: "Test OpenAI",
+ Description: "Test Description",
+ }
+}
+
+// getTestID generates a unique test ID
+func getTestID() string {
+ return fmt.Sprintf("test_%d", time.Now().UnixNano())
+}
+
+// CreateOptions returns creation options
+func (tc *TestCase) CreateOptions() *types.CreateOptions {
+ return &types.CreateOptions{
+ ID: tc.ID,
+ Source: tc.Source,
+ }
+}
+
+// LoadOptions returns load options
+func (tc *TestCase) LoadOptions() *types.LoadOptions {
+ return &types.LoadOptions{
+ ID: tc.ID,
+ Source: tc.Source,
+ }
+}
+
+// UnloadOptions returns unload options
+func (tc *TestCase) UnloadOptions() *types.UnloadOptions {
+ return &types.UnloadOptions{
+ ID: tc.ID,
+ }
+}
+
+// ReloadOptions returns reload options
+func (tc *TestCase) ReloadOptions() *types.ReloadOptions {
+ return &types.ReloadOptions{
+ ID: tc.ID,
+ Source: tc.UpdatedSource,
+ }
+}
+
+// AssertInfo verifies if the information is correct
+func (tc *TestCase) AssertInfo(info *types.Info) bool {
+ if info == nil {
+ return false
+ }
+ return info.ID == tc.ID &&
+ info.Type == types.TypeConnector &&
+ info.Label == tc.Label &&
+ len(info.Tags) == len(tc.Tags) &&
+ info.Description == tc.Description &&
+ !info.Readonly &&
+ !info.Builtin &&
+ !info.Mtime.IsZero() &&
+ !info.Ctime.IsZero()
+}
+
+// AssertUpdatedInfo verifies if the updated information is correct
+func (tc *TestCase) AssertUpdatedInfo(info *types.Info) bool {
+ if info == nil {
+ return false
+ }
+ return info.ID == tc.ID &&
+ info.Type == types.TypeConnector &&
+ info.Label == "Updated OpenAI" &&
+ len(info.Tags) == 2 &&
+ info.Description == "Updated Description" &&
+ !info.Readonly &&
+ !info.Builtin &&
+ !info.Mtime.IsZero() &&
+ !info.Ctime.IsZero()
+}
diff --git a/dsl/connector/connector.go b/dsl/connector/connector.go
new file mode 100644
index 00000000..fc1b003f
--- /dev/null
+++ b/dsl/connector/connector.go
@@ -0,0 +1,175 @@
+package connector
+
+import (
+ "context"
+ "fmt"
+
+ "github.com/yaoapp/gou/connector"
+ "github.com/yaoapp/yao/dsl/types"
+)
+
+// YaoConnector is the connector DSL manager
+type YaoConnector struct {
+ root string // The relative path of the connector DSL
+ fs types.IO // The file system IO interface
+ db types.IO // The database IO interface
+}
+
+// New returns a new connector DSL manager
+func New(root string, fs types.IO, db types.IO) types.Manager {
+ return &YaoConnector{root: root, fs: fs, db: db}
+}
+
+// Loaded return all loaded DSLs
+func (c *YaoConnector) Loaded(ctx context.Context) (map[string]*types.Info, error) {
+ infos := map[string]*types.Info{}
+ for id, conn := range connector.Connectors {
+ meta := conn.GetMetaInfo()
+ infos[id] = &types.Info{
+ ID: id,
+ Path: conn.ID(),
+ Type: types.TypeConnector,
+ Label: meta.Label,
+ Sort: meta.Sort,
+ Description: meta.Description,
+ Tags: meta.Tags,
+ Readonly: meta.Readonly,
+ Builtin: meta.Builtin,
+ Mtime: meta.Mtime,
+ Ctime: meta.Ctime,
+ }
+ }
+ return infos, nil
+}
+
+// Load will unload the DSL first, then load the DSL from DB or file system
+func (c *YaoConnector) Load(ctx context.Context, options *types.LoadOptions) error {
+ if options == nil {
+ return fmt.Errorf("load options is required")
+ }
+
+ if options.ID == "" {
+ return fmt.Errorf("load options id is required")
+ }
+
+ var err error
+
+ // Case 1: If Source is provided, use LoadSourceSync
+ if options.Source != "" {
+ connectorPath := types.ToPath(types.TypeConnector, options.ID)
+ _, err = connector.LoadSourceSync([]byte(options.Source), options.ID, connectorPath)
+ if err != nil {
+ return err
+ }
+ } else if options.Path != "" && options.Store == "fs" {
+ // Case 2: If Path is provided and Store is fs, use LoadSync with Path
+ _, err = connector.LoadSync(options.Path, options.ID)
+ if err != nil {
+ return err
+ }
+ } else if options.Store == "db" {
+ // Case 3: If Store is db, get Source from DB first
+ if c.db == nil {
+ return fmt.Errorf("db io is required for store type db")
+ }
+ source, exists, err := c.db.Source(options.ID)
+ if err != nil {
+ return err
+ }
+ if !exists {
+ return fmt.Errorf("connector %s not found in database", options.ID)
+ }
+ connectorPath := types.ToPath(types.TypeConnector, options.ID)
+ _, err = connector.LoadSourceSync([]byte(source), options.ID, connectorPath)
+ if err != nil {
+ return err
+ }
+ } else {
+ // Case 4: Default case, use LoadSync with ID
+ path := types.ToPath(types.TypeConnector, options.ID)
+ _, err = connector.LoadSync(path, options.ID)
+ if err != nil {
+ return err
+ }
+ }
+
+ return nil
+}
+
+// Unload will unload the DSL from memory
+func (c *YaoConnector) Unload(ctx context.Context, options *types.UnloadOptions) error {
+ if options == nil {
+ return fmt.Errorf("unload options is required")
+ }
+
+ if options.ID == "" {
+ return fmt.Errorf("unload options id is required")
+ }
+
+ return connector.Remove(options.ID)
+}
+
+// Reload will unload the DSL first, then reload the DSL from DB or file system
+func (c *YaoConnector) Reload(ctx context.Context, options *types.ReloadOptions) error {
+ if options == nil {
+ return fmt.Errorf("reload options is required")
+ }
+
+ if options.ID == "" {
+ return fmt.Errorf("reload options id is required")
+ }
+
+ // First unload
+ err := connector.Remove(options.ID)
+ if err != nil {
+ return err
+ }
+
+ // Then load
+ if options.Source != "" {
+ connectorPath := types.ToPath(types.TypeConnector, options.ID)
+ _, err = connector.LoadSourceSync([]byte(options.Source), options.ID, connectorPath)
+ if err != nil {
+ return err
+ }
+ } else if options.Path != "" && options.Store == "fs" {
+ _, err = connector.LoadSync(options.Path, options.ID)
+ if err != nil {
+ return err
+ }
+ } else if options.Store == "db" {
+ if c.db == nil {
+ return fmt.Errorf("db io is required for store type db")
+ }
+ source, exists, err := c.db.Source(options.ID)
+ if err != nil {
+ return err
+ }
+ if !exists {
+ return fmt.Errorf("connector %s not found in database", options.ID)
+ }
+ connectorPath := types.ToPath(types.TypeConnector, options.ID)
+ _, err = connector.LoadSourceSync([]byte(source), options.ID, connectorPath)
+ if err != nil {
+ return err
+ }
+ } else {
+ path := types.ToPath(types.TypeConnector, options.ID)
+ _, err = connector.LoadSync(path, options.ID)
+ if err != nil {
+ return err
+ }
+ }
+
+ return nil
+}
+
+// Validate will validate the DSL from source
+func (c *YaoConnector) Validate(ctx context.Context, source string) (bool, []types.LintMessage) {
+ return true, []types.LintMessage{}
+}
+
+// Execute will execute the DSL
+func (c *YaoConnector) Execute(ctx context.Context, id string, method string, args ...any) (any, error) {
+ return nil, fmt.Errorf("Not implemented")
+}
diff --git a/dsl/connector/connector_test.go b/dsl/connector/connector_test.go
new file mode 100644
index 00000000..4b2b5b01
--- /dev/null
+++ b/dsl/connector/connector_test.go
@@ -0,0 +1,183 @@
+package connector
+
+import (
+ "context"
+ "testing"
+
+ "github.com/stretchr/testify/assert"
+ "github.com/yaoapp/yao/dsl/io"
+ "github.com/yaoapp/yao/dsl/types"
+)
+
+func TestConnectorLoad(t *testing.T) {
+ testCase := NewTestCase()
+ fsio := io.NewFS(types.TypeConnector)
+ dbio := io.NewDB(types.TypeConnector)
+ manager := New("", fsio, dbio)
+
+ // Test Load with nil options
+ err := manager.Load(context.Background(), nil)
+ assert.Error(t, err)
+ assert.Contains(t, err.Error(), "load options is required")
+
+ // Test Load with empty ID
+ err = manager.Load(context.Background(), &types.LoadOptions{})
+ assert.Error(t, err)
+ assert.Contains(t, err.Error(), "load options id is required")
+
+ // Test Load with Source
+ err = manager.Load(context.Background(), testCase.LoadOptions())
+ assert.NoError(t, err)
+
+ // Test Load from filesystem
+ err = fsio.Create(testCase.CreateOptions())
+ assert.NoError(t, err)
+
+ path := types.ToPath(types.TypeConnector, testCase.ID)
+ err = manager.Load(context.Background(), &types.LoadOptions{
+ ID: testCase.ID,
+ Path: path,
+ Store: "fs",
+ })
+ assert.NoError(t, err)
+
+ // Test Load from database
+ err = dbio.Create(testCase.CreateOptions())
+ assert.NoError(t, err)
+
+ err = manager.Load(context.Background(), &types.LoadOptions{
+ ID: testCase.ID,
+ Store: "db",
+ })
+ assert.NoError(t, err)
+
+ // Clean up
+ err = fsio.Delete(testCase.ID)
+ assert.NoError(t, err)
+ err = dbio.Delete(testCase.ID)
+ assert.NoError(t, err)
+}
+
+func TestConnectorUnload(t *testing.T) {
+ testCase := NewTestCase()
+ fsio := io.NewFS(types.TypeConnector)
+ dbio := io.NewDB(types.TypeConnector)
+ manager := New("", fsio, dbio)
+
+ // Test Unload with nil options
+ err := manager.Unload(context.Background(), nil)
+ assert.Error(t, err)
+ assert.Contains(t, err.Error(), "unload options is required")
+
+ // Test Unload with empty ID
+ err = manager.Unload(context.Background(), &types.UnloadOptions{})
+ assert.Error(t, err)
+ assert.Contains(t, err.Error(), "unload options id is required")
+
+ // Load and then unload from filesystem
+ err = fsio.Create(testCase.CreateOptions())
+ assert.NoError(t, err)
+
+ err = manager.Load(context.Background(), &types.LoadOptions{
+ ID: testCase.ID,
+ Store: "fs",
+ })
+ assert.NoError(t, err)
+
+ err = manager.Unload(context.Background(), testCase.UnloadOptions())
+ assert.NoError(t, err)
+
+ // Clean up
+ err = fsio.Delete(testCase.ID)
+ assert.NoError(t, err)
+}
+
+func TestConnectorReload(t *testing.T) {
+ testCase := NewTestCase()
+ fsio := io.NewFS(types.TypeConnector)
+ dbio := io.NewDB(types.TypeConnector)
+ manager := New("", fsio, dbio)
+
+ // Test Reload with nil options
+ err := manager.Reload(context.Background(), nil)
+ assert.Error(t, err)
+ assert.Contains(t, err.Error(), "reload options is required")
+
+ // Test Reload with empty ID
+ err = manager.Reload(context.Background(), &types.ReloadOptions{})
+ assert.Error(t, err)
+ assert.Contains(t, err.Error(), "reload options id is required")
+
+ // Load and then reload from filesystem
+ err = fsio.Create(testCase.CreateOptions())
+ assert.NoError(t, err)
+
+ err = manager.Load(context.Background(), &types.LoadOptions{
+ ID: testCase.ID,
+ Store: "fs",
+ })
+ assert.NoError(t, err)
+
+ err = manager.Reload(context.Background(), testCase.ReloadOptions())
+ assert.NoError(t, err)
+
+ // Clean up
+ err = fsio.Delete(testCase.ID)
+ assert.NoError(t, err)
+}
+
+func TestConnectorLoaded(t *testing.T) {
+ testCase := NewTestCase()
+ fsio := io.NewFS(types.TypeConnector)
+ dbio := io.NewDB(types.TypeConnector)
+ manager := New("", fsio, dbio)
+
+ // Load from filesystem
+ err := fsio.Create(testCase.CreateOptions())
+ assert.NoError(t, err)
+
+ err = manager.Load(context.Background(), &types.LoadOptions{
+ ID: testCase.ID,
+ Store: "fs",
+ })
+ assert.NoError(t, err)
+
+ // Test Loaded
+ infos, err := manager.Loaded(context.Background())
+ assert.NoError(t, err)
+ assert.NotNil(t, infos)
+ assert.Contains(t, infos, testCase.ID)
+
+ // Verify metadata fields
+ fsInfo := infos[testCase.ID]
+ assert.Equal(t, testCase.ID, fsInfo.ID)
+ assert.Equal(t, types.TypeConnector, fsInfo.Type)
+ assert.Equal(t, testCase.Label, fsInfo.Label)
+ assert.Equal(t, testCase.Description, fsInfo.Description)
+ assert.ElementsMatch(t, testCase.Tags, fsInfo.Tags)
+ assert.False(t, fsInfo.Readonly)
+ assert.False(t, fsInfo.Builtin)
+
+ // Clean up
+ err = fsio.Delete(testCase.ID)
+ assert.NoError(t, err)
+}
+
+func TestConnectorValidate(t *testing.T) {
+ manager := New("", nil, nil)
+
+ // Test Validate
+ valid, messages := manager.Validate(context.Background(), "test source")
+ assert.True(t, valid)
+ assert.Empty(t, messages)
+}
+
+func TestConnectorExecute(t *testing.T) {
+ manager := New("", nil, nil)
+
+ // Test Execute
+ result, err := manager.Execute(context.Background(), "test_id", "test_method")
+ assert.Error(t, err)
+ assert.Contains(t, err.Error(), "Not implemented")
+ assert.Nil(t, result)
+}
diff --git a/dsl/dsl.go b/dsl/dsl.go
new file mode 100644
index 00000000..68458209
--- /dev/null
+++ b/dsl/dsl.go
@@ -0,0 +1,399 @@
+package dsl
+
+import (
+ "context"
+ "fmt"
+
+ "github.com/yaoapp/yao/dsl/api"
+ "github.com/yaoapp/yao/dsl/connector"
+ "github.com/yaoapp/yao/dsl/io"
+ "github.com/yaoapp/yao/dsl/mcp"
+ "github.com/yaoapp/yao/dsl/model"
+ "github.com/yaoapp/yao/dsl/types"
+)
+
+// DSL is the base DSL struct
+type DSL struct {
+ Type types.Type
+ exts []string
+ root string
+ manager types.Manager
+ db types.IO
+ fs types.IO
+}
+
+// New returns a new DSL manager
+func New(typ types.Type) (types.DSL, error) {
+ var manager types.Manager
+ var db types.IO = io.NewDB(typ)
+ var fs types.IO = io.NewFS(typ)
+
+ // Get the root path and the extensions of the type
+ root, exts := types.TypeRootAndExts(typ)
+
+ // Create the manager
+ switch typ {
+ case types.TypeConnector:
+ exts = []string{".conn.yao", ".conn.jsonc", ".conn.json"}
+ manager = connector.New(root, fs, db)
+
+ case types.TypeModel:
+ exts = []string{".mod.yao", ".mod.jsonc", ".mod.json"}
+ manager = model.New(root, fs, db)
+
+ case types.TypeMCPClient:
+ exts = []string{".mcp.yao", ".mcp.jsonc", ".mcp.json"}
+ manager = mcp.NewClient(root, fs, db)
+
+ // case types.TypeMCPServer:
+ // exts = []string{".mcp.yao", ".mcp.jsonc", ".mcp.json"}
+ // manager = mcp.NewServer(root)
+
+ case types.TypeAPI:
+ exts = []string{".http.yao", ".http.jsonc", ".http.json"}
+ manager = api.New(root, fs, db)
+
+ default:
+ return nil, fmt.Errorf("dsl manager is not initialized, %s not supported", typ)
+ }
+
+ return &DSL{Type: typ, manager: manager, root: root, exts: exts, db: db, fs: fs}, nil
+}
+
+// Inspect DSL
+func (dsl *DSL) Inspect(ctx context.Context, id string) (*types.Info, error) {
+
+ // Get the info from the db
+ info, exists, err := dsl.db.Inspect(id)
+ if err != nil {
+ return nil, err
+ }
+
+ if !exists {
+ // Get the info from the file
+ info, exists, err = dsl.fs.Inspect(id)
+ if err != nil {
+ return nil, err
+ }
+
+ if !exists {
+ return nil, fmt.Errorf("%s not found, %s", dsl.Type, id)
+ }
+ }
+
+ // Merge the status from the manager
+ loaded, err := dsl.manager.Loaded(ctx)
+ if err != nil {
+ fmt.Printf("DEBUG: manager.Loaded failed: %v\n", err)
+ return info, err
+ }
+
+ // Check if the DSL is loaded
+ if _, ok := loaded[id]; ok {
+ info.Status = types.StatusLoaded
+ }
+
+ return info, nil
+}
+
+// Path Get Path by id, ( If the DSL is saved as file, return the file path )
+func (dsl *DSL) Path(ctx context.Context, id string) (string, error) {
+ return types.ToPath(dsl.Type, id), nil
+}
+
+// Source Get Source by id
+func (dsl *DSL) Source(ctx context.Context, id string) (string, error) {
+
+ // Get the source from the db
+ source, exists, err := dsl.db.Source(id)
+ if err != nil {
+ return "", err
+ }
+
+ if !exists {
+ // Get the source from the file
+ source, exists, err = dsl.fs.Source(id)
+ if err != nil {
+ return "", err
+ }
+
+ if !exists {
+ return "", fmt.Errorf("%s DSL not found, %s", dsl.Type, id)
+ }
+ }
+
+ return source, nil
+}
+
+// List DSLs
+func (dsl *DSL) List(ctx context.Context, opts *types.ListOptions) ([]*types.Info, error) {
+ // Get the list from the db
+ var dbList []*types.Info
+ var fileList []*types.Info
+ var err error
+
+ // If StoreType is not specified or is DB, get from db
+ if opts.Store == "" || opts.Store == types.StoreTypeDB {
+ dbList, err = dsl.db.List(opts)
+ if err != nil {
+ return nil, err
+ }
+ }
+
+ // If StoreType is not specified or is File, get from file
+ if opts.Store == "" || opts.Store == types.StoreTypeFile {
+ fileList, err = dsl.fs.List(opts)
+ if err != nil {
+ return nil, err
+ }
+ }
+
+ // Merge the list and unique
+ list := []*types.Info{}
+ unique := make(map[string]bool)
+ for _, info := range dbList {
+ if _, ok := unique[info.ID]; !ok {
+ list = append(list, info)
+ unique[info.ID] = true
+ }
+ }
+ for _, info := range fileList {
+ if _, ok := unique[info.ID]; !ok {
+ list = append(list, info)
+ unique[info.ID] = true
+ }
+ }
+
+ // Merge the status from the manager
+ loaded, err := dsl.manager.Loaded(ctx)
+ if err != nil {
+ return nil, err
+ }
+
+ // Merge the status from the manager
+ for _, info := range list {
+ if _, ok := loaded[info.ID]; ok {
+ info.Status = types.StatusLoaded
+ }
+ }
+
+ return list, nil
+}
+
+// Create DSL
+func (dsl *DSL) Create(ctx context.Context, options *types.CreateOptions) error {
+
+ if options == nil {
+ return fmt.Errorf("create options is required")
+ }
+
+ // Set default store type if not specified
+ if options.Store == "" {
+ options.Store = types.StoreTypeFile
+ }
+
+ // Validate store type
+ if options.Store != types.StoreTypeDB && options.Store != types.StoreTypeFile {
+ return fmt.Errorf("invalid store type: %s", options.Store)
+ }
+
+ if options.Store == types.StoreTypeDB {
+ err := dsl.db.Create(options)
+ if err != nil {
+ return err
+ }
+ } else if options.Store == types.StoreTypeFile {
+ err := dsl.fs.Create(options)
+ if err != nil {
+ return err
+ }
+ }
+
+ var loadOptions *types.LoadOptions = &types.LoadOptions{
+ ID: options.ID,
+ Path: types.ToPath(dsl.Type, options.ID),
+ Source: options.Source,
+ Store: options.Store,
+ Options: options.Load,
+ }
+
+ // Load the DSL
+ err := dsl.Load(ctx, loadOptions)
+ if err != nil {
+ return err
+ }
+
+ return nil
+}
+
+// Exists Check if the DSL exists
+func (dsl *DSL) Exists(ctx context.Context, id string) (bool, error) {
+ // Check if the DSL exists in the db
+ exists, err := dsl.db.Exists(id)
+ if err != nil {
+ return false, err
+ }
+
+ if exists {
+ return true, nil
+ }
+
+ // Check if the DSL exists in the file
+ return dsl.fs.Exists(id)
+}
+
+// Update DSL
+func (dsl *DSL) Update(ctx context.Context, options *types.UpdateOptions) error {
+
+ if options == nil {
+ return fmt.Errorf("update options is required")
+ }
+
+ // Exists
+ info, exists, err := dsl.db.Inspect(options.ID)
+ if err != nil {
+ return err
+ }
+
+ if !exists {
+ info, exists, err = dsl.fs.Inspect(options.ID)
+ if err != nil {
+ return err
+ }
+ if !exists {
+ return fmt.Errorf("%s not found, %s", dsl.Type, options.ID)
+ }
+ // Fix: If store is empty but found in fs, it should be File store
+ if info.Store == "" {
+ info.Store = types.StoreTypeFile
+ }
+ } else {
+ // Fix: If store is empty but found in db, it should be DB store
+ if info.Store == "" {
+ info.Store = types.StoreTypeDB
+ }
+ }
+
+ // Create the reload options
+ var reloadOptions *types.ReloadOptions = &types.ReloadOptions{
+ ID: options.ID,
+ Path: info.Path,
+ Source: options.Source,
+ Store: info.Store,
+ Options: options.Reload,
+ }
+
+ // Update the DSL in the db
+ if info.Store == types.StoreTypeDB {
+ err := dsl.db.Update(options)
+ if err != nil {
+ return err
+ }
+
+ // Reload the DSL
+ return dsl.manager.Reload(ctx, reloadOptions)
+ }
+
+ // Update the DSL in the file
+ err = dsl.fs.Update(options)
+ if err != nil {
+ return err
+ }
+
+ // Reload the DSL
+ return dsl.manager.Reload(ctx, reloadOptions)
+}
+
+// Delete DSL
+func (dsl *DSL) Delete(ctx context.Context, options *types.DeleteOptions) error {
+
+ if options == nil {
+ return fmt.Errorf("delete options is required")
+ }
+
+ if options.ID == "" {
+ return fmt.Errorf("delete options id is required")
+ }
+
+ // Exists
+ info, exists, err := dsl.db.Inspect(options.ID)
+ if err != nil {
+ return err
+ }
+
+ if !exists {
+ info, exists, err = dsl.fs.Inspect(options.ID)
+ if err != nil {
+ return err
+ }
+ if !exists {
+ return fmt.Errorf("%s not found, %s", dsl.Type, options.ID)
+ } else {
+ // Fix: If store is empty but found in fs, it should be File store
+ if info.Store == "" {
+ info.Store = types.StoreTypeFile
+ }
+ }
+ } else {
+ // Fix: If store is empty but found in db, it should be DB store
+ if info.Store == "" {
+ info.Store = types.StoreTypeDB
+ }
+ }
+
+ var opts map[string]interface{}
+ if options.Options != nil {
+ opts = options.Options
+ }
+
+ var unloadOptions *types.UnloadOptions = &types.UnloadOptions{
+ ID: options.ID,
+ Path: info.Path,
+ Store: info.Store,
+ Options: opts,
+ }
+
+ if info.Store == types.StoreTypeDB {
+ err = dsl.db.Delete(options.ID)
+ if err != nil {
+ return err
+ }
+
+ // Unload the DSL
+ return dsl.manager.Unload(ctx, unloadOptions)
+ }
+
+ err = dsl.fs.Delete(options.ID)
+ if err != nil {
+ return err
+ }
+
+ // Unload the DSL
+ return dsl.manager.Unload(ctx, unloadOptions)
+
+}
+
+// Load DSL
+func (dsl *DSL) Load(ctx context.Context, options *types.LoadOptions) error {
+ return dsl.manager.Load(ctx, options)
+}
+
+// Unload DSL
+func (dsl *DSL) Unload(ctx context.Context, options *types.UnloadOptions) error {
+ return dsl.manager.Unload(ctx, options)
+}
+
+// Reload DSL
+func (dsl *DSL) Reload(ctx context.Context, options *types.ReloadOptions) error {
+ return dsl.manager.Reload(ctx, options)
+}
+
+// Execute DSL (Some DSLs can be executed)
+func (dsl *DSL) Execute(ctx context.Context, id string, method string, args ...any) (any, error) {
+ return dsl.manager.Execute(ctx, id, method, args...)
+}
+
+// Validate DSL
+func (dsl *DSL) Validate(ctx context.Context, source string) (bool, []types.LintMessage) {
+ return dsl.manager.Validate(ctx, source)
+}
diff --git a/dsl/dsl_test.go b/dsl/dsl_test.go
new file mode 100644
index 00000000..d2021909
--- /dev/null
+++ b/dsl/dsl_test.go
@@ -0,0 +1,784 @@
+package dsl
+
+import (
+ "context"
+ "fmt"
+ "os"
+ "testing"
+ "time"
+
+ jsoniter "github.com/json-iterator/go"
+ "github.com/stretchr/testify/assert"
+ "github.com/yaoapp/gou/application"
+ "github.com/yaoapp/gou/model"
+ "github.com/yaoapp/kun/log"
+ "github.com/yaoapp/yao/config"
+ "github.com/yaoapp/yao/data"
+ "github.com/yaoapp/yao/dsl/types"
+ "github.com/yaoapp/yao/test"
+)
+
+// systemModels system models
+var systemModels = map[string]string{
+ "__yao.dsl": "yao/models/dsl.mod.yao",
+}
+
+func TestMain(m *testing.M) {
+ // Setup
+ test.Prepare(&testing.T{}, config.Conf)
+ defer test.Clean()
+
+ // Load system models
+ model.WithCrypt([]byte(fmt.Sprintf(`{"key":"%s"}`, config.Conf.DB.AESKey)), "AES")
+ model.WithCrypt([]byte(`{}`), "PASSWORD")
+ err := loadSystemModels()
+ if err != nil {
+ log.Error("Load system models error: %s", err.Error())
+ os.Exit(1)
+ }
+
+ // Load application
+ root := os.Getenv("YAO_TEST_APPLICATION")
+ if root == "" {
+ log.Error("YAO_TEST_APPLICATION environment variable is not set")
+ os.Exit(1)
+ }
+ app, err := application.OpenFromDisk(root) // Load app
+ if err != nil {
+ log.Error("Load application error: %s", err.Error())
+ os.Exit(1)
+ }
+ application.Load(app)
+
+ // Run tests
+ code := m.Run()
+ os.Exit(code)
+}
+
+// loadSystemModels load system models
+func loadSystemModels() error {
+ for id, path := range systemModels {
+ content, err := data.Read(path)
+ if err != nil {
+ return err
+ }
+
+ // Parse model
+ var data map[string]interface{}
+ err = application.Parse(path, content, &data)
+ if err != nil {
+ return err
+ }
+
+ // Set prefix
+ if table, ok := data["table"].(map[string]interface{}); ok {
+ if name, ok := table["name"].(string); ok {
+ table["name"] = "__yao_" + name
+ content, err = jsoniter.Marshal(data)
+ if err != nil {
+ log.Error("failed to marshal model data: %v", err)
+ return fmt.Errorf("failed to marshal model data: %v", err)
+ }
+ }
+ }
+
+ // Load Model
+ mod, err := model.LoadSource(content, id, path)
+ if err != nil {
+ log.Error("load system model %s error: %s", id, err.Error())
+ return err
+ }
+
+ // Drop table first
+ err = mod.DropTable()
+ if err != nil {
+ log.Error("drop table error: %s", err.Error())
+ return err
+ }
+
+ // Auto migrate
+ err = mod.Migrate(false, model.WithDonotInsertValues(true))
+ if err != nil {
+ log.Error("migrate system model %s error: %s", id, err.Error())
+ return err
+ }
+ }
+
+ return nil
+}
+
+// cleanTestData cleans test data from database
+func cleanTestData() error {
+ m := model.Select("__yao.dsl")
+ err := m.DropTable()
+ if err != nil {
+ return err
+ }
+ err = m.Migrate(false, model.WithDonotInsertValues(true))
+ if err != nil {
+ return err
+ }
+ return nil
+}
+
+// getTestID generates a unique test ID
+func getTestID() string {
+ return fmt.Sprintf("test_%d", time.Now().UnixNano())
+}
+
+// TestCase defines a unified test case for all DSL types
+type TestCase struct {
+ ID string
+ Source string
+ UpdatedSource string
+ Tags []string
+ Label string
+ Description string
+ DSLType types.Type
+}
+
+// NewModelTestCase creates a new model test case
+func NewModelTestCase() *TestCase {
+ id := getTestID()
+ return &TestCase{
+ ID: id,
+ DSLType: types.TypeModel,
+ Source: fmt.Sprintf(`{
+ "name": "%s",
+ "table": { "name": "%s", "comment": "Test User" },
+ "columns": [
+ { "name": "id", "type": "ID" },
+ { "name": "name", "type": "string", "length": 80, "comment": "User Name", "index": true },
+ { "name": "status", "type": "enum", "option": ["active", "disabled"], "default": "active", "comment": "Status", "index": true }
+ ],
+ "tags": ["test_%s"],
+ "label": "Test Model",
+ "description": "Test Model Description",
+ "option": { "timestamps": true, "soft_deletes": true }
+}`, id, id, id),
+ UpdatedSource: fmt.Sprintf(`{
+ "name": "%s",
+ "table": { "name": "%s", "comment": "Updated Test User" },
+ "columns": [
+ { "name": "id", "type": "ID" },
+ { "name": "name", "type": "string", "length": 80, "comment": "User Name", "index": true },
+ { "name": "status", "type": "enum", "option": ["active", "disabled", "pending"], "default": "active", "comment": "Status", "index": true }
+ ],
+ "tags": ["test_%s", "updated"],
+ "label": "Updated Model",
+ "description": "Updated Model Description",
+ "option": { "timestamps": true, "soft_deletes": true }
+}`, id, id, id),
+ Tags: []string{fmt.Sprintf("test_%s", id)},
+ Label: "Test Model",
+ Description: "Test Model Description",
+ }
+}
+
+// NewConnectorTestCase creates a new connector test case
+func NewConnectorTestCase() *TestCase {
+ id := getTestID()
+ return &TestCase{
+ ID: id,
+ DSLType: types.TypeConnector,
+ Source: fmt.Sprintf(`{
+ "label": "Test Connector",
+ "description": "Test Connector Description",
+ "tags": ["test_%s"],
+ "type": "openai",
+ "options": {
+ "proxy": "https://api.openai.com/v1",
+ "model": "gpt-4o-mini",
+ "key": "sk-test-key"
+ }
+}`, id),
+ UpdatedSource: fmt.Sprintf(`{
+ "label": "Updated Connector",
+ "description": "Updated Connector Description",
+ "tags": ["test_%s", "updated"],
+ "type": "openai",
+ "options": {
+ "proxy": "https://api.openai.com/v1",
+ "model": "gpt-4o-mini",
+ "key": "sk-test-key"
+ }
+}`, id),
+ Tags: []string{fmt.Sprintf("test_%s", id)},
+ Label: "Test Connector",
+ Description: "Test Connector Description",
+ }
+}
+
+// NewMCPTestCase creates a new MCP test case
+func NewMCPTestCase() *TestCase {
+ id := getTestID()
+ return &TestCase{
+ ID: id,
+ DSLType: types.TypeMCPClient,
+ Source: fmt.Sprintf(`{
+ "name": "Test MCP Client %s",
+ "label": "Test MCP Client",
+ "description": "Test MCP Client Description",
+ "tags": ["test_%s"],
+ "transport": "stdio",
+ "command": "echo",
+ "arguments": ["hello", "world"],
+ "env": {
+ "MCP_TEST": "true"
+ },
+ "enable_sampling": true,
+ "enable_roots": false,
+ "timeout": "30s"
+}`, id, id),
+ UpdatedSource: fmt.Sprintf(`{
+ "name": "Updated MCP Client %s",
+ "label": "Updated MCP Client",
+ "description": "Updated MCP Client Description",
+ "tags": ["test_%s", "updated"],
+ "transport": "stdio",
+ "command": "echo",
+ "arguments": ["hello", "updated"],
+ "env": {
+ "MCP_TEST": "true",
+ "MCP_UPDATED": "true"
+ },
+ "enable_sampling": false,
+ "enable_roots": true,
+ "timeout": "60s"
+}`, id, id),
+ Tags: []string{fmt.Sprintf("test_%s", id)},
+ Label: "Test MCP Client",
+ Description: "Test MCP Client Description",
+ }
+}
+
+// CreateOptions returns creation options
+func (tc *TestCase) CreateOptions(store types.StoreType) *types.CreateOptions {
+ return &types.CreateOptions{
+ ID: tc.ID,
+ Source: tc.Source,
+ Store: store,
+ }
+}
+
+// UpdateOptions returns update options
+func (tc *TestCase) UpdateOptions() *types.UpdateOptions {
+ return &types.UpdateOptions{
+ ID: tc.ID,
+ Source: tc.UpdatedSource,
+ }
+}
+
+// DeleteOptions returns delete options
+func (tc *TestCase) DeleteOptions() *types.DeleteOptions {
+ return &types.DeleteOptions{
+ ID: tc.ID,
+ }
+}
+
+// LoadOptions returns load options
+func (tc *TestCase) LoadOptions(store types.StoreType) *types.LoadOptions {
+ return &types.LoadOptions{
+ ID: tc.ID,
+ Source: tc.Source,
+ Store: store,
+ }
+}
+
+// UnloadOptions returns unload options
+func (tc *TestCase) UnloadOptions(store types.StoreType) *types.UnloadOptions {
+ return &types.UnloadOptions{
+ ID: tc.ID,
+ Store: store,
+ }
+}
+
+// ReloadOptions returns reload options
+func (tc *TestCase) ReloadOptions(store types.StoreType) *types.ReloadOptions {
+ return &types.ReloadOptions{
+ ID: tc.ID,
+ Source: tc.UpdatedSource,
+ Store: store,
+ }
+}
+
+// ListOptions returns list options
+func (tc *TestCase) ListOptions(store types.StoreType) *types.ListOptions {
+ return &types.ListOptions{
+ Tags: tc.Tags,
+ Store: store,
+ }
+}
+
+// AssertInfo verifies if the information is correct
+func (tc *TestCase) AssertInfo(info *types.Info) bool {
+ if info == nil {
+ return false
+ }
+
+ return info.ID == tc.ID &&
+ info.Type == tc.DSLType &&
+ info.Label == tc.Label &&
+ len(info.Tags) == len(tc.Tags) &&
+ info.Description == tc.Description &&
+ !info.Readonly &&
+ !info.Builtin &&
+ !info.Mtime.IsZero() &&
+ !info.Ctime.IsZero()
+}
+
+// AssertUpdatedInfo verifies if the updated information is correct
+func (tc *TestCase) AssertUpdatedInfo(info *types.Info) bool {
+ if info == nil {
+ return false
+ }
+ expectedLabel := ""
+ switch tc.DSLType {
+ case types.TypeModel:
+ expectedLabel = "Updated Model"
+ case types.TypeConnector:
+ expectedLabel = "Updated Connector"
+ case types.TypeMCPClient:
+ expectedLabel = "Updated MCP Client"
+ }
+ expectedDescription := ""
+ switch tc.DSLType {
+ case types.TypeModel:
+ expectedDescription = "Updated Model Description"
+ case types.TypeConnector:
+ expectedDescription = "Updated Connector Description"
+ case types.TypeMCPClient:
+ expectedDescription = "Updated MCP Client Description"
+ }
+ return info.ID == tc.ID &&
+ info.Type == tc.DSLType &&
+ info.Label == expectedLabel &&
+ len(info.Tags) == 2 &&
+ info.Description == expectedDescription &&
+ !info.Readonly &&
+ !info.Builtin &&
+ !info.Mtime.IsZero() &&
+ !info.Ctime.IsZero()
+}
+
+// Test DSL creation with different types and stores
+func TestDSLCreate(t *testing.T) {
+ ctx := context.Background()
+
+ testCases := []struct {
+ name string
+ tcFunc func() *TestCase
+ dslType types.Type
+ stores []types.StoreType
+ }{
+ {"Model", NewModelTestCase, types.TypeModel, []types.StoreType{types.StoreTypeDB, types.StoreTypeFile}},
+ {"Connector", NewConnectorTestCase, types.TypeConnector, []types.StoreType{types.StoreTypeDB, types.StoreTypeFile}},
+ {"MCP", NewMCPTestCase, types.TypeMCPClient, []types.StoreType{types.StoreTypeDB, types.StoreTypeFile}},
+ }
+
+ for _, tt := range testCases {
+ for _, store := range tt.stores {
+ t.Run(fmt.Sprintf("%s_%s", tt.name, store), func(t *testing.T) {
+ // Clean test data before each test
+ err := cleanTestData()
+ if err != nil {
+ t.Fatalf("Failed to clean test data: %v", err)
+ }
+
+ dsl, err := New(tt.dslType)
+ if !assert.Nil(t, err) {
+ return
+ }
+
+ tc := tt.tcFunc()
+
+ // Create
+ err = dsl.Create(ctx, tc.CreateOptions(store))
+ if !assert.Nil(t, err) {
+ return
+ }
+
+ // Verify exists
+ exists, err := dsl.Exists(ctx, tc.ID)
+ if !assert.Nil(t, err) {
+ return
+ }
+ assert.True(t, exists)
+
+ // Verify info
+ info, err := dsl.Inspect(ctx, tc.ID)
+ if !assert.Nil(t, err) {
+ return
+ }
+ assert.True(t, tc.AssertInfo(info))
+
+ // Cleanup
+ err = dsl.Delete(ctx, tc.DeleteOptions())
+ assert.Nil(t, err)
+ })
+ }
+ }
+}
+
+// Test DSL inspection
+func TestDSLInspect(t *testing.T) {
+ ctx := context.Background()
+
+ testCases := []struct {
+ name string
+ tcFunc func() *TestCase
+ dslType types.Type
+ stores []types.StoreType
+ }{
+ {"Model", NewModelTestCase, types.TypeModel, []types.StoreType{types.StoreTypeDB, types.StoreTypeFile}},
+ {"Connector", NewConnectorTestCase, types.TypeConnector, []types.StoreType{types.StoreTypeDB, types.StoreTypeFile}},
+ {"MCP", NewMCPTestCase, types.TypeMCPClient, []types.StoreType{types.StoreTypeDB, types.StoreTypeFile}},
+ }
+
+ for _, tt := range testCases {
+ for _, store := range tt.stores {
+ t.Run(fmt.Sprintf("%s_%s", tt.name, store), func(t *testing.T) {
+ // Clean test data before each test
+ err := cleanTestData()
+ if err != nil {
+ t.Fatalf("Failed to clean test data: %v", err)
+ }
+
+ dsl, err := New(tt.dslType)
+ if !assert.Nil(t, err) {
+ return
+ }
+
+ tc := tt.tcFunc()
+
+ // Create
+ err = dsl.Create(ctx, tc.CreateOptions(store))
+ if !assert.Nil(t, err) {
+ return
+ }
+
+ // Inspect
+ info, err := dsl.Inspect(ctx, tc.ID)
+ if !assert.Nil(t, err) {
+ return
+ }
+ assert.True(t, tc.AssertInfo(info))
+
+ // Cleanup
+ err = dsl.Delete(ctx, tc.DeleteOptions())
+ assert.Nil(t, err)
+ })
+ }
+ }
+}
+
+// Test DSL source retrieval
+func TestDSLSource(t *testing.T) {
+ ctx := context.Background()
+
+ testCases := []struct {
+ name string
+ tcFunc func() *TestCase
+ dslType types.Type
+ stores []types.StoreType
+ }{
+ {"Model", NewModelTestCase, types.TypeModel, []types.StoreType{types.StoreTypeDB, types.StoreTypeFile}},
+ {"Connector", NewConnectorTestCase, types.TypeConnector, []types.StoreType{types.StoreTypeDB, types.StoreTypeFile}},
+ {"MCP", NewMCPTestCase, types.TypeMCPClient, []types.StoreType{types.StoreTypeDB, types.StoreTypeFile}},
+ }
+
+ for _, tt := range testCases {
+ for _, store := range tt.stores {
+ t.Run(fmt.Sprintf("%s_%s", tt.name, store), func(t *testing.T) {
+ // Clean test data before each test
+ err := cleanTestData()
+ if err != nil {
+ t.Fatalf("Failed to clean test data: %v", err)
+ }
+
+ dsl, err := New(tt.dslType)
+ if !assert.Nil(t, err) {
+ return
+ }
+
+ tc := tt.tcFunc()
+
+ // Create
+ err = dsl.Create(ctx, tc.CreateOptions(store))
+ if !assert.Nil(t, err) {
+ return
+ }
+
+ // Get source
+ source, err := dsl.Source(ctx, tc.ID)
+ if !assert.Nil(t, err) {
+ return
+ }
+ assert.Equal(t, tc.Source, source)
+
+ // Cleanup
+ err = dsl.Delete(ctx, tc.DeleteOptions())
+ assert.Nil(t, err)
+ })
+ }
+ }
+}
+
+// Test DSL listing
+func TestDSLList(t *testing.T) {
+ ctx := context.Background()
+
+ testCases := []struct {
+ name string
+ tcFunc func() *TestCase
+ dslType types.Type
+ stores []types.StoreType
+ }{
+ {"Model", NewModelTestCase, types.TypeModel, []types.StoreType{types.StoreTypeDB, types.StoreTypeFile}},
+ {"Connector", NewConnectorTestCase, types.TypeConnector, []types.StoreType{types.StoreTypeDB, types.StoreTypeFile}},
+ {"MCP", NewMCPTestCase, types.TypeMCPClient, []types.StoreType{types.StoreTypeDB, types.StoreTypeFile}},
+ }
+
+ for _, tt := range testCases {
+ for _, store := range tt.stores {
+ t.Run(fmt.Sprintf("%s_%s", tt.name, store), func(t *testing.T) {
+ // Clean test data before each test
+ err := cleanTestData()
+ if err != nil {
+ t.Fatalf("Failed to clean test data: %v", err)
+ }
+
+ dsl, err := New(tt.dslType)
+ if !assert.Nil(t, err) {
+ return
+ }
+
+ tc1 := tt.tcFunc()
+ tc2 := tt.tcFunc()
+
+ // Create test cases
+ err = dsl.Create(ctx, tc1.CreateOptions(store))
+ if !assert.Nil(t, err) {
+ return
+ }
+ err = dsl.Create(ctx, tc2.CreateOptions(store))
+ if !assert.Nil(t, err) {
+ return
+ }
+
+ // List all
+ list, err := dsl.List(ctx, &types.ListOptions{Store: store})
+ if !assert.Nil(t, err) {
+ return
+ }
+ assert.GreaterOrEqual(t, len(list), 2)
+
+ // List with tags
+ list, err = dsl.List(ctx, tc1.ListOptions(store))
+ if !assert.Nil(t, err) {
+ return
+ }
+ assert.GreaterOrEqual(t, len(list), 1)
+
+ // Cleanup
+ err = dsl.Delete(ctx, tc1.DeleteOptions())
+ assert.Nil(t, err)
+ err = dsl.Delete(ctx, tc2.DeleteOptions())
+ assert.Nil(t, err)
+ })
+ }
+ }
+}
+
+// Test DSL update
+func TestDSLUpdate(t *testing.T) {
+ ctx := context.Background()
+
+ testCases := []struct {
+ name string
+ tcFunc func() *TestCase
+ dslType types.Type
+ stores []types.StoreType
+ }{
+ {"Model", NewModelTestCase, types.TypeModel, []types.StoreType{types.StoreTypeDB, types.StoreTypeFile}},
+ {"Connector", NewConnectorTestCase, types.TypeConnector, []types.StoreType{types.StoreTypeDB, types.StoreTypeFile}},
+ {"MCP", NewMCPTestCase, types.TypeMCPClient, []types.StoreType{types.StoreTypeDB, types.StoreTypeFile}},
+ }
+
+ for _, tt := range testCases {
+ for _, store := range tt.stores {
+ t.Run(fmt.Sprintf("%s_%s", tt.name, store), func(t *testing.T) {
+ // Clean test data before each test
+ err := cleanTestData()
+ if err != nil {
+ t.Fatalf("Failed to clean test data: %v", err)
+ }
+
+ dsl, err := New(tt.dslType)
+ if !assert.Nil(t, err) {
+ return
+ }
+
+ tc := tt.tcFunc()
+
+ // Create
+ err = dsl.Create(ctx, tc.CreateOptions(store))
+ if !assert.Nil(t, err) {
+ return
+ }
+
+ // Update
+ err = dsl.Update(ctx, tc.UpdateOptions())
+ if !assert.Nil(t, err) {
+ return
+ }
+
+ // Verify updated info
+ info, err := dsl.Inspect(ctx, tc.ID)
+ if !assert.Nil(t, err) {
+ return
+ }
+ assert.True(t, tc.AssertUpdatedInfo(info))
+
+ // Cleanup
+ err = dsl.Delete(ctx, tc.DeleteOptions())
+ assert.Nil(t, err)
+ })
+ }
+ }
+}
+
+// Test DSL delete
+func TestDSLDelete(t *testing.T) {
+ ctx := context.Background()
+
+ testCases := []struct {
+ name string
+ tcFunc func() *TestCase
+ dslType types.Type
+ stores []types.StoreType
+ }{
+ {"Model", NewModelTestCase, types.TypeModel, []types.StoreType{types.StoreTypeDB, types.StoreTypeFile}},
+ {"Connector", NewConnectorTestCase, types.TypeConnector, []types.StoreType{types.StoreTypeDB, types.StoreTypeFile}},
+ {"MCP", NewMCPTestCase, types.TypeMCPClient, []types.StoreType{types.StoreTypeDB, types.StoreTypeFile}},
+ }
+
+ for _, tt := range testCases {
+ for _, store := range tt.stores {
+ t.Run(fmt.Sprintf("%s_%s", tt.name, store), func(t *testing.T) {
+ // Clean test data before each test
+ err := cleanTestData()
+ if err != nil {
+ t.Fatalf("Failed to clean test data: %v", err)
+ }
+
+ dsl, err := New(tt.dslType)
+ if !assert.Nil(t, err) {
+ return
+ }
+
+ tc := tt.tcFunc()
+
+ // Create
+ err = dsl.Create(ctx, tc.CreateOptions(store))
+ if !assert.Nil(t, err) {
+ return
+ }
+
+ // Delete
+ err = dsl.Delete(ctx, tc.DeleteOptions())
+ if !assert.Nil(t, err) {
+ return
+ }
+
+ // Verify deleted
+ exists, err := dsl.Exists(ctx, tc.ID)
+ if !assert.Nil(t, err) {
+ return
+ }
+ assert.False(t, exists)
+ })
+ }
+ }
+}
+
+// Test DSL full flow (create, inspect, update, delete)
+func TestDSLFlow(t *testing.T) {
+ ctx := context.Background()
+
+ testCases := []struct {
+ name string
+ tcFunc func() *TestCase
+ dslType types.Type
+ stores []types.StoreType
+ }{
+ {"Model", NewModelTestCase, types.TypeModel, []types.StoreType{types.StoreTypeDB, types.StoreTypeFile}},
+ {"Connector", NewConnectorTestCase, types.TypeConnector, []types.StoreType{types.StoreTypeDB, types.StoreTypeFile}},
+ {"MCP", NewMCPTestCase, types.TypeMCPClient, []types.StoreType{types.StoreTypeDB, types.StoreTypeFile}},
+ }
+
+ for _, tt := range testCases {
+ for _, store := range tt.stores {
+ t.Run(fmt.Sprintf("%s_%s", tt.name, store), func(t *testing.T) {
+ // Clean test data before each test
+ err := cleanTestData()
+ if err != nil {
+ t.Fatalf("Failed to clean test data: %v", err)
+ }
+
+ dsl, err := New(tt.dslType)
+ if !assert.Nil(t, err) {
+ return
+ }
+
+ tc := tt.tcFunc()
+
+ // Create
+ err = dsl.Create(ctx, tc.CreateOptions(store))
+ if !assert.Nil(t, err) {
+ return
+ }
+
+ // Inspect
+ info, err := dsl.Inspect(ctx, tc.ID)
+ if !assert.Nil(t, err) {
+ return
+ }
+ assert.True(t, tc.AssertInfo(info))
+
+ // Get source
+ source, err := dsl.Source(ctx, tc.ID)
+ if !assert.Nil(t, err) {
+ return
+ }
+ assert.Equal(t, tc.Source, source)
+
+ // Update
+ err = dsl.Update(ctx, tc.UpdateOptions())
+ if !assert.Nil(t, err) {
+ return
+ }
+
+ // Verify updated
+ info, err = dsl.Inspect(ctx, tc.ID)
+ if !assert.Nil(t, err) {
+ return
+ }
+ assert.True(t, tc.AssertUpdatedInfo(info))
+
+ // Delete
+ err = dsl.Delete(ctx, tc.DeleteOptions())
+ if !assert.Nil(t, err) {
+ return
+ }
+
+ // Verify deleted
+ exists, err := dsl.Exists(ctx, tc.ID)
+ if !assert.Nil(t, err) {
+ return
+ }
+ assert.False(t, exists)
+ })
+ }
+ }
+}
diff --git a/dsl/io/cases_test.go b/dsl/io/cases_test.go
new file mode 100644
index 00000000..7046b0de
--- /dev/null
+++ b/dsl/io/cases_test.go
@@ -0,0 +1,223 @@
+package io
+
+import (
+ "fmt"
+ "os"
+ "path/filepath"
+ "testing"
+ "time"
+
+ jsoniter "github.com/json-iterator/go"
+ "github.com/yaoapp/gou/application"
+ "github.com/yaoapp/gou/model"
+ "github.com/yaoapp/kun/log"
+ "github.com/yaoapp/yao/config"
+ "github.com/yaoapp/yao/data"
+ "github.com/yaoapp/yao/dsl/types"
+ "github.com/yaoapp/yao/test"
+)
+
+// systemModels system models
+var systemModels = map[string]string{
+ "__yao.dsl": "yao/models/dsl.mod.yao",
+}
+
+func TestMain(m *testing.M) {
+ // Setup
+ test.Prepare(&testing.T{}, config.Conf)
+ defer test.Clean()
+
+ // Load system models
+ model.WithCrypt([]byte(fmt.Sprintf(`{"key":"%s"}`, config.Conf.DB.AESKey)), "AES")
+ model.WithCrypt([]byte(`{}`), "PASSWORD")
+ err := loadSystemModels()
+ if err != nil {
+ log.Error("Load system models error: %s", err.Error())
+ os.Exit(1)
+ }
+
+ // Run tests
+ code := m.Run()
+ os.Exit(code)
+}
+
+// loadSystemModels load system models
+func loadSystemModels() error {
+ for id, path := range systemModels {
+ content, err := data.Read(path)
+ if err != nil {
+ return err
+ }
+
+ // Parse model
+ var data map[string]interface{}
+ err = application.Parse(path, content, &data)
+ if err != nil {
+ return err
+ }
+
+ // Set prefix
+ if table, ok := data["table"].(map[string]interface{}); ok {
+ if name, ok := table["name"].(string); ok {
+ table["name"] = "__yao_" + name
+ content, err = jsoniter.Marshal(data)
+ if err != nil {
+ log.Error("failed to marshal model data: %v", err)
+ return fmt.Errorf("failed to marshal model data: %v", err)
+ }
+ }
+ }
+
+ // Load Model
+ mod, err := model.LoadSource(content, id, filepath.Join("__system", path))
+ if err != nil {
+ log.Error("load system model %s error: %s", id, err.Error())
+ return err
+ }
+
+ // Drop table first
+ err = mod.DropTable()
+ if err != nil {
+ log.Error("drop table error: %s", err.Error())
+ return err
+ }
+
+ // Auto migrate
+ err = mod.Migrate(false, model.WithDonotInsertValues(true))
+ if err != nil {
+ log.Error("migrate system model %s error: %s", id, err.Error())
+ return err
+ }
+ }
+
+ return nil
+}
+
+// cleanTestData cleans test data from database
+func cleanTestData() error {
+ m := model.Select("__yao.dsl")
+ err := m.DropTable()
+ if err != nil {
+ return err
+ }
+ err = m.Migrate(false, model.WithDonotInsertValues(true))
+ if err != nil {
+ return err
+ }
+ return nil
+}
+
+// getTestID 生成唯一的测试ID
+func getTestID() string {
+ return fmt.Sprintf("test_%d", time.Now().UnixNano())
+}
+
+// TestCase 定义单个测试用例
+type TestCase struct {
+ ID string
+ Source string
+ UpdatedSource string
+ Tags []string
+ Label string
+ Description string
+}
+
+// NewTestCase 创建新的测试用例
+func NewTestCase() *TestCase {
+ id := getTestID()
+ return &TestCase{
+ ID: id,
+ Source: fmt.Sprintf(`{
+ "name": "%s",
+ "table": { "name": "%s", "comment": "Test Table" },
+ "columns": [
+ { "name": "id", "type": "ID" }
+ ],
+ "tags": ["test_%s"],
+ "label": "Test Label",
+ "description": "Test Description"
+ }`, id, id, id),
+ UpdatedSource: fmt.Sprintf(`{
+ "name": "%s",
+ "table": { "name": "%s", "comment": "Updated Test Table" },
+ "columns": [
+ { "name": "id", "type": "ID" }
+ ],
+ "tags": ["test_%s", "updated"],
+ "label": "Updated Label",
+ "description": "Updated Description"
+ }`, id, id, id),
+ Tags: []string{fmt.Sprintf("test_%s", id)},
+ Label: "Test Label",
+ Description: "Test Description",
+ }
+}
+
+// CreateOptions 返回创建选项
+func (tc *TestCase) CreateOptions() *types.CreateOptions {
+ return &types.CreateOptions{
+ ID: tc.ID,
+ Source: tc.Source,
+ }
+}
+
+// UpdateOptions 返回更新选项
+func (tc *TestCase) UpdateOptions() *types.UpdateOptions {
+ return &types.UpdateOptions{
+ ID: tc.ID,
+ Source: tc.UpdatedSource,
+ }
+}
+
+// UpdateInfoOptions 返回更新信息选项
+func (tc *TestCase) UpdateInfoOptions() *types.UpdateOptions {
+ return &types.UpdateOptions{
+ ID: tc.ID,
+ Info: &types.Info{
+ Label: "Updated via Info",
+ Tags: []string{"tag1", "info"},
+ Description: "Updated via info field",
+ },
+ }
+}
+
+// ListOptions 返回列表选项
+func (tc *TestCase) ListOptions(withSource bool) *types.ListOptions {
+ return &types.ListOptions{
+ Source: withSource,
+ Tags: tc.Tags,
+ }
+}
+
+// AssertInfo 验证信息是否正确
+func (tc *TestCase) AssertInfo(info *types.Info) bool {
+ if info == nil {
+ return false
+ }
+ return info.ID == tc.ID &&
+ info.Label == tc.Label &&
+ len(info.Tags) == len(tc.Tags) &&
+ info.Description == tc.Description
+}
+
+// AssertUpdatedInfo 验证更新后的信息是否正确
+func (tc *TestCase) AssertUpdatedInfo(info *types.Info) bool {
+ if info == nil {
+ return false
+ }
+ return info.ID == tc.ID &&
+ info.Label == "Updated Label" &&
+ len(info.Tags) == 2 &&
+ info.Description == "Updated Description"
+}
+
+// AssertUpdatedInfoViaInfo 验证通过Info更新后的信息是否正确
+func (tc *TestCase) AssertUpdatedInfoViaInfo(info *types.Info) bool {
+ if info == nil {
+ return false
+ }
+ return info.ID == tc.ID &&
+ info.Label == "Updated via Info" &&
+ len(info.Tags) == 2 &&
+ info.Description == "Updated via info field"
+}
diff --git a/dsl/io/db.go b/dsl/io/db.go
new file mode 100644
index 00000000..8104b79f
--- /dev/null
+++ b/dsl/io/db.go
@@ -0,0 +1,467 @@
+package io
+
+import (
+ "fmt"
+ "strings"
+ "time"
+
+ jsoniter "github.com/json-iterator/go"
+ "github.com/yaoapp/gou/model"
+ "github.com/yaoapp/yao/dsl/types"
+)
+
+// DB is the db io
+type DB struct {
+ Type types.Type
+}
+
+// NewDB create a new db io
+func NewDB(typ types.Type) types.IO {
+ return &DB{Type: typ}
+}
+
+// fmtRow format the row data for DSL info
+func fmtRow(row map[string]interface{}) map[string]interface{} {
+ // Handle source field first
+ if source, ok := row["source"]; ok {
+ if str, ok := source.(string); ok {
+ row["source"] = str
+ }
+ }
+
+ // Map fields
+ if id, ok := row["dsl_id"]; ok {
+ row["id"] = id
+ delete(row, "dsl_id")
+ }
+ if readonly, ok := row["readonly"]; ok {
+ row["readonly"] = toBool(readonly)
+ delete(row, "readonly")
+ }
+ if builtin, ok := row["built_in"]; ok {
+ row["built_in"] = toBool(builtin)
+ }
+
+ // Convert time values
+ if mtime, ok := row["mtime"]; ok && mtime != nil {
+ if timeStr := toTime(mtime); timeStr != "" {
+ row["mtime"] = timeStr
+ }
+ }
+ if ctime, ok := row["ctime"]; ok && ctime != nil {
+ if timeStr := toTime(ctime); timeStr != "" {
+ row["ctime"] = timeStr
+ }
+ }
+
+ return row
+}
+
+// Inspect get the info from the db
+func (db *DB) Inspect(id string) (*types.Info, bool, error) {
+
+ // Get from database
+ m := model.Select("__yao.dsl")
+
+ // Get the info
+ var info types.Info
+ rows, err := m.Get(model.QueryParam{
+ Wheres: []model.QueryWhere{
+ {Column: "dsl_id", Value: id},
+ {Column: "type", Value: db.Type},
+ },
+ Select: []interface{}{
+ "dsl_id",
+ "type",
+ "label",
+ "path",
+ "sort",
+ "tags",
+ "description",
+ "store",
+ "mtime",
+ "ctime",
+ "readonly",
+ "built_in",
+ },
+ Limit: 1,
+ Orders: []model.QueryOrder{{Column: "sort", Option: "asc"}, {Column: "mtime", Option: "desc"}},
+ })
+ if err != nil {
+ return nil, false, err
+ }
+
+ if len(rows) == 0 {
+ return nil, false, nil
+ }
+
+ // Format row data
+ row := fmtRow(rows[0])
+
+ raw, err := jsoniter.Marshal(row)
+ if err != nil {
+ return nil, false, err
+ }
+
+ err = jsoniter.Unmarshal(raw, &info)
+ if err != nil {
+ return nil, false, err
+ }
+
+ // Force set Store to DB since this record is from database
+ info.Store = types.StoreTypeDB
+
+ return &info, true, nil
+}
+
+// Source get the source from the db
+func (db *DB) Source(id string) (string, bool, error) {
+
+ // Get from database
+ m := model.Select("__yao.dsl")
+
+ // Get the source
+ rows, err := m.Get(model.QueryParam{
+ Wheres: []model.QueryWhere{
+ {Column: "dsl_id", Value: id},
+ {Column: "type", Value: db.Type},
+ },
+ Select: []interface{}{"source"},
+ Limit: 1,
+ })
+ if err != nil {
+ return "", false, err
+ }
+
+ if len(rows) == 0 {
+ return "", false, nil
+ }
+
+ if rows[0]["source"] == nil {
+ return "", true, nil
+ }
+
+ source, ok := rows[0]["source"].(string)
+ if !ok {
+ return "", true, fmt.Errorf("%s %s source is not a string", db.Type, id)
+ }
+
+ return source, true, nil
+}
+
+// List get the list from the db
+func (db *DB) List(options *types.ListOptions) ([]*types.Info, error) {
+
+ // Get from database
+ m := model.Select("__yao.dsl")
+
+ var orders []model.QueryOrder = []model.QueryOrder{{Column: "mtime", Option: "desc"}}
+ if options.Sort == "sort" {
+ orders = []model.QueryOrder{{Column: "sort", Option: "asc"}}
+ }
+
+ var wheres []model.QueryWhere = []model.QueryWhere{{Column: "type", Value: db.Type}}
+
+ // Filter by tags
+ if len(options.Tags) > 0 {
+ var orwheres []model.QueryWhere = []model.QueryWhere{}
+ for _, tag := range options.Tags {
+ match := "%" + strings.TrimSpace(tag) + "%"
+ orwheres = append(orwheres, model.QueryWhere{Column: "tags", Value: match, OP: "like", Method: "orwhere"})
+ }
+ wheres = append(wheres, model.QueryWhere{Wheres: orwheres})
+ }
+
+ // Select fields
+ fields := []interface{}{
+ "dsl_id",
+ "type",
+ "label",
+ "path",
+ "sort",
+ "tags",
+ "description",
+ "store",
+ "mtime",
+ "ctime",
+ "readonly",
+ "built_in",
+ }
+ if options.Source {
+ fields = append(fields, "source")
+ }
+
+ // Get the list
+ rows, err := m.Get(model.QueryParam{
+ Wheres: wheres,
+ Select: fields,
+ Orders: orders,
+ })
+ if err != nil {
+ return nil, err
+ }
+
+ if len(rows) == 0 {
+ return nil, nil
+ }
+
+ // Format rows data
+ for i := range rows {
+ rows[i] = fmtRow(rows[i])
+ }
+
+ var infos []*types.Info
+ raw, err := jsoniter.Marshal(rows)
+ if err != nil {
+ return nil, err
+ }
+
+ err = jsoniter.Unmarshal(raw, &infos)
+ if err != nil {
+ return nil, err
+ }
+
+ // Force set Store to DB since these records are from database
+ for _, info := range infos {
+ info.Store = types.StoreTypeDB
+ }
+
+ return infos, nil
+}
+
+// Create create the dsl
+func (db *DB) Create(options *types.CreateOptions) error {
+
+ if options.Source == "" {
+ return fmt.Errorf("%s %s source is required", db.Type, options.ID)
+ }
+
+ // Parse the source to extract metadata
+ var sourceData map[string]interface{}
+ err := jsoniter.Unmarshal([]byte(options.Source), &sourceData)
+ if err != nil {
+ return err
+ }
+
+ // Extract common fields from source
+ var label, description string
+ var tags []string
+ var sort int
+
+ if v, ok := sourceData["label"]; ok {
+ if s, ok := v.(string); ok {
+ label = s
+ }
+ }
+
+ if v, ok := sourceData["description"]; ok {
+ if s, ok := v.(string); ok {
+ description = s
+ }
+ }
+
+ if v, ok := sourceData["tags"]; ok {
+ if tagsList, ok := v.([]interface{}); ok {
+ for _, tag := range tagsList {
+ if s, ok := tag.(string); ok {
+ tags = append(tags, s)
+ }
+ }
+ }
+ }
+
+ if v, ok := sourceData["sort"]; ok {
+ if s, ok := v.(float64); ok {
+ sort = int(s)
+ }
+ }
+
+ // Set default store type if not specified
+ store := options.Store
+ if store == "" {
+ store = types.StoreTypeFile
+ }
+
+ // Get the info
+ m := model.Select("__yao.dsl")
+ data := map[string]interface{}{
+ "source": options.Source,
+ "dsl_id": options.ID,
+ "type": db.Type,
+ "label": label,
+ "path": types.ToPath(db.Type, options.ID),
+ "sort": sort,
+ "tags": tags,
+ "description": description,
+ "store": store,
+ "mtime": time.Now(),
+ "ctime": time.Now(),
+ "readonly": 0,
+ "built_in": 0,
+ "created_at": time.Now(),
+ "updated_at": time.Now(),
+ }
+
+ _, err = m.Create(data)
+ if err != nil {
+ return err
+ }
+
+ return nil
+}
+
+// Update update the dsl
+func (db *DB) Update(options *types.UpdateOptions) error {
+ if options.Source == "" && options.Info == nil {
+ return fmt.Errorf("%s %s one of source or info is required", db.Type, options.ID)
+ }
+
+ m := model.Select("__yao.dsl")
+
+ // Check if the dsl exists
+ rows, err := m.Get(model.QueryParam{
+ Wheres: []model.QueryWhere{
+ {Column: "dsl_id", Value: options.ID},
+ {Column: "type", Value: db.Type},
+ },
+ Select: []interface{}{"id"},
+ Limit: 1,
+ })
+ if err != nil {
+ return err
+ }
+
+ if len(rows) == 0 {
+ return fmt.Errorf("%s %s not found", db.Type, options.ID)
+ }
+
+ // update source
+ var data map[string]interface{} = map[string]interface{}{
+ "source": options.Source,
+ }
+ if options.Source != "" {
+ // Parse source to extract metadata
+ var sourceData map[string]interface{}
+ err = jsoniter.Unmarshal([]byte(options.Source), &sourceData)
+ if err != nil {
+ return err
+ }
+
+ // Extract common fields from source
+ if v, ok := sourceData["label"]; ok {
+ if s, ok := v.(string); ok {
+ data["label"] = s
+ }
+ }
+
+ if v, ok := sourceData["description"]; ok {
+ if s, ok := v.(string); ok {
+ data["description"] = s
+ }
+ }
+
+ if v, ok := sourceData["tags"]; ok {
+ if tagsList, ok := v.([]interface{}); ok {
+ var tags []string
+ for _, tag := range tagsList {
+ if s, ok := tag.(string); ok {
+ tags = append(tags, s)
+ }
+ }
+ data["tags"] = tags
+ }
+ }
+
+ if v, ok := sourceData["sort"]; ok {
+ if s, ok := v.(float64); ok {
+ data["sort"] = int(s)
+ }
+ }
+ } else {
+ // Update info
+ if options.Info.Label != "" {
+ data["label"] = options.Info.Label
+ }
+ if options.Info.Description != "" {
+ data["description"] = options.Info.Description
+ }
+ if len(options.Info.Tags) > 0 {
+ data["tags"] = options.Info.Tags
+ }
+ if options.Info.Sort != 0 {
+ data["sort"] = options.Info.Sort
+ }
+ if options.Info.Status != "" {
+ data["status"] = options.Info.Status
+ }
+ if options.Info.Store != "" {
+ data["store"] = options.Info.Store
+ }
+ if options.Info.Readonly {
+ data["readonly"] = 1
+ }
+ if options.Info.Builtin {
+ data["built_in"] = 1
+ }
+ }
+
+ data["updated_at"] = time.Now()
+ data["mtime"] = time.Now()
+
+ err = m.Update(rows[0]["id"], data)
+ if err != nil {
+ return err
+ }
+
+ return nil
+}
+
+// Delete delete the dsl
+func (db *DB) Delete(id string) error {
+
+ // Get from database
+ m := model.Select("__yao.dsl")
+
+ // Check if the dsl exists
+ rows, err := m.Get(model.QueryParam{
+ Wheres: []model.QueryWhere{
+ {Column: "dsl_id", Value: id},
+ {Column: "type", Value: db.Type},
+ },
+ Select: []interface{}{"id", "dsl_id"},
+ Limit: 1,
+ })
+ if err != nil {
+ return err
+ }
+
+ if len(rows) == 0 {
+ return fmt.Errorf("%s %s not found", db.Type, id)
+ }
+
+ // Delete the dsl
+ row := rows[0]
+ return m.Delete(row["id"])
+}
+
+// Exists check if the dsl exists
+func (db *DB) Exists(id string) (bool, error) {
+
+ // Get from database
+ m := model.Select("__yao.dsl")
+
+ // Check if the dsl exists
+ rows, err := m.Get(model.QueryParam{
+ Wheres: []model.QueryWhere{
+ {Column: "dsl_id", Value: id},
+ {Column: "type", Value: db.Type},
+ },
+ Select: []interface{}{"id", "dsl_id"},
+ Limit: 1,
+ })
+ if err != nil {
+ return false, err
+ }
+
+ return len(rows) > 0, nil
+}
diff --git a/dsl/io/db_test.go b/dsl/io/db_test.go
new file mode 100644
index 00000000..00169b3c
--- /dev/null
+++ b/dsl/io/db_test.go
@@ -0,0 +1,164 @@
+package io
+
+import (
+ "testing"
+
+ "github.com/stretchr/testify/assert"
+ "github.com/yaoapp/yao/dsl/types"
+)
+
+func TestDBNew(t *testing.T) {
+ db := NewDB(types.TypeModel)
+ dbImpl, ok := db.(*DB)
+ assert.True(t, ok)
+ assert.Equal(t, types.TypeModel, dbImpl.Type)
+}
+
+func TestDBCreate(t *testing.T) {
+ prepare(t)
+ db := NewDB(types.TypeModel)
+ tc := NewTestCase()
+
+ err := db.Create(tc.CreateOptions())
+ assert.Nil(t, err)
+
+ // Check if exists
+ exists, err := db.Exists(tc.ID)
+ assert.Nil(t, err)
+ assert.True(t, exists)
+
+ // Create again should fail
+ err = db.Create(tc.CreateOptions())
+ assert.NotNil(t, err)
+}
+
+func TestDBInspect(t *testing.T) {
+ prepare(t)
+ db := NewDB(types.TypeModel)
+ tc := NewTestCase()
+
+ err := db.Create(tc.CreateOptions())
+ assert.Nil(t, err)
+
+ info, exists, err := db.Inspect(tc.ID)
+ assert.Nil(t, err)
+ assert.True(t, exists)
+ assert.True(t, tc.AssertInfo(info))
+}
+
+func TestDBSource(t *testing.T) {
+ prepare(t)
+ db := NewDB(types.TypeModel)
+ tc := NewTestCase()
+
+ err := db.Create(tc.CreateOptions())
+ assert.Nil(t, err)
+
+ data, exists, err := db.Source(tc.ID)
+ assert.Nil(t, err)
+ assert.True(t, exists)
+ assert.Equal(t, tc.Source, data)
+}
+
+func TestDBList(t *testing.T) {
+ prepare(t)
+ db := NewDB(types.TypeModel)
+ tc1 := NewTestCase()
+ tc2 := NewTestCase()
+
+ // Create test files
+ err := db.Create(tc1.CreateOptions())
+ assert.Nil(t, err)
+
+ err = db.Create(tc2.CreateOptions())
+ assert.Nil(t, err)
+
+ // List all
+ list, err := db.List(&types.ListOptions{})
+ assert.Nil(t, err)
+ assert.Equal(t, 2, len(list))
+
+ // List with tag
+ list, err = db.List(tc1.ListOptions(false))
+ assert.Nil(t, err)
+ assert.Equal(t, 1, len(list))
+ if assert.Greater(t, len(list), 0, "List should not be empty") {
+ assert.Equal(t, tc1.ID, list[0].ID)
+ }
+}
+
+func TestDBUpdate(t *testing.T) {
+ prepare(t)
+ db := NewDB(types.TypeModel)
+ tc := NewTestCase()
+
+ err := db.Create(tc.CreateOptions())
+ assert.Nil(t, err)
+
+ // Update source
+ err = db.Update(tc.UpdateOptions())
+ assert.Nil(t, err)
+
+ info, exists, err := db.Inspect(tc.ID)
+ assert.Nil(t, err)
+ assert.True(t, exists)
+ assert.True(t, tc.AssertUpdatedInfo(info))
+
+ // Update info
+ err = db.Update(tc.UpdateInfoOptions())
+ assert.Nil(t, err)
+
+ info, exists, err = db.Inspect(tc.ID)
+ assert.Nil(t, err)
+ assert.True(t, exists)
+ assert.True(t, tc.AssertUpdatedInfoViaInfo(info))
+}
+
+func TestDBDelete(t *testing.T) {
+ prepare(t)
+ db := NewDB(types.TypeModel)
+ tc := NewTestCase()
+
+ err := db.Create(tc.CreateOptions())
+ assert.Nil(t, err)
+
+ err = db.Delete(tc.ID)
+ assert.Nil(t, err)
+
+ exists, err := db.Exists(tc.ID)
+ assert.Nil(t, err)
+ assert.False(t, exists)
+}
+
+func TestDBFlow(t *testing.T) {
+ prepare(t)
+ db := NewDB(types.TypeModel)
+ tc := NewTestCase()
+
+ // Create
+ err := db.Create(tc.CreateOptions())
+ assert.Nil(t, err)
+
+ // Inspect
+ info, exists, err := db.Inspect(tc.ID)
+ assert.Nil(t, err)
+ assert.True(t, exists)
+ assert.True(t, tc.AssertInfo(info))
+
+ // Update
+ err = db.Update(tc.UpdateOptions())
+ assert.Nil(t, err)
+
+ info, exists, err = db.Inspect(tc.ID)
+ assert.Nil(t, err)
+ assert.True(t, exists)
+ assert.True(t, tc.AssertUpdatedInfo(info))
+
+ // Delete
+ err = db.Delete(tc.ID)
+ assert.Nil(t, err)
+
+ exists, err = db.Exists(tc.ID)
+ assert.Nil(t, err)
+ assert.False(t, exists)
+}
diff --git a/dsl/io/fs.go b/dsl/io/fs.go
new file mode 100644
index 00000000..76f9b423
--- /dev/null
+++ b/dsl/io/fs.go
@@ -0,0 +1,275 @@
+package io
+
+import (
+ "fmt"
+
+ jsoniter "github.com/json-iterator/go"
+ "github.com/yaoapp/gou/application"
+ "github.com/yaoapp/yao/dsl/types"
+)
+
+// FS is the fs io
+type FS struct {
+ Type types.Type
+}
+
+// NewFS create a new fs io
+func NewFS(typ types.Type) types.IO {
+ return &FS{Type: typ}
+}
+
+// Inspect get the info from the file
+func (fs *FS) Inspect(id string) (*types.Info, bool, error) {
+ file := types.ToPath(fs.Type, id)
+ exists, err := application.App.Exists(file)
+ if err != nil {
+ return nil, false, err
+ }
+ if !exists {
+ return nil, false, nil
+ }
+
+ // Read the file
+ data, err := application.App.Read(file)
+ if err != nil {
+ return nil, false, err
+ }
+
+ // Parse the source to extract metadata
+ var sourceData map[string]interface{}
+ err = application.Parse(file, data, &sourceData)
+ if err != nil {
+ return nil, true, err
+ }
+
+ // Extract common fields from source
+ var label, description string
+ var tags []string
+ var sort int
+
+ if v, ok := sourceData["label"]; ok {
+ if s, ok := v.(string); ok {
+ label = s
+ }
+ }
+
+ if v, ok := sourceData["description"]; ok {
+ if s, ok := v.(string); ok {
+ description = s
+ }
+ }
+
+ if v, ok := sourceData["tags"]; ok {
+ if tagsList, ok := v.([]interface{}); ok {
+ for _, tag := range tagsList {
+ if s, ok := tag.(string); ok {
+ tags = append(tags, s)
+ }
+ }
+ }
+ }
+
+ if v, ok := sourceData["sort"]; ok {
+ if s, ok := v.(float64); ok {
+ sort = int(s)
+ }
+ }
+
+ // Get file info for timestamps
+ fileInfo, err := application.App.Info(file)
+ if err != nil {
+ return nil, true, err
+ }
+
+ // Create Info structure with correct fields
+ info := &types.Info{
+ ID: id,
+ Type: fs.Type,
+ Label: label,
+ Description: description,
+ Tags: tags,
+ Sort: sort,
+ Path: file,
+ Store: types.StoreTypeFile,
+ Readonly: false,
+ Builtin: false,
+ Status: types.StatusLoading,
+ Mtime: fileInfo.ModTime(),
+ Ctime: fileInfo.ModTime(),
+ }
+
+ return info, true, nil
+}
+
+// Source get the source from the file
+func (fs *FS) Source(id string) (string, bool, error) {
+ path := types.ToPath(fs.Type, id)
+ exists, err := application.App.Exists(path)
+ if err != nil {
+ return "", false, err
+ }
+ if !exists {
+ return "", false, nil
+ }
+
+ // Read the file
+ data, err := application.App.Read(path)
+ if err != nil {
+ return "", false, err
+ }
+ return string(data), true, nil
+}
+
+// List get the list from the path
+func (fs *FS) List(options *types.ListOptions) ([]*types.Info, error) {
+ root, exts := types.TypeRootAndExts(fs.Type)
+ var infos []*types.Info = []*types.Info{}
+ patterns := []string{}
+ for _, ext := range exts {
+ patterns = append(patterns, "*"+ext)
+ }
+ var errs []error
+ err := application.App.Walk(root, func(root, file string, isdir bool) error {
+ if isdir {
+ return nil
+ }
+ id := types.WithTypeToID(fs.Type, file)
+ info, _, err := fs.Inspect(id)
+ if err != nil {
+ errs = append(errs, err)
+ return nil
+ }
+
+ // Filter by options
+ if len(options.Tags) > 0 {
+ if len(info.Tags) == 0 {
+ return nil
+ }
+
+ for _, tag := range options.Tags {
+ for _, t := range info.Tags {
+ if t == tag {
+ if options.Source {
+ source, _, err := fs.Source(id)
+ if err != nil {
+ errs = append(errs, err)
+ return nil
+ }
+ info.Source = source
+ }
+ infos = append(infos, info)
+ return nil
+ }
+ }
+ }
+ }
+
+ // Add to the list
+ if options.Source {
+ source, _, err := fs.Source(id)
+ if err != nil {
+ errs = append(errs, err)
+ return nil
+ }
+ info.Source = source
+ }
+ infos = append(infos, info)
+ return err
+ }, patterns...)
+
+ return infos, err
+}
+
+// Create create the file
+func (fs *FS) Create(options *types.CreateOptions) error {
+
+ path := types.ToPath(fs.Type, options.ID)
+
+ // Check if the file is a directory
+ exists, err := application.App.Exists(path)
+ if err != nil {
+ return err
+ }
+
+ if exists {
+ return fmt.Errorf("%v %s already exists", fs.Type, options.ID)
+ }
+
+ // Create the file
+ return application.App.Write(path, []byte(options.Source))
+}
+
+// Update update the file
+func (fs *FS) Update(options *types.UpdateOptions) error {
+
+ // Validate the options
+ if options.Source == "" && options.Info == nil {
+ return fmt.Errorf("%v %s one of source or info is required", fs.Type, options.ID)
+ }
+
+ path := types.ToPath(fs.Type, options.ID)
+
+ // Check if the file exists
+ exists, err := application.App.Exists(path)
+ if err != nil {
+ return err
+ }
+
+ if !exists {
+ return fmt.Errorf("%v %s not found", fs.Type, options.ID)
+ }
+
+ // Update source
+ if options.Source != "" {
+ return application.App.Write(path, []byte(options.Source))
+ }
+
+ // Update info
+ var source map[string]interface{}
+ data, err := application.App.Read(path)
+ if err != nil {
+ return err
+ }
+
+ err = application.Parse(path, data, &source)
+ if err != nil {
+ return err
+ }
+
+ // Update the info
+ source["id"] = options.ID
+ source["label"] = options.Info.Label
+ source["tags"] = options.Info.Tags
+ source["description"] = options.Info.Description
+ new, err := jsoniter.MarshalIndent(source, "", " ")
+ if err != nil {
+ return err
+ }
+
+ return application.App.Write(path, []byte(new))
+}
+
+// Delete delete the file
+func (fs *FS) Delete(id string) error {
+
+ path := types.ToPath(fs.Type, id)
+
+ // Check if the file is a directory
+ exists, err := application.App.Exists(path)
+ if err != nil {
+ return err
+ }
+
+ if !exists {
+ return fmt.Errorf("%v %s not found", fs.Type, id)
+ }
+
+ // Delete the file
+ return application.App.Remove(path)
+}
+
+// Exists check if the file exists
+func (fs *FS) Exists(id string) (bool, error) {
+ path := types.ToPath(fs.Type, id)
+ return application.App.Exists(path)
+}
diff --git a/dsl/io/fs_test.go b/dsl/io/fs_test.go
new file mode 100644
index 00000000..651c9827
--- /dev/null
+++ b/dsl/io/fs_test.go
@@ -0,0 +1,221 @@
+package io
+
+import (
+ "os"
+ "path/filepath"
+ "strings"
+ "testing"
+
+ "github.com/stretchr/testify/assert"
+ "github.com/yaoapp/gou/application"
+ "github.com/yaoapp/yao/dsl/types"
+)
+
+func prepare(t *testing.T) {
+ root := os.Getenv("YAO_TEST_APPLICATION")
+ if root == "" {
+ t.Fatal("YAO_TEST_APPLICATION environment variable is not set")
+ }
+
+ // Create models directory if it doesn't exist
+ modelsDir := filepath.Join(root, "models")
+ if err := os.MkdirAll(modelsDir, 0755); err != nil {
+ t.Fatal(err)
+ }
+
+ // Clean test files
+ files, err := os.ReadDir(modelsDir)
+ if err != nil {
+ t.Fatal(err)
+ }
+
+ // Remove test files
+ for _, file := range files {
+ if !file.IsDir() && strings.HasPrefix(file.Name(), "test_") && strings.HasSuffix(file.Name(), ".mod.yao") {
+ path := filepath.Join(modelsDir, file.Name())
+ if err := os.Remove(path); err != nil {
+ t.Fatal(err)
+ }
+ }
+ }
+
+ // Clean test data from database
+ err = cleanTestData()
+ if err != nil {
+ t.Fatal(err)
+ }
+
+ app, err := application.OpenFromDisk(root)
+ if err != nil {
+ t.Fatal(err)
+ }
+ application.App = app
+}
+
+func TestFSNew(t *testing.T) {
+ fs := NewFS(types.TypeModel)
+ fsImpl, ok := fs.(*FS)
+ assert.True(t, ok)
+ assert.Equal(t, types.TypeModel, fsImpl.Type)
+}
+
+func TestFSCreate(t *testing.T) {
+ prepare(t)
+ fs := NewFS(types.TypeModel)
+ tc := NewTestCase()
+
+ err := fs.Create(tc.CreateOptions())
+ assert.Nil(t, err)
+
+ // Check if exists
+ exists, err := fs.Exists(tc.ID)
+ assert.Nil(t, err)
+ assert.True(t, exists)
+
+ // Create again should fail
+ err = fs.Create(tc.CreateOptions())
+ assert.NotNil(t, err)
+}
+
+func TestFSInspect(t *testing.T) {
+ prepare(t)
+ fs := NewFS(types.TypeModel)
+ tc := NewTestCase()
+
+ err := fs.Create(tc.CreateOptions())
+ assert.Nil(t, err)
+
+ info, exists, err := fs.Inspect(tc.ID)
+ assert.Nil(t, err)
+ assert.True(t, exists)
+ assert.True(t, tc.AssertInfo(info))
+}
+
+func TestFSSource(t *testing.T) {
+ prepare(t)
+ fs := NewFS(types.TypeModel)
+ tc := NewTestCase()
+
+ err := fs.Create(tc.CreateOptions())
+ assert.Nil(t, err)
+
+ data, exists, err := fs.Source(tc.ID)
+ assert.Nil(t, err)
+ assert.True(t, exists)
+ assert.Equal(t, tc.Source, data)
+}
+
+func TestFSList(t *testing.T) {
+ prepare(t)
+ fs := NewFS(types.TypeModel)
+
+ // Get initial count
+ initialList, err := fs.List(&types.ListOptions{})
+ assert.Nil(t, err)
+ initialCount := len(initialList)
+
+ tc1 := NewTestCase()
+ tc2 := NewTestCase()
+
+ // Create test files
+ err = fs.Create(tc1.CreateOptions())
+ assert.Nil(t, err)
+
+ err = fs.Create(tc2.CreateOptions())
+ assert.Nil(t, err)
+
+ // List all
+ list, err := fs.List(&types.ListOptions{})
+ assert.Nil(t, err)
+ assert.Equal(t, initialCount+2, len(list))
+
+ // List with tag - should return both files since tags are OR relationship
+ list, err = fs.List(tc1.ListOptions(false))
+ assert.Nil(t, err)
+ assert.Equal(t, 2, len(list))
+ // Verify both files are in the results
+ found := false
+ for _, info := range list {
+ if info.ID == tc1.ID {
+ found = true
+ break
+ }
+ }
+ assert.True(t, found, "Should find tc1's file in results")
+}
+
+func TestFSUpdate(t *testing.T) {
+ prepare(t)
+ fs := NewFS(types.TypeModel)
+ tc := NewTestCase()
+
+ err := fs.Create(tc.CreateOptions())
+ assert.Nil(t, err)
+
+ // Update source
+ err = fs.Update(tc.UpdateOptions())
+ assert.Nil(t, err)
+
+ info, exists, err := fs.Inspect(tc.ID)
+ assert.Nil(t, err)
+ assert.True(t, exists)
+ assert.True(t, tc.AssertUpdatedInfo(info))
+
+ // Update info
+ err = fs.Update(tc.UpdateInfoOptions())
+ assert.Nil(t, err)
+
+ info, exists, err = fs.Inspect(tc.ID)
+ assert.Nil(t, err)
+ assert.True(t, exists)
+ assert.True(t, tc.AssertUpdatedInfoViaInfo(info))
+}
+
+func TestFSDelete(t *testing.T) {
+ prepare(t)
+ fs := NewFS(types.TypeModel)
+ tc := NewTestCase()
+
+ err := fs.Create(tc.CreateOptions())
+ assert.Nil(t, err)
+
+ err = fs.Delete(tc.ID)
+ assert.Nil(t, err)
+
+ exists, err := fs.Exists(tc.ID)
+ assert.Nil(t, err)
+ assert.False(t, exists)
+}
+
+func TestFSFlow(t *testing.T) {
+ prepare(t)
+ fs := NewFS(types.TypeModel)
+ tc := NewTestCase()
+
+ // Create
+ err := fs.Create(tc.CreateOptions())
+ assert.Nil(t, err)
+
+ // Inspect
+ info, exists, err := fs.Inspect(tc.ID)
+ assert.Nil(t, err)
+ assert.True(t, exists)
+ assert.True(t, tc.AssertInfo(info))
+
+ // Update
+ err = fs.Update(tc.UpdateOptions())
+ assert.Nil(t, err)
+
+ info, exists, err = fs.Inspect(tc.ID)
+ assert.Nil(t, err)
+ assert.True(t, exists)
+ assert.True(t, tc.AssertUpdatedInfo(info))
+
+ // Delete
+ err = fs.Delete(tc.ID)
+ assert.Nil(t, err)
+
+ exists, err = fs.Exists(tc.ID)
+ assert.Nil(t, err)
+ assert.False(t, exists)
+}
diff --git a/dsl/io/utils.go b/dsl/io/utils.go
new file mode 100644
index 00000000..4600ca4d
--- /dev/null
+++ b/dsl/io/utils.go
@@ -0,0 +1,51 @@
+package io
+
+import "time"
+
+// toBool converts various types to boolean
+func toBool(v interface{}) bool {
+ if v == nil {
+ return false
+ }
+
+ switch val := v.(type) {
+ case bool:
+ return val
+ case int:
+ return val == 1
+ case int64:
+ return val == 1
+ case float64:
+ return val == 1
+ case string:
+ return val == "1" || val == "true"
+ default:
+ return false
+ }
+}
+
+// toTime converts various time formats to RFC3339 string
+func toTime(v interface{}) string {
+ if v == nil {
+ return ""
+ }
+
+ switch val := v.(type) {
+ case string:
+ // Try common formats
+ formats := []string{
+ "2006-01-02 15:04:05", // SQLite format
+ "2006-01-02T15:04:05Z07:00", // RFC3339 format
+ "2006-01-02T15:04:05Z", // RFC3339 without timezone
+ time.RFC3339,
+ }
+ for _, format := range formats {
+ if t, err := time.Parse(format, val); err == nil {
+ return t.UTC().Format(time.RFC3339) // Convert to UTC and format as RFC3339
+ }
+ }
+ case time.Time:
+ return val.UTC().Format(time.RFC3339) // Convert to UTC and format as RFC3339
+ }
+ return ""
+}
diff --git a/dsl/mcp/cases_test.go b/dsl/mcp/cases_test.go
new file mode 100644
index 00000000..178ed152
--- /dev/null
+++ b/dsl/mcp/cases_test.go
@@ -0,0 +1,325 @@
+package mcp
+
+import (
+ "fmt"
+ "os"
+ "testing"
+ "time"
+
+ jsoniter "github.com/json-iterator/go"
+ "github.com/yaoapp/gou/application"
+ "github.com/yaoapp/gou/model"
+ "github.com/yaoapp/kun/log"
+ "github.com/yaoapp/yao/config"
+ "github.com/yaoapp/yao/data"
+ "github.com/yaoapp/yao/dsl/types"
+ "github.com/yaoapp/yao/test"
+)
+
+// systemModels system models
+var systemModels = map[string]string{
+ "__yao.dsl": "yao/models/dsl.mod.yao",
+}
+
+func TestMain(m *testing.M) {
+ // Setup
+ test.Prepare(&testing.T{}, config.Conf)
+ defer test.Clean()
+
+ // Load system models
+ model.WithCrypt([]byte(fmt.Sprintf(`{"key":"%s"}`, config.Conf.DB.AESKey)), "AES")
+ model.WithCrypt([]byte(`{}`), "PASSWORD")
+ err := loadSystemModels()
+ if err != nil {
+ log.Error("Load system models error: %s", err.Error())
+ os.Exit(1)
+ }
+
+ // Load application
+ root := os.Getenv("GOU_TEST_APPLICATION")
+ app, err := application.OpenFromDisk(root) // Load app
+ if err != nil {
+ log.Error("Load application error: %s", err.Error())
+ os.Exit(1)
+ }
+ application.Load(app)
+
+ // Run tests
+ code := m.Run()
+ os.Exit(code)
+}
+
+// loadSystemModels load system models
+func loadSystemModels() error {
+ for id, path := range systemModels {
+ content, err := data.Read(path)
+ if err != nil {
+ return err
+ }
+
+ // Parse model
+ var data map[string]interface{}
+ err = application.Parse(path, content, &data)
+ if err != nil {
+ return err
+ }
+
+ // Set prefix
+ if table, ok := data["table"].(map[string]interface{}); ok {
+ if name, ok := table["name"].(string); ok {
+ table["name"] = "__yao_" + name
+ content, err = jsoniter.Marshal(data)
+ if err != nil {
+ log.Error("failed to marshal model data: %v", err)
+ return fmt.Errorf("failed to marshal model data: %v", err)
+ }
+ }
+ }
+
+ // Load Model
+ mod, err := model.LoadSource(content, id, path)
+ if err != nil {
+ log.Error("load system model %s error: %s", id, err.Error())
+ return err
+ }
+
+ // Drop table first
+ err = mod.DropTable()
+ if err != nil {
+ log.Error("drop table error: %s", err.Error())
+ return err
+ }
+
+ // Auto migrate
+ err = mod.Migrate(false, model.WithDonotInsertValues(true))
+ if err != nil {
+ log.Error("migrate system model %s error: %s", id, err.Error())
+ return err
+ }
+ }
+
+ return nil
+}
+
+// TestCase defines a single test case
+type TestCase struct {
+ ID string
+ Source string
+ UpdatedSource string
+ Tags []string
+ Label string
+ Description string
+}
+
+// NewTestCase creates a new test case
+func NewTestCase() *TestCase {
+ id := getTestID()
+ return &TestCase{
+ ID: id,
+ Source: fmt.Sprintf(`{
+ "name": "Test MCP Client %s",
+ "label": "Test MCP Client",
+ "description": "Test MCP Client Description",
+ "tags": ["test_%s"],
+ "transport": "stdio",
+ "command": "echo",
+ "arguments": ["hello", "world"],
+ "env": {
+ "MCP_TEST": "true"
+ },
+ "enable_sampling": true,
+ "enable_roots": false,
+ "timeout": "30s"
+}`, id, id),
+ UpdatedSource: fmt.Sprintf(`{
+ "name": "Updated MCP Client %s",
+ "label": "Updated MCP Client",
+ "description": "Updated MCP Client Description",
+ "tags": ["test_%s", "updated"],
+ "transport": "stdio",
+ "command": "echo",
+ "arguments": ["hello", "updated"],
+ "env": {
+ "MCP_TEST": "true",
+ "MCP_UPDATED": "true"
+ },
+ "enable_sampling": false,
+ "enable_roots": true,
+ "timeout": "60s"
+}`, id, id),
+ Tags: []string{fmt.Sprintf("test_%s", id)},
+ Label: "Test MCP Client",
+ Description: "Test MCP Client Description",
+ }
+}
+
+// NewHTTPTestCase creates a new HTTP test case
+func NewHTTPTestCase() *TestCase {
+ id := getTestID()
+ return &TestCase{
+ ID: id,
+ Source: fmt.Sprintf(`{
+ "name": "Test HTTP MCP Client %s",
+ "label": "Test HTTP MCP Client",
+ "description": "Test HTTP MCP Client Description",
+ "tags": ["test_%s", "http"],
+ "transport": "http",
+ "url": "http://localhost:8080/mcp",
+ "authorization_token": "Bearer test-token",
+ "enable_sampling": true,
+ "enable_roots": true,
+ "timeout": "30s"
+}`, id, id),
+ UpdatedSource: fmt.Sprintf(`{
+ "name": "Updated HTTP MCP Client %s",
+ "label": "Updated HTTP MCP Client",
+ "description": "Updated HTTP MCP Client Description",
+ "tags": ["test_%s", "http", "updated"],
+ "transport": "http",
+ "url": "http://localhost:8080/mcp/v2",
+ "authorization_token": "Bearer updated-token",
+ "enable_sampling": false,
+ "enable_roots": false,
+ "timeout": "60s"
+}`, id, id),
+ Tags: []string{fmt.Sprintf("test_%s", id), "http"},
+ Label: "Test HTTP MCP Client",
+ Description: "Test HTTP MCP Client Description",
+ }
+}
+
+// NewSSETestCase creates a new SSE test case
+func NewSSETestCase() *TestCase {
+ id := getTestID()
+ return &TestCase{
+ ID: id,
+ Source: fmt.Sprintf(`{
+ "name": "Test SSE MCP Client %s",
+ "label": "Test SSE MCP Client",
+ "description": "Test SSE MCP Client Description",
+ "tags": ["test_%s", "sse"],
+ "transport": "sse",
+ "url": "http://localhost:8080/sse",
+ "authorization_token": "Bearer sse-token",
+ "enable_sampling": true,
+ "enable_elicitation": true,
+ "timeout": "45s"
+}`, id, id),
+ UpdatedSource: fmt.Sprintf(`{
+ "name": "Updated SSE MCP Client %s",
+ "label": "Updated SSE MCP Client",
+ "description": "Updated SSE MCP Client Description",
+ "tags": ["test_%s", "sse", "updated"],
+ "transport": "sse",
+ "url": "http://localhost:8080/sse/v2",
+ "authorization_token": "Bearer updated-sse-token",
+ "enable_sampling": false,
+ "enable_elicitation": false,
+ "timeout": "90s"
+}`, id, id),
+ Tags: []string{fmt.Sprintf("test_%s", id), "sse"},
+ Label: "Test SSE MCP Client",
+ Description: "Test SSE MCP Client Description",
+ }
+}
+
+// getTestID generates a unique test ID
+func getTestID() string {
+ return fmt.Sprintf("test_%d", time.Now().UnixNano())
+}
+
+// CreateOptions returns creation options
+func (tc *TestCase) CreateOptions() *types.CreateOptions {
+ return &types.CreateOptions{
+ ID: tc.ID,
+ Source: tc.Source,
+ }
+}
+
+// LoadOptions returns load options
+func (tc *TestCase) LoadOptions() *types.LoadOptions {
+ return &types.LoadOptions{
+ ID: tc.ID,
+ Source: tc.Source,
+ }
+}
+
+// UnloadOptions returns unload options
+func (tc *TestCase) UnloadOptions() *types.UnloadOptions {
+ return &types.UnloadOptions{
+ ID: tc.ID,
+ }
+}
+
+// ReloadOptions returns reload options
+func (tc *TestCase) ReloadOptions() *types.ReloadOptions {
+ return &types.ReloadOptions{
+ ID: tc.ID,
+ Source: tc.UpdatedSource,
+ }
+}
+
+// AssertInfo verifies if the information is correct
+func (tc *TestCase) AssertInfo(info *types.Info) bool {
+ if info == nil {
+ return false
+ }
+ return info.ID == tc.ID &&
+ info.Type == types.TypeMCPClient &&
+ info.Label == tc.Label &&
+ len(info.Tags) == len(tc.Tags) &&
+ info.Description == tc.Description &&
+ !info.Readonly &&
+ !info.Builtin &&
+ !info.Mtime.IsZero() &&
+ !info.Ctime.IsZero()
+}
+
+// AssertUpdatedInfo verifies if the updated information is correct
+func (tc *TestCase) AssertUpdatedInfo(info *types.Info) bool {
+ if info == nil {
+ return false
+ }
+ expectedTags := append(tc.Tags, "updated")
+ return info.ID == tc.ID &&
+ info.Type == types.TypeMCPClient &&
+ info.Label == "Updated MCP Client" &&
+ len(info.Tags) == len(expectedTags) &&
+ info.Description == "Updated MCP Client Description" &&
+ !info.Readonly &&
+ !info.Builtin &&
+ !info.Mtime.IsZero() &&
+ !info.Ctime.IsZero()
+}
+
+// AssertHTTPInfo verifies if the HTTP client information is correct
+func (tc *TestCase) AssertHTTPInfo(info *types.Info) bool {
+ if info == nil {
+ return false
+ }
+ return info.ID == tc.ID &&
+ info.Type == types.TypeMCPClient &&
+ info.Label == "Test HTTP MCP Client" &&
+ len(info.Tags) == 2 && // test_xxx and http
+ info.Description == "Test HTTP MCP Client Description" &&
+ !info.Readonly &&
+ !info.Builtin &&
+ !info.Mtime.IsZero() &&
+ !info.Ctime.IsZero()
+}
+
+// AssertSSEInfo verifies if the SSE client information is correct
+func (tc *TestCase) AssertSSEInfo(info *types.Info) bool {
+ if info == nil {
+ return false
+ }
+ return info.ID == tc.ID &&
+ info.Type == types.TypeMCPClient &&
+ info.Label == "Test SSE MCP Client" &&
+ len(info.Tags) == 2 && // test_xxx and sse
+ info.Description == "Test SSE MCP Client Description" &&
+ !info.Readonly &&
+ !info.Builtin &&
+ !info.Mtime.IsZero() &&
+ !info.Ctime.IsZero()
+}
diff --git a/dsl/mcp/client.go b/dsl/mcp/client.go
new file mode 100644
index 00000000..e77d4a47
--- /dev/null
+++ b/dsl/mcp/client.go
@@ -0,0 +1,184 @@
+package mcp
+
+import (
+ "context"
+ "fmt"
+
+ goumcp "github.com/yaoapp/gou/mcp"
+ "github.com/yaoapp/yao/dsl/types"
+)
+
+// YaoMCPClient is the MCP client DSL manager
+type YaoMCPClient struct {
+ root string // The relative path of the MCP client DSL
+ fs types.IO // The file system IO interface
+ db types.IO // The database IO interface
+}
+
+// NewClient returns a new MCP client DSL manager
+func NewClient(root string, fs types.IO, db types.IO) types.Manager {
+ return &YaoMCPClient{root: root, fs: fs, db: db}
+}
+
+// Loaded return all loaded DSLs
+func (client *YaoMCPClient) Loaded(ctx context.Context) (map[string]*types.Info, error) {
+ infos := map[string]*types.Info{}
+
+ // Get all loaded MCP clients
+ clientIDs := goumcp.ListClients()
+
+ for _, id := range clientIDs {
+ // Get the client
+ mcpClient, err := goumcp.Select(id)
+ if err != nil {
+ continue // Skip if client not found
+ }
+
+ // Get meta info from the client
+ meta := mcpClient.GetMetaInfo()
+
+ infos[id] = &types.Info{
+ ID: id,
+ Path: types.ToPath(types.TypeMCPClient, id),
+ Type: types.TypeMCPClient,
+ Label: meta.Label,
+ Sort: meta.Sort,
+ Description: meta.Description,
+ Tags: meta.Tags,
+ Readonly: meta.Readonly,
+ Builtin: meta.Builtin,
+ Mtime: meta.Mtime,
+ Ctime: meta.Ctime,
+ }
+ }
+
+ return infos, nil
+}
+
+// Load will unload the DSL first, then load the DSL from DB or file system
+func (client *YaoMCPClient) Load(ctx context.Context, options *types.LoadOptions) error {
+ if options == nil {
+ return fmt.Errorf("load options is required")
+ }
+
+ if options.ID == "" {
+ return fmt.Errorf("load options id is required")
+ }
+
+ var err error
+
+ // Case 1: If Source is provided, use LoadClientSource
+ if options.Source != "" {
+ _, err = goumcp.LoadClientSource(options.Source, options.ID)
+ if err != nil {
+ return err
+ }
+ } else if options.Path != "" && options.Store == types.StoreTypeFile {
+ // Case 2: If Path is provided and Store is file, use LoadClient with Path
+ _, err = goumcp.LoadClient(options.Path, options.ID)
+ if err != nil {
+ return err
+ }
+ } else if options.Store == types.StoreTypeDB {
+ // Case 3: If Store is db, get Source from DB first
+ if client.db == nil {
+ return fmt.Errorf("db io is required for store type db")
+ }
+ source, exists, err := client.db.Source(options.ID)
+ if err != nil {
+ return err
+ }
+ if !exists {
+ return fmt.Errorf("mcp client %s not found in database", options.ID)
+ }
+ _, err = goumcp.LoadClientSource(source, options.ID)
+ if err != nil {
+ return err
+ }
+ } else {
+ // Case 4: Default case, use LoadClient with ID
+ path := types.ToPath(types.TypeMCPClient, options.ID)
+ _, err = goumcp.LoadClient(path, options.ID)
+ if err != nil {
+ return err
+ }
+ }
+
+ return nil
+}
+
+// Unload will unload the DSL from memory
+func (client *YaoMCPClient) Unload(ctx context.Context, options *types.UnloadOptions) error {
+ if options == nil {
+ return fmt.Errorf("unload options is required")
+ }
+
+ if options.ID == "" {
+ return fmt.Errorf("unload options id is required")
+ }
+
+ // Use the UnloadClient function from gou/mcp package
+ goumcp.UnloadClient(options.ID)
+ return nil
+}
+
+// Reload will unload the DSL first, then reload the DSL from DB or file system
+func (client *YaoMCPClient) Reload(ctx context.Context, options *types.ReloadOptions) error {
+ if options == nil {
+ return fmt.Errorf("reload options is required")
+ }
+
+ if options.ID == "" {
+ return fmt.Errorf("reload options id is required")
+ }
+
+ // First unload
+ goumcp.UnloadClient(options.ID)
+
+ // Then load
+ var err error
+ if options.Source != "" {
+ _, err = goumcp.LoadClientSource(options.Source, options.ID)
+ if err != nil {
+ return err
+ }
+ } else if options.Path != "" && options.Store == types.StoreTypeFile {
+ _, err = goumcp.LoadClient(options.Path, options.ID)
+ if err != nil {
+ return err
+ }
+ } else if options.Store == types.StoreTypeDB {
+ if client.db == nil {
+ return fmt.Errorf("db io is required for store type db")
+ }
+ source, exists, err := client.db.Source(options.ID)
+ if err != nil {
+ return err
+ }
+ if !exists {
+ return fmt.Errorf("mcp client %s not found in database", options.ID)
+ }
+ _, err = goumcp.LoadClientSource(source, options.ID)
+ if err != nil {
+ return err
+ }
+ } else {
+ path := types.ToPath(types.TypeMCPClient, options.ID)
+ _, err = goumcp.LoadClient(path, options.ID)
+ if err != nil {
+ return err
+ }
+ }
+
+ return nil
+}
+
+// Validate will validate the DSL from source
+func (client *YaoMCPClient) Validate(ctx context.Context, source string) (bool, []types.LintMessage) {
+ return true, []types.LintMessage{}
+}
+
+// Execute will execute the DSL
+func (client *YaoMCPClient) Execute(ctx context.Context, id string, method string, args ...any) (any, error) {
+ return nil, fmt.Errorf("Not implemented")
+}
diff --git a/dsl/mcp/client_test.go b/dsl/mcp/client_test.go
new file mode 100644
index 00000000..228af4d7
--- /dev/null
+++ b/dsl/mcp/client_test.go
@@ -0,0 +1,330 @@
+package mcp
+
+import (
+ "context"
+ "testing"
+
+ "github.com/stretchr/testify/assert"
+ "github.com/yaoapp/yao/dsl/io"
+ "github.com/yaoapp/yao/dsl/types"
+)
+
+func TestMCPClientLoad(t *testing.T) {
+ testCase := NewTestCase()
+ fsio := io.NewFS(types.TypeMCPClient)
+ dbio := io.NewDB(types.TypeMCPClient)
+ manager := NewClient("mcps", fsio, dbio)
+
+ // Test Load with nil options
+ err := manager.Load(context.Background(), nil)
+ assert.Error(t, err)
+ assert.Contains(t, err.Error(), "load options is required")
+
+ // Test Load with empty ID
+ err = manager.Load(context.Background(), &types.LoadOptions{})
+ assert.Error(t, err)
+ assert.Contains(t, err.Error(), "load options id is required")
+
+ // Test Load with Source
+ err = manager.Load(context.Background(), testCase.LoadOptions())
+ assert.NoError(t, err)
+
+ // Test Load from filesystem
+ err = fsio.Create(testCase.CreateOptions())
+ assert.NoError(t, err)
+
+ path := types.ToPath(types.TypeMCPClient, testCase.ID)
+ err = manager.Load(context.Background(), &types.LoadOptions{
+ ID: testCase.ID,
+ Path: path,
+ Store: types.StoreTypeFile,
+ })
+ assert.NoError(t, err)
+
+ // Test Load from database
+ err = dbio.Create(testCase.CreateOptions())
+ assert.NoError(t, err)
+
+ err = manager.Load(context.Background(), &types.LoadOptions{
+ ID: testCase.ID,
+ Store: types.StoreTypeDB,
+ })
+ assert.NoError(t, err)
+
+ // Clean up
+ err = fsio.Delete(testCase.ID)
+ assert.NoError(t, err)
+ err = dbio.Delete(testCase.ID)
+ assert.NoError(t, err)
+}
+
+func TestMCPClientUnload(t *testing.T) {
+ testCase := NewTestCase()
+ fsio := io.NewFS(types.TypeMCPClient)
+ dbio := io.NewDB(types.TypeMCPClient)
+ manager := NewClient("mcps", fsio, dbio)
+
+ // Test Unload with nil options
+ err := manager.Unload(context.Background(), nil)
+ assert.Error(t, err)
+ assert.Contains(t, err.Error(), "unload options is required")
+
+ // Test Unload with empty ID
+ err = manager.Unload(context.Background(), &types.UnloadOptions{})
+ assert.Error(t, err)
+ assert.Contains(t, err.Error(), "unload options id is required")
+
+ // Load and then unload from filesystem
+ err = fsio.Create(testCase.CreateOptions())
+ assert.NoError(t, err)
+
+ err = manager.Load(context.Background(), &types.LoadOptions{
+ ID: testCase.ID,
+ Store: types.StoreTypeFile,
+ })
+ assert.NoError(t, err)
+
+ err = manager.Unload(context.Background(), testCase.UnloadOptions())
+ assert.NoError(t, err)
+
+ // Clean up
+ err = fsio.Delete(testCase.ID)
+ assert.NoError(t, err)
+}
+
+func TestMCPClientReload(t *testing.T) {
+ testCase := NewTestCase()
+ fsio := io.NewFS(types.TypeMCPClient)
+ dbio := io.NewDB(types.TypeMCPClient)
+ manager := NewClient("mcps", fsio, dbio)
+
+ // Test Reload with nil options
+ err := manager.Reload(context.Background(), nil)
+ assert.Error(t, err)
+ assert.Contains(t, err.Error(), "reload options is required")
+
+ // Test Reload with empty ID
+ err = manager.Reload(context.Background(), &types.ReloadOptions{})
+ assert.Error(t, err)
+ assert.Contains(t, err.Error(), "reload options id is required")
+
+ // Load and then reload from filesystem
+ err = fsio.Create(testCase.CreateOptions())
+ assert.NoError(t, err)
+
+ err = manager.Load(context.Background(), &types.LoadOptions{
+ ID: testCase.ID,
+ Store: types.StoreTypeFile,
+ })
+ assert.NoError(t, err)
+
+ err = manager.Reload(context.Background(), testCase.ReloadOptions())
+ assert.NoError(t, err)
+
+ // Clean up
+ err = fsio.Delete(testCase.ID)
+ assert.NoError(t, err)
+}
+
+func TestMCPClientLoaded(t *testing.T) {
+ testCase := NewTestCase()
+ fsio := io.NewFS(types.TypeMCPClient)
+ dbio := io.NewDB(types.TypeMCPClient)
+ manager := NewClient("mcps", fsio, dbio)
+
+ // Load from filesystem
+ err := fsio.Create(testCase.CreateOptions())
+ assert.NoError(t, err)
+
+ err = manager.Load(context.Background(), &types.LoadOptions{
+ ID: testCase.ID,
+ Store: types.StoreTypeFile,
+ })
+ assert.NoError(t, err)
+
+ // Test Loaded
+ infos, err := manager.Loaded(context.Background())
+ assert.NoError(t, err)
+ assert.NotNil(t, infos)
+ assert.Contains(t, infos, testCase.ID)
+
+ // Verify metadata fields
+ fsInfo := infos[testCase.ID]
+ assert.Equal(t, testCase.ID, fsInfo.ID)
+ assert.Equal(t, types.TypeMCPClient, fsInfo.Type)
+ assert.Equal(t, testCase.Label, fsInfo.Label)
+ assert.Equal(t, testCase.Description, fsInfo.Description)
+ assert.ElementsMatch(t, testCase.Tags, fsInfo.Tags)
+ assert.False(t, fsInfo.Readonly)
+ assert.False(t, fsInfo.Builtin)
+
+ // Clean up
+ err = fsio.Delete(testCase.ID)
+ assert.NoError(t, err)
+}
+
+func TestMCPClientValidate(t *testing.T) {
+ manager := NewClient("mcps", nil, nil)
+
+ // Test Validate
+ valid, messages := manager.Validate(context.Background(), "test source")
+ assert.True(t, valid)
+ assert.Empty(t, messages)
+}
+
+func TestMCPClientExecute(t *testing.T) {
+ manager := NewClient("mcps", nil, nil)
+
+ // Test Execute
+ result, err := manager.Execute(context.Background(), "test_id", "test_method")
+ assert.Error(t, err)
+ assert.Contains(t, err.Error(), "Not implemented")
+ assert.Nil(t, result)
+}
+
+func TestMCPClientHTTPLoad(t *testing.T) {
+ testCase := NewHTTPTestCase()
+ fsio := io.NewFS(types.TypeMCPClient)
+ dbio := io.NewDB(types.TypeMCPClient)
+ manager := NewClient("mcps", fsio, dbio)
+
+ // Test Load with HTTP Source
+ err := manager.Load(context.Background(), testCase.LoadOptions())
+ assert.NoError(t, err)
+
+ // Test Loaded
+ infos, err := manager.Loaded(context.Background())
+ assert.NoError(t, err)
+ assert.NotNil(t, infos)
+ assert.Contains(t, infos, testCase.ID)
+
+ // Verify HTTP metadata fields
+ httpInfo := infos[testCase.ID]
+ assert.Equal(t, testCase.ID, httpInfo.ID)
+ assert.Equal(t, types.TypeMCPClient, httpInfo.Type)
+ assert.Equal(t, "Test HTTP MCP Client", httpInfo.Label)
+ assert.Equal(t, "Test HTTP MCP Client Description", httpInfo.Description)
+ assert.Contains(t, httpInfo.Tags, "http")
+ assert.False(t, httpInfo.Readonly)
+ assert.False(t, httpInfo.Builtin)
+
+ // Test Unload
+ err = manager.Unload(context.Background(), testCase.UnloadOptions())
+ assert.NoError(t, err)
+}
+
+func TestMCPClientSSELoad(t *testing.T) {
+ testCase := NewSSETestCase()
+ fsio := io.NewFS(types.TypeMCPClient)
+ dbio := io.NewDB(types.TypeMCPClient)
+ manager := NewClient("mcps", fsio, dbio)
+
+ // Test Load with SSE Source
+ err := manager.Load(context.Background(), testCase.LoadOptions())
+ assert.NoError(t, err)
+
+ // Test Loaded
+ infos, err := manager.Loaded(context.Background())
+ assert.NoError(t, err)
+ assert.NotNil(t, infos)
+ assert.Contains(t, infos, testCase.ID)
+
+ // Verify SSE metadata fields
+ sseInfo := infos[testCase.ID]
+ assert.Equal(t, testCase.ID, sseInfo.ID)
+ assert.Equal(t, types.TypeMCPClient, sseInfo.Type)
+ assert.Equal(t, "Test SSE MCP Client", sseInfo.Label)
+ assert.Equal(t, "Test SSE MCP Client Description", sseInfo.Description)
+ assert.Contains(t, sseInfo.Tags, "sse")
+ assert.False(t, sseInfo.Readonly)
+ assert.False(t, sseInfo.Builtin)
+
+ // Test Unload
+ err = manager.Unload(context.Background(), testCase.UnloadOptions())
+ assert.NoError(t, err)
+}
+
+func TestMCPClientLoadWithDatabaseStore(t *testing.T) {
+ testCase := NewTestCase()
+ fsio := io.NewFS(types.TypeMCPClient)
+ dbio := io.NewDB(types.TypeMCPClient)
+ manager := NewClient("mcps", fsio, dbio)
+
+ // Create in database first
+ err := dbio.Create(testCase.CreateOptions())
+ assert.NoError(t, err)
+
+ // Test Load from database
+ err = manager.Load(context.Background(), &types.LoadOptions{
+ ID: testCase.ID,
+ Store: types.StoreTypeDB,
+ })
+ assert.NoError(t, err)
+
+ // Test Loaded
+ infos, err := manager.Loaded(context.Background())
+ assert.NoError(t, err)
+ assert.NotNil(t, infos)
+ assert.Contains(t, infos, testCase.ID)
+
+ // Verify metadata fields
+ dbInfo := infos[testCase.ID]
+ assert.Equal(t, testCase.ID, dbInfo.ID)
+ assert.Equal(t, types.TypeMCPClient, dbInfo.Type)
+ assert.Equal(t, testCase.Label, dbInfo.Label)
+ assert.Equal(t, testCase.Description, dbInfo.Description)
+ assert.ElementsMatch(t, testCase.Tags, dbInfo.Tags)
+ assert.False(t, dbInfo.Readonly)
+ assert.False(t, dbInfo.Builtin)
+
+ // Test Reload from database
+ err = manager.Reload(context.Background(), &types.ReloadOptions{
+ ID: testCase.ID,
+ Source: testCase.UpdatedSource,
+ Store: types.StoreTypeDB,
+ })
+ assert.NoError(t, err)
+
+ // Clean up
+ err = dbio.Delete(testCase.ID)
+ assert.NoError(t, err)
+}
+
+func TestMCPClientLoadWithFileStore(t *testing.T) {
+ testCase := NewTestCase()
+ fsio := io.NewFS(types.TypeMCPClient)
+ dbio := io.NewDB(types.TypeMCPClient)
+ manager := NewClient("mcps", fsio, dbio)
+
+ // Create in file system first
+ err := fsio.Create(testCase.CreateOptions())
+ assert.NoError(t, err)
+
+ // Test Load from file system with explicit path
+ path := types.ToPath(types.TypeMCPClient, testCase.ID)
+ err = manager.Load(context.Background(), &types.LoadOptions{
+ ID: testCase.ID,
+ Path: path,
+ Store: types.StoreTypeFile,
+ })
+ assert.NoError(t, err)
+
+ // Test Loaded
+ infos, err := manager.Loaded(context.Background())
+ assert.NoError(t, err)
+ assert.NotNil(t, infos)
+ assert.Contains(t, infos, testCase.ID)
+
+ // Test Reload from file system
+ err = manager.Reload(context.Background(), &types.ReloadOptions{
+ ID: testCase.ID,
+ Path: path,
+ Source: testCase.UpdatedSource,
+ Store: types.StoreTypeFile,
+ })
+ assert.NoError(t, err)
+
+ // Clean up
+ err = fsio.Delete(testCase.ID)
+ assert.NoError(t, err)
+}
diff --git a/dsl/mcp/server.go b/dsl/mcp/server.go
new file mode 100644
index 00000000..fad58f44
--- /dev/null
+++ b/dsl/mcp/server.go
@@ -0,0 +1,47 @@
+package mcp
+
+import (
+ "context"
+
+ "github.com/yaoapp/yao/dsl/types"
+)
+
+// YaoMCPServer is the MCP client DSL manager
+type YaoMCPServer struct {
+ root string // The relative path of the MCP client DSL
+}
+
+// NewServer returns a new MCP server DSL manager
+func NewServer(root string) types.Manager {
+ return &YaoMCPServer{root: root}
+}
+
+// Loaded return all loaded DSLs
+func (server *YaoMCPServer) Loaded(ctx context.Context) (map[string]*types.Info, error) {
+ return nil, nil
+}
+
+// Load will unload the DSL first, then load the DSL from DB or file system
+func (server *YaoMCPServer) Load(ctx context.Context, options *types.LoadOptions) error {
+ return nil
+}
+
+// Unload will unload the DSL from memory
+func (server *YaoMCPServer) Unload(ctx context.Context, options *types.UnloadOptions) error {
+ return nil
+}
+
+// Reload will unload the DSL first, then reload the DSL from DB or file system
+func (server *YaoMCPServer) Reload(ctx context.Context, options *types.ReloadOptions) error {
+ return nil
+}
+
+// Validate will validate the DSL from source
+func (server *YaoMCPServer) Validate(ctx context.Context, source string) (bool, []types.LintMessage) {
+ return false, nil
+}
+
+// Execute will execute the DSL
+func (server *YaoMCPServer) Execute(ctx context.Context, id string, method string, args ...any) (any, error) {
+ return nil, nil
+}
diff --git a/dsl/model/cases_test.go b/dsl/model/cases_test.go
new file mode 100644
index 00000000..a8ee26ab
--- /dev/null
+++ b/dsl/model/cases_test.go
@@ -0,0 +1,244 @@
+package model
+
+import (
+ "fmt"
+ "os"
+ "path/filepath"
+ "testing"
+ "time"
+
+ jsoniter "github.com/json-iterator/go"
+ "github.com/yaoapp/gou/application"
+ "github.com/yaoapp/gou/model"
+ "github.com/yaoapp/kun/log"
+ "github.com/yaoapp/yao/config"
+ "github.com/yaoapp/yao/data"
+ "github.com/yaoapp/yao/dsl/types"
+ "github.com/yaoapp/yao/test"
+)
+
+// systemModels system models
+var systemModels = map[string]string{
+ "__yao.dsl": "yao/models/dsl.mod.yao",
+}
+
+func TestMain(m *testing.M) {
+ // Setup
+ test.Prepare(&testing.T{}, config.Conf)
+ defer test.Clean()
+
+ // Load system models
+ model.WithCrypt([]byte(fmt.Sprintf(`{"key":"%s"}`, config.Conf.DB.AESKey)), "AES")
+ model.WithCrypt([]byte(`{}`), "PASSWORD")
+ err := loadSystemModels()
+ if err != nil {
+ log.Error("Load system models error: %s", err.Error())
+ os.Exit(1)
+ }
+
+ // Run tests
+ code := m.Run()
+ os.Exit(code)
+}
+
+// loadSystemModels load system models
+func loadSystemModels() error {
+ for id, path := range systemModels {
+ content, err := data.Read(path)
+ if err != nil {
+ return err
+ }
+
+ // Parse model
+ var data map[string]interface{}
+ err = application.Parse(path, content, &data)
+ if err != nil {
+ return err
+ }
+
+ // Set prefix
+ if table, ok := data["table"].(map[string]interface{}); ok {
+ if name, ok := table["name"].(string); ok {
+ table["name"] = "__yao_" + name
+ content, err = jsoniter.Marshal(data)
+ if err != nil {
+ log.Error("failed to marshal model data: %v", err)
+ return fmt.Errorf("failed to marshal model data: %v", err)
+ }
+ }
+ }
+
+ // Load Model
+ mod, err := model.LoadSource(content, id, filepath.Join("__system", path))
+ if err != nil {
+ log.Error("load system model %s error: %s", id, err.Error())
+ return err
+ }
+
+ // Drop table first
+ err = mod.DropTable()
+ if err != nil {
+ log.Error("drop table error: %s", err.Error())
+ return err
+ }
+
+ // Auto migrate
+ err = mod.Migrate(false, model.WithDonotInsertValues(true))
+ if err != nil {
+ log.Error("migrate system model %s error: %s", id, err.Error())
+ return err
+ }
+ }
+
+ return nil
+}
+
+// cleanTestData cleans test data from database
+func cleanTestData() error {
+ m := model.Select("__yao.dsl")
+ err := m.DropTable()
+ if err != nil {
+ return err
+ }
+ err = m.Migrate(false, model.WithDonotInsertValues(true))
+ if err != nil {
+ return err
+ }
+ return nil
+}
+
+// getTestID generates a unique test ID
+func getTestID() string {
+ return fmt.Sprintf("test_%d", time.Now().UnixNano())
+}
+
+// TestCase defines a single test case
+type TestCase struct {
+ ID string
+ Source string
+ UpdatedSource string
+ Tags []string
+ Label string
+ Description string
+}
+
+// NewTestCase creates a new test case
+func NewTestCase() *TestCase {
+ id := getTestID()
+ return &TestCase{
+ ID: id,
+ Source: fmt.Sprintf(`{
+ "name": "%s",
+ "table": { "name": "%s", "comment": "Test User" },
+ "columns": [
+ { "name": "id", "type": "ID" },
+ { "name": "name", "type": "string", "length": 80, "comment": "User Name", "index": true },
+ { "name": "status", "type": "enum", "option": ["active", "disabled"], "default": "active", "comment": "Status", "index": true }
+ ],
+ "tags": ["test_%s"],
+ "label": "Test Label",
+ "description": "Test Description",
+ "option": { "timestamps": true, "soft_deletes": true }
+ }`, id, id, id),
+ UpdatedSource: fmt.Sprintf(`{
+ "name": "%s",
+ "table": { "name": "%s", "comment": "Updated Test User" },
+ "columns": [
+ { "name": "id", "type": "ID" },
+ { "name": "name", "type": "string", "length": 80, "comment": "User Name", "index": true },
+ { "name": "status", "type": "enum", "option": ["active", "disabled", "pending"], "default": "active", "comment": "Status", "index": true }
+ ],
+ "tags": ["test_%s", "updated"],
+ "label": "Updated Label",
+ "description": "Updated Description",
+ "option": { "timestamps": true, "soft_deletes": true }
+ }`, id, id, id),
+ Tags: []string{fmt.Sprintf("test_%s", id)},
+ Label: "Test Label",
+ Description: "Test Description",
+ }
+}
+
+// CreateOptions returns creation options
+func (tc *TestCase) CreateOptions() *types.CreateOptions {
+ return &types.CreateOptions{
+ ID: tc.ID,
+ Source: tc.Source,
+ }
+}
+
+// UpdateOptions returns update options
+func (tc *TestCase) UpdateOptions() *types.UpdateOptions {
+ return &types.UpdateOptions{
+ ID: tc.ID,
+ Source: tc.UpdatedSource,
+ }
+}
+
+// UpdateInfoOptions returns update info options
+func (tc *TestCase) UpdateInfoOptions() *types.UpdateOptions {
+ return &types.UpdateOptions{
+ ID: tc.ID,
+ Info: &types.Info{
+ Label: "Updated via Info",
+ Tags: []string{"tag1", "info"},
+ Description: "Updated via info field",
+ },
+ }
+}
+
+// ListOptions returns list options
+func (tc *TestCase) ListOptions(withSource bool) *types.ListOptions {
+ return &types.ListOptions{
+ Source: withSource,
+ Tags: tc.Tags,
+ }
+}
+
+// AssertInfo verifies if the information is correct
+func (tc *TestCase) AssertInfo(info *types.Info) bool {
+ if info == nil {
+ return false
+ }
+ return info.ID == tc.ID &&
+ info.Type == types.TypeModel &&
+ info.Label == tc.Label &&
+ len(info.Tags) == len(tc.Tags) &&
+ info.Description == tc.Description &&
+ !info.Readonly &&
+ !info.Builtin &&
+ !info.Mtime.IsZero() &&
+ !info.Ctime.IsZero()
+}
+
+// AssertUpdatedInfo verifies if the updated information is correct
+func (tc *TestCase) AssertUpdatedInfo(info *types.Info) bool {
+ if info == nil {
+ return false
+ }
+ return info.ID == tc.ID &&
+ info.Type == types.TypeModel &&
+ info.Label == "Updated Label" &&
+ len(info.Tags) == 2 &&
+ info.Description == "Updated Description" &&
+ !info.Readonly &&
+ !info.Builtin &&
+ !info.Mtime.IsZero() &&
+ !info.Ctime.IsZero()
+}
+
+// AssertUpdatedInfoViaInfo verifies if the information updated via Info is correct
+func (tc *TestCase) AssertUpdatedInfoViaInfo(info *types.Info) bool {
+ if info == nil {
+ return false
+ }
+ return info.ID == tc.ID &&
+ info.Type == types.TypeModel &&
+ info.Label == "Updated via Info" &&
+ len(info.Tags) == 2 &&
+ info.Description == "Updated via info field" &&
+ !info.Readonly &&
+ !info.Builtin &&
+ !info.Mtime.IsZero() &&
+ !info.Ctime.IsZero()
+}
diff --git a/dsl/model/model.go b/dsl/model/model.go
new file mode 100644
index 00000000..d85ff785
--- /dev/null
+++ b/dsl/model/model.go
@@ -0,0 +1,256 @@
+package model
+
+import (
+ "context"
+ "fmt"
+
+ "github.com/yaoapp/gou/model"
+ "github.com/yaoapp/kun/exception"
+ "github.com/yaoapp/yao/dsl/types"
+)
+
+// YaoModel is the MCP client DSL manager
+type YaoModel struct {
+ root string // The relative path of the model DSL
+ fs types.IO // The file system IO interface
+ db types.IO // The database IO interface
+}
+
+// New returns a new connector DSL manager
+func New(root string, fs types.IO, db types.IO) types.Manager {
+ return &YaoModel{root: root, fs: fs, db: db}
+}
+
+// Loaded return all loaded DSLs
+func (m *YaoModel) Loaded(ctx context.Context) (map[string]*types.Info, error) {
+
+ infos := map[string]*types.Info{}
+ for id, mod := range model.Models {
+ meta := mod.GetMetaInfo()
+ infos[id] = &types.Info{
+ ID: id,
+ Path: mod.File,
+ Type: types.TypeModel,
+ Label: meta.Label,
+ Sort: meta.Sort,
+ Description: meta.Description,
+ Tags: meta.Tags,
+ Readonly: meta.Readonly,
+ Builtin: meta.Builtin,
+ Mtime: meta.Mtime,
+ Ctime: meta.Ctime,
+ }
+ }
+
+ return infos, nil
+}
+
+// Load will unload the DSL first, then load the DSL from DB or file system
+func (m *YaoModel) Load(ctx context.Context, options *types.LoadOptions) error {
+
+ if options == nil {
+ return fmt.Errorf("load options is required")
+ }
+
+ if options.ID == "" {
+ return fmt.Errorf("load options id is required")
+ }
+
+ var opts map[string]interface{}
+ if options.Options != nil {
+ opts = options.Options
+ }
+
+ var migration bool = false
+ if v, ok := opts["migration"]; ok {
+ migration = v.(bool)
+ }
+
+ var reset bool = false
+ if v, ok := opts["reset"]; ok {
+ reset = v.(bool)
+ }
+
+ var mod *model.Model
+ var err error
+
+ // Case 1: If Source is provided, use LoadSource
+ if options.Source != "" {
+ mod, err = model.LoadSourceSync([]byte(options.Source), options.ID, "")
+ if err != nil {
+ return err
+ }
+ } else if options.Path != "" && options.Store == "fs" {
+ // Case 2: If Path is provided and Store is fs, use LoadSync with Path
+ mod, err = model.LoadSync(options.Path, options.ID)
+ if err != nil {
+ return err
+ }
+ } else if options.Store == "db" {
+ // Case 3: If Store is db, get Source from DB first
+ if m.db == nil {
+ return fmt.Errorf("db io is required for store type db")
+ }
+ source, exists, err := m.db.Source(options.ID)
+ if err != nil {
+ return err
+ }
+ if !exists {
+ return fmt.Errorf("model %s not found in database", options.ID)
+ }
+ mod, err = model.LoadSourceSync([]byte(source), options.ID, "")
+ if err != nil {
+ return err
+ }
+ } else {
+ // Case 4: Default case, use LoadSync with ID
+ path := types.ToPath(types.TypeModel, options.ID)
+ mod, err = model.LoadSync(path, options.ID)
+ if err != nil {
+ return err
+ }
+ }
+
+ if migration || reset {
+ return mod.Migrate(reset, model.WithDonotInsertValues(true))
+ }
+
+ return nil
+}
+
+// Unload will unload the DSL from memory
+func (m *YaoModel) Unload(ctx context.Context, options *types.UnloadOptions) error {
+
+ if options == nil {
+ return fmt.Errorf("unload options is required")
+ }
+
+ if options.ID == "" {
+ return fmt.Errorf("unload options id is required")
+ }
+
+ var opts map[string]interface{}
+ if options.Options != nil {
+ opts = options.Options
+ }
+
+ var dropTable bool = false
+ if v, ok := opts["dropTable"]; ok {
+ dropTable = v.(bool)
+ }
+
+ // Try to get model, handle panic
+ var mod *model.Model
+ var err error
+ func() {
+ defer func() {
+ if r := recover(); r != nil {
+ if ex, ok := r.(exception.Exception); ok {
+ if ex.Message == fmt.Sprintf("Model:%s; not found", options.ID) {
+ err = fmt.Errorf("model %s not found", options.ID)
+ return
+ }
+ }
+ panic(r)
+ }
+ }()
+ mod = model.Select(options.ID)
+ }()
+
+ if err != nil {
+ return err
+ }
+
+ if mod == nil {
+ return fmt.Errorf("model %s not found", options.ID)
+ }
+
+ if dropTable {
+ return mod.DropTable()
+ }
+
+ return nil
+}
+
+// Reload will unload the DSL first, then reload the DSL from DB or file system
+func (m *YaoModel) Reload(ctx context.Context, options *types.ReloadOptions) error {
+
+ if options == nil {
+ return fmt.Errorf("reload options is required")
+ }
+
+ if options.ID == "" {
+ return fmt.Errorf("reload options id is required")
+ }
+
+ var opts map[string]interface{}
+ if options.Options != nil {
+ opts = options.Options
+ }
+
+ var migrate bool = false
+ if v, ok := opts["migrate"]; ok {
+ migrate = v.(bool)
+ }
+
+ var reset bool = false
+ if v, ok := opts["reset"]; ok {
+ reset = v.(bool)
+ }
+
+ var mod *model.Model
+ var err error
+
+ // Case 1: If Source is provided, use LoadSource
+ if options.Source != "" {
+ mod, err = model.LoadSourceSync([]byte(options.Source), options.ID, "")
+ if err != nil {
+ return err
+ }
+ } else if options.Path != "" && options.Store == "fs" {
+ // Case 2: If Path is provided and Store is fs, use LoadSync with Path
+ mod, err = model.LoadSync(options.Path, options.ID)
+ if err != nil {
+ return err
+ }
+ } else if options.Store == "db" {
+ // Case 3: If Store is db, get Source from DB first
+ if m.db == nil {
+ return fmt.Errorf("db io is required for store type db")
+ }
+ source, exists, err := m.db.Source(options.ID)
+ if err != nil {
+ return err
+ }
+ if !exists {
+ return fmt.Errorf("model %s not found in database", options.ID)
+ }
+ mod, err = model.LoadSourceSync([]byte(source), options.ID, "")
+ if err != nil {
+ return err
+ }
+ } else {
+ // Case 4: Default case, use LoadSync with ID
+ path := types.ToPath(types.TypeModel, options.ID)
+ mod, err = model.LoadSync(path, options.ID)
+ if err != nil {
+ return err
+ }
+ }
+
+ if migrate || reset {
+ return mod.Migrate(reset, model.WithDonotInsertValues(true))
+ }
+
+ return nil
+}
+
+// Validate will validate the DSL from source
+func (m *YaoModel) Validate(ctx context.Context, source string) (bool, []types.LintMessage) {
+ return true, []types.LintMessage{}
+}
+
+// Execute will execute the DSL
+func (m *YaoModel) Execute(ctx context.Context, id string, method string, args ...any) (any, error) {
+ return nil, fmt.Errorf("Not implemented")
+}
diff --git a/dsl/model/model_test.go b/dsl/model/model_test.go
new file mode 100644
index 00000000..f77151e4
--- /dev/null
+++ b/dsl/model/model_test.go
@@ -0,0 +1,350 @@
+package model
+
+import (
+ "context"
+ "testing"
+
+ "github.com/stretchr/testify/assert"
+ "github.com/yaoapp/yao/dsl/io"
+ "github.com/yaoapp/yao/dsl/types"
+)
+
+func TestModelLoad(t *testing.T) {
+ testCase := NewTestCase()
+ fsio := io.NewFS(types.TypeModel)
+ dbio := io.NewDB(types.TypeModel)
+ manager := New("", fsio, dbio)
+
+ // Test Load with nil options
+ err := manager.Load(context.Background(), nil)
+ assert.Error(t, err)
+ assert.Contains(t, err.Error(), "load options is required")
+
+ // Test Load with empty ID
+ err = manager.Load(context.Background(), &types.LoadOptions{})
+ assert.Error(t, err)
+ assert.Contains(t, err.Error(), "load options id is required")
+
+ // Test Load with Source
+ err = manager.Load(context.Background(), &types.LoadOptions{
+ ID: testCase.ID,
+ Source: testCase.Source,
+ })
+ assert.NoError(t, err)
+
+ // Test Load from filesystem
+ err = fsio.Create(&types.CreateOptions{
+ ID: testCase.ID + "_fs",
+ Source: testCase.Source,
+ })
+ assert.NoError(t, err)
+
+ path := types.ToPath(types.TypeModel, testCase.ID+"_fs")
+ err = manager.Load(context.Background(), &types.LoadOptions{
+ ID: testCase.ID + "_fs",
+ Path: path,
+ Store: "fs",
+ })
+ assert.NoError(t, err)
+
+ // Test Load from database
+ err = dbio.Create(&types.CreateOptions{
+ ID: testCase.ID + "_db",
+ Source: testCase.Source,
+ })
+ assert.NoError(t, err)
+
+ err = manager.Load(context.Background(), &types.LoadOptions{
+ ID: testCase.ID + "_db",
+ Store: "db",
+ })
+ assert.NoError(t, err)
+
+ // Test Load with default path (should use filesystem)
+ err = manager.Load(context.Background(), &types.LoadOptions{
+ ID: testCase.ID + "_fs",
+ })
+ assert.NoError(t, err)
+
+ // Test Load with migration
+ err = manager.Load(context.Background(), &types.LoadOptions{
+ ID: testCase.ID + "_fs",
+ Options: map[string]interface{}{"migration": true},
+ })
+ assert.NoError(t, err)
+
+ // Test Load with reset
+ err = manager.Load(context.Background(), &types.LoadOptions{
+ ID: testCase.ID + "_fs",
+ Options: map[string]interface{}{"reset": true},
+ })
+ assert.NoError(t, err)
+
+ // Clean up
+ err = fsio.Delete(testCase.ID + "_fs")
+ assert.NoError(t, err)
+ err = dbio.Delete(testCase.ID + "_db")
+ assert.NoError(t, err)
+ err = cleanTestData()
+ assert.NoError(t, err)
+}
+
+func TestModelLoadWithDB(t *testing.T) {
+ testCase := NewTestCase()
+ dbio := io.NewDB(types.TypeModel)
+ manager := New("", nil, dbio)
+
+ // Create model in DB first
+ err := dbio.Create(&types.CreateOptions{
+ ID: testCase.ID,
+ Source: testCase.Source,
+ })
+ assert.NoError(t, err)
+
+ // Test Load with Store=db
+ err = manager.Load(context.Background(), &types.LoadOptions{
+ ID: testCase.ID,
+ Store: "db",
+ })
+ assert.NoError(t, err)
+
+ // Test Load non-existent model from DB
+ err = manager.Load(context.Background(), &types.LoadOptions{
+ ID: "non-existent",
+ Store: "db",
+ })
+ assert.Error(t, err)
+ assert.Contains(t, err.Error(), "not found in database")
+
+ // Clean up
+ err = dbio.Delete(testCase.ID)
+ assert.NoError(t, err)
+ err = cleanTestData()
+ assert.NoError(t, err)
+}
+
+func TestModelUnload(t *testing.T) {
+ testCase := NewTestCase()
+ fsio := io.NewFS(types.TypeModel)
+ dbio := io.NewDB(types.TypeModel)
+ manager := New("", fsio, dbio)
+
+ // Test Unload with nil options
+ err := manager.Unload(context.Background(), nil)
+ assert.Error(t, err)
+ assert.Contains(t, err.Error(), "unload options is required")
+
+ // Test Unload with empty ID
+ err = manager.Unload(context.Background(), &types.UnloadOptions{})
+ assert.Error(t, err)
+ assert.Contains(t, err.Error(), "unload options id is required")
+
+ // Test Unload non-existent model
+ err = manager.Unload(context.Background(), &types.UnloadOptions{
+ ID: "non-existent",
+ })
+ assert.Error(t, err)
+ assert.Contains(t, err.Error(), "model non-existent not found")
+
+ // Test Unload from filesystem
+ err = fsio.Create(&types.CreateOptions{
+ ID: testCase.ID + "_fs",
+ Source: testCase.Source,
+ })
+ assert.NoError(t, err)
+
+ err = manager.Load(context.Background(), &types.LoadOptions{
+ ID: testCase.ID + "_fs",
+ Store: "fs",
+ })
+ assert.NoError(t, err)
+
+ err = manager.Unload(context.Background(), &types.UnloadOptions{
+ ID: testCase.ID + "_fs",
+ Options: map[string]interface{}{"dropTable": true},
+ })
+ assert.NoError(t, err)
+
+ // Test Unload from database
+ err = dbio.Create(&types.CreateOptions{
+ ID: testCase.ID + "_db",
+ Source: testCase.Source,
+ })
+ assert.NoError(t, err)
+
+ err = manager.Load(context.Background(), &types.LoadOptions{
+ ID: testCase.ID + "_db",
+ Store: "db",
+ })
+ assert.NoError(t, err)
+
+ err = manager.Unload(context.Background(), &types.UnloadOptions{
+ ID: testCase.ID + "_db",
+ Options: map[string]interface{}{"dropTable": true},
+ })
+ assert.NoError(t, err)
+
+ // Clean up
+ err = fsio.Delete(testCase.ID + "_fs")
+ assert.NoError(t, err)
+ err = dbio.Delete(testCase.ID + "_db")
+ assert.NoError(t, err)
+ err = cleanTestData()
+ assert.NoError(t, err)
+}
+
+func TestModelReload(t *testing.T) {
+ testCase := NewTestCase()
+ fsio := io.NewFS(types.TypeModel)
+ dbio := io.NewDB(types.TypeModel)
+ manager := New("", fsio, dbio)
+
+ // Test Reload with nil options
+ err := manager.Reload(context.Background(), nil)
+ assert.Error(t, err)
+ assert.Contains(t, err.Error(), "reload options is required")
+
+ // Test Reload with empty ID
+ err = manager.Reload(context.Background(), &types.ReloadOptions{})
+ assert.Error(t, err)
+ assert.Contains(t, err.Error(), "reload options id is required")
+
+ // Test Reload from filesystem
+ err = fsio.Create(&types.CreateOptions{
+ ID: testCase.ID + "_fs",
+ Source: testCase.Source,
+ })
+ assert.NoError(t, err)
+
+ err = manager.Load(context.Background(), &types.LoadOptions{
+ ID: testCase.ID + "_fs",
+ Store: "fs",
+ })
+ assert.NoError(t, err)
+
+ err = manager.Reload(context.Background(), &types.ReloadOptions{
+ ID: testCase.ID + "_fs",
+ Store: "fs",
+ Options: map[string]interface{}{"migrate": true},
+ })
+ assert.NoError(t, err)
+
+ // Test Reload from database
+ err = dbio.Create(&types.CreateOptions{
+ ID: testCase.ID + "_db",
+ Source: testCase.Source,
+ })
+ assert.NoError(t, err)
+
+ err = manager.Load(context.Background(), &types.LoadOptions{
+ ID: testCase.ID + "_db",
+ Store: "db",
+ })
+ assert.NoError(t, err)
+
+ err = manager.Reload(context.Background(), &types.ReloadOptions{
+ ID: testCase.ID + "_db",
+ Store: "db",
+ Options: map[string]interface{}{"migrate": true},
+ })
+ assert.NoError(t, err)
+
+ // Clean up
+ err = fsio.Delete(testCase.ID + "_fs")
+ assert.NoError(t, err)
+ err = dbio.Delete(testCase.ID + "_db")
+ assert.NoError(t, err)
+ err = cleanTestData()
+ assert.NoError(t, err)
+}
+
+func TestModelLoaded(t *testing.T) {
+ testCase := NewTestCase()
+ fsio := io.NewFS(types.TypeModel)
+ dbio := io.NewDB(types.TypeModel)
+ manager := New("", fsio, dbio)
+
+ // Test Load from filesystem
+ err := fsio.Create(&types.CreateOptions{
+ ID: testCase.ID + "_fs",
+ Source: testCase.Source,
+ })
+ assert.NoError(t, err)
+
+ err = manager.Load(context.Background(), &types.LoadOptions{
+ ID: testCase.ID + "_fs",
+ Store: "fs",
+ })
+ assert.NoError(t, err)
+
+ // Test Load from database
+ err = dbio.Create(&types.CreateOptions{
+ ID: testCase.ID + "_db",
+ Source: testCase.Source,
+ })
+ assert.NoError(t, err)
+
+ err = manager.Load(context.Background(), &types.LoadOptions{
+ ID: testCase.ID + "_db",
+ Store: "db",
+ })
+ assert.NoError(t, err)
+
+ // Test Loaded
+ infos, err := manager.Loaded(context.Background())
+ assert.NoError(t, err)
+ assert.NotNil(t, infos)
+ assert.Contains(t, infos, testCase.ID+"_fs")
+ assert.Contains(t, infos, testCase.ID+"_db")
+
+ // Verify metadata fields for filesystem model
+ fsInfo := infos[testCase.ID+"_fs"]
+ assert.Equal(t, testCase.ID+"_fs", fsInfo.ID)
+ assert.Equal(t, types.TypeModel, fsInfo.Type)
+ assert.Equal(t, testCase.Label, fsInfo.Label)
+ assert.Equal(t, testCase.Description, fsInfo.Description)
+ assert.ElementsMatch(t, testCase.Tags, fsInfo.Tags)
+ assert.False(t, fsInfo.Readonly)
+ assert.False(t, fsInfo.Builtin)
+ // assert.False(t, fsInfo.Mtime.IsZero())
+ // assert.False(t, fsInfo.Ctime.IsZero())
+
+ // Verify metadata fields for database model
+ dbInfo := infos[testCase.ID+"_db"]
+ assert.Equal(t, testCase.ID+"_db", dbInfo.ID)
+ assert.Equal(t, types.TypeModel, dbInfo.Type)
+ assert.Equal(t, testCase.Label, dbInfo.Label)
+ assert.Equal(t, testCase.Description, dbInfo.Description)
+ assert.ElementsMatch(t, testCase.Tags, dbInfo.Tags)
+ assert.False(t, dbInfo.Readonly)
+ assert.False(t, dbInfo.Builtin)
+ // assert.False(t, dbInfo.Mtime.IsZero())
+ // assert.False(t, dbInfo.Ctime.IsZero())
+
+ // Clean up
+ err = fsio.Delete(testCase.ID + "_fs")
+ assert.NoError(t, err)
+ err = dbio.Delete(testCase.ID + "_db")
+ assert.NoError(t, err)
+ err = cleanTestData()
+ assert.NoError(t, err)
+}
+
+func TestModelValidate(t *testing.T) {
+ manager := New("", nil, nil)
+
+ // Test Validate
+ valid, messages := manager.Validate(context.Background(), "test source")
+ assert.True(t, valid)
+ assert.Empty(t, messages)
+}
+
+func TestModelExecute(t *testing.T) {
+ manager := New("", nil, nil)
+
+ // Test Execute
+ result, err := manager.Execute(context.Background(), "test_id", "test_method")
+ assert.Error(t, err)
+ assert.Contains(t, err.Error(), "Not implemented")
+ assert.Nil(t, result)
+}
diff --git a/dsl/types/interfaces.go b/dsl/types/interfaces.go
new file mode 100644
index 00000000..09d3a254
--- /dev/null
+++ b/dsl/types/interfaces.go
@@ -0,0 +1,62 @@
+package types
+
+import (
+ "context"
+)
+
+// DSL interface
+type DSL interface {
+ Inspect(ctx context.Context, id string) (*Info, error) // Inspect DSL
+ Path(ctx context.Context, id string) (string, error) // Get Path by id, ( If the DSL is saved as file, return the file path )
+ Source(ctx context.Context, id string) (string, error) // Get Source by id
+ List(ctx context.Context, opts *ListOptions) ([]*Info, error) // List All DSLs including unloaded/error DSLs
+ Exists(ctx context.Context, id string) (bool, error) // Check if the DSL exists
+
+ // DSL Operations
+ Create(ctx context.Context, options *CreateOptions) error // Create DSL, Create will unload the DSL first, then create the DSL to DB
+ Update(ctx context.Context, options *UpdateOptions) error // Update DSL, Update will unload the DSL first, then update the DSL, if update info only, will not unload the DSL
+ Delete(ctx context.Context, options *DeleteOptions) error // Delete DSL, Delete will unload the DSL first, then delete the DSL file
+
+ // Load manager
+ Load(ctx context.Context, options *LoadOptions) error // Load DSL, Load will unload the DSL first, then load the DSL from DB or file system
+ Reload(ctx context.Context, options *ReloadOptions) error // Reload DSL, Reload will unload the DSL first, then reload the DSL from DB or file system
+ Unload(ctx context.Context, options *UnloadOptions) error // Unload DSL, Unload will unload the DSL from memory
+
+ // Execute
+ Execute(ctx context.Context, id string, method string, args ...any) (any, error) // Execute DSL (Some DSLs can be executed)
+
+ // Validate
+ Validate(ctx context.Context, source string) (bool, []LintMessage) // Validate DSL, Validate will validate the DSL from source
+}
+
+// Manager interface
+type Manager interface {
+ // Get all loaded DSLs
+ Loaded(ctx context.Context) (map[string]*Info, error) // Get all loaded DSLs
+
+ // Load DSL, Load will unload the DSL first, then load the DSL from DB or file system
+ Load(ctx context.Context, options *LoadOptions) error
+
+ // Unload DSL, Unload will unload the DSL from memory
+ Unload(ctx context.Context, options *UnloadOptions) error
+
+ // Reload DSL, Reload will unload the DSL first, then reload the DSL from DB or file system
+ Reload(ctx context.Context, options *ReloadOptions) error
+
+ // Validate DSL, Validate will validate the DSL from source
+ Validate(ctx context.Context, source string) (bool, []LintMessage)
+
+ // Execute DSL (Some DSLs can be executed)
+ Execute(ctx context.Context, id string, method string, args ...any) (any, error)
+}
+
+// IO interface
+type IO interface {
+ Inspect(id string) (*Info, bool, error)
+ Source(id string) (string, bool, error)
+ List(options *ListOptions) ([]*Info, error)
+ Create(options *CreateOptions) error
+ Update(options *UpdateOptions) error
+ Delete(id string) error
+ Exists(id string) (bool, error)
+}
diff --git a/dsl/types/types.go b/dsl/types/types.go
new file mode 100644
index 00000000..fc70d298
--- /dev/null
+++ b/dsl/types/types.go
@@ -0,0 +1,170 @@
+package types
+
+import (
+ "time"
+)
+
+// Type for DSL
+type Type string
+
+// Status for DSL
+type Status string
+
+// StoreType for DSL store
+type StoreType string
+
+// LintSeverity for DSL linter
+type LintSeverity string
+
+// StoreType for DSL store
+const (
+ StoreTypeDB StoreType = "db"
+ StoreTypeFile StoreType = "file"
+)
+
+// Status for DSL
+const (
+ StatusLoading Status = "loading"
+ StatusLoaded Status = "loaded"
+ StatusError Status = "error"
+)
+
+// LintSeverity for DSL linter
+const (
+ LintSeverityError LintSeverity = "error"
+ LintSeverityWarning LintSeverity = "warning"
+ LintSeverityInfo LintSeverity = "info"
+ LintSeverityHint LintSeverity = "hint"
+)
+
+// Type for DSL
+const (
+ // TypeModel for model
+ TypeModel Type = "model"
+ // TypeAPI for api
+ TypeAPI Type = "api"
+ // TypeConnector for connector
+ TypeConnector Type = "connector"
+ // TypeMCPServer for MCP server
+ TypeMCPServer Type = "mcp-server"
+ // TypeMCPClient for MCP client
+ TypeMCPClient Type = "mcp-client"
+ // TypeStore for store
+ TypeStore Type = "store"
+ // TypeSchedule for schedule
+ TypeSchedule Type = "schedule"
+
+ // TypeTable for table
+ TypeTable Type = "table"
+ // TypeForm for form
+ TypeForm Type = "form"
+ // TypeList for list
+ TypeList Type = "list"
+ // TypeChart for chart
+ TypeChart Type = "chart"
+ // TypeDashboard for dashboard
+ TypeDashboard Type = "dashboard"
+
+ // TypeFlow for flow
+ TypeFlow Type = "flow"
+ // TypePipe for pipe
+ TypePipe Type = "pipe"
+ // TypeAIGC for aigc
+ TypeAIGC Type = "aigc"
+
+ // TypeUnknown for unknown
+ TypeUnknown Type = "unknown"
+)
+
+// Info for DSL
+type Info struct {
+ ID string `json:"id" yaml:"id"` // Unique identifier for the DSL instance
+
+ Type Type `json:"type" yaml:"type"` // DSL type (model, api, table, form, list, chart, dashboard, etc.)
+ Label string `json:"label,omitempty" yaml:"label,omitempty"` // Display name for the DSL
+ Description string `json:"description,omitempty" yaml:"description,omitempty"` // Detailed description of the DSL
+ Tags []string `json:"tags,omitempty" yaml:"tags,omitempty"` // Tags for categorization and filtering
+
+ Sort int `json:"sort,omitempty" yaml:"sort,omitempty"` // Sort order for display, default is 0
+ Path string `json:"path" yaml:"path"` // File system path or identifier
+ Store StoreType `json:"store" yaml:"store"` // Storage type (file or database)
+
+ Readonly bool `json:"readonly,omitempty" yaml:"readonly,omitempty"` // Whether the DSL is readonly
+ Builtin bool `json:"built_in,omitempty" yaml:"built_in,omitempty"` // Whether this is a built-in DSL
+
+ Status Status `json:"status,omitempty" yaml:"status,omitempty"` // Current status (loading, loaded, error)
+ Mtime time.Time `json:"mtime" yaml:"mtime"` // Last modification timestamp
+ Ctime time.Time `json:"ctime" yaml:"ctime"` // Creation timestamp
+
+ Source string `json:"source,omitempty" yaml:"source,omitempty"` // Source content, only available when explicitly requested
+}
+
+// ListOptions for DSL list
+type ListOptions struct {
+ Sort string
+ Order string
+ Store StoreType
+ Source bool
+ Tags []string
+ Pattern string // Pattern for file name matching, e.g. "test_*" for test files
+}
+
+// CreateOptions for DSL upsert
+type CreateOptions struct {
+ ID string // ID is the id of the DSL, if not provided, a new id will be generated, required
+ Source string // Source is the source of the DSL, if not provided, the DSL will be loaded from the file system
+ Store StoreType // Store is the store type of the DSL, if not provided, the DSL will be loaded from the file system
+ Load map[string]interface{} // LoadOptions is the options for the DSL, if not provided, the DSL will be loaded from the file system
+}
+
+// UpdateOptions for DSL upsert
+type UpdateOptions struct {
+ ID string // ID is the id of the DSL, if not provided, a new id will be generated, required
+ Info *Info // Info is the info of the DSL, if not provided, the DSL will be loaded from the file system, one of info or source must be provided
+ Source string // Source is the source of the DSL, if not provided, the DSL will be loaded from the file system, one of info or source must be provided
+ Reload map[string]interface{} // ReloadOptions is the options for the DSL, if not provided, the DSL will be loaded from the file system
+}
+
+// DeleteOptions for DSL delete options
+type DeleteOptions struct {
+ ID string // ID is the id of the DSL, if not provided, a new id will be generated, required
+ Path string // Path is the path of the DSL, if not provided, the DSL will be loaded from the file system
+ Options map[string]interface{} // Options is the options for the DSL, if not provided, the DSL will be loaded from the file system
+}
+
+// LoadOptions for DSL load options
+type LoadOptions struct {
+ ID string
+ Path string
+ Source string
+ Store StoreType
+ Options map[string]interface{}
+}
+
+// UnloadOptions for DSL unload options
+type UnloadOptions struct {
+ ID string
+ Path string
+ Store StoreType
+ Options map[string]interface{}
+}
+
+// ReloadOptions for DSL reload options
+type ReloadOptions struct {
+ ID string
+ Path string
+ Source string
+ Store StoreType
+ Options map[string]interface{}
+}
+
+// LintMessage for DSL linter
+type LintMessage struct {
+ File string
+ Line int
+ Column int
+ Message string
+ Severity LintSeverity
+}
+
+var lintMessages []LintMessage
diff --git a/dsl/types/utils.go b/dsl/types/utils.go
new file mode 100644
index 00000000..545ab0b4
--- /dev/null
+++ b/dsl/types/utils.go
@@ -0,0 +1,194 @@
+package types
+
+import (
+ "os"
+ "path/filepath"
+ "strings"
+)
+
+// ToPath convert id to path
+func ToPath(typ Type, id string) string {
+
+ // Get the root path and the extensions of the type
+ root, exts := TypeRootAndExts(typ)
+ ext := ".yao"
+ if len(exts) > 0 {
+ ext = exts[0]
+ }
+
+ // 1. Replace all . to /
+ path := strings.ReplaceAll(id, ".", string(os.PathSeparator))
+ // 2. Replace all __ to .
+ path = strings.ReplaceAll(path, "__", ".")
+ // 3. Join the root path
+ return filepath.Join(root, path) + ext
+}
+
+// ToID convert file path to id
+func ToID(path string) string {
+ typ := DetectType(path)
+ return WithTypeToID(typ, path)
+}
+
+// WithTypeToID convert file path to id
+func WithTypeToID(typ Type, path string) string {
+
+ // Get the root path and the extensions of the type
+ root, exts := TypeRootAndExts(typ)
+
+ // 0. if the first character is /, remove it
+ if strings.HasPrefix(path, string(os.PathSeparator)) {
+ path = strings.TrimPrefix(path, string(os.PathSeparator))
+ }
+
+ // 1. Split the path by /
+ parts := strings.Split(path, string(os.PathSeparator))
+ if len(parts) > 0 && parts[0] == root {
+ // Skip the root path
+ parts = parts[1:]
+
+ // Remove the extension only if parts is not empty
+ if len(parts) > 0 {
+ last := parts[len(parts)-1]
+ for _, ext := range exts {
+ if strings.HasSuffix(last, ext) {
+ parts[len(parts)-1] = strings.TrimSuffix(last, ext)
+ }
+ }
+ }
+
+ // Join the parts
+ path = strings.Join(parts, string(os.PathSeparator))
+ }
+
+ // 2. Replace All . to __
+ path = strings.ReplaceAll(path, ".", "__")
+
+ // 3. Replace all / to .
+ path = strings.ReplaceAll(path, string(os.PathSeparator), ".")
+
+ return path
+}
+
+// DetectType detect the type by the file path
+func DetectType(path string) Type {
+ parts := strings.Split(path, string(os.PathSeparator))
+ if len(parts) < 2 {
+ return TypeUnknown
+ }
+
+ root := parts[0]
+ last := parts[len(parts)-1]
+ extParts := strings.Split(last, ".")
+ if len(extParts) < 2 {
+ return TypeUnknown
+ }
+ ext := extParts[len(extParts)-2]
+
+ // Detect the type by the extension
+ switch ext {
+ case "http":
+ return TypeAPI
+ case "sch":
+ return TypeSchedule
+ case "table":
+ return TypeTable
+ case "form":
+ return TypeForm
+ case "list":
+ return TypeList
+ case "chart":
+ return TypeChart
+ case "dash":
+ return TypeDashboard
+ case "flow":
+ return TypeFlow
+ case "pipe":
+ return TypePipe
+ case "ai":
+ return TypeAIGC
+ case "mod":
+ return TypeModel
+ case "conn":
+ return TypeConnector
+ case "lru", "redis", "mongo", "badger":
+ return TypeStore
+ }
+
+ // Detect the type by the root path
+ switch root {
+ case "models":
+ return TypeModel
+ case "connectors":
+ return TypeConnector
+ case "mcps":
+ return TypeMCPClient
+ case "apis":
+ if ext == "http" {
+ return TypeAPI
+ }
+ if ext == "mcp" {
+ return TypeMCPServer
+ }
+ return TypeUnknown
+ case "schedules":
+ return TypeSchedule
+ case "tables":
+ return TypeTable
+ case "forms":
+ return TypeForm
+ case "lists":
+ return TypeList
+ case "charts":
+ return TypeChart
+ case "dashboards":
+ return TypeDashboard
+ case "flows":
+ return TypeFlow
+ case "pipes":
+ return TypePipe
+ case "aigcs":
+ return TypeAIGC
+ case "stores":
+ return TypeStore
+ default:
+ return TypeUnknown
+ }
+
+}
+
+// TypeRootAndExts return the root path and the extensions of the type
+func TypeRootAndExts(typ Type) (string, []string) {
+ switch typ {
+ case TypeModel:
+ return "models", []string{".mod.yao", ".mod.jsonc", ".mod.json"}
+ case TypeConnector:
+ return "connectors", []string{".conn.yao", ".conn.jsonc", ".conn.json"}
+ case TypeMCPClient, TypeMCPServer:
+ return "mcps", []string{".mcp.yao", ".mcp.jsonc", ".mcp.json"}
+ case TypeAPI:
+ return "apis", []string{".http.yao", ".http.jsonc", ".http.json"}
+ case TypeSchedule:
+ return "schedules", []string{".sch.yao", ".sch.jsonc", ".sch.json"}
+ case TypeTable:
+ return "tables", []string{".table.yao", ".table.jsonc", ".table.json"}
+ case TypeForm:
+ return "forms", []string{".form.yao", ".form.jsonc", ".form.json"}
+ case TypeList:
+ return "lists", []string{".list.yao", ".list.jsonc", ".list.json"}
+ case TypeChart:
+ return "charts", []string{".chart.yao", ".chart.jsonc", ".chart.json"}
+ case TypeDashboard:
+ return "dashboards", []string{".dash.yao", ".dash.jsonc", ".dash.json"}
+ case TypeFlow:
+ return "flows", []string{".flow.yao", ".flow.jsonc", ".flow.json"}
+ case TypePipe:
+ return "pipes", []string{".pipe.yao", ".pipe.jsonc", ".pipe.json"}
+ case TypeAIGC:
+ return "aigcs", []string{".ai.yao", ".ai.jsonc", ".ai.json"}
+ case TypeStore:
+ return "stores", []string{".lru.yao", ".redis.yao", ".mongo.yao", ".badger.yao", ".store.yao", ".store.jsonc", ".store.json"}
+ default:
+ return "", []string{}
+ }
+}
diff --git a/dsl/types/utils_test.go b/dsl/types/utils_test.go
new file mode 100644
index 00000000..f3659e41
--- /dev/null
+++ b/dsl/types/utils_test.go
@@ -0,0 +1,601 @@
+package types
+
+import (
+ "os"
+ "path/filepath"
+ "testing"
+)
+
+func TestToPath(t *testing.T) {
+ tests := []struct {
+ name string
+ typ Type
+ id string
+ want string
+ }{
+ {
+ name: "Model with dots and underscores",
+ typ: TypeModel,
+ id: "user__profile.admin",
+ want: filepath.Join("models", "user.profile", "admin.mod.yao"),
+ },
+ {
+ name: "API with simple id",
+ typ: TypeAPI,
+ id: "user.login",
+ want: filepath.Join("apis", "user", "login.http.yao"),
+ },
+ {
+ name: "Unknown type (defaults to .yao)",
+ typ: TypeUnknown,
+ id: "test",
+ want: filepath.Join("", "test.yao"),
+ },
+ {
+ name: "Connector with nested path",
+ typ: TypeConnector,
+ id: "database.mysql__config",
+ want: filepath.Join("connectors", "database", "mysql.config.conn.yao"),
+ },
+ {
+ name: "Type with no extensions",
+ typ: Type("unknown"),
+ id: "test",
+ want: filepath.Join("", "test.yao"),
+ },
+ {
+ name: "Type with empty extensions",
+ typ: Type(""),
+ id: "test",
+ want: filepath.Join("", "test.yao"),
+ },
+ }
+
+ for _, tt := range tests {
+ t.Run(tt.name, func(t *testing.T) {
+ if got := ToPath(tt.typ, tt.id); got != tt.want {
+ t.Errorf("ToPath() = %v, want %v", got, tt.want)
+ }
+ })
+ }
+}
+
+func TestToID(t *testing.T) {
+ tests := []struct {
+ name string
+ path string
+ want string
+ }{
+ {
+ name: "Model file path",
+ path: filepath.Join("models", "user.mod.yao"),
+ want: "user",
+ },
+ {
+ name: "API file path",
+ path: filepath.Join("apis", "user", "login.http.yao"),
+ want: "user.login",
+ },
+ {
+ name: "Form file path with dots",
+ path: filepath.Join("forms", "user.profile", "edit.form.yao"),
+ want: "user__profile.edit",
+ },
+ }
+
+ for _, tt := range tests {
+ t.Run(tt.name, func(t *testing.T) {
+ if got := ToID(tt.path); got != tt.want {
+ t.Errorf("ToID() = %v, want %v", got, tt.want)
+ }
+ })
+ }
+}
+
+func TestWithTypeToID(t *testing.T) {
+ tests := []struct {
+ name string
+ typ Type
+ path string
+ want string
+ }{
+ {
+ name: "Path with leading separator",
+ typ: TypeModel,
+ path: string(os.PathSeparator) + filepath.Join("models", "user.mod.yao"),
+ want: "user",
+ },
+ {
+ name: "Path without leading separator",
+ typ: TypeModel,
+ path: filepath.Join("models", "user.mod.yao"),
+ want: "user",
+ },
+ {
+ name: "Path with root not matching",
+ typ: TypeModel,
+ path: filepath.Join("other", "user.mod.yao"),
+ want: "other.user__mod__yao",
+ },
+ {
+ name: "Nested path with dots",
+ typ: TypeForm,
+ path: filepath.Join("forms", "user.profile", "edit.form.yao"),
+ want: "user__profile.edit",
+ },
+ {
+ name: "Multiple extensions matching",
+ typ: TypeModel,
+ path: filepath.Join("models", "user.mod.jsonc"),
+ want: "user",
+ },
+ {
+ name: "No extension matching",
+ typ: TypeModel,
+ path: filepath.Join("models", "user.txt"),
+ want: "user__txt",
+ },
+ {
+ name: "Path with single part",
+ typ: TypeModel,
+ path: "user.mod.yao",
+ want: "user__mod__yao",
+ },
+ {
+ name: "Store type with multiple extensions",
+ typ: TypeStore,
+ path: filepath.Join("stores", "cache.redis.yao"),
+ want: "cache",
+ },
+ {
+ name: "Empty path",
+ typ: TypeModel,
+ path: "",
+ want: "",
+ },
+ {
+ name: "Path with root matching but no parts",
+ typ: TypeModel,
+ path: "models",
+ want: "",
+ },
+ }
+
+ for _, tt := range tests {
+ t.Run(tt.name, func(t *testing.T) {
+ if got := WithTypeToID(tt.typ, tt.path); got != tt.want {
+ t.Errorf("WithTypeToID() = %v, want %v", got, tt.want)
+ }
+ })
+ }
+}
+
+func TestDetectType(t *testing.T) {
+ tests := []struct {
+ name string
+ path string
+ want Type
+ }{
+ // Test by extension
+ {
+ name: "HTTP API",
+ path: filepath.Join("apis", "user.http.yao"),
+ want: TypeAPI,
+ },
+ {
+ name: "Schedule",
+ path: filepath.Join("schedules", "backup.sch.yao"),
+ want: TypeSchedule,
+ },
+ {
+ name: "Table",
+ path: filepath.Join("tables", "user.table.yao"),
+ want: TypeTable,
+ },
+ {
+ name: "Form",
+ path: filepath.Join("forms", "user.form.yao"),
+ want: TypeForm,
+ },
+ {
+ name: "List",
+ path: filepath.Join("lists", "user.list.yao"),
+ want: TypeList,
+ },
+ {
+ name: "Chart",
+ path: filepath.Join("charts", "sales.chart.yao"),
+ want: TypeChart,
+ },
+ {
+ name: "Dashboard",
+ path: filepath.Join("dashboards", "main.dash.yao"),
+ want: TypeDashboard,
+ },
+ {
+ name: "Flow",
+ path: filepath.Join("flows", "process.flow.yao"),
+ want: TypeFlow,
+ },
+ {
+ name: "Pipe",
+ path: filepath.Join("pipes", "transform.pipe.yao"),
+ want: TypePipe,
+ },
+ {
+ name: "AIGC",
+ path: filepath.Join("aigcs", "chat.ai.yao"),
+ want: TypeAIGC,
+ },
+ {
+ name: "Model by extension",
+ path: filepath.Join("models", "user.mod.yao"),
+ want: TypeModel,
+ },
+ {
+ name: "Connector by extension",
+ path: filepath.Join("connectors", "db.conn.yao"),
+ want: TypeConnector,
+ },
+ {
+ name: "Store LRU",
+ path: filepath.Join("stores", "cache.lru.yao"),
+ want: TypeStore,
+ },
+ {
+ name: "LRU extension in non-stores directory",
+ path: filepath.Join("other", "cache.lru.yao"),
+ want: TypeStore,
+ },
+ {
+ name: "Store Redis",
+ path: filepath.Join("stores", "cache.redis.yao"),
+ want: TypeStore,
+ },
+ {
+ name: "Store Mongo",
+ path: filepath.Join("stores", "cache.mongo.yao"),
+ want: TypeStore,
+ },
+ {
+ name: "Store Badger",
+ path: filepath.Join("stores", "cache.badger.yao"),
+ want: TypeStore,
+ },
+ {
+ name: "Store by extension",
+ path: filepath.Join("stores", "cache.store.yao"),
+ want: TypeStore,
+ },
+ {
+ name: "MCP extension in non-apis directory",
+ path: filepath.Join("other", "service.mcp.yao"),
+ want: TypeUnknown,
+ },
+ // Test by root path
+ {
+ name: "Model by root",
+ path: filepath.Join("models", "user.yao"),
+ want: TypeModel,
+ },
+ {
+ name: "Connector by root",
+ path: filepath.Join("connectors", "db.yao"),
+ want: TypeConnector,
+ },
+ {
+ name: "MCP Client",
+ path: filepath.Join("mcps", "client.yao"),
+ want: TypeMCPClient,
+ },
+ {
+ name: "API by root with http ext",
+ path: filepath.Join("apis", "user.http.yao"),
+ want: TypeAPI,
+ },
+ {
+ name: "MCP Server",
+ path: filepath.Join("apis", "server.mcp.yao"),
+ want: TypeMCPServer,
+ },
+ {
+ name: "MCP by extension",
+ path: filepath.Join("mcps", "client.mcp.yao"),
+ want: TypeMCPClient,
+ },
+ {
+ name: "API by root unknown ext",
+ path: filepath.Join("apis", "user.unknown.yao"),
+ want: TypeUnknown,
+ },
+ {
+ name: "Schedule by root",
+ path: filepath.Join("schedules", "backup.yao"),
+ want: TypeSchedule,
+ },
+ {
+ name: "Table by root",
+ path: filepath.Join("tables", "user.yao"),
+ want: TypeTable,
+ },
+ {
+ name: "Form by root",
+ path: filepath.Join("forms", "user.yao"),
+ want: TypeForm,
+ },
+ {
+ name: "List by root",
+ path: filepath.Join("lists", "user.yao"),
+ want: TypeList,
+ },
+ {
+ name: "Chart by root",
+ path: filepath.Join("charts", "sales.yao"),
+ want: TypeChart,
+ },
+ {
+ name: "Dashboard by root",
+ path: filepath.Join("dashboards", "main.yao"),
+ want: TypeDashboard,
+ },
+ {
+ name: "Flow by root",
+ path: filepath.Join("flows", "process.yao"),
+ want: TypeFlow,
+ },
+ {
+ name: "Pipe by root",
+ path: filepath.Join("pipes", "transform.yao"),
+ want: TypePipe,
+ },
+ {
+ name: "AIGC by root",
+ path: filepath.Join("aigcs", "chat.yao"),
+ want: TypeAIGC,
+ },
+ {
+ name: "Store by root",
+ path: filepath.Join("stores", "cache.yao"),
+ want: TypeStore,
+ },
+ {
+ name: "Unknown root",
+ path: filepath.Join("unknown", "file.yao"),
+ want: TypeUnknown,
+ },
+ // Edge cases
+ {
+ name: "Path with less than 2 parts",
+ path: "file.yao",
+ want: TypeUnknown,
+ },
+ {
+ name: "File without extension",
+ path: filepath.Join("models", "user"),
+ want: TypeUnknown,
+ },
+ {
+ name: "File with single dot",
+ path: filepath.Join("models", "user.yao"),
+ want: TypeModel,
+ },
+ {
+ name: "Empty path",
+ path: "",
+ want: TypeUnknown,
+ },
+ {
+ name: "Path with single component",
+ path: "file",
+ want: TypeUnknown,
+ },
+ {
+ name: "File with extension parts length < 2",
+ path: filepath.Join("models", "user"),
+ want: TypeUnknown,
+ },
+ {
+ name: "File with extension matching filename",
+ path: filepath.Join("models", "http.yao"),
+ want: TypeAPI,
+ },
+ {
+ name: "File with extension matching filename - sch",
+ path: filepath.Join("schedules", "sch.yao"),
+ want: TypeSchedule,
+ },
+ }
+
+ for _, tt := range tests {
+ t.Run(tt.name, func(t *testing.T) {
+ if got := DetectType(tt.path); got != tt.want {
+ t.Errorf("DetectType() = %v, want %v", got, tt.want)
+ }
+ })
+ }
+}
+
+func TestTypeRootAndExts(t *testing.T) {
+ tests := []struct {
+ name string
+ typ Type
+ wantRoot string
+ wantExts []string
+ }{
+ {
+ name: "Model",
+ typ: TypeModel,
+ wantRoot: "models",
+ wantExts: []string{".mod.yao", ".mod.jsonc", ".mod.json"},
+ },
+ {
+ name: "Connector",
+ typ: TypeConnector,
+ wantRoot: "connectors",
+ wantExts: []string{".conn.yao", ".conn.jsonc", ".conn.json"},
+ },
+ {
+ name: "MCP Client",
+ typ: TypeMCPClient,
+ wantRoot: "mcps",
+ wantExts: []string{".mcp.yao", ".mcp.jsonc", ".mcp.json"},
+ },
+ {
+ name: "MCP Server",
+ typ: TypeMCPServer,
+ wantRoot: "mcps",
+ wantExts: []string{".mcp.yao", ".mcp.jsonc", ".mcp.json"},
+ },
+ {
+ name: "API",
+ typ: TypeAPI,
+ wantRoot: "apis",
+ wantExts: []string{".http.yao", ".http.jsonc", ".http.json"},
+ },
+ {
+ name: "Schedule",
+ typ: TypeSchedule,
+ wantRoot: "schedules",
+ wantExts: []string{".sch.yao", ".sch.jsonc", ".sch.json"},
+ },
+ {
+ name: "Table",
+ typ: TypeTable,
+ wantRoot: "tables",
+ wantExts: []string{".table.yao", ".table.jsonc", ".table.json"},
+ },
+ {
+ name: "Form",
+ typ: TypeForm,
+ wantRoot: "forms",
+ wantExts: []string{".form.yao", ".form.jsonc", ".form.json"},
+ },
+ {
+ name: "List",
+ typ: TypeList,
+ wantRoot: "lists",
+ wantExts: []string{".list.yao", ".list.jsonc", ".list.json"},
+ },
+ {
+ name: "Chart",
+ typ: TypeChart,
+ wantRoot: "charts",
+ wantExts: []string{".chart.yao", ".chart.jsonc", ".chart.json"},
+ },
+ {
+ name: "Dashboard",
+ typ: TypeDashboard,
+ wantRoot: "dashboards",
+ wantExts: []string{".dash.yao", ".dash.jsonc", ".dash.json"},
+ },
+ {
+ name: "Flow",
+ typ: TypeFlow,
+ wantRoot: "flows",
+ wantExts: []string{".flow.yao", ".flow.jsonc", ".flow.json"},
+ },
+ {
+ name: "Pipe",
+ typ: TypePipe,
+ wantRoot: "pipes",
+ wantExts: []string{".pipe.yao", ".pipe.jsonc", ".pipe.json"},
+ },
+ {
+ name: "AIGC",
+ typ: TypeAIGC,
+ wantRoot: "aigcs",
+ wantExts: []string{".ai.yao", ".ai.jsonc", ".ai.json"},
+ },
+ {
+ name: "Store",
+ typ: TypeStore,
+ wantRoot: "stores",
+ wantExts: []string{".lru.yao", ".redis.yao", ".mongo.yao", ".badger.yao", ".store.yao", ".store.jsonc", ".store.json"},
+ },
+ {
+ name: "Unknown",
+ typ: TypeUnknown,
+ wantRoot: "",
+ wantExts: []string{},
+ },
+ {
+ name: "Empty type",
+ typ: Type(""),
+ wantRoot: "",
+ wantExts: []string{},
+ },
+ }
+
+ for _, tt := range tests {
+ t.Run(tt.name, func(t *testing.T) {
+ gotRoot, gotExts := TypeRootAndExts(tt.typ)
+ if gotRoot != tt.wantRoot {
+ t.Errorf("TypeRootAndExts() root = %v, want %v", gotRoot, tt.wantRoot)
+ }
+ if len(gotExts) != len(tt.wantExts) {
+ t.Errorf("TypeRootAndExts() exts length = %v, want %v", len(gotExts), len(tt.wantExts))
+ return
+ }
+ for i, ext := range gotExts {
+ if ext != tt.wantExts[i] {
+ t.Errorf("TypeRootAndExts() exts[%d] = %v, want %v", i, ext, tt.wantExts[i])
+ }
+ }
+ })
+ }
+}
+
+// Test integration scenarios
+func TestIntegration(t *testing.T) {
+ tests := []struct {
+ name string
+ typ Type
+ id string
+ wantPath string
+ wantID string
+ }{
+ {
+ name: "Model round trip",
+ typ: TypeModel,
+ id: "user__profile.admin",
+ wantPath: filepath.Join("models", "user.profile", "admin.mod.yao"),
+ wantID: "user__profile.admin",
+ },
+ {
+ name: "API round trip",
+ typ: TypeAPI,
+ id: "user.login",
+ wantPath: filepath.Join("apis", "user", "login.http.yao"),
+ wantID: "user.login",
+ },
+ {
+ name: "Complex nested path",
+ typ: TypeForm,
+ id: "admin__panel.user__management.edit",
+ wantPath: filepath.Join("forms", "admin.panel", "user.management", "edit.form.yao"),
+ wantID: "admin__panel.user__management.edit",
+ },
+ }
+
+ for _, tt := range tests {
+ t.Run(tt.name, func(t *testing.T) {
+ // Test ID to Path
+ path := ToPath(tt.typ, tt.id)
+ if path != tt.wantPath {
+ t.Errorf("ToPath() = %v, want %v", path, tt.wantPath)
+ }
+
+ // Test Path to ID
+ id := WithTypeToID(tt.typ, path)
+ if id != tt.wantID {
+ t.Errorf("WithTypeToID() = %v, want %v", id, tt.wantID)
+ }
+
+ // Test DetectType
+ detectedType := DetectType(path)
+ if detectedType != tt.typ {
+ t.Errorf("DetectType() = %v, want %v", detectedType, tt.typ)
+ }
+ })
+ }
+}
diff --git a/engine/load.go b/engine/load.go
index 33106891..c5925715 100644
--- a/engine/load.go
+++ b/engine/load.go
@@ -12,6 +12,7 @@ import (
"github.com/yaoapp/kun/exception"
"github.com/yaoapp/yao/aigc"
"github.com/yaoapp/yao/api"
+ "github.com/yaoapp/yao/attachment"
"github.com/yaoapp/yao/cert"
"github.com/yaoapp/yao/config"
"github.com/yaoapp/yao/connector"
@@ -19,10 +20,11 @@ import (
"github.com/yaoapp/yao/flow"
"github.com/yaoapp/yao/fs"
"github.com/yaoapp/yao/i18n"
- "github.com/yaoapp/yao/importer"
+ "github.com/yaoapp/yao/kb"
"github.com/yaoapp/yao/moapi"
"github.com/yaoapp/yao/model"
"github.com/yaoapp/yao/neo"
+ "github.com/yaoapp/yao/openapi"
"github.com/yaoapp/yao/pack"
"github.com/yaoapp/yao/pipe"
"github.com/yaoapp/yao/plugin"
@@ -61,8 +63,14 @@ type LoadOption struct {
IsReload bool `json:"reload"`
}
+// Warning the warning
+type Warning struct {
+ Widget string
+ Error error
+}
+
// Load application engine
-func Load(cfg config.Config, options LoadOption) (err error) {
+func Load(cfg config.Config, options LoadOption) (warnings []Warning, err error) {
defer func() { err = exception.Catch(recover()) }()
exception.Mode = cfg.Mode
@@ -80,78 +88,98 @@ func Load(cfg config.Config, options LoadOption) (err error) {
err = loadApp(cfg.AppSource)
if err != nil {
printErr(cfg.Mode, "Load Application", err)
+ warnings = append(warnings, Warning{Widget: "Load Application", Error: err})
}
// Make Database connections
err = share.DBConnect(cfg.DB)
if err != nil {
- printErr(cfg.Mode, "DB", err)
+ // printErr(cfg.Mode, "DB", err)
+ warnings = append(warnings, Warning{Widget: "DB", Error: err})
}
// Load Certs
err = cert.Load(cfg)
if err != nil {
- printErr(cfg.Mode, "Cert", err)
+ // printErr(cfg.Mode, "Cert", err)
+ warnings = append(warnings, Warning{Widget: "Cert", Error: err})
}
// Load Connectors
err = connector.Load(cfg)
if err != nil {
- printErr(cfg.Mode, "Connector", err)
+ // printErr(cfg.Mode, "Connector", err)
+ warnings = append(warnings, Warning{Widget: "Connector", Error: err})
}
// Load FileSystem
err = fs.Load(cfg)
if err != nil {
- printErr(cfg.Mode, "FileSystem", err)
+ // printErr(cfg.Mode, "FileSystem", err)
+ warnings = append(warnings, Warning{Widget: "FileSystem", Error: err})
}
// Load i18n
err = i18n.Load(cfg)
if err != nil {
- printErr(cfg.Mode, "i18n", err)
+ // printErr(cfg.Mode, "i18n", err)
+ warnings = append(warnings, Warning{Widget: "i18n", Error: err})
}
// start v8 runtime
err = runtime.Start(cfg)
if err != nil {
- printErr(cfg.Mode, "Runtime", err)
+ // printErr(cfg.Mode, "Runtime", err)
+ warnings = append(warnings, Warning{Widget: "Runtime", Error: err})
}
// Load Query Engine
err = query.Load(cfg)
if err != nil {
- printErr(cfg.Mode, "Query Engine", err)
+ // printErr(cfg.Mode, "Query Engine", err)
+ warnings = append(warnings, Warning{Widget: "Query Engine", Error: err})
}
// Load Scripts
err = script.Load(cfg)
if err != nil {
- printErr(cfg.Mode, "Script", err)
+ // printErr(cfg.Mode, "Script", err)
+ warnings = append(warnings, Warning{Widget: "Script", Error: err})
}
// Load Models
err = model.Load(cfg)
if err != nil {
- printErr(cfg.Mode, "Model", err)
+ // printErr(cfg.Mode, "Model", err)
+ warnings = append(warnings, Warning{Widget: "Model", Error: err})
}
// Load Data flows
err = flow.Load(cfg)
if err != nil {
- printErr(cfg.Mode, "Flow", err)
+ // printErr(cfg.Mode, "Flow", err)
+ warnings = append(warnings, Warning{Widget: "Flow", Error: err})
}
// Load Stores
err = store.Load(cfg)
if err != nil {
- printErr(cfg.Mode, "Store", err)
+ // printErr(cfg.Mode, "Store", err)
+ warnings = append(warnings, Warning{Widget: "Store", Error: err})
+ }
+
+ // Load Uploaders
+ err = attachment.Load(cfg)
+ if err != nil {
+ // printErr(cfg.Mode, "Uploader", err)
+ warnings = append(warnings, Warning{Widget: "Uploader", Error: err})
}
// Load Plugins
err = plugin.Load(cfg)
if err != nil {
- printErr(cfg.Mode, "Plugin", err)
+ // printErr(cfg.Mode, "Plugin", err)
+ warnings = append(warnings, Warning{Widget: "Plugin", Error: err})
}
// Load Rules
@@ -165,110 +193,141 @@ func Load(cfg config.Config, options LoadOption) (err error) {
// Load build-in widgets (table / form / chart / ...)
err = widgets.Load(cfg)
if err != nil {
- printErr(cfg.Mode, "Widgets", err)
+ // printErr(cfg.Mode, "Widgets", err)
+ warnings = append(warnings, Warning{Widget: "Widgets", Error: err})
}
// Load Importers
- err = importer.Load(cfg)
- if err != nil {
- printErr(cfg.Mode, "Plugin", err)
- }
+ // err = importer.Load(cfg)
+ // if err != nil {
+ // // printErr(cfg.Mode, "Plugin", err)
+ // warnings = append(warnings, Warning{Widget: "Plugin", Error: err})
+ // }
// Load Apis
err = api.Load(cfg) // 加载业务接口 API
if err != nil {
- printErr(cfg.Mode, "API", err)
+ // printErr(cfg.Mode, "API", err)
+ warnings = append(warnings, Warning{Widget: "API", Error: err})
}
// Load Sockets
err = socket.Load(cfg) // Load sockets
if err != nil {
- printErr(cfg.Mode, "Socket", err)
+ // printErr(cfg.Mode, "Socket", err)
+ warnings = append(warnings, Warning{Widget: "Socket", Error: err})
}
// Load websockets (client mode)
err = websocket.Load(cfg)
if err != nil {
- printErr(cfg.Mode, "WebSocket", err)
+ // printErr(cfg.Mode, "WebSocket", err)
+ warnings = append(warnings, Warning{Widget: "WebSocket", Error: err})
}
// Load tasks
err = task.Load(cfg)
if err != nil {
- printErr(cfg.Mode, "Task", err)
+ // printErr(cfg.Mode, "Task", err)
+ warnings = append(warnings, Warning{Widget: "Task", Error: err})
}
// Load schedules
err = schedule.Load(cfg)
if err != nil {
- printErr(cfg.Mode, "Schedule", err)
+ // printErr(cfg.Mode, "Schedule", err)
+ warnings = append(warnings, Warning{Widget: "Schedule", Error: err})
}
// Load AIGC
err = aigc.Load(cfg)
if err != nil {
- printErr(cfg.Mode, "AIGC", err)
- }
-
- // Load Neo
- err = neo.Load(cfg)
- if err != nil {
- printErr(cfg.Mode, "Neo", err)
+ // printErr(cfg.Mode, "AIGC", err)
+ warnings = append(warnings, Warning{Widget: "AIGC", Error: err})
}
// Load Custom Widget
err = widget.Load(cfg)
if err != nil {
- printErr(cfg.Mode, "Widget", err)
+ // printErr(cfg.Mode, "Widget", err)
+ warnings = append(warnings, Warning{Widget: "Widget", Error: err})
}
// Load Custom Widget Instances
err = widget.LoadInstances()
if err != nil {
- printErr(cfg.Mode, "Widget", err)
+ // printErr(cfg.Mode, "Widget", err)
+ warnings = append(warnings, Warning{Widget: "Widget", Error: err})
}
// Load SUI
err = sui.Load(cfg)
if err != nil {
- printErr(cfg.Mode, "SUI", err)
+ // printErr(cfg.Mode, "SUI", err)
+ warnings = append(warnings, Warning{Widget: "SUI", Error: err})
}
// Load Moapi
err = moapi.Load(cfg)
if err != nil {
- printErr(cfg.Mode, "Moapi", err)
+ // printErr(cfg.Mode, "Moapi", err)
+ warnings = append(warnings, Warning{Widget: "Moapi", Error: err})
}
// Load Pipe
err = pipe.Load(cfg)
if err != nil {
- printErr(cfg.Mode, "Pipe", err)
+ // printErr(cfg.Mode, "Pipe", err)
+ warnings = append(warnings, Warning{Widget: "Pipe", Error: err})
+ }
+
+ // Load Knowledge Base
+ _, err = kb.Load(cfg)
+ if err != nil {
+ // printErr(cfg.Mode, "Knowledge Base", err)
+ warnings = append(warnings, Warning{Widget: "Knowledge Base", Error: err})
+ }
+
+ // Load Neo
+ err = neo.Load(cfg)
+ if err != nil {
+ // printErr(cfg.Mode, "Neo", err)
+ warnings = append(warnings, Warning{Widget: "Neo", Error: err})
}
for name, hook := range LoadHooks {
err = hook(cfg)
if err != nil {
- printErr(cfg.Mode, name, err)
+ // printErr(cfg.Mode, name, err)
+ warnings = append(warnings, Warning{Widget: name, Error: err})
}
}
+ // Load OpenAPI
+ _, err = openapi.Load(cfg)
+ if err != nil {
+ // printErr(cfg.Mode, "OpenAPI", err)
+ warnings = append(warnings, Warning{Widget: "OpenAPI", Error: err})
+ }
+
// Execute AfterLoad Process if exists
if share.App.AfterLoad != "" && !options.IgnoredAfterLoad {
p, err := process.Of(share.App.AfterLoad, options)
if err != nil {
printErr(cfg.Mode, "AfterLoad", err)
- return err
+ warnings = append(warnings, Warning{Widget: "AfterLoad", Error: err})
+ return warnings, err
}
_, err = p.Exec()
if err != nil {
printErr(cfg.Mode, "AfterLoad", err)
- return err
+ warnings = append(warnings, Warning{Widget: "AfterLoad", Error: err})
+ return warnings, err
}
}
- return nil
+ return warnings, nil
}
// Unload application engine
@@ -378,6 +437,12 @@ func Reload(cfg config.Config, options LoadOption) (err error) {
printErr(cfg.Mode, "Store", err)
}
+ // Load Uploaders
+ err = attachment.Load(cfg)
+ if err != nil {
+ printErr(cfg.Mode, "Uploader", err)
+ }
+
// Load Plugins
err = plugin.Load(cfg)
if err != nil {
@@ -434,12 +499,25 @@ func Reload(cfg config.Config, options LoadOption) (err error) {
printErr(cfg.Mode, "AIGC", err)
}
+ // Load Knowledge Base
+ _, err = kb.Load(cfg)
+ if err != nil {
+ printErr(cfg.Mode, "Knowledge Base", err)
+
+ }
+
// Load Neo
err = neo.Load(cfg)
if err != nil {
printErr(cfg.Mode, "Neo", err)
}
+ // Load OpenAPI
+ _, err = openapi.Load(cfg)
+ if err != nil {
+ printErr(cfg.Mode, "OpenAPI", err)
+ }
+
// Execute AfterLoad Process if exists
if share.App.AfterLoad != "" && !options.IgnoredAfterLoad {
options.IsReload = true
@@ -465,7 +543,19 @@ func Restart(cfg config.Config, options LoadOption) error {
if err != nil {
return err
}
- return Load(cfg, options)
+
+ warnings, err := Load(cfg, options)
+ if err != nil {
+ return err
+ }
+
+ if len(warnings) > 0 {
+ for _, warning := range warnings {
+ printErr(cfg.Mode, warning.Widget, warning.Error)
+ }
+ }
+
+ return nil
}
// loadApp load the application from bindata / pkg / disk
@@ -555,8 +645,20 @@ func loadApp(root string) error {
}
return []byte(val)
})
+
+ // Parse app.yao
share.App = share.AppInfo{}
- return application.Parse(appFile, appData, &share.App)
+ err = application.Parse(appFile, appData, &share.App)
+ if err != nil {
+ return err
+ }
+
+ // Set default prefix
+ if share.App.Prefix == "" {
+ share.App.Prefix = "yao_"
+ }
+
+ return nil
}
func printErr(mode, widget string, err error) {
diff --git a/engine/load_test.go b/engine/load_test.go
index e0b02a2b..0427a9cc 100644
--- a/engine/load_test.go
+++ b/engine/load_test.go
@@ -13,14 +13,14 @@ import (
func TestLoad(t *testing.T) {
defer Unload()
- err := Load(config.Conf, LoadOption{})
+ _, err := Load(config.Conf, LoadOption{})
assert.Nil(t, err)
assert.Greater(t, len(api.APIs), 0)
}
func TestReload(t *testing.T) {
defer Unload()
- err := Load(config.Conf, LoadOption{})
+ _, err := Load(config.Conf, LoadOption{})
assert.Nil(t, err)
Reload(config.Conf, LoadOption{})
@@ -41,7 +41,7 @@ func TestLoadYaz(t *testing.T) {
cfg := config.Conf
cfg.AppSource = file
- err = Load(cfg, LoadOption{})
+ _, err = Load(cfg, LoadOption{})
if err != nil {
t.Fatal(err)
}
@@ -62,7 +62,7 @@ func TestReoadYaz(t *testing.T) {
cfg := config.Conf
cfg.AppSource = file
- err = Load(cfg, LoadOption{})
+ _, err = Load(cfg, LoadOption{})
if err != nil {
t.Fatal(err)
}
diff --git a/engine/process.go b/engine/process.go
index 6ef8f01f..4e2beb66 100644
--- a/engine/process.go
+++ b/engine/process.go
@@ -39,6 +39,7 @@ func processPing(process *process.Process) interface{} {
func processInspect(process *process.Process) interface{} {
return map[string]interface{}{
"VERSION": fmt.Sprintf("%s %s", share.VERSION, share.PRVERSION),
+ "CUI": fmt.Sprintf("%s %s", share.CUI, share.PRCUI),
"BUILDNAME": share.BUILDNAME,
"CONFIG": config.Conf,
}
diff --git a/excel/README.md b/excel/README.md
new file mode 100644
index 00000000..d42cdf7d
--- /dev/null
+++ b/excel/README.md
@@ -0,0 +1,652 @@
+# Yao Excel Module
+
+A Go module for manipulating Excel files with TypeScript API support.
+
+## IMPORTANT: Always Close Resources
+
+**IMPORTANT**: Always make sure to close Excel file handles using `excel.close` when done to prevent memory leaks and file locking issues. Failing to close handles may cause file corruption or application errors.
+
+## Quick Example
+
+Here's a simple but complete example showing proper resource management:
+
+```typescript
+// Open an Excel file
+const h = Process("excel.Open", "data.xlsx", true);
+
+// Perform operations
+const sheets = Process("excel.Sheets", h);
+Process("excel.write.Cell", h, sheets[0], "A1", "Hello World");
+Process("excel.Save", h);
+
+// IMPORTANT: Always close the handle when done
+Process("excel.Close", h);
+```
+
+## Usage in TypeScript
+
+You can use the Excel module in TypeScript through the Process API. Below are examples of common operations with return type descriptions.
+
+### Basic Operations
+
+#### Open an Excel file
+
+```typescript
+/**
+ * Opens an Excel file
+ * @param path - Path to the Excel file
+ * @param writable - Whether to open in writable mode (true) or read-only mode (false)
+ * @returns string - Handle ID used for subsequent operations
+ */
+const h: string = Process("excel.Open", "file.xlsx", true);
+
+// Open in read-only mode (false parameter or not passed)
+const hRead: string = Process("excel.Open", "file.xlsx", false);
+// or simply
+const h2: string = Process("excel.Open", "file.xlsx");
+
+// IMPORTANT: Don't forget to close the handle when done
+// Process("excel.Close", h);
+```
+
+### Sheet Operations
+
+#### Create a new sheet
+
+```typescript
+/**
+ * Creates a new sheet in the workbook
+ * @param handle - Handle ID from excel.open
+ * @param name - Name for the new sheet
+ * @returns number - Index of the new sheet
+ */
+const idx: number = Process("excel.sheet.create", h, "NewSheet");
+```
+
+#### List all sheets
+
+```typescript
+/**
+ * Lists all sheets in the workbook
+ * @param handle - Handle ID from excel.open
+ * @returns string[] - Array of sheet names
+ */
+const sheets: string[] = Process("excel.sheet.list", h);
+// Example output: ["Sheet1", "Sheet2", "NewSheet"]
+```
+
+#### Read sheet data
+
+```typescript
+/**
+ * Reads all data from a sheet
+ * @param handle - Handle ID from excel.open
+ * @param name - Sheet name
+ * @returns any[][] - Two-dimensional array of cell values
+ */
+const data: any[][] = Process("excel.sheet.read", h, "Sheet1");
+```
+
+#### Update sheet data
+
+```typescript
+/**
+ * Updates data in a sheet. Creates the sheet if it doesn't exist.
+ * @param handle - Handle ID from excel.open
+ * @param name - Sheet name
+ * @param data - Two-dimensional array of values to write
+ * @returns null
+ */
+const data = [
+ ["Header1", "Header2", "Header3"],
+ [1, "Data1", true],
+ [2, "Data2", false],
+];
+Process("excel.sheet.update", h, "Sheet1", data);
+```
+
+#### Copy a sheet
+
+```typescript
+/**
+ * Copies a sheet with all its content and formatting
+ * @param handle - Handle ID from excel.open
+ * @param source - Source sheet name
+ * @param target - Target sheet name (must not exist)
+ * @returns null
+ */
+Process("excel.sheet.copy", h, "Sheet1", "Sheet1Copy");
+```
+
+#### Delete a sheet
+
+```typescript
+/**
+ * Deletes a sheet from the workbook
+ * @param handle - Handle ID from excel.open
+ * @param name - Sheet name to delete
+ * @returns null
+ */
+Process("excel.sheet.delete", h, "Sheet1Copy");
+```
+
+#### Check if a sheet exists
+
+```typescript
+/**
+ * Checks if a sheet exists in the workbook
+ * @param handle - Handle ID from excel.open
+ * @param name - Sheet name to check
+ * @returns boolean - true if sheet exists, false otherwise
+ */
+const exists: boolean = Process("excel.sheet.exists", h, "Sheet1");
+```
+
+#### Read sheet rows with pagination
+
+```typescript
+/**
+ * Reads rows from a sheet with pagination support
+ * @param handle - Handle ID from excel.open
+ * @param name - Sheet name
+ * @param start - Starting row index (0-based)
+ * @param size - Number of rows to read
+ * @returns string[][] - Two-dimensional array of cell values
+ */
+const rows: string[][] = Process("excel.sheet.rows", h, "Sheet1", 0, 10); // Read first 10 rows
+```
+
+#### Get sheet dimensions
+
+```typescript
+/**
+ * Gets the dimensions (number of rows and columns) of a sheet
+ * @param handle - Handle ID from excel.open
+ * @param name - Sheet name
+ * @returns {rows: number, cols: number} - Object containing row and column counts
+ */
+const dim: { rows: number; cols: number } = Process(
+ "excel.sheet.dimension",
+ h,
+ "Sheet1"
+);
+console.log(`Sheet has ${dim.rows} rows and ${dim.cols} columns`);
+```
+
+### Example: Sheet Operations Workflow
+
+```typescript
+// Open Excel file in writable mode
+const h: string = Process("excel.Open", "file.xlsx", true);
+
+// Create a new sheet
+const idx: number = Process("excel.sheet.create", h, "DataSheet");
+
+// Write some data to the new sheet
+const data = [
+ ["Name", "Age", "Active"],
+ ["John", 30, true],
+ ["Jane", 25, false],
+];
+Process("excel.sheet.update", h, "DataSheet", data);
+
+// Make a backup copy of the sheet
+Process("excel.sheet.copy", h, "DataSheet", "DataSheet_Backup");
+
+// List all sheets to verify
+const sheets: string[] = Process("excel.sheet.list", h);
+console.log("Available sheets:", sheets);
+
+// Read data from the backup sheet
+const backupData: any[][] = Process("excel.sheet.read", h, "DataSheet_Backup");
+console.log("Backup data:", backupData);
+
+// Delete the backup sheet when no longer needed
+Process("excel.sheet.delete", h, "DataSheet_Backup");
+
+// Save changes
+Process("excel.Save", h);
+
+// IMPORTANT: Always close the handle when done
+Process("excel.Close", h);
+```
+
+#### Get all sheets in the workbook
+
+```typescript
+/**
+ * Gets all sheet names in the workbook
+ * @param handle - Handle ID from excel.open
+ * @returns string[] - Array of sheet names
+ */
+const sheets: string[] = Process("excel.Sheets", h);
+// Example output: ["Sheet1", "Sheet2"]
+```
+
+#### Close a file
+
+```typescript
+/**
+ * Closes an Excel file
+ * @param handle - Handle ID from excel.open
+ * @returns null
+ */
+Process("excel.Close", h);
+```
+
+#### Save changes to file
+
+```typescript
+/**
+ * Saves changes to the Excel file
+ * @param handle - Handle ID from excel.open
+ * @returns null
+ */
+Process("excel.Save", h);
+```
+
+### Reading Data
+
+#### Read a cell's value
+
+```typescript
+/**
+ * Reads a cell's value
+ * @param handle - Handle ID from excel.open
+ * @param sheet - Sheet name
+ * @param cell - Cell reference (e.g. "A1")
+ * @returns string - Cell value
+ */
+const value: string = Process("excel.read.Cell", h, "SheetName", "A1");
+```
+
+#### Read all rows
+
+```typescript
+/**
+ * Reads all rows in a sheet
+ * @param handle - Handle ID from excel.open
+ * @param sheet - Sheet name
+ * @returns string[][] - Two-dimensional array of cell values
+ */
+const rows: string[][] = Process("excel.read.Row", h, "SheetName");
+```
+
+#### Read all columns
+
+```typescript
+/**
+ * Reads all columns in a sheet
+ * @param handle - Handle ID from excel.open
+ * @param sheet - Sheet name
+ * @returns string[][] - Two-dimensional array of cell values
+ */
+const columns: string[][] = Process("excel.read.Column", h, "SheetName");
+```
+
+### Writing Data
+
+#### Write to a cell
+
+```typescript
+/**
+ * Writes a value to a cell
+ * @param handle - Handle ID from excel.open
+ * @param sheet - Sheet name
+ * @param cell - Cell reference (e.g. "A1")
+ * @param value - Value to write (string, number, boolean, etc.)
+ * @returns null
+ */
+Process("excel.write.Cell", h, "SheetName", "A1", "Hello World");
+// Can write different types of values
+Process("excel.write.Cell", h, "SheetName", "A2", 123.45);
+Process("excel.write.Cell", h, "SheetName", "A3", true);
+```
+
+#### Write a row
+
+```typescript
+/**
+ * Writes values to a row starting at the specified cell
+ * @param handle - Handle ID from excel.open
+ * @param sheet - Sheet name
+ * @param startCell - Starting cell reference (e.g. "A1")
+ * @param values - Array of values to write
+ * @returns null
+ */
+Process("excel.write.Row", h, "SheetName", "A1", ["Cell1", "Cell2", "Cell3"]);
+```
+
+#### Write a column
+
+```typescript
+/**
+ * Writes values to a column starting at the specified cell
+ * @param handle - Handle ID from excel.open
+ * @param sheet - Sheet name
+ * @param startCell - Starting cell reference (e.g. "A1")
+ * @param values - Array of values to write
+ * @returns null
+ */
+Process("excel.write.Column", h, "SheetName", "A1", ["Row1", "Row2", "Row3"]);
+```
+
+#### Write multiple rows
+
+```typescript
+/**
+ * Writes a two-dimensional array of values starting at the specified cell
+ * @param handle - Handle ID from excel.open
+ * @param sheet - Sheet name
+ * @param startCell - Starting cell reference (e.g. "A1")
+ * @param values - Two-dimensional array of values to write
+ * @returns null
+ */
+Process("excel.write.All", h, "SheetName", "A1", [
+ ["Row1Cell1", "Row1Cell2", "Row1Cell3"],
+ ["Row2Cell1", "Row2Cell2", "Row2Cell3"],
+]);
+```
+
+### Formatting and Styling
+
+#### Set cell style
+
+```typescript
+/**
+ * Sets a cell's style
+ * @param handle - Handle ID from excel.open
+ * @param sheet - Sheet name
+ * @param cell - Cell reference (e.g. "A1")
+ * @param styleID - Style ID
+ * @returns null
+ */
+Process("excel.set.Style", h, "SheetName", "A1", 1);
+```
+
+#### Style ID Constants
+
+When using `excel.set.Style`, you need to provide a style ID. The following style IDs are supported:
+
+```typescript
+// Border styles
+const BORDER_NONE = 0; // No border
+const BORDER_CONTINUOUS = 1; // Continuous border (thin)
+const BORDER_CONTINUOUS_2 = 2; // Continuous border (medium)
+const BORDER_DASH = 3; // Dashed border
+const BORDER_DOT = 4; // Dotted border
+const BORDER_CONTINUOUS_3 = 5; // Continuous border (thick)
+const BORDER_DOUBLE = 6; // Double line border
+const BORDER_CONTINUOUS_0 = 7; // Continuous border (hair)
+const BORDER_DASH_2 = 8; // Dashed border (medium)
+const BORDER_DASH_DOT = 9; // Dash-dot border
+const BORDER_DASH_DOT_2 = 10; // Dash-dot border (medium)
+const BORDER_DASH_DOT_DOT = 11; // Dash-dot-dot border
+const BORDER_DASH_DOT_DOT_2 = 12; // Dash-dot-dot border (medium)
+const BORDER_SLANT_DASH_DOT = 13; // Slanted dash-dot border
+
+// Fill patterns
+const FILL_NONE = 0; // No fill
+const FILL_SOLID = 1; // Solid fill
+const FILL_MEDIUM_GRAY = 2; // Medium gray fill
+const FILL_DARK_GRAY = 3; // Dark gray fill
+const FILL_LIGHT_GRAY = 4; // Light gray fill
+const FILL_DARK_HORIZONTAL = 5; // Dark horizontal line pattern
+const FILL_DARK_VERTICAL = 6; // Dark vertical line pattern
+const FILL_DARK_DOWN = 7; // Dark diagonal down pattern
+const FILL_DARK_UP = 8; // Dark diagonal up pattern
+const FILL_DARK_GRID = 9; // Dark grid pattern
+const FILL_DARK_TRELLIS = 10; // Dark trellis pattern
+const FILL_LIGHT_HORIZONTAL = 11; // Light horizontal line pattern
+const FILL_LIGHT_VERTICAL = 12; // Light vertical line pattern
+const FILL_LIGHT_DOWN = 13; // Light diagonal down pattern
+const FILL_LIGHT_UP = 14; // Light diagonal up pattern
+const FILL_LIGHT_GRID = 15; // Light grid pattern
+const FILL_LIGHT_TRELLIS = 16; // Light trellis pattern
+const FILL_GRAY_125 = 17; // 12.5% gray fill
+const FILL_GRAY_0625 = 18; // 6.25% gray fill
+```
+
+Example of creating a custom style with borders and fill:
+
+```typescript
+// Create style with thick border and light gray fill
+const styleID = 1; // This would typically be a custom style ID created via the NewStyle API
+
+// Apply the style to cell A1
+Process("excel.set.Style", h, "SheetName", "A1", styleID);
+```
+
+Note: The excelize library supports creating custom styles through the `NewStyle` function. Currently, in the Yao Excel module, only predefined style IDs are supported. For more complex styling needs, consider creating a custom style in the future versions of the API.
+
+#### Set row height
+
+```typescript
+/**
+ * Sets a row's height
+ * @param handle - Handle ID from excel.open
+ * @param sheet - Sheet name
+ * @param row - Row number
+ * @param height - Height in points
+ * @returns null
+ */
+Process("excel.set.RowHeight", h, "SheetName", 1, 30); // Set row 1 to 30 pts height
+```
+
+#### Set column width
+
+```typescript
+/**
+ * Sets column width for a range of columns
+ * @param handle - Handle ID from excel.open
+ * @param sheet - Sheet name
+ * @param startCol - Starting column letter
+ * @param endCol - Ending column letter
+ * @param width - Width in points
+ * @returns null
+ */
+Process("excel.set.ColumnWidth", h, "SheetName", "A", "B", 20);
+```
+
+#### Merge cells
+
+```typescript
+/**
+ * Merges cells in a range
+ * @param handle - Handle ID from excel.open
+ * @param sheet - Sheet name
+ * @param startCell - Starting cell reference (e.g. "A1")
+ * @param endCell - Ending cell reference (e.g. "B2")
+ * @returns null
+ */
+Process("excel.set.MergeCell", h, "SheetName", "A1", "B2");
+```
+
+#### Unmerge cells
+
+```typescript
+/**
+ * Unmerges previously merged cells
+ * @param handle - Handle ID from excel.open
+ * @param sheet - Sheet name
+ * @param startCell - Starting cell reference (e.g. "A1")
+ * @param endCell - Ending cell reference (e.g. "B2")
+ * @returns null
+ */
+Process("excel.set.UnmergeCell", h, "SheetName", "A1", "B2");
+```
+
+#### Set a formula
+
+```typescript
+/**
+ * Sets a formula in a cell
+ * @param handle - Handle ID from excel.open
+ * @param sheet - Sheet name
+ * @param cell - Cell reference (e.g. "C1")
+ * @param formula - Excel formula without the leading equals sign
+ * @returns null
+ */
+Process("excel.set.Formula", h, "SheetName", "C1", "SUM(A1:B1)");
+```
+
+#### Add a hyperlink
+
+```typescript
+/**
+ * Adds a hyperlink to a cell
+ * @param handle - Handle ID from excel.open
+ * @param sheet - Sheet name
+ * @param cell - Cell reference (e.g. "A1")
+ * @param url - URL for the hyperlink
+ * @param text - Display text for the hyperlink
+ * @returns null
+ */
+Process(
+ "excel.set.Link",
+ h,
+ "SheetName",
+ "A1",
+ "https://example.com",
+ "Visit Example"
+);
+```
+
+### Iterating Through Data
+
+#### Row Iterator
+
+```typescript
+/**
+ * Opens a row iterator
+ * @param handle - Handle ID from excel.open
+ * @param sheet - Sheet name
+ * @returns string - Row iterator ID
+ */
+const rid: string = Process("excel.each.OpenRow", h, "SheetName");
+
+/**
+ * Gets the next row from the iterator
+ * @param rowID - Row iterator ID from excel.each.openrow
+ * @returns string[] | null - Array of cell values or null if no more rows
+ */
+let row: string[] | null;
+while ((row = Process("excel.each.NextRow", rid)) !== null) {
+ // Process the row
+ console.log(row);
+}
+
+/**
+ * IMPORTANT: Always close the row iterator when done
+ * @param rowID - Row iterator ID from excel.each.openrow
+ * @returns null
+ */
+Process("excel.each.CloseRow", rid);
+```
+
+#### Column Iterator
+
+```typescript
+/**
+ * Opens a column iterator
+ * @param handle - Handle ID from excel.open
+ * @param sheet - Sheet name
+ * @returns string - Column iterator ID
+ */
+const cid: string = Process("excel.each.OpenColumn", h, "SheetName");
+
+/**
+ * Gets the next column from the iterator
+ * @param colID - Column iterator ID from excel.each.opencolumn
+ * @returns string[] | null - Array of cell values or null if no more columns
+ */
+let col: string[] | null;
+while ((col = Process("excel.each.NextColumn", cid)) !== null) {
+ // Process the column
+ console.log(col);
+}
+
+/**
+ * IMPORTANT: Always close the column iterator when done
+ * @param colID - Column iterator ID from excel.each.opencolumn
+ * @returns null
+ */
+Process("excel.each.CloseColumn", cid);
+```
+
+### Utility Functions
+
+#### Convert between column names and indices
+
+```typescript
+/**
+ * Converts a column name to a column number
+ * @param colName - Column name (e.g. "A", "AB")
+ * @returns number - Column number (1-based)
+ */
+const colNum: number = Process("excel.convert.ColumnNameToNumber", "AK"); // Returns 37
+
+/**
+ * Converts a column number to a column name
+ * @param colNum - Column number (1-based)
+ * @returns string - Column name
+ */
+const colName: string = Process("excel.convert.ColumnNumberToName", 37); // Returns "AK"
+```
+
+#### Convert between cell references and coordinates
+
+```typescript
+/**
+ * Converts a cell reference to coordinates
+ * @param cell - Cell reference (e.g. "A1")
+ * @returns number[] - Array with [columnNumber, rowNumber] (1-based)
+ */
+const coords: number[] = Process("excel.convert.CellNameToCoordinates", "A1"); // Returns [1, 1]
+
+/**
+ * Converts coordinates to a cell reference
+ * @param col - Column number (1-based)
+ * @param row - Row number (1-based)
+ * @returns string - Cell reference
+ */
+const cellName: string = Process("excel.convert.CoordinatesToCellName", 1, 1); // Returns "A1"
+```
+
+## Complete Workflow Example
+
+```typescript
+// Open Excel file in writable mode
+const h: string = Process("excel.Open", "file.xlsx", true);
+
+// Get available sheets
+const sheets: string[] = Process("excel.Sheets", h);
+const sheetName: string = sheets[0];
+
+// Read some data
+const value: string = Process("excel.read.Cell", h, sheetName, "A1");
+console.log("Cell A1 contains:", value);
+
+// Write data
+Process("excel.write.Cell", h, sheetName, "B1", "New Value");
+Process("excel.write.Row", h, sheetName, "A2", ["Data1", "Data2", "Data3"]);
+
+// Add a formula
+Process("excel.set.Formula", h, sheetName, "D1", "SUM(A1:C1)");
+
+// Format cells
+Process("excel.set.RowHeight", h, sheetName, 1, 30);
+Process("excel.set.ColumnWidth", h, sheetName, "A", "D", 15);
+
+// Save changes
+Process("excel.Save", h);
+
+// IMPORTANT: Always close the handle when done
+Process("excel.Close", h);
+```
+
+## Notes
+
+- Always make sure to close open file handles using `excel.close` when done to prevent resource leaks and file locking issues.
+- Remember to save changes with `excel.save` before closing to ensure all modifications are persisted.
+- For performance reasons, try to batch operations where possible instead of making many small changes.
diff --git a/excel/each.go b/excel/each.go
new file mode 100644
index 00000000..0d4ea904
--- /dev/null
+++ b/excel/each.go
@@ -0,0 +1,104 @@
+package excel
+
+import (
+ "fmt"
+ "sync"
+ "time"
+
+ "github.com/google/uuid"
+ "github.com/xuri/excelize/v2"
+)
+
+// Cols defines an iterator to a sheet
+type Cols struct {
+ id string
+ *excelize.Cols
+ create int64
+}
+
+// Rows defines an iterator to a sheet
+type Rows struct {
+ id string
+ *excelize.Rows
+ create int64
+}
+
+var openCols = sync.Map{}
+var openRows = sync.Map{}
+
+// OpenRow each row of the sheet
+func (excel *Excel) OpenRow(sheet string) (string, error) {
+ id := uuid.NewString()
+ rows, err := excel.Rows(sheet)
+ if err != nil {
+ return "", err
+ }
+ openRows.Store(id, &Rows{id: id, Rows: rows, create: time.Now().Unix()})
+ return id, nil
+}
+
+// NextRow next row of the sheet
+func NextRow(id string) ([]string, error) {
+ value, ok := openRows.Load(id)
+ if !ok {
+ return nil, fmt.Errorf("rows %s not found", id)
+ }
+
+ if value.(*Rows).Next() {
+ row, err := value.(*Rows).Columns()
+ // fmt.Printf("DEBUG: %#v %v %v\n", row, err, row == nil)
+ if err != nil {
+ return nil, err
+ }
+
+ if row == nil {
+ return []string{}, nil
+ }
+ return row, nil
+ }
+ return nil, nil
+}
+
+// CloseRow done the sheet
+func CloseRow(id string) {
+ openRows.Delete(id)
+}
+
+// OpenColumn each cols of the sheet
+func (excel *Excel) OpenColumn(sheet string) (string, error) {
+ id := uuid.NewString()
+ cols, err := excel.Cols(sheet)
+ if err != nil {
+ return "", err
+ }
+ openCols.Store(id, &Cols{id: id, Cols: cols, create: time.Now().Unix()})
+ return id, nil
+}
+
+// NextColumn next col of the sheet
+func NextColumn(id string) ([]string, error) {
+ value, ok := openCols.Load(id)
+ if !ok {
+ return nil, fmt.Errorf("cols %s not found", id)
+ }
+
+ if value.(*Cols).Next() {
+ col, err := value.(*Cols).Rows()
+ if err != nil {
+ return nil, err
+ }
+
+ if col == nil {
+ return []string{}, nil
+ }
+
+ return col, nil
+ }
+
+ return nil, nil
+}
+
+// CloseColumn done the sheet
+func CloseColumn(id string) {
+ openCols.Delete(id)
+}
diff --git a/excel/each_test.go b/excel/each_test.go
new file mode 100644
index 00000000..5d29e86a
--- /dev/null
+++ b/excel/each_test.go
@@ -0,0 +1,64 @@
+package excel
+
+import (
+ "strings"
+ "testing"
+
+ "github.com/stretchr/testify/assert"
+)
+
+func TestEachCols(t *testing.T) {
+ files := testFiles(t)
+ h1, err := Open(files["test-01"], false)
+ if err != nil {
+ t.Fatal(err)
+ }
+ defer Close(h1)
+
+ xls, err := Get(h1)
+ if err != nil {
+ t.Fatal(err)
+ }
+
+ id, err := xls.OpenColumn("供销存管理表格")
+ if err != nil {
+ t.Fatal(err)
+ }
+ defer CloseColumn(id)
+
+ res := []string{}
+ for col, err := NextColumn(id); err == nil && col != nil; col, err = NextColumn(id) {
+ res = append(res, col...)
+ }
+
+ assert.Contains(t, strings.Join(res, ""), "供销存管理表格产品查询")
+ assert.Contains(t, strings.Join(res, ""), "刘大大")
+}
+
+func TestEachRows(t *testing.T) {
+ files := testFiles(t)
+ h1, err := Open(files["test-01"], false)
+ if err != nil {
+ t.Fatal(err)
+ }
+ defer Close(h1)
+
+ xls, err := Get(h1)
+ if err != nil {
+ t.Fatal(err)
+ }
+
+ id, err := xls.OpenRow("供销存管理表格")
+ if err != nil {
+ t.Fatal(err)
+ }
+ defer CloseRow(id)
+
+ res := []string{}
+ for row, err := NextRow(id); err == nil && row != nil; row, err = NextRow(id) {
+ res = append(res, row...)
+ }
+
+ assert.Contains(t, strings.Join(res, ""), "供销存管理表格产品查询")
+ assert.Contains(t, strings.Join(res, ""), "刘大大")
+}
diff --git a/excel/excel.go b/excel/excel.go
new file mode 100644
index 00000000..f8276245
--- /dev/null
+++ b/excel/excel.go
@@ -0,0 +1,115 @@
+package excel
+
+import (
+ "fmt"
+ "os"
+ "path/filepath"
+ "sync"
+ "time"
+
+ "github.com/google/uuid"
+ "github.com/xuri/excelize/v2"
+ "github.com/yaoapp/yao/config"
+)
+
+// Excel the excel file
+type Excel struct {
+ id string
+ path string
+ create int64
+ abs string
+ *excelize.File
+}
+
+// openFiles the open files
+var openFiles = sync.Map{}
+
+// Open open the excel file
+func Open(path string, writable bool) (string, error) {
+
+ excel := &Excel{path: path}
+ // GET DATA ROOT
+ root := config.Conf.DataRoot
+ absPath, err := filepath.Abs(filepath.Join(root, path))
+ if err != nil {
+ return "", err
+ }
+
+ if writable {
+
+ // if the file not exists, create it
+ if _, err := os.Stat(absPath); os.IsNotExist(err) {
+
+ // Auto create dir
+ dir := filepath.Dir(absPath)
+ if _, err := os.Stat(dir); os.IsNotExist(err) {
+ err := os.MkdirAll(dir, 0755) // 0755 is the default permission for directories
+ if err != nil {
+ return "", err
+ }
+ }
+
+ create := excelize.NewFile()
+ err := create.SaveAs(absPath)
+ if err != nil {
+ return "", err
+ }
+ create.Close()
+ }
+
+ excelFile, err := excelize.OpenFile(absPath)
+ if err != nil {
+ return "", err
+ }
+ id := uuid.NewString()
+ excel.File = excelFile
+ excel.id = id
+ excel.abs = absPath
+ excel.create = time.Now().Unix()
+ openFiles.Store(id, excel)
+ return id, nil
+ }
+
+ file, err := os.Open(absPath)
+ if err != nil {
+ return "", fmt.Errorf("open file %s failed: %w", absPath, err)
+ }
+
+ excelFile, err := excelize.OpenReader(file)
+ if err != nil {
+ return "", err
+ }
+
+ id := uuid.NewString()
+ excel.File = excelFile
+ excel.id = id
+ excel.abs = absPath
+ excel.create = time.Now().Unix()
+ openFiles.Store(id, excel)
+ return id, nil
+}
+
+// Close close the excel file
+func Close(handler string) error {
+ excel, ok := openFiles.Load(handler)
+ if !ok {
+ return fmt.Errorf("file not found")
+ }
+
+ err := excel.(*Excel).Close()
+ if err != nil {
+ return err
+ }
+
+ openFiles.Delete(handler)
+ return nil
+}
+
+// Get get the excel file
+func Get(handler string) (*Excel, error) {
+ excel, ok := openFiles.Load(handler)
+ if !ok {
+ return nil, fmt.Errorf("%s not found", handler)
+ }
+ return excel.(*Excel), nil
+}
diff --git a/excel/excel_test.go b/excel/excel_test.go
new file mode 100644
index 00000000..e9a883a5
--- /dev/null
+++ b/excel/excel_test.go
@@ -0,0 +1,252 @@
+package excel
+
+import (
+ "os"
+ "path/filepath"
+ "testing"
+
+ "github.com/stretchr/testify/assert"
+ "github.com/yaoapp/yao/config"
+ "github.com/yaoapp/yao/test"
+)
+
+func TestOpenClose(t *testing.T) {
+ files := testFiles(t)
+
+ h1, err := Open(files["test-01"], false)
+ if err != nil {
+ t.Fatal(err)
+ }
+
+ if _, ok := openFiles.Load(h1); !ok {
+ t.Fatal("open file failed")
+ }
+
+ h2, err := Open(files["test-02"], true)
+ if err != nil {
+ t.Fatal(err)
+ }
+ if _, ok := openFiles.Load(h2); !ok {
+ t.Fatal("open file failed")
+ }
+
+ h3, err := Open(files["test-03"], false)
+ if err != nil {
+ t.Fatal(err)
+ }
+ if _, ok := openFiles.Load(h3); !ok {
+ t.Fatal("open file failed")
+ }
+
+ _, err = Open(files["test-04"], false)
+ assert.Error(t, err)
+
+ err = Close(h1)
+ if err != nil {
+ t.Fatal(err)
+ }
+ if _, ok := openFiles.Load(h1); ok {
+ t.Fatal("close file failed")
+ }
+}
+
+func TestGetSheetList(t *testing.T) {
+
+ files := testFiles(t)
+ h1, err := Open(files["test-01"], false)
+ if err != nil {
+ t.Fatal(err)
+ }
+ defer Close(h1)
+
+ xls, err := Get(h1)
+ if err != nil {
+ t.Fatal(err)
+ }
+
+ sheets := xls.GetSheetList()
+ assert.Equal(t, []string{"供销存管理表格", "使用说明"}, sheets)
+
+ _, err = Get("not found")
+ assert.Error(t, err)
+}
+
+func TestOpenInvalidFile(t *testing.T) {
+ test.Prepare(t, config.Conf)
+ defer test.Clean()
+
+ // Create an invalid excel file in the data root
+ root := "excel"
+ invalidFile := filepath.Join(root, "invalid.xlsx")
+
+ // Ensure cleanup after test
+ defer func() {
+ if err := os.Remove(filepath.Join(config.Conf.DataRoot, invalidFile)); err != nil {
+ t.Logf("Failed to cleanup test file: %v", err)
+ }
+ }()
+
+ err := os.WriteFile(filepath.Join(config.Conf.DataRoot, invalidFile), []byte("invalid content"), 0644)
+ if err != nil {
+ t.Fatal(err)
+ }
+
+ _, err = Open(invalidFile, false)
+ assert.Error(t, err, "should fail to open invalid excel file")
+}
+
+func TestCloseErrors(t *testing.T) {
+ // Test closing non-existent handler
+ err := Close("non-existent-handler")
+ assert.Error(t, err, "should fail to close non-existent file")
+
+ // Test double close
+ files := testFiles(t)
+ h1, err := Open(files["test-01"], false)
+ if err != nil {
+ t.Fatal(err)
+ }
+
+ // First close
+ err = Close(h1)
+ assert.NoError(t, err)
+
+ // Second close should fail
+ err = Close(h1)
+ assert.Error(t, err, "should fail on second close")
+}
+
+func TestOpenWithInvalidPath(t *testing.T) {
+ // Test with invalid path
+ _, err := Open("../invalid/path/file.xlsx", false)
+ assert.Error(t, err, "should fail with invalid path")
+
+ // Test with path trying to escape data root
+ _, err = Open("../../../../etc/file.xlsx", false)
+ assert.Error(t, err, "should fail with path trying to escape data root")
+}
+
+func TestWrite(t *testing.T) {
+ test.Prepare(t, config.Conf)
+ defer test.Clean()
+
+ // Create a new writable file for testing
+ root := "excel"
+ testFile := filepath.Join(root, "write-test.xlsx")
+
+ // Ensure cleanup after test
+ defer func() {
+ if err := os.Remove(filepath.Join(config.Conf.DataRoot, testFile)); err != nil {
+ t.Logf("Failed to cleanup test file: %v", err)
+ }
+ }()
+
+ h1, err := Open(testFile, true)
+ if err != nil {
+ t.Fatal(err)
+ }
+ defer Close(h1)
+
+ xls, err := Get(h1)
+ if err != nil {
+ t.Fatal(err)
+ }
+
+ // Test WriteCell
+ err = xls.WriteCell("Sheet1", "A1", "Hello")
+ assert.NoError(t, err)
+ err = xls.WriteCell("Sheet1", "B1", 123)
+ assert.NoError(t, err)
+ err = xls.WriteCell("Sheet1", "C1", true)
+ assert.NoError(t, err)
+
+ // Test WriteRow
+ row := []interface{}{"Row1", 456, false}
+ err = xls.WriteRow("Sheet1", "A2", row)
+ assert.NoError(t, err)
+
+ // Test WriteColumn
+ col := []interface{}{"Col1", 789, true}
+ err = xls.WriteColumn("Sheet1", "D1", col)
+ assert.NoError(t, err)
+
+ // Test WriteAll
+ data := [][]interface{}{
+ {"Name", "Age", "City"},
+ {"John", 30, "New York"},
+ {"Alice", 25, "London"},
+ }
+ err = xls.WriteAll("Sheet2", "A1", data)
+ assert.NoError(t, err)
+
+ // Test error cases
+ // Invalid cell reference
+ err = xls.WriteCell("Sheet1", "invalid", "test")
+ assert.Error(t, err)
+
+ // Save the file to verify changes
+ err = xls.SaveAs(filepath.Join(config.Conf.DataRoot, testFile))
+ assert.NoError(t, err)
+
+ // Verify written data
+ val, err := xls.GetCellValue("Sheet1", "A1")
+ assert.NoError(t, err)
+ assert.Equal(t, "Hello", val)
+
+ val, err = xls.GetCellValue("Sheet2", "A1")
+ assert.NoError(t, err)
+ assert.Equal(t, "Name", val)
+}
+
+func TestSetSheet(t *testing.T) {
+ test.Prepare(t, config.Conf)
+ defer test.Clean()
+
+ root := "excel"
+ testFile := filepath.Join(root, "sheet-test.xlsx")
+
+ // Ensure cleanup after test
+ defer func() {
+ if err := os.Remove(filepath.Join(config.Conf.DataRoot, testFile)); err != nil {
+ t.Logf("Failed to cleanup test file: %v", err)
+ }
+ }()
+
+ h1, err := Open(testFile, true)
+ if err != nil {
+ t.Fatal(err)
+ }
+ defer Close(h1)
+
+ xls, err := Get(h1)
+ if err != nil {
+ t.Fatal(err)
+ }
+
+ // Test creating new sheet
+ idx, err := xls.SetSheet("NewSheet")
+ assert.NoError(t, err)
+ assert.Greater(t, idx, 0)
+
+ // Test getting existing sheet
+ idx2, err := xls.SetSheet("NewSheet")
+ assert.NoError(t, err)
+ assert.Equal(t, idx, idx2)
+
+ // Verify sheet exists
+ sheets := xls.GetSheetList()
+ assert.Contains(t, sheets, "NewSheet")
+}
+
+func testFiles(t *testing.T) map[string]string {
+ test.Prepare(t, config.Conf)
+ defer test.Clean()
+
+ // test data root path
+ root := "excel"
+ return map[string]string{
+ "test-01": filepath.Join(root, "test-01.xlsx"),
+ "test-02": filepath.Join(root, "test-02.xlsx"),
+ "test-03": filepath.Join(root, "test-03.xlsx"),
+ }
+}
diff --git a/excel/process.go b/excel/process.go
new file mode 100644
index 00000000..bba40fa6
--- /dev/null
+++ b/excel/process.go
@@ -0,0 +1,782 @@
+package excel
+
+import (
+ "github.com/xuri/excelize/v2"
+ "github.com/yaoapp/gou/process"
+ "github.com/yaoapp/kun/exception"
+)
+
+func init() {
+ process.RegisterGroup("excel", map[string]process.Handler{
+ "open": processOpen,
+ "close": processClose,
+ "save": processSave,
+ "sheets": processSheets,
+
+ "sheet.create": processCreateSheet,
+ "sheet.read": processReadSheet,
+ "sheet.update": processUpdateSheet,
+ "sheet.delete": processDeleteSheet,
+ "sheet.copy": processCopySheet,
+ "sheet.list": processListSheets,
+ "sheet.exists": processSheetExists,
+ "sheet.rows": processReadSheetRows,
+ "sheet.dimension": processGetSheetDimension,
+
+ "read.cell": processReadCell,
+ "read.row": processReadRow,
+ "read.column": processReadColumn,
+
+ "write.cell": processWriteCell,
+ "write.row": processWriteRow,
+ "write.column": processWriteColumn,
+ "write.all": processWriteAll,
+
+ "set.style": processSetStyle,
+ "set.formula": processSetFormula,
+ "set.link": processSetLink,
+ "set.richtext": processSetRichText,
+ "set.comment": processSetComment,
+ "set.rowheight": processSetRowHeight,
+ "set.columnwidth": processSetColumnWidth,
+ "set.mergecell": processMergeCell,
+ "set.unmergecell": processUnmergeCell,
+
+ "each.openrow": processOpenRow,
+ "each.closerow": processCloseRow,
+ "each.nextrow": processNextRow,
+ "each.opencolumn": processOpenColumn,
+ "each.closecolumn": processCloseColumn,
+ "each.nextcolumn": processNextColumn,
+
+ "convert.columnnametonumber": processColumnNameToNumber,
+ "convert.columnnumbertoname": processColumnNumberToName,
+ "convert.cellnametocoordinates": processCellNameToCoordinates,
+ "convert.coordinatestocellname": processCoordinatesToCellName,
+ })
+}
+
+// processOpen process the excel.open
+func processOpen(process *process.Process) interface{} {
+ process.ValidateArgNums(1)
+ file := process.ArgsString(0)
+ writable := false
+ if len(process.Args) > 1 {
+ writable = process.ArgsBool(1)
+ }
+
+ handle, err := Open(file, writable)
+ if err != nil {
+ exception.New("excel.open %s error: %s", 500, file, err.Error()).Throw()
+ }
+ return handle
+}
+
+// processClose process the excel.close
+func processClose(process *process.Process) interface{} {
+ process.ValidateArgNums(1)
+ handle := process.ArgsString(0)
+ err := Close(handle)
+ if err != nil {
+ exception.New("excel.close %s error: %s", 500, handle, err.Error()).Throw()
+ }
+ return nil
+}
+
+// processSave process the excel.save
+func processSave(process *process.Process) interface{} {
+ process.ValidateArgNums(1)
+ handle := process.ArgsString(0)
+ xls, err := Get(handle)
+ if err != nil {
+ exception.New("excel.save %s error: %s", 500, handle, err.Error()).Throw()
+ }
+
+ // 使用 SaveAs 方法保存文件到原始路径
+ err = xls.SaveAs(xls.abs)
+ if err != nil {
+ exception.New("excel.save %s error: %s", 500, handle, err.Error()).Throw()
+ }
+ return nil
+}
+
+// processSheets process the excel.sheets
+func processSheets(process *process.Process) interface{} {
+ process.ValidateArgNums(1)
+ handle := process.ArgsString(0)
+ xls, err := Get(handle)
+ if err != nil {
+ exception.New("excel.sheets %s error: %s", 500, handle, err.Error()).Throw()
+ }
+ return xls.GetSheetList()
+}
+
+// processReadCell process the excel.read.cell
+func processReadCell(process *process.Process) interface{} {
+ process.ValidateArgNums(3)
+ handle := process.ArgsString(0)
+ sheet := process.ArgsString(1)
+ cell := process.ArgsString(2)
+
+ xls, err := Get(handle)
+ if err != nil {
+ exception.New("excel.read.cell %s error: %s", 500, handle, err.Error()).Throw()
+ }
+ value, err := xls.GetCellValue(sheet, cell)
+ if err != nil {
+ exception.New("excel.read.cell %s:%s:%s error: %s", 500, handle, sheet, cell, err.Error()).Throw()
+ }
+ return value
+}
+
+// processReadRow process the excel.read.row
+func processReadRow(process *process.Process) interface{} {
+ process.ValidateArgNums(2)
+ handle := process.ArgsString(0)
+ sheet := process.ArgsString(1)
+
+ xls, err := Get(handle)
+ if err != nil {
+ exception.New("excel.read.row %s error: %s", 500, handle, err.Error()).Throw()
+ }
+ rows, err := xls.GetRows(sheet)
+ if err != nil {
+ exception.New("excel.read.row %s:%s error: %s", 500, handle, sheet, err.Error()).Throw()
+ }
+ return rows
+}
+
+// processReadColumn process the excel.read.column
+func processReadColumn(process *process.Process) interface{} {
+ process.ValidateArgNums(2)
+ handle := process.ArgsString(0)
+ sheet := process.ArgsString(1)
+
+ xls, err := Get(handle)
+ if err != nil {
+ exception.New("excel.read.column %s error: %s", 500, handle, err.Error()).Throw()
+ }
+ cols, err := xls.GetCols(sheet)
+ if err != nil {
+ exception.New("excel.read.column %s:%s error: %s", 500, handle, sheet, err.Error()).Throw()
+ }
+ return cols
+}
+
+// processWriteCell process the excel.write.cell
+func processWriteCell(process *process.Process) interface{} {
+ process.ValidateArgNums(4)
+ handle := process.ArgsString(0)
+ sheet := process.ArgsString(1)
+ cell := process.ArgsString(2)
+ value := process.Args[3]
+
+ xls, err := Get(handle)
+ if err != nil {
+ exception.New("excel.write.cell %s error: %s", 500, handle, err.Error()).Throw()
+ }
+ err = xls.SetCellValue(sheet, cell, value)
+ if err != nil {
+ exception.New("excel.write.cell %s:%s:%s error: %s", 500, handle, sheet, cell, err.Error()).Throw()
+ }
+ return nil
+}
+
+// processWriteRow process the excel.write.row
+func processWriteRow(process *process.Process) interface{} {
+ process.ValidateArgNums(4)
+ handle := process.ArgsString(0)
+ sheet := process.ArgsString(1)
+ cell := process.ArgsString(2)
+ values := process.Args[3]
+
+ xls, err := Get(handle)
+ if err != nil {
+ exception.New("excel.write.row %s error: %s", 500, handle, err.Error()).Throw()
+ }
+
+ // 处理切片值
+ var rowValues []interface{}
+ if arr, ok := values.([]interface{}); ok {
+ rowValues = arr
+ } else {
+ rowValues = []interface{}{values}
+ }
+
+ // 使用 xls.SetSheetRow 方法,它应该能处理 slice 指针
+ err = xls.SetSheetRow(sheet, cell, &rowValues)
+ if err != nil {
+ exception.New("excel.write.row %s:%s:%s error: %s", 500, handle, sheet, cell, err.Error()).Throw()
+ }
+ return nil
+}
+
+// processWriteColumn process the excel.write.column
+func processWriteColumn(process *process.Process) interface{} {
+ process.ValidateArgNums(4)
+ handle := process.ArgsString(0)
+ sheet := process.ArgsString(1)
+ cell := process.ArgsString(2)
+ values := process.Args[3]
+
+ xls, err := Get(handle)
+ if err != nil {
+ exception.New("excel.write.column %s error: %s", 500, handle, err.Error()).Throw()
+ }
+
+ // 处理切片值
+ var colValues []interface{}
+ if arr, ok := values.([]interface{}); ok {
+ colValues = arr
+ } else {
+ colValues = []interface{}{values}
+ }
+
+ // 使用 xls.SetSheetCol 方法,它应该能处理 slice 指针
+ err = xls.SetSheetCol(sheet, cell, &colValues)
+ if err != nil {
+ exception.New("excel.write.column %s:%s:%s error: %s", 500, handle, sheet, cell, err.Error()).Throw()
+ }
+ return nil
+}
+
+// processWriteAll process the excel.write.all
+func processWriteAll(process *process.Process) interface{} {
+ process.ValidateArgNums(4)
+ handle := process.ArgsString(0)
+ sheet := process.ArgsString(1)
+ cell := process.ArgsString(2)
+ values := process.Args[3]
+
+ xls, err := Get(handle)
+ if err != nil {
+ exception.New("excel.write.all %s error: %s", 500, handle, err.Error()).Throw()
+ }
+
+ // Convert data to [][]interface{}
+ var sheetData [][]interface{}
+ if arr, ok := values.([]interface{}); ok {
+ for _, row := range arr {
+ if rowArr, ok := row.([]interface{}); ok {
+ sheetData = append(sheetData, rowArr)
+ } else {
+ sheetData = append(sheetData, []interface{}{row})
+ }
+ }
+ } else {
+ sheetData = [][]interface{}{{values}}
+ }
+
+ err = xls.WriteAll(sheet, cell, sheetData)
+ if err != nil {
+ exception.New("excel.write.all %s:%s error: %s", 500, handle, sheet, err.Error()).Throw()
+ }
+ return nil
+}
+
+// processSetStyle process the excel.set.style | | | | | | |