diff --git a/classic/.claude/settings.local.json b/classic/.claude/settings.local.json new file mode 100644 index 0000000000..64925a10c5 --- /dev/null +++ b/classic/.claude/settings.local.json @@ -0,0 +1,8 @@ +{ + "permissions": { + "allow": [ + "Bash(tree:*)", + "Bash(grep:*)" + ] + } +} diff --git a/classic/CLAUDE.md b/classic/CLAUDE.md new file mode 100644 index 0000000000..56693742a0 --- /dev/null +++ b/classic/CLAUDE.md @@ -0,0 +1,122 @@ +# CLAUDE.md + +This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository. + +## Project Overview + +AutoGPT Classic is an experimental, **unsupported** project demonstrating autonomous GPT-4 operation. Dependencies will not be updated, and the codebase contains known vulnerabilities. This is preserved for educational/historical purposes. + +## Repository Structure + +``` +/forge - Core autonomous agent framework (main library) +/original_autogpt - Original AutoGPT implementation (depends on forge) +/benchmark - Performance testing/benchmarking tools +``` + +Each Python subproject has its own `pyproject.toml` and uses Poetry for dependency management. + +## Common Commands + +### Setup & Install +```bash +# Install forge (core library) +cd forge && poetry install + +# Install original_autogpt (includes forge as dependency) +cd original_autogpt && poetry install + +# Install benchmark +cd benchmark && poetry install + +# Install with benchmark support (optional extra) +cd forge && poetry install --extras benchmark +cd original_autogpt && poetry install --extras benchmark +``` + +### Running Agents +```bash +# Run forge agent (from forge directory) +cd forge && poetry run python -m forge + +# Run original autogpt (from original_autogpt directory) +cd original_autogpt && poetry run serve --debug + +# Run autogpt CLI +cd original_autogpt && poetry run autogpt +``` + +Agents run on `http://localhost:8000` by default. + +### Benchmarking +```bash +# Run benchmarks against an agent +cd benchmark && poetry run agbenchmark + +# Or from forge/original_autogpt with benchmark extra installed +cd forge && poetry run agbenchmark +cd original_autogpt && poetry run agbenchmark +``` + +### Testing +```bash +cd forge && poetry run pytest # All tests +cd forge && poetry run pytest tests/ # Tests directory only +cd forge && poetry run pytest -k test_name # Single test by name +cd forge && poetry run pytest path/to/test.py # Specific test file +cd forge && poetry run pytest --cov # With coverage +``` + +### Linting & Formatting +```bash +poetry run black . # Format code +poetry run isort . # Sort imports +poetry run flake8 # Lint +poetry run pyright # Type check +``` + +## Architecture + +### Forge (Core Framework) +The `forge` package is the foundation that other components depend on: +- `forge/agent/` - Agent implementation and protocols +- `forge/llm/` - Multi-provider LLM integrations (OpenAI, Anthropic, Groq, LiteLLM) +- `forge/components/` - Reusable agent components +- `forge/file_storage/` - File system abstraction +- `forge/config/` - Configuration management + +### Original AutoGPT +Depends on forge via local path (`autogpt-forge = { path = "../forge" }`): +- `autogpt/app/` - CLI application entry points +- `autogpt/agents/` - Agent implementations +- `autogpt/agent_factory/` - Agent creation logic + +### Benchmark +Independent testing framework for evaluating agent performance: +- `agbenchmark/challenges/` - Test cases organized by category (code, retrieval, memory, etc.) +- `agbenchmark/reports/` - Benchmark result reporting + +### Dependency Chain +`original_autogpt` → `forge` ← `benchmark` (optional extra) + +## Code Style + +- Python 3.10 target +- Line length: 88 characters (Black default) +- Black for formatting, isort for imports (profile="black") +- Type hints with Pyright checking + +## Testing Patterns + +- VCR cassettes in `/forge/tests/vcr_cassettes/` for HTTP mocking +- Async support via pytest-asyncio +- Fixtures defined in `conftest.py` files provide: `tmp_project_root`, `storage`, `config`, `llm_provider`, `agent` +- Tests require `OPENAI_API_KEY` environment variable (defaults to "sk-dummy" for mocked tests) + +## Environment Setup + +Copy `.env.example` to `.env` in the relevant directory and add your API keys: +```bash +cp .env.example .env +# Edit .env with your OPENAI_API_KEY, etc. +``` diff --git a/classic/CLI-USAGE.md b/classic/CLI-USAGE.md deleted file mode 100755 index 5cd8ea6624..0000000000 --- a/classic/CLI-USAGE.md +++ /dev/null @@ -1,182 +0,0 @@ -## CLI Documentation - -This document describes how to interact with the project's CLI (Command Line Interface). It includes the types of outputs you can expect from each command. Note that the `agents stop` command will terminate any process running on port 8000. - -### 1. Entry Point for the CLI - -Running the `./run` command without any parameters will display the help message, which provides a list of available commands and options. Additionally, you can append `--help` to any command to view help information specific to that command. - -```sh -./run -``` - -**Output**: - -``` -Usage: cli.py [OPTIONS] COMMAND [ARGS]... - -Options: - --help Show this message and exit. - -Commands: - agent Commands to create, start and stop agents - benchmark Commands to start the benchmark and list tests and categories - setup Installs dependencies needed for your system. -``` - -If you need assistance with any command, simply add the `--help` parameter to the end of your command, like so: - -```sh -./run COMMAND --help -``` - -This will display a detailed help message regarding that specific command, including a list of any additional options and arguments it accepts. - -### 2. Setup Command - -```sh -./run setup -``` - -**Output**: - -``` -Setup initiated -Installation has been completed. -``` - -This command initializes the setup of the project. - -### 3. Agents Commands - -**a. List All Agents** - -```sh -./run agent list -``` - -**Output**: - -``` -Available agents: 🤖 - 🐙 forge - 🐙 autogpt -``` - -Lists all the available agents. - -**b. Create a New Agent** - -```sh -./run agent create my_agent -``` - -**Output**: - -``` -🎉 New agent 'my_agent' created and switched to the new directory in agents folder. -``` - -Creates a new agent named 'my_agent'. - -**c. Start an Agent** - -```sh -./run agent start my_agent -``` - -**Output**: - -``` -... (ASCII Art representing the agent startup) -[Date and Time] [forge.sdk.db] [DEBUG] 🐛 Initializing AgentDB with database_string: sqlite:///agent.db -[Date and Time] [forge.sdk.agent] [INFO] 📝 Agent server starting on http://0.0.0.0:8000 -``` - -Starts the 'my_agent' and displays startup ASCII art and logs. - -**d. Stop an Agent** - -```sh -./run agent stop -``` - -**Output**: - -``` -Agent stopped -``` - -Stops the running agent. - -### 4. Benchmark Commands - -**a. List Benchmark Categories** - -```sh -./run benchmark categories list -``` - -**Output**: - -``` -Available categories: 📚 - 📖 code - 📖 safety - 📖 memory - ... (and so on) -``` - -Lists all available benchmark categories. - -**b. List Benchmark Tests** - -```sh -./run benchmark tests list -``` - -**Output**: - -``` -Available tests: 📚 - 📖 interface - 🔬 Search - TestSearch - 🔬 Write File - TestWriteFile - ... (and so on) -``` - -Lists all available benchmark tests. - -**c. Show Details of a Benchmark Test** - -```sh -./run benchmark tests details TestWriteFile -``` - -**Output**: - -``` -TestWriteFile -------------- - - Category: interface - Task: Write the word 'Washington' to a .txt file - ... (and other details) -``` - -Displays the details of the 'TestWriteFile' benchmark test. - -**d. Start Benchmark for the Agent** - -```sh -./run benchmark start my_agent -``` - -**Output**: - -``` -(more details about the testing process shown whilst the test are running) -============= 13 failed, 1 passed in 0.97s ============... -``` - -Displays the results of the benchmark tests on 'my_agent'. diff --git a/classic/FORGE-QUICKSTART.md b/classic/FORGE-QUICKSTART.md deleted file mode 100644 index 053e29129b..0000000000 --- a/classic/FORGE-QUICKSTART.md +++ /dev/null @@ -1,173 +0,0 @@ -# Quickstart Guide - -> For the complete getting started [tutorial series](https://aiedge.medium.com/autogpt-forge-e3de53cc58ec) <- click here - -Welcome to the Quickstart Guide! This guide will walk you through setting up, building, and running your own AutoGPT agent. Whether you're a seasoned AI developer or just starting out, this guide will provide you with the steps to jumpstart your journey in AI development with AutoGPT. - -## System Requirements - -This project supports Linux (Debian-based), Mac, and Windows Subsystem for Linux (WSL). If you use a Windows system, you must install WSL. You can find the installation instructions for WSL [here](https://learn.microsoft.com/en-us/windows/wsl/). - - -## Getting Setup -1. **Fork the Repository** - To fork the repository, follow these steps: - - Navigate to the main page of the repository. - - ![Repository](../docs/content/imgs/quickstart/001_repo.png) - - In the top-right corner of the page, click Fork. - - ![Create Fork UI](../docs/content/imgs/quickstart/002_fork.png) - - On the next page, select your GitHub account to create the fork. - - Wait for the forking process to complete. You now have a copy of the repository in your GitHub account. - -2. **Clone the Repository** - To clone the repository, you need to have Git installed on your system. If you don't have Git installed, download it from [here](https://git-scm.com/downloads). Once you have Git installed, follow these steps: - - Open your terminal. - - Navigate to the directory where you want to clone the repository. - - Run the git clone command for the fork you just created - - ![Clone the Repository](../docs/content/imgs/quickstart/003_clone.png) - - - Then open your project in your ide - - ![Open the Project in your IDE](../docs/content/imgs/quickstart/004_ide.png) - -4. **Setup the Project** - Next, we need to set up the required dependencies. We have a tool to help you perform all the tasks on the repo. - It can be accessed by running the `run` command by typing `./run` in the terminal. - - The first command you need to use is `./run setup.` This will guide you through setting up your system. - Initially, you will get instructions for installing Flutter and Chrome and setting up your GitHub access token like the following image: - - ![Setup the Project](../docs/content/imgs/quickstart/005_setup.png) - -### For Windows Users - -If you're a Windows user and experience issues after installing WSL, follow the steps below to resolve them. - -#### Update WSL -Run the following command in Powershell or Command Prompt: -1. Enable the optional WSL and Virtual Machine Platform components. -2. Download and install the latest Linux kernel. -3. Set WSL 2 as the default. -4. Download and install the Ubuntu Linux distribution (a reboot may be required). - -```shell -wsl --install -``` - -For more detailed information and additional steps, refer to [Microsoft's WSL Setup Environment Documentation](https://learn.microsoft.com/en-us/windows/wsl/setup/environment). - -#### Resolve FileNotFoundError or "No such file or directory" Errors -When you run `./run setup`, if you encounter errors like `No such file or directory` or `FileNotFoundError`, it might be because Windows-style line endings (CRLF - Carriage Return Line Feed) are not compatible with Unix/Linux style line endings (LF - Line Feed). - -To resolve this, you can use the `dos2unix` utility to convert the line endings in your script from CRLF to LF. Here’s how to install and run `dos2unix` on the script: - -```shell -sudo apt update -sudo apt install dos2unix -dos2unix ./run -``` - -After executing the above commands, running `./run setup` should work successfully. - -#### Store Project Files within the WSL File System -If you continue to experience issues, consider storing your project files within the WSL file system instead of the Windows file system. This method avoids path translations and permissions issues and provides a more consistent development environment. - -You can keep running the command to get feedback on where you are up to with your setup. -When setup has been completed, the command will return an output like this: - -![Setup Complete](../docs/content/imgs/quickstart/006_setup_complete.png) - -## Creating Your Agent - -After completing the setup, the next step is to create your agent template. -Execute the command `./run agent create YOUR_AGENT_NAME`, where `YOUR_AGENT_NAME` should be replaced with your chosen name. - -Tips for naming your agent: -* Give it its own unique name, or name it after yourself -* Include an important aspect of your agent in the name, such as its purpose - -Examples: `SwiftyosAssistant`, `PwutsPRAgent`, `MySuperAgent` - -![Create an Agent](../docs/content/imgs/quickstart/007_create_agent.png) - -## Running your Agent - -Your agent can be started using the command: `./run agent start YOUR_AGENT_NAME` - -This starts the agent on the URL: `http://localhost:8000/` - -![Start the Agent](../docs/content/imgs/quickstart/009_start_agent.png) - -The front end can be accessed from `http://localhost:8000/`; first, you must log in using either a Google account or your GitHub account. - -![Login](../docs/content/imgs/quickstart/010_login.png) - -Upon logging in, you will get a page that looks something like this: your task history down the left-hand side of the page, and the 'chat' window to send tasks to your agent. - -![Login](../docs/content/imgs/quickstart/011_home.png) - -When you have finished with your agent or just need to restart it, use Ctl-C to end the session. Then, you can re-run the start command. - -If you are having issues and want to ensure the agent has been stopped, there is a `./run agent stop` command, which will kill the process using port 8000, which should be the agent. - -## Benchmarking your Agent - -The benchmarking system can also be accessed using the CLI too: - -```bash -agpt % ./run benchmark -Usage: cli.py benchmark [OPTIONS] COMMAND [ARGS]... - - Commands to start the benchmark and list tests and categories - -Options: - --help Show this message and exit. - -Commands: - categories Benchmark categories group command - start Starts the benchmark command - tests Benchmark tests group command -agpt % ./run benchmark categories -Usage: cli.py benchmark categories [OPTIONS] COMMAND [ARGS]... - - Benchmark categories group command - -Options: - --help Show this message and exit. - -Commands: - list List benchmark categories command -agpt % ./run benchmark tests -Usage: cli.py benchmark tests [OPTIONS] COMMAND [ARGS]... - - Benchmark tests group command - -Options: - --help Show this message and exit. - -Commands: - details Benchmark test details command - list List benchmark tests command -``` - -The benchmark has been split into different categories of skills you can test your agent on. You can see what categories are available with -```bash -./run benchmark categories list -# And what tests are available with -./run benchmark tests list -``` - -![Login](../docs/content/imgs/quickstart/012_tests.png) - - -Finally, you can run the benchmark with - -```bash -./run benchmark start YOUR_AGENT_NAME - -``` - -> diff --git a/classic/README.md b/classic/README.md index 97f711b9fa..65c0882933 100644 --- a/classic/README.md +++ b/classic/README.md @@ -4,7 +4,7 @@ AutoGPT Classic was an experimental project to demonstrate autonomous GPT-4 oper ## Project Status -⚠️ **This project is unsupported, and dependencies will not be updated. It was an experiment that has concluded its initial research phase. If you want to use AutoGPT, you should use the [AutoGPT Platform](/autogpt_platform)** +**This project is unsupported, and dependencies will not be updated.** It was an experiment that has concluded its initial research phase. If you want to use AutoGPT, you should use the [AutoGPT Platform](/autogpt_platform). For those interested in autonomous AI agents, we recommend exploring more actively maintained alternatives or referring to this codebase for educational purposes only. @@ -16,37 +16,76 @@ AutoGPT Classic was one of the first implementations of autonomous AI agents - A - Learn from the results and adjust its approach - Chain multiple actions together to achieve an objective -## Key Features - -- 🔄 Autonomous task chaining -- 🛠 Tool and API integration capabilities -- 💾 Memory management for context retention -- 🔍 Web browsing and information gathering -- 📝 File operations and content creation -- 🔄 Self-prompting and task breakdown - ## Structure -The project is organized into several key components: - `/benchmark` - Performance testing tools - `/forge` - Core autonomous agent framework -- `/frontend` - User interface components - `/original_autogpt` - Original implementation ## Getting Started -While this project is no longer actively maintained, you can still explore the codebase: +### Prerequisites + +- Python 3.10+ +- [Poetry](https://python-poetry.org/docs/#installation) + +### Installation -1. Clone the repository: ```bash +# Clone the repository git clone https://github.com/Significant-Gravitas/AutoGPT.git cd classic + +# Install forge (core library) +cd forge && poetry install + +# Or install original_autogpt (includes forge as dependency) +cd original_autogpt && poetry install + +# Install benchmark (optional) +cd benchmark && poetry install ``` -2. Review the documentation: -- For reference, see the [documentation](https://docs.agpt.co). You can browse at the same point in time as this commit so the docs don't change. -- Check `CLI-USAGE.md` for command-line interface details -- Refer to `TROUBLESHOOTING.md` for common issues +### Configuration + +Copy the example environment file and add your API keys: + +```bash +cp .env.example .env +# Edit .env with your OPENAI_API_KEY, etc. +``` + +### Running + +```bash +# Run forge agent +cd forge && poetry run python -m forge + +# Run original autogpt server +cd original_autogpt && poetry run serve --debug + +# Run autogpt CLI +cd original_autogpt && poetry run autogpt +``` + +Agents run on `http://localhost:8000` by default. + +### Benchmarking + +```bash +cd benchmark && poetry run agbenchmark +``` + +### Testing + +```bash +cd forge && poetry run pytest +cd original_autogpt && poetry run pytest +``` + +## Security Notice + +This codebase has **known vulnerabilities** and issues with its dependencies. It will not be updated to new dependencies. Use for educational purposes only. ## License @@ -55,27 +94,3 @@ This project segment is licensed under the MIT License - see the [LICENSE](LICEN ## Documentation Please refer to the [documentation](https://docs.agpt.co) for more detailed information about the project's architecture and concepts. -You can browse at the same point in time as this commit so the docs don't change. - -## Historical Impact - -AutoGPT Classic played a significant role in advancing the field of autonomous AI agents: -- Demonstrated practical implementation of AI autonomy -- Inspired numerous derivative projects and research -- Contributed to the development of AI agent architectures -- Helped identify key challenges in AI autonomy - -## Security Notice - -If you're studying this codebase, please understand this has KNOWN vulnerabilities and issues with its dependencies. It will not be updated to new dependencies. - -## Community & Support - -While active development has concluded: -- The codebase remains available for study and reference -- Historical discussions can be found in project issues -- Related research and developments continue in the broader AI agent community - -## Acknowledgments - -Thanks to all contributors who participated in this experimental project and helped advance the field of autonomous AI agents. diff --git a/classic/benchmark/run.sh b/classic/benchmark/run.sh deleted file mode 100755 index d4136b10a3..0000000000 --- a/classic/benchmark/run.sh +++ /dev/null @@ -1,18 +0,0 @@ -# poetry install -# poetry shell - -# cp .env.example .env -# fill out OpenAI Key -# git submodule update --init --remote --recursive - -# cd backend -# pip install -r requirement.txt -# uvicorn main:app --reload - -# cd .. - -# cd frontend -# npm install -# npm run dev - -# localhost:3000 \ No newline at end of file diff --git a/classic/cli.py b/classic/cli.py deleted file mode 100644 index 1c2634b23d..0000000000 --- a/classic/cli.py +++ /dev/null @@ -1,511 +0,0 @@ -""" -This is a minimal file intended to be run by users to help them manage the autogpt projects. - -If you want to contribute, please use only libraries that come as part of Python. -To ensure efficiency, add the imports to the functions so only what is needed is imported. -""" -try: - import click -except ImportError: - import os - - os.system("pip3 install click") - import click - - -@click.group() -def cli(): - pass - - -@cli.command() -def setup(): - """Installs dependencies needed for your system. Works with Linux, MacOS and Windows WSL.""" - import os - import subprocess - - click.echo( - click.style( - """ - d8888 888 .d8888b. 8888888b. 88888888888 - d88888 888 d88P Y88b 888 Y88b 888 - d88P888 888 888 888 888 888 888 - d88P 888 888 888 888888 .d88b. 888 888 d88P 888 - d88P 888 888 888 888 d88""88b 888 88888 8888888P" 888 - d88P 888 888 888 888 888 888 888 888 888 888 - d8888888888 Y88b 888 Y88b. Y88..88P Y88b d88P 888 888 -d88P 888 "Y88888 "Y888 "Y88P" "Y8888P88 888 888 - -""", - fg="green", - ) - ) - - script_dir = os.path.dirname(os.path.realpath(__file__)) - setup_script = os.path.join(script_dir, "setup.sh") - install_error = False - if os.path.exists(setup_script): - click.echo(click.style("🚀 Setup initiated...\n", fg="green")) - try: - subprocess.check_call([setup_script], cwd=script_dir) - except subprocess.CalledProcessError: - click.echo( - click.style("❌ There was an issue with the installation.", fg="red") - ) - install_error = True - else: - click.echo( - click.style( - "❌ Error: setup.sh does not exist in the current directory.", fg="red" - ) - ) - install_error = True - - if install_error: - click.echo( - click.style( - "\n\n🔴 If you need help, please raise a ticket on GitHub at https://github.com/Significant-Gravitas/AutoGPT/issues\n\n", - fg="magenta", - bold=True, - ) - ) - else: - click.echo(click.style("🎉 Setup completed!\n", fg="green")) - - -@cli.group() -def agent(): - """Commands to create, start and stop agents""" - pass - - -@agent.command() -@click.argument("agent_name") -def create(agent_name: str): - """Create's a new agent with the agent name provided""" - import os - import re - import shutil - - if not re.match(r"\w*$", agent_name): - click.echo( - click.style( - f"😞 Agent name '{agent_name}' is not valid. It should not contain spaces or special characters other than -_", - fg="red", - ) - ) - return - try: - new_agent_dir = f"./agents/{agent_name}" - new_agent_name = f"{agent_name.lower()}.json" - - if not os.path.exists(new_agent_dir): - shutil.copytree("./forge", new_agent_dir) - click.echo( - click.style( - f"🎉 New agent '{agent_name}' created. The code for your new agent is in: agents/{agent_name}", - fg="green", - ) - ) - else: - click.echo( - click.style( - f"😞 Agent '{agent_name}' already exists. Enter a different name for your agent, the name needs to be unique regardless of case", - fg="red", - ) - ) - except Exception as e: - click.echo(click.style(f"😢 An error occurred: {e}", fg="red")) - - -@agent.command() -@click.argument("agent_name") -@click.option( - "--no-setup", - is_flag=True, - help="Disables running the setup script before starting the agent", -) -def start(agent_name: str, no_setup: bool): - """Start agent command""" - import os - import subprocess - - script_dir = os.path.dirname(os.path.realpath(__file__)) - agent_dir = os.path.join( - script_dir, - f"agents/{agent_name}" - if agent_name not in ["original_autogpt", "forge"] - else agent_name, - ) - run_command = os.path.join(agent_dir, "run") - run_bench_command = os.path.join(agent_dir, "run_benchmark") - if ( - os.path.exists(agent_dir) - and os.path.isfile(run_command) - and os.path.isfile(run_bench_command) - ): - os.chdir(agent_dir) - if not no_setup: - click.echo(f"⌛ Running setup for agent '{agent_name}'...") - setup_process = subprocess.Popen(["./setup"], cwd=agent_dir) - setup_process.wait() - click.echo() - - # FIXME: Doesn't work: Command not found: agbenchmark - # subprocess.Popen(["./run_benchmark", "serve"], cwd=agent_dir) - # click.echo("⌛ (Re)starting benchmark server...") - # wait_until_conn_ready(8080) - # click.echo() - - subprocess.Popen(["./run"], cwd=agent_dir) - click.echo(f"⌛ (Re)starting agent '{agent_name}'...") - wait_until_conn_ready(8000) - click.echo("✅ Agent application started and available on port 8000") - elif not os.path.exists(agent_dir): - click.echo( - click.style( - f"😞 Agent '{agent_name}' does not exist. Please create the agent first.", - fg="red", - ) - ) - else: - click.echo( - click.style( - f"😞 Run command does not exist in the agent '{agent_name}' directory.", - fg="red", - ) - ) - - -@agent.command() -def stop(): - """Stop agent command""" - import os - import signal - import subprocess - - try: - pids = subprocess.check_output(["lsof", "-t", "-i", ":8000"]).split() - if isinstance(pids, int): - os.kill(int(pids), signal.SIGTERM) - else: - for pid in pids: - os.kill(int(pid), signal.SIGTERM) - except subprocess.CalledProcessError: - click.echo("No process is running on port 8000") - - try: - pids = int(subprocess.check_output(["lsof", "-t", "-i", ":8080"])) - if isinstance(pids, int): - os.kill(int(pids), signal.SIGTERM) - else: - for pid in pids: - os.kill(int(pid), signal.SIGTERM) - except subprocess.CalledProcessError: - click.echo("No process is running on port 8080") - - -@agent.command() -def list(): - """List agents command""" - import os - - try: - agents_dir = "./agents" - agents_list = [ - d - for d in os.listdir(agents_dir) - if os.path.isdir(os.path.join(agents_dir, d)) - ] - if os.path.isdir("./original_autogpt"): - agents_list.append("original_autogpt") - if agents_list: - click.echo(click.style("Available agents: 🤖", fg="green")) - for agent in agents_list: - click.echo(click.style(f"\t🐙 {agent}", fg="blue")) - else: - click.echo(click.style("No agents found 😞", fg="red")) - except FileNotFoundError: - click.echo(click.style("The agents directory does not exist 😢", fg="red")) - except Exception as e: - click.echo(click.style(f"An error occurred: {e} 😢", fg="red")) - - -@cli.group() -def benchmark(): - """Commands to start the benchmark and list tests and categories""" - pass - - -@benchmark.command( - context_settings=dict( - ignore_unknown_options=True, - ) -) -@click.argument("agent_name") -@click.argument("subprocess_args", nargs=-1, type=click.UNPROCESSED) -def start(agent_name, subprocess_args): - """Starts the benchmark command""" - import os - import subprocess - - script_dir = os.path.dirname(os.path.realpath(__file__)) - agent_dir = os.path.join( - script_dir, - f"agents/{agent_name}" - if agent_name not in ["original_autogpt", "forge"] - else agent_name, - ) - benchmark_script = os.path.join(agent_dir, "run_benchmark") - if os.path.exists(agent_dir) and os.path.isfile(benchmark_script): - os.chdir(agent_dir) - subprocess.Popen([benchmark_script, *subprocess_args], cwd=agent_dir) - click.echo( - click.style( - f"🚀 Running benchmark for '{agent_name}' with subprocess arguments: {' '.join(subprocess_args)}", - fg="green", - ) - ) - else: - click.echo( - click.style( - f"😞 Agent '{agent_name}' does not exist. Please create the agent first.", - fg="red", - ) - ) - - -@benchmark.group(name="categories") -def benchmark_categories(): - """Benchmark categories group command""" - pass - - -@benchmark_categories.command(name="list") -def benchmark_categories_list(): - """List benchmark categories command""" - import glob - import json - import os - - categories = set() - - # Get the directory of this file - this_dir = os.path.dirname(os.path.abspath(__file__)) - - glob_path = os.path.join( - this_dir, - "./benchmark/agbenchmark/challenges/**/[!deprecated]*/data.json", - ) - # Use it as the base for the glob pattern, excluding 'deprecated' directory - for data_file in glob.glob(glob_path, recursive=True): - if "deprecated" not in data_file: - with open(data_file, "r") as f: - try: - data = json.load(f) - categories.update(data.get("category", [])) - except json.JSONDecodeError: - print(f"Error: {data_file} is not a valid JSON file.") - continue - except IOError: - print(f"IOError: file could not be read: {data_file}") - continue - - if categories: - click.echo(click.style("Available categories: 📚", fg="green")) - for category in categories: - click.echo(click.style(f"\t📖 {category}", fg="blue")) - else: - click.echo(click.style("No categories found 😞", fg="red")) - - -@benchmark.group(name="tests") -def benchmark_tests(): - """Benchmark tests group command""" - pass - - -@benchmark_tests.command(name="list") -def benchmark_tests_list(): - """List benchmark tests command""" - import glob - import json - import os - import re - - tests = {} - - # Get the directory of this file - this_dir = os.path.dirname(os.path.abspath(__file__)) - - glob_path = os.path.join( - this_dir, - "./benchmark/agbenchmark/challenges/**/[!deprecated]*/data.json", - ) - # Use it as the base for the glob pattern, excluding 'deprecated' directory - for data_file in glob.glob(glob_path, recursive=True): - if "deprecated" not in data_file: - with open(data_file, "r") as f: - try: - data = json.load(f) - category = data.get("category", []) - test_name = data.get("name", "") - if category and test_name: - if category[0] not in tests: - tests[category[0]] = [] - tests[category[0]].append(test_name) - except json.JSONDecodeError: - print(f"Error: {data_file} is not a valid JSON file.") - continue - except IOError: - print(f"IOError: file could not be read: {data_file}") - continue - - if tests: - click.echo(click.style("Available tests: 📚", fg="green")) - for category, test_list in tests.items(): - click.echo(click.style(f"\t📖 {category}", fg="blue")) - for test in sorted(test_list): - test_name = ( - " ".join(word for word in re.split("([A-Z][a-z]*)", test) if word) - .replace("_", "") - .replace("C L I", "CLI") - .replace(" ", " ") - ) - test_name_padded = f"{test_name:<40}" - click.echo(click.style(f"\t\t🔬 {test_name_padded} - {test}", fg="cyan")) - else: - click.echo(click.style("No tests found 😞", fg="red")) - - -@benchmark_tests.command(name="details") -@click.argument("test_name") -def benchmark_tests_details(test_name): - """Benchmark test details command""" - import glob - import json - import os - - # Get the directory of this file - this_dir = os.path.dirname(os.path.abspath(__file__)) - - glob_path = os.path.join( - this_dir, - "./benchmark/agbenchmark/challenges/**/[!deprecated]*/data.json", - ) - # Use it as the base for the glob pattern, excluding 'deprecated' directory - for data_file in glob.glob(glob_path, recursive=True): - with open(data_file, "r") as f: - try: - data = json.load(f) - if data.get("name") == test_name: - click.echo( - click.style( - f"\n{data.get('name')}\n{'-'*len(data.get('name'))}\n", - fg="blue", - ) - ) - click.echo( - click.style( - f"\tCategory: {', '.join(data.get('category'))}", - fg="green", - ) - ) - click.echo(click.style(f"\tTask: {data.get('task')}", fg="green")) - click.echo( - click.style( - f"\tDependencies: {', '.join(data.get('dependencies')) if data.get('dependencies') else 'None'}", - fg="green", - ) - ) - click.echo( - click.style(f"\tCutoff: {data.get('cutoff')}\n", fg="green") - ) - click.echo( - click.style("\tTest Conditions\n\t-------", fg="magenta") - ) - click.echo( - click.style( - f"\t\tAnswer: {data.get('ground').get('answer')}", - fg="magenta", - ) - ) - click.echo( - click.style( - f"\t\tShould Contain: {', '.join(data.get('ground').get('should_contain'))}", - fg="magenta", - ) - ) - click.echo( - click.style( - f"\t\tShould Not Contain: {', '.join(data.get('ground').get('should_not_contain'))}", - fg="magenta", - ) - ) - click.echo( - click.style( - f"\t\tFiles: {', '.join(data.get('ground').get('files'))}", - fg="magenta", - ) - ) - click.echo( - click.style( - f"\t\tEval: {data.get('ground').get('eval').get('type')}\n", - fg="magenta", - ) - ) - click.echo(click.style("\tInfo\n\t-------", fg="yellow")) - click.echo( - click.style( - f"\t\tDifficulty: {data.get('info').get('difficulty')}", - fg="yellow", - ) - ) - click.echo( - click.style( - f"\t\tDescription: {data.get('info').get('description')}", - fg="yellow", - ) - ) - click.echo( - click.style( - f"\t\tSide Effects: {', '.join(data.get('info').get('side_effects'))}", - fg="yellow", - ) - ) - break - - except json.JSONDecodeError: - print(f"Error: {data_file} is not a valid JSON file.") - continue - except IOError: - print(f"IOError: file could not be read: {data_file}") - continue - - -def wait_until_conn_ready(port: int = 8000, timeout: int = 30): - """ - Polls localhost:{port} until it is available for connections - - Params: - port: The port for which to wait until it opens - timeout: Timeout in seconds; maximum amount of time to wait - - Raises: - TimeoutError: If the timeout (seconds) expires before the port opens - """ - import socket - import time - - start = time.time() - while True: - time.sleep(0.5) - with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s: - if s.connect_ex(("localhost", port)) == 0: - break - if time.time() > start + timeout: - raise TimeoutError(f"Port {port} did not open within {timeout} seconds") - - -if __name__ == "__main__": - cli() diff --git a/classic/forge/CLAUDE.md b/classic/forge/CLAUDE.md new file mode 100644 index 0000000000..5935856abd --- /dev/null +++ b/classic/forge/CLAUDE.md @@ -0,0 +1,424 @@ +# CLAUDE.md + +This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository. + +## Quick Reference + +```bash +# Run forge agent server (port 8000) +poetry run python -m forge + +# Run tests +poetry run pytest +poetry run pytest --cov=forge +poetry run pytest -k test_name +``` + +## Entry Point + +`__main__.py` → loads `.env` → configures logging → starts Uvicorn with hot-reload on port 8000 + +The app is created in `app.py`: +```python +agent = ForgeAgent(database=database, workspace=workspace) +app = agent.get_agent_app() +``` + +## Directory Structure + +``` +forge/ +├── __main__.py # Entry: uvicorn server startup +├── app.py # FastAPI app creation +├── agent/ # Core agent framework +│ ├── base.py # BaseAgent abstract class +│ ├── forge_agent.py # Reference implementation +│ ├── components.py # AgentComponent base classes +│ └── protocols.py # Protocol interfaces +├── agent_protocol/ # Agent Protocol standard +│ ├── agent.py # ProtocolAgent mixin +│ ├── api_router.py # FastAPI routes +│ └── database/ # Task/step persistence +├── command/ # Command system +│ ├── command.py # Command class +│ ├── decorator.py # @command decorator +│ └── parameter.py # CommandParameter +├── components/ # Built-in components +│ ├── action_history/ # Track & summarize actions +│ ├── code_executor/ # Python & shell execution +│ ├── context/ # File/folder context +│ ├── file_manager/ # File operations +│ ├── git_operations/ # Git commands +│ ├── image_gen/ # DALL-E & SD +│ ├── system/ # Core directives + finish +│ ├── user_interaction/ # User prompts +│ ├── watchdog/ # Loop detection +│ └── web/ # Search & Selenium +├── config/ # Configuration models +├── llm/ # LLM integration +│ └── providers/ # OpenAI, Anthropic, Groq, etc. +├── file_storage/ # Storage abstraction +│ ├── base.py # FileStorage ABC +│ ├── local.py # LocalFileStorage +│ ├── s3.py # S3FileStorage +│ └── gcs.py # GCSFileStorage +├── models/ # Core data models +├── content_processing/ # Text/HTML utilities +├── logging/ # Structured logging +└── json/ # JSON parsing utilities +``` + +## Core Abstractions + +### BaseAgent (`agent/base.py`) + +Abstract base for all agents. Generic over proposal type. + +```python +class BaseAgent(Generic[AnyProposal], metaclass=AgentMeta): + def __init__(self, settings: BaseAgentSettings) +``` + +**Must Override:** +```python +async def propose_action(self) -> AnyProposal +async def execute(self, proposal: AnyProposal, user_feedback: str) -> ActionResult +async def do_not_execute(self, denied_proposal: AnyProposal, user_feedback: str) -> ActionResult +``` + +**Key Methods:** +```python +async def run_pipeline(protocol_method, *args, retry_limit=3) -> list +# Executes protocol across all matching components with retry logic + +def dump_component_configs(self) -> str # Serialize configs to JSON +def load_component_configs(self, json: str) # Restore configs +``` + +**Configuration (`BaseAgentConfiguration`):** +```python +fast_llm: ModelName = "gpt-3.5-turbo-16k" +smart_llm: ModelName = "gpt-4" +big_brain: bool = True # Use smart_llm +cycle_budget: Optional[int] = 1 # Steps before approval needed +send_token_limit: Optional[int] # Prompt token budget +use_functions_api: bool = False +``` + +### Component System (`agent/components.py`) + +**AgentComponent** - Base for all components: +```python +class AgentComponent(ABC): + _run_after: list[type[AgentComponent]] = [] + _enabled: bool | Callable[[], bool] = True + _disabled_reason: str = "" + + def run_after(self, *components) -> Self # Set execution order + def enabled(self) -> bool # Check if active +``` + +**ConfigurableComponent** - Components with Pydantic config: +```python +class ConfigurableComponent(Generic[BM]): + config_class: ClassVar[type[BM]] # Set in subclass + + @property + def config(self) -> BM # Get/create config from env +``` + +**Component Discovery:** +1. Agent assigns components: `self.foo = FooComponent()` +2. `AgentMeta.__call__` triggers `_collect_components()` +3. Components are topologically sorted by `run_after` dependencies +4. Disabled components skipped during pipeline execution + +### Protocols (`agent/protocols.py`) + +Protocols define what components CAN do: + +```python +class DirectiveProvider(AgentComponent): + def get_constraints(self) -> Iterator[str] + def get_resources(self) -> Iterator[str] + def get_best_practices(self) -> Iterator[str] + +class CommandProvider(AgentComponent): + def get_commands(self) -> Iterator[Command] + +class MessageProvider(AgentComponent): + def get_messages(self) -> Iterator[ChatMessage] + +class AfterParse(AgentComponent, Generic[AnyProposal]): + def after_parse(self, result: AnyProposal) -> None + +class AfterExecute(AgentComponent): + def after_execute(self, result: ActionResult) -> None + +class ExecutionFailure(AgentComponent): + def execution_failure(self, error: Exception) -> None +``` + +**Pipeline execution:** +```python +results = await self.run_pipeline(CommandProvider.get_commands) +# Iterates all components implementing CommandProvider +# Collects all yielded Commands +# Handles retries on ComponentEndpointError +``` + +## LLM Providers (`llm/providers/`) + +### MultiProvider + +Routes to correct provider based on model name: + +```python +class MultiProvider: + async def create_chat_completion( + self, + model_prompt: list[ChatMessage], + model_name: ModelName, + **kwargs + ) -> ChatModelResponse + + async def get_available_chat_models(self) -> Sequence[ChatModelInfo] +``` + +### Supported Models + +```python +# OpenAI +OpenAIModelName.GPT3, GPT3_16k, GPT4, GPT4_32k, GPT4_TURBO, GPT4_O + +# Anthropic +AnthropicModelName.CLAUDE3_OPUS, CLAUDE3_SONNET, CLAUDE3_HAIKU +AnthropicModelName.CLAUDE3_5_SONNET, CLAUDE3_5_SONNET_v2, CLAUDE3_5_HAIKU +AnthropicModelName.CLAUDE4_SONNET, CLAUDE4_OPUS, CLAUDE4_5_OPUS + +# Groq +GroqModelName.LLAMA3_8B, LLAMA3_70B, MIXTRAL_8X7B +``` + +### Key Types + +```python +class ChatMessage(BaseModel): + role: Role # USER, SYSTEM, ASSISTANT, TOOL, FUNCTION + content: str + +class AssistantFunctionCall(BaseModel): + name: str + arguments: dict[str, Any] + +class ChatModelResponse(BaseModel): + completion_text: str + function_calls: list[AssistantFunctionCall] +``` + +## File Storage (`file_storage/`) + +Abstract interface for file operations: + +```python +class FileStorage(ABC): + def open_file(self, path, mode="r", binary=False) -> IO + def read_file(self, path, binary=False) -> str | bytes + async def write_file(self, path, content) -> None + def list_files(self, path=".") -> list[Path] + def list_folders(self, path=".", recursive=False) -> list[Path] + def delete_file(self, path) -> None + def exists(self, path) -> bool + def clone_with_subroot(self, subroot) -> FileStorage +``` + +**Implementations:** `LocalFileStorage`, `S3FileStorage`, `GCSFileStorage` + +## Command System (`command/`) + +### @command Decorator + +```python +@command( + names=["greet", "hello"], + description="Greet a user", + parameters={ + "name": JSONSchema(type=JSONSchema.Type.STRING, required=True), + "greeting": JSONSchema(type=JSONSchema.Type.STRING, required=False), + }, +) +def greet(self, name: str, greeting: str = "Hello") -> str: + return f"{greeting}, {name}!" +``` + +### Providing Commands + +```python +class MyComponent(CommandProvider): + def get_commands(self) -> Iterator[Command]: + yield self.greet # Decorated method becomes Command +``` + +## Built-in Components + +| Component | Protocols | Purpose | +|-----------|-----------|---------| +| `SystemComponent` | DirectiveProvider, MessageProvider, CommandProvider | Core directives, `finish` command | +| `FileManagerComponent` | DirectiveProvider, CommandProvider | read/write/list files | +| `CodeExecutorComponent` | CommandProvider | Python & shell execution (Docker) | +| `WebSearchComponent` | DirectiveProvider, CommandProvider | DuckDuckGo & Google search | +| `WebSeleniumComponent` | CommandProvider | Browser automation | +| `ActionHistoryComponent` | MessageProvider, AfterParse, AfterExecute | Track & summarize history | +| `WatchdogComponent` | AfterParse | Loop detection, LLM switching | +| `ContextComponent` | MessageProvider, CommandProvider | Keep files in prompt context | +| `ImageGeneratorComponent` | CommandProvider | DALL-E, Stable Diffusion | +| `GitOperationsComponent` | CommandProvider | Git commands | +| `UserInteractionComponent` | CommandProvider | `ask_user` command | + +## Configuration + +### BaseAgentSettings + +```python +class BaseAgentSettings(SystemSettings): + agent_id: str + ai_profile: AIProfile # name, role, goals + directives: AIDirectives # constraints, resources, best_practices + task: str + config: BaseAgentConfiguration +``` + +### UserConfigurable Fields + +```python +class MyConfig(SystemConfiguration): + api_key: SecretStr = UserConfigurable(from_env="API_KEY", exclude=True) + max_retries: int = UserConfigurable(default=3, from_env="MAX_RETRIES") + +config = MyConfig.from_env() # Load from environment +``` + +## Agent Protocol (`agent_protocol/`) + +REST API for task-based interaction: + +``` +POST /ap/v1/agent/tasks # Create task +GET /ap/v1/agent/tasks # List tasks +GET /ap/v1/agent/tasks/{id} # Get task +POST /ap/v1/agent/tasks/{id}/steps # Execute step +GET /ap/v1/agent/tasks/{id}/steps # List steps +GET /ap/v1/agent/tasks/{id}/artifacts # List artifacts +``` + +**ProtocolAgent mixin** provides these endpoints + database persistence. + +## Testing + +**Fixtures** (`conftest.py`): +- `storage` - Temporary LocalFileStorage +- VCR cassettes in `tests/vcr_cassettes/` + +```bash +poetry run pytest # All tests +poetry run pytest --cov=forge # With coverage +poetry run pytest --record-mode=all # Record HTTP cassettes +``` + +## Creating a Custom Component + +```python +from forge.agent.components import AgentComponent, ConfigurableComponent +from forge.agent.protocols import CommandProvider +from forge.command import command +from forge.models.json_schema import JSONSchema + +class MyConfig(BaseModel): + setting: str = "default" + +class MyComponent(CommandProvider, ConfigurableComponent[MyConfig]): + config_class = MyConfig + + def get_commands(self) -> Iterator[Command]: + yield self.my_command + + @command( + names=["mycmd"], + description="Do something", + parameters={"arg": JSONSchema(type=JSONSchema.Type.STRING, required=True)}, + ) + def my_command(self, arg: str) -> str: + return f"Result: {arg}" +``` + +## Creating a Custom Agent + +```python +from forge.agent.forge_agent import ForgeAgent + +class MyAgent(ForgeAgent): + def __init__(self, database, workspace): + super().__init__(database, workspace) + self.my_component = MyComponent() + + async def propose_action(self) -> ActionProposal: + # 1. Collect directives + constraints = await self.run_pipeline(DirectiveProvider.get_constraints) + resources = await self.run_pipeline(DirectiveProvider.get_resources) + + # 2. Collect commands + commands = await self.run_pipeline(CommandProvider.get_commands) + + # 3. Collect messages + messages = await self.run_pipeline(MessageProvider.get_messages) + + # 4. Build prompt and call LLM + response = await self.llm_provider.create_chat_completion( + model_prompt=messages, + model_name=self.config.smart_llm, + functions=function_specs_from_commands(commands), + ) + + # 5. Parse and return proposal + return ActionProposal( + thoughts=response.completion_text, + use_tool=response.function_calls[0], + raw_message=AssistantChatMessage(content=response.completion_text), + ) +``` + +## Key Patterns + +### Component Ordering +```python +self.component_a = ComponentA() +self.component_b = ComponentB().run_after(self.component_a) +``` + +### Conditional Enabling +```python +self.search = WebSearchComponent() +self.search._enabled = bool(os.getenv("GOOGLE_API_KEY")) +self.search._disabled_reason = "No Google API key" +``` + +### Pipeline Retry Logic +- `ComponentEndpointError` → retry same component (3x) +- `EndpointPipelineError` → restart all components (3x) +- `ComponentSystemError` → restart all pipelines + +## Key Files Reference + +| Purpose | Location | +|---------|----------| +| Entry point | `__main__.py` | +| FastAPI app | `app.py` | +| Base agent | `agent/base.py` | +| Reference agent | `agent/forge_agent.py` | +| Components base | `agent/components.py` | +| Protocols | `agent/protocols.py` | +| LLM providers | `llm/providers/` | +| File storage | `file_storage/` | +| Commands | `command/` | +| Built-in components | `components/` | +| Agent Protocol | `agent_protocol/` | diff --git a/classic/forge/run b/classic/forge/run deleted file mode 100755 index 5d676909a5..0000000000 --- a/classic/forge/run +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/bash - -kill $(lsof -t -i :8000) - -if [ ! -f .env ]; then - cp .env.example .env - echo "Please add your api keys to the .env file." -fi -poetry run python -m forge diff --git a/classic/forge/run_benchmark b/classic/forge/run_benchmark deleted file mode 100755 index 6830fe8d29..0000000000 --- a/classic/forge/run_benchmark +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/bash - -# Kill processes using port 8080 if any. -if lsof -t -i :8080; then - kill $(lsof -t -i :8080) -fi -# This is the cli entry point for the benchmarking tool. -# To run this in server mode pass in `serve` as the first argument. -poetry run agbenchmark "$@" diff --git a/classic/forge/setup b/classic/forge/setup deleted file mode 100755 index 5fab8ac33a..0000000000 --- a/classic/forge/setup +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/bash - - ENV_PATH=$(poetry env info --path) - if [ -d "$ENV_PATH" ]; then - if [ -e delete ]; then - rm -rf "$ENV_PATH" || { echo "Please manually remove $ENV_PATH"; exit 1; } - else - echo "Press ENTER to remove $ENV_PATH" - read && { rm -r "$ENV_PATH" && echo "Removed the poetry environment at $ENV_PATH."; } || { echo "Please manually remove $ENV_PATH."; exit 1; } - fi - else - echo "No poetry environment found." - fi - - poetry install --extras benchmark - echo "Setup completed successfully." - exit 0 diff --git a/classic/forge/tutorials/001_getting_started.md b/classic/forge/tutorials/001_getting_started.md deleted file mode 100644 index 00268c7315..0000000000 --- a/classic/forge/tutorials/001_getting_started.md +++ /dev/null @@ -1,120 +0,0 @@ -## [AutoGPT Forge Part 1: A Comprehensive Guide to Your First Steps](https://aiedge.medium.com/autogpt-forge-a-comprehensive-guide-to-your-first-steps-a1dfdf46e3b4) - -![Header](..%2F..%2F..%2Fdocs/content/imgs/quickstart/000_header_img.png) - -**Written by Craig Swift & [Ryan Brandt](https://github.com/paperMoose)** - - -Welcome to the getting started Tutorial! This tutorial is designed to walk you through the process of setting up and running your own AutoGPT agent in the Forge environment. Whether you are a seasoned AI developer or just starting out, this guide will equip you with the necessary steps to jumpstart your journey in the world of AI development with AutoGPT. - -## Section 1: Understanding the Forge - -The Forge serves as a comprehensive template for building your own AutoGPT agent. It not only provides the setting for setting up, creating, and running your agent, but also includes the benchmarking system and the frontend for testing it. We'll touch more on those later! For now just think of the forge as a way to easily generate your boilerplate in a standardized way. - -## Section 2: Setting up the Forge Environment - -To begin, you need to fork the [repository](https://github.com/Significant-Gravitas/AutoGPT) by navigating to the main page of the repository and clicking **Fork** in the top-right corner. - -![The Github repository](..%2F..%2F..%2Fdocs/content/imgs/quickstart/001_repo.png) - -Follow the on-screen instructions to complete the process. - -![Create Fork Page](..%2F..%2F..%2Fdocs/content/imgs/quickstart/002_fork.png) - -### Cloning the Repository -Next, clone your newly forked repository to your local system. Ensure you have Git installed to proceed with this step. You can download Git from [here](https://git-scm.com/downloads). Then clone the repo using the following command and the url for your repo. You can find the correct url by clicking on the green Code button on your repos main page. -![img_1.png](..%2F..%2F..%2Fdocs/content/imgs/quickstart/003A_clone.png) - -```bash -# replace the url with the one for your forked repo -git clone https://github.com/ -``` - -![Clone the Repository](..%2F..%2F..%2Fdocs/content/imgs/quickstart/003_clone.png) - -### Setting up the Project - -Once you have clone the project change your directory to the newly cloned project: -```bash -# The name of the directory will match the name you gave your fork. The default is AutoGPT -cd AutoGPT -``` -To set up the project, utilize the `./run setup` command in the terminal. Follow the instructions to install necessary dependencies and set up your GitHub access token. - -![Setup the Project](..%2F..%2F..%2Fdocs/content/imgs/quickstart/005_setup.png) -![Setup Complete](..%2F..%2F..%2Fdocs/content/imgs/quickstart/006_setup_complete.png) - -## Section 3: Creating Your Agent - -Choose a suitable name for your agent. It should be unique and descriptive. Examples of valid names include swiftyosgpt, SwiftyosAgent, or swiftyos_agent. - -Create your agent template using the command: - -```bash - ./run agent create YOUR_AGENT_NAME - ``` - Replacing YOUR_AGENT_NAME with the name you chose in the previous step. - -![Create an Agent](..%2F..%2F..%2Fdocs/content/imgs/quickstart/007_create_agent.png) - -## Section 4: Running Your Agent - -Begin by starting your agent using the command: - -```bash -./run agent start YOUR_AGENT_NAME -``` -This will initiate the agent on `http://localhost:8000/`. - -![Start the Agent](..%2F..%2F..%2Fdocs/content/imgs/quickstart/009_start_agent.png) - -### Logging in and Sending Tasks to Your Agent -Access the frontend at `http://localhost:8000/` and log in using a Google or GitHub account. Once you're logged you'll see the agent tasking interface! However... the agent won't do anything yet. We'll implement the logic for our agent to run tasks in the upcoming tutorial chapters. - -![Login](..%2F..%2F..%2Fdocs/content/imgs/quickstart/010_login.png) -![Home](..%2F..%2F..%2Fdocs/content/imgs/quickstart/011_home.png) - -### Stopping and Restarting Your Agent -When needed, use Ctrl+C to end the session or use the stop command: -```bash -./run agent stop -``` -This command forcefully stops the agent. You can also restart it using the start command. - -## To Recap -- We've forked the AutoGPT repo and cloned it locally on your machine. -- we connected the library with our personal github access token as part of the setup. -- We've run the agent and its tasking server successfully without an error. -- We've logged into the server site at localhost:8000 using our github account. - -Make sure you've completed every step successfully before moving on :). -### Next Steps: Building and Enhancing Your Agent -With our foundation set, you are now ready to build and enhance your agent! The next tutorial will look into the anatomy of an agent and how to add basic functionality. - -## Additional Resources - -### Links to Documentation and Community Forums -- [Windows Subsystem for Linux (WSL) Installation](https://learn.microsoft.com/en-us/windows/wsl/) -- [Git Download](https://git-scm.com/downloads) - -## Appendix - -### Troubleshooting Common Issues -- Ensure Git is correctly installed before cloning the repository. -- Follow the setup instructions carefully to avoid issues during project setup. -- If encountering issues during agent creation, refer to the guide for naming conventions. -- make sure your github token has the `repo` scopes toggled. - -### Glossary of Terms -- **Repository**: A storage space where your project resides. -- **Forking**: Creating a copy of a repository under your GitHub account. -- **Cloning**: Making a local copy of a repository on your system. -- **Agent**: The AutoGPT you will be creating and developing in this project. -- **Benchmarking**: The process of testing your agent's skills in various categories using the Forge's integrated benchmarking system. -- **Forge**: The comprehensive template for building your AutoGPT agent, including the setting for setup, creation, running, and benchmarking your agent. -- **Frontend**: The user interface where you can log in, send tasks to your agent, and view the task history. - - -### System Requirements - -This project supports Linux (Debian based), Mac, and Windows Subsystem for Linux (WSL). If you are using a Windows system, you will need to install WSL. You can find the installation instructions for WSL [here](https://learn.microsoft.com/en-us/windows/wsl/). diff --git a/classic/forge/tutorials/002_blueprint_of_an_agent.md b/classic/forge/tutorials/002_blueprint_of_an_agent.md deleted file mode 100644 index 8bacf3a3b9..0000000000 --- a/classic/forge/tutorials/002_blueprint_of_an_agent.md +++ /dev/null @@ -1,147 +0,0 @@ -# AutoGPT Forge Part 2: The Blueprint of an AI Agent - -**Written by Craig Swift & [Ryan Brandt](https://github.com/paperMoose)** - -*8 min read* - - ---- - -![Header](..%2F..%2Fdocs/content/imgs/quickstart/t2_01.png) - - - - - -## What are LLM-Based AI Agents? - -Before we add logic to our new agent, we have to understand what an agent actually IS. - -Large Language Models (LLMs) are state-of-the-art machine learning models that harness vast amounts of web knowledge. But what happens when you give the LLM the ability to use tools based on it's output? You get LLM-based AI agents — a new breed of artificial intelligence that promises more human-like decision-making in the real world. - -Traditional autonomous agents operated with limited knowledge, often confined to specific tasks or environments. They were like calculators — efficient but limited to predefined functions. LLM-based agents, on the other hand don’t just compute; they understand, reason, and then act, drawing from a vast reservoir of information. - -![AI visualising AI researchers hard at work](..%2F..%2Fdocs/content/imgs/quickstart/t2_02.png) - - -## The Anatomy of an LLM-Based AI Agent - -Diving deep into the core of an LLM-based AI agent, we find it’s structured much like a human, with distinct components akin to personality, memory, thought process, and abilities. Let’s break these down: - -![The Github repository](..%2F..%2Fdocs/content/imgs/quickstart/t2_03.png) -Anatomy of an Agent from the Agent Landscape Survey - -### **Profile** -Humans naturally adapt our mindset based on the tasks we're tackling, whether it's writing, cooking, or playing sports. Similarly, agents can be conditioned or "profiled" to specialize in specific tasks. - -The profile of an agent is its personality, mindset, and high-level instructions. Research indicates that merely informing an agent that it's an expert in a certain domain can boost its performance. - -| **Potential Applications of Profiling** | **Description** | -|-----------------------------------------|----------------------------------------------------------------------------------------------------------| -| **Prompt Engineering** | Tailoring agent prompts for better results. | -| **Memory Adjustments** | Modifying how an agent recalls or prioritizes information. | -| **Action Selection** | Influencing the set of actions an agent might consider. | -| **Driving Mechanism** | Potentially tweaking the underlying large language model (LLM) that powers the agent. | - -#### Example Agent Profile: Weather Expert - -- **Profile Name:** Weather Specialist -- **Purpose:** Provide detailed and accurate weather information. -- **Preferred Memory Sources:** Meteorological databases, recent weather news, and scientific journals. -- **Action Set:** Fetching weather data, analyzing weather patterns, and providing forecasts. -- **Base Model Tweaks:** Prioritize meteorological terminology and understanding. - -### **Memory** -Just as our memories shape our decisions, reactions, and identities, an agent's memory is the cornerstone of its identity and capabilities. Memory is fundamental for an agent to learn and adapt. At a high level, agents possess two core types of memories: long-term and short-term. - -| | **Long-Term Memory** | **Short-Term (Working) Memory** | -|-------------------|-------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------| -| **Purpose** | Serves as the agent's foundational knowledge base. | Handles recent or transient memories, much like our recollection of events from the past few days. | -| **What it Stores**| Historical data and interactions that have taken place over extended periods. | Immediate experiences and interactions. | -| **Role** | Guides the agent's core behaviors and understanding, acting as a vast reservoir of accumulated knowledge. | Essential for real-time tasks and decision-making. Not all these memories transition into long-term storage. | - - -### **Planning** -Planning is essential for agents to systematically tackle challenges, mirroring how humans break down complex problems into smaller tasks. -#### **1. What is Planning?** - -- **Concept:** It's the agent's strategy for problem-solving, ensuring solutions are both comprehensive and systematic. -- **Human Analogy:** Just like humans split challenges into smaller, more manageable tasks, agents adopt a similar methodical approach. - -#### **2. Key Planning Strategies** - -| **Strategy** | **Description** | -|----------------------------|----------------------------------------------------------------------------------------------------------| -| **Planning with Feedback** | An adaptive approach where agents refine their strategy based on outcomes, similar to iterative design processes.| -| **Planning without Feedback** | The agent acts as a strategist, using only its existing knowledge. It's like playing chess, anticipating challenges and planning several moves ahead. | - -### **Action** -After the introspection of memory and the strategizing of planning, comes the finale: Action. This is where the agent’s cognitive processes manifest into tangible outcomes using the agents Abilities. Every decision, every thought, culminates in the action phase, translating abstract concepts into definitive results. -Whether it’s penning a response, saving a file, or initiating a new process, the action component is the culmination of the agent’s decision-making journey. It’s the bridge between digital cognition and real-world impact, turning the agent’s electronic impulses into meaningful and purposeful outcomes. - -![t2_agent_flow.png](..%2F..%2F..%2Fdocs%2Fcontent%2Fimgs%2Fquickstart%2Ft2_agent_flow.png) -An example of how a basic agent works -## The Agent Protocol: The Linguistics of AI Communication - -After diving deep into the anatomy of an agent, understanding its core components, there emerges a pivotal question: How do we effectively communicate with these diverse, intricately-designed agents? The answer lies in the Agent Protocol. - -### Understanding the Agent Protocol - -At its essence, the Agent Protocol is a standardized communication interface, a universal “language” that every AI agent, regardless of its underlying structure or design, can comprehend. Think of it as the diplomatic envoy that ensures smooth conversations between agents and their developers, tools, or even other agents. - -In an ecosystem where every developer might have their unique approach to crafting agents, the Agent Protocol acts as a unifying bridge. It’s akin to a standardized plug fitting into any socket or a universal translator decoding myriad languages. - -## AutoGPT Forge: A Peek Inside the LLM Agent Template - -Now we understand the architecture of an agent lets look inside the Forge. It’s a well-organized template, meticulously architected to cater to the needs of agent developers. - -#### Forge’s Project Structure: A Bird’s-Eye View -![t2_diagram.png](..%2F..%2F..%2Fdocs%2Fcontent%2Fimgs%2Fquickstart%2Ft2_diagram.png) - -The Forge's agent directory structure consists of three parts: -- **agent.py**: The heart of the Forge, where the agent's actual business logic is. -- **prompts**: A directory of prompts used in agent.py's LLM logic. -- **sdk**: The boilerplate code and the lower level APIs of the Forge. - -Let’s break them down. - -#### Understanding the SDK - -The SDK is the main directory for the Forge. Here's a breakdown: - -- **Core Components**: These are key parts of the Forge including Memory, Abilities, and Planning. They help the agent think and act. -- **Agent Protocol Routes**: In the routes sub-directory, you'll see the Agent Protocol. This is how the agent communicates. -- **Database (db.py)**: This is where the agent stores its data like experiences and learnings. -- **Prompting Engine (prompting.py)**: This tool uses templates to ask questions to the LLM for consistent interactions. -- **Agent Class**: This connects the agent's actions with the Agent Protocol routes. - -#### Configurations and Environment - -Configuration is key to ensuring our agent runs seamlessly. The .env.example file provides a template for setting up the necessary environment variables. Before diving into the Forge, developers need to copy this to a new .env file and adjust the settings: -- **API Key**: `OPENAI_API_KEY` is where you plug in your OpenAI API key. -- **Log Level**: With `LOG_LEVEL`, control the verbosity of the logs. -- **Database Connection**: `DATABASE_STRING` determines where and how the agent's data gets stored. -- **Port**: `PORT` specifies the listening port for the agent's server. -- **Workspace**: `AGENT_WORKSPACE` points to the agent's working directory. - -## To Recap - -- **LLM-Based AI Agents**: - - LLMs are machine learning models with vast knowledge. When equipped with tools to utilize their outputs, they evolve into LLM-based AI agents, enabling human-like decision-making. - -- **Anatomy of an Agent**: - - **Profile**: Sets an agent's personality and specialization. - - **Memory**: Encompasses the agent's long-term and short-term memory, storing both historical data and recent interactions. - - **Planning**: The strategy the agent employs to tackle problems. - - **Action**: The stage where the agent's decisions translate to tangible results. - -- **Agent Protocol**: - - A uniform communication interface ensuring smooth interactions between agents and their developers. - -- **AutoGPT Forge**: - - A foundational template for creating agents. Components include: - - **agent.py**: Houses the agent's core logic. - - **prompts**: Directory of templates aiding LLM logic. - - **sdk**: Boilerplate code and essential APIs. - -Let's put this blueprint into practice in part 3! \ No newline at end of file diff --git a/classic/forge/tutorials/003_crafting_agent_logic.md b/classic/forge/tutorials/003_crafting_agent_logic.md deleted file mode 100644 index 466d42fe5f..0000000000 --- a/classic/forge/tutorials/003_crafting_agent_logic.md +++ /dev/null @@ -1,513 +0,0 @@ -# AutoGPT Forge: Crafting Intelligent Agent Logic - -![Header](..%2F..%2F..%2Fdocs/content/imgs/quickstart/t3_01.png) -**By Craig Swift & [Ryan Brandt](https://github.com/paperMoose)** - -Hey there! Ready for part 3 of our AutoGPT Forge tutorial series? If you missed the earlier parts, catch up here: - -- [Getting Started](001_getting_started.md) -- [Blueprint of an Agent](002_blueprint_of_an_agent.md) - -Now, let's get hands-on! We'll use an LLM to power our agent and complete a task. The challenge? Making the agent write "Washington" to a .txt file. We won't give it step-by-step instructions—just the task. Let's see our agent in action and watch it figure out the steps on its own! - - -## Get Your Smart Agent Project Ready - -Make sure you've set up your project and created an agent as described in our initial guide. If you skipped that part, [click here](#) to get started. Once you're done, come back, and we'll move forward. - -In the image below, you'll see my "SmartAgent" and the agent.py file inside the 'forge' folder. That's where we'll be adding our LLM-based logic. If you're unsure about the project structure or agent functions from our last guide, don't worry. We'll cover the basics as we go! - -![SmartAgent](..%2F..%2F..%2Fdocs/content/imgs/quickstart/t3_02.png) - ---- - -## The Task Lifecycle - -The lifecycle of a task, from its creation to execution, is outlined in the agent protocol. In simple terms: a task is initiated, its steps are systematically executed, and it concludes once completed. - -Want your agent to perform an action? Start by dispatching a create_task request. This crucial step involves specifying the task details, much like how you'd send a prompt to ChatGPT, using the input field. If you're giving this a shot on your own, the UI is your best friend; it effortlessly handles all the API calls on your behalf. - -When the agent gets this, it runs the create_task function. The code `super().create_task(task_request)` takes care of protocol steps. It then logs the task's start. For this guide, you don't need to change this function. - -```python -async def create_task(self, task_request: TaskRequestBody) -> Task: - """ - The agent protocol, which is the core of the Forge, works by creating a task and then - executing steps for that task. This method is called when the agent is asked to create - a task. - - We are hooking into function to add a custom log message. Though you can do anything you - want here. - """ - task = await super().create_task(task_request) - LOG.info( - f"📦 Task created: {task.task_id} input: {task.input[:40]}{'...' if len(task.input) > 40 else ''}" - ) - return task -``` - -After starting a task, the `execute_step` function runs until all steps are done. Here's a basic view of `execute_step`. I've left out the detailed comments for simplicity, but you'll find them in your project. - -```python -async def execute_step(self, task_id: str, step_request: StepRequestBody) -> Step: - # An example that - step = await self.db.create_step( - task_id=task_id, input=step_request, is_last=True - ) - - self.workspace.write(task_id=task_id, path="output.txt", data=b"Washington D.C") - - await self.db.create_artifact( - task_id=task_id, - step_id=step.step_id, - file_name="output.txt", - relative_path="", - agent_created=True, - ) - - step.output = "Washington D.C" - - LOG.info(f"\t✅ Final Step completed: {step.step_id}") - - return step -``` - -Here's the breakdown of the 'write file' process in four steps: - -1. **Database Step Creation**: The first stage is all about creating a step within the database, an essential aspect of the agent protocol. You'll observe that while setting up this step, we've flagged it with `is_last=True`. This signals to the agent protocol that no more steps are pending. For the purpose of this guide, let's work under the assumption that our agent will only tackle single-step tasks. However, hang tight for future tutorials, where we'll level up and let the agent determine its completion point. - -2. **File Writing**: Next, we pen down "Washington D.C." using the workspace.write function. - -3. **Artifact Database Update**: After writing, we record the file in the agent's artifact database. - -4. **Step Output & Logging**: Finally, we set the step output to match the file content, log the executed step, and use the step object. - -With the 'write file' process clear, let's make our agent smarter and more autonomous. Ready to dive in? - ---- - -## Building the Foundations For Our Smart Agent - -First, we need to update the `execute_step()` function. Instead of a fixed solution, it should use the given request. - -To do this, we'll fetch the task details using the provided `task_id`: - -```python -task = await self.db.get_task(task_id) -``` - -Next, remember to create a database record and mark it as a single-step task with `is_last=True`: - -```python -step = await self.db.create_step( - task_id=task_id, input=step_request, is_last=True -) -``` - -Your updated `execute_step` function will look like this: - -```python -async def execute_step(self, task_id: str, step_request: StepRequestBody) -> Step: - # Get the task details - task = await self.db.get_task(task_id) - - # Add a new step to the database - step = await self.db.create_step( - task_id=task_id, input=step_request, is_last=True - ) - return step -``` - -Now that we've set this up, let's move to the next exciting part: The PromptEngine. - ---- - - -**The Art of Prompting** - -![Prompting 101](..%2F..%2F..%2Fdocs/content/imgs/quickstart/t3_03.png) - -Prompting is like shaping messages for powerful language models like ChatGPT. Since these models respond to input details, creating the right prompt can be a challenge. That's where the **PromptEngine** comes in. - -The "PromptEngine" helps you store prompts in text files, specifically in Jinja2 templates. This means you can change the prompts without changing the code. It also lets you adjust prompts for different LLMs. Here's how to use it: - -First, add the PromptEngine from the SDK: - -```python -from .sdk import PromptEngine -``` - -In your `execute_step` function, set up the engine for the `gpt-3.5-turbo` LLM: - -```python -prompt_engine = PromptEngine("gpt-3.5-turbo") -``` - -Loading a prompt is straightforward. For instance, loading the `system-format` prompt, which dictates the response format from the LLM, is as easy as: - -```python -system_prompt = prompt_engine.load_prompt("system-format") -``` - -For intricate use cases, like the `task-step` prompt which requires parameters, employ the following method: - -```python -# Define the task parameters -task_kwargs = { - "task": task.input, - "abilities": self.abilities.list_abilities_for_prompt(), -} - -# Load the task prompt with those parameters -task_prompt = prompt_engine.load_prompt("task-step", **task_kwargs) -``` - - - -Delving deeper, let's look at the `task-step` prompt template in `prompts/gpt-3.5-turbo/task-step.j2`: - -```jinja -{% extends "techniques/expert.j2" %} -{% block expert %}Planner{% endblock %} -{% block prompt %} -Your task is: - -{{ task }} - -Ensure to respond in the given format. Always make autonomous decisions, devoid of user guidance. Harness the power of your LLM, opting for straightforward tactics sans any legal entanglements. -{% if constraints %} -## Constraints -Operate under these confines: -{% for constraint in constraints %} -- {{ constraint }} -{% endfor %} -{% endif %} -{% if resources %} -## Resources -Utilize these resources: -{% for resource in resources %} -- {{ resource }} -{% endfor %} -{% endif %} -{% if abilities %} -## Abilities -Summon these abilities: -{% for ability in abilities %} -- {{ ability }} -{% endfor %} -{% endif %} - -{% if abilities %} -## Abilities -Use these abilities: -{% for ability in abilities %} -- {{ ability }} -{% endfor %} -{% endif %} - -{% if best_practices %} -## Best Practices -{% for best_practice in best_practices %} -- {{ best_practice }} -{% endfor %} -{% endif %} -{% endblock %} -``` - -This template is modular. It uses the `extends` directive to build on the `expert.j2` template. The different sections like constraints, resources, abilities, and best practices make the prompt dynamic. It guides the LLM in understanding the task and using resources and abilities. - -The PromptEngine equips us with a potent tool to converse seamlessly with large language models. By externalizing prompts and using templates, we can ensure that our agent remains agile, adapting to new challenges without a code overhaul. As we march forward, keep this foundation in mind—it's the bedrock of our agent's intelligence. - ---- - -## Engaging with your LLM - -To make the most of the LLM, you'll send a series of organized instructions, not just one prompt. Structure your prompts as a list of messages for the LLM. Using the `system_prompt` and `task_prompt` from before, create the `messages` list: - -```python -messages = [ - {"role": "system", "content": system_prompt}, - {"role": "user", "content": task_prompt} -] -``` - -With the prompt set, send it to the LLM. This step involves foundational code, focusing on the `chat_completion_request`. This function gives the LLM your prompt, and then gets the LLM's output. The other code sets up our request and interprets the feedback: - -```python -try: - # Set the parameters for the chat completion - chat_completion_kwargs = { - "messages": messages, - "model": "gpt-3.5-turbo", - } - # Get the LLM's response and interpret it - chat_response = await chat_completion_request(**chat_completion_kwargs) - answer = json.loads(chat_response.choices[0].message.content) - - # Log the answer for reference - LOG.info(pprint.pformat(answer)) - -except json.JSONDecodeError as e: - # Handle JSON decoding errors - LOG.error(f"Can't decode chat response: {chat_response}") -except Exception as e: - # Handle other errors - LOG.error(f"Can't get chat response: {e}") -``` - -Extracting clear messages from LLM outputs can be complex. Our method is simple and works with GPT-3.5 and GPT-4. Future guides will show more ways to interpret LLM outputs. The goal? To go beyond JSON, as some LLMs work best with other response types. Stay tuned! - ---- - - -## Using and Creating Abilities - -Abilities are the gears and levers that enable the agent to interact with tasks at hand. Let's unpack the mechanisms behind these abilities and how you can harness, and even extend, them. - -In the Forge folder, there's a `actions` folder containing `registry.py`, `finish.py`, and a `file_system` subfolder. You can also add your own abilities here. `registry.py` is the main file for abilities. It contains the `@action` decorator and the `ActionRegister` class. This class actively tracks abilities and outlines their function. The base Agent class includes a default Action register available via `self.abilities`. It looks like this: - -```python -self.abilities = ActionRegister(self) -``` - -The `ActionRegister` has two key methods. `list_abilities_for_prompt` prepares abilities for prompts. `run_action` makes the ability work. An ability is a function with the `@action` decorator. It must have specific parameters, including the agent and `task_id`. - -```python -@action( - name="write_file", - description="Write data to a file", - parameters=[ - { - "name": "file_path", - "description": "Path to the file", - "type": "string", - "required": True, - }, - { - "name": "data", - "description": "Data to write to the file", - "type": "bytes", - "required": True, - }, - ], - output_type="None", -) -async def write_file(agent, task_id: str, file_path: str, data: bytes) -> None: - pass -``` - -The `@action` decorator defines the ability's details, like its identity (name), functionality (description), and operational parameters. - -## Example of a Custom Ability: Webpage Fetcher - -```python -import requests - -@action( - name="fetch_webpage", - description="Retrieve the content of a webpage", - parameters=[ - { - "name": "url", - "description": "Webpage URL", - "type": "string", - "required": True, - } - ], - output_type="string", -) -async def fetch_webpage(agent, task_id: str, url: str) -> str: - response = requests.get(url) - return response.text -``` - -This ability, `fetch_webpage`, accepts a URL as input and returns the HTML content of the webpage as a string. Custom abilities let you add more features to your agent. They can integrate other tools and libraries to enhance its functions. To make a custom ability, you need to understand the structure and add technical details. With abilities like "fetch_webpage", your agent can handle complex tasks efficiently. - -## Running an Ability - -Now that you understand abilities and how to create them, let's use them. The last piece is the `execute_step` function. Our goal is to understand the agent's response, find the ability, and use it. - -First, we get the ability details from the agent's answer: - -```python -# Extract the ability from the answer -ability = answer["ability"] -``` - -With the ability details, we use it. We call the `run_ability` function: - -```python -# Run the ability and get the output -# We don't actually use the output in this example -output = await self.abilities.run_action( - task_id, ability["name"], **ability["args"] -) -``` - -Here, we’re invoking the specified ability. The task_id ensures continuity, ability['name'] pinpoints the exact function, and the arguments (ability["args"]) provide necessary context. - -Finally, we make the step's output show the agent's thinking: - -```python -# Set the step output to the "speak" part of the answer -step.output = answer["thoughts"]["speak"] - -# Return the completed step -return step -``` - -And there you have it! Your first Smart Agent, sculpted with precision and purpose, stands ready to take on challenges. The stage is set. It’s showtime! - -Here is what your function should look like: - -```python -async def execute_step(self, task_id: str, step_request: StepRequestBody) -> Step: - # Firstly we get the task this step is for so we can access the task input - task = await self.db.get_task(task_id) - - # Create a new step in the database - step = await self.db.create_step( - task_id=task_id, input=step_request, is_last=True - ) - - # Log the message - LOG.info(f"\t✅ Final Step completed: {step.step_id} input: {step.input[:19]}") - - # Initialize the PromptEngine with the "gpt-3.5-turbo" model - prompt_engine = PromptEngine("gpt-3.5-turbo") - - # Load the system and task prompts - system_prompt = prompt_engine.load_prompt("system-format") - - # Initialize the messages list with the system prompt - messages = [ - {"role": "system", "content": system_prompt}, - ] - # Define the task parameters - task_kwargs = { - "task": task.input, - "abilities": self.abilities.list_abilities_for_prompt(), - } - - # Load the task prompt with the defined task parameters - task_prompt = prompt_engine.load_prompt("task-step", **task_kwargs) - - # Append the task prompt to the messages list - messages.append({"role": "user", "content": task_prompt}) - - try: - # Define the parameters for the chat completion request - chat_completion_kwargs = { - "messages": messages, - "model": "gpt-3.5-turbo", - } - # Make the chat completion request and parse the response - chat_response = await chat_completion_request(**chat_completion_kwargs) - answer = json.loads(chat_response.choices[0].message.content) - - # Log the answer for debugging purposes - LOG.info(pprint.pformat(answer)) - - except json.JSONDecodeError as e: - # Handle JSON decoding errors - LOG.error(f"Unable to decode chat response: {chat_response}") - except Exception as e: - # Handle other exceptions - LOG.error(f"Unable to generate chat response: {e}") - - # Extract the ability from the answer - ability = answer["ability"] - - # Run the ability and get the output - # We don't actually use the output in this example - output = await self.abilities.run_action( - task_id, ability["name"], **ability["args"] - ) - - # Set the step output to the "speak" part of the answer - step.output = answer["thoughts"]["speak"] - - # Return the completed step - return step -``` - -## Interacting with your Agent -> ⚠️ Heads up: The UI and benchmark are still in the oven, so they might be a tad glitchy. - -With the heavy lifting of crafting our Smart Agent behind us, it’s high time to see it in action. Kick things off by firing up the agent with this command: -```bash -./run agent start SmartAgent. -``` - -Once your digital playground is all set, your terminal should light up with: -```bash - - - d8888 888 .d8888b. 8888888b. 88888888888 - d88888 888 d88P Y88b 888 Y88b 888 - d88P888 888 888 888 888 888 888 - d88P 888 888 888 888888 .d88b. 888 888 d88P 888 - d88P 888 888 888 888 d88""88b 888 88888 8888888P" 888 - d88P 888 888 888 888 888 888 888 888 888 888 - d8888888888 Y88b 888 Y88b. Y88..88P Y88b d88P 888 888 -d88P 888 "Y88888 "Y888 "Y88P" "Y8888P88 888 888 - - - - 8888888888 - 888 - 888 - 8888888 .d88b. 888d888 .d88b. .d88b. - 888 d88""88b 888P" d88P"88b d8P Y8b - 888 888 888 888 888 888 88888888 - 888 Y88..88P 888 Y88b 888 Y8b. - 888 "Y88P" 888 "Y88888 "Y8888 - 888 - Y8b d88P - "Y88P" v0.2.0 - - -[2023-09-27 15:39:07,832] [forge.sdk.agent] [INFO] 📝 Agent server starting on http://localhost:8000 - -``` -1. **Get Started** - - Click the link to access the AutoGPT Agent UI. - -2. **Login** - - Log in using your Gmail or Github credentials. - -3. **Navigate to Benchmarking** - - Look to the left, and you'll spot a trophy icon. Click it to enter the benchmarking arena. - -![Benchmarking page of the AutoGPT UI](..%2F..%2F..%2Fdocs/content/imgs/quickstart/t3_04.png) - -4. **Select the 'WriteFile' Test** - - Choose the 'WriteFile' test from the available options. - -5. **Initiate the Test Suite** - - Hit 'Initiate test suite' to start the benchmarking process. - -6. **Monitor in Real-Time** - - Keep your eyes on the right panel as it displays real-time output. - -7. **Check the Console** - - For additional information, you can also monitor your console for progress updates and messages. -```bash -📝 📦 Task created: 70518b75-0104-49b0-923e-f607719d042b input: Write the word 'Washington' to a .txt fi... -📝 ✅ Final Step completed: a736c45f-65a5-4c44-a697-f1d6dcd94d5c input: y -``` -If you see this, you've done it! - -8. **Troubleshooting** - - If you encounter any issues or see cryptic error messages, don't worry. Just hit the retry button. Remember, LLMs are powerful but may occasionally need some guidance. - -## Wrap Up -- Stay tuned for our next tutorial, where we'll enhance the agent's capabilities by adding memory! - -## Keep Exploring -- Keep experimenting and pushing the boundaries of AI. Happy coding! 🚀 - -## Wrap Up -In our next tutorial, we’ll further refine this process, enhancing the agent’s capabilities, through the addition of memory! - -Until then, keep experimenting and pushing the boundaries of AI. Happy coding! 🚀 diff --git a/classic/forge/tutorials/004_memories.md b/classic/forge/tutorials/004_memories.md deleted file mode 100644 index d925a19b12..0000000000 --- a/classic/forge/tutorials/004_memories.md +++ /dev/null @@ -1,75 +0,0 @@ -# Memory Integration: Enabling Your Agent to Remember and Learn - -## Introduction -- Importance of Memory Integration in AI Agents -- Overview of Memory Mechanisms in AutoGPT - -## Section 1: Understanding Memory Integration -- Concept of Memory in AI Agents -- Types of Memory: Short-term vs. Long-term - -## Section 2: Implementing Memory in Your Agent -- Setting up Memory Structures in the Forge Environment -- Utilizing Agent Protocol for Memory Integration - -## Section 3: Developing Learning Mechanisms -- Creating Learning Algorithms for Your Agent -- Implementing Learning Mechanisms using Task and Artifact Schemas - -## Section 4: Testing and Optimizing Memory Integration -- Employing AGBenchmark for Memory Testing -- Optimizing Memory for Enhanced Performance and Efficiency - -## Section 5: Best Practices in Memory Integration -- Tips and Strategies for Effective Memory Integration -- Avoiding Common Pitfalls in Memory Development - -## Conclusion -- Recap of the Tutorial -- Future Directions in Memory Integration - -## Additional Resources - -From **The Rise and Potential of Large Language Model Based Agents: A Survey** *Zhiheng Xi (Fudan University) et al. arXiv.* [[paper](https://arxiv.org/abs/2305.14497)] [[code](https://github.com/woooodyy/llm-agent-paper-list)] - -##### Memory capability - -###### Raising the length limit of Transformers - -- [2023/05] **Randomized Positional Encodings Boost Length Generalization of Transformers.** *Anian Ruoss (DeepMind) et al. arXiv.* [[paper](https://arxiv.org/abs/2305.16843)] [[code](https://github.com/google-deepmind/randomized_positional_encodings)] -- [2023-03] **CoLT5: Faster Long-Range Transformers with Conditional Computation.** *Joshua Ainslie (Google Research) et al. arXiv.* [[paper](https://arxiv.org/abs/2303.09752)] -- [2022/03] **Efficient Classification of Long Documents Using Transformers.** *Hyunji Hayley Park (Illinois University) et al. arXiv.* [[paper](https://arxiv.org/abs/2203.11258)] [[code](https://github.com/amazon-science/efficient-longdoc-classification)] -- [2021/12] **LongT5: Efficient Text-To-Text Transformer for Long Sequences.** *Mandy Guo (Google Research) et al. arXiv.* [[paper](https://arxiv.org/abs/2112.07916)] [[code](https://github.com/google-research/longt5)] -- [2019/10] **BART: Denoising Sequence-to-Sequence Pre-training for Natural Language Generation, Translation, and Comprehension.** *Michael Lewis(Facebook AI) et al. arXiv.* [[paper](https://arxiv.org/abs/1910.13461)] [[code](https://github.com/huggingface/transformers/tree/main/src/transformers/models/bart)] - -###### Summarizing memory - -- [2023/08] **ExpeL: LLM Agents Are Experiential Learners.** *Andrew Zhao (Tsinghua University) et al. arXiv.* [[paper](https://arxiv.org/abs/2308.10144)] [[code]([https://github.com/thunlp/ChatEval](https://github.com/Andrewzh112/ExpeL))] -- [2023/08] **ChatEval: Towards Better LLM-based Evaluators through Multi-Agent Debate.** *Chi-Min Chan (Tsinghua University) et al. arXiv.* [[paper](https://arxiv.org/abs/2308.07201)] [[code](https://github.com/thunlp/ChatEval)] -- [2023/05] **MemoryBank: Enhancing Large Language Models with Long-Term Memory.** *Wanjun Zhong (Harbin Institute of Technology) et al. arXiv.* [[paper](https://arxiv.org/abs/2305.10250)] [[code](https://github.com/zhongwanjun/memorybank-siliconfriend)] -- [2023/04] **Generative Agents: Interactive Simulacra of Human Behavior.** *Joon Sung Park (Stanford University) et al. arXiv.* [[paper](https://arxiv.org/abs/2304.03442)] [[code](https://github.com/joonspk-research/generative_agents)] -- [2023/04] **Unleashing Infinite-Length Input Capacity for Large-scale Language Models with Self-Controlled Memory System.** *Xinnian Liang(Beihang University) et al. arXiv.* [[paper](https://arxiv.org/abs/2304.13343)] [[code](https://github.com/wbbeyourself/scm4llms)] -- [2023/03] **Reflexion: Language Agents with Verbal Reinforcement Learning.** *Noah Shinn (Northeastern University) et al. arXiv.* [[paper](https://arxiv.org/abs/2303.11366)] [[code](https://github.com/noahshinn024/reflexion)] -- [2023/05] **RecurrentGPT: Interactive Generation of (Arbitrarily) Long Text.** Wangchunshu Zhou (AIWaves) et al. arXiv.* [[paper](https://arxiv.org/pdf/2305.13304.pdf)] [[code](https://github.com/aiwaves-cn/RecurrentGPT)] - - -###### Compressing memories with vectors or data structures - -- [2023/07] **Communicative Agents for Software Development.** *Chen Qian (Tsinghua University) et al. arXiv.* [[paper](https://arxiv.org/abs/2307.07924)] [[code](https://github.com/openbmb/chatdev)] -- [2023/06] **ChatDB: Augmenting LLMs with Databases as Their Symbolic Memory.** *Chenxu Hu(Tsinghua University) et al. arXiv.* [[paper](https://arxiv.org/abs/2306.03901)] [[code](https://github.com/huchenxucs/ChatDB)] -- [2023/05] **Ghost in the Minecraft: Generally Capable Agents for Open-World Environments via Large Language Models with Text-based Knowledge and Memory.** *Xizhou Zhu (Tsinghua University) et al. arXiv.* [[paper](https://arxiv.org/abs/2305.17144)] [[code](https://github.com/OpenGVLab/GITM)] -- [2023/05] **RET-LLM: Towards a General Read-Write Memory for Large Language Models.** *Ali Modarressi (LMU Munich) et al. arXiv.* [[paper](https://arxiv.org/abs/2305.14322)] [[code](https://github.com/tloen/alpaca-lora)] -- [2023/05] **RecurrentGPT: Interactive Generation of (Arbitrarily) Long Text.** Wangchunshu Zhou (AIWaves) et al. arXiv.* [[paper](https://arxiv.org/pdf/2305.13304.pdf)] [[code](https://github.com/aiwaves-cn/RecurrentGPT)] - -##### Memory retrieval - -- [2023/08] **Memory Sandbox: Transparent and Interactive Memory Management for Conversational Agents.** *Ziheng Huang(University of California—San Diego) et al. arXiv.* [[paper](https://arxiv.org/abs/2308.01542)] -- [2023/08] **AgentSims: An Open-Source Sandbox for Large Language Model Evaluation.** *Jiaju Lin (PTA Studio) et al. arXiv.* [[paper](https://arxiv.org/abs/2308.04026)] [[project page](https://www.agentsims.com/)] [[code](https://github.com/py499372727/AgentSims/)] -- [2023/06] **ChatDB: Augmenting LLMs with Databases as Their Symbolic Memory.** *Chenxu Hu(Tsinghua University) et al. arXiv.* [[paper](https://arxiv.org/abs/2306.03901)] [[code](https://github.com/huchenxucs/ChatDB)] -- [2023/05] **MemoryBank: Enhancing Large Language Models with Long-Term Memory.** *Wanjun Zhong (Harbin Institute of Technology) et al. arXiv.* [[paper](https://arxiv.org/abs/2305.10250)] [[code](https://github.com/zhongwanjun/memorybank-siliconfriend)] -- [2023/04] **Generative Agents: Interactive Simulacra of Human Behavior.** *Joon Sung Park (Stanford) et al. arXiv.* [[paper](https://arxiv.org/abs/2304.03442)] [[code](https://github.com/joonspk-research/generative_agents)] -- [2023/05] **RecurrentGPT: Interactive Generation of (Arbitrarily) Long Text.** Wangchunshu Zhou (AIWaves) et al. arXiv.* [[paper](https://arxiv.org/pdf/2305.13304.pdf)] [[code](https://github.com/aiwaves-cn/RecurrentGPT)] - -## Appendix -- Examples of Memory Integration Implementations -- Glossary of Memory-Related Terms diff --git a/classic/frontend/.gitignore b/classic/frontend/.gitignore deleted file mode 100644 index 036283f834..0000000000 --- a/classic/frontend/.gitignore +++ /dev/null @@ -1,45 +0,0 @@ -# Miscellaneous -*.class -*.log -*.pyc -*.swp -.DS_Store -.atom/ -.buildlog/ -.history -.svn/ -migrate_working_dir/ - -# IntelliJ related -*.iml -*.ipr -*.iws -.idea/ - -# The .vscode folder contains launch configuration and tasks you configure in -# VS Code which you may wish to be included in version control, so this line -# is commented out by default. -#.vscode/ - -# Flutter/Dart/Pub related -**/doc/api/ -**/ios/Flutter/.last_build_id -.dart_tool/ -.flutter-plugins -.flutter-plugins-dependencies -.packages -.pub-cache/ -.pub/ -/build/* -!/build/web/ - -# Symbolication related -app.*.symbols - -# Obfuscation related -app.*.map.json - -# Android Studio will place build artifacts here -/android/app/debug -/android/app/profile -/android/app/release diff --git a/classic/frontend/.metadata b/classic/frontend/.metadata deleted file mode 100644 index de86ba8807..0000000000 --- a/classic/frontend/.metadata +++ /dev/null @@ -1,45 +0,0 @@ -# This file tracks properties of this Flutter project. -# Used by Flutter tool to assess capabilities and perform upgrades etc. -# -# This file should be version controlled. - -version: - revision: d11aff97d2df15a076d285f6ad18da75c0d75ddd - channel: beta - -project_type: app - -# Tracks metadata for the flutter migrate command -migration: - platforms: - - platform: root - create_revision: d11aff97d2df15a076d285f6ad18da75c0d75ddd - base_revision: d11aff97d2df15a076d285f6ad18da75c0d75ddd - - platform: android - create_revision: d11aff97d2df15a076d285f6ad18da75c0d75ddd - base_revision: d11aff97d2df15a076d285f6ad18da75c0d75ddd - - platform: ios - create_revision: d11aff97d2df15a076d285f6ad18da75c0d75ddd - base_revision: d11aff97d2df15a076d285f6ad18da75c0d75ddd - - platform: linux - create_revision: d11aff97d2df15a076d285f6ad18da75c0d75ddd - base_revision: d11aff97d2df15a076d285f6ad18da75c0d75ddd - - platform: macos - create_revision: d11aff97d2df15a076d285f6ad18da75c0d75ddd - base_revision: d11aff97d2df15a076d285f6ad18da75c0d75ddd - - platform: web - create_revision: d11aff97d2df15a076d285f6ad18da75c0d75ddd - base_revision: d11aff97d2df15a076d285f6ad18da75c0d75ddd - - platform: windows - create_revision: d11aff97d2df15a076d285f6ad18da75c0d75ddd - base_revision: d11aff97d2df15a076d285f6ad18da75c0d75ddd - - # User provided section - - # List of Local paths (relative to this file) that should be - # ignored by the migrate tool. - # - # Files that are not part of the templates will be ignored by default. - unmanaged_files: - - 'lib/main.dart' - - 'ios/Runner.xcodeproj/project.pbxproj' diff --git a/classic/frontend/README.md b/classic/frontend/README.md deleted file mode 100644 index 4a248bd552..0000000000 --- a/classic/frontend/README.md +++ /dev/null @@ -1,64 +0,0 @@ -# AutoGPT Flutter Client - -## Description - -This repository contains the Flutter client for the AutoGPT project. The application facilitates users in discussing various tasks with a single agent. The app is built to be cross-platform and runs on Web, Android, iOS, Windows, and Mac. - -## Features - -- List and manage multiple tasks. -- Engage in chat conversations related to selected tasks. - -## Design document - -The design document for this project provides a detailed outline of the architecture, components, and other important aspects of this application. Please note that this is a living, growing document and it is subject to change as the project evolves. - -You can access the design document [here](https://docs.google.com/document/d/1S-o2np1gq5JwFq40wPHDUVLi-mylz4WMvCB8psOUjc8/). - -## Requirements - -- Flutter 3.x -- Dart 3.x - -Flutter comes with Dart, to install Flutter, follow the instructions here: https://docs.flutter.dev/get-started/install - -## Installation - -1. **Clone the repo:** -``` -git clone https://github.com/Significant-Gravitas/AutoGPT.git -``` - -2. **Navigate to the project directory:** -``` -cd AutoGPT/frontend -``` - -3. **Get Flutter packages:** -``` -flutter pub get -``` - -4. **Run the app:** -``` -#For chromium users on linux: -#export CHROME_EXECUTABLE=/usr/bin/chromium -flutter run -d chrome --web-port 5000 -``` - -## Project Structure - -- `lib/`: Contains the main source code for the application. -- `models/`: Data models that define the structure of the objects used in the app. -- `views/`: The UI components of the application. -- `viewmodels/`: The business logic and data handling for the views. -- `services/`: Contains the service classes that handle communication with backend APIs and other external data sources. These services are used to fetch and update data that the app uses, and they are consumed by the ViewModels. -- `test/`: Contains the test files for unit and widget tests. - -## Responsive Design - -The app features a responsive design that adapts to different screen sizes and orientations. On larger screens (Web, Windows, Mac), views are displayed side by side horizontally. On smaller screens (Android, iOS), views are displayed in a tab bar controller layout. - -## License - -This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details. diff --git a/classic/frontend/analysis_options.yaml b/classic/frontend/analysis_options.yaml deleted file mode 100644 index 61b6c4de17..0000000000 --- a/classic/frontend/analysis_options.yaml +++ /dev/null @@ -1,29 +0,0 @@ -# This file configures the analyzer, which statically analyzes Dart code to -# check for errors, warnings, and lints. -# -# The issues identified by the analyzer are surfaced in the UI of Dart-enabled -# IDEs (https://dart.dev/tools#ides-and-editors). The analyzer can also be -# invoked from the command line by running `flutter analyze`. - -# The following line activates a set of recommended lints for Flutter apps, -# packages, and plugins designed to encourage good coding practices. -include: package:flutter_lints/flutter.yaml - -linter: - # The lint rules applied to this project can be customized in the - # section below to disable rules from the `package:flutter_lints/flutter.yaml` - # included above or to enable additional rules. A list of all available lints - # and their documentation is published at - # https://dart-lang.github.io/linter/lints/index.html. - # - # Instead of disabling a lint rule for the entire project in the - # section below, it can also be suppressed for a single line of code - # or a specific dart file by using the `// ignore: name_of_lint` and - # `// ignore_for_file: name_of_lint` syntax on the line or in the file - # producing the lint. - rules: - # avoid_print: false # Uncomment to disable the `avoid_print` rule - # prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule - -# Additional information about this file can be found at -# https://dart.dev/guides/language/analysis-options diff --git a/classic/frontend/android/.gitignore b/classic/frontend/android/.gitignore deleted file mode 100644 index 6f568019d3..0000000000 --- a/classic/frontend/android/.gitignore +++ /dev/null @@ -1,13 +0,0 @@ -gradle-wrapper.jar -/.gradle -/captures/ -/gradlew -/gradlew.bat -/local.properties -GeneratedPluginRegistrant.java - -# Remember to never publicly share your keystore. -# See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app -key.properties -**/*.keystore -**/*.jks diff --git a/classic/frontend/android/app/build.gradle b/classic/frontend/android/app/build.gradle deleted file mode 100644 index 1098096d00..0000000000 --- a/classic/frontend/android/app/build.gradle +++ /dev/null @@ -1,72 +0,0 @@ -def localProperties = new Properties() -def localPropertiesFile = rootProject.file('local.properties') -if (localPropertiesFile.exists()) { - localPropertiesFile.withReader('UTF-8') { reader -> - localProperties.load(reader) - } -} - -def flutterRoot = localProperties.getProperty('flutter.sdk') -if (flutterRoot == null) { - throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.") -} - -def flutterVersionCode = localProperties.getProperty('flutter.versionCode') -if (flutterVersionCode == null) { - flutterVersionCode = '1' -} - -def flutterVersionName = localProperties.getProperty('flutter.versionName') -if (flutterVersionName == null) { - flutterVersionName = '1.0' -} - -apply plugin: 'com.android.application' -apply plugin: 'kotlin-android' -apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" - -android { - namespace "com.example.auto_gpt_flutter_client" - compileSdkVersion flutter.compileSdkVersion - ndkVersion flutter.ndkVersion - - compileOptions { - sourceCompatibility JavaVersion.VERSION_1_8 - targetCompatibility JavaVersion.VERSION_1_8 - } - - kotlinOptions { - jvmTarget = '1.8' - } - - sourceSets { - main.java.srcDirs += 'src/main/kotlin' - } - - defaultConfig { - // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). - applicationId "com.example.auto_gpt_flutter_client" - // You can update the following values to match your application needs. - // For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration. - minSdkVersion flutter.minSdkVersion - targetSdkVersion flutter.targetSdkVersion - versionCode flutterVersionCode.toInteger() - versionName flutterVersionName - } - - buildTypes { - release { - // TODO: Add your own signing config for the release build. - // Signing with the debug keys for now, so `flutter run --release` works. - signingConfig signingConfigs.debug - } - } -} - -flutter { - source '../..' -} - -dependencies { - implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" -} diff --git a/classic/frontend/android/app/google-services.json b/classic/frontend/android/app/google-services.json deleted file mode 100644 index 2d673a5a95..0000000000 --- a/classic/frontend/android/app/google-services.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "project_info": { - "project_number": "387936576242", - "project_id": "prod-auto-gpt", - "storage_bucket": "prod-auto-gpt.appspot.com" - }, - "client": [ - { - "client_info": { - "mobilesdk_app_id": "1:387936576242:android:dad0614943c3242ad7a66b", - "android_client_info": { - "package_name": "com.example.auto_gpt_flutter_client" - } - }, - "oauth_client": [ - { - "client_id": "387936576242-iejdacrjljds7hf99q0p6eqna8rju3sb.apps.googleusercontent.com", - "client_type": 3 - } - ], - "api_key": [ - { - "current_key": "AIzaSyBvDJ9m38ZgRGquV3ZoTaldQTFCxFHdkiI" - } - ], - "services": { - "appinvite_service": { - "other_platform_oauth_client": [ - { - "client_id": "387936576242-9a68qea5415i71e4mk545pdee92k9kfo.apps.googleusercontent.com", - "client_type": 3 - } - ] - } - } - } - ], - "configuration_version": "1" -} \ No newline at end of file diff --git a/classic/frontend/android/app/src/debug/AndroidManifest.xml b/classic/frontend/android/app/src/debug/AndroidManifest.xml deleted file mode 100644 index 399f6981d5..0000000000 --- a/classic/frontend/android/app/src/debug/AndroidManifest.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - diff --git a/classic/frontend/android/app/src/main/AndroidManifest.xml b/classic/frontend/android/app/src/main/AndroidManifest.xml deleted file mode 100644 index c206630b90..0000000000 --- a/classic/frontend/android/app/src/main/AndroidManifest.xml +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - - - - - diff --git a/classic/frontend/android/app/src/main/kotlin/com/example/auto_gpt_flutter_client/MainActivity.kt b/classic/frontend/android/app/src/main/kotlin/com/example/auto_gpt_flutter_client/MainActivity.kt deleted file mode 100644 index 63ab1f098b..0000000000 --- a/classic/frontend/android/app/src/main/kotlin/com/example/auto_gpt_flutter_client/MainActivity.kt +++ /dev/null @@ -1,6 +0,0 @@ -package com.example.auto_gpt_flutter_client - -import io.flutter.embedding.android.FlutterActivity - -class MainActivity: FlutterActivity() { -} diff --git a/classic/frontend/android/app/src/main/res/drawable-v21/launch_background.xml b/classic/frontend/android/app/src/main/res/drawable-v21/launch_background.xml deleted file mode 100644 index f74085f3f6..0000000000 --- a/classic/frontend/android/app/src/main/res/drawable-v21/launch_background.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - diff --git a/classic/frontend/android/app/src/main/res/drawable/launch_background.xml b/classic/frontend/android/app/src/main/res/drawable/launch_background.xml deleted file mode 100644 index 304732f884..0000000000 --- a/classic/frontend/android/app/src/main/res/drawable/launch_background.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - diff --git a/classic/frontend/android/app/src/main/res/mipmap-hdpi/ic_launcher.png b/classic/frontend/android/app/src/main/res/mipmap-hdpi/ic_launcher.png deleted file mode 100644 index db77bb4b7b..0000000000 Binary files a/classic/frontend/android/app/src/main/res/mipmap-hdpi/ic_launcher.png and /dev/null differ diff --git a/classic/frontend/android/app/src/main/res/mipmap-mdpi/ic_launcher.png b/classic/frontend/android/app/src/main/res/mipmap-mdpi/ic_launcher.png deleted file mode 100644 index 17987b79bb..0000000000 Binary files a/classic/frontend/android/app/src/main/res/mipmap-mdpi/ic_launcher.png and /dev/null differ diff --git a/classic/frontend/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/classic/frontend/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png deleted file mode 100644 index 09d4391482..0000000000 Binary files a/classic/frontend/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png and /dev/null differ diff --git a/classic/frontend/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/classic/frontend/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png deleted file mode 100644 index d5f1c8d34e..0000000000 Binary files a/classic/frontend/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png and /dev/null differ diff --git a/classic/frontend/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/classic/frontend/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png deleted file mode 100644 index 4d6372eebd..0000000000 Binary files a/classic/frontend/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png and /dev/null differ diff --git a/classic/frontend/android/app/src/main/res/values-night/styles.xml b/classic/frontend/android/app/src/main/res/values-night/styles.xml deleted file mode 100644 index 06952be745..0000000000 --- a/classic/frontend/android/app/src/main/res/values-night/styles.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - diff --git a/classic/frontend/android/app/src/main/res/values/styles.xml b/classic/frontend/android/app/src/main/res/values/styles.xml deleted file mode 100644 index cb1ef88056..0000000000 --- a/classic/frontend/android/app/src/main/res/values/styles.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - diff --git a/classic/frontend/android/app/src/profile/AndroidManifest.xml b/classic/frontend/android/app/src/profile/AndroidManifest.xml deleted file mode 100644 index 399f6981d5..0000000000 --- a/classic/frontend/android/app/src/profile/AndroidManifest.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - diff --git a/classic/frontend/android/build.gradle b/classic/frontend/android/build.gradle deleted file mode 100644 index f7eb7f63ce..0000000000 --- a/classic/frontend/android/build.gradle +++ /dev/null @@ -1,31 +0,0 @@ -buildscript { - ext.kotlin_version = '1.7.10' - repositories { - google() - mavenCentral() - } - - dependencies { - classpath 'com.android.tools.build:gradle:7.3.0' - classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" - } -} - -allprojects { - repositories { - google() - mavenCentral() - } -} - -rootProject.buildDir = '../build' -subprojects { - project.buildDir = "${rootProject.buildDir}/${project.name}" -} -subprojects { - project.evaluationDependsOn(':app') -} - -tasks.register("clean", Delete) { - delete rootProject.buildDir -} diff --git a/classic/frontend/android/gradle.properties b/classic/frontend/android/gradle.properties deleted file mode 100644 index 94adc3a3f9..0000000000 --- a/classic/frontend/android/gradle.properties +++ /dev/null @@ -1,3 +0,0 @@ -org.gradle.jvmargs=-Xmx1536M -android.useAndroidX=true -android.enableJetifier=true diff --git a/classic/frontend/android/gradle/wrapper/gradle-wrapper.properties b/classic/frontend/android/gradle/wrapper/gradle-wrapper.properties deleted file mode 100644 index 3c472b99c6..0000000000 --- a/classic/frontend/android/gradle/wrapper/gradle-wrapper.properties +++ /dev/null @@ -1,5 +0,0 @@ -distributionBase=GRADLE_USER_HOME -distributionPath=wrapper/dists -zipStoreBase=GRADLE_USER_HOME -zipStorePath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-all.zip diff --git a/classic/frontend/android/settings.gradle b/classic/frontend/android/settings.gradle deleted file mode 100644 index 44e62bcf06..0000000000 --- a/classic/frontend/android/settings.gradle +++ /dev/null @@ -1,11 +0,0 @@ -include ':app' - -def localPropertiesFile = new File(rootProject.projectDir, "local.properties") -def properties = new Properties() - -assert localPropertiesFile.exists() -localPropertiesFile.withReader("UTF-8") { reader -> properties.load(reader) } - -def flutterSdkPath = properties.getProperty("flutter.sdk") -assert flutterSdkPath != null, "flutter.sdk not set in local.properties" -apply from: "$flutterSdkPath/packages/flutter_tools/gradle/app_plugin_loader.gradle" diff --git a/classic/frontend/assets/coding_tree_structure.json b/classic/frontend/assets/coding_tree_structure.json deleted file mode 100644 index 20767563cb..0000000000 --- a/classic/frontend/assets/coding_tree_structure.json +++ /dev/null @@ -1,344 +0,0 @@ -{ - "edges": [ - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestWriteFile::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestWriteFile::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestUrlShortener::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestUrlShortener::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestTicTacToe::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestTicTacToe::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestFileOrganizer::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestFileOrganizer::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestUrlShortener::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestUrlShortener::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestPasswordGenerator::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestPasswordGenerator::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestFileOrganizer::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestFileOrganizer::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestThreeSum::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestThreeSum::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestPasswordGenerator::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestPasswordGenerator::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestWriteFile::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestWriteFile::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestThreeSum::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestThreeSum::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestBattleship::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestBattleship::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestTicTacToe::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestTicTacToe::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestBattleship::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestBattleship::test_method[challenge_data0]" - } - ], - "nodes": [ - { - "color": "grey", - "data": { - "category": [ - "general", - "coding", - "scrape_synthesize", - "data" - ], - "cutoff": 60, - "dependencies": [ - "TestWriteFile" - ], - "eval_id": "f219f3d3-a41b-45a9-a3d0-389832086ee8", - "ground": { - "answer": "The content of output.txt should be 'Hello World!'", - "eval": { - "type": "file" - }, - "files": [ - "output.txt" - ], - "should_contain": [ - "Hello World!" - ] - }, - "info": { - "description": "Tests if the agent can read a file.", - "difficulty": "interface", - "side_effects": [ - "" - ] - }, - "name": "TestReadFile", - "task": "Read the file called file_to_read.txt and write its content to a file called output.txt" - }, - "id": "agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]", - "label": "ReadFile", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "general", - "coding", - "scrape_synthesize", - "data" - ], - "cutoff": 60, - "dependencies": [], - "eval_id": "021c695a-6cc4-46c2-b93a-f3a9b0f4d123", - "ground": { - "answer": "The word 'Washington', printed to a .txt file named anything", - "eval": { - "type": "file" - }, - "files": [ - ".txt" - ], - "should_contain": [ - "Washington" - ], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can write a file", - "difficulty": "interface", - "side_effects": [ - "" - ] - }, - "name": "TestWriteFile", - "task": "Write the word 'Washington' to a .txt file" - }, - "id": "agbenchmark/generate_test.py::TestWriteFile::test_method[challenge_data0]", - "label": "WriteFile", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "coding", - "general" - ], - "cutoff": 150, - "dependencies": [ - "TestUrlShortener" - ], - "eval_id": "504b1648-e14a-4982-8b27-074598eb4fd0", - "ground": { - "answer": "The correct python file for a TicTacToe game is written", - "eval": { - "type": "python" - }, - "files": [ - "test.py" - ], - "should_contain": [], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can create Tic-Tac-Toe game", - "difficulty": "basic", - "side_effects": [] - }, - "name": "TestTicTacToe", - "task": "Build a Tic-Tac-Toe game using a python CLI. Here are the specifications.\n\nThe Grid: The game board is a 3x3 grid, consisting of 3 rows and 3 columns, creating a total of 9 squares.\n\nPlayers: There are two players. One player uses the number \"1\", and the other player uses the number \"2\".\n\nTaking Turns: Players take turns to put their respective numbers (\"1\" or \"2\") in an empty square of the grid. Once a player has placed their number in a square, it cannot be changed or removed.\n\nObjective: The goal is to get three of your numbers in a row, either horizontally, vertically, or diagonally.\n\nEnd of the Game: The game concludes in one of two ways: One player gets three of their numbers in a row (horizontally, vertically, or diagonally) and is declared the winner.\nAll squares on the grid are filled, and no player has three in a row. This situation is a \"draw\" or a \"tie\".\n\nTechnical specifications:\nBuild a file called tic_tac_toe.py. This file will be called through command lines. You will have to prompt users for their move. Player 1 will always start.\nPlayers will input their move in the following format: \"x,y\" where x and y represent the location in the grid (0,0 is top left, 2,2 is bottom right).\n\nYour primary requirement is to halt the game when appropriate and to print only one of these three exact sentences:\n\n\"Player 1 won!\"\n\"Player 2 won!\"\n\"Draw\"\n\nEdge cases: A player can send an incorrect location. Either the location is incorrect or the square is already filled. In this case, this counts as doing nothing, and the player gets prompted for new locations again.\n\n\nYou will be expected to create a python file called tic_tac_toe.py that will run through command lines by using ```python tic_tac_toe.py```.\n\nHere is an example of how your tic_tac_toe.py game will be tested.\n```\nprocess = subprocess.Popen(\n ['python', 'tic_tac_toe.py'],\n stdout=subprocess.PIPE,\n text=True\n)\n\noutput, _ = process.communicate('\\n'.join([\"0,0\", \"1,0\", \"0,1\", \"1,1\", \"0,2\"]))\n\nassert \"Player 1 won!\" in output\n```" - }, - "id": "agbenchmark/generate_test.py::TestTicTacToe::test_method[challenge_data0]", - "label": "TicTacToe", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "coding" - ], - "cutoff": 150, - "dependencies": [ - "TestFileOrganizer" - ], - "eval_id": "8106fd7f-83fd-496e-9513-280f4a3f012c", - "ground": { - "answer": "The correct python file for a basic url shortener CLI", - "eval": { - "type": "python" - }, - "files": [ - "test.py" - ], - "should_contain": [], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can create a URL shortener.", - "difficulty": "basic", - "side_effects": [] - }, - "name": "TestUrlShortener", - "task": "Build a basic URL shortener using a python CLI. Here are the specifications.\n\nFunctionality: The program should have two primary functionalities.\n\nShorten a given URL.\nRetrieve the original URL from a shortened URL.\n\nCLI: The command-line interface should accept a URL as its first input. It should be able to determine if the url is a shortened url or not. If the url is not shortened, it will display ONLY the shortened url, otherwise, it will display ONLY the original unshortened URL. Afterwards, it should prompt the user for another URL to process.\n\nTechnical specifications:\nBuild a file called url_shortener.py. This file will be called through command lines.\n\nEdge cases:\nFor the sake of simplicity, there will be no edge cases, you can assume the input is always correct and the user immediately passes the shortened version of the url he just shortened.\n\nYou will be expected to create a python file called url_shortener.py that will run through command lines by using python url_shortener.py.\n\nThe url_shortener.py will be tested this way:\n```\nimport unittest\nfrom url_shortener import shorten_url, retrieve_url\n\nclass TestURLShortener(unittest.TestCase):\n def test_url_retrieval(self):\n # Shorten the URL to get its shortened form\n shortened_url = shorten_url('https://www.example.com')\n\n # Retrieve the original URL using the shortened URL directly\n retrieved_url = retrieve_url(shortened_url)\n\n self.assertEqual(retrieved_url, 'https://www.example.com', \"Retrieved URL does not match the original!\")\n\nif __name__ == \"__main__\":\n unittest.main()\n```" - }, - "id": "agbenchmark/generate_test.py::TestUrlShortener::test_method[challenge_data0]", - "label": "UrlShortener", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "coding", - "general" - ], - "cutoff": 90, - "dependencies": [ - "TestPasswordGenerator" - ], - "eval_id": "029c1e6f-2b36-451e-bca6-60063b827d2e", - "ground": { - "answer": "The correct python file is written and organizes the files accordingly", - "eval": { - "type": "python" - }, - "files": [ - "test.py" - ], - "should_contain": [], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can create a file organizer.", - "difficulty": "basic", - "side_effects": [] - }, - "name": "TestFileOrganizer", - "task": "Create a file organizer CLI tool in Python that sorts files in a directory based on their file types (e.g., images, documents, audio) and moves them into these corresponding folders: 'images', 'documents', 'audio'. The entry point will be a python file that can be run this way: python organize_files.py --directory_path=YOUR_DIRECTORY_PATH" - }, - "id": "agbenchmark/generate_test.py::TestFileOrganizer::test_method[challenge_data0]", - "label": "FileOrganizer", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "coding" - ], - "cutoff": 90, - "dependencies": [ - "TestThreeSum" - ], - "eval_id": "ac75c471-e0ce-400c-ba9a-fb72aaab444f", - "ground": { - "answer": "password_generator.py is created and satisfies the requirements.", - "eval": { - "type": "python" - }, - "files": [ - "test.py" - ], - "should_contain": [], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can create a random password generator.", - "difficulty": "basic", - "side_effects": [] - }, - "name": "TestPasswordGenerator", - "task": "Create a random password generator. The password should have between 8 and 16 characters and should contain letters, numbers and symbols. The password should be printed to the console. The entry point will be a python file that can be run this way: python password_generator.py [--len x] where x is the length of the password. If no length is specified, the password should be 8 characters long. The password_generator can also be imported as a module and called as password = password_generator.generate_password(len=x). Any invalid input should raise a ValueError." - }, - "id": "agbenchmark/generate_test.py::TestPasswordGenerator::test_method[challenge_data0]", - "label": "PasswordGenerator", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "coding", - "general" - ], - "cutoff": 60, - "dependencies": [ - "TestWriteFile" - ], - "eval_id": "a1ff38a4-1032-4bf2-960a-3b927f9936f4", - "ground": { - "answer": "The three_sum function coded properly.", - "eval": { - "type": "python" - }, - "files": [ - "test.py" - ], - "should_contain": [ - "[0, 1, 2]", - "[0, 2, 5]", - "[0, 2, 3]" - ], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can create the three_sum function.", - "difficulty": "basic", - "side_effects": [] - }, - "name": "TestThreeSum", - "task": "Create a three_sum function in a file called sample_code.py. Given an array of integers, return indices of the three numbers such that they add up to a specific target. You may assume that each input would have exactly one solution, and you may not use the same element twice. Example: Given nums = [2, 7, 11, 15], target = 20, Because nums[0] + nums[1] + nums[2] = 2 + 7 + 11 = 20, return [0, 1, 2]." - }, - "id": "agbenchmark/generate_test.py::TestThreeSum::test_method[challenge_data0]", - "label": "ThreeSum", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "coding", - "general" - ], - "cutoff": 90, - "dependencies": [ - "TestTicTacToe", - "TestReadFile" - ], - "eval_id": "4d613d05-475f-4f72-bf12-f6d3714340c1", - "ground": { - "answer": "The implementation of battleship that passes all the tests.", - "eval": { - "type": "pytest" - }, - "files": [], - "should_contain": [], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can create a Battleship.", - "difficulty": "expert", - "side_effects": [] - }, - "name": "TestBattleship", - "task": "Build a battleship game\n\nSpecifications:\n\nOverview: Battleship is a two-player strategy game where each player places their fleet of ships on a grid and tries to sink the opponent's fleet by guessing their locations.\nPlayers take turns calling out a row and column, attempting to name a square containing one of the opponent's ships.\n\nThe Grid: Each player's grid is a 10x10 grid, identified by rows (using numbers 1-10) and columns (using letters A-J).\n\nShips:\n\nCarrier - 5 squares\nBattleship - 4 squares\nCruiser - 3 squares\nSubmarine - 3 squares\nDestroyer - 2 squares\nEach ship occupies contiguous squares on the grid, arranged either horizontally or vertically.\n\nSetup:\n\nAt the start of the game, each player places their fleet on their grid. This setup is hidden from the opponent.\nThe game begins with Player 1, followed by Player 2, and so on.\nTaking Turns:\n\nOn a player's turn, they announce a grid square (e.g., \"D5\").\nThe opponent announces whether that square is a \"hit\" (if there's a part of a ship on that square) or \"miss\" (if the square is empty).\nIf a player hits a square occupied by a ship, they get another turn to guess. This continues until they make a miss, at which point their turn ends.\nIf a player hits all the squares occupied by a ship, the opponent must announce the sinking of that specific ship, e.g., \"You sank my Battleship!\"\n\nObjective: The goal is to sink all of your opponent's ships before they sink yours.\n\nEnd of the Game: The game ends when one player has sunk all of the opponent's ships. The winner is the player who sinks all the opposing fleet first.\n\nTechnical details:\nIn your root folder you will find an abstract class that defines the public interface of the Battleship class you will have to build:\n```\nfrom abc import ABC, abstractmethod\nfrom typing import Optional\n\nfrom pydantic import BaseModel, validator\n\n\n# Models for the request and response payloads\nclass ShipPlacement(BaseModel):\n ship_type: str\n start: dict # {\"row\": int, \"column\": str}\n direction: str\n\n @validator(\"start\")\n def validate_start(cls, start):\n row, column = start.get(\"row\"), start.get(\"column\")\n\n if not (1 <= row <= 10):\n raise ValueError(\"Row must be between 1 and 10 inclusive.\")\n\n if column not in list(\"ABCDEFGHIJ\"):\n raise ValueError(\"Column must be one of A, B, C, D, E, F, G, H, I, J.\")\n\n return start\n\n\nclass Turn(BaseModel):\n target: dict # {\"row\": int, \"column\": str}\n\n\nclass TurnResponse(BaseModel):\n result: str\n ship_type: Optional[str] # This would be None if the result is a miss\n\n\nclass GameStatus(BaseModel):\n is_game_over: bool\n winner: Optional[str]\n\n\nfrom typing import List\n\n\nclass Game(BaseModel):\n game_id: str\n players: List[str]\n board: dict # This could represent the state of the game board, you might need to flesh this out further\n ships: List[ShipPlacement] # List of ship placements for this game\n turns: List[Turn] # List of turns that have been taken\n\n\nclass AbstractBattleship(ABC):\n SHIP_LENGTHS = {\n \"carrier\": 5,\n \"battleship\": 4,\n \"cruiser\": 3,\n \"submarine\": 3,\n \"destroyer\": 2,\n }\n\n @abstractmethod\n def create_ship_placement(self, game_id: str, placement: ShipPlacement) -> None:\n \"\"\"\n Place a ship on the grid.\n \"\"\"\n pass\n\n @abstractmethod\n def create_turn(self, game_id: str, turn: Turn) -> TurnResponse:\n \"\"\"\n Players take turns to target a grid cell.\n \"\"\"\n pass\n\n @abstractmethod\n def get_game_status(self, game_id: str) -> GameStatus:\n \"\"\"\n Check if the game is over and get the winner if there's one.\n \"\"\"\n pass\n\n @abstractmethod\n def get_winner(self, game_id: str) -> str:\n \"\"\"\n Get the winner of the game.\n \"\"\"\n pass\n\n @abstractmethod\n def get_game(self) -> Game:\n \"\"\"\n Retrieve the state of the game.\n \"\"\"\n pass\n\n @abstractmethod\n def delete_game(self, game_id: str) -> None:\n \"\"\"\n Delete a game given its ID.\n \"\"\"\n pass\n\n @abstractmethod\n def create_game(self) -> None:\n \"\"\"\n Create a new game.\n \"\"\"\n pass\n\n```\nAt any moment you can run ```pytest``` to execute the tests.\nYou have two types of test: \n- positive tests => test the battleship game being used in ideal conditions\n- negative tests => tests the battleship game behaviour when used incorrectly\n\nSuccess criteria:\n- you will need to write a file called battleship.py that implements the abstract Battleship class.\n- this class will have to pass all the tests.\n- you're not allowed to modify any other file than the battleship.py. You can add other files as long as the main entrypoint is the battleship class." - }, - "id": "agbenchmark/generate_test.py::TestBattleship::test_method[challenge_data0]", - "label": "Battleship", - "shape": "dot" - } - ] -} diff --git a/classic/frontend/assets/data_tree_structure.json b/classic/frontend/assets/data_tree_structure.json deleted file mode 100644 index a5102dd349..0000000000 --- a/classic/frontend/assets/data_tree_structure.json +++ /dev/null @@ -1,360 +0,0 @@ -{ - "edges": [ - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestWriteFile::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestWriteFile::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestAnswerQuestionSmallCsv::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestAnswerQuestionSmallCsv::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestAnswerQuestionCsv::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestAnswerQuestionCsv::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestAnswerQuestionSmallCsv::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestAnswerQuestionSmallCsv::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestAnswerQuestionCsv::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestAnswerQuestionCsv::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestAnswerQuestionCombineCsv::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestAnswerQuestionCombineCsv::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestCombineCsv::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestCombineCsv::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestAnswerQuestionCombineCsv::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestAnswerQuestionCombineCsv::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestLabelCsv::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestLabelCsv::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestCombineCsv::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestCombineCsv::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestSortCsv::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestSortCsv::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestLabelCsv::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestLabelCsv::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestSortCsv::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestSortCsv::test_method[challenge_data0]" - } - ], - "nodes": [ - { - "color": "grey", - "data": { - "category": [ - "general", - "coding", - "scrape_synthesize", - "data" - ], - "cutoff": 60, - "dependencies": [ - "TestWriteFile" - ], - "eval_id": "f219f3d3-a41b-45a9-a3d0-389832086ee8", - "ground": { - "answer": "The content of output.txt should be 'Hello World!'", - "eval": { - "type": "file" - }, - "files": [ - "output.txt" - ], - "should_contain": [ - "Hello World!" - ] - }, - "info": { - "description": "Tests if the agent can read a file.", - "difficulty": "interface", - "side_effects": [ - "" - ] - }, - "name": "TestReadFile", - "task": "Read the file called file_to_read.txt and write its content to a file called output.txt" - }, - "id": "agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]", - "label": "ReadFile", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "general", - "coding", - "scrape_synthesize", - "data" - ], - "cutoff": 60, - "dependencies": [], - "eval_id": "021c695a-6cc4-46c2-b93a-f3a9b0f4d123", - "ground": { - "answer": "The word 'Washington', printed to a .txt file named anything", - "eval": { - "type": "file" - }, - "files": [ - ".txt" - ], - "should_contain": [ - "Washington" - ], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can write a file", - "difficulty": "interface", - "side_effects": [ - "" - ] - }, - "name": "TestWriteFile", - "task": "Write the word 'Washington' to a .txt file" - }, - "id": "agbenchmark/generate_test.py::TestWriteFile::test_method[challenge_data0]", - "label": "WriteFile", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "data" - ], - "cutoff": 90, - "dependencies": [ - "TestAnswerQuestionSmallCsv" - ], - "eval_id": "bb6e0a4b-7faf-4aa6-a524-548cddbc2732", - "ground": { - "answer": "The correct amount spent on utilities.", - "eval": { - "type": "file" - }, - "files": [ - "output.txt" - ], - "should_contain": [ - "1861" - ] - }, - "info": { - "description": "Tests if the agent can answer a question from a csv", - "difficulty": "intermediate", - "side_effects": [ - "" - ] - }, - "name": "TestAnswerQuestionCsv", - "task": "How much was spent on utilities in total ? Write the answer in an output.txt file." - }, - "id": "agbenchmark/generate_test.py::TestAnswerQuestionCsv::test_method[challenge_data0]", - "label": "AnswerQuestionCsv", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "data", - "general" - ], - "cutoff": 60, - "dependencies": [ - "TestReadFile" - ], - "eval_id": "9df3f07a-5047-488f-b788-1e1f57eba970", - "ground": { - "answer": "The correct amount spent on utilities.", - "eval": { - "type": "file" - }, - "files": [ - "output.txt" - ], - "should_contain": [ - "84" - ] - }, - "info": { - "description": "Tests if the agent can answer a question from a small csv", - "difficulty": "intermediate", - "side_effects": [ - "" - ] - }, - "name": "TestAnswerQuestionSmallCsv", - "task": "How much was spent on utilities in total ? Write the answer in an output.txt file." - }, - "id": "agbenchmark/generate_test.py::TestAnswerQuestionSmallCsv::test_method[challenge_data0]", - "label": "AnswerQuestionSmallCsv", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "data", - "general" - ], - "cutoff": 120, - "dependencies": [ - "TestAnswerQuestionCsv", - "TestCombineCsv" - ], - "eval_id": "b1bb61cd-3d09-4a69-bb2a-9dbb3c477589", - "ground": { - "answer": "The correct amount spent on utilities.", - "eval": { - "type": "file" - }, - "files": [ - "output.txt" - ], - "should_contain": [ - "1861" - ] - }, - "info": { - "description": "Tests if the agent can answer a question from a csv", - "difficulty": "intermediate", - "side_effects": [ - "" - ] - }, - "name": "TestAnswerQuestionCombineCsv", - "task": "How much was spent on utilities in total ? Write the answer in an output.txt file." - }, - "id": "agbenchmark/generate_test.py::TestAnswerQuestionCombineCsv::test_method[challenge_data0]", - "label": "AnswerQuestionCombineCsv", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "data", - "general" - ], - "cutoff": 60, - "dependencies": [ - "TestLabelCsv" - ], - "eval_id": "52467beb-b951-4356-9776-9a0ae46bb33b", - "ground": { - "answer": "The csv data is combined", - "eval": { - "type": "file" - }, - "files": [ - "output.csv" - ], - "should_contain": [ - "Age,ID,Name,Occupation,Salary\n28,101,John,Engineer,80000\n34,102,Alice,Doctor,120000\n45,103,Bob,Lawyer,95000" - ] - }, - "info": { - "description": "Tests if the agent can combine data from a csv", - "difficulty": "intermediate", - "side_effects": [ - "" - ] - }, - "name": "TestCombineCsv", - "task": "The csvs 'file1.csv' and 'file2.csv' both have a column 'ID'. Combine these 2 csvs using the 'ID' column. Sort the rows by ID in ascending order and the columns alphabetically. Write the output in output.csv" - }, - "id": "agbenchmark/generate_test.py::TestCombineCsv::test_method[challenge_data0]", - "label": "CombineCsv", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "data" - ], - "cutoff": 60, - "dependencies": [ - "TestSortCsv" - ], - "eval_id": "6e2bf1f0-6842-4704-8ed1-b17c2065bbac", - "ground": { - "answer": "The csv labelled", - "eval": { - "type": "file" - }, - "files": [ - "output.csv" - ], - "should_contain": [ - "Item,Color\nBanana,yellow\nLeaf,green\nSky,blue\nSunflower,yellow\nGrass,green\nJeans,blue\nLemon,yellow\nTree,green\nOcean,blue\nDaisy,yellow\nFern,green" - ] - }, - "info": { - "description": "Tests if the agent can label data in a csv", - "difficulty": "basic", - "side_effects": [ - "" - ] - }, - "name": "TestLabelCsv", - "task": "The csv 'input.csv' has many items. create a 'Color' column for these items and classify them as either 'blue', 'green', or 'yellow' depending on what the most likely color is. Preserve the order of the rows. The color column should be the second column. Write the output in output.csv" - }, - "id": "agbenchmark/generate_test.py::TestLabelCsv::test_method[challenge_data0]", - "label": "LabelCsv", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "data", - "general" - ], - "cutoff": 60, - "dependencies": [ - "TestReadFile" - ], - "eval_id": "d59ec964-6f67-4b3d-a4de-c4436fc76f95", - "ground": { - "answer": "The csv sorted by date", - "eval": { - "type": "file" - }, - "files": [ - "output.csv" - ], - "should_contain": [ - "id,name,timestamp\n1,Bob,2023-09-24 12:05:00\n2,Charlie,2023-09-24 12:10:00\n3,Alice,2023-09-25 14:10:00\n4,David,2023-09-26 16:20:00" - ] - }, - "info": { - "description": "Tests if the agent can sort a csv", - "difficulty": "basic", - "side_effects": [ - "" - ] - }, - "name": "TestSortCsv", - "task": "Sort the input.csv by the 'timestamp' column and write the new csv in the output.csv file. The order of the columns should be preserved." - }, - "id": "agbenchmark/generate_test.py::TestSortCsv::test_method[challenge_data0]", - "label": "SortCsv", - "shape": "dot" - } - ] -} diff --git a/classic/frontend/assets/general_tree_structure.json b/classic/frontend/assets/general_tree_structure.json deleted file mode 100644 index a2d06d6e23..0000000000 --- a/classic/frontend/assets/general_tree_structure.json +++ /dev/null @@ -1,897 +0,0 @@ -{ - "edges": [ - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestWriteFile::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestWriteFile::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestUrlShortener::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestUrlShortener::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestTicTacToe::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestTicTacToe::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestFileOrganizer::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestFileOrganizer::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestUrlShortener::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestUrlShortener::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestPasswordGenerator::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestPasswordGenerator::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestFileOrganizer::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestFileOrganizer::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestThreeSum::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestThreeSum::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestPasswordGenerator::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestPasswordGenerator::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestWriteFile::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestWriteFile::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestThreeSum::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestThreeSum::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestBattleship::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestBattleship::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestTicTacToe::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestTicTacToe::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestBattleship::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestBattleship::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestSearch::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestSearch::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestBasicRetrieval::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestBasicRetrieval::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestWriteFile::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestWriteFile::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestSearch::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestSearch::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestRevenueRetrieval2::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestRevenueRetrieval2::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestTestGetInformation::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestTestGetInformation::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestRevenueRetrieval::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestRevenueRetrieval::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestRevenueRetrieval2::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestRevenueRetrieval2::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestBasicRetrieval::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestBasicRetrieval::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestRevenueRetrieval::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestRevenueRetrieval::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestAnswerQuestionCsv::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestAnswerQuestionCsv::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestAnswerQuestionCombineCsv::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestAnswerQuestionCombineCsv::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestAnswerQuestionSmallCsv::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestAnswerQuestionSmallCsv::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestAnswerQuestionCsv::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestAnswerQuestionCsv::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestAnswerQuestionSmallCsv::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestAnswerQuestionSmallCsv::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestCombineCsv::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestCombineCsv::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestAnswerQuestionCombineCsv::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestAnswerQuestionCombineCsv::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestLabelCsv::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestLabelCsv::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestCombineCsv::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestCombineCsv::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestSortCsv::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestSortCsv::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestLabelCsv::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestLabelCsv::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestSortCsv::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestSortCsv::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestSynthesizeInfo::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestSynthesizeInfo::test_method[challenge_data0]" - } - ], - "nodes": [ - { - "color": "grey", - "data": { - "category": [ - "general", - "coding", - "scrape_synthesize", - "data" - ], - "cutoff": 60, - "dependencies": [ - "TestWriteFile" - ], - "eval_id": "f219f3d3-a41b-45a9-a3d0-389832086ee8", - "ground": { - "answer": "The content of output.txt should be 'Hello World!'", - "eval": { - "type": "file" - }, - "files": [ - "output.txt" - ], - "should_contain": [ - "Hello World!" - ] - }, - "info": { - "description": "Tests if the agent can read a file.", - "difficulty": "interface", - "side_effects": [ - "" - ] - }, - "name": "TestReadFile", - "task": "Read the file called file_to_read.txt and write its content to a file called output.txt" - }, - "id": "agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]", - "label": "ReadFile", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "general", - "coding", - "scrape_synthesize", - "data" - ], - "cutoff": 60, - "dependencies": [], - "eval_id": "021c695a-6cc4-46c2-b93a-f3a9b0f4d123", - "ground": { - "answer": "The word 'Washington', printed to a .txt file named anything", - "eval": { - "type": "file" - }, - "files": [ - ".txt" - ], - "should_contain": [ - "Washington" - ], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can write a file", - "difficulty": "interface", - "side_effects": [ - "" - ] - }, - "name": "TestWriteFile", - "task": "Write the word 'Washington' to a .txt file" - }, - "id": "agbenchmark/generate_test.py::TestWriteFile::test_method[challenge_data0]", - "label": "WriteFile", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "coding", - "general" - ], - "cutoff": 150, - "dependencies": [ - "TestUrlShortener" - ], - "eval_id": "504b1648-e14a-4982-8b27-074598eb4fd0", - "ground": { - "answer": "The correct python file for a TicTacToe game is written", - "eval": { - "type": "python" - }, - "files": [ - "test.py" - ], - "should_contain": [], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can create Tic-Tac-Toe game", - "difficulty": "basic", - "side_effects": [] - }, - "name": "TestTicTacToe", - "task": "Build a Tic-Tac-Toe game using a python CLI. Here are the specifications.\n\nThe Grid: The game board is a 3x3 grid, consisting of 3 rows and 3 columns, creating a total of 9 squares.\n\nPlayers: There are two players. One player uses the number \"1\", and the other player uses the number \"2\".\n\nTaking Turns: Players take turns to put their respective numbers (\"1\" or \"2\") in an empty square of the grid. Once a player has placed their number in a square, it cannot be changed or removed.\n\nObjective: The goal is to get three of your numbers in a row, either horizontally, vertically, or diagonally.\n\nEnd of the Game: The game concludes in one of two ways: One player gets three of their numbers in a row (horizontally, vertically, or diagonally) and is declared the winner.\nAll squares on the grid are filled, and no player has three in a row. This situation is a \"draw\" or a \"tie\".\n\nTechnical specifications:\nBuild a file called tic_tac_toe.py. This file will be called through command lines. You will have to prompt users for their move. Player 1 will always start.\nPlayers will input their move in the following format: \"x,y\" where x and y represent the location in the grid (0,0 is top left, 2,2 is bottom right).\n\nYour primary requirement is to halt the game when appropriate and to print only one of these three exact sentences:\n\n\"Player 1 won!\"\n\"Player 2 won!\"\n\"Draw\"\n\nEdge cases: A player can send an incorrect location. Either the location is incorrect or the square is already filled. In this case, this counts as doing nothing, and the player gets prompted for new locations again.\n\n\nYou will be expected to create a python file called tic_tac_toe.py that will run through command lines by using ```python tic_tac_toe.py```.\n\nHere is an example of how your tic_tac_toe.py game will be tested.\n```\nprocess = subprocess.Popen(\n ['python', 'tic_tac_toe.py'],\n stdout=subprocess.PIPE,\n text=True\n)\n\noutput, _ = process.communicate('\\n'.join([\"0,0\", \"1,0\", \"0,1\", \"1,1\", \"0,2\"]))\n\nassert \"Player 1 won!\" in output\n```" - }, - "id": "agbenchmark/generate_test.py::TestTicTacToe::test_method[challenge_data0]", - "label": "TicTacToe", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "coding" - ], - "cutoff": 150, - "dependencies": [ - "TestFileOrganizer" - ], - "eval_id": "8106fd7f-83fd-496e-9513-280f4a3f012c", - "ground": { - "answer": "The correct python file for a basic url shortener CLI", - "eval": { - "type": "python" - }, - "files": [ - "test.py" - ], - "should_contain": [], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can create a URL shortener.", - "difficulty": "basic", - "side_effects": [] - }, - "name": "TestUrlShortener", - "task": "Build a basic URL shortener using a python CLI. Here are the specifications.\n\nFunctionality: The program should have two primary functionalities.\n\nShorten a given URL.\nRetrieve the original URL from a shortened URL.\n\nCLI: The command-line interface should accept a URL as its first input. It should be able to determine if the url is a shortened url or not. If the url is not shortened, it will display ONLY the shortened url, otherwise, it will display ONLY the original unshortened URL. Afterwards, it should prompt the user for another URL to process.\n\nTechnical specifications:\nBuild a file called url_shortener.py. This file will be called through command lines.\n\nEdge cases:\nFor the sake of simplicity, there will be no edge cases, you can assume the input is always correct and the user immediately passes the shortened version of the url he just shortened.\n\nYou will be expected to create a python file called url_shortener.py that will run through command lines by using python url_shortener.py.\n\nThe url_shortener.py will be tested this way:\n```\nimport unittest\nfrom url_shortener import shorten_url, retrieve_url\n\nclass TestURLShortener(unittest.TestCase):\n def test_url_retrieval(self):\n # Shorten the URL to get its shortened form\n shortened_url = shorten_url('https://www.example.com')\n\n # Retrieve the original URL using the shortened URL directly\n retrieved_url = retrieve_url(shortened_url)\n\n self.assertEqual(retrieved_url, 'https://www.example.com', \"Retrieved URL does not match the original!\")\n\nif __name__ == \"__main__\":\n unittest.main()\n```" - }, - "id": "agbenchmark/generate_test.py::TestUrlShortener::test_method[challenge_data0]", - "label": "UrlShortener", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "coding", - "general" - ], - "cutoff": 90, - "dependencies": [ - "TestPasswordGenerator" - ], - "eval_id": "029c1e6f-2b36-451e-bca6-60063b827d2e", - "ground": { - "answer": "The correct python file is written and organizes the files accordingly", - "eval": { - "type": "python" - }, - "files": [ - "test.py" - ], - "should_contain": [], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can create a file organizer.", - "difficulty": "basic", - "side_effects": [] - }, - "name": "TestFileOrganizer", - "task": "Create a file organizer CLI tool in Python that sorts files in a directory based on their file types (e.g., images, documents, audio) and moves them into these corresponding folders: 'images', 'documents', 'audio'. The entry point will be a python file that can be run this way: python organize_files.py --directory_path=YOUR_DIRECTORY_PATH" - }, - "id": "agbenchmark/generate_test.py::TestFileOrganizer::test_method[challenge_data0]", - "label": "FileOrganizer", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "coding" - ], - "cutoff": 90, - "dependencies": [ - "TestThreeSum" - ], - "eval_id": "ac75c471-e0ce-400c-ba9a-fb72aaab444f", - "ground": { - "answer": "password_generator.py is created and satisfies the requirements.", - "eval": { - "type": "python" - }, - "files": [ - "test.py" - ], - "should_contain": [], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can create a random password generator.", - "difficulty": "basic", - "side_effects": [] - }, - "name": "TestPasswordGenerator", - "task": "Create a random password generator. The password should have between 8 and 16 characters and should contain letters, numbers and symbols. The password should be printed to the console. The entry point will be a python file that can be run this way: python password_generator.py [--len x] where x is the length of the password. If no length is specified, the password should be 8 characters long. The password_generator can also be imported as a module and called as password = password_generator.generate_password(len=x). Any invalid input should raise a ValueError." - }, - "id": "agbenchmark/generate_test.py::TestPasswordGenerator::test_method[challenge_data0]", - "label": "PasswordGenerator", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "coding", - "general" - ], - "cutoff": 60, - "dependencies": [ - "TestWriteFile" - ], - "eval_id": "a1ff38a4-1032-4bf2-960a-3b927f9936f4", - "ground": { - "answer": "The three_sum function coded properly.", - "eval": { - "type": "python" - }, - "files": [ - "test.py" - ], - "should_contain": [ - "[0, 1, 2]", - "[0, 2, 5]", - "[0, 2, 3]" - ], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can create the three_sum function.", - "difficulty": "basic", - "side_effects": [] - }, - "name": "TestThreeSum", - "task": "Create a three_sum function in a file called sample_code.py. Given an array of integers, return indices of the three numbers such that they add up to a specific target. You may assume that each input would have exactly one solution, and you may not use the same element twice. Example: Given nums = [2, 7, 11, 15], target = 20, Because nums[0] + nums[1] + nums[2] = 2 + 7 + 11 = 20, return [0, 1, 2]." - }, - "id": "agbenchmark/generate_test.py::TestThreeSum::test_method[challenge_data0]", - "label": "ThreeSum", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "coding", - "general" - ], - "cutoff": 90, - "dependencies": [ - "TestTicTacToe", - "TestReadFile" - ], - "eval_id": "4d613d05-475f-4f72-bf12-f6d3714340c1", - "ground": { - "answer": "The implementation of battleship that passes all the tests.", - "eval": { - "type": "pytest" - }, - "files": [], - "should_contain": [], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can create a Battleship.", - "difficulty": "expert", - "side_effects": [] - }, - "name": "TestBattleship", - "task": "Build a battleship game\n\nSpecifications:\n\nOverview: Battleship is a two-player strategy game where each player places their fleet of ships on a grid and tries to sink the opponent's fleet by guessing their locations.\nPlayers take turns calling out a row and column, attempting to name a square containing one of the opponent's ships.\n\nThe Grid: Each player's grid is a 10x10 grid, identified by rows (using numbers 1-10) and columns (using letters A-J).\n\nShips:\n\nCarrier - 5 squares\nBattleship - 4 squares\nCruiser - 3 squares\nSubmarine - 3 squares\nDestroyer - 2 squares\nEach ship occupies contiguous squares on the grid, arranged either horizontally or vertically.\n\nSetup:\n\nAt the start of the game, each player places their fleet on their grid. This setup is hidden from the opponent.\nThe game begins with Player 1, followed by Player 2, and so on.\nTaking Turns:\n\nOn a player's turn, they announce a grid square (e.g., \"D5\").\nThe opponent announces whether that square is a \"hit\" (if there's a part of a ship on that square) or \"miss\" (if the square is empty).\nIf a player hits a square occupied by a ship, they get another turn to guess. This continues until they make a miss, at which point their turn ends.\nIf a player hits all the squares occupied by a ship, the opponent must announce the sinking of that specific ship, e.g., \"You sank my Battleship!\"\n\nObjective: The goal is to sink all of your opponent's ships before they sink yours.\n\nEnd of the Game: The game ends when one player has sunk all of the opponent's ships. The winner is the player who sinks all the opposing fleet first.\n\nTechnical details:\nIn your root folder you will find an abstract class that defines the public interface of the Battleship class you will have to build:\n```\nfrom abc import ABC, abstractmethod\nfrom typing import Optional\n\nfrom pydantic import BaseModel, validator\n\n\n# Models for the request and response payloads\nclass ShipPlacement(BaseModel):\n ship_type: str\n start: dict # {\"row\": int, \"column\": str}\n direction: str\n\n @validator(\"start\")\n def validate_start(cls, start):\n row, column = start.get(\"row\"), start.get(\"column\")\n\n if not (1 <= row <= 10):\n raise ValueError(\"Row must be between 1 and 10 inclusive.\")\n\n if column not in list(\"ABCDEFGHIJ\"):\n raise ValueError(\"Column must be one of A, B, C, D, E, F, G, H, I, J.\")\n\n return start\n\n\nclass Turn(BaseModel):\n target: dict # {\"row\": int, \"column\": str}\n\n\nclass TurnResponse(BaseModel):\n result: str\n ship_type: Optional[str] # This would be None if the result is a miss\n\n\nclass GameStatus(BaseModel):\n is_game_over: bool\n winner: Optional[str]\n\n\nfrom typing import List\n\n\nclass Game(BaseModel):\n game_id: str\n players: List[str]\n board: dict # This could represent the state of the game board, you might need to flesh this out further\n ships: List[ShipPlacement] # List of ship placements for this game\n turns: List[Turn] # List of turns that have been taken\n\n\nclass AbstractBattleship(ABC):\n SHIP_LENGTHS = {\n \"carrier\": 5,\n \"battleship\": 4,\n \"cruiser\": 3,\n \"submarine\": 3,\n \"destroyer\": 2,\n }\n\n @abstractmethod\n def create_ship_placement(self, game_id: str, placement: ShipPlacement) -> None:\n \"\"\"\n Place a ship on the grid.\n \"\"\"\n pass\n\n @abstractmethod\n def create_turn(self, game_id: str, turn: Turn) -> TurnResponse:\n \"\"\"\n Players take turns to target a grid cell.\n \"\"\"\n pass\n\n @abstractmethod\n def get_game_status(self, game_id: str) -> GameStatus:\n \"\"\"\n Check if the game is over and get the winner if there's one.\n \"\"\"\n pass\n\n @abstractmethod\n def get_winner(self, game_id: str) -> str:\n \"\"\"\n Get the winner of the game.\n \"\"\"\n pass\n\n @abstractmethod\n def get_game(self) -> Game:\n \"\"\"\n Retrieve the state of the game.\n \"\"\"\n pass\n\n @abstractmethod\n def delete_game(self, game_id: str) -> None:\n \"\"\"\n Delete a game given its ID.\n \"\"\"\n pass\n\n @abstractmethod\n def create_game(self) -> None:\n \"\"\"\n Create a new game.\n \"\"\"\n pass\n\n```\nAt any moment you can run ```pytest``` to execute the tests.\nYou have two types of test: \n- positive tests => test the battleship game being used in ideal conditions\n- negative tests => tests the battleship game behaviour when used incorrectly\n\nSuccess criteria:\n- you will need to write a file called battleship.py that implements the abstract Battleship class.\n- this class will have to pass all the tests.\n- you're not allowed to modify any other file than the battleship.py. You can add other files as long as the main entrypoint is the battleship class." - }, - "id": "agbenchmark/generate_test.py::TestBattleship::test_method[challenge_data0]", - "label": "Battleship", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "scrape_synthesize", - "general" - ], - "cutoff": 60, - "dependencies": [ - "TestSearch" - ], - "eval_id": "cd96e6b2-779d-4a4a-8367-d520023e27ae", - "ground": { - "answer": "\u00a325.89", - "eval": { - "type": "file" - }, - "files": [ - ".txt" - ], - "should_contain": [ - "25.89" - ], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can retrieve a specific information from a website.", - "difficulty": "basic", - "side_effects": [] - }, - "name": "TestBasicRetrieval", - "task": "Write the price of the book in this url 'http://books.toscrape.com/catalogue/meditations_33/index.html' to a .txt file." - }, - "id": "agbenchmark/generate_test.py::TestBasicRetrieval::test_method[challenge_data0]", - "label": "BasicRetrieval", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "general", - "scrape_synthesize" - ], - "cutoff": 120, - "dependencies": [ - "TestWriteFile" - ], - "eval_id": "0bb23182-b434-402b-a73e-9c226469b959", - "ground": { - "answer": "This is a Heading\nThis is a paragraph.", - "eval": { - "type": "file" - }, - "files": [ - ".txt" - ], - "should_contain": [ - "Heading", - "paragraph" - ], - "should_not_contain": [ - "The", - "the" - ] - }, - "info": { - "description": "Tests if the agent can search.", - "difficulty": "interface", - "side_effects": [ - "" - ] - }, - "name": "TestSearch", - "task": "Open 'https://silennaihin.com/random/plain.html' and paste all of the text on the page in a .txt file" - }, - "id": "agbenchmark/generate_test.py::TestSearch::test_method[challenge_data0]", - "label": "Search", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "scrape_synthesize", - "general" - ], - "cutoff": 60, - "dependencies": [ - "TestRevenueRetrieval2" - ], - "eval_id": "1758058c-f726-484f-96fa-f05e278e5ff5", - "ground": { - "answer": "The twitter handles of the two hosts of Latent Space.", - "eval": { - "type": "file" - }, - "files": [ - "output.txt" - ], - "should_contain": [ - "swyx", - "FanaHOVA" - ], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can retrieve twitter handles given a vague description.", - "difficulty": "intermediate", - "side_effects": [ - "" - ] - }, - "name": "TestTestGetInformation", - "task": "Write the twitter handle of the two hosts of Latent Space to a file called output.txt" - }, - "id": "agbenchmark/generate_test.py::TestTestGetInformation::test_method[challenge_data0]", - "label": "TestGetInformation", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "scrape_synthesize" - ], - "cutoff": 60, - "dependencies": [ - "TestRevenueRetrieval" - ], - "eval_id": "552bdf23-db40-4bd1-b123-4ed820886cc1", - "ground": { - "answer": "15 Millions\n112 Millions\n117 Millions\n204 Millions\n413 Millions\n2,014 Millions\n3,198 Millions\n4,046 Millions\n7,000 Millions\n11,759 Millions\n21,461 Millions\n24,578 Millions\n31,536 Millions\n53,823 Millions\n81,462 Millions", - "eval": { - "type": "file" - }, - "files": [ - ".txt" - ], - "should_contain": [ - "15", - "112", - "117", - "204", - "413", - "2,014", - "3,198", - "4,046", - "7,000", - "11,759", - "21,461", - "24,578", - "31,536", - "53,823", - "81,462" - ], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can retrieve all the revenues of Tesla since its creation.", - "difficulty": "intermediate", - "side_effects": [ - "tests if there is in fact an LLM attached" - ] - }, - "name": "TestRevenueRetrieval2", - "task": "Write tesla's revenue every year since its creation into a .txt file. Use the US notation, with a precision rounded to the nearest million dollars (for instance, $31,578 million)." - }, - "id": "agbenchmark/generate_test.py::TestRevenueRetrieval2::test_method[challenge_data0]", - "label": "RevenueRetrieval2", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "scrape_synthesize", - "general" - ], - "cutoff": 60, - "dependencies": [ - "TestBasicRetrieval" - ], - "eval_id": "dc2114d7-1597-4c9b-bed0-a97937ad977f", - "ground": { - "answer": "It was $81.462 billion in 2022. In millions the answer is 81,462.", - "eval": { - "type": "file" - }, - "files": [ - ".txt" - ], - "should_contain": [ - "81,462" - ], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can retrieve Tesla's revenue in 2022.", - "difficulty": "intermediate", - "side_effects": [] - }, - "name": "TestRevenueRetrieval", - "task": "Write tesla's exact revenue in 2022 into a .txt file. Use the US notation, with a precision rounded to the nearest million dollars (for instance, $31,578 million)." - }, - "id": "agbenchmark/generate_test.py::TestRevenueRetrieval::test_method[challenge_data0]", - "label": "RevenueRetrieval", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "data", - "general" - ], - "cutoff": 120, - "dependencies": [ - "TestAnswerQuestionCsv", - "TestCombineCsv" - ], - "eval_id": "b1bb61cd-3d09-4a69-bb2a-9dbb3c477589", - "ground": { - "answer": "The correct amount spent on utilities.", - "eval": { - "type": "file" - }, - "files": [ - "output.txt" - ], - "should_contain": [ - "1861" - ] - }, - "info": { - "description": "Tests if the agent can answer a question from a csv", - "difficulty": "intermediate", - "side_effects": [ - "" - ] - }, - "name": "TestAnswerQuestionCombineCsv", - "task": "How much was spent on utilities in total ? Write the answer in an output.txt file." - }, - "id": "agbenchmark/generate_test.py::TestAnswerQuestionCombineCsv::test_method[challenge_data0]", - "label": "AnswerQuestionCombineCsv", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "data" - ], - "cutoff": 90, - "dependencies": [ - "TestAnswerQuestionSmallCsv" - ], - "eval_id": "bb6e0a4b-7faf-4aa6-a524-548cddbc2732", - "ground": { - "answer": "The correct amount spent on utilities.", - "eval": { - "type": "file" - }, - "files": [ - "output.txt" - ], - "should_contain": [ - "1861" - ] - }, - "info": { - "description": "Tests if the agent can answer a question from a csv", - "difficulty": "intermediate", - "side_effects": [ - "" - ] - }, - "name": "TestAnswerQuestionCsv", - "task": "How much was spent on utilities in total ? Write the answer in an output.txt file." - }, - "id": "agbenchmark/generate_test.py::TestAnswerQuestionCsv::test_method[challenge_data0]", - "label": "AnswerQuestionCsv", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "data", - "general" - ], - "cutoff": 60, - "dependencies": [ - "TestReadFile" - ], - "eval_id": "9df3f07a-5047-488f-b788-1e1f57eba970", - "ground": { - "answer": "The correct amount spent on utilities.", - "eval": { - "type": "file" - }, - "files": [ - "output.txt" - ], - "should_contain": [ - "84" - ] - }, - "info": { - "description": "Tests if the agent can answer a question from a small csv", - "difficulty": "intermediate", - "side_effects": [ - "" - ] - }, - "name": "TestAnswerQuestionSmallCsv", - "task": "How much was spent on utilities in total ? Write the answer in an output.txt file." - }, - "id": "agbenchmark/generate_test.py::TestAnswerQuestionSmallCsv::test_method[challenge_data0]", - "label": "AnswerQuestionSmallCsv", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "data", - "general" - ], - "cutoff": 60, - "dependencies": [ - "TestLabelCsv" - ], - "eval_id": "52467beb-b951-4356-9776-9a0ae46bb33b", - "ground": { - "answer": "The csv data is combined", - "eval": { - "type": "file" - }, - "files": [ - "output.csv" - ], - "should_contain": [ - "Age,ID,Name,Occupation,Salary\n28,101,John,Engineer,80000\n34,102,Alice,Doctor,120000\n45,103,Bob,Lawyer,95000" - ] - }, - "info": { - "description": "Tests if the agent can combine data from a csv", - "difficulty": "intermediate", - "side_effects": [ - "" - ] - }, - "name": "TestCombineCsv", - "task": "The csvs 'file1.csv' and 'file2.csv' both have a column 'ID'. Combine these 2 csvs using the 'ID' column. Sort the rows by ID in ascending order and the columns alphabetically. Write the output in output.csv" - }, - "id": "agbenchmark/generate_test.py::TestCombineCsv::test_method[challenge_data0]", - "label": "CombineCsv", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "data" - ], - "cutoff": 60, - "dependencies": [ - "TestSortCsv" - ], - "eval_id": "6e2bf1f0-6842-4704-8ed1-b17c2065bbac", - "ground": { - "answer": "The csv labelled", - "eval": { - "type": "file" - }, - "files": [ - "output.csv" - ], - "should_contain": [ - "Item,Color\nBanana,yellow\nLeaf,green\nSky,blue\nSunflower,yellow\nGrass,green\nJeans,blue\nLemon,yellow\nTree,green\nOcean,blue\nDaisy,yellow\nFern,green" - ] - }, - "info": { - "description": "Tests if the agent can label data in a csv", - "difficulty": "basic", - "side_effects": [ - "" - ] - }, - "name": "TestLabelCsv", - "task": "The csv 'input.csv' has many items. create a 'Color' column for these items and classify them as either 'blue', 'green', or 'yellow' depending on what the most likely color is. Preserve the order of the rows. The color column should be the second column. Write the output in output.csv" - }, - "id": "agbenchmark/generate_test.py::TestLabelCsv::test_method[challenge_data0]", - "label": "LabelCsv", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "data", - "general" - ], - "cutoff": 60, - "dependencies": [ - "TestReadFile" - ], - "eval_id": "d59ec964-6f67-4b3d-a4de-c4436fc76f95", - "ground": { - "answer": "The csv sorted by date", - "eval": { - "type": "file" - }, - "files": [ - "output.csv" - ], - "should_contain": [ - "id,name,timestamp\n1,Bob,2023-09-24 12:05:00\n2,Charlie,2023-09-24 12:10:00\n3,Alice,2023-09-25 14:10:00\n4,David,2023-09-26 16:20:00" - ] - }, - "info": { - "description": "Tests if the agent can sort a csv", - "difficulty": "basic", - "side_effects": [ - "" - ] - }, - "name": "TestSortCsv", - "task": "Sort the input.csv by the 'timestamp' column and write the new csv in the output.csv file. The order of the columns should be preserved." - }, - "id": "agbenchmark/generate_test.py::TestSortCsv::test_method[challenge_data0]", - "label": "SortCsv", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "scrape_synthesize", - "general" - ], - "cutoff": 240, - "dependencies": [ - "TestReadFile" - ], - "eval_id": "895ae28a-4513-44ea-a872-0164771d1597", - "ground": { - "answer": "A report highlighting elements from the 2 files.", - "eval": { - "scoring": "binary", - "template": "question", - "type": "llm" - }, - "files": [ - "output.txt" - ], - "should_contain": [ - "Is the company mentioned in the output actively addressing or capitalizing on the challenges or trends listed?" - ], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can generate content based on the content of 2 files.", - "difficulty": "basic", - "side_effects": [] - }, - "name": "TestSynthesizeInfo", - "task": "Create a brief report or summary highlighting how one or more companies from companies.txt are addressing or capitalizing on challenges or trends from challenges.txt. Write a file called output.txt." - }, - "id": "agbenchmark/generate_test.py::TestSynthesizeInfo::test_method[challenge_data0]", - "label": "SynthesizeInfo", - "shape": "dot" - } - ] -} diff --git a/classic/frontend/assets/images/autogpt_logo.png b/classic/frontend/assets/images/autogpt_logo.png deleted file mode 100644 index 23c67351a0..0000000000 Binary files a/classic/frontend/assets/images/autogpt_logo.png and /dev/null differ diff --git a/classic/frontend/assets/images/discord_logo.png b/classic/frontend/assets/images/discord_logo.png deleted file mode 100644 index 0c8ff880c4..0000000000 Binary files a/classic/frontend/assets/images/discord_logo.png and /dev/null differ diff --git a/classic/frontend/assets/images/github_logo.svg.png b/classic/frontend/assets/images/github_logo.svg.png deleted file mode 100644 index 9654bfbe1d..0000000000 Binary files a/classic/frontend/assets/images/github_logo.svg.png and /dev/null differ diff --git a/classic/frontend/assets/images/google_logo.svg.png b/classic/frontend/assets/images/google_logo.svg.png deleted file mode 100644 index dfd0d3b339..0000000000 Binary files a/classic/frontend/assets/images/google_logo.svg.png and /dev/null differ diff --git a/classic/frontend/assets/images/twitter_logo.png b/classic/frontend/assets/images/twitter_logo.png deleted file mode 100644 index bf376e46f8..0000000000 Binary files a/classic/frontend/assets/images/twitter_logo.png and /dev/null differ diff --git a/classic/frontend/assets/scrape_synthesize_tree_structure.json b/classic/frontend/assets/scrape_synthesize_tree_structure.json deleted file mode 100644 index 858c55d03f..0000000000 --- a/classic/frontend/assets/scrape_synthesize_tree_structure.json +++ /dev/null @@ -1,375 +0,0 @@ -{ - "edges": [ - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestWriteFile::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestWriteFile::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestSearch::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestSearch::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestBasicRetrieval::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestBasicRetrieval::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestWriteFile::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestWriteFile::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestSearch::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestSearch::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestRevenueRetrieval2::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestRevenueRetrieval2::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestTestGetInformation::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestTestGetInformation::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestRevenueRetrieval::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestRevenueRetrieval::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestRevenueRetrieval2::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestRevenueRetrieval2::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestBasicRetrieval::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestBasicRetrieval::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestRevenueRetrieval::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestRevenueRetrieval::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestSynthesizeInfo::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestSynthesizeInfo::test_method[challenge_data0]" - } - ], - "nodes": [ - { - "color": "grey", - "data": { - "category": [ - "general", - "coding", - "scrape_synthesize", - "data" - ], - "cutoff": 60, - "dependencies": [ - "TestWriteFile" - ], - "eval_id": "f219f3d3-a41b-45a9-a3d0-389832086ee8", - "ground": { - "answer": "The content of output.txt should be 'Hello World!'", - "eval": { - "type": "file" - }, - "files": [ - "output.txt" - ], - "should_contain": [ - "Hello World!" - ] - }, - "info": { - "description": "Tests if the agent can read a file.", - "difficulty": "interface", - "side_effects": [ - "" - ] - }, - "name": "TestReadFile", - "task": "Read the file called file_to_read.txt and write its content to a file called output.txt" - }, - "id": "agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]", - "label": "ReadFile", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "general", - "coding", - "scrape_synthesize", - "data" - ], - "cutoff": 60, - "dependencies": [], - "eval_id": "021c695a-6cc4-46c2-b93a-f3a9b0f4d123", - "ground": { - "answer": "The word 'Washington', printed to a .txt file named anything", - "eval": { - "type": "file" - }, - "files": [ - ".txt" - ], - "should_contain": [ - "Washington" - ], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can write a file", - "difficulty": "interface", - "side_effects": [ - "" - ] - }, - "name": "TestWriteFile", - "task": "Write the word 'Washington' to a .txt file" - }, - "id": "agbenchmark/generate_test.py::TestWriteFile::test_method[challenge_data0]", - "label": "WriteFile", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "scrape_synthesize", - "general" - ], - "cutoff": 60, - "dependencies": [ - "TestSearch" - ], - "eval_id": "cd96e6b2-779d-4a4a-8367-d520023e27ae", - "ground": { - "answer": "\u00a325.89", - "eval": { - "type": "file" - }, - "files": [ - ".txt" - ], - "should_contain": [ - "25.89" - ], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can retrieve a specific information from a website.", - "difficulty": "basic", - "side_effects": [] - }, - "name": "TestBasicRetrieval", - "task": "Write the price of the book in this url 'http://books.toscrape.com/catalogue/meditations_33/index.html' to a .txt file." - }, - "id": "agbenchmark/generate_test.py::TestBasicRetrieval::test_method[challenge_data0]", - "label": "BasicRetrieval", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "general", - "scrape_synthesize" - ], - "cutoff": 120, - "dependencies": [ - "TestWriteFile" - ], - "eval_id": "0bb23182-b434-402b-a73e-9c226469b959", - "ground": { - "answer": "This is a Heading\nThis is a paragraph.", - "eval": { - "type": "file" - }, - "files": [ - ".txt" - ], - "should_contain": [ - "Heading", - "paragraph" - ], - "should_not_contain": [ - "The", - "the" - ] - }, - "info": { - "description": "Tests if the agent can search.", - "difficulty": "interface", - "side_effects": [ - "" - ] - }, - "name": "TestSearch", - "task": "Open 'https://silennaihin.com/random/plain.html' and paste all of the text on the page in a .txt file" - }, - "id": "agbenchmark/generate_test.py::TestSearch::test_method[challenge_data0]", - "label": "Search", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "scrape_synthesize", - "general" - ], - "cutoff": 60, - "dependencies": [ - "TestRevenueRetrieval2" - ], - "eval_id": "1758058c-f726-484f-96fa-f05e278e5ff5", - "ground": { - "answer": "The twitter handles of the two hosts of Latent Space.", - "eval": { - "type": "file" - }, - "files": [ - "output.txt" - ], - "should_contain": [ - "swyx", - "FanaHOVA" - ], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can retrieve twitter handles given a vague description.", - "difficulty": "intermediate", - "side_effects": [ - "" - ] - }, - "name": "TestTestGetInformation", - "task": "Write the twitter handle of the two hosts of Latent Space to a file called output.txt" - }, - "id": "agbenchmark/generate_test.py::TestTestGetInformation::test_method[challenge_data0]", - "label": "TestGetInformation", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "scrape_synthesize" - ], - "cutoff": 60, - "dependencies": [ - "TestRevenueRetrieval" - ], - "eval_id": "552bdf23-db40-4bd1-b123-4ed820886cc1", - "ground": { - "answer": "15 Millions\n112 Millions\n117 Millions\n204 Millions\n413 Millions\n2,014 Millions\n3,198 Millions\n4,046 Millions\n7,000 Millions\n11,759 Millions\n21,461 Millions\n24,578 Millions\n31,536 Millions\n53,823 Millions\n81,462 Millions", - "eval": { - "type": "file" - }, - "files": [ - ".txt" - ], - "should_contain": [ - "15", - "112", - "117", - "204", - "413", - "2,014", - "3,198", - "4,046", - "7,000", - "11,759", - "21,461", - "24,578", - "31,536", - "53,823", - "81,462" - ], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can retrieve all the revenues of Tesla since its creation.", - "difficulty": "intermediate", - "side_effects": [ - "tests if there is in fact an LLM attached" - ] - }, - "name": "TestRevenueRetrieval2", - "task": "Write tesla's revenue every year since its creation into a .txt file. Use the US notation, with a precision rounded to the nearest million dollars (for instance, $31,578 million)." - }, - "id": "agbenchmark/generate_test.py::TestRevenueRetrieval2::test_method[challenge_data0]", - "label": "RevenueRetrieval2", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "scrape_synthesize", - "general" - ], - "cutoff": 60, - "dependencies": [ - "TestBasicRetrieval" - ], - "eval_id": "dc2114d7-1597-4c9b-bed0-a97937ad977f", - "ground": { - "answer": "It was $81.462 billion in 2022. In millions the answer is 81,462.", - "eval": { - "type": "file" - }, - "files": [ - ".txt" - ], - "should_contain": [ - "81,462" - ], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can retrieve Tesla's revenue in 2022.", - "difficulty": "intermediate", - "side_effects": [] - }, - "name": "TestRevenueRetrieval", - "task": "Write tesla's exact revenue in 2022 into a .txt file. Use the US notation, with a precision rounded to the nearest million dollars (for instance, $31,578 million)." - }, - "id": "agbenchmark/generate_test.py::TestRevenueRetrieval::test_method[challenge_data0]", - "label": "RevenueRetrieval", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "scrape_synthesize", - "general" - ], - "cutoff": 240, - "dependencies": [ - "TestReadFile" - ], - "eval_id": "895ae28a-4513-44ea-a872-0164771d1597", - "ground": { - "answer": "A report highlighting elements from the 2 files.", - "eval": { - "scoring": "binary", - "template": "question", - "type": "llm" - }, - "files": [ - "output.txt" - ], - "should_contain": [ - "Is the company mentioned in the output actively addressing or capitalizing on the challenges or trends listed?" - ], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can generate content based on the content of 2 files.", - "difficulty": "basic", - "side_effects": [] - }, - "name": "TestSynthesizeInfo", - "task": "Create a brief report or summary highlighting how one or more companies from companies.txt are addressing or capitalizing on challenges or trends from challenges.txt. Write a file called output.txt." - }, - "id": "agbenchmark/generate_test.py::TestSynthesizeInfo::test_method[challenge_data0]", - "label": "SynthesizeInfo", - "shape": "dot" - } - ] -} diff --git a/classic/frontend/assets/tree_structure.json b/classic/frontend/assets/tree_structure.json deleted file mode 100644 index b90578cd50..0000000000 --- a/classic/frontend/assets/tree_structure.json +++ /dev/null @@ -1,897 +0,0 @@ -{ - "edges": [ - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestBattleship::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestBattleship::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestSortCsv::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestSortCsv::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestAnswerQuestionSmallCsv::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestAnswerQuestionSmallCsv::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestSynthesizeInfo::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestSynthesizeInfo::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestWriteFile::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestWriteFile::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestWriteFile::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestWriteFile::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestThreeSum::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestThreeSum::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestWriteFile::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestWriteFile::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestSearch::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestSearch::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestTicTacToe::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestTicTacToe::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestBattleship::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestBattleship::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestPasswordGenerator::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestPasswordGenerator::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestFileOrganizer::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestFileOrganizer::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestFileOrganizer::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestFileOrganizer::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestUrlShortener::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestUrlShortener::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestThreeSum::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestThreeSum::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestPasswordGenerator::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestPasswordGenerator::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestUrlShortener::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestUrlShortener::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestTicTacToe::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestTicTacToe::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestBasicRetrieval::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestBasicRetrieval::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestRevenueRetrieval::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestRevenueRetrieval::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestRevenueRetrieval2::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestRevenueRetrieval2::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestTestGetInformation::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestTestGetInformation::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestRevenueRetrieval::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestRevenueRetrieval::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestRevenueRetrieval2::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestRevenueRetrieval2::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestSearch::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestSearch::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestBasicRetrieval::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestBasicRetrieval::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestAnswerQuestionCsv::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestAnswerQuestionCsv::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestAnswerQuestionCombineCsv::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestAnswerQuestionCombineCsv::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestSortCsv::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestSortCsv::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestLabelCsv::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestLabelCsv::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestAnswerQuestionSmallCsv::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestAnswerQuestionSmallCsv::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestAnswerQuestionCsv::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestAnswerQuestionCsv::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestCombineCsv::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestCombineCsv::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestAnswerQuestionCombineCsv::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestAnswerQuestionCombineCsv::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestLabelCsv::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestLabelCsv::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestCombineCsv::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestCombineCsv::test_method[challenge_data0]" - } - ], - "nodes": [ - { - "color": "grey", - "data": { - "category": [ - "general", - "coding", - "scrape_synthesize", - "data" - ], - "cutoff": 60, - "dependencies": [ - "TestWriteFile" - ], - "eval_id": "f219f3d3-a41b-45a9-a3d0-389832086ee8", - "ground": { - "answer": "The content of output.txt should be 'Hello World!'", - "eval": { - "type": "file" - }, - "files": [ - "output.txt" - ], - "should_contain": [ - "Hello World!" - ] - }, - "info": { - "description": "Tests if the agent can read a file.", - "difficulty": "interface", - "side_effects": [ - "" - ] - }, - "name": "TestReadFile", - "task": "Read the file called file_to_read.txt and write its content to a file called output.txt" - }, - "id": "agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]", - "label": "ReadFile", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "general", - "coding", - "scrape_synthesize", - "data" - ], - "cutoff": 60, - "dependencies": [], - "eval_id": "021c695a-6cc4-46c2-b93a-f3a9b0f4d123", - "ground": { - "answer": "The word 'Washington', printed to a .txt file named anything", - "eval": { - "type": "file" - }, - "files": [ - ".txt" - ], - "should_contain": [ - "Washington" - ], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can write a file", - "difficulty": "interface", - "side_effects": [ - "" - ] - }, - "name": "TestWriteFile", - "task": "Write the word 'Washington' to a .txt file" - }, - "id": "agbenchmark/generate_test.py::TestWriteFile::test_method[challenge_data0]", - "label": "WriteFile", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "coding", - "general" - ], - "cutoff": 150, - "dependencies": [ - "TestUrlShortener" - ], - "eval_id": "504b1648-e14a-4982-8b27-074598eb4fd0", - "ground": { - "answer": "The correct python file for a TicTacToe game is written", - "eval": { - "type": "python" - }, - "files": [ - "test.py" - ], - "should_contain": [], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can create Tic-Tac-Toe game", - "difficulty": "basic", - "side_effects": [] - }, - "name": "TestTicTacToe", - "task": "Build a Tic-Tac-Toe game using a python CLI. Here are the specifications.\n\nThe Grid: The game board is a 3x3 grid, consisting of 3 rows and 3 columns, creating a total of 9 squares.\n\nPlayers: There are two players. One player uses the number \"1\", and the other player uses the number \"2\".\n\nTaking Turns: Players take turns to put their respective numbers (\"1\" or \"2\") in an empty square of the grid. Once a player has placed their number in a square, it cannot be changed or removed.\n\nObjective: The goal is to get three of your numbers in a row, either horizontally, vertically, or diagonally.\n\nEnd of the Game: The game concludes in one of two ways: One player gets three of their numbers in a row (horizontally, vertically, or diagonally) and is declared the winner.\nAll squares on the grid are filled, and no player has three in a row. This situation is a \"draw\" or a \"tie\".\n\nTechnical specifications:\nBuild a file called tic_tac_toe.py. This file will be called through command lines. You will have to prompt users for their move. Player 1 will always start.\nPlayers will input their move in the following format: \"x,y\" where x and y represent the location in the grid (0,0 is top left, 2,2 is bottom right).\n\nYour primary requirement is to halt the game when appropriate and to print only one of these three exact sentences:\n\n\"Player 1 won!\"\n\"Player 2 won!\"\n\"Draw\"\n\nEdge cases: A player can send an incorrect location. Either the location is incorrect or the square is already filled. In this case, this counts as doing nothing, and the player gets prompted for new locations again.\n\n\nYou will be expected to create a python file called tic_tac_toe.py that will run through command lines by using ```python tic_tac_toe.py```.\n\nHere is an example of how your tic_tac_toe.py game will be tested.\n```\nprocess = subprocess.Popen(\n ['python', 'tic_tac_toe.py'],\n stdout=subprocess.PIPE,\n text=True\n)\n\noutput, _ = process.communicate('\\n'.join([\"0,0\", \"1,0\", \"0,1\", \"1,1\", \"0,2\"]))\n\nassert \"Player 1 won!\" in output\n```" - }, - "id": "agbenchmark/generate_test.py::TestTicTacToe::test_method[challenge_data0]", - "label": "TicTacToe", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "coding" - ], - "cutoff": 90, - "dependencies": [ - "TestThreeSum" - ], - "eval_id": "ac75c471-e0ce-400c-ba9a-fb72aaab444f", - "ground": { - "answer": "password_generator.py is created and satisfies the requirements.", - "eval": { - "type": "python" - }, - "files": [ - "test.py" - ], - "should_contain": [], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can create a random password generator.", - "difficulty": "basic", - "side_effects": [] - }, - "name": "TestPasswordGenerator", - "task": "Create a random password generator. The password should have between 8 and 16 characters and should contain letters, numbers and symbols. The password should be printed to the console. The entry point will be a python file that can be run this way: python password_generator.py [--len x] where x is the length of the password. If no length is specified, the password should be 8 characters long. The password_generator can also be imported as a module and called as password = password_generator.generate_password(len=x). Any invalid input should raise a ValueError." - }, - "id": "agbenchmark/generate_test.py::TestPasswordGenerator::test_method[challenge_data0]", - "label": "PasswordGenerator", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "coding", - "general" - ], - "cutoff": 90, - "dependencies": [ - "TestPasswordGenerator" - ], - "eval_id": "029c1e6f-2b36-451e-bca6-60063b827d2e", - "ground": { - "answer": "The correct python file is written and organizes the files accordingly", - "eval": { - "type": "python" - }, - "files": [ - "test.py" - ], - "should_contain": [], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can create a file organizer.", - "difficulty": "basic", - "side_effects": [] - }, - "name": "TestFileOrganizer", - "task": "Create a file organizer CLI tool in Python that sorts files in a directory based on their file types (e.g., images, documents, audio) and moves them into these corresponding folders: 'images', 'documents', 'audio'. The entry point will be a python file that can be run this way: python organize_files.py --directory_path=YOUR_DIRECTORY_PATH" - }, - "id": "agbenchmark/generate_test.py::TestFileOrganizer::test_method[challenge_data0]", - "label": "FileOrganizer", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "coding", - "general" - ], - "cutoff": 60, - "dependencies": [ - "TestWriteFile" - ], - "eval_id": "a1ff38a4-1032-4bf2-960a-3b927f9936f4", - "ground": { - "answer": "The three_sum function coded properly.", - "eval": { - "type": "python" - }, - "files": [ - "test.py" - ], - "should_contain": [ - "[0, 1, 2]", - "[0, 2, 5]", - "[0, 2, 3]" - ], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can create the three_sum function.", - "difficulty": "basic", - "side_effects": [] - }, - "name": "TestThreeSum", - "task": "Create a three_sum function in a file called sample_code.py. Given an array of integers, return indices of the three numbers such that they add up to a specific target. You may assume that each input would have exactly one solution, and you may not use the same element twice. Example: Given nums = [2, 7, 11, 15], target = 20, Because nums[0] + nums[1] + nums[2] = 2 + 7 + 11 = 20, return [0, 1, 2]." - }, - "id": "agbenchmark/generate_test.py::TestThreeSum::test_method[challenge_data0]", - "label": "ThreeSum", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "coding", - "general" - ], - "cutoff": 90, - "dependencies": [ - "TestTicTacToe", - "TestReadFile" - ], - "eval_id": "4d613d05-475f-4f72-bf12-f6d3714340c1", - "ground": { - "answer": "The implementation of battleship that passes all the tests.", - "eval": { - "type": "pytest" - }, - "files": [], - "should_contain": [], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can create a Battleship.", - "difficulty": "expert", - "side_effects": [] - }, - "name": "TestBattleship", - "task": "Build a battleship game\n\nSpecifications:\n\nOverview: Battleship is a two-player strategy game where each player places their fleet of ships on a grid and tries to sink the opponent's fleet by guessing their locations.\nPlayers take turns calling out a row and column, attempting to name a square containing one of the opponent's ships.\n\nThe Grid: Each player's grid is a 10x10 grid, identified by rows (using numbers 1-10) and columns (using letters A-J).\n\nShips:\n\nCarrier - 5 squares\nBattleship - 4 squares\nCruiser - 3 squares\nSubmarine - 3 squares\nDestroyer - 2 squares\nEach ship occupies contiguous squares on the grid, arranged either horizontally or vertically.\n\nSetup:\n\nAt the start of the game, each player places their fleet on their grid. This setup is hidden from the opponent.\nThe game begins with Player 1, followed by Player 2, and so on.\nTaking Turns:\n\nOn a player's turn, they announce a grid square (e.g., \"D5\").\nThe opponent announces whether that square is a \"hit\" (if there's a part of a ship on that square) or \"miss\" (if the square is empty).\nIf a player hits a square occupied by a ship, they get another turn to guess. This continues until they make a miss, at which point their turn ends.\nIf a player hits all the squares occupied by a ship, the opponent must announce the sinking of that specific ship, e.g., \"You sank my Battleship!\"\n\nObjective: The goal is to sink all of your opponent's ships before they sink yours.\n\nEnd of the Game: The game ends when one player has sunk all of the opponent's ships. The winner is the player who sinks all the opposing fleet first.\n\nTechnical details:\nIn your root folder you will find an abstract class that defines the public interface of the Battleship class you will have to build:\n```\nfrom abc import ABC, abstractmethod\nfrom typing import Optional\n\nfrom pydantic import BaseModel, validator\n\n\n# Models for the request and response payloads\nclass ShipPlacement(BaseModel):\n ship_type: str\n start: dict # {\"row\": int, \"column\": str}\n direction: str\n\n @validator(\"start\")\n def validate_start(cls, start):\n row, column = start.get(\"row\"), start.get(\"column\")\n\n if not (1 <= row <= 10):\n raise ValueError(\"Row must be between 1 and 10 inclusive.\")\n\n if column not in list(\"ABCDEFGHIJ\"):\n raise ValueError(\"Column must be one of A, B, C, D, E, F, G, H, I, J.\")\n\n return start\n\n\nclass Turn(BaseModel):\n target: dict # {\"row\": int, \"column\": str}\n\n\nclass TurnResponse(BaseModel):\n result: str\n ship_type: Optional[str] # This would be None if the result is a miss\n\n\nclass GameStatus(BaseModel):\n is_game_over: bool\n winner: Optional[str]\n\n\nfrom typing import List\n\n\nclass Game(BaseModel):\n game_id: str\n players: List[str]\n board: dict # This could represent the state of the game board, you might need to flesh this out further\n ships: List[ShipPlacement] # List of ship placements for this game\n turns: List[Turn] # List of turns that have been taken\n\n\nclass AbstractBattleship(ABC):\n SHIP_LENGTHS = {\n \"carrier\": 5,\n \"battleship\": 4,\n \"cruiser\": 3,\n \"submarine\": 3,\n \"destroyer\": 2,\n }\n\n @abstractmethod\n def create_ship_placement(self, game_id: str, placement: ShipPlacement) -> None:\n \"\"\"\n Place a ship on the grid.\n \"\"\"\n pass\n\n @abstractmethod\n def create_turn(self, game_id: str, turn: Turn) -> TurnResponse:\n \"\"\"\n Players take turns to target a grid cell.\n \"\"\"\n pass\n\n @abstractmethod\n def get_game_status(self, game_id: str) -> GameStatus:\n \"\"\"\n Check if the game is over and get the winner if there's one.\n \"\"\"\n pass\n\n @abstractmethod\n def get_winner(self, game_id: str) -> str:\n \"\"\"\n Get the winner of the game.\n \"\"\"\n pass\n\n @abstractmethod\n def get_game(self) -> Game:\n \"\"\"\n Retrieve the state of the game.\n \"\"\"\n pass\n\n @abstractmethod\n def delete_game(self, game_id: str) -> None:\n \"\"\"\n Delete a game given its ID.\n \"\"\"\n pass\n\n @abstractmethod\n def create_game(self) -> None:\n \"\"\"\n Create a new game.\n \"\"\"\n pass\n\n```\nAt any moment you can run ```pytest``` to execute the tests.\nYou have two types of test: \n- positive tests => test the battleship game being used in ideal conditions\n- negative tests => tests the battleship game behaviour when used incorrectly\n\nSuccess criteria:\n- you will need to write a file called battleship.py that implements the abstract Battleship class.\n- this class will have to pass all the tests.\n- you're not allowed to modify any other file than the battleship.py. You can add other files as long as the main entrypoint is the battleship class." - }, - "id": "agbenchmark/generate_test.py::TestBattleship::test_method[challenge_data0]", - "label": "Battleship", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "coding" - ], - "cutoff": 150, - "dependencies": [ - "TestFileOrganizer" - ], - "eval_id": "8106fd7f-83fd-496e-9513-280f4a3f012c", - "ground": { - "answer": "The correct python file for a basic url shortener CLI", - "eval": { - "type": "python" - }, - "files": [ - "test.py" - ], - "should_contain": [], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can create a URL shortener.", - "difficulty": "basic", - "side_effects": [] - }, - "name": "TestUrlShortener", - "task": "Build a basic URL shortener using a python CLI. Here are the specifications.\n\nFunctionality: The program should have two primary functionalities.\n\nShorten a given URL.\nRetrieve the original URL from a shortened URL.\n\nCLI: The command-line interface should accept a URL as its first input. It should be able to determine if the url is a shortened url or not. If the url is not shortened, it will display ONLY the shortened url, otherwise, it will display ONLY the original unshortened URL. Afterwards, it should prompt the user for another URL to process.\n\nTechnical specifications:\nBuild a file called url_shortener.py. This file will be called through command lines.\n\nEdge cases:\nFor the sake of simplicity, there will be no edge cases, you can assume the input is always correct and the user immediately passes the shortened version of the url he just shortened.\n\nYou will be expected to create a python file called url_shortener.py that will run through command lines by using python url_shortener.py.\n\nThe url_shortener.py will be tested this way:\n```\nimport unittest\nfrom url_shortener import shorten_url, retrieve_url\n\nclass TestURLShortener(unittest.TestCase):\n def test_url_retrieval(self):\n # Shorten the URL to get its shortened form\n shortened_url = shorten_url('https://www.example.com')\n\n # Retrieve the original URL using the shortened URL directly\n retrieved_url = retrieve_url(shortened_url)\n\n self.assertEqual(retrieved_url, 'https://www.example.com', \"Retrieved URL does not match the original!\")\n\nif __name__ == \"__main__\":\n unittest.main()\n```" - }, - "id": "agbenchmark/generate_test.py::TestUrlShortener::test_method[challenge_data0]", - "label": "UrlShortener", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "scrape_synthesize", - "general" - ], - "cutoff": 60, - "dependencies": [ - "TestSearch" - ], - "eval_id": "cd96e6b2-779d-4a4a-8367-d520023e27ae", - "ground": { - "answer": "\u00a325.89", - "eval": { - "type": "file" - }, - "files": [ - ".txt" - ], - "should_contain": [ - "25.89" - ], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can retrieve a specific information from a website.", - "difficulty": "basic", - "side_effects": [] - }, - "name": "TestBasicRetrieval", - "task": "Write the price of the book in this url 'http://books.toscrape.com/catalogue/meditations_33/index.html' to a .txt file." - }, - "id": "agbenchmark/generate_test.py::TestBasicRetrieval::test_method[challenge_data0]", - "label": "BasicRetrieval", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "scrape_synthesize", - "general" - ], - "cutoff": 60, - "dependencies": [ - "TestRevenueRetrieval2" - ], - "eval_id": "1758058c-f726-484f-96fa-f05e278e5ff5", - "ground": { - "answer": "The twitter handles of the two hosts of Latent Space.", - "eval": { - "type": "file" - }, - "files": [ - "output.txt" - ], - "should_contain": [ - "swyx", - "FanaHOVA" - ], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can retrieve twitter handles given a vague description.", - "difficulty": "intermediate", - "side_effects": [ - "" - ] - }, - "name": "TestTestGetInformation", - "task": "Write the twitter handle of the two hosts of Latent Space to a file called output.txt" - }, - "id": "agbenchmark/generate_test.py::TestTestGetInformation::test_method[challenge_data0]", - "label": "TestGetInformation", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "scrape_synthesize" - ], - "cutoff": 60, - "dependencies": [ - "TestRevenueRetrieval" - ], - "eval_id": "552bdf23-db40-4bd1-b123-4ed820886cc1", - "ground": { - "answer": "15 Millions\n112 Millions\n117 Millions\n204 Millions\n413 Millions\n2,014 Millions\n3,198 Millions\n4,046 Millions\n7,000 Millions\n11,759 Millions\n21,461 Millions\n24,578 Millions\n31,536 Millions\n53,823 Millions\n81,462 Millions", - "eval": { - "type": "file" - }, - "files": [ - ".txt" - ], - "should_contain": [ - "15", - "112", - "117", - "204", - "413", - "2,014", - "3,198", - "4,046", - "7,000", - "11,759", - "21,461", - "24,578", - "31,536", - "53,823", - "81,462" - ], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can retrieve all the revenues of Tesla since its creation.", - "difficulty": "intermediate", - "side_effects": [ - "tests if there is in fact an LLM attached" - ] - }, - "name": "TestRevenueRetrieval2", - "task": "Write tesla's revenue every year since its creation into a .txt file. Use the US notation, with a precision rounded to the nearest million dollars (for instance, $31,578 million)." - }, - "id": "agbenchmark/generate_test.py::TestRevenueRetrieval2::test_method[challenge_data0]", - "label": "RevenueRetrieval2", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "scrape_synthesize", - "general" - ], - "cutoff": 60, - "dependencies": [ - "TestBasicRetrieval" - ], - "eval_id": "dc2114d7-1597-4c9b-bed0-a97937ad977f", - "ground": { - "answer": "It was $81.462 billion in 2022. In millions the answer is 81,462.", - "eval": { - "type": "file" - }, - "files": [ - ".txt" - ], - "should_contain": [ - "81,462" - ], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can retrieve Tesla's revenue in 2022.", - "difficulty": "intermediate", - "side_effects": [] - }, - "name": "TestRevenueRetrieval", - "task": "Write tesla's exact revenue in 2022 into a .txt file. Use the US notation, with a precision rounded to the nearest million dollars (for instance, $31,578 million)." - }, - "id": "agbenchmark/generate_test.py::TestRevenueRetrieval::test_method[challenge_data0]", - "label": "RevenueRetrieval", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "general", - "scrape_synthesize" - ], - "cutoff": 120, - "dependencies": [ - "TestWriteFile" - ], - "eval_id": "0bb23182-b434-402b-a73e-9c226469b959", - "ground": { - "answer": "This is a Heading\nThis is a paragraph.", - "eval": { - "type": "file" - }, - "files": [ - ".txt" - ], - "should_contain": [ - "Heading", - "paragraph" - ], - "should_not_contain": [ - "The", - "the" - ] - }, - "info": { - "description": "Tests if the agent can search.", - "difficulty": "interface", - "side_effects": [ - "" - ] - }, - "name": "TestSearch", - "task": "Open 'https://silennaihin.com/random/plain.html' and paste all of the text on the page in a .txt file" - }, - "id": "agbenchmark/generate_test.py::TestSearch::test_method[challenge_data0]", - "label": "Search", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "data" - ], - "cutoff": 90, - "dependencies": [ - "TestAnswerQuestionSmallCsv" - ], - "eval_id": "bb6e0a4b-7faf-4aa6-a524-548cddbc2732", - "ground": { - "answer": "The correct amount spent on utilities.", - "eval": { - "type": "file" - }, - "files": [ - "output.txt" - ], - "should_contain": [ - "1861" - ] - }, - "info": { - "description": "Tests if the agent can answer a question from a csv", - "difficulty": "intermediate", - "side_effects": [ - "" - ] - }, - "name": "TestAnswerQuestionCsv", - "task": "How much was spent on utilities in total ? Write the answer in an output.txt file." - }, - "id": "agbenchmark/generate_test.py::TestAnswerQuestionCsv::test_method[challenge_data0]", - "label": "AnswerQuestionCsv", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "data", - "general" - ], - "cutoff": 120, - "dependencies": [ - "TestAnswerQuestionCsv", - "TestCombineCsv" - ], - "eval_id": "b1bb61cd-3d09-4a69-bb2a-9dbb3c477589", - "ground": { - "answer": "The correct amount spent on utilities.", - "eval": { - "type": "file" - }, - "files": [ - "output.txt" - ], - "should_contain": [ - "1861" - ] - }, - "info": { - "description": "Tests if the agent can answer a question from a csv", - "difficulty": "intermediate", - "side_effects": [ - "" - ] - }, - "name": "TestAnswerQuestionCombineCsv", - "task": "How much was spent on utilities in total ? Write the answer in an output.txt file." - }, - "id": "agbenchmark/generate_test.py::TestAnswerQuestionCombineCsv::test_method[challenge_data0]", - "label": "AnswerQuestionCombineCsv", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "data", - "general" - ], - "cutoff": 60, - "dependencies": [ - "TestReadFile" - ], - "eval_id": "d59ec964-6f67-4b3d-a4de-c4436fc76f95", - "ground": { - "answer": "The csv sorted by date", - "eval": { - "type": "file" - }, - "files": [ - "output.csv" - ], - "should_contain": [ - "id,name,timestamp\n1,Bob,2023-09-24 12:05:00\n2,Charlie,2023-09-24 12:10:00\n3,Alice,2023-09-25 14:10:00\n4,David,2023-09-26 16:20:00" - ] - }, - "info": { - "description": "Tests if the agent can sort a csv", - "difficulty": "basic", - "side_effects": [ - "" - ] - }, - "name": "TestSortCsv", - "task": "Sort the input.csv by the 'timestamp' column and write the new csv in the output.csv file. The order of the columns should be preserved." - }, - "id": "agbenchmark/generate_test.py::TestSortCsv::test_method[challenge_data0]", - "label": "SortCsv", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "data", - "general" - ], - "cutoff": 60, - "dependencies": [ - "TestReadFile" - ], - "eval_id": "9df3f07a-5047-488f-b788-1e1f57eba970", - "ground": { - "answer": "The correct amount spent on utilities.", - "eval": { - "type": "file" - }, - "files": [ - "output.txt" - ], - "should_contain": [ - "84" - ] - }, - "info": { - "description": "Tests if the agent can answer a question from a small csv", - "difficulty": "intermediate", - "side_effects": [ - "" - ] - }, - "name": "TestAnswerQuestionSmallCsv", - "task": "How much was spent on utilities in total ? Write the answer in an output.txt file." - }, - "id": "agbenchmark/generate_test.py::TestAnswerQuestionSmallCsv::test_method[challenge_data0]", - "label": "AnswerQuestionSmallCsv", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "data", - "general" - ], - "cutoff": 60, - "dependencies": [ - "TestLabelCsv" - ], - "eval_id": "52467beb-b951-4356-9776-9a0ae46bb33b", - "ground": { - "answer": "The csv data is combined", - "eval": { - "type": "file" - }, - "files": [ - "output.csv" - ], - "should_contain": [ - "Age,ID,Name,Occupation,Salary\n28,101,John,Engineer,80000\n34,102,Alice,Doctor,120000\n45,103,Bob,Lawyer,95000" - ] - }, - "info": { - "description": "Tests if the agent can combine data from a csv", - "difficulty": "intermediate", - "side_effects": [ - "" - ] - }, - "name": "TestCombineCsv", - "task": "The csvs 'file1.csv' and 'file2.csv' both have a column 'ID'. Combine these 2 csvs using the 'ID' column. Sort the rows by ID in ascending order and the columns alphabetically. Write the output in output.csv" - }, - "id": "agbenchmark/generate_test.py::TestCombineCsv::test_method[challenge_data0]", - "label": "CombineCsv", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "data" - ], - "cutoff": 60, - "dependencies": [ - "TestSortCsv" - ], - "eval_id": "6e2bf1f0-6842-4704-8ed1-b17c2065bbac", - "ground": { - "answer": "The csv labelled", - "eval": { - "type": "file" - }, - "files": [ - "output.csv" - ], - "should_contain": [ - "Item,Color\nBanana,yellow\nLeaf,green\nSky,blue\nSunflower,yellow\nGrass,green\nJeans,blue\nLemon,yellow\nTree,green\nOcean,blue\nDaisy,yellow\nFern,green" - ] - }, - "info": { - "description": "Tests if the agent can label data in a csv", - "difficulty": "basic", - "side_effects": [ - "" - ] - }, - "name": "TestLabelCsv", - "task": "The csv 'input.csv' has many items. create a 'Color' column for these items and classify them as either 'blue', 'green', or 'yellow' depending on what the most likely color is. Preserve the order of the rows. The color column should be the second column. Write the output in output.csv" - }, - "id": "agbenchmark/generate_test.py::TestLabelCsv::test_method[challenge_data0]", - "label": "LabelCsv", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "scrape_synthesize", - "general" - ], - "cutoff": 240, - "dependencies": [ - "TestReadFile" - ], - "eval_id": "895ae28a-4513-44ea-a872-0164771d1597", - "ground": { - "answer": "A report highlighting elements from the 2 files.", - "eval": { - "scoring": "binary", - "template": "question", - "type": "llm" - }, - "files": [ - "output.txt" - ], - "should_contain": [ - "Is the company mentioned in the output actively addressing or capitalizing on the challenges or trends listed?" - ], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can generate content based on the content of 2 files.", - "difficulty": "basic", - "side_effects": [] - }, - "name": "TestSynthesizeInfo", - "task": "Create a brief report or summary highlighting how one or more companies from companies.txt are addressing or capitalizing on challenges or trends from challenges.txt. Write a file called output.txt." - }, - "id": "agbenchmark/generate_test.py::TestSynthesizeInfo::test_method[challenge_data0]", - "label": "SynthesizeInfo", - "shape": "dot" - } - ] -} diff --git a/classic/frontend/build.sh b/classic/frontend/build.sh deleted file mode 100755 index 4c603088d5..0000000000 --- a/classic/frontend/build.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/bash - -flutter build web --base-href /app/ \ No newline at end of file diff --git a/classic/frontend/build/web/.last_build_id b/classic/frontend/build/web/.last_build_id deleted file mode 100644 index db0de816ec..0000000000 --- a/classic/frontend/build/web/.last_build_id +++ /dev/null @@ -1 +0,0 @@ -6abcb290e8313be91f131a45ee22b413 \ No newline at end of file diff --git a/classic/frontend/build/web/assets/AssetManifest.bin b/classic/frontend/build/web/assets/AssetManifest.bin deleted file mode 100644 index db6a319e7b..0000000000 --- a/classic/frontend/build/web/assets/AssetManifest.bin +++ /dev/null @@ -1 +0,0 @@ - !assets/coding_tree_structure.json  asset!assets/coding_tree_structure.jsonassets/data_tree_structure.json  assetassets/data_tree_structure.json"assets/general_tree_structure.json  asset"assets/general_tree_structure.jsonassets/images/autogpt_logo.png  assetassets/images/autogpt_logo.pngassets/images/discord_logo.png  assetassets/images/discord_logo.png!assets/images/github_logo.svg.png  asset!assets/images/github_logo.svg.png!assets/images/google_logo.svg.png  asset!assets/images/google_logo.svg.pngassets/images/twitter_logo.png  assetassets/images/twitter_logo.png,assets/scrape_synthesize_tree_structure.json  asset,assets/scrape_synthesize_tree_structure.jsonassets/tree_structure.json  assetassets/tree_structure.json2packages/cupertino_icons/assets/CupertinoIcons.ttf  asset2packages/cupertino_icons/assets/CupertinoIcons.ttf)packages/fluttertoast/assets/toastify.css  asset)packages/fluttertoast/assets/toastify.css(packages/fluttertoast/assets/toastify.js  asset(packages/fluttertoast/assets/toastify.js \ No newline at end of file diff --git a/classic/frontend/build/web/assets/AssetManifest.json b/classic/frontend/build/web/assets/AssetManifest.json deleted file mode 100644 index f24d655ab2..0000000000 --- a/classic/frontend/build/web/assets/AssetManifest.json +++ /dev/null @@ -1 +0,0 @@ -{"assets/coding_tree_structure.json":["assets/coding_tree_structure.json"],"assets/data_tree_structure.json":["assets/data_tree_structure.json"],"assets/general_tree_structure.json":["assets/general_tree_structure.json"],"assets/images/autogpt_logo.png":["assets/images/autogpt_logo.png"],"assets/images/discord_logo.png":["assets/images/discord_logo.png"],"assets/images/github_logo.svg.png":["assets/images/github_logo.svg.png"],"assets/images/google_logo.svg.png":["assets/images/google_logo.svg.png"],"assets/images/twitter_logo.png":["assets/images/twitter_logo.png"],"assets/scrape_synthesize_tree_structure.json":["assets/scrape_synthesize_tree_structure.json"],"assets/tree_structure.json":["assets/tree_structure.json"],"packages/cupertino_icons/assets/CupertinoIcons.ttf":["packages/cupertino_icons/assets/CupertinoIcons.ttf"],"packages/fluttertoast/assets/toastify.css":["packages/fluttertoast/assets/toastify.css"],"packages/fluttertoast/assets/toastify.js":["packages/fluttertoast/assets/toastify.js"]} \ No newline at end of file diff --git a/classic/frontend/build/web/assets/FontManifest.json b/classic/frontend/build/web/assets/FontManifest.json deleted file mode 100644 index 464ab5882a..0000000000 --- a/classic/frontend/build/web/assets/FontManifest.json +++ /dev/null @@ -1 +0,0 @@ -[{"family":"MaterialIcons","fonts":[{"asset":"fonts/MaterialIcons-Regular.otf"}]},{"family":"packages/cupertino_icons/CupertinoIcons","fonts":[{"asset":"packages/cupertino_icons/assets/CupertinoIcons.ttf"}]}] \ No newline at end of file diff --git a/classic/frontend/build/web/assets/NOTICES b/classic/frontend/build/web/assets/NOTICES deleted file mode 100644 index c27cf59c0c..0000000000 --- a/classic/frontend/build/web/assets/NOTICES +++ /dev/null @@ -1,33956 +0,0 @@ -_flutterfire_internals - -Copyright 2017, the Chromium project authors. All rights reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -abseil-cpp - -Apache License -Version 2.0, January 2004 -https://www.apache.org/licenses/ - -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "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. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "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. - - "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 - - https://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. --------------------------------------------------------------------------------- -abseil-cpp -angle -dart -etc1 -expat -flatbuffers -fuchsia-vulkan -fuchsia_sdk -glslang -khronos -perfetto -shaderc -spirv-cross -txt -vulkan -vulkan-headers -vulkan-validation-layers -wuffs - -Apache License -Version 2.0, January 2004 -http://www.apache.org/licenses/ - -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "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. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "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. - - "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. --------------------------------------------------------------------------------- -accessibility - -Copyright (c) 2009 The Chromium Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -accessibility - -Copyright (c) 2010 The Chromium Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -accessibility - -Copyright (c) 2012 The Chromium Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -accessibility - -Copyright (c) 2014 The Chromium Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -accessibility - -Copyright 2013 The Chromium Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -accessibility - -Copyright 2016 The Chromium Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -accessibility - -Copyright 2020 The Chromium Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -accessibility -angle - -Copyright (c) 2011 The Chromium Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -accessibility -angle - -Copyright (c) 2013 The Chromium Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -accessibility -angle - -Copyright 2017 The Chromium Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -accessibility -angle -fuchsia_sdk -skia - -Copyright 2018 The Chromium Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -accessibility -angle -icu - -Copyright 2014 The Chromium Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -accessibility -engine -spring_animation -tonic -txt -url_launcher_web -web_test_fonts -web_unicode - -Copyright 2013 The Flutter Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -accessibility -fuchsia_sdk - -Copyright 2019 The Chromium Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -accessibility -skia - -Copyright 2015 The Chromium Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -angle - -Copyright (c) 2008-2018 The Khronos Group Inc. - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and/or associated documentation files (the -"Materials"), to deal in the Materials without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Materials, and to -permit persons to whom the Materials are furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Materials. - -THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. --------------------------------------------------------------------------------- -angle - -Copyright (c) 2013-2017 The Khronos Group Inc. - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and/or associated documentation files (the -"Materials"), to deal in the Materials without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Materials, and to -permit persons to whom the Materials are furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Materials. - -THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. --------------------------------------------------------------------------------- -angle - -Copyright (c) 2020 The ANGLE Project Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of TransGaming Inc., Google Inc., 3DLabs Inc. - Ltd., nor the names of their contributors may be used to endorse - or promote products derived from this software without specific - prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -angle - -Copyright 2002 The ANGLE Project Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of TransGaming Inc., Google Inc., 3DLabs Inc. - Ltd., nor the names of their contributors may be used to endorse - or promote products derived from this software without specific - prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -angle - -Copyright 2010 The ANGLE Project Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of TransGaming Inc., Google Inc., 3DLabs Inc. - Ltd., nor the names of their contributors may be used to endorse - or promote products derived from this software without specific - prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -angle - -Copyright 2011 The ANGLE Project Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of TransGaming Inc., Google Inc., 3DLabs Inc. - Ltd., nor the names of their contributors may be used to endorse - or promote products derived from this software without specific - prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -angle - -Copyright 2012 The ANGLE Project Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of TransGaming Inc., Google Inc., 3DLabs Inc. - Ltd., nor the names of their contributors may be used to endorse - or promote products derived from this software without specific - prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -angle - -Copyright 2013 The ANGLE Project Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of TransGaming Inc., Google Inc., 3DLabs Inc. - Ltd., nor the names of their contributors may be used to endorse - or promote products derived from this software without specific - prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -angle - -Copyright 2013-2020 The Khronos Group Inc. - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -angle - -Copyright 2014 The ANGLE Project Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of TransGaming Inc., Google Inc., 3DLabs Inc. - Ltd., nor the names of their contributors may be used to endorse - or promote products derived from this software without specific - prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -angle - -Copyright 2015 The ANGLE Project Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of TransGaming Inc., Google Inc., 3DLabs Inc. - Ltd., nor the names of their contributors may be used to endorse - or promote products derived from this software without specific - prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -angle - -Copyright 2016 The ANGLE Project Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of TransGaming Inc., Google Inc., 3DLabs Inc. - Ltd., nor the names of their contributors may be used to endorse - or promote products derived from this software without specific - prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -angle - -Copyright 2017 The ANGLE Project Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of TransGaming Inc., Google Inc., 3DLabs Inc. - Ltd., nor the names of their contributors may be used to endorse - or promote products derived from this software without specific - prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -angle - -Copyright 2018 The ANGLE Project Authors. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of TransGaming Inc., Google Inc., 3DLabs Inc. - Ltd., nor the names of their contributors may be used to endorse - or promote products derived from this software without specific - prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -angle - -Copyright 2018 The ANGLE Project Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of TransGaming Inc., Google Inc., 3DLabs Inc. - Ltd., nor the names of their contributors may be used to endorse - or promote products derived from this software without specific - prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -angle - -Copyright 2019 The ANGLE Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of TransGaming Inc., Google Inc., 3DLabs Inc. - Ltd., nor the names of their contributors may be used to endorse - or promote products derived from this software without specific - prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -angle - -Copyright 2020 The ANGLE Project Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of TransGaming Inc., Google Inc., 3DLabs Inc. - Ltd., nor the names of their contributors may be used to endorse - or promote products derived from this software without specific - prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -angle - -Copyright 2020 The ANGLE Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of TransGaming Inc., Google Inc., 3DLabs Inc. - Ltd., nor the names of their contributors may be used to endorse - or promote products derived from this software without specific - prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -angle - -Copyright 2021 The ANGLE Project Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of TransGaming Inc., Google Inc., 3DLabs Inc. - Ltd., nor the names of their contributors may be used to endorse - or promote products derived from this software without specific - prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -angle - -Copyright 2021 The ANGLE Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of TransGaming Inc., Google Inc., 3DLabs Inc. - Ltd., nor the names of their contributors may be used to endorse - or promote products derived from this software without specific - prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -angle - -Copyright 2021-2022 The ANGLE Project Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of TransGaming Inc., Google Inc., 3DLabs Inc. - Ltd., nor the names of their contributors may be used to endorse - or promote products derived from this software without specific - prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -angle - -Copyright 2022 The ANGLE Project Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of TransGaming Inc., Google Inc., 3DLabs Inc. - Ltd., nor the names of their contributors may be used to endorse - or promote products derived from this software without specific - prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -angle - -Copyright 2023 The ANGLE Project Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of TransGaming Inc., Google Inc., 3DLabs Inc. - Ltd., nor the names of their contributors may be used to endorse - or promote products derived from this software without specific - prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -angle - -Copyright The ANGLE Project Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of TransGaming Inc., Google Inc., 3DLabs Inc. - Ltd., nor the names of their contributors may be used to endorse - or promote products derived from this software without specific - prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -angle -khronos - -Copyright (c) 2013-2018 The Khronos Group Inc. - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and/or associated documentation files (the -"Materials"), to deal in the Materials without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Materials, and to -permit persons to whom the Materials are furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Materials. - -THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. --------------------------------------------------------------------------------- -angle -xxhash - -Copyright 2019 The ANGLE Project Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of TransGaming Inc., Google Inc., 3DLabs Inc. - Ltd., nor the names of their contributors may be used to endorse - or promote products derived from this software without specific - prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -args - -Copyright 2013, the Dart project authors. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -async -collection -stream_channel -typed_data - -Copyright 2015, the Dart project authors. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -boolean_selector -meta - -Copyright 2016, the Dart project authors. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -boringssl - -Copyright (C) 1995-1997 Eric Young (eay@cryptsoft.com) -All rights reserved. - -This package is an SSL implementation written -by Eric Young (eay@cryptsoft.com). -The implementation was written so as to conform with Netscapes SSL. - -This library is free for commercial and non-commercial use as long as -the following conditions are aheared to. The following conditions -apply to all code found in this distribution, be it the RC4, RSA, -lhash, DES, etc., code; not just the SSL code. The SSL documentation -included with this distribution is covered by the same copyright terms -except that the holder is Tim Hudson (tjh@cryptsoft.com). - -Copyright remains Eric Young's, and as such any Copyright notices in -the code are not to be removed. -If this package is used in a product, Eric Young should be given attribution -as the author of the parts of the library used. -This can be in the form of a textual message at program startup or -in documentation (online or textual) provided with the package. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. -3. All advertising materials mentioning features or use of this software - must display the following acknowledgement: - "This product includes cryptographic software written by - Eric Young (eay@cryptsoft.com)" - The word 'cryptographic' can be left out if the rouines from the library - being used are not cryptographic related :-). -4. If you include any Windows specific code (or a derivative thereof) from - the apps directory (application code) you must include an acknowledgement: - "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" - -THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS -OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -SUCH DAMAGE. - -The licence and distribution terms for any publically available version or -derivative of this code cannot be changed. i.e. this code cannot simply be -copied and put under another distribution licence -[including the GNU Public Licence.] --------------------------------------------------------------------------------- -boringssl - -Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) -All rights reserved. - -This package is an SSL implementation written -by Eric Young (eay@cryptsoft.com). -The implementation was written so as to conform with Netscapes SSL. - -This library is free for commercial and non-commercial use as long as -the following conditions are aheared to. The following conditions -apply to all code found in this distribution, be it the RC4, RSA, -lhash, DES, etc., code; not just the SSL code. The SSL documentation -included with this distribution is covered by the same copyright terms -except that the holder is Tim Hudson (tjh@cryptsoft.com). - -Copyright remains Eric Young's, and as such any Copyright notices in -the code are not to be removed. -If this package is used in a product, Eric Young should be given attribution -as the author of the parts of the library used. -This can be in the form of a textual message at program startup or -in documentation (online or textual) provided with the package. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. -3. All advertising materials mentioning features or use of this software - must display the following acknowledgement: - "This product includes cryptographic software written by - Eric Young (eay@cryptsoft.com)" - The word 'cryptographic' can be left out if the rouines from the library - being used are not cryptographic related :-). -4. If you include any Windows specific code (or a derivative thereof) from - the apps directory (application code) you must include an acknowledgement: - "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" - -THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS -OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -SUCH DAMAGE. - -The licence and distribution terms for any publically available version or -derivative of this code cannot be changed. i.e. this code cannot simply be -copied and put under another distribution licence -[including the GNU Public Licence.] --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 1998-2000 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.openssl.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - openssl-core@openssl.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.openssl.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 1998-2001 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.openssl.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - openssl-core@openssl.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.openssl.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 1998-2002 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.openssl.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - openssl-core@openssl.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.openssl.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 1998-2003 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.openssl.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - openssl-core@openssl.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.openssl.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 1998-2004 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.openssl.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - openssl-core@openssl.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.openssl.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 1998-2005 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - openssl-core@OpenSSL.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 1998-2005 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.openssl.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - openssl-core@openssl.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.openssl.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 1998-2006 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.openssl.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - openssl-core@openssl.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.openssl.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 1998-2007 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.openssl.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - openssl-core@openssl.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.openssl.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 1998-2011 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.openssl.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - openssl-core@openssl.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.openssl.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 1999 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - licensing@OpenSSL.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 1999-2002 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - licensing@OpenSSL.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 1999-2003 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - licensing@OpenSSL.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 1999-2004 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - licensing@OpenSSL.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 1999-2005 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - openssl-core@OpenSSL.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 1999-2007 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - licensing@OpenSSL.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 1999-2008 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - licensing@OpenSSL.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 2000 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - licensing@OpenSSL.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 2000-2002 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - licensing@OpenSSL.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 2000-2003 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - licensing@OpenSSL.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 2000-2005 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - licensing@OpenSSL.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 2001 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - licensing@OpenSSL.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 2001-2011 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.openssl.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - openssl-core@openssl.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.openssl.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 2002-2006 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.openssl.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - openssl-core@openssl.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.openssl.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 2003 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - licensing@OpenSSL.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 2004 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - licensing@OpenSSL.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 2005 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - licensing@OpenSSL.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 2006 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - licensing@OpenSSL.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 2006,2007 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - licensing@OpenSSL.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 2008 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.openssl.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - openssl-core@openssl.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.openssl.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 2010 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - licensing@OpenSSL.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 2011 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - licensing@OpenSSL.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 2011 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.openssl.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - openssl-core@openssl.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.openssl.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 2012 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.openssl.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - openssl-core@openssl.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.openssl.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 2013 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - licensing@OpenSSL.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 2014, Google Inc. - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY -SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION -OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN -CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 2015, Google Inc. - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY -SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION -OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN -CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 2016, Google Inc. - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY -SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION -OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN -CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 2017, Google Inc. - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY -SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION -OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN -CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 2017, the HRSS authors. - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY -SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION -OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN -CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 2018, Google Inc. - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY -SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION -OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN -CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 2018, Google Inc. -Copyright (c) 2020, Arm Ltd. - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY -SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION -OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN -CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 2019, Google Inc. - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY -SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION -OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN -CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 2020, Google Inc. - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY -SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION -OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN -CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 2021, Google Inc. - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY -SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION -OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN -CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 2022, Google Inc. - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY -SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION -OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN -CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 2023, Google Inc. - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY -SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION -OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN -CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. --------------------------------------------------------------------------------- -boringssl - -Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved. - -Licensed under the OpenSSL license (the "License"). You may not use -this file except in compliance with the License. You can obtain a copy -in the file LICENSE in the source distribution or at -https://www.openssl.org/source/license.html --------------------------------------------------------------------------------- -boringssl - -Copyright 2000-2016 The OpenSSL Project Authors. All Rights Reserved. - -Licensed under the OpenSSL license (the "License"). You may not use -this file except in compliance with the License. You can obtain a copy -in the file LICENSE in the source distribution or at -https://www.openssl.org/source/license.html --------------------------------------------------------------------------------- -boringssl - -Copyright 2001-2017 The OpenSSL Project Authors. All Rights Reserved. - -Licensed under the OpenSSL license (the "License"). You may not use -this file except in compliance with the License. You can obtain a copy -in the file LICENSE in the source distribution or at -https://www.openssl.org/source/license.html --------------------------------------------------------------------------------- -boringssl - -Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. - -Portions of the attached software ("Contribution") are developed by -SUN MICROSYSTEMS, INC., and are contributed to the OpenSSL project. - -The Contribution is licensed pursuant to the Eric Young open source -license provided above. --------------------------------------------------------------------------------- -boringssl - -Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. - -Portions of the attached software ("Contribution") are developed by -SUN MICROSYSTEMS, INC., and are contributed to the OpenSSL project. - -The Contribution is licensed pursuant to the OpenSSL open source -license provided above. --------------------------------------------------------------------------------- -boringssl - -Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - licensing@OpenSSL.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. -ECC cipher suite support in OpenSSL originally developed by -SUN MICROSYSTEMS, INC., and contributed to the OpenSSL project. --------------------------------------------------------------------------------- -boringssl - -Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. -ECDH support in OpenSSL originally developed by -SUN MICROSYSTEMS, INC., and contributed to the OpenSSL project. --------------------------------------------------------------------------------- -boringssl - -Copyright 2005 Nokia. All rights reserved. - -The portions of the attached software ("Contribution") is developed by -Nokia Corporation and is licensed pursuant to the OpenSSL open source -license. - -The Contribution, originally written by Mika Kousa and Pasi Eronen of -Nokia Corporation, consists of the "PSK" (Pre-Shared Key) ciphersuites -support (see RFC 4279) to OpenSSL. - -No patent licenses or other rights except those expressly stated in -the OpenSSL open source license shall be deemed granted or received -expressly, by implication, estoppel, or otherwise. - -No assurances are provided by Nokia that the Contribution does not -infringe the patent or other intellectual property rights of any third -party or that the license provides you with all the necessary rights -to make use of the Contribution. - -THE SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. IN -ADDITION TO THE DISCLAIMERS INCLUDED IN THE LICENSE, NOKIA -SPECIFICALLY DISCLAIMS ANY LIABILITY FOR CLAIMS BROUGHT BY YOU OR ANY -OTHER ENTITY BASED ON INFRINGEMENT OF INTELLECTUAL PROPERTY RIGHTS OR -OTHERWISE. --------------------------------------------------------------------------------- -boringssl - -Copyright 2006-2017 The OpenSSL Project Authors. All Rights Reserved. - -Licensed under the OpenSSL license (the "License"). You may not use -this file except in compliance with the License. You can obtain a copy -in the file LICENSE in the source distribution or at -https://www.openssl.org/source/license.html --------------------------------------------------------------------------------- -boringssl - -Copyright 2007-2016 The OpenSSL Project Authors. All Rights Reserved. - -Licensed under the OpenSSL license (the "License"). You may not use -this file except in compliance with the License. You can obtain a copy -in the file LICENSE in the source distribution or at -https://www.openssl.org/source/license.html --------------------------------------------------------------------------------- -boringssl - -Copyright 2012-2016 The OpenSSL Project Authors. All Rights Reserved. - -Licensed under the OpenSSL license (the "License"). You may not use -this file except in compliance with the License. You can obtain a copy -in the file LICENSE in the source distribution or at -https://www.openssl.org/source/license.html --------------------------------------------------------------------------------- -boringssl - -Copyright 2013-2016 The OpenSSL Project Authors. All Rights Reserved. -Copyright (c) 2012, Intel Corporation. All Rights Reserved. - -Licensed under the OpenSSL license (the "License"). You may not use -this file except in compliance with the License. You can obtain a copy -in the file LICENSE in the source distribution or at -https://www.openssl.org/source/license.html --------------------------------------------------------------------------------- -boringssl - -Copyright 2014-2016 The OpenSSL Project Authors. All Rights Reserved. - -Licensed under the OpenSSL license (the "License"). You may not use -this file except in compliance with the License. You can obtain a copy -in the file LICENSE in the source distribution or at -https://www.openssl.org/source/license.html --------------------------------------------------------------------------------- -boringssl - -Copyright 2014-2016 The OpenSSL Project Authors. All Rights Reserved. -Copyright (c) 2014, Intel Corporation. All Rights Reserved. - -Licensed under the OpenSSL license (the "License"). You may not use -this file except in compliance with the License. You can obtain a copy -in the file LICENSE in the source distribution or at -https://www.openssl.org/source/license.html --------------------------------------------------------------------------------- -boringssl - -Copyright 2014-2016 The OpenSSL Project Authors. All Rights Reserved. -Copyright (c) 2015, Intel Inc. - -Licensed under the OpenSSL license (the "License"). You may not use -this file except in compliance with the License. You can obtain a copy -in the file LICENSE in the source distribution or at -https://www.openssl.org/source/license.html --------------------------------------------------------------------------------- -boringssl - -Copyright 2014-2020 The OpenSSL Project Authors. All Rights Reserved. - -Licensed under the OpenSSL license (the "License"). You may not use -this file except in compliance with the License. You can obtain a copy -in the file LICENSE in the source distribution or at -https://www.openssl.org/source/license.html --------------------------------------------------------------------------------- -boringssl - -Copyright 2015-2016 The OpenSSL Project Authors. All Rights Reserved. - -Licensed under the OpenSSL license (the "License"). You may not use -this file except in compliance with the License. You can obtain a copy -in the file LICENSE in the source distribution or at -https://www.openssl.org/source/license.html --------------------------------------------------------------------------------- -boringssl - -Copyright 2016 Brian Smith. - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY -SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION -OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN -CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. --------------------------------------------------------------------------------- -boringssl - -Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY -SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION -OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN -CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. --------------------------------------------------------------------------------- -boringssl - -DTLS code by Eric Rescorla - -Copyright (C) 2006, Network Resonance, Inc. -Copyright (C) 2011, RTFM, Inc. --------------------------------------------------------------------------------- -boringssl - -OpenSSL License ---------------- - -Copyright (c) 1998-2011 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.openssl.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - openssl-core@openssl.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.openssl.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. - - -This product includes cryptographic software written by Eric Young -(eay@cryptsoft.com). This product includes software written by Tim -Hudson (tjh@cryptsoft.com). - -Original SSLeay License ------------------------ - -Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) -All rights reserved. - -This package is an SSL implementation written -by Eric Young (eay@cryptsoft.com). -The implementation was written so as to conform with Netscapes SSL. - -This library is free for commercial and non-commercial use as long as -the following conditions are aheared to. The following conditions -apply to all code found in this distribution, be it the RC4, RSA, -lhash, DES, etc., code; not just the SSL code. The SSL documentation -included with this distribution is covered by the same copyright terms -except that the holder is Tim Hudson (tjh@cryptsoft.com). - -Copyright remains Eric Young's, and as such any Copyright notices in -the code are not to be removed. -If this package is used in a product, Eric Young should be given attribution -as the author of the parts of the library used. -This can be in the form of a textual message at program startup or -in documentation (online or textual) provided with the package. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. -3. All advertising materials mentioning features or use of this software - must display the following acknowledgement: - "This product includes cryptographic software written by - Eric Young (eay@cryptsoft.com)" - The word 'cryptographic' can be left out if the rouines from the library - being used are not cryptographic related :-). -4. If you include any Windows specific code (or a derivative thereof) from - the apps directory (application code) you must include an acknowledgement: - "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" - -THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS -OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -SUCH DAMAGE. - -The licence and distribution terms for any publically available version or -derivative of this code cannot be changed. i.e. this code cannot simply be -copied and put under another distribution licence -[including the GNU Public Licence.] - -ISC license used for completely new code in BoringSSL: - -Copyright (c) 2015, Google Inc. - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY -SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION -OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN -CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - -The code in third_party/fiat carries the MIT license: - -Copyright (c) 2015-2016 the fiat-crypto authors (see -https://github.com/mit-plv/fiat-crypto/blob/master/AUTHORS). - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -Licenses for support code -------------------------- - -Parts of the TLS test suite are under the Go license. This code is not included -in BoringSSL (i.e. libcrypto and libssl) when compiled, however, so -distributing code linked against BoringSSL does not trigger this license: - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -BoringSSL uses the Chromium test infrastructure to run a continuous build, -trybots etc. The scripts which manage this, and the script for generating build -metadata, are under the Chromium license. Distributing code linked against -BoringSSL does not trigger this license. - -Copyright 2015 The Chromium Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -ceval - -Copyright (c) 2021 e_t - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. --------------------------------------------------------------------------------- -characters -ffi - -Copyright 2019, the Dart project authors. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -clock -fake_async -material_color_utilities -quiver - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "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. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "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. - - "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. --------------------------------------------------------------------------------- -crypto - -Copyright 2015, the Dart project authors. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -cupertino_icons - -The MIT License (MIT) - -Copyright (c) 2016 Vladimir Kharlampidi - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -dart - -Copyright (c) 2003-2005 Tom Wu -Copyright (c) 2012 Adam Singer (adam@solvr.io) -All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, -EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY -WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. - -IN NO EVENT SHALL TOM WU BE LIABLE FOR ANY SPECIAL, INCIDENTAL, -INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER -RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR NOT ADVISED OF -THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF LIABILITY, ARISING OUT -OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - -In addition, the following condition applies: - -All redistributions must retain an intact copy of this copyright notice -and disclaimer. --------------------------------------------------------------------------------- -dart - -Copyright (c) 2010, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -dart - -Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -dart - -Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -dart - -Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -dart - -Copyright (c) 2014 The Polymer Project Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -dart - -Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -dart - -Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -dart - -Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -dart - -Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -dart - -Copyright (c) 2018, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -dart - -Copyright (c) 2018, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -dart - -Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -dart - -Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -dart - -Copyright (c) 2020, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -dart - -Copyright (c) 2021, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -dart - -Copyright (c) 2022, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -dart - -Copyright (c) 2023, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -dart - -Copyright (c) 2023, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -dart - -Copyright 2012, the Dart project authors. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -double-conversion -icu - -Copyright 2006-2008 the V8 project authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -double-conversion -icu - -Copyright 2010 the V8 project authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -double-conversion -icu - -Copyright 2012 the V8 project authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -engine - -License for the Ahem font embedded below is from: -https://www.w3.org/Style/CSS/Test/Fonts/Ahem/COPYING - -The Ahem font in this directory belongs to the public domain. In -jurisdictions that do not recognize public domain ownership of these -files, the following Creative Commons Zero declaration applies: - - - -which is quoted below: - - The person who has associated a work with this document (the "Work") - affirms that he or she (the "Affirmer") is the/an author or owner of - the Work. The Work may be any work of authorship, including a - database. - - The Affirmer hereby fully, permanently and irrevocably waives and - relinquishes all of her or his copyright and related or neighboring - legal rights in the Work available under any federal or state law, - treaty or contract, including but not limited to moral rights, - publicity and privacy rights, rights protecting against unfair - competition and any rights protecting the extraction, dissemination - and reuse of data, whether such rights are present or future, vested - or contingent (the "Waiver"). The Affirmer makes the Waiver for the - benefit of the public at large and to the detriment of the Affirmer's - heirs or successors. - - The Affirmer understands and intends that the Waiver has the effect - of eliminating and entirely removing from the Affirmer's control all - the copyright and related or neighboring legal rights previously held - by the Affirmer in the Work, to that extent making the Work freely - available to the public for any and all uses and purposes without - restriction of any kind, including commercial use and uses in media - and formats or by methods that have not yet been invented or - conceived. Should the Waiver for any reason be judged legally - ineffective in any jurisdiction, the Affirmer hereby grants a free, - full, permanent, irrevocable, nonexclusive and worldwide license for - all her or his copyright and related or neighboring legal rights in - the Work. --------------------------------------------------------------------------------- -etc_decoder - -Copyright (c) 2020-2022 Hans-Kristian Arntzen - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2000-2004 Fred L. Drake, Jr. -Copyright (c) 2001-2002 Greg Stein -Copyright (c) 2002-2006 Karl Waclawek -Copyright (c) 2016 Cristian Rodríguez -Copyright (c) 2016-2019 Sebastian Pipping -Copyright (c) 2017 Rhodri James -Copyright (c) 2018 Yury Gribov - -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2000-2005 Fred L. Drake, Jr. -Copyright (c) 2001-2002 Greg Stein -Copyright (c) 2002-2016 Karl Waclawek -Copyright (c) 2016-2022 Sebastian Pipping -Copyright (c) 2016 Cristian Rodríguez -Copyright (c) 2016 Thomas Beutlich -Copyright (c) 2017 Rhodri James -Copyright (c) 2022 Thijs Schreijer - -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2000-2006 Fred L. Drake, Jr. -Copyright (c) 2001-2002 Greg Stein -Copyright (c) 2002-2016 Karl Waclawek -Copyright (c) 2005-2009 Steven Solie -Copyright (c) 2016 Eric Rahm -Copyright (c) 2016-2022 Sebastian Pipping -Copyright (c) 2016 Gaurav -Copyright (c) 2016 Thomas Beutlich -Copyright (c) 2016 Gustavo Grieco -Copyright (c) 2016 Pascal Cuoq -Copyright (c) 2016 Ed Schouten -Copyright (c) 2017-2022 Rhodri James -Copyright (c) 2017 Václav Slavík -Copyright (c) 2017 Viktor Szakats -Copyright (c) 2017 Chanho Park -Copyright (c) 2017 Rolf Eike Beer -Copyright (c) 2017 Hans Wennborg -Copyright (c) 2018 Anton Maklakov -Copyright (c) 2018 Benjamin Peterson -Copyright (c) 2018 Marco Maggi -Copyright (c) 2018 Mariusz Zaborski -Copyright (c) 2019 David Loffredo -Copyright (c) 2019-2020 Ben Wagner -Copyright (c) 2019 Vadim Zeitlin -Copyright (c) 2021 Dong-hee Na -Copyright (c) 2022 Samanta Navarro -Copyright (c) 2022 Jeffrey Walton -Copyright (c) 2022 Jann Horn - -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2001-2002 Fred L. Drake, Jr. -Copyright (c) 2006 Karl Waclawek -Copyright (c) 2016-2017 Sebastian Pipping -Copyright (c) 2017 Rhodri James - -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2001-2003 Fred L. Drake, Jr. -Copyright (c) 2002 Greg Stein -Copyright (c) 2002-2016 Karl Waclawek -Copyright (c) 2005-2009 Steven Solie -Copyright (c) 2016-2022 Sebastian Pipping -Copyright (c) 2016 Pascal Cuoq -Copyright (c) 2016 Don Lewis -Copyright (c) 2017 Rhodri James -Copyright (c) 2017 Alexander Bluhm -Copyright (c) 2017 Benbuck Nason -Copyright (c) 2017 José Gutiérrez de la Concha -Copyright (c) 2019 David Loffredo -Copyright (c) 2021 Dong-hee Na -Copyright (c) 2022 Martin Ettl - -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2001-2003 Fred L. Drake, Jr. -Copyright (c) 2004-2009 Karl Waclawek -Copyright (c) 2005-2007 Steven Solie -Copyright (c) 2016-2022 Sebastian Pipping -Copyright (c) 2017 Rhodri James -Copyright (c) 2019 David Loffredo -Copyright (c) 2020 Joe Orton -Copyright (c) 2020 Kleber Tarcísio -Copyright (c) 2021 Tim Bray -Copyright (c) 2022 Martin Ettl - -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2001-2004 Fred L. Drake, Jr. -Copyright (c) 2002-2009 Karl Waclawek -Copyright (c) 2016-2017 Sebastian Pipping -Copyright (c) 2017 Rhodri James -Copyright (c) 2017 Franek Korta - -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2002 Fred L. Drake, Jr. -Copyright (c) 2002-2005 Karl Waclawek -Copyright (c) 2016-2017 Sebastian Pipping -Copyright (c) 2017 Rhodri James - -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2002 Fred L. Drake, Jr. -Copyright (c) 2002-2016 Karl Waclawek -Copyright (c) 2016-2022 Sebastian Pipping -Copyright (c) 2017 Rhodri James -Copyright (c) 2018 Benjamin Peterson -Copyright (c) 2018 Anton Maklakov -Copyright (c) 2019 David Loffredo -Copyright (c) 2020 Boris Kolpackov -Copyright (c) 2022 Martin Ettl - -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2002 Fred L. Drake, Jr. -Copyright (c) 2005 Karl Waclawek -Copyright (c) 2016-2019 Sebastian Pipping - -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2002 Fred L. Drake, Jr. -Copyright (c) 2005-2006 Karl Waclawek -Copyright (c) 2016-2019 Sebastian Pipping -Copyright (c) 2019 David Loffredo - -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2002 Fred L. Drake, Jr. -Copyright (c) 2016-2017 Sebastian Pipping - -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2002 Fred L. Drake, Jr. -Copyright (c) 2016-2022 Sebastian Pipping -Copyright (c) 2022 Martin Ettl - -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2002 Fred L. Drake, Jr. -Copyright (c) 2017 Sebastian Pipping - -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2002 Greg Stein -Copyright (c) 2002 Fred L. Drake, Jr. -Copyright (c) 2002-2006 Karl Waclawek -Copyright (c) 2017-2021 Sebastian Pipping - -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2002 Greg Stein -Copyright (c) 2002-2006 Karl Waclawek -Copyright (c) 2002-2003 Fred L. Drake, Jr. -Copyright (c) 2005-2009 Steven Solie -Copyright (c) 2016-2021 Sebastian Pipping -Copyright (c) 2017 Rhodri James -Copyright (c) 2019 David Loffredo -Copyright (c) 2021 Dong-hee Na - -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2002 Karl Waclawek -Copyright (c) 2002 Fred L. Drake, Jr. -Copyright (c) 2017 Sebastian Pipping - -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2002-2003 Fred L. Drake, Jr. -Copyright (c) 2004-2006 Karl Waclawek -Copyright (c) 2005-2007 Steven Solie -Copyright (c) 2016-2021 Sebastian Pipping -Copyright (c) 2017 Rhodri James -Copyright (c) 2019 David Loffredo -Copyright (c) 2021 Dong-hee Na - -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2017-2019 Sebastian Pipping - -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2002 Fred L. Drake, Jr. -Copyright (c) 2016-2017 Sebastian Pipping - -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2002 Fred L. Drake, Jr. -Copyright (c) 2016-2018 Sebastian Pipping -Copyright (c) 2018 Marco Maggi - -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2016-2021 Sebastian Pipping -Copyright (c) 2017 Rhodri James - -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -Copyright (c) 1998-2000 Thai Open Source Software Center Ltd and Clark Cooper -Copyright (c) 2001-2022 Expat maintainers - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -Copyright (c) 1999-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2002 Fred L. Drake, Jr. -Copyright (c) 2007 Karl Waclawek -Copyright (c) 2017 Sebastian Pipping - -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -Copyright (c) 2000 Clark Cooper -Copyright (c) 2002 Greg Stein -Copyright (c) 2005 Karl Waclawek -Copyright (c) 2017-2021 Sebastian Pipping - -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -Copyright (c) 2000 Clark Cooper -Copyright (c) 2017 Sebastian Pipping - -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -Copyright (c) 2002-2003 Fred L. Drake, Jr. -Copyright (c) 2002-2006 Karl Waclawek -Copyright (c) 2003 Greg Stein -Copyright (c) 2016-2022 Sebastian Pipping -Copyright (c) 2018 Yury Gribov -Copyright (c) 2019 David Loffredo - -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat -harfbuzz - -Copyright (c) 2021 Google Inc. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -ffx_spd - -Copyright (c) 2017-2019 Advanced Micro Devices, Inc. All rights reserved. -Copyright (c) <2014> - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation -files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, -modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the -Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, -ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -ffx_spd - -Copyright (c) 2017-2020 Advanced Micro Devices, Inc. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation -files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, -modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the -Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, -ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -fiat - -Copyright (c) 2015-2020 the fiat-crypto authors (see - -https://github.com/mit-plv/fiat-crypto/blob/master/AUTHORS). - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. --------------------------------------------------------------------------------- -file - -Copyright 2017, the Dart project authors. All rights reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -firebase_analytics -firebase_analytics_platform_interface -firebase_analytics_web - -Copyright 2017, the Chromium project authors. All rights reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -firebase_auth -firebase_auth_platform_interface -firebase_auth_web -firebase_core -firebase_core_platform_interface - -// Copyright 2017 The Chromium Authors. All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -firebase_core_web - -// Copyright 2020 The Chromium Authors. All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -flatbuffers - -Apache License -Version 2.0, January 2004 -http://www.apache.org/licenses/ - -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "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. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "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. - - "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 2014 Google Inc. - -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. --------------------------------------------------------------------------------- -flutter - -Copyright 2014 The Flutter Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -flutter_highlight -highlight - -MIT License - -Copyright (c) 2019 Rongjian Zhang - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - --------------------------------------------------------------------------------- -flutter_lints -flutter_markdown -google_identity_services_web -google_sign_in -google_sign_in_android -google_sign_in_ios -google_sign_in_platform_interface -google_sign_in_web -path_provider_linux -path_provider_platform_interface -path_provider_windows -platform -plugin_platform_interface -shared_preferences -shared_preferences_android -shared_preferences_foundation -shared_preferences_linux -shared_preferences_platform_interface -shared_preferences_web -shared_preferences_windows -url_launcher -url_launcher_android -url_launcher_ios -url_launcher_linux -url_launcher_macos -url_launcher_platform_interface -url_launcher_windows -xdg_directories - -Copyright 2013 The Flutter Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -fluttertoast - -MIT License - -Copyright (c) 2020 Karthik Ponnam - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - --------------------------------------------------------------------------------- -freetype2 - -Copyright (C) 1995-2017 Jean-loup Gailly and Mark Adler - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -freetype2 - -Copyright (C) 2000, 2001, 2002, 2003, 2006, 2010 by -Francesco Zappa Nardelli - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. --------------------------------------------------------------------------------- -freetype2 - -Copyright (C) 2000-2004, 2006-2011, 2013, 2014 by -Francesco Zappa Nardelli - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. --------------------------------------------------------------------------------- -freetype2 - -Copyright (C) 2001, 2002 by -Francesco Zappa Nardelli - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. --------------------------------------------------------------------------------- -freetype2 - -Copyright (C) 2001, 2002, 2003, 2004 by -Francesco Zappa Nardelli - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. --------------------------------------------------------------------------------- -freetype2 - -Copyright (C) 2001-2008, 2011, 2013, 2014 by -Francesco Zappa Nardelli - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. --------------------------------------------------------------------------------- -freetype2 - -Copyright 1990, 1994, 1998 The Open Group - -Permission to use, copy, modify, distribute, and sell this software and its -documentation for any purpose is hereby granted without fee, provided that -the above copyright notice appear in all copies and that both that -copyright notice and this permission notice appear in supporting -documentation. - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN -AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -Except as contained in this notice, the name of The Open Group shall not be -used in advertising or otherwise to promote the sale, use or other dealings -in this Software without prior written authorization from The Open Group. --------------------------------------------------------------------------------- -freetype2 - -Copyright 2000 Computing Research Labs, New Mexico State University -Copyright 2001-2004, 2011 Francesco Zappa Nardelli - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and associated documentation files (the "Software"), -to deal in the Software without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, sublicense, -and/or sell copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -THE COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT -OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR -THE USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -freetype2 - -Copyright 2000 Computing Research Labs, New Mexico State University -Copyright 2001-2014 - Francesco Zappa Nardelli - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and associated documentation files (the "Software"), -to deal in the Software without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, sublicense, -and/or sell copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -THE COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT -OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR -THE USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -freetype2 - -Copyright 2000 Computing Research Labs, New Mexico State University -Copyright 2001-2015 - Francesco Zappa Nardelli - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and associated documentation files (the "Software"), -to deal in the Software without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, sublicense, -and/or sell copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -THE COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT -OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR -THE USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -freetype2 - -Copyright 2000, 2001, 2004 by -Francesco Zappa Nardelli - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. --------------------------------------------------------------------------------- -freetype2 - -Copyright 2000-2001, 2002 by -Francesco Zappa Nardelli - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. --------------------------------------------------------------------------------- -freetype2 - -Copyright 2000-2001, 2003 by -Francesco Zappa Nardelli - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. --------------------------------------------------------------------------------- -freetype2 - -Copyright 2000-2010, 2012-2014 by -Francesco Zappa Nardelli - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. --------------------------------------------------------------------------------- -freetype2 - -Copyright 2001, 2002, 2012 Francesco Zappa Nardelli - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and associated documentation files (the "Software"), -to deal in the Software without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, sublicense, -and/or sell copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -THE COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT -OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR -THE USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -freetype2 - -Copyright 2003 by -Francesco Zappa Nardelli - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. --------------------------------------------------------------------------------- -freetype2 - -The FreeType Project LICENSE ----------------------------- - - 2006-Jan-27 - - Copyright 1996-2002, 2006 by - David Turner, Robert Wilhelm, and Werner Lemberg - - - -Introduction -============ - - The FreeType Project is distributed in several archive packages; - some of them may contain, in addition to the FreeType font engine, - various tools and contributions which rely on, or relate to, the - FreeType Project. - - This license applies to all files found in such packages, and - which do not fall under their own explicit license. The license - affects thus the FreeType font engine, the test programs, - documentation and makefiles, at the very least. - - This license was inspired by the BSD, Artistic, and IJG - (Independent JPEG Group) licenses, which all encourage inclusion - and use of free software in commercial and freeware products - alike. As a consequence, its main points are that: - - o We don't promise that this software works. However, we will be - interested in any kind of bug reports. (`as is' distribution) - - o You can use this software for whatever you want, in parts or - full form, without having to pay us. (`royalty-free' usage) - - o You may not pretend that you wrote this software. If you use - it, or only parts of it, in a program, you must acknowledge - somewhere in your documentation that you have used the - FreeType code. (`credits') - - We specifically permit and encourage the inclusion of this - software, with or without modifications, in commercial products. - We disclaim all warranties covering The FreeType Project and - assume no liability related to The FreeType Project. - - - Finally, many people asked us for a preferred form for a - credit/disclaimer to use in compliance with this license. We thus - encourage you to use the following text: - - """ - Portions of this software are copyright © The FreeType - Project (www.freetype.org). All rights reserved. - """ - - Please replace with the value from the FreeType version you - actually use. - - -Legal Terms -=========== - -0. Definitions --------------- - - Throughout this license, the terms `package', `FreeType Project', - and `FreeType archive' refer to the set of files originally - distributed by the authors (David Turner, Robert Wilhelm, and - Werner Lemberg) as the `FreeType Project', be they named as alpha, - beta or final release. - - `You' refers to the licensee, or person using the project, where - `using' is a generic term including compiling the project's source - code as well as linking it to form a `program' or `executable'. - This program is referred to as `a program using the FreeType - engine'. - - This license applies to all files distributed in the original - FreeType Project, including all source code, binaries and - documentation, unless otherwise stated in the file in its - original, unmodified form as distributed in the original archive. - If you are unsure whether or not a particular file is covered by - this license, you must contact us to verify this. - - The FreeType Project is copyright (C) 1996-2000 by David Turner, - Robert Wilhelm, and Werner Lemberg. All rights reserved except as - specified below. - -1. No Warranty --------------- - - THE FREETYPE PROJECT IS PROVIDED `AS IS' WITHOUT WARRANTY OF ANY - KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, - WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - PURPOSE. IN NO EVENT WILL ANY OF THE AUTHORS OR COPYRIGHT HOLDERS - BE LIABLE FOR ANY DAMAGES CAUSED BY THE USE OR THE INABILITY TO - USE, OF THE FREETYPE PROJECT. - -2. Redistribution ------------------ - - This license grants a worldwide, royalty-free, perpetual and - irrevocable right and license to use, execute, perform, compile, - display, copy, create derivative works of, distribute and - sublicense the FreeType Project (in both source and object code - forms) and derivative works thereof for any purpose; and to - authorize others to exercise some or all of the rights granted - herein, subject to the following conditions: - - o Redistribution of source code must retain this license file - (`FTL.TXT') unaltered; any additions, deletions or changes to - the original files must be clearly indicated in accompanying - documentation. The copyright notices of the unaltered, - original files must be preserved in all copies of source - files. - - o Redistribution in binary form must provide a disclaimer that - states that the software is based in part of the work of the - FreeType Team, in the distribution documentation. We also - encourage you to put an URL to the FreeType web page in your - documentation, though this isn't mandatory. - - These conditions apply to any software derived from or based on - the FreeType Project, not just the unmodified files. If you use - our work, you must acknowledge us. However, no fee need be paid - to us. - -3. Advertising --------------- - - Neither the FreeType authors and contributors nor you shall use - the name of the other for commercial, advertising, or promotional - purposes without specific prior written permission. - - We suggest, but do not require, that you use one or more of the - following phrases to refer to this software in your documentation - or advertising materials: `FreeType Project', `FreeType Engine', - `FreeType library', or `FreeType Distribution'. - - As you have not signed this license, you are not required to - accept it. However, as the FreeType Project is copyrighted - material, only this license, or another one contracted with the - authors, grants you the right to use, distribute, and modify it. - Therefore, by using, distributing, or modifying the FreeType - Project, you indicate that you understand and accept all the terms - of this license. - -4. Contacts ------------ - - There are two mailing lists related to FreeType: - - o freetype@nongnu.org - - Discusses general use and applications of FreeType, as well as - future and wanted additions to the library and distribution. - If you are looking for support, start in this list if you - haven't found anything to help you in the documentation. - - o freetype-devel@nongnu.org - - Discusses bugs, as well as engine internals, design issues, - specific licenses, porting, etc. - - Our home page can be found at - - https://www.freetype.org - - ---- end of FTL.TXT --- --------------------------------------------------------------------------------- -freetype2 - -This software was written by Alexander Peslyak in 2001. No copyright is -claimed, and the software is hereby placed in the public domain. -In case this attempt to disclaim copyright and place the software in the -public domain is deemed null and void, then the software is -Copyright (c) 2001 Alexander Peslyak and it is hereby released to the -general public under the following terms: - -Redistribution and use in source and binary forms, with or without -modification, are permitted. - -There's ABSOLUTELY NO WARRANTY, express or implied. --------------------------------------------------------------------------------- -freetype2 - -This software was written by Alexander Peslyak in 2001. No copyright is -claimed, and the software is hereby placed in the public domain. -In case this attempt to disclaim copyright and place the software in the -public domain is deemed null and void, then the software is -Copyright (c) 2001 Alexander Peslyak and it is hereby released to the -general public under the following terms: - -Redistribution and use in source and binary forms, with or without -modification, are permitted. - -There's ABSOLUTELY NO WARRANTY, express or implied. - -(This is a heavily cut-down "BSD license".) --------------------------------------------------------------------------------- -fuchsia_sdk - -Copyright 2014 The Fuchsia Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -fuchsia_sdk - -Copyright 2016 The Fuchsia Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -fuchsia_sdk - -Copyright 2017 The Fuchsia Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -fuchsia_sdk - -Copyright 2018 The Fuchsia Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -fuchsia_sdk - -Copyright 2019 The Fuchsia Authors. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -fuchsia_sdk - -Copyright 2019 The Fuchsia Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -fuchsia_sdk - -Copyright 2020 The Fuchsia Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -fuchsia_sdk - -Copyright 2021 The Fuchsia Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -fuchsia_sdk - -Copyright 2022 The Fuchsia Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -fuchsia_sdk - -Copyright 2023 The Fuchsia Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -fuchsia_sdk - -musl as a whole is licensed under the following standard MIT license: - - -Copyright © 2005-2014 Rich Felker, et al. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - -Authors/contributors include: - -Alex Dowad -Alexander Monakov -Anthony G. Basile -Arvid Picciani -Bobby Bingham -Boris Brezillon -Brent Cook -Chris Spiegel -Clément Vasseur -Daniel Micay -Denys Vlasenko -Emil Renner Berthing -Felix Fietkau -Felix Janda -Gianluca Anzolin -Hauke Mehrtens -Hiltjo Posthuma -Isaac Dunham -Jaydeep Patil -Jens Gustedt -Jeremy Huntwork -Jo-Philipp Wich -Joakim Sindholt -John Spencer -Josiah Worcester -Justin Cormack -Khem Raj -Kylie McClain -Luca Barbato -Luka Perkov -M Farkas-Dyck (Strake) -Mahesh Bodapati -Michael Forney -Natanael Copa -Nicholas J. Kain -orc -Pascal Cuoq -Petr Hosek -Pierre Carrier -Rich Felker -Richard Pennington -Shiz -sin -Solar Designer -Stefan Kristiansson -Szabolcs Nagy -Timo Teräs -Trutz Behn -Valentin Ochs -William Haddon - -Portions of this software are derived from third-party works licensed -under terms compatible with the above MIT license: - -Much of the math library code (third_party/math/* and -third_party/complex/*, and third_party/include/libm.h) is -Copyright © 1993,2004 Sun Microsystems or -Copyright © 2003-2011 David Schultz or -Copyright © 2003-2009 Steven G. Kargl or -Copyright © 2003-2009 Bruce D. Evans or -Copyright © 2008 Stephen L. Moshier -and labelled as such in comments in the individual source files. All -have been licensed under extremely permissive terms. - -The smoothsort implementation (third_party/smoothsort/qsort.c) is -Copyright © 2011 Valentin Ochs and is licensed under an MIT-style -license. - -The x86_64 files in third_party/arch were written by Nicholas J. Kain -and is licensed under the standard MIT terms. - -All other files which have no copyright comments are original works -produced specifically for use as part of this library, written either -by Rich Felker, the main author of the library, or by one or more -contibutors listed above. Details on authorship of individual files -can be found in the git version control history of the project. The -omission of copyright and license comments in each file is in the -interest of source tree size. - -In addition, permission is hereby granted for all public header files -(include/* and arch/*/bits/*) and crt files intended to be linked into -applications (crt/*, ldso/dlstart.c, and arch/*/crt_arch.h) to omit -the copyright notice and permission notice otherwise required by the -license, and to use these files without any requirement of -attribution. These files include substantial contributions from: - -Bobby Bingham -John Spencer -Nicholas J. Kain -Rich Felker -Richard Pennington -Stefan Kristiansson -Szabolcs Nagy - -all of whom have explicitly granted such permission. - -This file previously contained text expressing a belief that most of -the files covered by the above exception were sufficiently trivial not -to be subject to copyright, resulting in confusion over whether it -negated the permissions granted in the license. In the spirit of -permissive licensing, and of not having licensing issues being an -obstacle to adoption, that text has been removed. --------------------------------------------------------------------------------- -fuchsia_sdk -libjxl - -Copyright 2021 The Chromium Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glfw - -Copyright (C) 1997-2013 Sam Lantinga - -This software is provided 'as-is', without any express or implied warranty. -In no event will the authors be held liable for any damages arising from the -use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would - be appreciated but is not required. - -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. - -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -glfw - -Copyright (c) 2002-2006 Marcus Geelnard - -Copyright (c) 2006-2019 Camilla Löwy - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would - be appreciated but is not required. - -2. Altered source versions must be plainly marked as such, and must not - be misrepresented as being the original software. - -3. This notice may not be removed or altered from any source - distribution. --------------------------------------------------------------------------------- -glfw - -Copyright (c) 2002-2006 Marcus Geelnard -Copyright (c) 2006-2016 Camilla Löwy - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would - be appreciated but is not required. - -2. Altered source versions must be plainly marked as such, and must not - be misrepresented as being the original software. - -3. This notice may not be removed or altered from any source - distribution. --------------------------------------------------------------------------------- -glfw - -Copyright (c) 2002-2006 Marcus Geelnard -Copyright (c) 2006-2017 Camilla Löwy - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would - be appreciated but is not required. - -2. Altered source versions must be plainly marked as such, and must not - be misrepresented as being the original software. - -3. This notice may not be removed or altered from any source - distribution. --------------------------------------------------------------------------------- -glfw - -Copyright (c) 2002-2006 Marcus Geelnard -Copyright (c) 2006-2018 Camilla Löwy - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would - be appreciated but is not required. - -2. Altered source versions must be plainly marked as such, and must not - be misrepresented as being the original software. - -3. This notice may not be removed or altered from any source - distribution. --------------------------------------------------------------------------------- -glfw - -Copyright (c) 2002-2006 Marcus Geelnard -Copyright (c) 2006-2019 Camilla Löwy - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would - be appreciated but is not required. - -2. Altered source versions must be plainly marked as such, and must not - be misrepresented as being the original software. - -3. This notice may not be removed or altered from any source - distribution. --------------------------------------------------------------------------------- -glfw - -Copyright (c) 2002-2006 Marcus Geelnard -Copyright (c) 2006-2019 Camilla Löwy -Copyright (c) 2012 Torsten Walluhn - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would - be appreciated but is not required. - -2. Altered source versions must be plainly marked as such, and must not - be misrepresented as being the original software. - -3. This notice may not be removed or altered from any source - distribution. --------------------------------------------------------------------------------- -glfw - -Copyright (c) 2006-2017 Camilla Löwy - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would - be appreciated but is not required. - -2. Altered source versions must be plainly marked as such, and must not - be misrepresented as being the original software. - -3. This notice may not be removed or altered from any source - distribution. --------------------------------------------------------------------------------- -glfw - -Copyright (c) 2006-2018 Camilla Löwy - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would - be appreciated but is not required. - -2. Altered source versions must be plainly marked as such, and must not - be misrepresented as being the original software. - -3. This notice may not be removed or altered from any source - distribution. --------------------------------------------------------------------------------- -glfw - -Copyright (c) 2009-2016 Camilla Löwy - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would - be appreciated but is not required. - -2. Altered source versions must be plainly marked as such, and must not - be misrepresented as being the original software. - -3. This notice may not be removed or altered from any source - distribution. --------------------------------------------------------------------------------- -glfw - -Copyright (c) 2009-2019 Camilla Löwy - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would - be appreciated but is not required. - -2. Altered source versions must be plainly marked as such, and must not - be misrepresented as being the original software. - -3. This notice may not be removed or altered from any source - distribution. --------------------------------------------------------------------------------- -glfw - -Copyright (c) 2009-2019 Camilla Löwy -Copyright (c) 2012 Torsten Walluhn - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would - be appreciated but is not required. - -2. Altered source versions must be plainly marked as such, and must not - be misrepresented as being the original software. - -3. This notice may not be removed or altered from any source - distribution. --------------------------------------------------------------------------------- -glfw - -Copyright (c) 2009-2021 Camilla Löwy - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would - be appreciated but is not required. - -2. Altered source versions must be plainly marked as such, and must not - be misrepresented as being the original software. - -3. This notice may not be removed or altered from any source - distribution. --------------------------------------------------------------------------------- -glfw - -Copyright (c) 2014 Jonas Ådahl - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would - be appreciated but is not required. - -2. Altered source versions must be plainly marked as such, and must not - be misrepresented as being the original software. - -3. This notice may not be removed or altered from any source - distribution. --------------------------------------------------------------------------------- -glfw - -Copyright (c) 2016 Google Inc. -Copyright (c) 2016-2017 Camilla Löwy - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would - be appreciated but is not required. - -2. Altered source versions must be plainly marked as such, and must not - be misrepresented as being the original software. - -3. This notice may not be removed or altered from any source - distribution. --------------------------------------------------------------------------------- -glfw - -Copyright (c) 2016 Google Inc. -Copyright (c) 2016-2019 Camilla Löwy - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would - be appreciated but is not required. - -2. Altered source versions must be plainly marked as such, and must not - be misrepresented as being the original software. - -3. This notice may not be removed or altered from any source - distribution. --------------------------------------------------------------------------------- -glfw - -Copyright (c) 2016-2017 Camilla Löwy - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would - be appreciated but is not required. - -2. Altered source versions must be plainly marked as such, and must not - be misrepresented as being the original software. - -3. This notice may not be removed or altered from any source - distribution. --------------------------------------------------------------------------------- -glfw - -Copyright (c) 2021 Camilla Löwy - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would - be appreciated but is not required. - -2. Altered source versions must be plainly marked as such, and must not - be misrepresented as being the original software. - -3. This notice may not be removed or altered from any source - distribution. --------------------------------------------------------------------------------- -glfw - -Copyright (c) 2022 Camilla Löwy - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would - be appreciated but is not required. - -2. Altered source versions must be plainly marked as such, and must not - be misrepresented as being the original software. - -3. This notice may not be removed or altered from any source - distribution. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2002-2005 3Dlabs Inc. Ltd. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2002-2005 3Dlabs Inc. Ltd. -Copyright (C) 2012-2013 LunarG, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2002-2005 3Dlabs Inc. Ltd. -Copyright (C) 2012-2013 LunarG, Inc. -Copyright (C) 2015-2018 Google, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2002-2005 3Dlabs Inc. Ltd. -Copyright (C) 2012-2013 LunarG, Inc. -Copyright (C) 2017 ARM Limited. -Copyright (C) 2015-2018 Google, Inc. -Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2002-2005 3Dlabs Inc. Ltd. -Copyright (C) 2012-2013 LunarG, Inc. -Copyright (C) 2017 ARM Limited. -Copyright (C) 2015-2019 Google, Inc. -Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2002-2005 3Dlabs Inc. Ltd. -Copyright (C) 2012-2013 LunarG, Inc. -Copyright (C) 2017 ARM Limited. -Copyright (C) 2015-2020 Google, Inc. -Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2002-2005 3Dlabs Inc. Ltd. -Copyright (C) 2012-2013 LunarG, Inc. -Copyright (C) 2017 ARM Limited. -Copyright (C) 2018-2020 Google, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2002-2005 3Dlabs Inc. Ltd. -Copyright (C) 2012-2013 LunarG, Inc. -Copyright (C) 2017 ARM Limited. -Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2002-2005 3Dlabs Inc. Ltd. -Copyright (C) 2012-2015 LunarG, Inc. -Copyright (C) 2015-2018 Google, Inc. -Copyright (C) 2017, 2019 ARM Limited. -Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2002-2005 3Dlabs Inc. Ltd. -Copyright (C) 2012-2015 LunarG, Inc. -Copyright (C) 2015-2020 Google, Inc. -Copyright (C) 2017 ARM Limited. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2002-2005 3Dlabs Inc. Ltd. -Copyright (C) 2012-2016 LunarG, Inc. -Copyright (C) 2015-2016 Google, Inc. -Copyright (C) 2017 ARM Limited. -Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2002-2005 3Dlabs Inc. Ltd. -Copyright (C) 2012-2016 LunarG, Inc. -Copyright (C) 2015-2020 Google, Inc. -Copyright (C) 2017 ARM Limited. -Modifications Copyright (C) 2020-2021 Advanced Micro Devices, Inc. All rights reserved. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2002-2005 3Dlabs Inc. Ltd. -Copyright (C) 2012-2016 LunarG, Inc. -Copyright (C) 2017 ARM Limited. -Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2002-2005 3Dlabs Inc. Ltd. -Copyright (C) 2013 LunarG, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2002-2005 3Dlabs Inc. Ltd. -Copyright (C) 2013 LunarG, Inc. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2002-2005 3Dlabs Inc. Ltd. -Copyright (C) 2013 LunarG, Inc. -Copyright (C) 2015-2018 Google, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2002-2005 3Dlabs Inc. Ltd. -Copyright (C) 2013 LunarG, Inc. -Copyright (C) 2015-2018 Google, Inc. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2002-2005 3Dlabs Inc. Ltd. -Copyright (C) 2013 LunarG, Inc. -Copyright (C) 2017 ARM Limited. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2002-2005 3Dlabs Inc. Ltd. -Copyright (C) 2013 LunarG, Inc. -Copyright (C) 2017 ARM Limited. -Copyright (C) 2015-2018 Google, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2002-2005 3Dlabs Inc. Ltd. -Copyright (C) 2013 LunarG, Inc. -Copyright (C) 2017 ARM Limited. -Copyright (C) 2020 Google, Inc. -Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2002-2005 3Dlabs Inc. Ltd. -Copyright (C) 2013 LunarG, Inc. -Copyright (c) 2002-2010 The ANGLE Project Authors. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2002-2005 3Dlabs Inc. Ltd. -Copyright (C) 2013-2016 LunarG, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2002-2005 3Dlabs Inc. Ltd. -Copyright (C) 2013-2016 LunarG, Inc. -Copyright (C) 2015-2018 Google, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2002-2005 3Dlabs Inc. Ltd. -Copyright (C) 2013-2016 LunarG, Inc. -Copyright (C) 2015-2020 Google, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2002-2005 3Dlabs Inc. Ltd. -Copyright (C) 2013-2016 LunarG, Inc. -Copyright (C) 2016-2020 Google, Inc. -Modifications Copyright(C) 2021 Advanced Micro Devices, Inc.All rights reserved. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2002-2005 3Dlabs Inc. Ltd. -Copyright (C) 2016 Google, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2002-2005 3Dlabs Inc. Ltd. -Copyright (C) 2016 LunarG, Inc. -Copyright (C) 2017 ARM Limited. -Copyright (C) 2015-2018 Google, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2002-2005 3Dlabs Inc. Ltd. -Copyright (C) 2017 Google, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2013 LunarG, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2013 LunarG, Inc. -Copyright (C) 2015-2018 Google, Inc. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2013 LunarG, Inc. -Copyright (C) 2017 ARM Limited. -Copyright (C) 2015-2018 Google, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2013-2016 LunarG, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2014 LunarG, Inc. -Copyright (C) 2015-2018 Google, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2014-2015 LunarG, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2014-2015 LunarG, Inc. -Copyright (C) 2015-2018 Google, Inc. -Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2014-2015 LunarG, Inc. -Copyright (C) 2015-2020 Google, Inc. -Copyright (C) 2017 ARM Limited. -Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2014-2015 LunarG, Inc. -Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2014-2016 LunarG, Inc. -Copyright (C) 2015-2020 Google, Inc. -Copyright (C) 2017 ARM Limited. -Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2014-2016 LunarG, Inc. -Copyright (C) 2018 Google, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2014-2016 LunarG, Inc. -Copyright (C) 2018-2020 Google, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2015 LunarG, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2015-2016 Google, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2015-2018 Google, Inc. -Copyright (C) 2017 ARM Limited. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2016 Google, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2016 Google, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2016 Google, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of Google, Inc., nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2016 Google, Inc. -Copyright (C) 2016 LunarG, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2016 Google, Inc. -Copyright (C) 2016 LunarG, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of Google, Inc., nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2016 Google, Inc. -Copyright (C) 2019 ARM Limited. -Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2016 LunarG, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2016 LunarG, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2016 LunarG, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of Google, Inc., nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2016-2017 Google, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2016-2017 Google, Inc. -Copyright (C) 2020 The Khronos Group Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2016-2017 LunarG, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2016-2018 Google, Inc. -Copyright (C) 2016 LunarG, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2016-2018 Google, Inc. -Copyright (C) 2016 LunarG, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of Google, Inc., nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2017 LunarG, Inc. -Copyright (C) 2018 Google, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2017 LunarG, Inc. -Copyright (C) 2018 Google, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of Google, Inc., nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2017-2018 Google, Inc. -Copyright (C) 2017 LunarG, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2018 Google, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2018 The Khronos Group Inc. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2020 Google, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of Google, Inc., nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2020 The Khronos Group Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of The Khronos Group Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (c) 2002, NVIDIA Corporation. - -NVIDIA Corporation("NVIDIA") supplies this software to you in -consideration of your agreement to the following terms, and your use, -installation, modification or redistribution of this NVIDIA software -constitutes acceptance of these terms. If you do not agree with these -terms, please do not use, install, modify or redistribute this NVIDIA -software. - -In consideration of your agreement to abide by the following terms, and -subject to these terms, NVIDIA grants you a personal, non-exclusive -license, under NVIDIA's copyrights in this original NVIDIA software (the -"NVIDIA Software"), to use, reproduce, modify and redistribute the -NVIDIA Software, with or without modifications, in source and/or binary -forms; provided that if you redistribute the NVIDIA Software, you must -retain the copyright notice of NVIDIA, this notice and the following -text and disclaimers in all such redistributions of the NVIDIA Software. -Neither the name, trademarks, service marks nor logos of NVIDIA -Corporation may be used to endorse or promote products derived from the -NVIDIA Software without specific prior written permission from NVIDIA. -Except as expressly stated in this notice, no other rights or licenses -express or implied, are granted by NVIDIA herein, including but not -limited to any patent rights that may be infringed by your derivative -works or by other works in which the NVIDIA Software may be -incorporated. No hardware is licensed hereunder. - -THE NVIDIA SOFTWARE IS BEING PROVIDED ON AN "AS IS" BASIS, WITHOUT -WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED, -INCLUDING WITHOUT LIMITATION, WARRANTIES OR CONDITIONS OF TITLE, -NON-INFRINGEMENT, MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR -ITS USE AND OPERATION EITHER ALONE OR IN COMBINATION WITH OTHER -PRODUCTS. - -IN NO EVENT SHALL NVIDIA BE LIABLE FOR ANY SPECIAL, INDIRECT, -INCIDENTAL, EXEMPLARY, CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, LOST PROFITS; PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF -USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) OR ARISING IN ANY WAY -OUT OF THE USE, REPRODUCTION, MODIFICATION AND/OR DISTRIBUTION OF THE -NVIDIA SOFTWARE, HOWEVER CAUSED AND WHETHER UNDER THEORY OF CONTRACT, -TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY OR OTHERWISE, EVEN IF -NVIDIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (c) 2013 The Khronos Group Inc. - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and/or associated documentation files (the -"Materials"), to deal in the Materials without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Materials, and to -permit persons to whom the Materials are furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Materials. - -THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. --------------------------------------------------------------------------------- -glslang - -Copyright (c) 2014-2017 The Khronos Group Inc. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and/or associated documentation files (the "Materials"), -to deal in the Materials without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, sublicense, -and/or sell copies of the Materials, and to permit persons to whom the -Materials are furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Materials. - -MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS KHRONOS -STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS SPECIFICATIONS AND -HEADER INFORMATION ARE LOCATED AT https://www.khronos.org/registry/ - -THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM,OUT OF OR IN CONNECTION WITH THE MATERIALS OR THE USE OR OTHER DEALINGS -IN THE MATERIALS. --------------------------------------------------------------------------------- -glslang - -Copyright (c) 2014-2020 The Khronos Group Inc. -Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and/or associated documentation files (the "Materials"), -to deal in the Materials without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, sublicense, -and/or sell copies of the Materials, and to permit persons to whom the -Materials are furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Materials. - -MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS KHRONOS -STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS SPECIFICATIONS AND -HEADER INFORMATION ARE LOCATED AT https://www.khronos.org/registry/ - -THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM,OUT OF OR IN CONNECTION WITH THE MATERIALS OR THE USE OR OTHER DEALINGS -IN THE MATERIALS. --------------------------------------------------------------------------------- -glslang - -Copyright (c) 2018 The Khronos Group Inc. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and/or associated documentation files (the "Materials"), -to deal in the Materials without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, sublicense, -and/or sell copies of the Materials, and to permit persons to whom the -Materials are furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Materials. - -MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS KHRONOS -STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS SPECIFICATIONS AND -HEADER INFORMATION ARE LOCATED AT https://www.khronos.org/registry/ - -THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM,OUT OF OR IN CONNECTION WITH THE MATERIALS OR THE USE OR OTHER DEALINGS -IN THE MATERIALS. --------------------------------------------------------------------------------- -glslang - -Copyright (c) 2019, Viktor Latypov -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (c) 2020 The Khronos Group Inc. - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and/or associated documentation files (the -"Materials"), to deal in the Materials without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Materials, and to -permit persons to whom the Materials are furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Materials. - -MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS -KHRONOS STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS -SPECIFICATIONS AND HEADER INFORMATION ARE LOCATED AT - https://www.khronos.org/registry/ - -THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. --------------------------------------------------------------------------------- -glslang - -Copyright (c) 2020, Travis Fort -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (c) 2022 ARM Limited - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and/or associated documentation files (the "Materials"), -to deal in the Materials without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, sublicense, -and/or sell copies of the Materials, and to permit persons to whom the -Materials are furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Materials. - -MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS KHRONOS -STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS SPECIFICATIONS AND -HEADER INFORMATION ARE LOCATED AT https://www.khronos.org/registry/ - -THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM,OUT OF OR IN CONNECTION WITH THE MATERIALS OR THE USE OR OTHER DEALINGS -IN THE MATERIALS. --------------------------------------------------------------------------------- -glslang - -Copyright(C) 2021 Advanced Micro Devices, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang -skia - -Copyright (c) 2014-2016 The Khronos Group Inc. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and/or associated documentation files (the "Materials"), -to deal in the Materials without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, sublicense, -and/or sell copies of the Materials, and to permit persons to whom the -Materials are furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Materials. - -MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS KHRONOS -STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS SPECIFICATIONS AND -HEADER INFORMATION ARE LOCATED AT https://www.khronos.org/registry/ - -THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM,OUT OF OR IN CONNECTION WITH THE MATERIALS OR THE USE OR OTHER DEALINGS -IN THE MATERIALS. --------------------------------------------------------------------------------- -glslang -spirv-cross - -Copyright (c) 2014-2020 The Khronos Group Inc. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and/or associated documentation files (the "Materials"), -to deal in the Materials without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, sublicense, -and/or sell copies of the Materials, and to permit persons to whom the -Materials are furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Materials. - -MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS KHRONOS -STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS SPECIFICATIONS AND -HEADER INFORMATION ARE LOCATED AT https://www.khronos.org/registry/ - -THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM,OUT OF OR IN CONNECTION WITH THE MATERIALS OR THE USE OR OTHER DEALINGS -IN THE MATERIALS. --------------------------------------------------------------------------------- -graphview - -MIT License - -Copyright (c) 2020 Nabil Mosharraf - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. --------------------------------------------------------------------------------- -harfbuzz - -Copyright (C) 2011 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright (C) 2012 Grigori Goronzy - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF -OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. --------------------------------------------------------------------------------- -harfbuzz - -Copyright (C) 2013 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright (c) Microsoft Corporation. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 1998-2004 David Turner and Werner Lemberg -Copyright © 2004,2007,2009 Red Hat, Inc. -Copyright © 2011,2012 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 1998-2004 David Turner and Werner Lemberg -Copyright © 2004,2007,2009,2010 Red Hat, Inc. -Copyright © 2011,2012 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 1998-2004 David Turner and Werner Lemberg -Copyright © 2006 Behdad Esfahbod -Copyright © 2007,2008,2009 Red Hat, Inc. -Copyright © 2012,2013 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2007 Chris Wilson -Copyright © 2009,2010 Red Hat, Inc. -Copyright © 2011,2012 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2007,2008,2009 Red Hat, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2007,2008,2009 Red Hat, Inc. -Copyright © 2010,2011,2012 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2007,2008,2009 Red Hat, Inc. -Copyright © 2010,2012 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2007,2008,2009 Red Hat, Inc. -Copyright © 2011,2012 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2007,2008,2009 Red Hat, Inc. -Copyright © 2012 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2007,2008,2009 Red Hat, Inc. -Copyright © 2012,2013 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2007,2008,2009 Red Hat, Inc. -Copyright © 2012,2013 Google, Inc. -Copyright © 2019, Facebook Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2007,2008,2009 Red Hat, Inc. -Copyright © 2018,2019,2020 Ebrahim Byagowi -Copyright © 2018 Khaled Hosny - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2007,2008,2009,2010 Red Hat, Inc. -Copyright © 2010,2012 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2007,2008,2009,2010 Red Hat, Inc. -Copyright © 2010,2012,2013 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2007,2008,2009,2010 Red Hat, Inc. -Copyright © 2012 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2007,2008,2009,2010 Red Hat, Inc. -Copyright © 2012,2018 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2007,2008,2009,2010 Red Hat, Inc. -Copyright © 2012,2018 Google, Inc. -Copyright © 2019 Facebook, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2009 Red Hat, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2009 Red Hat, Inc. -Copyright © 2009 Keith Stribley -Copyright © 2011 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2009 Red Hat, Inc. -Copyright © 2009 Keith Stribley -Copyright © 2015 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2009 Red Hat, Inc. -Copyright © 2011 Codethink Limited -Copyright © 2010,2011,2012 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2009 Red Hat, Inc. -Copyright © 2011 Codethink Limited -Copyright © 2011,2012 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2009 Red Hat, Inc. -Copyright © 2011 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2009 Red Hat, Inc. -Copyright © 2012 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2009 Red Hat, Inc. -Copyright © 2015 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2009 Red Hat, Inc. -Copyright © 2018 Ebrahim Byagowi - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2009 Red Hat, Inc. -Copyright © 2018 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2009,2010 Red Hat, Inc. -Copyright © 2010,2011,2012 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2009,2010 Red Hat, Inc. -Copyright © 2010,2011,2012,2013 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2009,2010 Red Hat, Inc. -Copyright © 2010,2011,2013 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2009,2010 Red Hat, Inc. -Copyright © 2011,2012 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2010 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2010 Red Hat, Inc. -Copyright © 2012 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2010,2011 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2010,2011,2012 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2010,2011,2013 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2010,2012 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2011 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2011 Martin Hosken -Copyright © 2011 SIL International - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2011 Martin Hosken -Copyright © 2011 SIL International -Copyright © 2011,2012 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2011,2012 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2011,2012 Google, Inc. -Copyright © 2018 Ebrahim Byagowi - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2011,2012,2013 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2011,2012,2013 Google, Inc. -Copyright © 2021 Khaled Hosny - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2011,2012,2014 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2011,2014 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2012 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2012 Mozilla Foundation. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2012,2013 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2012,2013 Mozilla Foundation. -Copyright © 2012,2013 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2012,2017 Google, Inc. -Copyright © 2021 Behdad Esfahbod - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2012,2018 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2013 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2013 Red Hat, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2014 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2015 Google, Inc. -Copyright © 2019 Adobe Inc. -Copyright © 2019 Ebrahim Byagowi - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2015 Mozilla Foundation. -Copyright © 2015 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2015-2019 Ebrahim Byagowi - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2016 Elie Roux -Copyright © 2018 Google, Inc. -Copyright © 2018-2019 Ebrahim Byagowi - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2016 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2016 Google, Inc. -Copyright © 2018 Ebrahim Byagowi - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2016 Google, Inc. -Copyright © 2018 Khaled Hosny -Copyright © 2018 Ebrahim Byagowi - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2016 Igalia S.L. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2017 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2017 Google, Inc. -Copyright © 2018 Ebrahim Byagowi - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2017 Google, Inc. -Copyright © 2019 Facebook, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2017,2018 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2018 Ebrahim Byagowi - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2018 Ebrahim Byagowi -Copyright © 2018 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2018 Ebrahim Byagowi -Copyright © 2020 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2018 Ebrahim Byagowi. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2018 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2018 Google, Inc. -Copyright © 2019 Facebook, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2018 Google, Inc. -Copyright © 2023 Behdad Esfahbod - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2018 Adobe Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2018-2019 Ebrahim Byagowi - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2019 Adobe Inc. -Copyright © 2019 Ebrahim Byagowi - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2019 Adobe, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2019 Ebrahim Byagowi - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2019 Facebook, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2019 Adobe Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2019-2020 Ebrahim Byagowi - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2020 Ebrahim Byagowi - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2020 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2021 Behdad Esfahbod - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2021 Behdad Esfahbod. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2021 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2022 Behdad Esfahbod - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2022 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2022 Red Hat, Inc - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2022 Red Hat, Inc -Copyright © 2021, 2022 Black Foundry - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2022 Red Hat, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2022 Behdad Esfahbod - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2022 Matthias Clasen - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2022 Red Hat, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2023 Behdad Esfahbod - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2023 Behdad Esfahbod -Copyright © 1999 David Turner -Copyright © 2005 Werner Lemberg -Copyright © 2013-2015 Alexei Podtelezhnikov - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2023 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz - -HarfBuzz is licensed under the so-called "Old MIT" license. Details follow. -For parts of HarfBuzz that are licensed under different licenses see individual -files names COPYING in subdirectories where applicable. - -Copyright © 2010-2022 Google, Inc. -Copyright © 2015-2020 Ebrahim Byagowi -Copyright © 2019,2020 Facebook, Inc. -Copyright © 2012,2015 Mozilla Foundation -Copyright © 2011 Codethink Limited -Copyright © 2008,2010 Nokia Corporation and/or its subsidiary(-ies) -Copyright © 2009 Keith Stribley -Copyright © 2011 Martin Hosken and SIL International -Copyright © 2007 Chris Wilson -Copyright © 2005,2006,2020,2021,2022,2023 Behdad Esfahbod -Copyright © 2004,2007,2008,2009,2010,2013,2021,2022,2023 Red Hat, Inc. -Copyright © 1998-2005 David Turner and Werner Lemberg -Copyright © 2016 Igalia S.L. -Copyright © 2022 Matthias Clasen -Copyright © 2018,2021 Khaled Hosny -Copyright © 2018,2019,2020 Adobe, Inc -Copyright © 2013-2015 Alexei Podtelezhnikov - -For full copyright notices consult the individual files in the package. - - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -harfbuzz -icu -web_unicode - -Unicode® Copyright and Terms of Use -For the general privacy policy governing access to this site, see the Unicode Privacy Policy. - -A. Unicode Copyright -1. Copyright © 1991-2022 Unicode, Inc. All rights reserved. -B. Definitions -Unicode Data Files ("DATA FILES") include all data files under the directories: -https://www.unicode.org/Public/ -https://www.unicode.org/reports/ -https://www.unicode.org/ivd/data/ - -Unicode Data Files do not include PDF online code charts under the directory: -https://www.unicode.org/Public/ - -Unicode Software ("SOFTWARE") includes any source code published in the Unicode Standard -or any source code or compiled code under the directories: -https://www.unicode.org/Public/PROGRAMS/ -https://www.unicode.org/Public/cldr/ -http://site.icu-project.org/download/ -C. Terms of Use -1. Certain documents and files on this website contain a legend indicating that "Modification is permitted." Any person is hereby authorized, without fee, to modify such documents and files to create derivative works conforming to the Unicode® Standard, subject to Terms and Conditions herein. -2. Any person is hereby authorized, without fee, to view, use, reproduce, and distribute all documents and files, subject to the Terms and Conditions herein. -3. Further specifications of rights and restrictions pertaining to the use of the Unicode DATA FILES and SOFTWARE can be found in the Unicode Data Files and Software License. -4. Each version of the Unicode Standard has further specifications of rights and restrictions of use. For the book editions (Unicode 5.0 and earlier), these are found on the back of the title page. -5. The Unicode PDF online code charts carry specific restrictions. Those restrictions are incorporated as the first page of each PDF code chart. -6. All other files, including online documentation of the core specification for Unicode 6.0 and later, are covered under these general Terms of Use. -7. No license is granted to "mirror" the Unicode website where a fee is charged for access to the "mirror" site. -8. Modification is not permitted with respect to this document. All copies of this document must be verbatim. -D. Restricted Rights Legend -1. Any technical data or software which is licensed to the United States of America, its agencies and/or instrumentalities under this Agreement is commercial technical data or commercial computer software developed exclusively at private expense as defined in FAR 2.101, or DFARS 252.227-7014 (June 1995), as applicable. For technical data, use, duplication, or disclosure by the Government is subject to restrictions as set forth in DFARS 202.227-7015 Technical Data, Commercial and Items (Nov 1995) and this Agreement. For Software, in accordance with FAR 12-212 or DFARS 227-7202, as applicable, use, duplication or disclosure by the Government is subject to the restrictions set forth in this Agreement. -E.Warranties and Disclaimers -1. This publication and/or website may include technical or typographical errors or other inaccuracies. Changes are periodically added to the information herein; these changes will be incorporated in new editions of the publication and/or website. Unicode, Inc. may make improvements and/or changes in the product(s) and/or program(s) described in this publication and/or website at any time. -2. If this file has been purchased on magnetic or optical media from Unicode, Inc. the sole and exclusive remedy for any claim will be exchange of the defective media within ninety (90) days of original purchase. -3. EXCEPT AS PROVIDED IN SECTION E.2, THIS PUBLICATION AND/OR SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND EITHER EXPRESS, IMPLIED, OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT. UNICODE, INC. AND ITS LICENSORS ASSUME NO RESPONSIBILITY FOR ERRORS OR OMISSIONS IN THIS PUBLICATION AND/OR SOFTWARE OR OTHER DOCUMENTS WHICH ARE REFERENCED BY OR LINKED TO THIS PUBLICATION OR THE UNICODE WEBSITE. -F. Waiver of Damages -1. In no event shall Unicode, Inc. or its licensors be liable for any special, incidental, indirect or consequential damages of any kind, or any damages whatsoever, whether or not Unicode, Inc. was advised of the possibility of the damage, including, without limitation, those resulting from the following: loss of use, data or profits, in connection with the use, modification or distribution of this information or its derivatives. -G. Trademarks & Logos -1. The Unicode Word Mark and the Unicode Logo are trademarks of Unicode, Inc. “The Unicode Consortium” and “Unicode, Inc.” are trade names of Unicode, Inc. Use of the information and materials found on this website indicates your acknowledgement of Unicode, Inc.’s exclusive worldwide rights in the Unicode Word Mark, the Unicode Logo, and the Unicode trade names. -3. The Unicode Consortium Name and Trademark Usage Policy (“Trademark Policy”) are incorporated herein by reference and you agree to abide by the provisions of the Trademark Policy, which may be changed from time to time in the sole discretion of Unicode, Inc. -4. All third party trademarks referenced herein are the property of their respective owners. -H. Miscellaneous -1. Jurisdiction and Venue. This website is operated from a location in the State of California, United States of America. Unicode, Inc. makes no representation that the materials are appropriate for use in other locations. If you access this website from other locations, you are responsible for compliance with local laws. This Agreement, all use of this website and any claims and damages resulting from use of this website are governed solely by the laws of the State of California without regard to any principles which would apply the laws of a different jurisdiction. The user agrees that any disputes regarding this website shall be resolved solely in the courts located in Santa Clara County, California. The user agrees said courts have personal jurisdiction and agree to waive any right to transfer the dispute to any other forum. -2. Modification by Unicode, Inc. Unicode, Inc. shall have the right to modify this Agreement at any time by posting it to this website. The user may not assign any part of this Agreement without Unicode, Inc.’s prior written consent. -3. Taxes. The user agrees to pay any taxes arising from access to this website or use of the information herein, except for those based on Unicode’s net income. -4. Severability. If any provision of this Agreement is declared invalid or unenforceable, the remaining provisions of this Agreement shall remain in effect. -5. Entire Agreement. This Agreement constitutes the entire agreement between the parties. - -EXHIBIT 1 -UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE - -See Terms of Use -for definitions of Unicode Inc.’s Data Files and Software. - -NOTICE TO USER: Carefully read the following legal agreement. -BY DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE INC.'S -DATA FILES ("DATA FILES"), AND/OR SOFTWARE ("SOFTWARE"), -YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE -TERMS AND CONDITIONS OF THIS AGREEMENT. -IF YOU DO NOT AGREE, DO NOT DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE -THE DATA FILES OR SOFTWARE. - -COPYRIGHT AND PERMISSION NOTICE - -Copyright © 1991-2022 Unicode, Inc. All rights reserved. -Distributed under the Terms of Use in https://www.unicode.org/copyright.html. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -http -http_parser -matcher -path -source_span -string_scanner - -Copyright 2014, the Dart project authors. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -icu - -# Copyright (c) 2006-2015 International Business Machines Corporation, - # Apple Inc., and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1995-2001, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1995-2002, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1995-2003, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1995-2005, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1995-2006, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1995-2007, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1995-2009, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1995-2010, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1995-2013, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1995-2014, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1995-2015, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1996-2008, International Business Machines Corporation * -and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1996-2012, International Business Machines Corporation -and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1996-2012, International Business Machines Corporation and -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1996-2013, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1996-2013, International Business Machines Corporation -and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1996-2014, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1996-2014, International Business Machines Corporation and -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1996-2014, International Business Machines Corporation and others. -All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1996-2015, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1996-2015, International Business Machines Corporation and -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1996-2015, International Business Machines Corporation and others. -All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1996-2016, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1996-2016, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1996-2016, International Business Machines Corporation and -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1997-2000, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1997-2003, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1997-2005, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1997-2005, International Business Machines Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1997-2006, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1997-2009,2014 International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1997-2010, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1997-2010, International Business Machines Corporation and * -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1997-2011, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1997-2011, International Business Machines Corporation and others. -All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1997-2011,2014-2015 International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1997-2012, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1997-2012, International Business Machines Corporation and * -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1997-2013, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1997-2013, International Business Machines * -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1997-2013, International Business Machines Corporation and -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1997-2013, International Business Machines Corporation and * -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1997-2013, International Business Machines Corporation and others. -All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1997-2014, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1997-2015, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1997-2015, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1997-2015, International Business Machines Corporation -and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1997-2015, International Business Machines Corporation and -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1997-2015, International Business Machines Corporation and * -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1997-2015, International Business Machines Corporation and others. -All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1997-2016, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1997-2016, International Business Machines Corporation and -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1997-2016, International Business Machines Corporation and * -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1997-2016, International Business Machines Corporation and others. -All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1998-2004, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1998-2005, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1998-2006, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1998-2008, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1998-2011, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1998-2012, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1998-2012, International Business Machines Corporation and -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1998-2014, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1998-2015, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1998-2016, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1998-2016, International Business Machines Corporation -and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1999-2001, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1999-2003, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1999-2004, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1999-2005, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1999-2006, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1999-2006,2013 IBM Corp. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1999-2007, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1999-2007, International Business Machines Corporation -and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1999-2008, International Business Machines Corporation -and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1999-2009, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1999-2010, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1999-2010, International Business Machines Corporation and others. -All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1999-2011, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1999-2011, International Business Machines Corporation -and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1999-2012, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1999-2012, International Business Machines Corporation and -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1999-2013, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1999-2013, International Business Machines Corporation and -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1999-2014 International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1999-2014 International Business Machines Corporation * -and others. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1999-2014, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1999-2014, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1999-2015 International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1999-2015, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1999-2015, International Business Machines Corporation and -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1999-2016 International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1999-2016 International Business Machines Corporation -and others. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1999-2016 International Business Machines Corporation * -and others. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1999-2016, International Business Machines - Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1999-2016, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1999-2016, International Business Machines Corporation - and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1999-2016, International Business Machines Corporation -and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1999-2016, International Business Machines Corporation -and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 1999-2016, International Business Machines Corporation and -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2000, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2000-2003, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2000-2004, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2000-2004, International Business Machines Corporation -and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2000-2006, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2000-2007, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2000-2008, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2000-2010, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2000-2011, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2000-2012, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2000-2012, International Business Machines Corporation and others. -All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2000-2013, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2000-2014, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2000-2015, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2000-2016, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2000-2016, International Business Machines Corporation and others. -All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2001, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2001-2003, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2001-2005, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2001-2005, International Business Machines Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2001-2006, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2001-2007, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2001-2008, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2001-2008,2010 IBM and others. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2001-2010, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2001-2011 IBM and others. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2001-2011, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2001-2011, International Business Machines * - Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2001-2011, International Business Machines Corporation -and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2001-2011, International Business Machines Corporation and * -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2001-2011, International Business Machines Corporation. * -All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2001-2011,2014 IBM and others. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2001-2012, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2001-2012, International Business Machines Corporation and * -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2001-2013, International Business Machines - Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2001-2014 IBM and others. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2001-2014 International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2001-2014, International Business Machines - Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2001-2014, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2001-2014, International Business Machines * - Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2001-2014, International Business Machines Corporation and * -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2001-2014, International Business Machines Corporation. -All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2001-2015 IBM and others. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2001-2015, International Business Machines - Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2001-2015, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2001-2016, International Business Machines - Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2001-2016, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2002-2003, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2002-2005, International Business Machines Corporation and * -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2002-2006, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2002-2008 International Business Machines Corporation * -and others. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2002-2008, International Business Machines Corporation and others. -All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2002-2010, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2002-2011 International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2002-2011, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2002-2011, International Business Machines Corporation and others. -All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2002-2012, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2002-2013, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2002-2013, International Business Machines Corporation -and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2002-2014 International Business Machines Corporation -and others. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2002-2014, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2002-2014, International Business Machines Corporation and -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2002-2015 International Business Machines Corporation -and others. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2002-2015, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2002-2015, International Business Machines Corporation and others. - All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2002-2015, International Business Machines Corporation and others. -All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2002-2016 International Business Machines Corporation -and others. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2002-2016 International Business Machines Corporation * -and others. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2002-2016 International Business Machines Corporation and others. -All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2002-2016, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2002-2016, International Business Machines Corporation -and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2002-2016, International Business Machines Corporation and others. - All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2002-2016, International Business Machines Corporation and others. -All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2003 - 2008, International Business Machines Corporation and * -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2003 - 2009, International Business Machines Corporation and * -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2003 - 2013, International Business Machines Corporation and -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2003 - 2013, International Business Machines Corporation and * -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2003-2003, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2003-2004, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2003-2006, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2003-2007, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2003-2008, International Business Machines Corporation -and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2003-2009, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2003-2009,2012,2016 International Business Machines Corporation and -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2003-2010, International Business Machines Corporation and others. -All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2003-2011, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2003-2012, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2003-2013, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2003-2013, International Business Machines Corporation -and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2003-2013, International Business Machines Corporation and -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2003-2013, International Business Machines Corporation and * -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2003-2014, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2003-2014, International Business Machines Corporation -and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2003-2015, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2003-2015, International Business Machines * - Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2003-2015, International Business Machines Corporation -and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2003-2016, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2003-2016, International Business Machines * - Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2003-2016, International Business Machines Corporation -and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2004 - 2008, International Business Machines Corporation and -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2004-2005, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2004-2006, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2004-2007, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2004-2010, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2004-2011, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2004-2012, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2004-2012, International Business Machines Corporation and -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2004-2014, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2004-2015, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2004-2015, International Business Machines Corporation and others. -All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2004-2016, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2005, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2005-2006, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2005-2008, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2005-2011, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2005-2012, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2005-2013, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2005-2014, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2005-2015, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2005-2016, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2006 International Business Machines Corporation * -and others. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2006, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2006-2012, International Business Machines Corporation and others. * -All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2006-2014, International Business Machines Corporation * -and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2006-2016, International Business Machines Corporation -and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2007, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2007-2008, International Business Machines Corporation and -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2007-2008, International Business Machines Corporation and * -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2007-2008, International Business Machines Corporation and * -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2007-2012, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2007-2012, International Business Machines Corporation and -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2007-2013, International Business Machines Corporation -and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2007-2013, International Business Machines Corporation and -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2007-2013, International Business Machines Corporation and * -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2007-2014, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2007-2014, International Business Machines Corporation -and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2007-2014, International Business Machines Corporation and -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2007-2015, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2007-2016, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2007-2016, International Business Machines Corporation and -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2007-2016, International Business Machines Corporation and * -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2008, Google, International Business Machines Corporation and * -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2008, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2008, International Business Machines Corporation and -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2008-2009, International Business Machines Corporation and -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2008-2011, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2008-2011, International Business Machines -Corporation, Google and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2008-2012, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2008-2012, International Business Machines Corporation * -and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2008-2013, International Business Machines Corporation -and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2008-2013, International Business Machines Corporation and -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2008-2014, Google, International Business Machines Corporation -and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2008-2014, Google, International Business Machines Corporation and -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2008-2015, Google, International Business Machines Corporation -and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2008-2015, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2008-2015, International Business Machines Corporation -and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2008-2015, International Business Machines Corporation and -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2008-2016, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2008-2016, International Business Machines Corporation -and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2008-2016, International Business Machines Corporation and -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2009 International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2009, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2009-2010 IBM Corporation and Others. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2009-2010, Google, International Business Machines Corporation and * -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2009-2010, International Business Machines Corporation and * -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2009-2011, International Business Machines - Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2009-2011, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2009-2011, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2009-2011, International Business Machines Corporation and -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2009-2012, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2009-2012, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2009-2012, International Business Machines Corporation and -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2009-2013, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2009-2013, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2009-2013, International Business Machines Corporation and * -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2009-2014 International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2009-2014, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2009-2014, International Business Machines Corporation and -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2009-2015, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2009-2015, International Business Machines Corporation and -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2009-2015, International Business Machines Corporation and * -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2009-2016, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2009-2016, International Business Machines Corporation and -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2009-2016, International Business Machines Corporation, * -Google, and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2009-2017, International Business Machines Corporation, * -Google, and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2010 , Yahoo! Inc. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2010, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2010-2011, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2010-2011, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2010-2012, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2010-2012, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2010-2012,2014, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2010-2012,2015 International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2010-2013, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2010-2014, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2010-2014, International Business Machines Corporation and -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2010-2014, International Business Machines Corporation and * -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2010-2014, International Business Machines Corporation and others. -All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2010-2015, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2010-2015, International Business Machines Corporation and -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2010-2016 International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2010-2016, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2010-2016, International Business Machines Corporation and -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2010-2016, International Business Machines Corporation and -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2011, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2011-2012, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2011-2012, International Business Machines Corporation and * -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2011-2013, Apple Inc. and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2011-2013, Apple Inc.; Unicode, Inc.; and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2011-2013, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2011-2014 International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2011-2014, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2011-2015, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2011-2015, International Business Machines Corporation and -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2011-2015, International Business Machines Corporation and * -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2011-2016, International Business Machines Corporation and -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2012 International Business Machines Corporation -and others. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2012,2014 International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2012-2014, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2012-2015, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2012-2016, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2013, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2013, International Business Machines Corporation -and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2013, International Business Machines Corporation and * -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2013, International Business Machines Corporation and others. -All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2013-2014, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2013-2014, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2013-2014, International Business Machines Corporation and * -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2013-2014, International Business Machines Corporation and others. -All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2013-2015, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2013-2015, International Business Machines Corporation and others. -All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2013-2016, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2014 International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2014 International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2014, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2014, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2014-2015, International Business Machines Corporation and -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2014-2016, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2014-2016, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2014-2016, International Business Machines Corporation and -others. -All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2014-2016, International Business Machines Corporation and -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2014-2016, International Business Machines Corporation and others. -All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2015, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2015, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2015, International Business Machines Corporation -and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2015, International Business Machines Corporation and -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2015-2016, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2015-2016, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2015-2016, International Business Machines Corporation and others. -All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2016 International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2016 and later: Unicode, Inc. and others. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2016, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2016, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (C) The Internet Society (2002). All Rights Reserved. - -This document and translations of it may be copied and furnished to -others, and derivative works that comment on or otherwise explain it -or assist in its implementation may be prepared, copied, published -and distributed, in whole or in part, without restriction of any -kind, provided that the above copyright notice and this paragraph are -included on all such copies and derivative works. However, this -document itself may not be modified in any way, such as by removing -the copyright notice or references to the Internet Society or other -Internet organizations, except as needed for the purpose of -developing Internet standards in which case the procedures for -copyrights defined in the Internet Standards process must be -followed, or as required to translate it into languages other than -English. - -The limited permissions granted above are perpetual and will not be -revoked by the Internet Society or its successors or assigns. - -This document and the information contained herein is provided on an -"AS IS" basis and THE INTERNET SOCIETY AND THE INTERNET ENGINEERING -TASK FORCE DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING -BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION -HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF -MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. --------------------------------------------------------------------------------- -icu - -Copyright (C) {1999-2001}, International Business Machines Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) 1996-2012, International Business Machines Corporation and -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) 1996-2014, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) 1996-2015, International Business Machines Corporation and -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) 1996-2015, International Business Machines Corporation and others. -All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) 1996-2016, International Business Machines Corporation - and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) 1996-2016, International Business Machines Corporation and -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) 1997-2011, International Business Machines Corporation and -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) 1997-2012, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) 1997-2012, International Business Machines Corporation and -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) 1997-2015, International Business Machines Corporation and -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) 1997-2016, International Business Machines Corporation -and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) 1999-2012, International Business Machines Corporation and -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) 1999-2016, International Business Machines Corporation and -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) 2000-2004 IBM, Inc. and Others. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) 2000-2005, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) 2000-2007, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) 2001-2005, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) 2001-2007, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) 2001-2010 International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) 2001-2011, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) 2001-2012, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) 2001-2012, International Business Machines Corporation -and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) 2001-2014, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) 2001-2015, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) 2001-2016, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) 2001-2016, International Business Machines Corporation and -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) 2002-2004, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) 2002-2005, International Business Machines Corporation -and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) 2002-2005, International Business Machines Corporation and -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) 2002-2006, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) 2002-2006, International Business Machines Corporation and -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) 2002-2007, International Business Machines Corporation -and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) 2002-2010, International Business Machines Corporation * -and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) 2002-2011, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) 2002-2011, International Business Machines Corporation -and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) 2002-2012, International Business Machines Corporation -and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) 2002-2012, International Business Machines Corporation and -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) 2002-2014, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) 2002-2014, International Business Machines Corporation -and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) 2002-2014, International Business Machines Corporation and -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) 2002-2015, International Business Machines Corporation and -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) 2002-2016 International Business Machines Corporation and -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) 2002-2016, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) 2003, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) 2003-2004, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) 2003-2008, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) 2003-2010 International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) 2003-2011, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) 2003-2013, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) 2003-2014, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) 2004, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) 2004-2006, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) 2004-2010, International Business Machines Corporation and -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) 2004-2014 International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) 2004-2014, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) 2004-2015, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) 2004-2015, International Business Machines Corporation -and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) 2004-2016, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) 2007-2012, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) 2007-2012, International Business Machines Corporation and -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) 2007-2013, International Business Machines Corporation and -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) 2007-2014, International Business Machines Corporation and -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) 2007-2016, International Business Machines Corporation and -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) 2008-2010, International Business Machines Corporation and -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) 2008-2011, International Business Machines Corporation and -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) 2008-2015, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) 2009, International Business Machines Corporation and -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) 2011-2012 International Business Machines Corporation -and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) 2014, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) 2014-2016, International Business Machines -Corporation and others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) 2015, International Business Machines Corporation and -others. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright (c) IBM Corporation, 2000-2010. All rights reserved. - -This software is made available under the terms of the -ICU License -- ICU 1.8.1 and later. --------------------------------------------------------------------------------- -icu - -Copyright (c) IBM Corporation, 2000-2011. All rights reserved. - -This software is made available under the terms of the -ICU License -- ICU 1.8.1 and later. --------------------------------------------------------------------------------- -icu - -Copyright (c) IBM Corporation, 2000-2012. All rights reserved. - -This software is made available under the terms of the -ICU License -- ICU 1.8.1 and later. --------------------------------------------------------------------------------- -icu - -Copyright (c) IBM Corporation, 2000-2014. All rights reserved. - -This software is made available under the terms of the -ICU License -- ICU 1.8.1 and later. --------------------------------------------------------------------------------- -icu - -Copyright (c) IBM Corporation, 2000-2016. All rights reserved. - -This software is made available under the terms of the -ICU License -- ICU 1.8.1 and later. --------------------------------------------------------------------------------- -icu - -Copyright 2001 and onwards Google Inc. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright 2004 and onwards Google Inc. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -Copyright 2007 Google Inc. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -icu - -UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE - -See Terms of Use -for definitions of Unicode Inc.’s Data Files and Software. - -NOTICE TO USER: Carefully read the following legal agreement. -BY DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE INC.'S -DATA FILES ("DATA FILES"), AND/OR SOFTWARE ("SOFTWARE"), -YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE -TERMS AND CONDITIONS OF THIS AGREEMENT. -IF YOU DO NOT AGREE, DO NOT DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE -THE DATA FILES OR SOFTWARE. - -COPYRIGHT AND PERMISSION NOTICE - -Copyright © 1991-2022 Unicode, Inc. All rights reserved. -Distributed under the Terms of Use in https://www.unicode.org/copyright.html. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. - -Third-Party Software Licenses - -This section contains third-party software notices and/or additional -terms for licensed third-party software components included within ICU -libraries. - -ICU License - ICU 1.8.1 to ICU 57.1 - -COPYRIGHT AND PERMISSION NOTICE - -Copyright (c) 1995-2016 International Business Machines Corporation and others -All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, and/or sell copies of the Software, and to permit persons -to whom the Software is furnished to do so, provided that the above -copyright notice(s) and this permission notice appear in all copies of -the Software and that both the above copyright notice(s) and this -permission notice appear in supporting documentation. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT -OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR -HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY -SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER -RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF -CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN -CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, use -or other dealings in this Software without prior written authorization -of the copyright holder. - -All trademarks and registered trademarks mentioned herein are the -property of their respective owners. - -Chinese/Japanese Word Break Dictionary Data (cjdict.txt) - -The Google Chrome software developed by Google is licensed under -the BSD license. Other software included in this distribution is -provided under other licenses, as set forth below. - -The BSD License -http://opensource.org/licenses/bsd-license.php -Copyright (C) 2006-2008, Google Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. -Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following -disclaimer in the documentation and/or other materials provided with -the distribution. -Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND -CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, -INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE -LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR -BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -The word list in cjdict.txt are generated by combining three word lists -listed below with further processing for compound word breaking. The -frequency is generated with an iterative training against Google web -corpora. - -* Libtabe (Chinese) - - https://sourceforge.net/project/?group_id=1519 - - Its license terms and conditions are shown below. - -* IPADIC (Japanese) - - http://chasen.aist-nara.ac.jp/chasen/distribution.html - - Its license terms and conditions are shown below. - -Copyright (c) 1999 TaBE Project. -Copyright (c) 1999 Pai-Hsiang Hsiao. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. -. Neither the name of the TaBE Project nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. - -Copyright (c) 1999 Computer Systems and Communication Lab, - Institute of Information Science, Academia - Sinica. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. -. Neither the name of the Computer Systems and Communication Lab - nor the names of its contributors may be used to endorse or - promote products derived from this software without specific - prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. - -Copyright 1996 Chih-Hao Tsai @ Beckman Institute, - University of Illinois -c-tsai4@uiuc.edu http://casper.beckman.uiuc.edu/~c-tsai4 - -Copyright 2000, 2001, 2002, 2003 Nara Institute of Science -and Technology. All Rights Reserved. - -Use, reproduction, and distribution of this software is permitted. -Any copy of this software, whether in its original form or modified, -must include both the above copyright notice and the following -paragraphs. - -Nara Institute of Science and Technology (NAIST), -the copyright holders, disclaims all warranties with regard to this -software, including all implied warranties of merchantability and -fitness, in no event shall NAIST be liable for -any special, indirect or consequential damages or any damages -whatsoever resulting from loss of use, data or profits, whether in an -action of contract, negligence or other tortuous action, arising out -of or in connection with the use or performance of this software. - -A large portion of the dictionary entries -originate from ICOT Free Software. The following conditions for ICOT -Free Software applies to the current dictionary as well. - -Each User may also freely distribute the Program, whether in its -original form or modified, to any third party or parties, PROVIDED -that the provisions of Section 3 ("NO WARRANTY") will ALWAYS appear -on, or be attached to, the Program, which is distributed substantially -in the same form as set out herein and that such intended -distribution, if actually made, will neither violate or otherwise -contravene any of the laws and regulations of the countries having -jurisdiction over the User or the intended distribution itself. - -NO WARRANTY - -The program was produced on an experimental basis in the course of the -research and development conducted during the project and is provided -to users as so produced on an experimental basis. Accordingly, the -program is provided without any warranty whatsoever, whether express, -implied, statutory or otherwise. The term "warranty" used herein -includes, but is not limited to, any warranty of the quality, -performance, merchantability and fitness for a particular purpose of -the program and the nonexistence of any infringement or violation of -any right of any third party. - -Each user of the program will agree and understand, and be deemed to -have agreed and understood, that there is no warranty whatsoever for -the program and, accordingly, the entire risk arising from or -otherwise connected with the program is assumed by the user. - -Therefore, neither ICOT, the copyright holder, or any other -organization that participated in or was otherwise related to the -development of the program and their respective officials, directors, -officers and other employees shall be held liable for any and all -damages, including, without limitation, general, special, incidental -and consequential damages, arising out of or otherwise in connection -with the use or inability to use the program or any product, material -or result produced or otherwise obtained by using the program, -regardless of whether they have been advised of, or otherwise had -knowledge of, the possibility of such damages at any time during the -project or thereafter. Each user will be deemed to have agreed to the -foregoing by his or her commencement of use of the program. The term -"use" as used herein includes, but is not limited to, the use, -modification, copying and distribution of the program and the -production of secondary products from the program. - -In the case where the program, whether in its original form or -modified, was distributed or delivered to or received by a user from -any person, organization or entity other than ICOT, unless it makes or -grants independently of ICOT any specific warranty to the user in -writing, such person, organization or entity, will also be exempted -from and not be held liable to the user for any such damages as noted -above as far as the program is concerned. - -Lao Word Break Dictionary Data (laodict.txt) - -Copyright (C) 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -Copyright (c) 2015 International Business Machines Corporation -and others. All Rights Reserved. - -Project: https://github.com/rober42539/lao-dictionary -Dictionary: https://github.com/rober42539/lao-dictionary/laodict.txt -License: https://github.com/rober42539/lao-dictionary/LICENSE.txt - (copied below) - -This file is derived from the above dictionary version of Nov 22, 2020 - -Copyright (C) 2013 Brian Eugene Wilson, Robert Martin Campbell. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -Redistributions of source code must retain the above copyright notice, this -list of conditions and the following disclaimer. Redistributions in binary -form must reproduce the above copyright notice, this list of conditions and -the following disclaimer in the documentation and/or other materials -provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, -INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. - -Burmese Word Break Dictionary Data (burmesedict.txt) - -Copyright (c) 2014 International Business Machines Corporation -and others. All Rights Reserved. - -This list is part of a project hosted at: - github.com/kanyawtech/myanmar-karen-word-lists - -Copyright (c) 2013, LeRoy Benjamin Sharon -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: Redistributions of source code must retain the above -copyright notice, this list of conditions and the following -disclaimer. Redistributions in binary form must reproduce the -above copyright notice, this list of conditions and the following -disclaimer in the documentation and/or other materials provided -with the distribution. - - Neither the name Myanmar Karen Word Lists, nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND -CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, -INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS -BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, -EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR -TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF -THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -SUCH DAMAGE. - -Google double-conversion - -Copyright 2006-2011, the V8 project authors. All rights reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -File: install-sh (only for ICU4C) - - -Copyright 1991 by the Massachusetts Institute of Technology - -Permission to use, copy, modify, distribute, and sell this software and its -documentation for any purpose is hereby granted without fee, provided that -the above copyright notice appear in all copies and that both that -copyright notice and this permission notice appear in supporting -documentation, and that the name of M.I.T. not be used in advertising or -publicity pertaining to distribution of the software without specific, -written prior permission. M.I.T. makes no representations about the -suitability of this software for any purpose. It is provided "as is" -without express or implied warranty. --------------------------------------------------------------------------------- -icu - -punycode.c 0.4.0 (2001-Nov-17-Sat) -http://www.cs.berkeley.edu/~amc/idn/ -Adam M. Costello -http://www.nicemice.net/amc/ - -Disclaimer and license - - Regarding this entire document or any portion of it (including - the pseudocode and C code), the author makes no guarantees and - is not responsible for any damage resulting from its use. The - author grants irrevocable permission to anyone to use, modify, - and distribute it in any way that does not diminish the rights - of anyone else to use, modify, and distribute it, provided that - redistributed derivative works do not contain misleading author or - version information. Derivative works need not be licensed under - similar terms. --------------------------------------------------------------------------------- -include - -Copyright (C) 2011 Nick Bruun -Copyright (C) 2013 Vlad Lazarenko -Copyright (C) 2014 Nicolas Pauss --------------------------------------------------------------------------------- -include - -Copyright (c) 2008-2009 Bjoern Hoehrmann - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. --------------------------------------------------------------------------------- -include - -Copyright (c) 2009 Florian Loitsch. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. --------------------------------------------------------------------------------- -include - -Copyright (c) 2011 - Nick Bruun. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. If you meet (any of) the author(s), you're encouraged to buy them a beer, - a drink or whatever is suited to the situation, given that you like the - software. -4. This notice may not be removed or altered from any source - distribution. --------------------------------------------------------------------------------- -include - -Copyright (c) 2013-2019 Niels Lohmann . - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. --------------------------------------------------------------------------------- -inja - -Copyright (c) 2018-2021 Berscheid - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. --------------------------------------------------------------------------------- -inja - -Copyright (c) 2018-2021 Lars Berscheid - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. --------------------------------------------------------------------------------- -js - -Copyright 2012, the Dart project authors. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -json - -Copyright (c) 2013-2022 Niels Lohmann - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. --------------------------------------------------------------------------------- -khronos - -Copyright (c) 2007-2012 The Khronos Group Inc. - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and/or associated documentation files (the -"Materials"), to deal in the Materials without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Materials, and to -permit persons to whom the Materials are furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Materials. - -THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. --------------------------------------------------------------------------------- -khronos - -Copyright (c) 2008-2009 The Khronos Group Inc. - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and/or associated documentation files (the -"Materials"), to deal in the Materials without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Materials, and to -permit persons to whom the Materials are furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Materials. - -THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. --------------------------------------------------------------------------------- -khronos - -Copyright (c) 2013-2014 The Khronos Group Inc. - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and/or associated documentation files (the -"Materials"), to deal in the Materials without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Materials, and to -permit persons to whom the Materials are furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Materials. - -THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. --------------------------------------------------------------------------------- -khronos - -Copyright (c) 2013-2016 The Khronos Group Inc. - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and/or associated documentation files (the -"Materials"), to deal in the Materials without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Materials, and to -permit persons to whom the Materials are furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Materials. - -THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. --------------------------------------------------------------------------------- -libXNVCtrl - -Copyright (c) 2008 NVIDIA, Corporation - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice (including the next -paragraph) shall be included in all copies or substantial portions of the -Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. --------------------------------------------------------------------------------- -libXNVCtrl - -Copyright (c) 2010 NVIDIA, Corporation - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice (including the next -paragraph) shall be included in all copies or substantial portions of the -Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. --------------------------------------------------------------------------------- -libcxx - -Copyright 2018 Ulf Adams -Copyright (c) Microsoft Corporation. All rights reserved. - -Boost Software License - Version 1.0 - August 17th, 2003 - -Permission is hereby granted, free of charge, to any person or organization -obtaining a copy of the software and accompanying documentation covered by -this license (the "Software") to use, reproduce, display, distribute, -execute, and transmit the Software, and to prepare derivative works of the -Software, and to permit third-parties to whom the Software is furnished to -do so, all subject to the following: - -The copyright notices in the Software and this entire statement, including -the above license grant, this restriction and the following disclaimer, -must be included in all copies of the Software, in whole or in part, and -all derivative works of the Software, unless such copies or derivative -works are solely in the form of machine-executable object code generated by -a source language processor. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -libcxx -libcxxabi - -Apache License -Version 2.0, January 2004 -http://www.apache.org/licenses/ - -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "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. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "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. - - "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. - - ---- LLVM Exceptions to the Apache 2.0 License ---- - -As an exception, if, as a result of your compiling your source code, portions -of this Software are embedded into an Object form of such source code, you -may redistribute such embedded portions in such Object form without complying -with the conditions of Sections 4(a), 4(b) and 4(d) of the License. - -In addition, if you combine or link compiled forms of this Software with -software that is licensed under the GPLv2 ("Combined Software") and if a -court of competent jurisdiction determines that the patent provision (Section -3), the indemnity provision (Section 9) or other Section of the License -conflicts with the conditions of the GPLv2, you may retroactively and -prospectively choose to deem waived or otherwise exclude such Section(s) of -the License, but only in their entirety and only with respect to the Combined -Software. --------------------------------------------------------------------------------- -libcxx -libcxxabi - -Copyright (c) 2009-2014 by the contributors listed in CREDITS.TXT - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. --------------------------------------------------------------------------------- -libcxx -libcxxabi - -Copyright (c) 2009-2019 by the contributors listed in CREDITS.TXT - -All rights reserved. - -Developed by: - - LLVM Team - - University of Illinois at Urbana-Champaign - - http://llvm.org - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal with -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies -of the Software, and to permit persons to whom the Software is furnished to do -so, subject to the following conditions: - - * Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimers. - - * Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimers in the - documentation and/or other materials provided with the distribution. - - * Neither the names of the LLVM Team, University of Illinois at - Urbana-Champaign, nor the names of its contributors may be used to - endorse or promote products derived from this Software without specific - prior written permission. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE -SOFTWARE. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright (C) 1988 by Jef Poskanzer. - -Permission to use, copy, modify, and distribute this software and its -documentation for any purpose and without fee is hereby granted, provided -that the above copyright notice appear in all copies and that both that -copyright notice and this permission notice appear in supporting -documentation. This software is provided "as is" without express or -implied warranty. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright (C) 1989 by Jef Poskanzer. -Permission to use, copy, modify, and distribute this software and its -documentation for any purpose and without fee is hereby granted, provided -that the above copyright notice appear in all copies and that both that -copyright notice and this permission notice appear in supporting -documentation. This software is provided "as is" without express or -implied warranty. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright (C) 2009-2011, Nokia Corporation and/or its subsidiary(-ies). -All Rights Reserved. -Author: Siarhei Siamashka -Copyright (C) 2013-2014, Linaro Limited. All Rights Reserved. -Author: Ragesh Radhakrishnan -Copyright (C) 2014-2016, D. R. Commander. All Rights Reserved. -Copyright (C) 2015-2016, Matthieu Darbois. All Rights Reserved. -Copyright (C) 2016, Siarhei Siamashka. All Rights Reserved. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright (C) 2009-2011, Nokia Corporation and/or its subsidiary(-ies). -All Rights Reserved. -Author: Siarhei Siamashka -Copyright (C) 2014, Siarhei Siamashka. All Rights Reserved. -Copyright (C) 2014, Linaro Limited. All Rights Reserved. -Copyright (C) 2015, D. R. Commander. All Rights Reserved. -Copyright (C) 2015-2016, Matthieu Darbois. All Rights Reserved. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright (C) 2013, MIPS Technologies, Inc., California. -All Rights Reserved. -Authors: Teodora Novkovic (teodora.novkovic@imgtec.com) - Darko Laus (darko.laus@imgtec.com) -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright (C) 2013-2014, MIPS Technologies, Inc., California. -All Rights Reserved. -Authors: Teodora Novkovic (teodora.novkovic@imgtec.com) - Darko Laus (darko.laus@imgtec.com) -Copyright (C) 2015, D. R. Commander. All Rights Reserved. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright (C) 2014, D. R. Commander. All Rights Reserved. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright (C) 2014-2015, D. R. Commander. All Rights Reserved. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright (C) 2014-2015, D. R. Commander. All Rights Reserved. -Copyright (C) 2014, Jay Foad. All Rights Reserved. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright (C) 2015, D. R. Commander. All Rights Reserved. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright (C)2009-2014 D. R. Commander. All Rights Reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -- Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. -- Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. -- Neither the name of the libjpeg-turbo Project nor the names of its - contributors may be used to endorse or promote products derived from this - software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS", -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE -LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright (C)2009-2015 D. R. Commander. All Rights Reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -- Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. -- Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. -- Neither the name of the libjpeg-turbo Project nor the names of its - contributors may be used to endorse or promote products derived from this - software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS", -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE -LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright (C)2009-2016 D. R. Commander. All Rights Reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -- Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. -- Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. -- Neither the name of the libjpeg-turbo Project nor the names of its - contributors may be used to endorse or promote products derived from this - software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS", -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE -LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright (C)2011 D. R. Commander. All Rights Reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -- Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. -- Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. -- Neither the name of the libjpeg-turbo Project nor the names of its - contributors may be used to endorse or promote products derived from this - software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS", -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE -LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright (C)2011, 2015 D. R. Commander. All Rights Reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -- Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. -- Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. -- Neither the name of the libjpeg-turbo Project nor the names of its - contributors may be used to endorse or promote products derived from this - software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS", -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE -LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright (C)2011-2016 D. R. Commander. All Rights Reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -- Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. -- Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. -- Neither the name of the libjpeg-turbo Project nor the names of its - contributors may be used to endorse or promote products derived from this - software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS", -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE -LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright 2009 Pierre Ossman for Cendio AB -Copyright (C) 2010, D. R. Commander. - -Based on the x86 SIMD extension for IJG JPEG library - version 1.02 - -Copyright (C) 1999-2006, MIYASAKA Masaru. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -libjpeg-turbo - -We are also required to state that - "The Graphics Interchange Format(c) is the Copyright property of - CompuServe Incorporated. GIF(sm) is a Service Mark property of - CompuServe Incorporated." --------------------------------------------------------------------------------- -libjpeg-turbo - -libjpeg-turbo Licenses -====================== - -libjpeg-turbo is covered by three compatible BSD-style open source licenses: - -- The IJG (Independent JPEG Group) License, which is listed in - [README.ijg](README.ijg) - - This license applies to the libjpeg API library and associated programs - (any code inherited from libjpeg, and any modifications to that code.) - -- The Modified (3-clause) BSD License, which is listed in - [turbojpeg.c](turbojpeg.c) - - This license covers the TurboJPEG API library and associated programs. - -- The zlib License, which is listed in [simd/jsimdext.inc](simd/jsimdext.inc) - - This license is a subset of the other two, and it covers the libjpeg-turbo - SIMD extensions. - - -Complying with the libjpeg-turbo Licenses -========================================= - -This section provides a roll-up of the libjpeg-turbo licensing terms, to the -best of our understanding. - -1. If you are distributing a modified version of the libjpeg-turbo source, - then: - - 1. You cannot alter or remove any existing copyright or license notices - from the source. - - **Origin** - - Clause 1 of the IJG License - - Clause 1 of the Modified BSD License - - Clauses 1 and 3 of the zlib License - - 2. You must add your own copyright notice to the header of each source - file you modified, so others can tell that you modified that file (if - there is not an existing copyright header in that file, then you can - simply add a notice stating that you modified the file.) - - **Origin** - - Clause 1 of the IJG License - - Clause 2 of the zlib License - - 3. You must include the IJG README file, and you must not alter any of the - copyright or license text in that file. - - **Origin** - - Clause 1 of the IJG License - -2. If you are distributing only libjpeg-turbo binaries without the source, or - if you are distributing an application that statically links with - libjpeg-turbo, then: - - 1. Your product documentation must include a message stating: - - This software is based in part on the work of the Independent JPEG - Group. - - **Origin** - - Clause 2 of the IJG license - - 2. If your binary distribution includes or uses the TurboJPEG API, then - your product documentation must include the text of the Modified BSD - License. - - **Origin** - - Clause 2 of the Modified BSD License - -3. You cannot use the name of the IJG or The libjpeg-turbo Project or the - contributors thereof in advertising, publicity, etc. - - **Origin** - - IJG License - - Clause 3 of the Modified BSD License - -4. The IJG and The libjpeg-turbo Project do not warrant libjpeg-turbo to be - free of defects, nor do we accept any liability for undesirable - consequences resulting from your use of the software. - - **Origin** - - IJG License - - Modified BSD License - - zlib License --------------------------------------------------------------------------------- -libjpeg-turbo - -libjpeg-turbo note: This file has been modified by The libjpeg-turbo Project -to include only information relevant to libjpeg-turbo, to wordsmith certain -sections, and to remove impolitic language that existed in the libjpeg v8 -README. It is included only for reference. Please see README.md for -information specific to libjpeg-turbo. - - -The Independent JPEG Group's JPEG software -========================================== - -This distribution contains a release of the Independent JPEG Group's free JPEG -software. You are welcome to redistribute this software and to use it for any -purpose, subject to the conditions under LEGAL ISSUES, below. - -This software is the work of Tom Lane, Guido Vollbeding, Philip Gladstone, -Bill Allombert, Jim Boucher, Lee Crocker, Bob Friesenhahn, Ben Jackson, -Julian Minguillon, Luis Ortiz, George Phillips, Davide Rossi, Ge' Weijers, -and other members of the Independent JPEG Group. - -IJG is not affiliated with the ISO/IEC JTC1/SC29/WG1 standards committee -(also known as JPEG, together with ITU-T SG16). - - -DOCUMENTATION ROADMAP -===================== - -This file contains the following sections: - -OVERVIEW General description of JPEG and the IJG software. -LEGAL ISSUES Copyright, lack of warranty, terms of distribution. -REFERENCES Where to learn more about JPEG. -ARCHIVE LOCATIONS Where to find newer versions of this software. -FILE FORMAT WARS Software *not* to get. -TO DO Plans for future IJG releases. - -Other documentation files in the distribution are: - -User documentation: - usage.txt Usage instructions for cjpeg, djpeg, jpegtran, - rdjpgcom, and wrjpgcom. - *.1 Unix-style man pages for programs (same info as usage.txt). - wizard.txt Advanced usage instructions for JPEG wizards only. - change.log Version-to-version change highlights. -Programmer and internal documentation: - libjpeg.txt How to use the JPEG library in your own programs. - example.c Sample code for calling the JPEG library. - structure.txt Overview of the JPEG library's internal structure. - coderules.txt Coding style rules --- please read if you contribute code. - -Please read at least usage.txt. Some information can also be found in the JPEG -FAQ (Frequently Asked Questions) article. See ARCHIVE LOCATIONS below to find -out where to obtain the FAQ article. - -If you want to understand how the JPEG code works, we suggest reading one or -more of the REFERENCES, then looking at the documentation files (in roughly -the order listed) before diving into the code. - - -OVERVIEW -======== - -This package contains C software to implement JPEG image encoding, decoding, -and transcoding. JPEG (pronounced "jay-peg") is a standardized compression -method for full-color and grayscale images. JPEG's strong suit is compressing -photographic images or other types of images that have smooth color and -brightness transitions between neighboring pixels. Images with sharp lines or -other abrupt features may not compress well with JPEG, and a higher JPEG -quality may have to be used to avoid visible compression artifacts with such -images. - -JPEG is lossy, meaning that the output pixels are not necessarily identical to -the input pixels. However, on photographic content and other "smooth" images, -very good compression ratios can be obtained with no visible compression -artifacts, and extremely high compression ratios are possible if you are -willing to sacrifice image quality (by reducing the "quality" setting in the -compressor.) - -This software implements JPEG baseline, extended-sequential, and progressive -compression processes. Provision is made for supporting all variants of these -processes, although some uncommon parameter settings aren't implemented yet. -We have made no provision for supporting the hierarchical or lossless -processes defined in the standard. - -We provide a set of library routines for reading and writing JPEG image files, -plus two sample applications "cjpeg" and "djpeg", which use the library to -perform conversion between JPEG and some other popular image file formats. -The library is intended to be reused in other applications. - -In order to support file conversion and viewing software, we have included -considerable functionality beyond the bare JPEG coding/decoding capability; -for example, the color quantization modules are not strictly part of JPEG -decoding, but they are essential for output to colormapped file formats or -colormapped displays. These extra functions can be compiled out of the -library if not required for a particular application. - -We have also included "jpegtran", a utility for lossless transcoding between -different JPEG processes, and "rdjpgcom" and "wrjpgcom", two simple -applications for inserting and extracting textual comments in JFIF files. - -The emphasis in designing this software has been on achieving portability and -flexibility, while also making it fast enough to be useful. In particular, -the software is not intended to be read as a tutorial on JPEG. (See the -REFERENCES section for introductory material.) Rather, it is intended to -be reliable, portable, industrial-strength code. We do not claim to have -achieved that goal in every aspect of the software, but we strive for it. - -We welcome the use of this software as a component of commercial products. -No royalty is required, but we do ask for an acknowledgement in product -documentation, as described under LEGAL ISSUES. - - -LEGAL ISSUES -============ - -In plain English: - -1. We don't promise that this software works. (But if you find any bugs, - please let us know!) -2. You can use this software for whatever you want. You don't have to pay us. -3. You may not pretend that you wrote this software. If you use it in a - program, you must acknowledge somewhere in your documentation that - you've used the IJG code. - -In legalese: - -The authors make NO WARRANTY or representation, either express or implied, -with respect to this software, its quality, accuracy, merchantability, or -fitness for a particular purpose. This software is provided "AS IS", and you, -its user, assume the entire risk as to its quality and accuracy. - -This software is copyright (C) 1991-2016, Thomas G. Lane, Guido Vollbeding. -All Rights Reserved except as specified below. - -Permission is hereby granted to use, copy, modify, and distribute this -software (or portions thereof) for any purpose, without fee, subject to these -conditions: -(1) If any part of the source code for this software is distributed, then this -README file must be included, with this copyright and no-warranty notice -unaltered; and any additions, deletions, or changes to the original files -must be clearly indicated in accompanying documentation. -(2) If only executable code is distributed, then the accompanying -documentation must state that "this software is based in part on the work of -the Independent JPEG Group". -(3) Permission for use of this software is granted only if the user accepts -full responsibility for any undesirable consequences; the authors accept -NO LIABILITY for damages of any kind. - -These conditions apply to any software derived from or based on the IJG code, -not just to the unmodified library. If you use our work, you ought to -acknowledge us. - -Permission is NOT granted for the use of any IJG author's name or company name -in advertising or publicity relating to this software or products derived from -it. This software may be referred to only as "the Independent JPEG Group's -software". - -We specifically permit and encourage the use of this software as the basis of -commercial products, provided that all warranty or liability claims are -assumed by the product vendor. - - -The Unix configuration script "configure" was produced with GNU Autoconf. -It is copyright by the Free Software Foundation but is freely distributable. -The same holds for its supporting scripts (config.guess, config.sub, -ltmain.sh). Another support script, install-sh, is copyright by X Consortium -but is also freely distributable. - -The IJG distribution formerly included code to read and write GIF files. -To avoid entanglement with the Unisys LZW patent (now expired), GIF reading -support has been removed altogether, and the GIF writer has been simplified -to produce "uncompressed GIFs". This technique does not use the LZW -algorithm; the resulting GIF files are larger than usual, but are readable -by all standard GIF decoders. - -We are required to state that - "The Graphics Interchange Format(c) is the Copyright property of - CompuServe Incorporated. GIF(sm) is a Service Mark property of - CompuServe Incorporated." - - -REFERENCES -========== - -We recommend reading one or more of these references before trying to -understand the innards of the JPEG software. - -The best short technical introduction to the JPEG compression algorithm is - Wallace, Gregory K. "The JPEG Still Picture Compression Standard", - Communications of the ACM, April 1991 (vol. 34 no. 4), pp. 30-44. -(Adjacent articles in that issue discuss MPEG motion picture compression, -applications of JPEG, and related topics.) If you don't have the CACM issue -handy, a PDF file containing a revised version of Wallace's article is -available at http://www.ijg.org/files/Wallace.JPEG.pdf. The file (actually -a preprint for an article that appeared in IEEE Trans. Consumer Electronics) -omits the sample images that appeared in CACM, but it includes corrections -and some added material. Note: the Wallace article is copyright ACM and IEEE, -and it may not be used for commercial purposes. - -A somewhat less technical, more leisurely introduction to JPEG can be found in -"The Data Compression Book" by Mark Nelson and Jean-loup Gailly, published by -M&T Books (New York), 2nd ed. 1996, ISBN 1-55851-434-1. This book provides -good explanations and example C code for a multitude of compression methods -including JPEG. It is an excellent source if you are comfortable reading C -code but don't know much about data compression in general. The book's JPEG -sample code is far from industrial-strength, but when you are ready to look -at a full implementation, you've got one here... - -The best currently available description of JPEG is the textbook "JPEG Still -Image Data Compression Standard" by William B. Pennebaker and Joan L. -Mitchell, published by Van Nostrand Reinhold, 1993, ISBN 0-442-01272-1. -Price US$59.95, 638 pp. The book includes the complete text of the ISO JPEG -standards (DIS 10918-1 and draft DIS 10918-2). - -The original JPEG standard is divided into two parts, Part 1 being the actual -specification, while Part 2 covers compliance testing methods. Part 1 is -titled "Digital Compression and Coding of Continuous-tone Still Images, -Part 1: Requirements and guidelines" and has document numbers ISO/IEC IS -10918-1, ITU-T T.81. Part 2 is titled "Digital Compression and Coding of -Continuous-tone Still Images, Part 2: Compliance testing" and has document -numbers ISO/IEC IS 10918-2, ITU-T T.83. - -The JPEG standard does not specify all details of an interchangeable file -format. For the omitted details we follow the "JFIF" conventions, revision -1.02. JFIF 1.02 has been adopted as an Ecma International Technical Report -and thus received a formal publication status. It is available as a free -download in PDF format from -http://www.ecma-international.org/publications/techreports/E-TR-098.htm. -A PostScript version of the JFIF document is available at -http://www.ijg.org/files/jfif.ps.gz. There is also a plain text version at -http://www.ijg.org/files/jfif.txt.gz, but it is missing the figures. - -The TIFF 6.0 file format specification can be obtained by FTP from -ftp://ftp.sgi.com/graphics/tiff/TIFF6.ps.gz. The JPEG incorporation scheme -found in the TIFF 6.0 spec of 3-June-92 has a number of serious problems. -IJG does not recommend use of the TIFF 6.0 design (TIFF Compression tag 6). -Instead, we recommend the JPEG design proposed by TIFF Technical Note #2 -(Compression tag 7). Copies of this Note can be obtained from -http://www.ijg.org/files/. It is expected that the next revision -of the TIFF spec will replace the 6.0 JPEG design with the Note's design. -Although IJG's own code does not support TIFF/JPEG, the free libtiff library -uses our library to implement TIFF/JPEG per the Note. - - -ARCHIVE LOCATIONS -================= - -The "official" archive site for this software is www.ijg.org. -The most recent released version can always be found there in -directory "files". - -The JPEG FAQ (Frequently Asked Questions) article is a source of some -general information about JPEG. -It is available on the World Wide Web at http://www.faqs.org/faqs/jpeg-faq/ -and other news.answers archive sites, including the official news.answers -archive at rtfm.mit.edu: ftp://rtfm.mit.edu/pub/usenet/news.answers/jpeg-faq/. -If you don't have Web or FTP access, send e-mail to mail-server@rtfm.mit.edu -with body - send usenet/news.answers/jpeg-faq/part1 - send usenet/news.answers/jpeg-faq/part2 - - -FILE FORMAT WARS -================ - -The ISO/IEC JTC1/SC29/WG1 standards committee (also known as JPEG, together -with ITU-T SG16) currently promotes different formats containing the name -"JPEG" which are incompatible with original DCT-based JPEG. IJG therefore does -not support these formats (see REFERENCES). Indeed, one of the original -reasons for developing this free software was to help force convergence on -common, interoperable format standards for JPEG files. -Don't use an incompatible file format! -(In any case, our decoder will remain capable of reading existing JPEG -image files indefinitely.) - - -TO DO -===== - -Please send bug reports, offers of help, etc. to jpeg-info@jpegclub.org. --------------------------------------------------------------------------------- -libmicrohttpd -skia - -Copyright (c) 2011 Google Inc. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -libpng - -COPYRIGHT NOTICE, DISCLAIMER, and LICENSE -========================================= - -PNG Reference Library License version 2 ---------------------------------------- - -* Copyright (c) 1995-2019 The PNG Reference Library Authors. -* Copyright (c) 2018-2019 Cosmin Truta. -* Copyright (c) 2000-2002, 2004, 2006-2018 Glenn Randers-Pehrson. -* Copyright (c) 1996-1997 Andreas Dilger. -* Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc. - -The software is supplied "as is", without warranty of any kind, -express or implied, including, without limitation, the warranties -of merchantability, fitness for a particular purpose, title, and -non-infringement. In no event shall the Copyright owners, or -anyone distributing the software, be liable for any damages or -other liability, whether in contract, tort or otherwise, arising -from, out of, or in connection with the software, or the use or -other dealings in the software, even if advised of the possibility -of such damage. - -Permission is hereby granted to use, copy, modify, and distribute -this software, or portions hereof, for any purpose, without fee, -subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you - must not claim that you wrote the original software. If you - use this software in a product, an acknowledgment in the product - documentation would be appreciated, but is not required. - -2. Altered source versions must be plainly marked as such, and must - not be misrepresented as being the original software. - -3. This Copyright notice may not be removed or altered from any - source or altered source distribution. - - -PNG Reference Library License version 1 (for libpng 0.5 through 1.6.35) ------------------------------------------------------------------------ - -libpng versions 1.0.7, July 1, 2000, through 1.6.35, July 15, 2018 are -Copyright (c) 2000-2002, 2004, 2006-2018 Glenn Randers-Pehrson, are -derived from libpng-1.0.6, and are distributed according to the same -disclaimer and license as libpng-1.0.6 with the following individuals -added to the list of Contributing Authors: - - Simon-Pierre Cadieux - Eric S. Raymond - Mans Rullgard - Cosmin Truta - Gilles Vollant - James Yu - Mandar Sahastrabuddhe - Google Inc. - Vadim Barkov - -and with the following additions to the disclaimer: - - There is no warranty against interference with your enjoyment of - the library or against infringement. There is no warranty that our - efforts or the library will fulfill any of your particular purposes - or needs. This library is provided with all faults, and the entire - risk of satisfactory quality, performance, accuracy, and effort is - with the user. - -Some files in the "contrib" directory and some configure-generated -files that are distributed with libpng have other copyright owners, and -are released under other open source licenses. - -libpng versions 0.97, January 1998, through 1.0.6, March 20, 2000, are -Copyright (c) 1998-2000 Glenn Randers-Pehrson, are derived from -libpng-0.96, and are distributed according to the same disclaimer and -license as libpng-0.96, with the following individuals added to the -list of Contributing Authors: - - Tom Lane - Glenn Randers-Pehrson - Willem van Schaik - -libpng versions 0.89, June 1996, through 0.96, May 1997, are -Copyright (c) 1996-1997 Andreas Dilger, are derived from libpng-0.88, -and are distributed according to the same disclaimer and license as -libpng-0.88, with the following individuals added to the list of -Contributing Authors: - - John Bowler - Kevin Bracey - Sam Bushell - Magnus Holmgren - Greg Roelofs - Tom Tanner - -Some files in the "scripts" directory have other copyright owners, -but are released under this license. - -libpng versions 0.5, May 1995, through 0.88, January 1996, are -Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc. - -For the purposes of this copyright and license, "Contributing Authors" -is defined as the following set of individuals: - - Andreas Dilger - Dave Martindale - Guy Eric Schalnat - Paul Schmidt - Tim Wegner - -The PNG Reference Library is supplied "AS IS". The Contributing -Authors and Group 42, Inc. disclaim all warranties, expressed or -implied, including, without limitation, the warranties of -merchantability and of fitness for any purpose. The Contributing -Authors and Group 42, Inc. assume no liability for direct, indirect, -incidental, special, exemplary, or consequential damages, which may -result from the use of the PNG Reference Library, even if advised of -the possibility of such damage. - -Permission is hereby granted to use, copy, modify, and distribute this -source code, or portions hereof, for any purpose, without fee, subject -to the following restrictions: - -1. The origin of this source code must not be misrepresented. - -2. Altered versions must be plainly marked as such and must not - be misrepresented as being the original source. - -3. This Copyright notice may not be removed or altered from any - source or altered source distribution. - -The Contributing Authors and Group 42, Inc. specifically permit, -without fee, and encourage the use of this source code as a component -to supporting the PNG file format in commercial products. If you use -this source code in a product, acknowledgment is not required but would -be appreciated. --------------------------------------------------------------------------------- -libtess2 - -Copyright (C) [dates of first publication] Silicon Graphics, Inc. -All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies -of the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice including the dates of first publication and either this -permission notice or a reference to http://oss.sgi.com/projects/FreeB/ shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, -INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A -PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL SILICON GRAPHICS, INC. -BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE -OR OTHER DEALINGS IN THE SOFTWARE. - -Except as contained in this notice, the name of Silicon Graphics, Inc. shall not -be used in advertising or otherwise to promote the sale, use or other dealings in -this Software without prior written authorization from Silicon Graphics, Inc. --------------------------------------------------------------------------------- -libwebp - -Copyright (c) 2010, Google Inc. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of Google nor the names of its contributors may - be used to endorse or promote products derived from this software - without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -libwebp - -Copyright 2010 Google Inc. All Rights Reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of Google nor the names of its contributors may - be used to endorse or promote products derived from this software - without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -libwebp - -Copyright 2011 Google Inc. All Rights Reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of Google nor the names of its contributors may - be used to endorse or promote products derived from this software - without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -libwebp - -Copyright 2012 Google Inc. All Rights Reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of Google nor the names of its contributors may - be used to endorse or promote products derived from this software - without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -libwebp - -Copyright 2013 Google Inc. All Rights Reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of Google nor the names of its contributors may - be used to endorse or promote products derived from this software - without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -libwebp - -Copyright 2014 Google Inc. All Rights Reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of Google nor the names of its contributors may - be used to endorse or promote products derived from this software - without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -libwebp - -Copyright 2015 Google Inc. All Rights Reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of Google nor the names of its contributors may - be used to endorse or promote products derived from this software - without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -libwebp - -Copyright 2016 Google Inc. All Rights Reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of Google nor the names of its contributors may - be used to endorse or promote products derived from this software - without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -libwebp - -Copyright 2017 Google Inc. All Rights Reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of Google nor the names of its contributors may - be used to endorse or promote products derived from this software - without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -libwebp - -Copyright 2018 Google Inc. All Rights Reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of Google nor the names of its contributors may - be used to endorse or promote products derived from this software - without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -lints - -Copyright 2021, the Dart project authors. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -markdown - -Copyright 2012, the Dart project authors. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -nested -provider - -MIT License - -Copyright (c) 2019 Remi Rousselet - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. --------------------------------------------------------------------------------- -perfetto - -Apache License -Version 2.0, January 2004 -http://www.apache.org/licenses/ - -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "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. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "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. - - "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 - -Copyright (c) 2017, The Android Open Source Project - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. - -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. --------------------------------------------------------------------------------- -platform_detect - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "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. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "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. - - "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 2017 Workiva Inc. - - 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. - --------------------------------------------------------------------------------- -rapidjson - -Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip-> All rights reserved-> - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -rapidjson - -Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -rapidjson - -Copyright (c) 2006-2013 Alexander Chemeris - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - - 1. Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - 3. Neither the name of the product nor the names of its contributors may - be used to endorse or promote products derived from this software - without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED -WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO -EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; -OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, -WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR -OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF -ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -rapidjson - -The above software in this distribution may have been modified by -THL A29 Limited ("Tencent Modifications"). -All Tencent Modifications are Copyright (C) 2015 THL A29 Limited. --------------------------------------------------------------------------------- -root_certificates - -Mozilla Public License Version 2.0 -================================== - -1. Definitions --------------- - -1.1. "Contributor" - means each individual or legal entity that creates, contributes to - the creation of, or owns Covered Software. - -1.2. "Contributor Version" - means the combination of the Contributions of others (if any) used - by a Contributor and that particular Contributor's Contribution. - -1.3. "Contribution" - means Covered Software of a particular Contributor. - -1.4. "Covered Software" - means Source Code Form to which the initial Contributor has attached - the notice in Exhibit A, the Executable Form of such Source Code - Form, and Modifications of such Source Code Form, in each case - including portions thereof. - -1.5. "Incompatible With Secondary Licenses" - means - - (a) that the initial Contributor has attached the notice described - in Exhibit B to the Covered Software; or - - (b) that the Covered Software was made available under the terms of - version 1.1 or earlier of the License, but not also under the - terms of a Secondary License. - -1.6. "Executable Form" - means any form of the work other than Source Code Form. - -1.7. "Larger Work" - means a work that combines Covered Software with other material, in - a separate file or files, that is not Covered Software. - -1.8. "License" - means this document. - -1.9. "Licensable" - means having the right to grant, to the maximum extent possible, - whether at the time of the initial grant or subsequently, any and - all of the rights conveyed by this License. - -1.10. "Modifications" - means any of the following: - - (a) any file in Source Code Form that results from an addition to, - deletion from, or modification of the contents of Covered - Software; or - - (b) any new file in Source Code Form that contains any Covered - Software. - -1.11. "Patent Claims" of a Contributor - means any patent claim(s), including without limitation, method, - process, and apparatus claims, in any patent Licensable by such - Contributor that would be infringed, but for the grant of the - License, by the making, using, selling, offering for sale, having - made, import, or transfer of either its Contributions or its - Contributor Version. - -1.12. "Secondary License" - means either the GNU General Public License, Version 2.0, the GNU - Lesser General Public License, Version 2.1, the GNU Affero General - Public License, Version 3.0, or any later versions of those - licenses. - -1.13. "Source Code Form" - means the form of the work preferred for making modifications. - -1.14. "You" (or "Your") - means an individual or a legal entity exercising rights under this - License. For legal entities, "You" includes any entity that - controls, is controlled by, or is under common control with You. For - purposes of this definition, "control" means (a) the power, direct - or indirect, to cause the direction or management of such entity, - whether by contract or otherwise, or (b) ownership of more than - fifty percent (50%) of the outstanding shares or beneficial - ownership of such entity. - -2. License Grants and Conditions --------------------------------- - -2.1. Grants - -Each Contributor hereby grants You a world-wide, royalty-free, -non-exclusive license: - -(a) under intellectual property rights (other than patent or trademark) - Licensable by such Contributor to use, reproduce, make available, - modify, display, perform, distribute, and otherwise exploit its - Contributions, either on an unmodified basis, with Modifications, or - as part of a Larger Work; and - -(b) under Patent Claims of such Contributor to make, use, sell, offer - for sale, have made, import, and otherwise transfer either its - Contributions or its Contributor Version. - -2.2. Effective Date - -The licenses granted in Section 2.1 with respect to any Contribution -become effective for each Contribution on the date the Contributor first -distributes such Contribution. - -2.3. Limitations on Grant Scope - -The licenses granted in this Section 2 are the only rights granted under -this License. No additional rights or licenses will be implied from the -distribution or licensing of Covered Software under this License. -Notwithstanding Section 2.1(b) above, no patent license is granted by a -Contributor: - -(a) for any code that a Contributor has removed from Covered Software; - or - -(b) for infringements caused by: (i) Your and any other third party's - modifications of Covered Software, or (ii) the combination of its - Contributions with other software (except as part of its Contributor - Version); or - -(c) under Patent Claims infringed by Covered Software in the absence of - its Contributions. - -This License does not grant any rights in the trademarks, service marks, -or logos of any Contributor (except as may be necessary to comply with -the notice requirements in Section 3.4). - -2.4. Subsequent Licenses - -No Contributor makes additional grants as a result of Your choice to -distribute the Covered Software under a subsequent version of this -License (see Section 10.2) or under the terms of a Secondary License (if -permitted under the terms of Section 3.3). - -2.5. Representation - -Each Contributor represents that the Contributor believes its -Contributions are its original creation(s) or it has sufficient rights -to grant the rights to its Contributions conveyed by this License. - -2.6. Fair Use - -This License is not intended to limit any rights You have under -applicable copyright doctrines of fair use, fair dealing, or other -equivalents. - -2.7. Conditions - -Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted -in Section 2.1. - -3. Responsibilities -------------------- - -3.1. Distribution of Source Form - -All distribution of Covered Software in Source Code Form, including any -Modifications that You create or to which You contribute, must be under -the terms of this License. You must inform recipients that the Source -Code Form of the Covered Software is governed by the terms of this -License, and how they can obtain a copy of this License. You may not -attempt to alter or restrict the recipients' rights in the Source Code -Form. - -3.2. Distribution of Executable Form - -If You distribute Covered Software in Executable Form then: - -(a) such Covered Software must also be made available in Source Code - Form, as described in Section 3.1, and You must inform recipients of - the Executable Form how they can obtain a copy of such Source Code - Form by reasonable means in a timely manner, at a charge no more - than the cost of distribution to the recipient; and - -(b) You may distribute such Executable Form under the terms of this - License, or sublicense it under different terms, provided that the - license for the Executable Form does not attempt to limit or alter - the recipients' rights in the Source Code Form under this License. - -3.3. Distribution of a Larger Work - -You may create and distribute a Larger Work under terms of Your choice, -provided that You also comply with the requirements of this License for -the Covered Software. If the Larger Work is a combination of Covered -Software with a work governed by one or more Secondary Licenses, and the -Covered Software is not Incompatible With Secondary Licenses, this -License permits You to additionally distribute such Covered Software -under the terms of such Secondary License(s), so that the recipient of -the Larger Work may, at their option, further distribute the Covered -Software under the terms of either this License or such Secondary -License(s). - -3.4. Notices - -You may not remove or alter the substance of any license notices -(including copyright notices, patent notices, disclaimers of warranty, -or limitations of liability) contained within the Source Code Form of -the Covered Software, except that You may alter any license notices to -the extent required to remedy known factual inaccuracies. - -3.5. Application of Additional Terms - -You may choose to offer, and to charge a fee for, warranty, support, -indemnity or liability obligations to one or more recipients of Covered -Software. However, You may do so only on Your own behalf, and not on -behalf of any Contributor. You must make it absolutely clear that any -such warranty, support, indemnity, or liability obligation is offered by -You alone, and You hereby agree to indemnify every Contributor for any -liability incurred by such Contributor as a result of warranty, support, -indemnity or liability terms You offer. You may include additional -disclaimers of warranty and limitations of liability specific to any -jurisdiction. - -4. Inability to Comply Due to Statute or Regulation ---------------------------------------------------- - -If it is impossible for You to comply with any of the terms of this -License with respect to some or all of the Covered Software due to -statute, judicial order, or regulation then You must: (a) comply with -the terms of this License to the maximum extent possible; and (b) -describe the limitations and the code they affect. Such description must -be placed in a text file included with all distributions of the Covered -Software under this License. Except to the extent prohibited by statute -or regulation, such description must be sufficiently detailed for a -recipient of ordinary skill to be able to understand it. - -5. Termination --------------- - -5.1. The rights granted under this License will terminate automatically -if You fail to comply with any of its terms. However, if You become -compliant, then the rights granted under this License from a particular -Contributor are reinstated (a) provisionally, unless and until such -Contributor explicitly and finally terminates Your grants, and (b) on an -ongoing basis, if such Contributor fails to notify You of the -non-compliance by some reasonable means prior to 60 days after You have -come back into compliance. Moreover, Your grants from a particular -Contributor are reinstated on an ongoing basis if such Contributor -notifies You of the non-compliance by some reasonable means, this is the -first time You have received notice of non-compliance with this License -from such Contributor, and You become compliant prior to 30 days after -Your receipt of the notice. - -5.2. If You initiate litigation against any entity by asserting a patent -infringement claim (excluding declaratory judgment actions, -counter-claims, and cross-claims) alleging that a Contributor Version -directly or indirectly infringes any patent, then the rights granted to -You by any and all Contributors for the Covered Software under Section -2.1 of this License shall terminate. - -5.3. In the event of termination under Sections 5.1 or 5.2 above, all -end user license agreements (excluding distributors and resellers) which -have been validly granted by You or Your distributors under this License -prior to termination shall survive termination. - -************************************************************************ -* * -* 6. Disclaimer of Warranty * -* ------------------------- * -* * -* Covered Software is provided under this License on an "as is" * -* basis, without warranty of any kind, either expressed, implied, or * -* statutory, including, without limitation, warranties that the * -* Covered Software is free of defects, merchantable, fit for a * -* particular purpose or non-infringing. The entire risk as to the * -* quality and performance of the Covered Software is with You. * -* Should any Covered Software prove defective in any respect, You * -* (not any Contributor) assume the cost of any necessary servicing, * -* repair, or correction. This disclaimer of warranty constitutes an * -* essential part of this License. No use of any Covered Software is * -* authorized under this License except under this disclaimer. * -* * -************************************************************************ - -************************************************************************ -* * -* 7. Limitation of Liability * -* -------------------------- * -* * -* Under no circumstances and under no legal theory, whether tort * -* (including negligence), contract, or otherwise, shall any * -* Contributor, or anyone who distributes Covered Software as * -* permitted above, be liable to You for any direct, indirect, * -* special, incidental, or consequential damages of any character * -* including, without limitation, damages for lost profits, loss of * -* goodwill, work stoppage, computer failure or malfunction, or any * -* and all other commercial damages or losses, even if such party * -* shall have been informed of the possibility of such damages. This * -* limitation of liability shall not apply to liability for death or * -* personal injury resulting from such party's negligence to the * -* extent applicable law prohibits such limitation. Some * -* jurisdictions do not allow the exclusion or limitation of * -* incidental or consequential damages, so this exclusion and * -* limitation may not apply to You. * -* * -************************************************************************ - -8. Litigation -------------- - -Any litigation relating to this License may be brought only in the -courts of a jurisdiction where the defendant maintains its principal -place of business and such litigation shall be governed by laws of that -jurisdiction, without reference to its conflict-of-law provisions. -Nothing in this Section shall prevent a party's ability to bring -cross-claims or counter-claims. - -9. Miscellaneous ----------------- - -This License represents the complete agreement concerning the subject -matter hereof. If any provision of this License is held to be -unenforceable, such provision shall be reformed only to the extent -necessary to make it enforceable. Any law or regulation which provides -that the language of a contract shall be construed against the drafter -shall not be used to construe this License against a Contributor. - -10. Versions of the License ---------------------------- - -10.1. New Versions - -Mozilla Foundation is the license steward. Except as provided in Section -10.3, no one other than the license steward has the right to modify or -publish new versions of this License. Each version will be given a -distinguishing version number. - -10.2. Effect of New Versions - -You may distribute the Covered Software under the terms of the version -of the License under which You originally received the Covered Software, -or under the terms of any subsequent version published by the license -steward. - -10.3. Modified Versions - -If you create software not governed by this License, and you want to -create a new license for such software, you may create and use a -modified version of this License if you rename the license and remove -any references to the name of the license steward (except to note that -such modified license differs from this License). - -10.4. Distributing Source Code Form that is Incompatible With Secondary -Licenses - -If You choose to distribute Source Code Form that is Incompatible With -Secondary Licenses under the terms of this version of the License, the -notice described in Exhibit B of this License must be attached. - -Exhibit A - Source Code Form License Notice -------------------------------------------- - - This Source Code Form is subject to the terms of the Mozilla Public - License, v. 2.0. If a copy of the MPL was not distributed with this - file, You can obtain one at http://mozilla.org/MPL/2.0/. - -If it is not possible or desirable to put the notice in a particular -file, then You may include the notice in a location (such as a LICENSE -file in a relevant directory) where a recipient would be likely to look -for such a notice. - -You may add additional accurate notices of copyright ownership. - -Exhibit B - "Incompatible With Secondary Licenses" Notice ---------------------------------------------------------- - - This Source Code Form is "Incompatible With Secondary Licenses", as - defined by the Mozilla Public License, v. 2.0. - -You may obtain a copy of this library's Source Code Form from: https://dart.googlesource.com/root_certificates/+/692f6d6488af68e0121317a9c2c9eb393eb0ee50 - --------------------------------------------------------------------------------- -skia - -Copyright (C) 2014 Google Inc. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright (c) 2011 Google Inc. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright (c) 2014 Google Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2005 The Android Open Source Project - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2006 The Android Open Source Project - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2006-2012 The Android Open Source Project -Copyright 2012 Mozilla Foundation - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2007 The Android Open Source Project - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2008 Google Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2008 The Android Open Source Project - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2009 The Android Open Source Project - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2009-2015 Google Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2010 Google Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2010 The Android Open Source Project - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2011 Google Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2011 Google Inc. -Copyright 2012 Mozilla Foundation - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2011 The Android Open Source Project - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2012 Google Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2012 Google LLC - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2012 The Android Open Source Project - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2013 Google Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2013 The Android Open Source Project - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2014 Google Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2014 Google Inc. -Copyright 2017 ARM Ltd. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2014 The Android Open Source Project - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2015 Google Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2015 The Android Open Source Project - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2016 Google Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2016 Mozilla Foundation - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2016 The Android Open Source Project - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2017 ARM Ltd. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2017 Google Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2018 Google Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2018 Google LLC - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2018 Google LLC. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2018 Google, LLC - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2018 The Android Open Source Project - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2019 Google Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2019 Google LLC - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2019 Google LLC. --------------------------------------------------------------------------------- -skia - -Copyright 2019 Google LLC. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2019 Google, LLC - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2019 The Android Open Source Project - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2020 Google Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2020 Google LLC - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2020 Google LLC. --------------------------------------------------------------------------------- -skia - -Copyright 2020 Google LLC. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2020 Google, LLC - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2021 Google Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2021 Google LLC - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2021 Google LLC. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2021 Google, LLC - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2022 Google Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2022 Google LLC - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2022 Google LLC. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2022 Google, LLC - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2023 Google Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2023 Google LLC - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2023 The Android Open Source Project - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -spirv-cross - -Copyright 2014-2016,2021 The Khronos Group, Inc. - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -spring_animation - -Copyright (c) Meta Platforms, Inc. and affiliates. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. --------------------------------------------------------------------------------- -sprintf - -Copyright (c) 2012, Richard Eames -All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -sqlite - -The source code for SQLite is in the public domain. No claim of -copyright is made on any part of the core source code. (The -documentation and test code is a different matter - some sections of -documentation and test logic are governed by open-source licenses.) -All contributors to the SQLite core software have signed affidavits -specifically disavowing any copyright interest in the code. This means -that anybody is able to legally do anything they want with the SQLite -source code. - -There are other SQL database engines with liberal licenses that allow -the code to be broadly and freely used. But those other engines are -still governed by copyright law. SQLite is different in that copyright -law simply does not apply. - -The source code files for other SQL database engines typically begin -with a comment describing your legal rights to view and copy that -file. The SQLite source code contains no license since it is not -governed by copyright. Instead of a license, the SQLite source code -offers a blessing: - -May you do good and not evil -May you find forgiveness for yourself and forgive others -May you share freely, never taking more than you give. --------------------------------------------------------------------------------- -stack_trace - -Copyright 2014, the Dart project authors. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -term_glyph - -Copyright 2017, the Dart project authors. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -test_api - -Copyright 2018, the Dart project authors. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -uuid - -Copyright (c) 2021 Yulian Kuncheff - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -vector_math - -Copyright 2015, Google Inc. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -Copyright (C) 2013 Andrew Magill - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. - --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (C) 2012-2020 Yann Collet - -BSD 2-Clause License (https://www.opensource.org/licenses/bsd-license.php) - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following disclaimer - in the documentation and/or other materials provided with the - distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -vulkan-validation-layers -vulkan_memory_allocator - -Copyright (c) 2017-2022 Advanced Micro Devices, Inc. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. --------------------------------------------------------------------------------- -vulkanmemoryallocator - -Copyright 2018 Google Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -web - -Copyright 2023, the Dart project authors. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -web_locale_keymap - -Copyright (c) 2022 Google LLC - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. --------------------------------------------------------------------------------- -win32 - -Copyright 2019, Dart | Windows. All rights reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -xxhash - -Copyright (C) 2012-2016, Yann Collet - -BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php) - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - -* Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. -* Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -xxhash - -Copyright (C) 2012-2016, Yann Collet. - -BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php) - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -zlib - -Copyright (C) 1995-2022 Jean-loup Gailly and Mark Adler - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -zlib - -Copyright (C) 1998-2005 Gilles Vollant --------------------------------------------------------------------------------- -zlib - -Copyright (C) 2017 ARM, Inc. -Copyright 2017 The Chromium Authors - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -zlib - -Copyright 2017 The Chromium Authors - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -zlib - -Copyright 2018 The Chromium Authors - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -zlib - -Copyright 2019 The Chromium Authors - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -zlib - -Copyright 2022 The Chromium Authors - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -zlib - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -zlib - -version 1.2.12, March 27th, 2022 - -Copyright (C) 1995-2022 Jean-loup Gailly and Mark Adler - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. diff --git a/classic/frontend/build/web/assets/assets/coding_tree_structure.json b/classic/frontend/build/web/assets/assets/coding_tree_structure.json deleted file mode 100644 index 20767563cb..0000000000 --- a/classic/frontend/build/web/assets/assets/coding_tree_structure.json +++ /dev/null @@ -1,344 +0,0 @@ -{ - "edges": [ - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestWriteFile::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestWriteFile::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestUrlShortener::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestUrlShortener::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestTicTacToe::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestTicTacToe::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestFileOrganizer::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestFileOrganizer::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestUrlShortener::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestUrlShortener::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestPasswordGenerator::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestPasswordGenerator::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestFileOrganizer::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestFileOrganizer::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestThreeSum::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestThreeSum::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestPasswordGenerator::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestPasswordGenerator::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestWriteFile::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestWriteFile::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestThreeSum::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestThreeSum::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestBattleship::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestBattleship::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestTicTacToe::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestTicTacToe::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestBattleship::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestBattleship::test_method[challenge_data0]" - } - ], - "nodes": [ - { - "color": "grey", - "data": { - "category": [ - "general", - "coding", - "scrape_synthesize", - "data" - ], - "cutoff": 60, - "dependencies": [ - "TestWriteFile" - ], - "eval_id": "f219f3d3-a41b-45a9-a3d0-389832086ee8", - "ground": { - "answer": "The content of output.txt should be 'Hello World!'", - "eval": { - "type": "file" - }, - "files": [ - "output.txt" - ], - "should_contain": [ - "Hello World!" - ] - }, - "info": { - "description": "Tests if the agent can read a file.", - "difficulty": "interface", - "side_effects": [ - "" - ] - }, - "name": "TestReadFile", - "task": "Read the file called file_to_read.txt and write its content to a file called output.txt" - }, - "id": "agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]", - "label": "ReadFile", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "general", - "coding", - "scrape_synthesize", - "data" - ], - "cutoff": 60, - "dependencies": [], - "eval_id": "021c695a-6cc4-46c2-b93a-f3a9b0f4d123", - "ground": { - "answer": "The word 'Washington', printed to a .txt file named anything", - "eval": { - "type": "file" - }, - "files": [ - ".txt" - ], - "should_contain": [ - "Washington" - ], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can write a file", - "difficulty": "interface", - "side_effects": [ - "" - ] - }, - "name": "TestWriteFile", - "task": "Write the word 'Washington' to a .txt file" - }, - "id": "agbenchmark/generate_test.py::TestWriteFile::test_method[challenge_data0]", - "label": "WriteFile", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "coding", - "general" - ], - "cutoff": 150, - "dependencies": [ - "TestUrlShortener" - ], - "eval_id": "504b1648-e14a-4982-8b27-074598eb4fd0", - "ground": { - "answer": "The correct python file for a TicTacToe game is written", - "eval": { - "type": "python" - }, - "files": [ - "test.py" - ], - "should_contain": [], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can create Tic-Tac-Toe game", - "difficulty": "basic", - "side_effects": [] - }, - "name": "TestTicTacToe", - "task": "Build a Tic-Tac-Toe game using a python CLI. Here are the specifications.\n\nThe Grid: The game board is a 3x3 grid, consisting of 3 rows and 3 columns, creating a total of 9 squares.\n\nPlayers: There are two players. One player uses the number \"1\", and the other player uses the number \"2\".\n\nTaking Turns: Players take turns to put their respective numbers (\"1\" or \"2\") in an empty square of the grid. Once a player has placed their number in a square, it cannot be changed or removed.\n\nObjective: The goal is to get three of your numbers in a row, either horizontally, vertically, or diagonally.\n\nEnd of the Game: The game concludes in one of two ways: One player gets three of their numbers in a row (horizontally, vertically, or diagonally) and is declared the winner.\nAll squares on the grid are filled, and no player has three in a row. This situation is a \"draw\" or a \"tie\".\n\nTechnical specifications:\nBuild a file called tic_tac_toe.py. This file will be called through command lines. You will have to prompt users for their move. Player 1 will always start.\nPlayers will input their move in the following format: \"x,y\" where x and y represent the location in the grid (0,0 is top left, 2,2 is bottom right).\n\nYour primary requirement is to halt the game when appropriate and to print only one of these three exact sentences:\n\n\"Player 1 won!\"\n\"Player 2 won!\"\n\"Draw\"\n\nEdge cases: A player can send an incorrect location. Either the location is incorrect or the square is already filled. In this case, this counts as doing nothing, and the player gets prompted for new locations again.\n\n\nYou will be expected to create a python file called tic_tac_toe.py that will run through command lines by using ```python tic_tac_toe.py```.\n\nHere is an example of how your tic_tac_toe.py game will be tested.\n```\nprocess = subprocess.Popen(\n ['python', 'tic_tac_toe.py'],\n stdout=subprocess.PIPE,\n text=True\n)\n\noutput, _ = process.communicate('\\n'.join([\"0,0\", \"1,0\", \"0,1\", \"1,1\", \"0,2\"]))\n\nassert \"Player 1 won!\" in output\n```" - }, - "id": "agbenchmark/generate_test.py::TestTicTacToe::test_method[challenge_data0]", - "label": "TicTacToe", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "coding" - ], - "cutoff": 150, - "dependencies": [ - "TestFileOrganizer" - ], - "eval_id": "8106fd7f-83fd-496e-9513-280f4a3f012c", - "ground": { - "answer": "The correct python file for a basic url shortener CLI", - "eval": { - "type": "python" - }, - "files": [ - "test.py" - ], - "should_contain": [], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can create a URL shortener.", - "difficulty": "basic", - "side_effects": [] - }, - "name": "TestUrlShortener", - "task": "Build a basic URL shortener using a python CLI. Here are the specifications.\n\nFunctionality: The program should have two primary functionalities.\n\nShorten a given URL.\nRetrieve the original URL from a shortened URL.\n\nCLI: The command-line interface should accept a URL as its first input. It should be able to determine if the url is a shortened url or not. If the url is not shortened, it will display ONLY the shortened url, otherwise, it will display ONLY the original unshortened URL. Afterwards, it should prompt the user for another URL to process.\n\nTechnical specifications:\nBuild a file called url_shortener.py. This file will be called through command lines.\n\nEdge cases:\nFor the sake of simplicity, there will be no edge cases, you can assume the input is always correct and the user immediately passes the shortened version of the url he just shortened.\n\nYou will be expected to create a python file called url_shortener.py that will run through command lines by using python url_shortener.py.\n\nThe url_shortener.py will be tested this way:\n```\nimport unittest\nfrom url_shortener import shorten_url, retrieve_url\n\nclass TestURLShortener(unittest.TestCase):\n def test_url_retrieval(self):\n # Shorten the URL to get its shortened form\n shortened_url = shorten_url('https://www.example.com')\n\n # Retrieve the original URL using the shortened URL directly\n retrieved_url = retrieve_url(shortened_url)\n\n self.assertEqual(retrieved_url, 'https://www.example.com', \"Retrieved URL does not match the original!\")\n\nif __name__ == \"__main__\":\n unittest.main()\n```" - }, - "id": "agbenchmark/generate_test.py::TestUrlShortener::test_method[challenge_data0]", - "label": "UrlShortener", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "coding", - "general" - ], - "cutoff": 90, - "dependencies": [ - "TestPasswordGenerator" - ], - "eval_id": "029c1e6f-2b36-451e-bca6-60063b827d2e", - "ground": { - "answer": "The correct python file is written and organizes the files accordingly", - "eval": { - "type": "python" - }, - "files": [ - "test.py" - ], - "should_contain": [], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can create a file organizer.", - "difficulty": "basic", - "side_effects": [] - }, - "name": "TestFileOrganizer", - "task": "Create a file organizer CLI tool in Python that sorts files in a directory based on their file types (e.g., images, documents, audio) and moves them into these corresponding folders: 'images', 'documents', 'audio'. The entry point will be a python file that can be run this way: python organize_files.py --directory_path=YOUR_DIRECTORY_PATH" - }, - "id": "agbenchmark/generate_test.py::TestFileOrganizer::test_method[challenge_data0]", - "label": "FileOrganizer", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "coding" - ], - "cutoff": 90, - "dependencies": [ - "TestThreeSum" - ], - "eval_id": "ac75c471-e0ce-400c-ba9a-fb72aaab444f", - "ground": { - "answer": "password_generator.py is created and satisfies the requirements.", - "eval": { - "type": "python" - }, - "files": [ - "test.py" - ], - "should_contain": [], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can create a random password generator.", - "difficulty": "basic", - "side_effects": [] - }, - "name": "TestPasswordGenerator", - "task": "Create a random password generator. The password should have between 8 and 16 characters and should contain letters, numbers and symbols. The password should be printed to the console. The entry point will be a python file that can be run this way: python password_generator.py [--len x] where x is the length of the password. If no length is specified, the password should be 8 characters long. The password_generator can also be imported as a module and called as password = password_generator.generate_password(len=x). Any invalid input should raise a ValueError." - }, - "id": "agbenchmark/generate_test.py::TestPasswordGenerator::test_method[challenge_data0]", - "label": "PasswordGenerator", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "coding", - "general" - ], - "cutoff": 60, - "dependencies": [ - "TestWriteFile" - ], - "eval_id": "a1ff38a4-1032-4bf2-960a-3b927f9936f4", - "ground": { - "answer": "The three_sum function coded properly.", - "eval": { - "type": "python" - }, - "files": [ - "test.py" - ], - "should_contain": [ - "[0, 1, 2]", - "[0, 2, 5]", - "[0, 2, 3]" - ], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can create the three_sum function.", - "difficulty": "basic", - "side_effects": [] - }, - "name": "TestThreeSum", - "task": "Create a three_sum function in a file called sample_code.py. Given an array of integers, return indices of the three numbers such that they add up to a specific target. You may assume that each input would have exactly one solution, and you may not use the same element twice. Example: Given nums = [2, 7, 11, 15], target = 20, Because nums[0] + nums[1] + nums[2] = 2 + 7 + 11 = 20, return [0, 1, 2]." - }, - "id": "agbenchmark/generate_test.py::TestThreeSum::test_method[challenge_data0]", - "label": "ThreeSum", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "coding", - "general" - ], - "cutoff": 90, - "dependencies": [ - "TestTicTacToe", - "TestReadFile" - ], - "eval_id": "4d613d05-475f-4f72-bf12-f6d3714340c1", - "ground": { - "answer": "The implementation of battleship that passes all the tests.", - "eval": { - "type": "pytest" - }, - "files": [], - "should_contain": [], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can create a Battleship.", - "difficulty": "expert", - "side_effects": [] - }, - "name": "TestBattleship", - "task": "Build a battleship game\n\nSpecifications:\n\nOverview: Battleship is a two-player strategy game where each player places their fleet of ships on a grid and tries to sink the opponent's fleet by guessing their locations.\nPlayers take turns calling out a row and column, attempting to name a square containing one of the opponent's ships.\n\nThe Grid: Each player's grid is a 10x10 grid, identified by rows (using numbers 1-10) and columns (using letters A-J).\n\nShips:\n\nCarrier - 5 squares\nBattleship - 4 squares\nCruiser - 3 squares\nSubmarine - 3 squares\nDestroyer - 2 squares\nEach ship occupies contiguous squares on the grid, arranged either horizontally or vertically.\n\nSetup:\n\nAt the start of the game, each player places their fleet on their grid. This setup is hidden from the opponent.\nThe game begins with Player 1, followed by Player 2, and so on.\nTaking Turns:\n\nOn a player's turn, they announce a grid square (e.g., \"D5\").\nThe opponent announces whether that square is a \"hit\" (if there's a part of a ship on that square) or \"miss\" (if the square is empty).\nIf a player hits a square occupied by a ship, they get another turn to guess. This continues until they make a miss, at which point their turn ends.\nIf a player hits all the squares occupied by a ship, the opponent must announce the sinking of that specific ship, e.g., \"You sank my Battleship!\"\n\nObjective: The goal is to sink all of your opponent's ships before they sink yours.\n\nEnd of the Game: The game ends when one player has sunk all of the opponent's ships. The winner is the player who sinks all the opposing fleet first.\n\nTechnical details:\nIn your root folder you will find an abstract class that defines the public interface of the Battleship class you will have to build:\n```\nfrom abc import ABC, abstractmethod\nfrom typing import Optional\n\nfrom pydantic import BaseModel, validator\n\n\n# Models for the request and response payloads\nclass ShipPlacement(BaseModel):\n ship_type: str\n start: dict # {\"row\": int, \"column\": str}\n direction: str\n\n @validator(\"start\")\n def validate_start(cls, start):\n row, column = start.get(\"row\"), start.get(\"column\")\n\n if not (1 <= row <= 10):\n raise ValueError(\"Row must be between 1 and 10 inclusive.\")\n\n if column not in list(\"ABCDEFGHIJ\"):\n raise ValueError(\"Column must be one of A, B, C, D, E, F, G, H, I, J.\")\n\n return start\n\n\nclass Turn(BaseModel):\n target: dict # {\"row\": int, \"column\": str}\n\n\nclass TurnResponse(BaseModel):\n result: str\n ship_type: Optional[str] # This would be None if the result is a miss\n\n\nclass GameStatus(BaseModel):\n is_game_over: bool\n winner: Optional[str]\n\n\nfrom typing import List\n\n\nclass Game(BaseModel):\n game_id: str\n players: List[str]\n board: dict # This could represent the state of the game board, you might need to flesh this out further\n ships: List[ShipPlacement] # List of ship placements for this game\n turns: List[Turn] # List of turns that have been taken\n\n\nclass AbstractBattleship(ABC):\n SHIP_LENGTHS = {\n \"carrier\": 5,\n \"battleship\": 4,\n \"cruiser\": 3,\n \"submarine\": 3,\n \"destroyer\": 2,\n }\n\n @abstractmethod\n def create_ship_placement(self, game_id: str, placement: ShipPlacement) -> None:\n \"\"\"\n Place a ship on the grid.\n \"\"\"\n pass\n\n @abstractmethod\n def create_turn(self, game_id: str, turn: Turn) -> TurnResponse:\n \"\"\"\n Players take turns to target a grid cell.\n \"\"\"\n pass\n\n @abstractmethod\n def get_game_status(self, game_id: str) -> GameStatus:\n \"\"\"\n Check if the game is over and get the winner if there's one.\n \"\"\"\n pass\n\n @abstractmethod\n def get_winner(self, game_id: str) -> str:\n \"\"\"\n Get the winner of the game.\n \"\"\"\n pass\n\n @abstractmethod\n def get_game(self) -> Game:\n \"\"\"\n Retrieve the state of the game.\n \"\"\"\n pass\n\n @abstractmethod\n def delete_game(self, game_id: str) -> None:\n \"\"\"\n Delete a game given its ID.\n \"\"\"\n pass\n\n @abstractmethod\n def create_game(self) -> None:\n \"\"\"\n Create a new game.\n \"\"\"\n pass\n\n```\nAt any moment you can run ```pytest``` to execute the tests.\nYou have two types of test: \n- positive tests => test the battleship game being used in ideal conditions\n- negative tests => tests the battleship game behaviour when used incorrectly\n\nSuccess criteria:\n- you will need to write a file called battleship.py that implements the abstract Battleship class.\n- this class will have to pass all the tests.\n- you're not allowed to modify any other file than the battleship.py. You can add other files as long as the main entrypoint is the battleship class." - }, - "id": "agbenchmark/generate_test.py::TestBattleship::test_method[challenge_data0]", - "label": "Battleship", - "shape": "dot" - } - ] -} diff --git a/classic/frontend/build/web/assets/assets/data_tree_structure.json b/classic/frontend/build/web/assets/assets/data_tree_structure.json deleted file mode 100644 index a5102dd349..0000000000 --- a/classic/frontend/build/web/assets/assets/data_tree_structure.json +++ /dev/null @@ -1,360 +0,0 @@ -{ - "edges": [ - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestWriteFile::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestWriteFile::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestAnswerQuestionSmallCsv::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestAnswerQuestionSmallCsv::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestAnswerQuestionCsv::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestAnswerQuestionCsv::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestAnswerQuestionSmallCsv::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestAnswerQuestionSmallCsv::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestAnswerQuestionCsv::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestAnswerQuestionCsv::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestAnswerQuestionCombineCsv::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestAnswerQuestionCombineCsv::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestCombineCsv::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestCombineCsv::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestAnswerQuestionCombineCsv::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestAnswerQuestionCombineCsv::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestLabelCsv::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestLabelCsv::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestCombineCsv::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestCombineCsv::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestSortCsv::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestSortCsv::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestLabelCsv::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestLabelCsv::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestSortCsv::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestSortCsv::test_method[challenge_data0]" - } - ], - "nodes": [ - { - "color": "grey", - "data": { - "category": [ - "general", - "coding", - "scrape_synthesize", - "data" - ], - "cutoff": 60, - "dependencies": [ - "TestWriteFile" - ], - "eval_id": "f219f3d3-a41b-45a9-a3d0-389832086ee8", - "ground": { - "answer": "The content of output.txt should be 'Hello World!'", - "eval": { - "type": "file" - }, - "files": [ - "output.txt" - ], - "should_contain": [ - "Hello World!" - ] - }, - "info": { - "description": "Tests if the agent can read a file.", - "difficulty": "interface", - "side_effects": [ - "" - ] - }, - "name": "TestReadFile", - "task": "Read the file called file_to_read.txt and write its content to a file called output.txt" - }, - "id": "agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]", - "label": "ReadFile", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "general", - "coding", - "scrape_synthesize", - "data" - ], - "cutoff": 60, - "dependencies": [], - "eval_id": "021c695a-6cc4-46c2-b93a-f3a9b0f4d123", - "ground": { - "answer": "The word 'Washington', printed to a .txt file named anything", - "eval": { - "type": "file" - }, - "files": [ - ".txt" - ], - "should_contain": [ - "Washington" - ], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can write a file", - "difficulty": "interface", - "side_effects": [ - "" - ] - }, - "name": "TestWriteFile", - "task": "Write the word 'Washington' to a .txt file" - }, - "id": "agbenchmark/generate_test.py::TestWriteFile::test_method[challenge_data0]", - "label": "WriteFile", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "data" - ], - "cutoff": 90, - "dependencies": [ - "TestAnswerQuestionSmallCsv" - ], - "eval_id": "bb6e0a4b-7faf-4aa6-a524-548cddbc2732", - "ground": { - "answer": "The correct amount spent on utilities.", - "eval": { - "type": "file" - }, - "files": [ - "output.txt" - ], - "should_contain": [ - "1861" - ] - }, - "info": { - "description": "Tests if the agent can answer a question from a csv", - "difficulty": "intermediate", - "side_effects": [ - "" - ] - }, - "name": "TestAnswerQuestionCsv", - "task": "How much was spent on utilities in total ? Write the answer in an output.txt file." - }, - "id": "agbenchmark/generate_test.py::TestAnswerQuestionCsv::test_method[challenge_data0]", - "label": "AnswerQuestionCsv", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "data", - "general" - ], - "cutoff": 60, - "dependencies": [ - "TestReadFile" - ], - "eval_id": "9df3f07a-5047-488f-b788-1e1f57eba970", - "ground": { - "answer": "The correct amount spent on utilities.", - "eval": { - "type": "file" - }, - "files": [ - "output.txt" - ], - "should_contain": [ - "84" - ] - }, - "info": { - "description": "Tests if the agent can answer a question from a small csv", - "difficulty": "intermediate", - "side_effects": [ - "" - ] - }, - "name": "TestAnswerQuestionSmallCsv", - "task": "How much was spent on utilities in total ? Write the answer in an output.txt file." - }, - "id": "agbenchmark/generate_test.py::TestAnswerQuestionSmallCsv::test_method[challenge_data0]", - "label": "AnswerQuestionSmallCsv", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "data", - "general" - ], - "cutoff": 120, - "dependencies": [ - "TestAnswerQuestionCsv", - "TestCombineCsv" - ], - "eval_id": "b1bb61cd-3d09-4a69-bb2a-9dbb3c477589", - "ground": { - "answer": "The correct amount spent on utilities.", - "eval": { - "type": "file" - }, - "files": [ - "output.txt" - ], - "should_contain": [ - "1861" - ] - }, - "info": { - "description": "Tests if the agent can answer a question from a csv", - "difficulty": "intermediate", - "side_effects": [ - "" - ] - }, - "name": "TestAnswerQuestionCombineCsv", - "task": "How much was spent on utilities in total ? Write the answer in an output.txt file." - }, - "id": "agbenchmark/generate_test.py::TestAnswerQuestionCombineCsv::test_method[challenge_data0]", - "label": "AnswerQuestionCombineCsv", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "data", - "general" - ], - "cutoff": 60, - "dependencies": [ - "TestLabelCsv" - ], - "eval_id": "52467beb-b951-4356-9776-9a0ae46bb33b", - "ground": { - "answer": "The csv data is combined", - "eval": { - "type": "file" - }, - "files": [ - "output.csv" - ], - "should_contain": [ - "Age,ID,Name,Occupation,Salary\n28,101,John,Engineer,80000\n34,102,Alice,Doctor,120000\n45,103,Bob,Lawyer,95000" - ] - }, - "info": { - "description": "Tests if the agent can combine data from a csv", - "difficulty": "intermediate", - "side_effects": [ - "" - ] - }, - "name": "TestCombineCsv", - "task": "The csvs 'file1.csv' and 'file2.csv' both have a column 'ID'. Combine these 2 csvs using the 'ID' column. Sort the rows by ID in ascending order and the columns alphabetically. Write the output in output.csv" - }, - "id": "agbenchmark/generate_test.py::TestCombineCsv::test_method[challenge_data0]", - "label": "CombineCsv", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "data" - ], - "cutoff": 60, - "dependencies": [ - "TestSortCsv" - ], - "eval_id": "6e2bf1f0-6842-4704-8ed1-b17c2065bbac", - "ground": { - "answer": "The csv labelled", - "eval": { - "type": "file" - }, - "files": [ - "output.csv" - ], - "should_contain": [ - "Item,Color\nBanana,yellow\nLeaf,green\nSky,blue\nSunflower,yellow\nGrass,green\nJeans,blue\nLemon,yellow\nTree,green\nOcean,blue\nDaisy,yellow\nFern,green" - ] - }, - "info": { - "description": "Tests if the agent can label data in a csv", - "difficulty": "basic", - "side_effects": [ - "" - ] - }, - "name": "TestLabelCsv", - "task": "The csv 'input.csv' has many items. create a 'Color' column for these items and classify them as either 'blue', 'green', or 'yellow' depending on what the most likely color is. Preserve the order of the rows. The color column should be the second column. Write the output in output.csv" - }, - "id": "agbenchmark/generate_test.py::TestLabelCsv::test_method[challenge_data0]", - "label": "LabelCsv", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "data", - "general" - ], - "cutoff": 60, - "dependencies": [ - "TestReadFile" - ], - "eval_id": "d59ec964-6f67-4b3d-a4de-c4436fc76f95", - "ground": { - "answer": "The csv sorted by date", - "eval": { - "type": "file" - }, - "files": [ - "output.csv" - ], - "should_contain": [ - "id,name,timestamp\n1,Bob,2023-09-24 12:05:00\n2,Charlie,2023-09-24 12:10:00\n3,Alice,2023-09-25 14:10:00\n4,David,2023-09-26 16:20:00" - ] - }, - "info": { - "description": "Tests if the agent can sort a csv", - "difficulty": "basic", - "side_effects": [ - "" - ] - }, - "name": "TestSortCsv", - "task": "Sort the input.csv by the 'timestamp' column and write the new csv in the output.csv file. The order of the columns should be preserved." - }, - "id": "agbenchmark/generate_test.py::TestSortCsv::test_method[challenge_data0]", - "label": "SortCsv", - "shape": "dot" - } - ] -} diff --git a/classic/frontend/build/web/assets/assets/general_tree_structure.json b/classic/frontend/build/web/assets/assets/general_tree_structure.json deleted file mode 100644 index a2d06d6e23..0000000000 --- a/classic/frontend/build/web/assets/assets/general_tree_structure.json +++ /dev/null @@ -1,897 +0,0 @@ -{ - "edges": [ - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestWriteFile::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestWriteFile::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestUrlShortener::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestUrlShortener::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestTicTacToe::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestTicTacToe::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestFileOrganizer::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestFileOrganizer::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestUrlShortener::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestUrlShortener::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestPasswordGenerator::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestPasswordGenerator::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestFileOrganizer::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestFileOrganizer::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestThreeSum::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestThreeSum::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestPasswordGenerator::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestPasswordGenerator::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestWriteFile::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestWriteFile::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestThreeSum::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestThreeSum::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestBattleship::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestBattleship::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestTicTacToe::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestTicTacToe::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestBattleship::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestBattleship::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestSearch::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestSearch::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestBasicRetrieval::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestBasicRetrieval::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestWriteFile::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestWriteFile::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestSearch::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestSearch::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestRevenueRetrieval2::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestRevenueRetrieval2::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestTestGetInformation::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestTestGetInformation::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestRevenueRetrieval::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestRevenueRetrieval::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestRevenueRetrieval2::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestRevenueRetrieval2::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestBasicRetrieval::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestBasicRetrieval::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestRevenueRetrieval::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestRevenueRetrieval::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestAnswerQuestionCsv::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestAnswerQuestionCsv::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestAnswerQuestionCombineCsv::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestAnswerQuestionCombineCsv::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestAnswerQuestionSmallCsv::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestAnswerQuestionSmallCsv::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestAnswerQuestionCsv::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestAnswerQuestionCsv::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestAnswerQuestionSmallCsv::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestAnswerQuestionSmallCsv::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestCombineCsv::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestCombineCsv::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestAnswerQuestionCombineCsv::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestAnswerQuestionCombineCsv::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestLabelCsv::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestLabelCsv::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestCombineCsv::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestCombineCsv::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestSortCsv::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestSortCsv::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestLabelCsv::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestLabelCsv::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestSortCsv::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestSortCsv::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestSynthesizeInfo::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestSynthesizeInfo::test_method[challenge_data0]" - } - ], - "nodes": [ - { - "color": "grey", - "data": { - "category": [ - "general", - "coding", - "scrape_synthesize", - "data" - ], - "cutoff": 60, - "dependencies": [ - "TestWriteFile" - ], - "eval_id": "f219f3d3-a41b-45a9-a3d0-389832086ee8", - "ground": { - "answer": "The content of output.txt should be 'Hello World!'", - "eval": { - "type": "file" - }, - "files": [ - "output.txt" - ], - "should_contain": [ - "Hello World!" - ] - }, - "info": { - "description": "Tests if the agent can read a file.", - "difficulty": "interface", - "side_effects": [ - "" - ] - }, - "name": "TestReadFile", - "task": "Read the file called file_to_read.txt and write its content to a file called output.txt" - }, - "id": "agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]", - "label": "ReadFile", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "general", - "coding", - "scrape_synthesize", - "data" - ], - "cutoff": 60, - "dependencies": [], - "eval_id": "021c695a-6cc4-46c2-b93a-f3a9b0f4d123", - "ground": { - "answer": "The word 'Washington', printed to a .txt file named anything", - "eval": { - "type": "file" - }, - "files": [ - ".txt" - ], - "should_contain": [ - "Washington" - ], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can write a file", - "difficulty": "interface", - "side_effects": [ - "" - ] - }, - "name": "TestWriteFile", - "task": "Write the word 'Washington' to a .txt file" - }, - "id": "agbenchmark/generate_test.py::TestWriteFile::test_method[challenge_data0]", - "label": "WriteFile", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "coding", - "general" - ], - "cutoff": 150, - "dependencies": [ - "TestUrlShortener" - ], - "eval_id": "504b1648-e14a-4982-8b27-074598eb4fd0", - "ground": { - "answer": "The correct python file for a TicTacToe game is written", - "eval": { - "type": "python" - }, - "files": [ - "test.py" - ], - "should_contain": [], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can create Tic-Tac-Toe game", - "difficulty": "basic", - "side_effects": [] - }, - "name": "TestTicTacToe", - "task": "Build a Tic-Tac-Toe game using a python CLI. Here are the specifications.\n\nThe Grid: The game board is a 3x3 grid, consisting of 3 rows and 3 columns, creating a total of 9 squares.\n\nPlayers: There are two players. One player uses the number \"1\", and the other player uses the number \"2\".\n\nTaking Turns: Players take turns to put their respective numbers (\"1\" or \"2\") in an empty square of the grid. Once a player has placed their number in a square, it cannot be changed or removed.\n\nObjective: The goal is to get three of your numbers in a row, either horizontally, vertically, or diagonally.\n\nEnd of the Game: The game concludes in one of two ways: One player gets three of their numbers in a row (horizontally, vertically, or diagonally) and is declared the winner.\nAll squares on the grid are filled, and no player has three in a row. This situation is a \"draw\" or a \"tie\".\n\nTechnical specifications:\nBuild a file called tic_tac_toe.py. This file will be called through command lines. You will have to prompt users for their move. Player 1 will always start.\nPlayers will input their move in the following format: \"x,y\" where x and y represent the location in the grid (0,0 is top left, 2,2 is bottom right).\n\nYour primary requirement is to halt the game when appropriate and to print only one of these three exact sentences:\n\n\"Player 1 won!\"\n\"Player 2 won!\"\n\"Draw\"\n\nEdge cases: A player can send an incorrect location. Either the location is incorrect or the square is already filled. In this case, this counts as doing nothing, and the player gets prompted for new locations again.\n\n\nYou will be expected to create a python file called tic_tac_toe.py that will run through command lines by using ```python tic_tac_toe.py```.\n\nHere is an example of how your tic_tac_toe.py game will be tested.\n```\nprocess = subprocess.Popen(\n ['python', 'tic_tac_toe.py'],\n stdout=subprocess.PIPE,\n text=True\n)\n\noutput, _ = process.communicate('\\n'.join([\"0,0\", \"1,0\", \"0,1\", \"1,1\", \"0,2\"]))\n\nassert \"Player 1 won!\" in output\n```" - }, - "id": "agbenchmark/generate_test.py::TestTicTacToe::test_method[challenge_data0]", - "label": "TicTacToe", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "coding" - ], - "cutoff": 150, - "dependencies": [ - "TestFileOrganizer" - ], - "eval_id": "8106fd7f-83fd-496e-9513-280f4a3f012c", - "ground": { - "answer": "The correct python file for a basic url shortener CLI", - "eval": { - "type": "python" - }, - "files": [ - "test.py" - ], - "should_contain": [], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can create a URL shortener.", - "difficulty": "basic", - "side_effects": [] - }, - "name": "TestUrlShortener", - "task": "Build a basic URL shortener using a python CLI. Here are the specifications.\n\nFunctionality: The program should have two primary functionalities.\n\nShorten a given URL.\nRetrieve the original URL from a shortened URL.\n\nCLI: The command-line interface should accept a URL as its first input. It should be able to determine if the url is a shortened url or not. If the url is not shortened, it will display ONLY the shortened url, otherwise, it will display ONLY the original unshortened URL. Afterwards, it should prompt the user for another URL to process.\n\nTechnical specifications:\nBuild a file called url_shortener.py. This file will be called through command lines.\n\nEdge cases:\nFor the sake of simplicity, there will be no edge cases, you can assume the input is always correct and the user immediately passes the shortened version of the url he just shortened.\n\nYou will be expected to create a python file called url_shortener.py that will run through command lines by using python url_shortener.py.\n\nThe url_shortener.py will be tested this way:\n```\nimport unittest\nfrom url_shortener import shorten_url, retrieve_url\n\nclass TestURLShortener(unittest.TestCase):\n def test_url_retrieval(self):\n # Shorten the URL to get its shortened form\n shortened_url = shorten_url('https://www.example.com')\n\n # Retrieve the original URL using the shortened URL directly\n retrieved_url = retrieve_url(shortened_url)\n\n self.assertEqual(retrieved_url, 'https://www.example.com', \"Retrieved URL does not match the original!\")\n\nif __name__ == \"__main__\":\n unittest.main()\n```" - }, - "id": "agbenchmark/generate_test.py::TestUrlShortener::test_method[challenge_data0]", - "label": "UrlShortener", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "coding", - "general" - ], - "cutoff": 90, - "dependencies": [ - "TestPasswordGenerator" - ], - "eval_id": "029c1e6f-2b36-451e-bca6-60063b827d2e", - "ground": { - "answer": "The correct python file is written and organizes the files accordingly", - "eval": { - "type": "python" - }, - "files": [ - "test.py" - ], - "should_contain": [], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can create a file organizer.", - "difficulty": "basic", - "side_effects": [] - }, - "name": "TestFileOrganizer", - "task": "Create a file organizer CLI tool in Python that sorts files in a directory based on their file types (e.g., images, documents, audio) and moves them into these corresponding folders: 'images', 'documents', 'audio'. The entry point will be a python file that can be run this way: python organize_files.py --directory_path=YOUR_DIRECTORY_PATH" - }, - "id": "agbenchmark/generate_test.py::TestFileOrganizer::test_method[challenge_data0]", - "label": "FileOrganizer", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "coding" - ], - "cutoff": 90, - "dependencies": [ - "TestThreeSum" - ], - "eval_id": "ac75c471-e0ce-400c-ba9a-fb72aaab444f", - "ground": { - "answer": "password_generator.py is created and satisfies the requirements.", - "eval": { - "type": "python" - }, - "files": [ - "test.py" - ], - "should_contain": [], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can create a random password generator.", - "difficulty": "basic", - "side_effects": [] - }, - "name": "TestPasswordGenerator", - "task": "Create a random password generator. The password should have between 8 and 16 characters and should contain letters, numbers and symbols. The password should be printed to the console. The entry point will be a python file that can be run this way: python password_generator.py [--len x] where x is the length of the password. If no length is specified, the password should be 8 characters long. The password_generator can also be imported as a module and called as password = password_generator.generate_password(len=x). Any invalid input should raise a ValueError." - }, - "id": "agbenchmark/generate_test.py::TestPasswordGenerator::test_method[challenge_data0]", - "label": "PasswordGenerator", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "coding", - "general" - ], - "cutoff": 60, - "dependencies": [ - "TestWriteFile" - ], - "eval_id": "a1ff38a4-1032-4bf2-960a-3b927f9936f4", - "ground": { - "answer": "The three_sum function coded properly.", - "eval": { - "type": "python" - }, - "files": [ - "test.py" - ], - "should_contain": [ - "[0, 1, 2]", - "[0, 2, 5]", - "[0, 2, 3]" - ], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can create the three_sum function.", - "difficulty": "basic", - "side_effects": [] - }, - "name": "TestThreeSum", - "task": "Create a three_sum function in a file called sample_code.py. Given an array of integers, return indices of the three numbers such that they add up to a specific target. You may assume that each input would have exactly one solution, and you may not use the same element twice. Example: Given nums = [2, 7, 11, 15], target = 20, Because nums[0] + nums[1] + nums[2] = 2 + 7 + 11 = 20, return [0, 1, 2]." - }, - "id": "agbenchmark/generate_test.py::TestThreeSum::test_method[challenge_data0]", - "label": "ThreeSum", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "coding", - "general" - ], - "cutoff": 90, - "dependencies": [ - "TestTicTacToe", - "TestReadFile" - ], - "eval_id": "4d613d05-475f-4f72-bf12-f6d3714340c1", - "ground": { - "answer": "The implementation of battleship that passes all the tests.", - "eval": { - "type": "pytest" - }, - "files": [], - "should_contain": [], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can create a Battleship.", - "difficulty": "expert", - "side_effects": [] - }, - "name": "TestBattleship", - "task": "Build a battleship game\n\nSpecifications:\n\nOverview: Battleship is a two-player strategy game where each player places their fleet of ships on a grid and tries to sink the opponent's fleet by guessing their locations.\nPlayers take turns calling out a row and column, attempting to name a square containing one of the opponent's ships.\n\nThe Grid: Each player's grid is a 10x10 grid, identified by rows (using numbers 1-10) and columns (using letters A-J).\n\nShips:\n\nCarrier - 5 squares\nBattleship - 4 squares\nCruiser - 3 squares\nSubmarine - 3 squares\nDestroyer - 2 squares\nEach ship occupies contiguous squares on the grid, arranged either horizontally or vertically.\n\nSetup:\n\nAt the start of the game, each player places their fleet on their grid. This setup is hidden from the opponent.\nThe game begins with Player 1, followed by Player 2, and so on.\nTaking Turns:\n\nOn a player's turn, they announce a grid square (e.g., \"D5\").\nThe opponent announces whether that square is a \"hit\" (if there's a part of a ship on that square) or \"miss\" (if the square is empty).\nIf a player hits a square occupied by a ship, they get another turn to guess. This continues until they make a miss, at which point their turn ends.\nIf a player hits all the squares occupied by a ship, the opponent must announce the sinking of that specific ship, e.g., \"You sank my Battleship!\"\n\nObjective: The goal is to sink all of your opponent's ships before they sink yours.\n\nEnd of the Game: The game ends when one player has sunk all of the opponent's ships. The winner is the player who sinks all the opposing fleet first.\n\nTechnical details:\nIn your root folder you will find an abstract class that defines the public interface of the Battleship class you will have to build:\n```\nfrom abc import ABC, abstractmethod\nfrom typing import Optional\n\nfrom pydantic import BaseModel, validator\n\n\n# Models for the request and response payloads\nclass ShipPlacement(BaseModel):\n ship_type: str\n start: dict # {\"row\": int, \"column\": str}\n direction: str\n\n @validator(\"start\")\n def validate_start(cls, start):\n row, column = start.get(\"row\"), start.get(\"column\")\n\n if not (1 <= row <= 10):\n raise ValueError(\"Row must be between 1 and 10 inclusive.\")\n\n if column not in list(\"ABCDEFGHIJ\"):\n raise ValueError(\"Column must be one of A, B, C, D, E, F, G, H, I, J.\")\n\n return start\n\n\nclass Turn(BaseModel):\n target: dict # {\"row\": int, \"column\": str}\n\n\nclass TurnResponse(BaseModel):\n result: str\n ship_type: Optional[str] # This would be None if the result is a miss\n\n\nclass GameStatus(BaseModel):\n is_game_over: bool\n winner: Optional[str]\n\n\nfrom typing import List\n\n\nclass Game(BaseModel):\n game_id: str\n players: List[str]\n board: dict # This could represent the state of the game board, you might need to flesh this out further\n ships: List[ShipPlacement] # List of ship placements for this game\n turns: List[Turn] # List of turns that have been taken\n\n\nclass AbstractBattleship(ABC):\n SHIP_LENGTHS = {\n \"carrier\": 5,\n \"battleship\": 4,\n \"cruiser\": 3,\n \"submarine\": 3,\n \"destroyer\": 2,\n }\n\n @abstractmethod\n def create_ship_placement(self, game_id: str, placement: ShipPlacement) -> None:\n \"\"\"\n Place a ship on the grid.\n \"\"\"\n pass\n\n @abstractmethod\n def create_turn(self, game_id: str, turn: Turn) -> TurnResponse:\n \"\"\"\n Players take turns to target a grid cell.\n \"\"\"\n pass\n\n @abstractmethod\n def get_game_status(self, game_id: str) -> GameStatus:\n \"\"\"\n Check if the game is over and get the winner if there's one.\n \"\"\"\n pass\n\n @abstractmethod\n def get_winner(self, game_id: str) -> str:\n \"\"\"\n Get the winner of the game.\n \"\"\"\n pass\n\n @abstractmethod\n def get_game(self) -> Game:\n \"\"\"\n Retrieve the state of the game.\n \"\"\"\n pass\n\n @abstractmethod\n def delete_game(self, game_id: str) -> None:\n \"\"\"\n Delete a game given its ID.\n \"\"\"\n pass\n\n @abstractmethod\n def create_game(self) -> None:\n \"\"\"\n Create a new game.\n \"\"\"\n pass\n\n```\nAt any moment you can run ```pytest``` to execute the tests.\nYou have two types of test: \n- positive tests => test the battleship game being used in ideal conditions\n- negative tests => tests the battleship game behaviour when used incorrectly\n\nSuccess criteria:\n- you will need to write a file called battleship.py that implements the abstract Battleship class.\n- this class will have to pass all the tests.\n- you're not allowed to modify any other file than the battleship.py. You can add other files as long as the main entrypoint is the battleship class." - }, - "id": "agbenchmark/generate_test.py::TestBattleship::test_method[challenge_data0]", - "label": "Battleship", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "scrape_synthesize", - "general" - ], - "cutoff": 60, - "dependencies": [ - "TestSearch" - ], - "eval_id": "cd96e6b2-779d-4a4a-8367-d520023e27ae", - "ground": { - "answer": "\u00a325.89", - "eval": { - "type": "file" - }, - "files": [ - ".txt" - ], - "should_contain": [ - "25.89" - ], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can retrieve a specific information from a website.", - "difficulty": "basic", - "side_effects": [] - }, - "name": "TestBasicRetrieval", - "task": "Write the price of the book in this url 'http://books.toscrape.com/catalogue/meditations_33/index.html' to a .txt file." - }, - "id": "agbenchmark/generate_test.py::TestBasicRetrieval::test_method[challenge_data0]", - "label": "BasicRetrieval", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "general", - "scrape_synthesize" - ], - "cutoff": 120, - "dependencies": [ - "TestWriteFile" - ], - "eval_id": "0bb23182-b434-402b-a73e-9c226469b959", - "ground": { - "answer": "This is a Heading\nThis is a paragraph.", - "eval": { - "type": "file" - }, - "files": [ - ".txt" - ], - "should_contain": [ - "Heading", - "paragraph" - ], - "should_not_contain": [ - "The", - "the" - ] - }, - "info": { - "description": "Tests if the agent can search.", - "difficulty": "interface", - "side_effects": [ - "" - ] - }, - "name": "TestSearch", - "task": "Open 'https://silennaihin.com/random/plain.html' and paste all of the text on the page in a .txt file" - }, - "id": "agbenchmark/generate_test.py::TestSearch::test_method[challenge_data0]", - "label": "Search", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "scrape_synthesize", - "general" - ], - "cutoff": 60, - "dependencies": [ - "TestRevenueRetrieval2" - ], - "eval_id": "1758058c-f726-484f-96fa-f05e278e5ff5", - "ground": { - "answer": "The twitter handles of the two hosts of Latent Space.", - "eval": { - "type": "file" - }, - "files": [ - "output.txt" - ], - "should_contain": [ - "swyx", - "FanaHOVA" - ], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can retrieve twitter handles given a vague description.", - "difficulty": "intermediate", - "side_effects": [ - "" - ] - }, - "name": "TestTestGetInformation", - "task": "Write the twitter handle of the two hosts of Latent Space to a file called output.txt" - }, - "id": "agbenchmark/generate_test.py::TestTestGetInformation::test_method[challenge_data0]", - "label": "TestGetInformation", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "scrape_synthesize" - ], - "cutoff": 60, - "dependencies": [ - "TestRevenueRetrieval" - ], - "eval_id": "552bdf23-db40-4bd1-b123-4ed820886cc1", - "ground": { - "answer": "15 Millions\n112 Millions\n117 Millions\n204 Millions\n413 Millions\n2,014 Millions\n3,198 Millions\n4,046 Millions\n7,000 Millions\n11,759 Millions\n21,461 Millions\n24,578 Millions\n31,536 Millions\n53,823 Millions\n81,462 Millions", - "eval": { - "type": "file" - }, - "files": [ - ".txt" - ], - "should_contain": [ - "15", - "112", - "117", - "204", - "413", - "2,014", - "3,198", - "4,046", - "7,000", - "11,759", - "21,461", - "24,578", - "31,536", - "53,823", - "81,462" - ], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can retrieve all the revenues of Tesla since its creation.", - "difficulty": "intermediate", - "side_effects": [ - "tests if there is in fact an LLM attached" - ] - }, - "name": "TestRevenueRetrieval2", - "task": "Write tesla's revenue every year since its creation into a .txt file. Use the US notation, with a precision rounded to the nearest million dollars (for instance, $31,578 million)." - }, - "id": "agbenchmark/generate_test.py::TestRevenueRetrieval2::test_method[challenge_data0]", - "label": "RevenueRetrieval2", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "scrape_synthesize", - "general" - ], - "cutoff": 60, - "dependencies": [ - "TestBasicRetrieval" - ], - "eval_id": "dc2114d7-1597-4c9b-bed0-a97937ad977f", - "ground": { - "answer": "It was $81.462 billion in 2022. In millions the answer is 81,462.", - "eval": { - "type": "file" - }, - "files": [ - ".txt" - ], - "should_contain": [ - "81,462" - ], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can retrieve Tesla's revenue in 2022.", - "difficulty": "intermediate", - "side_effects": [] - }, - "name": "TestRevenueRetrieval", - "task": "Write tesla's exact revenue in 2022 into a .txt file. Use the US notation, with a precision rounded to the nearest million dollars (for instance, $31,578 million)." - }, - "id": "agbenchmark/generate_test.py::TestRevenueRetrieval::test_method[challenge_data0]", - "label": "RevenueRetrieval", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "data", - "general" - ], - "cutoff": 120, - "dependencies": [ - "TestAnswerQuestionCsv", - "TestCombineCsv" - ], - "eval_id": "b1bb61cd-3d09-4a69-bb2a-9dbb3c477589", - "ground": { - "answer": "The correct amount spent on utilities.", - "eval": { - "type": "file" - }, - "files": [ - "output.txt" - ], - "should_contain": [ - "1861" - ] - }, - "info": { - "description": "Tests if the agent can answer a question from a csv", - "difficulty": "intermediate", - "side_effects": [ - "" - ] - }, - "name": "TestAnswerQuestionCombineCsv", - "task": "How much was spent on utilities in total ? Write the answer in an output.txt file." - }, - "id": "agbenchmark/generate_test.py::TestAnswerQuestionCombineCsv::test_method[challenge_data0]", - "label": "AnswerQuestionCombineCsv", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "data" - ], - "cutoff": 90, - "dependencies": [ - "TestAnswerQuestionSmallCsv" - ], - "eval_id": "bb6e0a4b-7faf-4aa6-a524-548cddbc2732", - "ground": { - "answer": "The correct amount spent on utilities.", - "eval": { - "type": "file" - }, - "files": [ - "output.txt" - ], - "should_contain": [ - "1861" - ] - }, - "info": { - "description": "Tests if the agent can answer a question from a csv", - "difficulty": "intermediate", - "side_effects": [ - "" - ] - }, - "name": "TestAnswerQuestionCsv", - "task": "How much was spent on utilities in total ? Write the answer in an output.txt file." - }, - "id": "agbenchmark/generate_test.py::TestAnswerQuestionCsv::test_method[challenge_data0]", - "label": "AnswerQuestionCsv", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "data", - "general" - ], - "cutoff": 60, - "dependencies": [ - "TestReadFile" - ], - "eval_id": "9df3f07a-5047-488f-b788-1e1f57eba970", - "ground": { - "answer": "The correct amount spent on utilities.", - "eval": { - "type": "file" - }, - "files": [ - "output.txt" - ], - "should_contain": [ - "84" - ] - }, - "info": { - "description": "Tests if the agent can answer a question from a small csv", - "difficulty": "intermediate", - "side_effects": [ - "" - ] - }, - "name": "TestAnswerQuestionSmallCsv", - "task": "How much was spent on utilities in total ? Write the answer in an output.txt file." - }, - "id": "agbenchmark/generate_test.py::TestAnswerQuestionSmallCsv::test_method[challenge_data0]", - "label": "AnswerQuestionSmallCsv", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "data", - "general" - ], - "cutoff": 60, - "dependencies": [ - "TestLabelCsv" - ], - "eval_id": "52467beb-b951-4356-9776-9a0ae46bb33b", - "ground": { - "answer": "The csv data is combined", - "eval": { - "type": "file" - }, - "files": [ - "output.csv" - ], - "should_contain": [ - "Age,ID,Name,Occupation,Salary\n28,101,John,Engineer,80000\n34,102,Alice,Doctor,120000\n45,103,Bob,Lawyer,95000" - ] - }, - "info": { - "description": "Tests if the agent can combine data from a csv", - "difficulty": "intermediate", - "side_effects": [ - "" - ] - }, - "name": "TestCombineCsv", - "task": "The csvs 'file1.csv' and 'file2.csv' both have a column 'ID'. Combine these 2 csvs using the 'ID' column. Sort the rows by ID in ascending order and the columns alphabetically. Write the output in output.csv" - }, - "id": "agbenchmark/generate_test.py::TestCombineCsv::test_method[challenge_data0]", - "label": "CombineCsv", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "data" - ], - "cutoff": 60, - "dependencies": [ - "TestSortCsv" - ], - "eval_id": "6e2bf1f0-6842-4704-8ed1-b17c2065bbac", - "ground": { - "answer": "The csv labelled", - "eval": { - "type": "file" - }, - "files": [ - "output.csv" - ], - "should_contain": [ - "Item,Color\nBanana,yellow\nLeaf,green\nSky,blue\nSunflower,yellow\nGrass,green\nJeans,blue\nLemon,yellow\nTree,green\nOcean,blue\nDaisy,yellow\nFern,green" - ] - }, - "info": { - "description": "Tests if the agent can label data in a csv", - "difficulty": "basic", - "side_effects": [ - "" - ] - }, - "name": "TestLabelCsv", - "task": "The csv 'input.csv' has many items. create a 'Color' column for these items and classify them as either 'blue', 'green', or 'yellow' depending on what the most likely color is. Preserve the order of the rows. The color column should be the second column. Write the output in output.csv" - }, - "id": "agbenchmark/generate_test.py::TestLabelCsv::test_method[challenge_data0]", - "label": "LabelCsv", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "data", - "general" - ], - "cutoff": 60, - "dependencies": [ - "TestReadFile" - ], - "eval_id": "d59ec964-6f67-4b3d-a4de-c4436fc76f95", - "ground": { - "answer": "The csv sorted by date", - "eval": { - "type": "file" - }, - "files": [ - "output.csv" - ], - "should_contain": [ - "id,name,timestamp\n1,Bob,2023-09-24 12:05:00\n2,Charlie,2023-09-24 12:10:00\n3,Alice,2023-09-25 14:10:00\n4,David,2023-09-26 16:20:00" - ] - }, - "info": { - "description": "Tests if the agent can sort a csv", - "difficulty": "basic", - "side_effects": [ - "" - ] - }, - "name": "TestSortCsv", - "task": "Sort the input.csv by the 'timestamp' column and write the new csv in the output.csv file. The order of the columns should be preserved." - }, - "id": "agbenchmark/generate_test.py::TestSortCsv::test_method[challenge_data0]", - "label": "SortCsv", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "scrape_synthesize", - "general" - ], - "cutoff": 240, - "dependencies": [ - "TestReadFile" - ], - "eval_id": "895ae28a-4513-44ea-a872-0164771d1597", - "ground": { - "answer": "A report highlighting elements from the 2 files.", - "eval": { - "scoring": "binary", - "template": "question", - "type": "llm" - }, - "files": [ - "output.txt" - ], - "should_contain": [ - "Is the company mentioned in the output actively addressing or capitalizing on the challenges or trends listed?" - ], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can generate content based on the content of 2 files.", - "difficulty": "basic", - "side_effects": [] - }, - "name": "TestSynthesizeInfo", - "task": "Create a brief report or summary highlighting how one or more companies from companies.txt are addressing or capitalizing on challenges or trends from challenges.txt. Write a file called output.txt." - }, - "id": "agbenchmark/generate_test.py::TestSynthesizeInfo::test_method[challenge_data0]", - "label": "SynthesizeInfo", - "shape": "dot" - } - ] -} diff --git a/classic/frontend/build/web/assets/assets/github_logo.svg.png b/classic/frontend/build/web/assets/assets/github_logo.svg.png deleted file mode 100644 index 9654bfbe1d..0000000000 Binary files a/classic/frontend/build/web/assets/assets/github_logo.svg.png and /dev/null differ diff --git a/classic/frontend/build/web/assets/assets/google_logo.svg.png b/classic/frontend/build/web/assets/assets/google_logo.svg.png deleted file mode 100644 index dfd0d3b339..0000000000 Binary files a/classic/frontend/build/web/assets/assets/google_logo.svg.png and /dev/null differ diff --git a/classic/frontend/build/web/assets/assets/images/autogpt_logo.png b/classic/frontend/build/web/assets/assets/images/autogpt_logo.png deleted file mode 100644 index 23c67351a0..0000000000 Binary files a/classic/frontend/build/web/assets/assets/images/autogpt_logo.png and /dev/null differ diff --git a/classic/frontend/build/web/assets/assets/images/discord_logo.png b/classic/frontend/build/web/assets/assets/images/discord_logo.png deleted file mode 100644 index 0c8ff880c4..0000000000 Binary files a/classic/frontend/build/web/assets/assets/images/discord_logo.png and /dev/null differ diff --git a/classic/frontend/build/web/assets/assets/images/github_logo.svg.png b/classic/frontend/build/web/assets/assets/images/github_logo.svg.png deleted file mode 100644 index 9654bfbe1d..0000000000 Binary files a/classic/frontend/build/web/assets/assets/images/github_logo.svg.png and /dev/null differ diff --git a/classic/frontend/build/web/assets/assets/images/google_logo.svg.png b/classic/frontend/build/web/assets/assets/images/google_logo.svg.png deleted file mode 100644 index dfd0d3b339..0000000000 Binary files a/classic/frontend/build/web/assets/assets/images/google_logo.svg.png and /dev/null differ diff --git a/classic/frontend/build/web/assets/assets/images/twitter_logo.png b/classic/frontend/build/web/assets/assets/images/twitter_logo.png deleted file mode 100644 index bf376e46f8..0000000000 Binary files a/classic/frontend/build/web/assets/assets/images/twitter_logo.png and /dev/null differ diff --git a/classic/frontend/build/web/assets/assets/scrape_synthesize_tree_structure.json b/classic/frontend/build/web/assets/assets/scrape_synthesize_tree_structure.json deleted file mode 100644 index 858c55d03f..0000000000 --- a/classic/frontend/build/web/assets/assets/scrape_synthesize_tree_structure.json +++ /dev/null @@ -1,375 +0,0 @@ -{ - "edges": [ - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestWriteFile::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestWriteFile::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestSearch::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestSearch::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestBasicRetrieval::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestBasicRetrieval::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestWriteFile::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestWriteFile::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestSearch::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestSearch::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestRevenueRetrieval2::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestRevenueRetrieval2::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestTestGetInformation::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestTestGetInformation::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestRevenueRetrieval::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestRevenueRetrieval::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestRevenueRetrieval2::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestRevenueRetrieval2::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestBasicRetrieval::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestBasicRetrieval::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestRevenueRetrieval::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestRevenueRetrieval::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestSynthesizeInfo::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestSynthesizeInfo::test_method[challenge_data0]" - } - ], - "nodes": [ - { - "color": "grey", - "data": { - "category": [ - "general", - "coding", - "scrape_synthesize", - "data" - ], - "cutoff": 60, - "dependencies": [ - "TestWriteFile" - ], - "eval_id": "f219f3d3-a41b-45a9-a3d0-389832086ee8", - "ground": { - "answer": "The content of output.txt should be 'Hello World!'", - "eval": { - "type": "file" - }, - "files": [ - "output.txt" - ], - "should_contain": [ - "Hello World!" - ] - }, - "info": { - "description": "Tests if the agent can read a file.", - "difficulty": "interface", - "side_effects": [ - "" - ] - }, - "name": "TestReadFile", - "task": "Read the file called file_to_read.txt and write its content to a file called output.txt" - }, - "id": "agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]", - "label": "ReadFile", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "general", - "coding", - "scrape_synthesize", - "data" - ], - "cutoff": 60, - "dependencies": [], - "eval_id": "021c695a-6cc4-46c2-b93a-f3a9b0f4d123", - "ground": { - "answer": "The word 'Washington', printed to a .txt file named anything", - "eval": { - "type": "file" - }, - "files": [ - ".txt" - ], - "should_contain": [ - "Washington" - ], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can write a file", - "difficulty": "interface", - "side_effects": [ - "" - ] - }, - "name": "TestWriteFile", - "task": "Write the word 'Washington' to a .txt file" - }, - "id": "agbenchmark/generate_test.py::TestWriteFile::test_method[challenge_data0]", - "label": "WriteFile", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "scrape_synthesize", - "general" - ], - "cutoff": 60, - "dependencies": [ - "TestSearch" - ], - "eval_id": "cd96e6b2-779d-4a4a-8367-d520023e27ae", - "ground": { - "answer": "\u00a325.89", - "eval": { - "type": "file" - }, - "files": [ - ".txt" - ], - "should_contain": [ - "25.89" - ], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can retrieve a specific information from a website.", - "difficulty": "basic", - "side_effects": [] - }, - "name": "TestBasicRetrieval", - "task": "Write the price of the book in this url 'http://books.toscrape.com/catalogue/meditations_33/index.html' to a .txt file." - }, - "id": "agbenchmark/generate_test.py::TestBasicRetrieval::test_method[challenge_data0]", - "label": "BasicRetrieval", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "general", - "scrape_synthesize" - ], - "cutoff": 120, - "dependencies": [ - "TestWriteFile" - ], - "eval_id": "0bb23182-b434-402b-a73e-9c226469b959", - "ground": { - "answer": "This is a Heading\nThis is a paragraph.", - "eval": { - "type": "file" - }, - "files": [ - ".txt" - ], - "should_contain": [ - "Heading", - "paragraph" - ], - "should_not_contain": [ - "The", - "the" - ] - }, - "info": { - "description": "Tests if the agent can search.", - "difficulty": "interface", - "side_effects": [ - "" - ] - }, - "name": "TestSearch", - "task": "Open 'https://silennaihin.com/random/plain.html' and paste all of the text on the page in a .txt file" - }, - "id": "agbenchmark/generate_test.py::TestSearch::test_method[challenge_data0]", - "label": "Search", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "scrape_synthesize", - "general" - ], - "cutoff": 60, - "dependencies": [ - "TestRevenueRetrieval2" - ], - "eval_id": "1758058c-f726-484f-96fa-f05e278e5ff5", - "ground": { - "answer": "The twitter handles of the two hosts of Latent Space.", - "eval": { - "type": "file" - }, - "files": [ - "output.txt" - ], - "should_contain": [ - "swyx", - "FanaHOVA" - ], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can retrieve twitter handles given a vague description.", - "difficulty": "intermediate", - "side_effects": [ - "" - ] - }, - "name": "TestTestGetInformation", - "task": "Write the twitter handle of the two hosts of Latent Space to a file called output.txt" - }, - "id": "agbenchmark/generate_test.py::TestTestGetInformation::test_method[challenge_data0]", - "label": "TestGetInformation", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "scrape_synthesize" - ], - "cutoff": 60, - "dependencies": [ - "TestRevenueRetrieval" - ], - "eval_id": "552bdf23-db40-4bd1-b123-4ed820886cc1", - "ground": { - "answer": "15 Millions\n112 Millions\n117 Millions\n204 Millions\n413 Millions\n2,014 Millions\n3,198 Millions\n4,046 Millions\n7,000 Millions\n11,759 Millions\n21,461 Millions\n24,578 Millions\n31,536 Millions\n53,823 Millions\n81,462 Millions", - "eval": { - "type": "file" - }, - "files": [ - ".txt" - ], - "should_contain": [ - "15", - "112", - "117", - "204", - "413", - "2,014", - "3,198", - "4,046", - "7,000", - "11,759", - "21,461", - "24,578", - "31,536", - "53,823", - "81,462" - ], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can retrieve all the revenues of Tesla since its creation.", - "difficulty": "intermediate", - "side_effects": [ - "tests if there is in fact an LLM attached" - ] - }, - "name": "TestRevenueRetrieval2", - "task": "Write tesla's revenue every year since its creation into a .txt file. Use the US notation, with a precision rounded to the nearest million dollars (for instance, $31,578 million)." - }, - "id": "agbenchmark/generate_test.py::TestRevenueRetrieval2::test_method[challenge_data0]", - "label": "RevenueRetrieval2", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "scrape_synthesize", - "general" - ], - "cutoff": 60, - "dependencies": [ - "TestBasicRetrieval" - ], - "eval_id": "dc2114d7-1597-4c9b-bed0-a97937ad977f", - "ground": { - "answer": "It was $81.462 billion in 2022. In millions the answer is 81,462.", - "eval": { - "type": "file" - }, - "files": [ - ".txt" - ], - "should_contain": [ - "81,462" - ], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can retrieve Tesla's revenue in 2022.", - "difficulty": "intermediate", - "side_effects": [] - }, - "name": "TestRevenueRetrieval", - "task": "Write tesla's exact revenue in 2022 into a .txt file. Use the US notation, with a precision rounded to the nearest million dollars (for instance, $31,578 million)." - }, - "id": "agbenchmark/generate_test.py::TestRevenueRetrieval::test_method[challenge_data0]", - "label": "RevenueRetrieval", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "scrape_synthesize", - "general" - ], - "cutoff": 240, - "dependencies": [ - "TestReadFile" - ], - "eval_id": "895ae28a-4513-44ea-a872-0164771d1597", - "ground": { - "answer": "A report highlighting elements from the 2 files.", - "eval": { - "scoring": "binary", - "template": "question", - "type": "llm" - }, - "files": [ - "output.txt" - ], - "should_contain": [ - "Is the company mentioned in the output actively addressing or capitalizing on the challenges or trends listed?" - ], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can generate content based on the content of 2 files.", - "difficulty": "basic", - "side_effects": [] - }, - "name": "TestSynthesizeInfo", - "task": "Create a brief report or summary highlighting how one or more companies from companies.txt are addressing or capitalizing on challenges or trends from challenges.txt. Write a file called output.txt." - }, - "id": "agbenchmark/generate_test.py::TestSynthesizeInfo::test_method[challenge_data0]", - "label": "SynthesizeInfo", - "shape": "dot" - } - ] -} diff --git a/classic/frontend/build/web/assets/assets/tree_structure.json b/classic/frontend/build/web/assets/assets/tree_structure.json deleted file mode 100644 index b90578cd50..0000000000 --- a/classic/frontend/build/web/assets/assets/tree_structure.json +++ /dev/null @@ -1,897 +0,0 @@ -{ - "edges": [ - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestBattleship::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestBattleship::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestSortCsv::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestSortCsv::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestAnswerQuestionSmallCsv::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestAnswerQuestionSmallCsv::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestSynthesizeInfo::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestSynthesizeInfo::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestWriteFile::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestWriteFile::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestWriteFile::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestWriteFile::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestThreeSum::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestThreeSum::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestWriteFile::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestWriteFile::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestSearch::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestSearch::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestTicTacToe::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestTicTacToe::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestBattleship::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestBattleship::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestPasswordGenerator::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestPasswordGenerator::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestFileOrganizer::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestFileOrganizer::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestFileOrganizer::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestFileOrganizer::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestUrlShortener::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestUrlShortener::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestThreeSum::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestThreeSum::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestPasswordGenerator::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestPasswordGenerator::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestUrlShortener::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestUrlShortener::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestTicTacToe::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestTicTacToe::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestBasicRetrieval::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestBasicRetrieval::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestRevenueRetrieval::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestRevenueRetrieval::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestRevenueRetrieval2::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestRevenueRetrieval2::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestTestGetInformation::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestTestGetInformation::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestRevenueRetrieval::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestRevenueRetrieval::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestRevenueRetrieval2::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestRevenueRetrieval2::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestSearch::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestSearch::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestBasicRetrieval::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestBasicRetrieval::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestAnswerQuestionCsv::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestAnswerQuestionCsv::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestAnswerQuestionCombineCsv::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestAnswerQuestionCombineCsv::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestSortCsv::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestSortCsv::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestLabelCsv::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestLabelCsv::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestAnswerQuestionSmallCsv::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestAnswerQuestionSmallCsv::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestAnswerQuestionCsv::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestAnswerQuestionCsv::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestCombineCsv::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestCombineCsv::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestAnswerQuestionCombineCsv::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestAnswerQuestionCombineCsv::test_method[challenge_data0]" - }, - { - "arrows": "to", - "from": "agbenchmark/generate_test.py::TestLabelCsv::test_method[challenge_data0]", - "id": "agbenchmark/generate_test.py::TestLabelCsv::test_method[challenge_data0]_to_agbenchmark/generate_test.py::TestCombineCsv::test_method[challenge_data0]", - "to": "agbenchmark/generate_test.py::TestCombineCsv::test_method[challenge_data0]" - } - ], - "nodes": [ - { - "color": "grey", - "data": { - "category": [ - "general", - "coding", - "scrape_synthesize", - "data" - ], - "cutoff": 60, - "dependencies": [ - "TestWriteFile" - ], - "eval_id": "f219f3d3-a41b-45a9-a3d0-389832086ee8", - "ground": { - "answer": "The content of output.txt should be 'Hello World!'", - "eval": { - "type": "file" - }, - "files": [ - "output.txt" - ], - "should_contain": [ - "Hello World!" - ] - }, - "info": { - "description": "Tests if the agent can read a file.", - "difficulty": "interface", - "side_effects": [ - "" - ] - }, - "name": "TestReadFile", - "task": "Read the file called file_to_read.txt and write its content to a file called output.txt" - }, - "id": "agbenchmark/generate_test.py::TestReadFile::test_method[challenge_data0]", - "label": "ReadFile", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "general", - "coding", - "scrape_synthesize", - "data" - ], - "cutoff": 60, - "dependencies": [], - "eval_id": "021c695a-6cc4-46c2-b93a-f3a9b0f4d123", - "ground": { - "answer": "The word 'Washington', printed to a .txt file named anything", - "eval": { - "type": "file" - }, - "files": [ - ".txt" - ], - "should_contain": [ - "Washington" - ], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can write a file", - "difficulty": "interface", - "side_effects": [ - "" - ] - }, - "name": "TestWriteFile", - "task": "Write the word 'Washington' to a .txt file" - }, - "id": "agbenchmark/generate_test.py::TestWriteFile::test_method[challenge_data0]", - "label": "WriteFile", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "coding", - "general" - ], - "cutoff": 150, - "dependencies": [ - "TestUrlShortener" - ], - "eval_id": "504b1648-e14a-4982-8b27-074598eb4fd0", - "ground": { - "answer": "The correct python file for a TicTacToe game is written", - "eval": { - "type": "python" - }, - "files": [ - "test.py" - ], - "should_contain": [], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can create Tic-Tac-Toe game", - "difficulty": "basic", - "side_effects": [] - }, - "name": "TestTicTacToe", - "task": "Build a Tic-Tac-Toe game using a python CLI. Here are the specifications.\n\nThe Grid: The game board is a 3x3 grid, consisting of 3 rows and 3 columns, creating a total of 9 squares.\n\nPlayers: There are two players. One player uses the number \"1\", and the other player uses the number \"2\".\n\nTaking Turns: Players take turns to put their respective numbers (\"1\" or \"2\") in an empty square of the grid. Once a player has placed their number in a square, it cannot be changed or removed.\n\nObjective: The goal is to get three of your numbers in a row, either horizontally, vertically, or diagonally.\n\nEnd of the Game: The game concludes in one of two ways: One player gets three of their numbers in a row (horizontally, vertically, or diagonally) and is declared the winner.\nAll squares on the grid are filled, and no player has three in a row. This situation is a \"draw\" or a \"tie\".\n\nTechnical specifications:\nBuild a file called tic_tac_toe.py. This file will be called through command lines. You will have to prompt users for their move. Player 1 will always start.\nPlayers will input their move in the following format: \"x,y\" where x and y represent the location in the grid (0,0 is top left, 2,2 is bottom right).\n\nYour primary requirement is to halt the game when appropriate and to print only one of these three exact sentences:\n\n\"Player 1 won!\"\n\"Player 2 won!\"\n\"Draw\"\n\nEdge cases: A player can send an incorrect location. Either the location is incorrect or the square is already filled. In this case, this counts as doing nothing, and the player gets prompted for new locations again.\n\n\nYou will be expected to create a python file called tic_tac_toe.py that will run through command lines by using ```python tic_tac_toe.py```.\n\nHere is an example of how your tic_tac_toe.py game will be tested.\n```\nprocess = subprocess.Popen(\n ['python', 'tic_tac_toe.py'],\n stdout=subprocess.PIPE,\n text=True\n)\n\noutput, _ = process.communicate('\\n'.join([\"0,0\", \"1,0\", \"0,1\", \"1,1\", \"0,2\"]))\n\nassert \"Player 1 won!\" in output\n```" - }, - "id": "agbenchmark/generate_test.py::TestTicTacToe::test_method[challenge_data0]", - "label": "TicTacToe", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "coding" - ], - "cutoff": 90, - "dependencies": [ - "TestThreeSum" - ], - "eval_id": "ac75c471-e0ce-400c-ba9a-fb72aaab444f", - "ground": { - "answer": "password_generator.py is created and satisfies the requirements.", - "eval": { - "type": "python" - }, - "files": [ - "test.py" - ], - "should_contain": [], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can create a random password generator.", - "difficulty": "basic", - "side_effects": [] - }, - "name": "TestPasswordGenerator", - "task": "Create a random password generator. The password should have between 8 and 16 characters and should contain letters, numbers and symbols. The password should be printed to the console. The entry point will be a python file that can be run this way: python password_generator.py [--len x] where x is the length of the password. If no length is specified, the password should be 8 characters long. The password_generator can also be imported as a module and called as password = password_generator.generate_password(len=x). Any invalid input should raise a ValueError." - }, - "id": "agbenchmark/generate_test.py::TestPasswordGenerator::test_method[challenge_data0]", - "label": "PasswordGenerator", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "coding", - "general" - ], - "cutoff": 90, - "dependencies": [ - "TestPasswordGenerator" - ], - "eval_id": "029c1e6f-2b36-451e-bca6-60063b827d2e", - "ground": { - "answer": "The correct python file is written and organizes the files accordingly", - "eval": { - "type": "python" - }, - "files": [ - "test.py" - ], - "should_contain": [], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can create a file organizer.", - "difficulty": "basic", - "side_effects": [] - }, - "name": "TestFileOrganizer", - "task": "Create a file organizer CLI tool in Python that sorts files in a directory based on their file types (e.g., images, documents, audio) and moves them into these corresponding folders: 'images', 'documents', 'audio'. The entry point will be a python file that can be run this way: python organize_files.py --directory_path=YOUR_DIRECTORY_PATH" - }, - "id": "agbenchmark/generate_test.py::TestFileOrganizer::test_method[challenge_data0]", - "label": "FileOrganizer", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "coding", - "general" - ], - "cutoff": 60, - "dependencies": [ - "TestWriteFile" - ], - "eval_id": "a1ff38a4-1032-4bf2-960a-3b927f9936f4", - "ground": { - "answer": "The three_sum function coded properly.", - "eval": { - "type": "python" - }, - "files": [ - "test.py" - ], - "should_contain": [ - "[0, 1, 2]", - "[0, 2, 5]", - "[0, 2, 3]" - ], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can create the three_sum function.", - "difficulty": "basic", - "side_effects": [] - }, - "name": "TestThreeSum", - "task": "Create a three_sum function in a file called sample_code.py. Given an array of integers, return indices of the three numbers such that they add up to a specific target. You may assume that each input would have exactly one solution, and you may not use the same element twice. Example: Given nums = [2, 7, 11, 15], target = 20, Because nums[0] + nums[1] + nums[2] = 2 + 7 + 11 = 20, return [0, 1, 2]." - }, - "id": "agbenchmark/generate_test.py::TestThreeSum::test_method[challenge_data0]", - "label": "ThreeSum", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "coding", - "general" - ], - "cutoff": 90, - "dependencies": [ - "TestTicTacToe", - "TestReadFile" - ], - "eval_id": "4d613d05-475f-4f72-bf12-f6d3714340c1", - "ground": { - "answer": "The implementation of battleship that passes all the tests.", - "eval": { - "type": "pytest" - }, - "files": [], - "should_contain": [], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can create a Battleship.", - "difficulty": "expert", - "side_effects": [] - }, - "name": "TestBattleship", - "task": "Build a battleship game\n\nSpecifications:\n\nOverview: Battleship is a two-player strategy game where each player places their fleet of ships on a grid and tries to sink the opponent's fleet by guessing their locations.\nPlayers take turns calling out a row and column, attempting to name a square containing one of the opponent's ships.\n\nThe Grid: Each player's grid is a 10x10 grid, identified by rows (using numbers 1-10) and columns (using letters A-J).\n\nShips:\n\nCarrier - 5 squares\nBattleship - 4 squares\nCruiser - 3 squares\nSubmarine - 3 squares\nDestroyer - 2 squares\nEach ship occupies contiguous squares on the grid, arranged either horizontally or vertically.\n\nSetup:\n\nAt the start of the game, each player places their fleet on their grid. This setup is hidden from the opponent.\nThe game begins with Player 1, followed by Player 2, and so on.\nTaking Turns:\n\nOn a player's turn, they announce a grid square (e.g., \"D5\").\nThe opponent announces whether that square is a \"hit\" (if there's a part of a ship on that square) or \"miss\" (if the square is empty).\nIf a player hits a square occupied by a ship, they get another turn to guess. This continues until they make a miss, at which point their turn ends.\nIf a player hits all the squares occupied by a ship, the opponent must announce the sinking of that specific ship, e.g., \"You sank my Battleship!\"\n\nObjective: The goal is to sink all of your opponent's ships before they sink yours.\n\nEnd of the Game: The game ends when one player has sunk all of the opponent's ships. The winner is the player who sinks all the opposing fleet first.\n\nTechnical details:\nIn your root folder you will find an abstract class that defines the public interface of the Battleship class you will have to build:\n```\nfrom abc import ABC, abstractmethod\nfrom typing import Optional\n\nfrom pydantic import BaseModel, validator\n\n\n# Models for the request and response payloads\nclass ShipPlacement(BaseModel):\n ship_type: str\n start: dict # {\"row\": int, \"column\": str}\n direction: str\n\n @validator(\"start\")\n def validate_start(cls, start):\n row, column = start.get(\"row\"), start.get(\"column\")\n\n if not (1 <= row <= 10):\n raise ValueError(\"Row must be between 1 and 10 inclusive.\")\n\n if column not in list(\"ABCDEFGHIJ\"):\n raise ValueError(\"Column must be one of A, B, C, D, E, F, G, H, I, J.\")\n\n return start\n\n\nclass Turn(BaseModel):\n target: dict # {\"row\": int, \"column\": str}\n\n\nclass TurnResponse(BaseModel):\n result: str\n ship_type: Optional[str] # This would be None if the result is a miss\n\n\nclass GameStatus(BaseModel):\n is_game_over: bool\n winner: Optional[str]\n\n\nfrom typing import List\n\n\nclass Game(BaseModel):\n game_id: str\n players: List[str]\n board: dict # This could represent the state of the game board, you might need to flesh this out further\n ships: List[ShipPlacement] # List of ship placements for this game\n turns: List[Turn] # List of turns that have been taken\n\n\nclass AbstractBattleship(ABC):\n SHIP_LENGTHS = {\n \"carrier\": 5,\n \"battleship\": 4,\n \"cruiser\": 3,\n \"submarine\": 3,\n \"destroyer\": 2,\n }\n\n @abstractmethod\n def create_ship_placement(self, game_id: str, placement: ShipPlacement) -> None:\n \"\"\"\n Place a ship on the grid.\n \"\"\"\n pass\n\n @abstractmethod\n def create_turn(self, game_id: str, turn: Turn) -> TurnResponse:\n \"\"\"\n Players take turns to target a grid cell.\n \"\"\"\n pass\n\n @abstractmethod\n def get_game_status(self, game_id: str) -> GameStatus:\n \"\"\"\n Check if the game is over and get the winner if there's one.\n \"\"\"\n pass\n\n @abstractmethod\n def get_winner(self, game_id: str) -> str:\n \"\"\"\n Get the winner of the game.\n \"\"\"\n pass\n\n @abstractmethod\n def get_game(self) -> Game:\n \"\"\"\n Retrieve the state of the game.\n \"\"\"\n pass\n\n @abstractmethod\n def delete_game(self, game_id: str) -> None:\n \"\"\"\n Delete a game given its ID.\n \"\"\"\n pass\n\n @abstractmethod\n def create_game(self) -> None:\n \"\"\"\n Create a new game.\n \"\"\"\n pass\n\n```\nAt any moment you can run ```pytest``` to execute the tests.\nYou have two types of test: \n- positive tests => test the battleship game being used in ideal conditions\n- negative tests => tests the battleship game behaviour when used incorrectly\n\nSuccess criteria:\n- you will need to write a file called battleship.py that implements the abstract Battleship class.\n- this class will have to pass all the tests.\n- you're not allowed to modify any other file than the battleship.py. You can add other files as long as the main entrypoint is the battleship class." - }, - "id": "agbenchmark/generate_test.py::TestBattleship::test_method[challenge_data0]", - "label": "Battleship", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "coding" - ], - "cutoff": 150, - "dependencies": [ - "TestFileOrganizer" - ], - "eval_id": "8106fd7f-83fd-496e-9513-280f4a3f012c", - "ground": { - "answer": "The correct python file for a basic url shortener CLI", - "eval": { - "type": "python" - }, - "files": [ - "test.py" - ], - "should_contain": [], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can create a URL shortener.", - "difficulty": "basic", - "side_effects": [] - }, - "name": "TestUrlShortener", - "task": "Build a basic URL shortener using a python CLI. Here are the specifications.\n\nFunctionality: The program should have two primary functionalities.\n\nShorten a given URL.\nRetrieve the original URL from a shortened URL.\n\nCLI: The command-line interface should accept a URL as its first input. It should be able to determine if the url is a shortened url or not. If the url is not shortened, it will display ONLY the shortened url, otherwise, it will display ONLY the original unshortened URL. Afterwards, it should prompt the user for another URL to process.\n\nTechnical specifications:\nBuild a file called url_shortener.py. This file will be called through command lines.\n\nEdge cases:\nFor the sake of simplicity, there will be no edge cases, you can assume the input is always correct and the user immediately passes the shortened version of the url he just shortened.\n\nYou will be expected to create a python file called url_shortener.py that will run through command lines by using python url_shortener.py.\n\nThe url_shortener.py will be tested this way:\n```\nimport unittest\nfrom url_shortener import shorten_url, retrieve_url\n\nclass TestURLShortener(unittest.TestCase):\n def test_url_retrieval(self):\n # Shorten the URL to get its shortened form\n shortened_url = shorten_url('https://www.example.com')\n\n # Retrieve the original URL using the shortened URL directly\n retrieved_url = retrieve_url(shortened_url)\n\n self.assertEqual(retrieved_url, 'https://www.example.com', \"Retrieved URL does not match the original!\")\n\nif __name__ == \"__main__\":\n unittest.main()\n```" - }, - "id": "agbenchmark/generate_test.py::TestUrlShortener::test_method[challenge_data0]", - "label": "UrlShortener", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "scrape_synthesize", - "general" - ], - "cutoff": 60, - "dependencies": [ - "TestSearch" - ], - "eval_id": "cd96e6b2-779d-4a4a-8367-d520023e27ae", - "ground": { - "answer": "\u00a325.89", - "eval": { - "type": "file" - }, - "files": [ - ".txt" - ], - "should_contain": [ - "25.89" - ], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can retrieve a specific information from a website.", - "difficulty": "basic", - "side_effects": [] - }, - "name": "TestBasicRetrieval", - "task": "Write the price of the book in this url 'http://books.toscrape.com/catalogue/meditations_33/index.html' to a .txt file." - }, - "id": "agbenchmark/generate_test.py::TestBasicRetrieval::test_method[challenge_data0]", - "label": "BasicRetrieval", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "scrape_synthesize", - "general" - ], - "cutoff": 60, - "dependencies": [ - "TestRevenueRetrieval2" - ], - "eval_id": "1758058c-f726-484f-96fa-f05e278e5ff5", - "ground": { - "answer": "The twitter handles of the two hosts of Latent Space.", - "eval": { - "type": "file" - }, - "files": [ - "output.txt" - ], - "should_contain": [ - "swyx", - "FanaHOVA" - ], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can retrieve twitter handles given a vague description.", - "difficulty": "intermediate", - "side_effects": [ - "" - ] - }, - "name": "TestTestGetInformation", - "task": "Write the twitter handle of the two hosts of Latent Space to a file called output.txt" - }, - "id": "agbenchmark/generate_test.py::TestTestGetInformation::test_method[challenge_data0]", - "label": "TestGetInformation", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "scrape_synthesize" - ], - "cutoff": 60, - "dependencies": [ - "TestRevenueRetrieval" - ], - "eval_id": "552bdf23-db40-4bd1-b123-4ed820886cc1", - "ground": { - "answer": "15 Millions\n112 Millions\n117 Millions\n204 Millions\n413 Millions\n2,014 Millions\n3,198 Millions\n4,046 Millions\n7,000 Millions\n11,759 Millions\n21,461 Millions\n24,578 Millions\n31,536 Millions\n53,823 Millions\n81,462 Millions", - "eval": { - "type": "file" - }, - "files": [ - ".txt" - ], - "should_contain": [ - "15", - "112", - "117", - "204", - "413", - "2,014", - "3,198", - "4,046", - "7,000", - "11,759", - "21,461", - "24,578", - "31,536", - "53,823", - "81,462" - ], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can retrieve all the revenues of Tesla since its creation.", - "difficulty": "intermediate", - "side_effects": [ - "tests if there is in fact an LLM attached" - ] - }, - "name": "TestRevenueRetrieval2", - "task": "Write tesla's revenue every year since its creation into a .txt file. Use the US notation, with a precision rounded to the nearest million dollars (for instance, $31,578 million)." - }, - "id": "agbenchmark/generate_test.py::TestRevenueRetrieval2::test_method[challenge_data0]", - "label": "RevenueRetrieval2", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "scrape_synthesize", - "general" - ], - "cutoff": 60, - "dependencies": [ - "TestBasicRetrieval" - ], - "eval_id": "dc2114d7-1597-4c9b-bed0-a97937ad977f", - "ground": { - "answer": "It was $81.462 billion in 2022. In millions the answer is 81,462.", - "eval": { - "type": "file" - }, - "files": [ - ".txt" - ], - "should_contain": [ - "81,462" - ], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can retrieve Tesla's revenue in 2022.", - "difficulty": "intermediate", - "side_effects": [] - }, - "name": "TestRevenueRetrieval", - "task": "Write tesla's exact revenue in 2022 into a .txt file. Use the US notation, with a precision rounded to the nearest million dollars (for instance, $31,578 million)." - }, - "id": "agbenchmark/generate_test.py::TestRevenueRetrieval::test_method[challenge_data0]", - "label": "RevenueRetrieval", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "general", - "scrape_synthesize" - ], - "cutoff": 120, - "dependencies": [ - "TestWriteFile" - ], - "eval_id": "0bb23182-b434-402b-a73e-9c226469b959", - "ground": { - "answer": "This is a Heading\nThis is a paragraph.", - "eval": { - "type": "file" - }, - "files": [ - ".txt" - ], - "should_contain": [ - "Heading", - "paragraph" - ], - "should_not_contain": [ - "The", - "the" - ] - }, - "info": { - "description": "Tests if the agent can search.", - "difficulty": "interface", - "side_effects": [ - "" - ] - }, - "name": "TestSearch", - "task": "Open 'https://silennaihin.com/random/plain.html' and paste all of the text on the page in a .txt file" - }, - "id": "agbenchmark/generate_test.py::TestSearch::test_method[challenge_data0]", - "label": "Search", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "data" - ], - "cutoff": 90, - "dependencies": [ - "TestAnswerQuestionSmallCsv" - ], - "eval_id": "bb6e0a4b-7faf-4aa6-a524-548cddbc2732", - "ground": { - "answer": "The correct amount spent on utilities.", - "eval": { - "type": "file" - }, - "files": [ - "output.txt" - ], - "should_contain": [ - "1861" - ] - }, - "info": { - "description": "Tests if the agent can answer a question from a csv", - "difficulty": "intermediate", - "side_effects": [ - "" - ] - }, - "name": "TestAnswerQuestionCsv", - "task": "How much was spent on utilities in total ? Write the answer in an output.txt file." - }, - "id": "agbenchmark/generate_test.py::TestAnswerQuestionCsv::test_method[challenge_data0]", - "label": "AnswerQuestionCsv", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "data", - "general" - ], - "cutoff": 120, - "dependencies": [ - "TestAnswerQuestionCsv", - "TestCombineCsv" - ], - "eval_id": "b1bb61cd-3d09-4a69-bb2a-9dbb3c477589", - "ground": { - "answer": "The correct amount spent on utilities.", - "eval": { - "type": "file" - }, - "files": [ - "output.txt" - ], - "should_contain": [ - "1861" - ] - }, - "info": { - "description": "Tests if the agent can answer a question from a csv", - "difficulty": "intermediate", - "side_effects": [ - "" - ] - }, - "name": "TestAnswerQuestionCombineCsv", - "task": "How much was spent on utilities in total ? Write the answer in an output.txt file." - }, - "id": "agbenchmark/generate_test.py::TestAnswerQuestionCombineCsv::test_method[challenge_data0]", - "label": "AnswerQuestionCombineCsv", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "data", - "general" - ], - "cutoff": 60, - "dependencies": [ - "TestReadFile" - ], - "eval_id": "d59ec964-6f67-4b3d-a4de-c4436fc76f95", - "ground": { - "answer": "The csv sorted by date", - "eval": { - "type": "file" - }, - "files": [ - "output.csv" - ], - "should_contain": [ - "id,name,timestamp\n1,Bob,2023-09-24 12:05:00\n2,Charlie,2023-09-24 12:10:00\n3,Alice,2023-09-25 14:10:00\n4,David,2023-09-26 16:20:00" - ] - }, - "info": { - "description": "Tests if the agent can sort a csv", - "difficulty": "basic", - "side_effects": [ - "" - ] - }, - "name": "TestSortCsv", - "task": "Sort the input.csv by the 'timestamp' column and write the new csv in the output.csv file. The order of the columns should be preserved." - }, - "id": "agbenchmark/generate_test.py::TestSortCsv::test_method[challenge_data0]", - "label": "SortCsv", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "data", - "general" - ], - "cutoff": 60, - "dependencies": [ - "TestReadFile" - ], - "eval_id": "9df3f07a-5047-488f-b788-1e1f57eba970", - "ground": { - "answer": "The correct amount spent on utilities.", - "eval": { - "type": "file" - }, - "files": [ - "output.txt" - ], - "should_contain": [ - "84" - ] - }, - "info": { - "description": "Tests if the agent can answer a question from a small csv", - "difficulty": "intermediate", - "side_effects": [ - "" - ] - }, - "name": "TestAnswerQuestionSmallCsv", - "task": "How much was spent on utilities in total ? Write the answer in an output.txt file." - }, - "id": "agbenchmark/generate_test.py::TestAnswerQuestionSmallCsv::test_method[challenge_data0]", - "label": "AnswerQuestionSmallCsv", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "data", - "general" - ], - "cutoff": 60, - "dependencies": [ - "TestLabelCsv" - ], - "eval_id": "52467beb-b951-4356-9776-9a0ae46bb33b", - "ground": { - "answer": "The csv data is combined", - "eval": { - "type": "file" - }, - "files": [ - "output.csv" - ], - "should_contain": [ - "Age,ID,Name,Occupation,Salary\n28,101,John,Engineer,80000\n34,102,Alice,Doctor,120000\n45,103,Bob,Lawyer,95000" - ] - }, - "info": { - "description": "Tests if the agent can combine data from a csv", - "difficulty": "intermediate", - "side_effects": [ - "" - ] - }, - "name": "TestCombineCsv", - "task": "The csvs 'file1.csv' and 'file2.csv' both have a column 'ID'. Combine these 2 csvs using the 'ID' column. Sort the rows by ID in ascending order and the columns alphabetically. Write the output in output.csv" - }, - "id": "agbenchmark/generate_test.py::TestCombineCsv::test_method[challenge_data0]", - "label": "CombineCsv", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "data" - ], - "cutoff": 60, - "dependencies": [ - "TestSortCsv" - ], - "eval_id": "6e2bf1f0-6842-4704-8ed1-b17c2065bbac", - "ground": { - "answer": "The csv labelled", - "eval": { - "type": "file" - }, - "files": [ - "output.csv" - ], - "should_contain": [ - "Item,Color\nBanana,yellow\nLeaf,green\nSky,blue\nSunflower,yellow\nGrass,green\nJeans,blue\nLemon,yellow\nTree,green\nOcean,blue\nDaisy,yellow\nFern,green" - ] - }, - "info": { - "description": "Tests if the agent can label data in a csv", - "difficulty": "basic", - "side_effects": [ - "" - ] - }, - "name": "TestLabelCsv", - "task": "The csv 'input.csv' has many items. create a 'Color' column for these items and classify them as either 'blue', 'green', or 'yellow' depending on what the most likely color is. Preserve the order of the rows. The color column should be the second column. Write the output in output.csv" - }, - "id": "agbenchmark/generate_test.py::TestLabelCsv::test_method[challenge_data0]", - "label": "LabelCsv", - "shape": "dot" - }, - { - "color": "grey", - "data": { - "category": [ - "scrape_synthesize", - "general" - ], - "cutoff": 240, - "dependencies": [ - "TestReadFile" - ], - "eval_id": "895ae28a-4513-44ea-a872-0164771d1597", - "ground": { - "answer": "A report highlighting elements from the 2 files.", - "eval": { - "scoring": "binary", - "template": "question", - "type": "llm" - }, - "files": [ - "output.txt" - ], - "should_contain": [ - "Is the company mentioned in the output actively addressing or capitalizing on the challenges or trends listed?" - ], - "should_not_contain": [] - }, - "info": { - "description": "Tests if the agent can generate content based on the content of 2 files.", - "difficulty": "basic", - "side_effects": [] - }, - "name": "TestSynthesizeInfo", - "task": "Create a brief report or summary highlighting how one or more companies from companies.txt are addressing or capitalizing on challenges or trends from challenges.txt. Write a file called output.txt." - }, - "id": "agbenchmark/generate_test.py::TestSynthesizeInfo::test_method[challenge_data0]", - "label": "SynthesizeInfo", - "shape": "dot" - } - ] -} diff --git a/classic/frontend/build/web/assets/fonts/MaterialIcons-Regular.otf b/classic/frontend/build/web/assets/fonts/MaterialIcons-Regular.otf deleted file mode 100644 index 45fcb70e81..0000000000 Binary files a/classic/frontend/build/web/assets/fonts/MaterialIcons-Regular.otf and /dev/null differ diff --git a/classic/frontend/build/web/assets/packages/cupertino_icons/assets/CupertinoIcons.ttf b/classic/frontend/build/web/assets/packages/cupertino_icons/assets/CupertinoIcons.ttf deleted file mode 100644 index 57386a19d7..0000000000 Binary files a/classic/frontend/build/web/assets/packages/cupertino_icons/assets/CupertinoIcons.ttf and /dev/null differ diff --git a/classic/frontend/build/web/assets/packages/fluttertoast/assets/toastify.css b/classic/frontend/build/web/assets/packages/fluttertoast/assets/toastify.css deleted file mode 100644 index 2d0471ef9f..0000000000 --- a/classic/frontend/build/web/assets/packages/fluttertoast/assets/toastify.css +++ /dev/null @@ -1,14 +0,0 @@ -/** - * Minified by jsDelivr using clean-css v4.2.3. - * Original file: /npm/toastify-js@1.9.3/src/toastify.css - * - * Do NOT use SRI with dynamically generated files! More information: https://www.jsdelivr.com/using-sri-with-dynamic-files - */ -/*! - * Toastify js 1.9.3 - * https://github.com/apvarun/toastify-js - * @license MIT licensed - * - * Copyright (C) 2018 Varun A P - */ -.toastify{padding:12px 20px;color:#fff;display:inline-block;box-shadow:0 3px 6px -1px rgba(0,0,0,.12),0 10px 36px -4px rgba(77,96,232,.3);background:-webkit-linear-gradient(315deg,#73a5ff,#5477f5);background:linear-gradient(135deg,#73a5ff,#5477f5);position:fixed;opacity:0;transition:all .4s cubic-bezier(.215,.61,.355,1);border-radius:2px;cursor:pointer;text-decoration:none;max-width:calc(50% - 20px);z-index:2147483647}.toastify.on{opacity:1}.toast-close{opacity:.4;padding:0 5px}.toastify-right{right:15px}.toastify-left{left:15px}.toastify-top{top:-150px}.toastify-bottom{bottom:-150px}.toastify-rounded{border-radius:25px}.toastify-avatar{width:1.5em;height:1.5em;margin:-7px 5px;border-radius:2px}.toastify-center{margin-left:auto;margin-right:auto;left:0;right:0;max-width:fit-content;max-width:-moz-fit-content}@media only screen and (max-width:360px){.toastify-left,.toastify-right{margin-left:auto;margin-right:auto;left:0;right:0;max-width:fit-content}} \ No newline at end of file diff --git a/classic/frontend/build/web/assets/packages/fluttertoast/assets/toastify.js b/classic/frontend/build/web/assets/packages/fluttertoast/assets/toastify.js deleted file mode 100644 index 3bb0860a09..0000000000 --- a/classic/frontend/build/web/assets/packages/fluttertoast/assets/toastify.js +++ /dev/null @@ -1,14 +0,0 @@ -/** - * Minified by jsDelivr using Terser v5.3.0. - * Original file: /npm/toastify-js@1.9.3/src/toastify.js - * - * Do NOT use SRI with dynamically generated files! More information: https://www.jsdelivr.com/using-sri-with-dynamic-files - */ -/*! - * Toastify js 1.9.3 - * https://github.com/apvarun/toastify-js - * @license MIT licensed - * - * Copyright (C) 2018 Varun A P - */ -!function(t,o){"object"==typeof module && module && module.exports?module.exports=o():t.Toastify=o()}(this,(function(t){var o=function(t){return new o.lib.init(t)};function i(t,o){return o.offset[t]?isNaN(o.offset[t])?o.offset[t]:o.offset[t]+"px":"0px"}function s(t,o){return!(!t||"string"!=typeof o)&&!!(t.className&&t.className.trim().split(/\s+/gi).indexOf(o)>-1)}return o.lib=o.prototype={toastify:"1.9.3",constructor:o,init:function(t){return t||(t={}),this.options={},this.toastElement=null,this.options.text=t.text||"Hi there!",this.options.node=t.node,this.options.duration=0===t.duration?0:t.duration||3e3,this.options.selector=t.selector,this.options.callback=t.callback||function(){},this.options.destination=t.destination,this.options.newWindow=t.newWindow||!1,this.options.close=t.close||!1,this.options.gravity="bottom"===t.gravity?"toastify-bottom":"toastify-top",this.options.positionLeft=t.positionLeft||!1,this.options.position=t.position||"",this.options.backgroundColor=t.backgroundColor,this.options.avatar=t.avatar||"",this.options.className=t.className||"",this.options.stopOnFocus=void 0===t.stopOnFocus||t.stopOnFocus,this.options.onClick=t.onClick,this.options.offset=t.offset||{x:0,y:0},this},buildToast:function(){if(!this.options)throw"Toastify is not initialized";var t=document.createElement("div");if(t.className="toastify on "+this.options.className,this.options.position?t.className+=" toastify-"+this.options.position:!0===this.options.positionLeft?(t.className+=" toastify-left",console.warn("Property `positionLeft` will be depreciated in further versions. Please use `position` instead.")):t.className+=" toastify-right",t.className+=" "+this.options.gravity,this.options.backgroundColor&&(t.style.background=this.options.backgroundColor),this.options.node&&this.options.node.nodeType===Node.ELEMENT_NODE)t.appendChild(this.options.node);else if(t.innerHTML=this.options.text,""!==this.options.avatar){var o=document.createElement("img");o.src=this.options.avatar,o.className="toastify-avatar","left"==this.options.position||!0===this.options.positionLeft?t.appendChild(o):t.insertAdjacentElement("afterbegin",o)}if(!0===this.options.close){var s=document.createElement("span");s.innerHTML="✖",s.className="toast-close",s.addEventListener("click",function(t){t.stopPropagation(),this.removeElement(this.toastElement),window.clearTimeout(this.toastElement.timeOutValue)}.bind(this));var n=window.innerWidth>0?window.innerWidth:screen.width;("left"==this.options.position||!0===this.options.positionLeft)&&n>360?t.insertAdjacentElement("afterbegin",s):t.appendChild(s)}if(this.options.stopOnFocus&&this.options.duration>0){var e=this;t.addEventListener("mouseover",(function(o){window.clearTimeout(t.timeOutValue)})),t.addEventListener("mouseleave",(function(){t.timeOutValue=window.setTimeout((function(){e.removeElement(t)}),e.options.duration)}))}if(void 0!==this.options.destination&&t.addEventListener("click",function(t){t.stopPropagation(),!0===this.options.newWindow?window.open(this.options.destination,"_blank"):window.location=this.options.destination}.bind(this)),"function"==typeof this.options.onClick&&void 0===this.options.destination&&t.addEventListener("click",function(t){t.stopPropagation(),this.options.onClick()}.bind(this)),"object"==typeof this.options.offset){var a=i("x",this.options),p=i("y",this.options),r="left"==this.options.position?a:"-"+a,l="toastify-top"==this.options.gravity?p:"-"+p;t.style.transform="translate("+r+","+l+")"}return t},showToast:function(){var t;if(this.toastElement=this.buildToast(),!(t=void 0===this.options.selector?document.body:document.getElementById(this.options.selector)))throw"Root element is not defined";return t.insertBefore(this.toastElement,t.firstChild),o.reposition(),this.options.duration>0&&(this.toastElement.timeOutValue=window.setTimeout(function(){this.removeElement(this.toastElement)}.bind(this),this.options.duration)),this},hideToast:function(){this.toastElement.timeOutValue&&clearTimeout(this.toastElement.timeOutValue),this.removeElement(this.toastElement)},removeElement:function(t){t.className=t.className.replace(" on",""),window.setTimeout(function(){this.options.node&&this.options.node.parentNode&&this.options.node.parentNode.removeChild(this.options.node),t.parentNode&&t.parentNode.removeChild(t),this.options.callback.call(t),o.reposition()}.bind(this),400)}},o.reposition=function(){for(var t,o={top:15,bottom:15},i={top:15,bottom:15},n={top:15,bottom:15},e=document.getElementsByClassName("toastify"),a=0;a0?window.innerWidth:screen.width)<=360?(e[a].style[t]=n[t]+"px",n[t]+=p+15):!0===s(e[a],"toastify-left")?(e[a].style[t]=o[t]+"px",o[t]+=p+15):(e[a].style[t]=i[t]+"px",i[t]+=p+15)}return this},o.lib.init.prototype=o.lib,o})); diff --git a/classic/frontend/build/web/assets/shaders/ink_sparkle.frag b/classic/frontend/build/web/assets/shaders/ink_sparkle.frag deleted file mode 100644 index 3591af4194..0000000000 --- a/classic/frontend/build/web/assets/shaders/ink_sparkle.frag +++ /dev/null @@ -1,160 +0,0 @@ -{ - "sksl": "// This SkSL shader is autogenerated by spirv-cross.\n\nfloat4 flutter_FragCoord;\n\nuniform vec4 u_color;\nuniform float u_alpha;\nuniform vec4 u_sparkle_color;\nuniform float u_sparkle_alpha;\nuniform float u_blur;\nuniform vec2 u_center;\nuniform float u_radius_scale;\nuniform float u_max_radius;\nuniform vec2 u_resolution_scale;\nuniform vec2 u_noise_scale;\nuniform float u_noise_phase;\nuniform vec2 u_circle1;\nuniform vec2 u_circle2;\nuniform vec2 u_circle3;\nuniform vec2 u_rotation1;\nuniform vec2 u_rotation2;\nuniform vec2 u_rotation3;\n\nvec4 fragColor;\n\nvec2 FLT_flutter_local_FlutterFragCoord()\n{\n return flutter_FragCoord.xy;\n}\n\nmat2 FLT_flutter_local_rotate2d(vec2 rad)\n{\n return mat2(vec2(rad.x, -rad.y), vec2(rad.y, rad.x));\n}\n\nfloat FLT_flutter_local_soft_circle(vec2 uv, vec2 xy, float radius, float blur)\n{\n float blur_half = blur * 0.5;\n float d = distance(uv, xy);\n return 1.0 - smoothstep(1.0 - blur_half, 1.0 + blur_half, d / radius);\n}\n\nfloat FLT_flutter_local_circle_grid(vec2 resolution, inout vec2 p, vec2 xy, vec2 rotation, float cell_diameter)\n{\n vec2 param = rotation;\n p = (FLT_flutter_local_rotate2d(param) * (xy - p)) + xy;\n p = mod(p, vec2(cell_diameter)) / resolution;\n float cell_uv = (cell_diameter / resolution.y) * 0.5;\n float r = 0.64999997615814208984375 * cell_uv;\n vec2 param_1 = p;\n vec2 param_2 = vec2(cell_uv);\n float param_3 = r;\n float param_4 = r * 50.0;\n return FLT_flutter_local_soft_circle(param_1, param_2, param_3, param_4);\n}\n\nfloat FLT_flutter_local_turbulence(vec2 uv)\n{\n vec2 uv_scale = uv * vec2(0.800000011920928955078125);\n vec2 param = vec2(0.800000011920928955078125);\n vec2 param_1 = uv_scale;\n vec2 param_2 = u_circle1;\n vec2 param_3 = u_rotation1;\n float param_4 = 0.17000000178813934326171875;\n float _301 = FLT_flutter_local_circle_grid(param, param_1, param_2, param_3, param_4);\n float g1 = _301;\n vec2 param_5 = vec2(0.800000011920928955078125);\n vec2 param_6 = uv_scale;\n vec2 param_7 = u_circle2;\n vec2 param_8 = u_rotation2;\n float param_9 = 0.20000000298023223876953125;\n float _313 = FLT_flutter_local_circle_grid(param_5, param_6, param_7, param_8, param_9);\n float g2 = _313;\n vec2 param_10 = vec2(0.800000011920928955078125);\n vec2 param_11 = uv_scale;\n vec2 param_12 = u_circle3;\n vec2 param_13 = u_rotation3;\n float param_14 = 0.2750000059604644775390625;\n float _326 = FLT_flutter_local_circle_grid(param_10, param_11, param_12, param_13, param_14);\n float g3 = _326;\n float v = (((g1 * g1) + g2) - g3) * 0.5;\n return clamp(0.449999988079071044921875 + (0.800000011920928955078125 * v), 0.0, 1.0);\n}\n\nfloat FLT_flutter_local_soft_ring(vec2 uv, vec2 xy, float radius, float thickness, float blur)\n{\n vec2 param = uv;\n vec2 param_1 = xy;\n float param_2 = radius + thickness;\n float param_3 = blur;\n float circle_outer = FLT_flutter_local_soft_circle(param, param_1, param_2, param_3);\n vec2 param_4 = uv;\n vec2 param_5 = xy;\n float param_6 = max(radius - thickness, 0.0);\n float param_7 = blur;\n float circle_inner = FLT_flutter_local_soft_circle(param_4, param_5, param_6, param_7);\n return clamp(circle_outer - circle_inner, 0.0, 1.0);\n}\n\nfloat FLT_flutter_local_triangle_noise(inout vec2 n)\n{\n n = fract(n * vec2(5.398700237274169921875, 5.442100048065185546875));\n n += vec2(dot(n.yx, n + vec2(21.5351009368896484375, 14.3136997222900390625)));\n float xy = n.x * n.y;\n return (fract(xy * 95.43070220947265625) + fract(xy * 75.0496063232421875)) - 1.0;\n}\n\nfloat FLT_flutter_local_threshold(float v, float l, float h)\n{\n return step(l, v) * (1.0 - step(h, v));\n}\n\nfloat FLT_flutter_local_sparkle(vec2 uv, float t)\n{\n vec2 param = uv;\n float _224 = FLT_flutter_local_triangle_noise(param);\n float n = _224;\n float param_1 = n;\n float param_2 = 0.0;\n float param_3 = 0.0500000007450580596923828125;\n float s = FLT_flutter_local_threshold(param_1, param_2, param_3);\n float param_4 = n + sin(3.1415927410125732421875 * (t + 0.3499999940395355224609375));\n float param_5 = 0.100000001490116119384765625;\n float param_6 = 0.1500000059604644775390625;\n s += FLT_flutter_local_threshold(param_4, param_5, param_6);\n float param_7 = n + sin(3.1415927410125732421875 * (t + 0.699999988079071044921875));\n float param_8 = 0.20000000298023223876953125;\n float param_9 = 0.25;\n s += FLT_flutter_local_threshold(param_7, param_8, param_9);\n float param_10 = n + sin(3.1415927410125732421875 * (t + 1.0499999523162841796875));\n float param_11 = 0.300000011920928955078125;\n float param_12 = 0.3499999940395355224609375;\n s += FLT_flutter_local_threshold(param_10, param_11, param_12);\n return clamp(s, 0.0, 1.0) * 0.550000011920928955078125;\n}\n\nvoid FLT_main()\n{\n vec2 p = FLT_flutter_local_FlutterFragCoord();\n vec2 uv_1 = p * u_resolution_scale;\n vec2 density_uv = uv_1 - mod(p, u_noise_scale);\n float radius = u_max_radius * u_radius_scale;\n vec2 param_13 = uv_1;\n float turbulence = FLT_flutter_local_turbulence(param_13);\n vec2 param_14 = p;\n vec2 param_15 = u_center;\n float param_16 = radius;\n float param_17 = 0.0500000007450580596923828125 * u_max_radius;\n float param_18 = u_blur;\n float ring = FLT_flutter_local_soft_ring(param_14, param_15, param_16, param_17, param_18);\n vec2 param_19 = density_uv;\n float param_20 = u_noise_phase;\n float sparkle = ((FLT_flutter_local_sparkle(param_19, param_20) * ring) * turbulence) * u_sparkle_alpha;\n vec2 param_21 = p;\n vec2 param_22 = u_center;\n float param_23 = radius;\n float param_24 = u_blur;\n float wave_alpha = (FLT_flutter_local_soft_circle(param_21, param_22, param_23, param_24) * u_alpha) * u_color.w;\n vec4 wave_color = vec4(u_color.xyz * wave_alpha, wave_alpha);\n vec4 sparkle_color = vec4(u_sparkle_color.xyz * u_sparkle_color.w, u_sparkle_color.w);\n fragColor = mix(wave_color, sparkle_color, vec4(sparkle));\n}\n\nhalf4 main(float2 iFragCoord)\n{\n flutter_FragCoord = float4(iFragCoord, 0, 0);\n FLT_main();\n return fragColor;\n}\n", - "stage": 1, - "target_platform": 2, - "uniforms": [ - { - "array_elements": 0, - "bit_width": 32, - "columns": 1, - "location": 0, - "name": "u_color", - "rows": 4, - "type": 10 - }, - { - "array_elements": 0, - "bit_width": 32, - "columns": 1, - "location": 1, - "name": "u_alpha", - "rows": 1, - "type": 10 - }, - { - "array_elements": 0, - "bit_width": 32, - "columns": 1, - "location": 2, - "name": "u_sparkle_color", - "rows": 4, - "type": 10 - }, - { - "array_elements": 0, - "bit_width": 32, - "columns": 1, - "location": 3, - "name": "u_sparkle_alpha", - "rows": 1, - "type": 10 - }, - { - "array_elements": 0, - "bit_width": 32, - "columns": 1, - "location": 4, - "name": "u_blur", - "rows": 1, - "type": 10 - }, - { - "array_elements": 0, - "bit_width": 32, - "columns": 1, - "location": 5, - "name": "u_center", - "rows": 2, - "type": 10 - }, - { - "array_elements": 0, - "bit_width": 32, - "columns": 1, - "location": 6, - "name": "u_radius_scale", - "rows": 1, - "type": 10 - }, - { - "array_elements": 0, - "bit_width": 32, - "columns": 1, - "location": 7, - "name": "u_max_radius", - "rows": 1, - "type": 10 - }, - { - "array_elements": 0, - "bit_width": 32, - "columns": 1, - "location": 8, - "name": "u_resolution_scale", - "rows": 2, - "type": 10 - }, - { - "array_elements": 0, - "bit_width": 32, - "columns": 1, - "location": 9, - "name": "u_noise_scale", - "rows": 2, - "type": 10 - }, - { - "array_elements": 0, - "bit_width": 32, - "columns": 1, - "location": 10, - "name": "u_noise_phase", - "rows": 1, - "type": 10 - }, - { - "array_elements": 0, - "bit_width": 32, - "columns": 1, - "location": 11, - "name": "u_circle1", - "rows": 2, - "type": 10 - }, - { - "array_elements": 0, - "bit_width": 32, - "columns": 1, - "location": 12, - "name": "u_circle2", - "rows": 2, - "type": 10 - }, - { - "array_elements": 0, - "bit_width": 32, - "columns": 1, - "location": 13, - "name": "u_circle3", - "rows": 2, - "type": 10 - }, - { - "array_elements": 0, - "bit_width": 32, - "columns": 1, - "location": 14, - "name": "u_rotation1", - "rows": 2, - "type": 10 - }, - { - "array_elements": 0, - "bit_width": 32, - "columns": 1, - "location": 15, - "name": "u_rotation2", - "rows": 2, - "type": 10 - }, - { - "array_elements": 0, - "bit_width": 32, - "columns": 1, - "location": 16, - "name": "u_rotation3", - "rows": 2, - "type": 10 - } - ] -} \ No newline at end of file diff --git a/classic/frontend/build/web/canvaskit/canvaskit.js b/classic/frontend/build/web/canvaskit/canvaskit.js deleted file mode 100644 index 9d5f886353..0000000000 --- a/classic/frontend/build/web/canvaskit/canvaskit.js +++ /dev/null @@ -1,222 +0,0 @@ - -var CanvasKitInit = (() => { - var _scriptDir = typeof document !== 'undefined' && document.currentScript ? document.currentScript.src : undefined; - if (typeof __filename !== 'undefined') _scriptDir = _scriptDir || __filename; - return ( -function(CanvasKitInit = {}) { - -var r;r||(r=typeof CanvasKitInit !== 'undefined' ? CanvasKitInit : {});var aa,ba;r.ready=new Promise(function(a,b){aa=a;ba=b}); -(function(a){a.Nd=a.Nd||[];a.Nd.push(function(){a.MakeSWCanvasSurface=function(b){var c=b,e="undefined"!==typeof OffscreenCanvas&&c instanceof OffscreenCanvas;if(!("undefined"!==typeof HTMLCanvasElement&&c instanceof HTMLCanvasElement||e||(c=document.getElementById(b),c)))throw"Canvas with id "+b+" was not found";if(b=a.MakeSurface(c.width,c.height))b.ke=c;return b};a.MakeCanvasSurface||(a.MakeCanvasSurface=a.MakeSWCanvasSurface);a.MakeSurface=function(b,c){var e={width:b,height:c,colorType:a.ColorType.RGBA_8888, -alphaType:a.AlphaType.Unpremul,colorSpace:a.ColorSpace.SRGB},f=b*c*4,k=a._malloc(f);if(e=a.Surface._makeRasterDirect(e,k,4*b))e.ke=null,e.Ve=b,e.Se=c,e.Te=f,e.ue=k,e.getCanvas().clear(a.TRANSPARENT);return e};a.MakeRasterDirectSurface=function(b,c,e){return a.Surface._makeRasterDirect(b,c.byteOffset,e)};a.Surface.prototype.flush=function(b){a.Kd(this.Jd);this._flush();if(this.ke){var c=new Uint8ClampedArray(a.HEAPU8.buffer,this.ue,this.Te);c=new ImageData(c,this.Ve,this.Se);b?this.ke.getContext("2d").putImageData(c, -0,0,b[0],b[1],b[2]-b[0],b[3]-b[1]):this.ke.getContext("2d").putImageData(c,0,0)}};a.Surface.prototype.dispose=function(){this.ue&&a._free(this.ue);this.delete()};a.Kd=a.Kd||function(){};a.le=a.le||function(){return null}})})(r); -(function(a){a.Nd=a.Nd||[];a.Nd.push(function(){function b(l,q,x){return l&&l.hasOwnProperty(q)?l[q]:x}function c(l){var q=ca(ea);ea[q]=l;return q}function e(l){return l.naturalHeight||l.videoHeight||l.displayHeight||l.height}function f(l){return l.naturalWidth||l.videoWidth||l.displayWidth||l.width}function k(l,q,x,y){l.bindTexture(l.TEXTURE_2D,q);y||x.alphaType!==a.AlphaType.Premul||l.pixelStorei(l.UNPACK_PREMULTIPLY_ALPHA_WEBGL,!0);return q}function m(l,q,x){x||q.alphaType!==a.AlphaType.Premul|| -l.pixelStorei(l.UNPACK_PREMULTIPLY_ALPHA_WEBGL,!1);l.bindTexture(l.TEXTURE_2D,null)}a.GetWebGLContext=function(l,q){if(!l)throw"null canvas passed into makeWebGLContext";var x={alpha:b(q,"alpha",1),depth:b(q,"depth",1),stencil:b(q,"stencil",8),antialias:b(q,"antialias",0),premultipliedAlpha:b(q,"premultipliedAlpha",1),preserveDrawingBuffer:b(q,"preserveDrawingBuffer",0),preferLowPowerToHighPerformance:b(q,"preferLowPowerToHighPerformance",0),failIfMajorPerformanceCaveat:b(q,"failIfMajorPerformanceCaveat", -0),enableExtensionsByDefault:b(q,"enableExtensionsByDefault",1),explicitSwapControl:b(q,"explicitSwapControl",0),renderViaOffscreenBackBuffer:b(q,"renderViaOffscreenBackBuffer",0)};x.majorVersion=q&&q.majorVersion?q.majorVersion:"undefined"!==typeof WebGL2RenderingContext?2:1;if(x.explicitSwapControl)throw"explicitSwapControl is not supported";l=fa(l,x);if(!l)return 0;ha(l);u.Ud.getExtension("WEBGL_debug_renderer_info");return l};a.deleteContext=function(l){u===ia[l]&&(u=null);"object"==typeof JSEvents&& -JSEvents.Af(ia[l].Ud.canvas);ia[l]&&ia[l].Ud.canvas&&(ia[l].Ud.canvas.Ke=void 0);ia[l]=null};a._setTextureCleanup({deleteTexture:function(l,q){var x=ea[q];x&&ia[l].Ud.deleteTexture(x);ea[q]=null}});a.MakeWebGLContext=function(l){if(!this.Kd(l))return null;var q=this._MakeGrContext();if(!q)return null;q.Jd=l;var x=q.delete.bind(q);q["delete"]=function(){a.Kd(this.Jd);x()}.bind(q);return u.we=q};a.MakeGrContext=a.MakeWebGLContext;a.GrDirectContext.prototype.getResourceCacheLimitBytes=function(){a.Kd(this.Jd); -this._getResourceCacheLimitBytes()};a.GrDirectContext.prototype.getResourceCacheUsageBytes=function(){a.Kd(this.Jd);this._getResourceCacheUsageBytes()};a.GrDirectContext.prototype.releaseResourcesAndAbandonContext=function(){a.Kd(this.Jd);this._releaseResourcesAndAbandonContext()};a.GrDirectContext.prototype.setResourceCacheLimitBytes=function(l){a.Kd(this.Jd);this._setResourceCacheLimitBytes(l)};a.MakeOnScreenGLSurface=function(l,q,x,y,B,D){if(!this.Kd(l.Jd))return null;q=void 0===B||void 0===D? -this._MakeOnScreenGLSurface(l,q,x,y):this._MakeOnScreenGLSurface(l,q,x,y,B,D);if(!q)return null;q.Jd=l.Jd;return q};a.MakeRenderTarget=function(){var l=arguments[0];if(!this.Kd(l.Jd))return null;if(3===arguments.length){var q=this._MakeRenderTargetWH(l,arguments[1],arguments[2]);if(!q)return null}else if(2===arguments.length){if(q=this._MakeRenderTargetII(l,arguments[1]),!q)return null}else return null;q.Jd=l.Jd;return q};a.MakeWebGLCanvasSurface=function(l,q,x){q=q||null;var y=l,B="undefined"!== -typeof OffscreenCanvas&&y instanceof OffscreenCanvas;if(!("undefined"!==typeof HTMLCanvasElement&&y instanceof HTMLCanvasElement||B||(y=document.getElementById(l),y)))throw"Canvas with id "+l+" was not found";l=this.GetWebGLContext(y,x);if(!l||0>l)throw"failed to create webgl context: err "+l;l=this.MakeWebGLContext(l);q=this.MakeOnScreenGLSurface(l,y.width,y.height,q);return q?q:(q=y.cloneNode(!0),y.parentNode.replaceChild(q,y),q.classList.add("ck-replaced"),a.MakeSWCanvasSurface(q))};a.MakeCanvasSurface= -a.MakeWebGLCanvasSurface;a.Surface.prototype.makeImageFromTexture=function(l,q){a.Kd(this.Jd);l=c(l);if(q=this._makeImageFromTexture(this.Jd,l,q))q.ge=l;return q};a.Surface.prototype.makeImageFromTextureSource=function(l,q,x){q||(q={height:e(l),width:f(l),colorType:a.ColorType.RGBA_8888,alphaType:x?a.AlphaType.Premul:a.AlphaType.Unpremul});q.colorSpace||(q.colorSpace=a.ColorSpace.SRGB);a.Kd(this.Jd);var y=u.Ud;x=k(y,y.createTexture(),q,x);2===u.version?y.texImage2D(y.TEXTURE_2D,0,y.RGBA,q.width,q.height, -0,y.RGBA,y.UNSIGNED_BYTE,l):y.texImage2D(y.TEXTURE_2D,0,y.RGBA,y.RGBA,y.UNSIGNED_BYTE,l);m(y,q);this._resetContext();return this.makeImageFromTexture(x,q)};a.Surface.prototype.updateTextureFromSource=function(l,q,x){if(l.ge){a.Kd(this.Jd);var y=l.getImageInfo(),B=u.Ud,D=k(B,ea[l.ge],y,x);2===u.version?B.texImage2D(B.TEXTURE_2D,0,B.RGBA,f(q),e(q),0,B.RGBA,B.UNSIGNED_BYTE,q):B.texImage2D(B.TEXTURE_2D,0,B.RGBA,B.RGBA,B.UNSIGNED_BYTE,q);m(B,y,x);this._resetContext();ea[l.ge]=null;l.ge=c(D);y.colorSpace= -l.getColorSpace();q=this._makeImageFromTexture(this.Jd,l.ge,y);x=l.kd.Ld;B=l.kd.Qd;l.kd.Ld=q.kd.Ld;l.kd.Qd=q.kd.Qd;q.kd.Ld=x;q.kd.Qd=B;q.delete();y.colorSpace.delete()}};a.MakeLazyImageFromTextureSource=function(l,q,x){q||(q={height:e(l),width:f(l),colorType:a.ColorType.RGBA_8888,alphaType:x?a.AlphaType.Premul:a.AlphaType.Unpremul});q.colorSpace||(q.colorSpace=a.ColorSpace.SRGB);var y={makeTexture:function(){var B=u,D=B.Ud,v=k(D,D.createTexture(),q,x);2===B.version?D.texImage2D(D.TEXTURE_2D,0,D.RGBA, -q.width,q.height,0,D.RGBA,D.UNSIGNED_BYTE,l):D.texImage2D(D.TEXTURE_2D,0,D.RGBA,D.RGBA,D.UNSIGNED_BYTE,l);m(D,q,x);return c(v)},freeSrc:function(){}};"VideoFrame"===l.constructor.name&&(y.freeSrc=function(){l.close()});return a.Image._makeFromGenerator(q,y)};a.Kd=function(l){return l?ha(l):!1};a.le=function(){return u&&u.we&&!u.we.isDeleted()?u.we:null}})})(r); -(function(a){function b(g){return(f(255*g[3])<<24|f(255*g[0])<<16|f(255*g[1])<<8|f(255*g[2])<<0)>>>0}function c(g){if(g&&g._ck)return g;if(g instanceof Float32Array){for(var d=Math.floor(g.length/4),h=new Uint32Array(d),n=0;nz;z++)a.HEAPF32[t+n]=g[w][z],n++;g=h}else g=M;d.Rd=g}else throw"Invalid argument to copyFlexibleColorArray, Not a color array "+typeof g;return d}function q(g){if(!g)return M;var d=S.toTypedArray();if(g.length){if(6===g.length||9===g.length)return m(g,"HEAPF32",H),6===g.length&&a.HEAPF32.set(dd,6+H/4),H;if(16===g.length)return d[0]=g[0],d[1]=g[1],d[2]=g[3],d[3]=g[4],d[4]=g[5],d[5]=g[7],d[6]=g[12],d[7]=g[13],d[8]=g[15],H;throw"invalid matrix size"; -}if(void 0===g.m11)throw"invalid matrix argument";d[0]=g.m11;d[1]=g.m21;d[2]=g.m41;d[3]=g.m12;d[4]=g.m22;d[5]=g.m42;d[6]=g.m14;d[7]=g.m24;d[8]=g.m44;return H}function x(g){if(!g)return M;var d=da.toTypedArray();if(g.length){if(16!==g.length&&6!==g.length&&9!==g.length)throw"invalid matrix size";if(16===g.length)return m(g,"HEAPF32",Y);d.fill(0);d[0]=g[0];d[1]=g[1];d[3]=g[2];d[4]=g[3];d[5]=g[4];d[7]=g[5];d[10]=1;d[12]=g[6];d[13]=g[7];d[15]=g[8];6===g.length&&(d[12]=0,d[13]=0,d[15]=1);return Y}if(void 0=== -g.m11)throw"invalid matrix argument";d[0]=g.m11;d[1]=g.m21;d[2]=g.m31;d[3]=g.m41;d[4]=g.m12;d[5]=g.m22;d[6]=g.m32;d[7]=g.m42;d[8]=g.m13;d[9]=g.m23;d[10]=g.m33;d[11]=g.m43;d[12]=g.m14;d[13]=g.m24;d[14]=g.m34;d[15]=g.m44;return Y}function y(g,d){return m(g,"HEAPF32",d||ua)}function B(g,d,h,n){var t=La.toTypedArray();t[0]=g;t[1]=d;t[2]=h;t[3]=n;return ua}function D(g){for(var d=new Float32Array(4),h=0;4>h;h++)d[h]=a.HEAPF32[g/4+h];return d}function v(g,d){return m(g,"HEAPF32",d||V)}function E(g,d){return m(g, -"HEAPF32",d||Cb)}a.Color=function(g,d,h,n){void 0===n&&(n=1);return a.Color4f(f(g)/255,f(d)/255,f(h)/255,n)};a.ColorAsInt=function(g,d,h,n){void 0===n&&(n=255);return(f(n)<<24|f(g)<<16|f(d)<<8|f(h)<<0&268435455)>>>0};a.Color4f=function(g,d,h,n){void 0===n&&(n=1);return Float32Array.of(g,d,h,n)};Object.defineProperty(a,"TRANSPARENT",{get:function(){return a.Color4f(0,0,0,0)}});Object.defineProperty(a,"BLACK",{get:function(){return a.Color4f(0,0,0,1)}});Object.defineProperty(a,"WHITE",{get:function(){return a.Color4f(1, -1,1,1)}});Object.defineProperty(a,"RED",{get:function(){return a.Color4f(1,0,0,1)}});Object.defineProperty(a,"GREEN",{get:function(){return a.Color4f(0,1,0,1)}});Object.defineProperty(a,"BLUE",{get:function(){return a.Color4f(0,0,1,1)}});Object.defineProperty(a,"YELLOW",{get:function(){return a.Color4f(1,1,0,1)}});Object.defineProperty(a,"CYAN",{get:function(){return a.Color4f(0,1,1,1)}});Object.defineProperty(a,"MAGENTA",{get:function(){return a.Color4f(1,0,1,1)}});a.getColorComponents=function(g){return[Math.floor(255* -g[0]),Math.floor(255*g[1]),Math.floor(255*g[2]),g[3]]};a.parseColorString=function(g,d){g=g.toLowerCase();if(g.startsWith("#")){d=255;switch(g.length){case 9:d=parseInt(g.slice(7,9),16);case 7:var h=parseInt(g.slice(1,3),16);var n=parseInt(g.slice(3,5),16);var t=parseInt(g.slice(5,7),16);break;case 5:d=17*parseInt(g.slice(4,5),16);case 4:h=17*parseInt(g.slice(1,2),16),n=17*parseInt(g.slice(2,3),16),t=17*parseInt(g.slice(3,4),16)}return a.Color(h,n,t,d/255)}return g.startsWith("rgba")?(g=g.slice(5, --1),g=g.split(","),a.Color(+g[0],+g[1],+g[2],e(g[3]))):g.startsWith("rgb")?(g=g.slice(4,-1),g=g.split(","),a.Color(+g[0],+g[1],+g[2],e(g[3]))):g.startsWith("gray(")||g.startsWith("hsl")||!d||(g=d[g],void 0===g)?a.BLACK:g};a.multiplyByAlpha=function(g,d){g=g.slice();g[3]=Math.max(0,Math.min(g[3]*d,1));return g};a.Malloc=function(g,d){var h=a._malloc(d*g.BYTES_PER_ELEMENT);return{_ck:!0,length:d,byteOffset:h,ae:null,subarray:function(n,t){n=this.toTypedArray().subarray(n,t);n._ck=!0;return n},toTypedArray:function(){if(this.ae&& -this.ae.length)return this.ae;this.ae=new g(a.HEAPU8.buffer,h,d);this.ae._ck=!0;return this.ae}}};a.Free=function(g){a._free(g.byteOffset);g.byteOffset=M;g.toTypedArray=null;g.ae=null};var H=M,S,Y=M,da,ua=M,La,ma,V=M,gc,Aa=M,hc,Db=M,ic,Eb=M,Fb,gb=M,jc,Cb=M,kc,lc=M,dd=Float32Array.of(0,0,1),M=0;a.onRuntimeInitialized=function(){function g(d,h,n,t,w,z,F){z||(z=4*t.width,t.colorType===a.ColorType.RGBA_F16?z*=2:t.colorType===a.ColorType.RGBA_F32&&(z*=4));var K=z*t.height;var I=w?w.byteOffset:a._malloc(K); -if(F?!d._readPixels(t,I,z,h,n,F):!d._readPixels(t,I,z,h,n))return w||a._free(I),null;if(w)return w.toTypedArray();switch(t.colorType){case a.ColorType.RGBA_8888:case a.ColorType.RGBA_F16:d=(new Uint8Array(a.HEAPU8.buffer,I,K)).slice();break;case a.ColorType.RGBA_F32:d=(new Float32Array(a.HEAPU8.buffer,I,K)).slice();break;default:return null}a._free(I);return d}La=a.Malloc(Float32Array,4);ua=La.byteOffset;da=a.Malloc(Float32Array,16);Y=da.byteOffset;S=a.Malloc(Float32Array,9);H=S.byteOffset;jc=a.Malloc(Float32Array, -12);Cb=jc.byteOffset;kc=a.Malloc(Float32Array,12);lc=kc.byteOffset;ma=a.Malloc(Float32Array,4);V=ma.byteOffset;gc=a.Malloc(Float32Array,4);Aa=gc.byteOffset;hc=a.Malloc(Float32Array,3);Db=hc.byteOffset;ic=a.Malloc(Float32Array,3);Eb=ic.byteOffset;Fb=a.Malloc(Int32Array,4);gb=Fb.byteOffset;a.ColorSpace.SRGB=a.ColorSpace._MakeSRGB();a.ColorSpace.DISPLAY_P3=a.ColorSpace._MakeDisplayP3();a.ColorSpace.ADOBE_RGB=a.ColorSpace._MakeAdobeRGB();a.GlyphRunFlags={IsWhiteSpace:a._GlyphRunFlags_isWhiteSpace};a.Path.MakeFromCmds= -function(d){var h=m(d,"HEAPF32"),n=a.Path._MakeFromCmds(h,d.length);k(h,d);return n};a.Path.MakeFromVerbsPointsWeights=function(d,h,n){var t=m(d,"HEAPU8"),w=m(h,"HEAPF32"),z=m(n,"HEAPF32"),F=a.Path._MakeFromVerbsPointsWeights(t,d.length,w,h.length,z,n&&n.length||0);k(t,d);k(w,h);k(z,n);return F};a.Path.prototype.addArc=function(d,h,n){d=v(d);this._addArc(d,h,n);return this};a.Path.prototype.addCircle=function(d,h,n,t){this._addCircle(d,h,n,!!t);return this};a.Path.prototype.addOval=function(d,h,n){void 0=== -n&&(n=1);d=v(d);this._addOval(d,!!h,n);return this};a.Path.prototype.addPath=function(){var d=Array.prototype.slice.call(arguments),h=d[0],n=!1;"boolean"===typeof d[d.length-1]&&(n=d.pop());if(1===d.length)this._addPath(h,1,0,0,0,1,0,0,0,1,n);else if(2===d.length)d=d[1],this._addPath(h,d[0],d[1],d[2],d[3],d[4],d[5],d[6]||0,d[7]||0,d[8]||1,n);else if(7===d.length||10===d.length)this._addPath(h,d[1],d[2],d[3],d[4],d[5],d[6],d[7]||0,d[8]||0,d[9]||1,n);else return null;return this};a.Path.prototype.addPoly= -function(d,h){var n=m(d,"HEAPF32");this._addPoly(n,d.length/2,h);k(n,d);return this};a.Path.prototype.addRect=function(d,h){d=v(d);this._addRect(d,!!h);return this};a.Path.prototype.addRRect=function(d,h){d=E(d);this._addRRect(d,!!h);return this};a.Path.prototype.addVerbsPointsWeights=function(d,h,n){var t=m(d,"HEAPU8"),w=m(h,"HEAPF32"),z=m(n,"HEAPF32");this._addVerbsPointsWeights(t,d.length,w,h.length,z,n&&n.length||0);k(t,d);k(w,h);k(z,n)};a.Path.prototype.arc=function(d,h,n,t,w,z){d=a.LTRBRect(d- -n,h-n,d+n,h+n);w=(w-t)/Math.PI*180-360*!!z;z=new a.Path;z.addArc(d,t/Math.PI*180,w);this.addPath(z,!0);z.delete();return this};a.Path.prototype.arcToOval=function(d,h,n,t){d=v(d);this._arcToOval(d,h,n,t);return this};a.Path.prototype.arcToRotated=function(d,h,n,t,w,z,F){this._arcToRotated(d,h,n,!!t,!!w,z,F);return this};a.Path.prototype.arcToTangent=function(d,h,n,t,w){this._arcToTangent(d,h,n,t,w);return this};a.Path.prototype.close=function(){this._close();return this};a.Path.prototype.conicTo= -function(d,h,n,t,w){this._conicTo(d,h,n,t,w);return this};a.Path.prototype.computeTightBounds=function(d){this._computeTightBounds(V);var h=ma.toTypedArray();return d?(d.set(h),d):h.slice()};a.Path.prototype.cubicTo=function(d,h,n,t,w,z){this._cubicTo(d,h,n,t,w,z);return this};a.Path.prototype.dash=function(d,h,n){return this._dash(d,h,n)?this:null};a.Path.prototype.getBounds=function(d){this._getBounds(V);var h=ma.toTypedArray();return d?(d.set(h),d):h.slice()};a.Path.prototype.lineTo=function(d, -h){this._lineTo(d,h);return this};a.Path.prototype.moveTo=function(d,h){this._moveTo(d,h);return this};a.Path.prototype.offset=function(d,h){this._transform(1,0,d,0,1,h,0,0,1);return this};a.Path.prototype.quadTo=function(d,h,n,t){this._quadTo(d,h,n,t);return this};a.Path.prototype.rArcTo=function(d,h,n,t,w,z,F){this._rArcTo(d,h,n,t,w,z,F);return this};a.Path.prototype.rConicTo=function(d,h,n,t,w){this._rConicTo(d,h,n,t,w);return this};a.Path.prototype.rCubicTo=function(d,h,n,t,w,z){this._rCubicTo(d, -h,n,t,w,z);return this};a.Path.prototype.rLineTo=function(d,h){this._rLineTo(d,h);return this};a.Path.prototype.rMoveTo=function(d,h){this._rMoveTo(d,h);return this};a.Path.prototype.rQuadTo=function(d,h,n,t){this._rQuadTo(d,h,n,t);return this};a.Path.prototype.stroke=function(d){d=d||{};d.width=d.width||1;d.miter_limit=d.miter_limit||4;d.cap=d.cap||a.StrokeCap.Butt;d.join=d.join||a.StrokeJoin.Miter;d.precision=d.precision||1;return this._stroke(d)?this:null};a.Path.prototype.transform=function(){if(1=== -arguments.length){var d=arguments[0];this._transform(d[0],d[1],d[2],d[3],d[4],d[5],d[6]||0,d[7]||0,d[8]||1)}else if(6===arguments.length||9===arguments.length)d=arguments,this._transform(d[0],d[1],d[2],d[3],d[4],d[5],d[6]||0,d[7]||0,d[8]||1);else throw"transform expected to take 1 or 9 arguments. Got "+arguments.length;return this};a.Path.prototype.trim=function(d,h,n){return this._trim(d,h,!!n)?this:null};a.Image.prototype.encodeToBytes=function(d,h){var n=a.le();d=d||a.ImageFormat.PNG;h=h||100; -return n?this._encodeToBytes(d,h,n):this._encodeToBytes(d,h)};a.Image.prototype.makeShaderCubic=function(d,h,n,t,w){w=q(w);return this._makeShaderCubic(d,h,n,t,w)};a.Image.prototype.makeShaderOptions=function(d,h,n,t,w){w=q(w);return this._makeShaderOptions(d,h,n,t,w)};a.Image.prototype.readPixels=function(d,h,n,t,w){var z=a.le();return g(this,d,h,n,t,w,z)};a.Canvas.prototype.clear=function(d){a.Kd(this.Jd);d=y(d);this._clear(d)};a.Canvas.prototype.clipRRect=function(d,h,n){a.Kd(this.Jd);d=E(d);this._clipRRect(d, -h,n)};a.Canvas.prototype.clipRect=function(d,h,n){a.Kd(this.Jd);d=v(d);this._clipRect(d,h,n)};a.Canvas.prototype.concat=function(d){a.Kd(this.Jd);d=x(d);this._concat(d)};a.Canvas.prototype.drawArc=function(d,h,n,t,w){a.Kd(this.Jd);d=v(d);this._drawArc(d,h,n,t,w)};a.Canvas.prototype.drawAtlas=function(d,h,n,t,w,z,F){if(d&&t&&h&&n&&h.length===n.length){a.Kd(this.Jd);w||(w=a.BlendMode.SrcOver);var K=m(h,"HEAPF32"),I=m(n,"HEAPF32"),T=n.length/4,p=m(c(z),"HEAPU32");if(F&&"B"in F&&"C"in F)this._drawAtlasCubic(d, -I,K,p,T,w,F.B,F.C,t);else{let A=a.FilterMode.Linear,L=a.MipmapMode.None;F&&(A=F.filter,"mipmap"in F&&(L=F.mipmap));this._drawAtlasOptions(d,I,K,p,T,w,A,L,t)}k(K,h);k(I,n);k(p,z)}};a.Canvas.prototype.drawCircle=function(d,h,n,t){a.Kd(this.Jd);this._drawCircle(d,h,n,t)};a.Canvas.prototype.drawColor=function(d,h){a.Kd(this.Jd);d=y(d);void 0!==h?this._drawColor(d,h):this._drawColor(d)};a.Canvas.prototype.drawColorInt=function(d,h){a.Kd(this.Jd);this._drawColorInt(d,h||a.BlendMode.SrcOver)};a.Canvas.prototype.drawColorComponents= -function(d,h,n,t,w){a.Kd(this.Jd);d=B(d,h,n,t);void 0!==w?this._drawColor(d,w):this._drawColor(d)};a.Canvas.prototype.drawDRRect=function(d,h,n){a.Kd(this.Jd);d=E(d,Cb);h=E(h,lc);this._drawDRRect(d,h,n)};a.Canvas.prototype.drawImage=function(d,h,n,t){a.Kd(this.Jd);this._drawImage(d,h,n,t||null)};a.Canvas.prototype.drawImageCubic=function(d,h,n,t,w,z){a.Kd(this.Jd);this._drawImageCubic(d,h,n,t,w,z||null)};a.Canvas.prototype.drawImageOptions=function(d,h,n,t,w,z){a.Kd(this.Jd);this._drawImageOptions(d, -h,n,t,w,z||null)};a.Canvas.prototype.drawImageNine=function(d,h,n,t,w){a.Kd(this.Jd);h=m(h,"HEAP32",gb);n=v(n);this._drawImageNine(d,h,n,t,w||null)};a.Canvas.prototype.drawImageRect=function(d,h,n,t,w){a.Kd(this.Jd);v(h,V);v(n,Aa);this._drawImageRect(d,V,Aa,t,!!w)};a.Canvas.prototype.drawImageRectCubic=function(d,h,n,t,w,z){a.Kd(this.Jd);v(h,V);v(n,Aa);this._drawImageRectCubic(d,V,Aa,t,w,z||null)};a.Canvas.prototype.drawImageRectOptions=function(d,h,n,t,w,z){a.Kd(this.Jd);v(h,V);v(n,Aa);this._drawImageRectOptions(d, -V,Aa,t,w,z||null)};a.Canvas.prototype.drawLine=function(d,h,n,t,w){a.Kd(this.Jd);this._drawLine(d,h,n,t,w)};a.Canvas.prototype.drawOval=function(d,h){a.Kd(this.Jd);d=v(d);this._drawOval(d,h)};a.Canvas.prototype.drawPaint=function(d){a.Kd(this.Jd);this._drawPaint(d)};a.Canvas.prototype.drawParagraph=function(d,h,n){a.Kd(this.Jd);this._drawParagraph(d,h,n)};a.Canvas.prototype.drawPatch=function(d,h,n,t,w){if(24>d.length)throw"Need 12 cubic points";if(h&&4>h.length)throw"Need 4 colors";if(n&&8>n.length)throw"Need 4 shader coordinates"; -a.Kd(this.Jd);const z=m(d,"HEAPF32"),F=h?m(c(h),"HEAPU32"):M,K=n?m(n,"HEAPF32"):M;t||(t=a.BlendMode.Modulate);this._drawPatch(z,F,K,t,w);k(K,n);k(F,h);k(z,d)};a.Canvas.prototype.drawPath=function(d,h){a.Kd(this.Jd);this._drawPath(d,h)};a.Canvas.prototype.drawPicture=function(d){a.Kd(this.Jd);this._drawPicture(d)};a.Canvas.prototype.drawPoints=function(d,h,n){a.Kd(this.Jd);var t=m(h,"HEAPF32");this._drawPoints(d,t,h.length/2,n);k(t,h)};a.Canvas.prototype.drawRRect=function(d,h){a.Kd(this.Jd);d=E(d); -this._drawRRect(d,h)};a.Canvas.prototype.drawRect=function(d,h){a.Kd(this.Jd);d=v(d);this._drawRect(d,h)};a.Canvas.prototype.drawRect4f=function(d,h,n,t,w){a.Kd(this.Jd);this._drawRect4f(d,h,n,t,w)};a.Canvas.prototype.drawShadow=function(d,h,n,t,w,z,F){a.Kd(this.Jd);var K=m(w,"HEAPF32"),I=m(z,"HEAPF32");h=m(h,"HEAPF32",Db);n=m(n,"HEAPF32",Eb);this._drawShadow(d,h,n,t,K,I,F);k(K,w);k(I,z)};a.getShadowLocalBounds=function(d,h,n,t,w,z,F){d=q(d);n=m(n,"HEAPF32",Db);t=m(t,"HEAPF32",Eb);if(!this._getShadowLocalBounds(d, -h,n,t,w,z,V))return null;h=ma.toTypedArray();return F?(F.set(h),F):h.slice()};a.Canvas.prototype.drawTextBlob=function(d,h,n,t){a.Kd(this.Jd);this._drawTextBlob(d,h,n,t)};a.Canvas.prototype.drawVertices=function(d,h,n){a.Kd(this.Jd);this._drawVertices(d,h,n)};a.Canvas.prototype.getDeviceClipBounds=function(d){this._getDeviceClipBounds(gb);var h=Fb.toTypedArray();d?d.set(h):d=h.slice();return d};a.Canvas.prototype.getLocalToDevice=function(){this._getLocalToDevice(Y);for(var d=Y,h=Array(16),n=0;16> -n;n++)h[n]=a.HEAPF32[d/4+n];return h};a.Canvas.prototype.getTotalMatrix=function(){this._getTotalMatrix(H);for(var d=Array(9),h=0;9>h;h++)d[h]=a.HEAPF32[H/4+h];return d};a.Canvas.prototype.makeSurface=function(d){d=this._makeSurface(d);d.Jd=this.Jd;return d};a.Canvas.prototype.readPixels=function(d,h,n,t,w){a.Kd(this.Jd);return g(this,d,h,n,t,w)};a.Canvas.prototype.saveLayer=function(d,h,n,t){h=v(h);return this._saveLayer(d||null,h,n||null,t||0)};a.Canvas.prototype.writePixels=function(d,h,n,t,w, -z,F,K){if(d.byteLength%(h*n))throw"pixels length must be a multiple of the srcWidth * srcHeight";a.Kd(this.Jd);var I=d.byteLength/(h*n);z=z||a.AlphaType.Unpremul;F=F||a.ColorType.RGBA_8888;K=K||a.ColorSpace.SRGB;var T=I*h;I=m(d,"HEAPU8");h=this._writePixels({width:h,height:n,colorType:F,alphaType:z,colorSpace:K},I,T,t,w);k(I,d);return h};a.ColorFilter.MakeBlend=function(d,h,n){d=y(d);n=n||a.ColorSpace.SRGB;return a.ColorFilter._MakeBlend(d,h,n)};a.ColorFilter.MakeMatrix=function(d){if(!d||20!==d.length)throw"invalid color matrix"; -var h=m(d,"HEAPF32"),n=a.ColorFilter._makeMatrix(h);k(h,d);return n};a.ContourMeasure.prototype.getPosTan=function(d,h){this._getPosTan(d,V);d=ma.toTypedArray();return h?(h.set(d),h):d.slice()};a.ImageFilter.MakeDropShadow=function(d,h,n,t,w,z){w=y(w,ua);return a.ImageFilter._MakeDropShadow(d,h,n,t,w,z)};a.ImageFilter.MakeDropShadowOnly=function(d,h,n,t,w,z){w=y(w,ua);return a.ImageFilter._MakeDropShadowOnly(d,h,n,t,w,z)};a.ImageFilter.MakeImage=function(d,h,n,t){n=v(n,V);t=v(t,Aa);if("B"in h&&"C"in -h)return a.ImageFilter._MakeImageCubic(d,h.B,h.C,n,t);const w=h.filter;let z=a.MipmapMode.None;"mipmap"in h&&(z=h.mipmap);return a.ImageFilter._MakeImageOptions(d,w,z,n,t)};a.ImageFilter.MakeMatrixTransform=function(d,h,n){d=q(d);if("B"in h&&"C"in h)return a.ImageFilter._MakeMatrixTransformCubic(d,h.B,h.C,n);const t=h.filter;let w=a.MipmapMode.None;"mipmap"in h&&(w=h.mipmap);return a.ImageFilter._MakeMatrixTransformOptions(d,t,w,n)};a.Paint.prototype.getColor=function(){this._getColor(ua);return D(ua)}; -a.Paint.prototype.setColor=function(d,h){h=h||null;d=y(d);this._setColor(d,h)};a.Paint.prototype.setColorComponents=function(d,h,n,t,w){w=w||null;d=B(d,h,n,t);this._setColor(d,w)};a.Path.prototype.getPoint=function(d,h){this._getPoint(d,V);d=ma.toTypedArray();return h?(h[0]=d[0],h[1]=d[1],h):d.slice(0,2)};a.Picture.prototype.makeShader=function(d,h,n,t,w){t=q(t);w=v(w);return this._makeShader(d,h,n,t,w)};a.Picture.prototype.cullRect=function(d){this._cullRect(V);var h=ma.toTypedArray();return d?(d.set(h), -d):h.slice()};a.PictureRecorder.prototype.beginRecording=function(d,h){d=v(d);return this._beginRecording(d,!!h)};a.Surface.prototype.getCanvas=function(){var d=this._getCanvas();d.Jd=this.Jd;return d};a.Surface.prototype.makeImageSnapshot=function(d){a.Kd(this.Jd);d=m(d,"HEAP32",gb);return this._makeImageSnapshot(d)};a.Surface.prototype.makeSurface=function(d){a.Kd(this.Jd);d=this._makeSurface(d);d.Jd=this.Jd;return d};a.Surface.prototype.Ue=function(d,h){this.fe||(this.fe=this.getCanvas());return requestAnimationFrame(function(){a.Kd(this.Jd); -d(this.fe);this.flush(h)}.bind(this))};a.Surface.prototype.requestAnimationFrame||(a.Surface.prototype.requestAnimationFrame=a.Surface.prototype.Ue);a.Surface.prototype.Re=function(d,h){this.fe||(this.fe=this.getCanvas());requestAnimationFrame(function(){a.Kd(this.Jd);d(this.fe);this.flush(h);this.dispose()}.bind(this))};a.Surface.prototype.drawOnce||(a.Surface.prototype.drawOnce=a.Surface.prototype.Re);a.PathEffect.MakeDash=function(d,h){h||(h=0);if(!d.length||1===d.length%2)throw"Intervals array must have even length"; -var n=m(d,"HEAPF32");h=a.PathEffect._MakeDash(n,d.length,h);k(n,d);return h};a.PathEffect.MakeLine2D=function(d,h){h=q(h);return a.PathEffect._MakeLine2D(d,h)};a.PathEffect.MakePath2D=function(d,h){d=q(d);return a.PathEffect._MakePath2D(d,h)};a.Shader.MakeColor=function(d,h){h=h||null;d=y(d);return a.Shader._MakeColor(d,h)};a.Shader.Blend=a.Shader.MakeBlend;a.Shader.Color=a.Shader.MakeColor;a.Shader.MakeLinearGradient=function(d,h,n,t,w,z,F,K){K=K||null;var I=l(n),T=m(t,"HEAPF32");F=F||0;z=q(z);var p= -ma.toTypedArray();p.set(d);p.set(h,2);d=a.Shader._MakeLinearGradient(V,I.Rd,I.colorType,T,I.count,w,F,z,K);k(I.Rd,n);t&&k(T,t);return d};a.Shader.MakeRadialGradient=function(d,h,n,t,w,z,F,K){K=K||null;var I=l(n),T=m(t,"HEAPF32");F=F||0;z=q(z);d=a.Shader._MakeRadialGradient(d[0],d[1],h,I.Rd,I.colorType,T,I.count,w,F,z,K);k(I.Rd,n);t&&k(T,t);return d};a.Shader.MakeSweepGradient=function(d,h,n,t,w,z,F,K,I,T){T=T||null;var p=l(n),A=m(t,"HEAPF32");F=F||0;K=K||0;I=I||360;z=q(z);d=a.Shader._MakeSweepGradient(d, -h,p.Rd,p.colorType,A,p.count,w,K,I,F,z,T);k(p.Rd,n);t&&k(A,t);return d};a.Shader.MakeTwoPointConicalGradient=function(d,h,n,t,w,z,F,K,I,T){T=T||null;var p=l(w),A=m(z,"HEAPF32");I=I||0;K=q(K);var L=ma.toTypedArray();L.set(d);L.set(n,2);d=a.Shader._MakeTwoPointConicalGradient(V,h,t,p.Rd,p.colorType,A,p.count,F,I,K,T);k(p.Rd,w);z&&k(A,z);return d};a.Vertices.prototype.bounds=function(d){this._bounds(V);var h=ma.toTypedArray();return d?(d.set(h),d):h.slice()};a.Nd&&a.Nd.forEach(function(d){d()})};a.computeTonalColors= -function(g){var d=m(g.ambient,"HEAPF32"),h=m(g.spot,"HEAPF32");this._computeTonalColors(d,h);var n={ambient:D(d),spot:D(h)};k(d,g.ambient);k(h,g.spot);return n};a.LTRBRect=function(g,d,h,n){return Float32Array.of(g,d,h,n)};a.XYWHRect=function(g,d,h,n){return Float32Array.of(g,d,g+h,d+n)};a.LTRBiRect=function(g,d,h,n){return Int32Array.of(g,d,h,n)};a.XYWHiRect=function(g,d,h,n){return Int32Array.of(g,d,g+h,d+n)};a.RRectXY=function(g,d,h){return Float32Array.of(g[0],g[1],g[2],g[3],d,h,d,h,d,h,d,h)}; -a.MakeAnimatedImageFromEncoded=function(g){g=new Uint8Array(g);var d=a._malloc(g.byteLength);a.HEAPU8.set(g,d);return(g=a._decodeAnimatedImage(d,g.byteLength))?g:null};a.MakeImageFromEncoded=function(g){g=new Uint8Array(g);var d=a._malloc(g.byteLength);a.HEAPU8.set(g,d);return(g=a._decodeImage(d,g.byteLength))?g:null};var Ra=null;a.MakeImageFromCanvasImageSource=function(g){var d=g.width,h=g.height;Ra||(Ra=document.createElement("canvas"));Ra.width=d;Ra.height=h;var n=Ra.getContext("2d",{Cf:!0}); -n.drawImage(g,0,0);g=n.getImageData(0,0,d,h);return a.MakeImage({width:d,height:h,alphaType:a.AlphaType.Unpremul,colorType:a.ColorType.RGBA_8888,colorSpace:a.ColorSpace.SRGB},g.data,4*d)};a.MakeImage=function(g,d,h){var n=a._malloc(d.length);a.HEAPU8.set(d,n);return a._MakeImage(g,n,d.length,h)};a.MakeVertices=function(g,d,h,n,t,w){var z=t&&t.length||0,F=0;h&&h.length&&(F|=1);n&&n.length&&(F|=2);void 0===w||w||(F|=4);g=new a._VerticesBuilder(g,d.length/2,z,F);m(d,"HEAPF32",g.positions());g.texCoords()&& -m(h,"HEAPF32",g.texCoords());g.colors()&&m(c(n),"HEAPU32",g.colors());g.indices()&&m(t,"HEAPU16",g.indices());return g.detach()};(function(g){g.Nd=g.Nd||[];g.Nd.push(function(){function d(p){if(!p||!p.length)return[];for(var A=[],L=0;Ld)return a._free(g),null;t=new Uint16Array(a.HEAPU8.buffer,g,d);if(h)return h.set(t),a._free(g),h;h=Uint16Array.from(t);a._free(g);return h};a.Font.prototype.getGlyphIntercepts=function(g,d,h,n){var t=m(g,"HEAPU16"),w=m(d,"HEAPF32");return this._getGlyphIntercepts(t, -g.length,!(g&&g._ck),w,d.length,!(d&&d._ck),h,n)};a.Font.prototype.getGlyphWidths=function(g,d,h){var n=m(g,"HEAPU16"),t=a._malloc(4*g.length);this._getGlyphWidthBounds(n,g.length,t,M,d||null);d=new Float32Array(a.HEAPU8.buffer,t,g.length);k(n,g);if(h)return h.set(d),a._free(t),h;g=Float32Array.from(d);a._free(t);return g};a.FontMgr.FromData=function(){if(!arguments.length)return null;var g=arguments;1===g.length&&Array.isArray(g[0])&&(g=arguments[0]);if(!g.length)return null;for(var d=[],h=[],n= -0;nd)return a._free(g),null;t=new Uint16Array(a.HEAPU8.buffer,g,d);if(h)return h.set(t),a._free(g),h;h=Uint16Array.from(t);a._free(g);return h};a.TextBlob.MakeOnPath=function(g,d,h,n){if(g&&g.length&&d&&d.countPoints()){if(1===d.countPoints())return this.MakeFromText(g,h);n||(n=0);var t=h.getGlyphIDs(g);t=h.getGlyphWidths(t);var w=[];d=new a.ContourMeasureIter(d,!1,1);for(var z=d.next(),F=new Float32Array(4),K=0;Kz.length()){z.delete();z= -d.next();if(!z){g=g.substring(0,K);break}n=I/2}z.getPosTan(n,F);var T=F[2],p=F[3];w.push(T,p,F[0]-I/2*T,F[1]-I/2*p);n+=I/2}g=this.MakeFromRSXform(g,w,h);z&&z.delete();d.delete();return g}};a.TextBlob.MakeFromRSXform=function(g,d,h){var n=ja(g)+1,t=a._malloc(n);ka(g,C,t,n);g=m(d,"HEAPF32");h=a.TextBlob._MakeFromRSXform(t,n-1,g,h);a._free(t);return h?h:null};a.TextBlob.MakeFromRSXformGlyphs=function(g,d,h){var n=m(g,"HEAPU16");d=m(d,"HEAPF32");h=a.TextBlob._MakeFromRSXformGlyphs(n,2*g.length,d,h);k(n, -g);return h?h:null};a.TextBlob.MakeFromGlyphs=function(g,d){var h=m(g,"HEAPU16");d=a.TextBlob._MakeFromGlyphs(h,2*g.length,d);k(h,g);return d?d:null};a.TextBlob.MakeFromText=function(g,d){var h=ja(g)+1,n=a._malloc(h);ka(g,C,n,h);g=a.TextBlob._MakeFromText(n,h-1,d);a._free(n);return g?g:null};a.MallocGlyphIDs=function(g){return a.Malloc(Uint16Array,g)}});a.Nd=a.Nd||[];a.Nd.push(function(){a.MakePicture=function(g){g=new Uint8Array(g);var d=a._malloc(g.byteLength);a.HEAPU8.set(g,d);return(g=a._MakePicture(d, -g.byteLength))?g:null}});a.Nd=a.Nd||[];a.Nd.push(function(){a.RuntimeEffect.Make=function(g,d){return a.RuntimeEffect._Make(g,{onError:d||function(h){console.log("RuntimeEffect error",h)}})};a.RuntimeEffect.prototype.makeShader=function(g,d){var h=!g._ck,n=m(g,"HEAPF32");d=q(d);return this._makeShader(n,4*g.length,h,d)};a.RuntimeEffect.prototype.makeShaderWithChildren=function(g,d,h){var n=!g._ck,t=m(g,"HEAPF32");h=q(h);for(var w=[],z=0;z{throw b;},qa="object"==typeof window,ra="function"==typeof importScripts,sa="object"==typeof process&&"object"==typeof process.versions&&"string"==typeof process.versions.node,ta="",va,wa,ya; -if(sa){var fs=require("fs"),za=require("path");ta=ra?za.dirname(ta)+"/":__dirname+"/";va=(a,b)=>{a=a.startsWith("file://")?new URL(a):za.normalize(a);return fs.readFileSync(a,b?void 0:"utf8")};ya=a=>{a=va(a,!0);a.buffer||(a=new Uint8Array(a));return a};wa=(a,b,c)=>{a=a.startsWith("file://")?new URL(a):za.normalize(a);fs.readFile(a,function(e,f){e?c(e):b(f.buffer)})};1process.versions.node.split(".")[0])process.on("unhandledRejection", -function(a){throw a;});oa=(a,b)=>{if(noExitRuntime)throw process.exitCode=a,b;if(!(b instanceof Ba)){var c=b;b&&"object"==typeof b&&b.stack&&(c=[b,b.stack]);Ca("exiting due to exception: "+c)}process.exit(a)};r.inspect=function(){return"[Emscripten Module object]"}}else if(qa||ra)ra?ta=self.location.href:"undefined"!=typeof document&&document.currentScript&&(ta=document.currentScript.src),_scriptDir&&(ta=_scriptDir),0!==ta.indexOf("blob:")?ta=ta.substr(0,ta.replace(/[?#].*/,"").lastIndexOf("/")+1): -ta="",va=a=>{var b=new XMLHttpRequest;b.open("GET",a,!1);b.send(null);return b.responseText},ra&&(ya=a=>{var b=new XMLHttpRequest;b.open("GET",a,!1);b.responseType="arraybuffer";b.send(null);return new Uint8Array(b.response)}),wa=(a,b,c)=>{var e=new XMLHttpRequest;e.open("GET",a,!0);e.responseType="arraybuffer";e.onload=()=>{200==e.status||0==e.status&&e.response?b(e.response):c()};e.onerror=c;e.send(null)};var Da=r.print||console.log.bind(console),Ca=r.printErr||console.warn.bind(console); -Object.assign(r,la);la=null;r.thisProgram&&(na=r.thisProgram);r.quit&&(oa=r.quit);var Ea;r.wasmBinary&&(Ea=r.wasmBinary);var noExitRuntime=r.noExitRuntime||!0;"object"!=typeof WebAssembly&&Fa("no native wasm support detected");var Ga,Ha=!1,Ia="undefined"!=typeof TextDecoder?new TextDecoder("utf8"):void 0; -function Ja(a,b,c){var e=b+c;for(c=b;a[c]&&!(c>=e);)++c;if(16f?e+=String.fromCharCode(f):(f-=65536,e+=String.fromCharCode(55296|f>>10,56320|f&1023))}}else e+=String.fromCharCode(f)}return e}function Ka(a,b){return a?Ja(C,a,b):""} -function ka(a,b,c,e){if(!(0=m){var l=a.charCodeAt(++k);m=65536+((m&1023)<<10)|l&1023}if(127>=m){if(c>=e)break;b[c++]=m}else{if(2047>=m){if(c+1>=e)break;b[c++]=192|m>>6}else{if(65535>=m){if(c+2>=e)break;b[c++]=224|m>>12}else{if(c+3>=e)break;b[c++]=240|m>>18;b[c++]=128|m>>12&63}b[c++]=128|m>>6&63}b[c++]=128|m&63}}b[c]=0;return c-f} -function ja(a){for(var b=0,c=0;c=e?b++:2047>=e?b+=2:55296<=e&&57343>=e?(b+=4,++c):b+=3}return b}var Ma,C,Na,Oa,G,J,N,Pa;function Qa(){var a=Ga.buffer;r.HEAP8=Ma=new Int8Array(a);r.HEAP16=Na=new Int16Array(a);r.HEAP32=G=new Int32Array(a);r.HEAPU8=C=new Uint8Array(a);r.HEAPU16=Oa=new Uint16Array(a);r.HEAPU32=J=new Uint32Array(a);r.HEAPF32=N=new Float32Array(a);r.HEAPF64=Pa=new Float64Array(a)}var Sa,Ta=[],Ua=[],Va=[]; -function Wa(){var a=r.preRun.shift();Ta.unshift(a)}var Xa=0,Ya=null,Za=null;function Fa(a){if(r.onAbort)r.onAbort(a);a="Aborted("+a+")";Ca(a);Ha=!0;a=new WebAssembly.RuntimeError(a+". Build with -sASSERTIONS for more info.");ba(a);throw a;}function $a(a){return a.startsWith("data:application/octet-stream;base64,")}var ab;ab="canvaskit.wasm";if(!$a(ab)){var bb=ab;ab=r.locateFile?r.locateFile(bb,ta):ta+bb} -function cb(a){try{if(a==ab&&Ea)return new Uint8Array(Ea);if(ya)return ya(a);throw"both async and sync fetching of the wasm failed";}catch(b){Fa(b)}} -function db(a){if(!Ea&&(qa||ra)){if("function"==typeof fetch&&!a.startsWith("file://"))return fetch(a,{credentials:"same-origin"}).then(function(b){if(!b.ok)throw"failed to load wasm binary file at '"+a+"'";return b.arrayBuffer()}).catch(function(){return cb(a)});if(wa)return new Promise(function(b,c){wa(a,function(e){b(new Uint8Array(e))},c)})}return Promise.resolve().then(function(){return cb(a)})} -function eb(a,b,c){return db(a).then(function(e){return WebAssembly.instantiate(e,b)}).then(function(e){return e}).then(c,function(e){Ca("failed to asynchronously prepare wasm: "+e);Fa(e)})} -function fb(a,b){var c=ab;return Ea||"function"!=typeof WebAssembly.instantiateStreaming||$a(c)||c.startsWith("file://")||sa||"function"!=typeof fetch?eb(c,a,b):fetch(c,{credentials:"same-origin"}).then(function(e){return WebAssembly.instantiateStreaming(e,a).then(b,function(f){Ca("wasm streaming compile failed: "+f);Ca("falling back to ArrayBuffer instantiation");return eb(c,a,b)})})}function Ba(a){this.name="ExitStatus";this.message="Program terminated with exit("+a+")";this.status=a} -function hb(a){for(;0>2]=b};this.Ne=function(b){J[this.Ld+8>>2]=b};this.Oe=function(){G[this.Ld>>2]=0};this.Me=function(){Ma[this.Ld+12>>0]=0};this.Pe=function(){Ma[this.Ld+13>>0]=0};this.oe=function(b,c){this.Le();this.Qe(b);this.Ne(c);this.Oe();this.Me();this.Pe()};this.Le=function(){J[this.Ld+16>>2]=0}}var jb=0,kb={};function lb(a){for(;a.length;){var b=a.pop();a.pop()(b)}} -function mb(a){return this.fromWireType(G[a>>2])}var nb={},ob={},pb={};function qb(a){if(void 0===a)return"_unknown";a=a.replace(/[^a-zA-Z0-9_]/g,"$");var b=a.charCodeAt(0);return 48<=b&&57>=b?"_"+a:a}function rb(a,b){a=qb(a);return{[a]:function(){return b.apply(this,arguments)}}[a]} -function sb(a){var b=Error,c=rb(a,function(e){this.name=a;this.message=e;e=Error(e).stack;void 0!==e&&(this.stack=this.toString()+"\n"+e.replace(/^Error(:[^\n]*)?\n/,""))});c.prototype=Object.create(b.prototype);c.prototype.constructor=c;c.prototype.toString=function(){return void 0===this.message?this.name:this.name+": "+this.message};return c}var tb=void 0;function ub(a){throw new tb(a);} -function vb(a,b,c){function e(l){l=c(l);l.length!==a.length&&ub("Mismatched type converter count");for(var q=0;q{ob.hasOwnProperty(l)?f[q]=ob[l]:(k.push(l),nb.hasOwnProperty(l)||(nb[l]=[]),nb[l].push(()=>{f[q]=ob[l];++m;m===k.length&&e(f)}))});0===k.length&&e(f)} -function xb(a){switch(a){case 1:return 0;case 2:return 1;case 4:return 2;case 8:return 3;default:throw new TypeError("Unknown type size: "+a);}}var yb=void 0;function O(a){for(var b="";C[a];)b+=yb[C[a++]];return b}var zb=void 0;function P(a){throw new zb(a);} -function wb(a,b,c={}){if(!("argPackAdvance"in b))throw new TypeError("registerType registeredInstance requires argPackAdvance");var e=b.name;a||P('type "'+e+'" must have a positive integer typeid pointer');if(ob.hasOwnProperty(a)){if(c.hf)return;P("Cannot register type '"+e+"' twice")}ob[a]=b;delete pb[a];nb.hasOwnProperty(a)&&(b=nb[a],delete nb[a],b.forEach(f=>f()))}function Ab(a){P(a.kd.Od.Md.name+" instance already deleted")}var Bb=!1;function Ib(){} -function Jb(a){--a.count.value;0===a.count.value&&(a.Qd?a.Td.Xd(a.Qd):a.Od.Md.Xd(a.Ld))}function Kb(a,b,c){if(b===c)return a;if(void 0===c.Vd)return null;a=Kb(a,b,c.Vd);return null===a?null:c.Ze(a)}var Lb={},Mb=[];function Nb(){for(;Mb.length;){var a=Mb.pop();a.kd.de=!1;a["delete"]()}}var Ob=void 0,Pb={};function Qb(a,b){for(void 0===b&&P("ptr should not be undefined");a.Vd;)b=a.je(b),a=a.Vd;return Pb[b]} -function Rb(a,b){b.Od&&b.Ld||ub("makeClassHandle requires ptr and ptrType");!!b.Td!==!!b.Qd&&ub("Both smartPtrType and smartPtr must be specified");b.count={value:1};return Sb(Object.create(a,{kd:{value:b}}))}function Sb(a){if("undefined"===typeof FinalizationRegistry)return Sb=b=>b,a;Bb=new FinalizationRegistry(b=>{Jb(b.kd)});Sb=b=>{var c=b.kd;c.Qd&&Bb.register(b,{kd:c},b);return b};Ib=b=>{Bb.unregister(b)};return Sb(a)}function Tb(){} -function Ub(a,b,c){if(void 0===a[b].Pd){var e=a[b];a[b]=function(){a[b].Pd.hasOwnProperty(arguments.length)||P("Function '"+c+"' called with an invalid number of arguments ("+arguments.length+") - expects one of ("+a[b].Pd+")!");return a[b].Pd[arguments.length].apply(this,arguments)};a[b].Pd=[];a[b].Pd[e.be]=e}} -function Vb(a,b,c){r.hasOwnProperty(a)?((void 0===c||void 0!==r[a].Pd&&void 0!==r[a].Pd[c])&&P("Cannot register public name '"+a+"' twice"),Ub(r,a,a),r.hasOwnProperty(c)&&P("Cannot register multiple overloads of a function with the same number of arguments ("+c+")!"),r[a].Pd[c]=b):(r[a]=b,void 0!==c&&(r[a].zf=c))}function Wb(a,b,c,e,f,k,m,l){this.name=a;this.constructor=b;this.ee=c;this.Xd=e;this.Vd=f;this.bf=k;this.je=m;this.Ze=l;this.mf=[]} -function Xb(a,b,c){for(;b!==c;)b.je||P("Expected null or instance of "+c.name+", got an instance of "+b.name),a=b.je(a),b=b.Vd;return a}function Yb(a,b){if(null===b)return this.xe&&P("null is not a valid "+this.name),0;b.kd||P('Cannot pass "'+Zb(b)+'" as a '+this.name);b.kd.Ld||P("Cannot pass deleted object as a pointer of type "+this.name);return Xb(b.kd.Ld,b.kd.Od.Md,this.Md)} -function $b(a,b){if(null===b){this.xe&&P("null is not a valid "+this.name);if(this.ne){var c=this.ye();null!==a&&a.push(this.Xd,c);return c}return 0}b.kd||P('Cannot pass "'+Zb(b)+'" as a '+this.name);b.kd.Ld||P("Cannot pass deleted object as a pointer of type "+this.name);!this.me&&b.kd.Od.me&&P("Cannot convert argument of type "+(b.kd.Td?b.kd.Td.name:b.kd.Od.name)+" to parameter type "+this.name);c=Xb(b.kd.Ld,b.kd.Od.Md,this.Md);if(this.ne)switch(void 0===b.kd.Qd&&P("Passing raw pointer to smart pointer is illegal"), -this.sf){case 0:b.kd.Td===this?c=b.kd.Qd:P("Cannot convert argument of type "+(b.kd.Td?b.kd.Td.name:b.kd.Od.name)+" to parameter type "+this.name);break;case 1:c=b.kd.Qd;break;case 2:if(b.kd.Td===this)c=b.kd.Qd;else{var e=b.clone();c=this.nf(c,ac(function(){e["delete"]()}));null!==a&&a.push(this.Xd,c)}break;default:P("Unsupporting sharing policy")}return c} -function bc(a,b){if(null===b)return this.xe&&P("null is not a valid "+this.name),0;b.kd||P('Cannot pass "'+Zb(b)+'" as a '+this.name);b.kd.Ld||P("Cannot pass deleted object as a pointer of type "+this.name);b.kd.Od.me&&P("Cannot convert argument of type "+b.kd.Od.name+" to parameter type "+this.name);return Xb(b.kd.Ld,b.kd.Od.Md,this.Md)} -function cc(a,b,c,e,f,k,m,l,q,x,y){this.name=a;this.Md=b;this.xe=c;this.me=e;this.ne=f;this.lf=k;this.sf=m;this.He=l;this.ye=q;this.nf=x;this.Xd=y;f||void 0!==b.Vd?this.toWireType=$b:(this.toWireType=e?Yb:bc,this.Sd=null)}function dc(a,b,c){r.hasOwnProperty(a)||ub("Replacing nonexistant public symbol");void 0!==r[a].Pd&&void 0!==c?r[a].Pd[c]=b:(r[a]=b,r[a].be=c)}function Q(a){return Sa.get(a)} -function ec(a,b){var c=[];return function(){c.length=0;Object.assign(c,arguments);if(a.includes("j")){var e=r["dynCall_"+a];e=c&&c.length?e.apply(null,[b].concat(c)):e.call(null,b)}else e=Q(b).apply(null,c);return e}}function R(a,b){a=O(a);var c=a.includes("j")?ec(a,b):Q(b);"function"!=typeof c&&P("unknown function pointer with signature "+a+": "+b);return c}var fc=void 0;function nc(a){a=oc(a);var b=O(a);pc(a);return b} -function qc(a,b){function c(k){f[k]||ob[k]||(pb[k]?pb[k].forEach(c):(e.push(k),f[k]=!0))}var e=[],f={};b.forEach(c);throw new fc(a+": "+e.map(nc).join([", "]));} -function rc(a,b,c,e,f){var k=b.length;2>k&&P("argTypes array size mismatch! Must at least get return value and 'this' types!");var m=null!==b[1]&&null!==c,l=!1;for(c=1;c>2]);return c}var tc=[],uc=[{},{value:void 0},{value:null},{value:!0},{value:!1}];function vc(a){4{a||P("Cannot use deleted val. handle = "+a);return uc[a].value},ac=a=>{switch(a){case void 0:return 1;case null:return 2;case !0:return 3;case !1:return 4;default:var b=tc.length?tc.pop():uc.length;uc[b]={ze:1,value:a};return b}}; -function xc(a,b,c){switch(b){case 0:return function(e){return this.fromWireType((c?Ma:C)[e])};case 1:return function(e){return this.fromWireType((c?Na:Oa)[e>>1])};case 2:return function(e){return this.fromWireType((c?G:J)[e>>2])};default:throw new TypeError("Unknown integer type: "+a);}}function yc(a,b){var c=ob[a];void 0===c&&P(b+" has unknown type "+nc(a));return c}function Zb(a){if(null===a)return"null";var b=typeof a;return"object"===b||"array"===b||"function"===b?a.toString():""+a} -function zc(a,b){switch(b){case 2:return function(c){return this.fromWireType(N[c>>2])};case 3:return function(c){return this.fromWireType(Pa[c>>3])};default:throw new TypeError("Unknown float type: "+a);}} -function Ac(a,b,c){switch(b){case 0:return c?function(e){return Ma[e]}:function(e){return C[e]};case 1:return c?function(e){return Na[e>>1]}:function(e){return Oa[e>>1]};case 2:return c?function(e){return G[e>>2]}:function(e){return J[e>>2]};default:throw new TypeError("Unknown integer type: "+a);}}var Bc="undefined"!=typeof TextDecoder?new TextDecoder("utf-16le"):void 0; -function Cc(a,b){var c=a>>1;for(var e=c+b/2;!(c>=e)&&Oa[c];)++c;c<<=1;if(32=b/2);++e){var f=Na[a+2*e>>1];if(0==f)break;c+=String.fromCharCode(f)}return c}function Dc(a,b,c){void 0===c&&(c=2147483647);if(2>c)return 0;c-=2;var e=b;c=c<2*a.length?c/2:a.length;for(var f=0;f>1]=a.charCodeAt(f),b+=2;Na[b>>1]=0;return b-e}function Ec(a){return 2*a.length} -function Fc(a,b){for(var c=0,e="";!(c>=b/4);){var f=G[a+4*c>>2];if(0==f)break;++c;65536<=f?(f-=65536,e+=String.fromCharCode(55296|f>>10,56320|f&1023)):e+=String.fromCharCode(f)}return e}function Gc(a,b,c){void 0===c&&(c=2147483647);if(4>c)return 0;var e=b;c=e+c-4;for(var f=0;f=k){var m=a.charCodeAt(++f);k=65536+((k&1023)<<10)|m&1023}G[b>>2]=k;b+=4;if(b+4>c)break}G[b>>2]=0;return b-e} -function Hc(a){for(var b=0,c=0;c=e&&++c;b+=4}return b}var Ic={};function Jc(a){var b=Ic[a];return void 0===b?O(a):b}var Kc=[]; -function Lc(){function a(b){b.$$$embind_global$$$=b;var c="object"==typeof $$$embind_global$$$&&b.$$$embind_global$$$==b;c||delete b.$$$embind_global$$$;return c}if("object"==typeof globalThis)return globalThis;if("object"==typeof $$$embind_global$$$)return $$$embind_global$$$;"object"==typeof global&&a(global)?$$$embind_global$$$=global:"object"==typeof self&&a(self)&&($$$embind_global$$$=self);if("object"==typeof $$$embind_global$$$)return $$$embind_global$$$;throw Error("unable to get global object."); -}function Mc(a){var b=Kc.length;Kc.push(a);return b}function Nc(a,b){for(var c=Array(a),e=0;e>2],"parameter "+e);return c}var Oc=[];function Pc(a){var b=Array(a+1);return function(c,e,f){b[0]=c;for(var k=0;k>2],"parameter "+k);b[k+1]=m.readValueFromPointer(f);f+=m.argPackAdvance}c=new (c.bind.apply(c,b));return ac(c)}}var Qc={},Rc;Rc=sa?()=>{var a=process.hrtime();return 1E3*a[0]+a[1]/1E6}:()=>performance.now(); -function Sc(a){var b=a.getExtension("ANGLE_instanced_arrays");b&&(a.vertexAttribDivisor=function(c,e){b.vertexAttribDivisorANGLE(c,e)},a.drawArraysInstanced=function(c,e,f,k){b.drawArraysInstancedANGLE(c,e,f,k)},a.drawElementsInstanced=function(c,e,f,k,m){b.drawElementsInstancedANGLE(c,e,f,k,m)})} -function Tc(a){var b=a.getExtension("OES_vertex_array_object");b&&(a.createVertexArray=function(){return b.createVertexArrayOES()},a.deleteVertexArray=function(c){b.deleteVertexArrayOES(c)},a.bindVertexArray=function(c){b.bindVertexArrayOES(c)},a.isVertexArray=function(c){return b.isVertexArrayOES(c)})}function Uc(a){var b=a.getExtension("WEBGL_draw_buffers");b&&(a.drawBuffers=function(c,e){b.drawBuffersWEBGL(c,e)})} -var Vc=1,Wc=[],Xc=[],Yc=[],Zc=[],ea=[],$c=[],ad=[],ia=[],bd=[],cd=[],ed={},fd={},gd=4;function U(a){hd||(hd=a)}function ca(a){for(var b=Vc++,c=a.length;ca.version||!b.Ee)b.Ee=b.getExtension("EXT_disjoint_timer_query");b.yf=b.getExtension("WEBGL_multi_draw");(b.getSupportedExtensions()||[]).forEach(function(c){c.includes("lose_context")||c.includes("debug")||b.getExtension(c)})}} -var u,hd,ld=[];function md(a,b,c,e){for(var f=0;f>2]=m}} -function nd(a,b,c){if(b){var e=void 0;switch(a){case 36346:e=1;break;case 36344:0!=c&&1!=c&&U(1280);return;case 34814:case 36345:e=0;break;case 34466:var f=X.getParameter(34467);e=f?f.length:0;break;case 33309:if(2>u.version){U(1282);return}e=2*(X.getSupportedExtensions()||[]).length;break;case 33307:case 33308:if(2>u.version){U(1280);return}e=33307==a?3:0}if(void 0===e)switch(f=X.getParameter(a),typeof f){case "number":e=f;break;case "boolean":e=f?1:0;break;case "string":U(1280);return;case "object":if(null=== -f)switch(a){case 34964:case 35725:case 34965:case 36006:case 36007:case 32873:case 34229:case 36662:case 36663:case 35053:case 35055:case 36010:case 35097:case 35869:case 32874:case 36389:case 35983:case 35368:case 34068:e=0;break;default:U(1280);return}else{if(f instanceof Float32Array||f instanceof Uint32Array||f instanceof Int32Array||f instanceof Array){for(a=0;a>2]=f[a];break;case 2:N[b+4*a>>2]=f[a];break;case 4:Ma[b+a>>0]=f[a]?1:0}return}try{e=f.name|0}catch(k){U(1280); -Ca("GL_INVALID_ENUM in glGet"+c+"v: Unknown object returned from WebGL getParameter("+a+")! (error: "+k+")");return}}break;default:U(1280);Ca("GL_INVALID_ENUM in glGet"+c+"v: Native code calling glGet"+c+"v("+a+") and it returns "+f+" of type "+typeof f+"!");return}switch(c){case 1:c=e;J[b>>2]=c;J[b+4>>2]=(c-J[b>>2])/4294967296;break;case 0:G[b>>2]=e;break;case 2:N[b>>2]=e;break;case 4:Ma[b>>0]=e?1:0}}else U(1281)}function od(a){var b=ja(a)+1,c=pd(b);ka(a,C,c,b);return c} -function qd(a){return"]"==a.slice(-1)&&a.lastIndexOf("[")}function rd(a){a-=5120;return 0==a?Ma:1==a?C:2==a?Na:4==a?G:6==a?N:5==a||28922==a||28520==a||30779==a||30782==a?J:Oa}function sd(a,b,c,e,f){a=rd(a);var k=31-Math.clz32(a.BYTES_PER_ELEMENT),m=gd;return a.subarray(f>>k,f+e*(c*({5:3,6:4,8:2,29502:3,29504:4,26917:2,26918:2,29846:3,29847:4}[b-6402]||1)*(1<>k)} -function Z(a){var b=X.Xe;if(b){var c=b.ie[a];"number"==typeof c&&(b.ie[a]=c=X.getUniformLocation(b,b.Ie[a]+(0Y?-1:0S-v.getDate())E-=S-v.getDate()+1,v.setDate(1),11>H?v.setMonth(H+1):(v.setMonth(0),v.setFullYear(v.getFullYear()+1));else{v.setDate(v.getDate()+E);break}}H=new Date(v.getFullYear()+1,0,4);E=l(new Date(v.getFullYear(), -0,4));H=l(H);return 0>=m(E,v)?0>=m(H,v)?v.getFullYear()+1:v.getFullYear():v.getFullYear()-1}var x=G[e+40>>2];e={vf:G[e>>2],uf:G[e+4>>2],se:G[e+8>>2],Ae:G[e+12>>2],te:G[e+16>>2],$d:G[e+20>>2],Wd:G[e+24>>2],Zd:G[e+28>>2],Bf:G[e+32>>2],tf:G[e+36>>2],wf:x?Ka(x):""};c=Ka(c);x={"%c":"%a %b %d %H:%M:%S %Y","%D":"%m/%d/%y","%F":"%Y-%m-%d","%h":"%b","%r":"%I:%M:%S %p","%R":"%H:%M","%T":"%H:%M:%S","%x":"%m/%d/%y","%X":"%H:%M:%S","%Ec":"%c","%EC":"%C","%Ex":"%m/%d/%y","%EX":"%H:%M:%S","%Ey":"%y","%EY":"%Y", -"%Od":"%d","%Oe":"%e","%OH":"%H","%OI":"%I","%Om":"%m","%OM":"%M","%OS":"%S","%Ou":"%u","%OU":"%U","%OV":"%V","%Ow":"%w","%OW":"%W","%Oy":"%y"};for(var y in x)c=c.replace(new RegExp(y,"g"),x[y]);var B="Sunday Monday Tuesday Wednesday Thursday Friday Saturday".split(" "),D="January February March April May June July August September October November December".split(" ");x={"%a":function(v){return B[v.Wd].substring(0,3)},"%A":function(v){return B[v.Wd]},"%b":function(v){return D[v.te].substring(0,3)}, -"%B":function(v){return D[v.te]},"%C":function(v){return k((v.$d+1900)/100|0,2)},"%d":function(v){return k(v.Ae,2)},"%e":function(v){return f(v.Ae,2," ")},"%g":function(v){return q(v).toString().substring(2)},"%G":function(v){return q(v)},"%H":function(v){return k(v.se,2)},"%I":function(v){v=v.se;0==v?v=12:12v.se?"AM":"PM"},"%S":function(v){return k(v.vf,2)},"%t":function(){return"\t"},"%u":function(v){return v.Wd||7},"%U":function(v){return k(Math.floor((v.Zd+7-v.Wd)/7),2)},"%V":function(v){var E=Math.floor((v.Zd+7-(v.Wd+6)%7)/7);2>=(v.Wd+371-v.Zd-2)%7&&E++;if(E)53==E&&(H=(v.Wd+371-v.Zd)%7,4==H||3==H&&zd(v.$d)||(E=1));else{E=52;var H=(v.Wd+7-v.Zd-1)%7;(4==H||5==H&&zd(v.$d%400-1))&&E++}return k(E,2)},"%w":function(v){return v.Wd},"%W":function(v){return k(Math.floor((v.Zd+ -7-(v.Wd+6)%7)/7),2)},"%y":function(v){return(v.$d+1900).toString().substring(2)},"%Y":function(v){return v.$d+1900},"%z":function(v){v=v.tf;var E=0<=v;v=Math.abs(v)/60;return(E?"+":"-")+String("0000"+(v/60*100+v%60)).slice(-4)},"%Z":function(v){return v.wf},"%%":function(){return"%"}};c=c.replace(/%%/g,"\x00\x00");for(y in x)c.includes(y)&&(c=c.replace(new RegExp(y,"g"),x[y](e)));c=c.replace(/\0\0/g,"%");y=Cd(c);if(y.length>b)return 0;Ma.set(y,a);return y.length-1}tb=r.InternalError=sb("InternalError"); -for(var Ed=Array(256),Fd=0;256>Fd;++Fd)Ed[Fd]=String.fromCharCode(Fd);yb=Ed;zb=r.BindingError=sb("BindingError");Tb.prototype.isAliasOf=function(a){if(!(this instanceof Tb&&a instanceof Tb))return!1;var b=this.kd.Od.Md,c=this.kd.Ld,e=a.kd.Od.Md;for(a=a.kd.Ld;b.Vd;)c=b.je(c),b=b.Vd;for(;e.Vd;)a=e.je(a),e=e.Vd;return b===e&&c===a}; -Tb.prototype.clone=function(){this.kd.Ld||Ab(this);if(this.kd.he)return this.kd.count.value+=1,this;var a=Sb,b=Object,c=b.create,e=Object.getPrototypeOf(this),f=this.kd;a=a(c.call(b,e,{kd:{value:{count:f.count,de:f.de,he:f.he,Ld:f.Ld,Od:f.Od,Qd:f.Qd,Td:f.Td}}}));a.kd.count.value+=1;a.kd.de=!1;return a};Tb.prototype["delete"]=function(){this.kd.Ld||Ab(this);this.kd.de&&!this.kd.he&&P("Object already scheduled for deletion");Ib(this);Jb(this.kd);this.kd.he||(this.kd.Qd=void 0,this.kd.Ld=void 0)}; -Tb.prototype.isDeleted=function(){return!this.kd.Ld};Tb.prototype.deleteLater=function(){this.kd.Ld||Ab(this);this.kd.de&&!this.kd.he&&P("Object already scheduled for deletion");Mb.push(this);1===Mb.length&&Ob&&Ob(Nb);this.kd.de=!0;return this};r.getInheritedInstanceCount=function(){return Object.keys(Pb).length};r.getLiveInheritedInstances=function(){var a=[],b;for(b in Pb)Pb.hasOwnProperty(b)&&a.push(Pb[b]);return a};r.flushPendingDeletes=Nb;r.setDelayFunction=function(a){Ob=a;Mb.length&&Ob&&Ob(Nb)}; -cc.prototype.cf=function(a){this.He&&(a=this.He(a));return a};cc.prototype.Ce=function(a){this.Xd&&this.Xd(a)};cc.prototype.argPackAdvance=8;cc.prototype.readValueFromPointer=mb;cc.prototype.deleteObject=function(a){if(null!==a)a["delete"]()}; -cc.prototype.fromWireType=function(a){function b(){return this.ne?Rb(this.Md.ee,{Od:this.lf,Ld:c,Td:this,Qd:a}):Rb(this.Md.ee,{Od:this,Ld:a})}var c=this.cf(a);if(!c)return this.Ce(a),null;var e=Qb(this.Md,c);if(void 0!==e){if(0===e.kd.count.value)return e.kd.Ld=c,e.kd.Qd=a,e.clone();e=e.clone();this.Ce(a);return e}e=this.Md.bf(c);e=Lb[e];if(!e)return b.call(this);e=this.me?e.We:e.pointerType;var f=Kb(c,this.Md,e.Md);return null===f?b.call(this):this.ne?Rb(e.Md.ee,{Od:e,Ld:f,Td:this,Qd:a}):Rb(e.Md.ee, -{Od:e,Ld:f})};fc=r.UnboundTypeError=sb("UnboundTypeError");r.count_emval_handles=function(){for(var a=0,b=5;bGd;++Gd)ld.push(Array(Gd));var Hd=new Float32Array(288);for(Gd=0;288>Gd;++Gd)td[Gd]=Hd.subarray(0,Gd+1);var Id=new Int32Array(288);for(Gd=0;288>Gd;++Gd)ud[Gd]=Id.subarray(0,Gd+1); -var Wd={G:function(a,b,c){(new ib(a)).oe(b,c);jb++;throw a;},U:function(){return 0},tb:function(){},vb:function(){return 0},qb:function(){},rb:function(){},V:function(){},sb:function(){},C:function(a){var b=kb[a];delete kb[a];var c=b.ye,e=b.Xd,f=b.Fe,k=f.map(m=>m.ff).concat(f.map(m=>m.qf));vb([a],k,m=>{var l={};f.forEach((q,x)=>{var y=m[x],B=q.df,D=q.ef,v=m[x+f.length],E=q.pf,H=q.rf;l[q.af]={read:S=>y.fromWireType(B(D,S)),write:(S,Y)=>{var da=[];E(H,S,v.toWireType(da,Y));lb(da)}}});return[{name:b.name, -fromWireType:function(q){var x={},y;for(y in l)x[y]=l[y].read(q);e(q);return x},toWireType:function(q,x){for(var y in l)if(!(y in x))throw new TypeError('Missing field: "'+y+'"');var B=c();for(y in l)l[y].write(B,x[y]);null!==q&&q.push(e,B);return B},argPackAdvance:8,readValueFromPointer:mb,Sd:e}]})},ib:function(){},zb:function(a,b,c,e,f){var k=xb(c);b=O(b);wb(a,{name:b,fromWireType:function(m){return!!m},toWireType:function(m,l){return l?e:f},argPackAdvance:8,readValueFromPointer:function(m){if(1=== -c)var l=Ma;else if(2===c)l=Na;else if(4===c)l=G;else throw new TypeError("Unknown boolean type size: "+b);return this.fromWireType(l[m>>k])},Sd:null})},l:function(a,b,c,e,f,k,m,l,q,x,y,B,D){y=O(y);k=R(f,k);l&&(l=R(m,l));x&&(x=R(q,x));D=R(B,D);var v=qb(y);Vb(v,function(){qc("Cannot construct "+y+" due to unbound types",[e])});vb([a,b,c],e?[e]:[],function(E){E=E[0];if(e){var H=E.Md;var S=H.ee}else S=Tb.prototype;E=rb(v,function(){if(Object.getPrototypeOf(this)!==Y)throw new zb("Use 'new' to construct "+ -y);if(void 0===da.Yd)throw new zb(y+" has no accessible constructor");var La=da.Yd[arguments.length];if(void 0===La)throw new zb("Tried to invoke ctor of "+y+" with invalid number of parameters ("+arguments.length+") - expected ("+Object.keys(da.Yd).toString()+") parameters instead!");return La.apply(this,arguments)});var Y=Object.create(S,{constructor:{value:E}});E.prototype=Y;var da=new Wb(y,E,Y,D,H,k,l,x);H=new cc(y,da,!0,!1,!1);S=new cc(y+"*",da,!1,!1,!1);var ua=new cc(y+" const*",da,!1,!0,!1); -Lb[a]={pointerType:S,We:ua};dc(v,E);return[H,S,ua]})},e:function(a,b,c,e,f,k,m){var l=sc(c,e);b=O(b);k=R(f,k);vb([],[a],function(q){function x(){qc("Cannot call "+y+" due to unbound types",l)}q=q[0];var y=q.name+"."+b;b.startsWith("@@")&&(b=Symbol[b.substring(2)]);var B=q.Md.constructor;void 0===B[b]?(x.be=c-1,B[b]=x):(Ub(B,b,y),B[b].Pd[c-1]=x);vb([],l,function(D){D=[D[0],null].concat(D.slice(1));D=rc(y,D,null,k,m);void 0===B[b].Pd?(D.be=c-1,B[b]=D):B[b].Pd[c-1]=D;return[]});return[]})},A:function(a, -b,c,e,f,k){0{qc("Cannot construct "+l.name+" due to unbound types",m)};vb([],m,function(x){x.splice(1,0,null);l.Md.Yd[b- -1]=rc(q,x,null,f,k);return[]});return[]})},a:function(a,b,c,e,f,k,m,l){var q=sc(c,e);b=O(b);k=R(f,k);vb([],[a],function(x){function y(){qc("Cannot call "+B+" due to unbound types",q)}x=x[0];var B=x.name+"."+b;b.startsWith("@@")&&(b=Symbol[b.substring(2)]);l&&x.Md.mf.push(b);var D=x.Md.ee,v=D[b];void 0===v||void 0===v.Pd&&v.className!==x.name&&v.be===c-2?(y.be=c-2,y.className=x.name,D[b]=y):(Ub(D,b,B),D[b].Pd[c-2]=y);vb([],q,function(E){E=rc(B,E,x,k,m);void 0===D[b].Pd?(E.be=c-2,D[b]=E):D[b].Pd[c- -2]=E;return[]});return[]})},r:function(a,b,c){a=O(a);vb([],[b],function(e){e=e[0];r[a]=e.fromWireType(c);return[]})},yb:function(a,b){b=O(b);wb(a,{name:b,fromWireType:function(c){var e=wc(c);vc(c);return e},toWireType:function(c,e){return ac(e)},argPackAdvance:8,readValueFromPointer:mb,Sd:null})},j:function(a,b,c,e){function f(){}c=xb(c);b=O(b);f.values={};wb(a,{name:b,constructor:f,fromWireType:function(k){return this.constructor.values[k]},toWireType:function(k,m){return m.value},argPackAdvance:8, -readValueFromPointer:xc(b,c,e),Sd:null});Vb(b,f)},b:function(a,b,c){var e=yc(a,"enum");b=O(b);a=e.constructor;e=Object.create(e.constructor.prototype,{value:{value:c},constructor:{value:rb(e.name+"_"+b,function(){})}});a.values[c]=e;a[b]=e},X:function(a,b,c){c=xb(c);b=O(b);wb(a,{name:b,fromWireType:function(e){return e},toWireType:function(e,f){return f},argPackAdvance:8,readValueFromPointer:zc(b,c),Sd:null})},t:function(a,b,c,e,f,k){var m=sc(b,c);a=O(a);f=R(e,f);Vb(a,function(){qc("Cannot call "+ -a+" due to unbound types",m)},b-1);vb([],m,function(l){l=[l[0],null].concat(l.slice(1));dc(a,rc(a,l,null,f,k),b-1);return[]})},E:function(a,b,c,e,f){b=O(b);-1===f&&(f=4294967295);f=xb(c);var k=l=>l;if(0===e){var m=32-8*c;k=l=>l<>>m}c=b.includes("unsigned")?function(l,q){return q>>>0}:function(l,q){return q};wb(a,{name:b,fromWireType:k,toWireType:c,argPackAdvance:8,readValueFromPointer:Ac(b,f,0!==e),Sd:null})},s:function(a,b,c){function e(k){k>>=2;var m=J;return new f(m.buffer,m[k+1],m[k])}var f= -[Int8Array,Uint8Array,Int16Array,Uint16Array,Int32Array,Uint32Array,Float32Array,Float64Array][b];c=O(c);wb(a,{name:c,fromWireType:e,argPackAdvance:8,readValueFromPointer:e},{hf:!0})},q:function(a,b,c,e,f,k,m,l,q,x,y,B){c=O(c);k=R(f,k);l=R(m,l);x=R(q,x);B=R(y,B);vb([a],[b],function(D){D=D[0];return[new cc(c,D.Md,!1,!1,!0,D,e,k,l,x,B)]})},W:function(a,b){b=O(b);var c="std::string"===b;wb(a,{name:b,fromWireType:function(e){var f=J[e>>2],k=e+4;if(c)for(var m=k,l=0;l<=f;++l){var q=k+l;if(l==f||0==C[q]){m= -Ka(m,q-m);if(void 0===x)var x=m;else x+=String.fromCharCode(0),x+=m;m=q+1}}else{x=Array(f);for(l=0;l>2]=k;if(c&&m)ka(f,C,q,k+1);else if(m)for(m=0;mOa;var l=1}else 4===b&&(e=Fc,f=Gc,k=Hc,m=()=>J,l=2);wb(a,{name:c,fromWireType:function(q){for(var x=J[q>>2],y=m(),B,D=q+4,v=0;v<=x;++v){var E=q+4+v*b;if(v==x||0==y[E>>l])D=e(D,E-D),void 0===B?B=D:(B+= -String.fromCharCode(0),B+=D),D=E+b}pc(q);return B},toWireType:function(q,x){"string"!=typeof x&&P("Cannot pass non-string to C++ string type "+c);var y=k(x),B=pd(4+y+b);J[B>>2]=y>>l;f(x,B+4,y+b);null!==q&&q.push(pc,B);return B},argPackAdvance:8,readValueFromPointer:mb,Sd:function(q){pc(q)}})},D:function(a,b,c,e,f,k){kb[a]={name:O(b),ye:R(c,e),Xd:R(f,k),Fe:[]}},d:function(a,b,c,e,f,k,m,l,q,x){kb[a].Fe.push({af:O(b),ff:c,df:R(e,f),ef:k,qf:m,pf:R(l,q),rf:x})},Ab:function(a,b){b=O(b);wb(a,{kf:!0,name:b, -argPackAdvance:0,fromWireType:function(){},toWireType:function(){}})},xb:function(){return!0},kb:function(){throw Infinity;},F:function(a,b,c){a=wc(a);b=yc(b,"emval::as");var e=[],f=ac(e);J[c>>2]=f;return b.toWireType(e,a)},P:function(a,b,c,e,f){a=Kc[a];b=wc(b);c=Jc(c);var k=[];J[e>>2]=ac(k);return a(b,c,k,f)},x:function(a,b,c,e){a=Kc[a];b=wc(b);c=Jc(c);a(b,c,null,e)},c:vc,K:function(a){if(0===a)return ac(Lc());a=Jc(a);return ac(Lc()[a])},u:function(a,b){var c=Nc(a,b),e=c[0];b=e.name+"_$"+c.slice(1).map(function(m){return m.name}).join("_")+ -"$";var f=Oc[b];if(void 0!==f)return f;var k=Array(a-1);f=Mc((m,l,q,x)=>{for(var y=0,B=0;B>>0)+4294967296*e)},ca:function(a,b,c,e){X.colorMask(!!a,!!b,!!c,!!e)},da:function(a){X.compileShader($c[a])},ea:function(a,b,c,e,f,k,m,l){2<= -u.version?X.ce||!m?X.compressedTexImage2D(a,b,c,e,f,k,m,l):X.compressedTexImage2D(a,b,c,e,f,k,C,l,m):X.compressedTexImage2D(a,b,c,e,f,k,l?C.subarray(l,l+m):null)},fa:function(a,b,c,e,f,k,m,l,q){2<=u.version?X.ce||!l?X.compressedTexSubImage2D(a,b,c,e,f,k,m,l,q):X.compressedTexSubImage2D(a,b,c,e,f,k,m,C,q,l):X.compressedTexSubImage2D(a,b,c,e,f,k,m,q?C.subarray(q,q+l):null)},Qb:function(a,b,c,e,f){X.copyBufferSubData(a,b,c,e,f)},ga:function(a,b,c,e,f,k,m,l){X.copyTexSubImage2D(a,b,c,e,f,k,m,l)},ha:function(){var a= -ca(Xc),b=X.createProgram();b.name=a;b.re=b.pe=b.qe=0;b.Be=1;Xc[a]=b;return a},ia:function(a){var b=ca($c);$c[b]=X.createShader(a);return b},ja:function(a){X.cullFace(a)},ka:function(a,b){for(var c=0;c>2],f=Wc[e];f&&(X.deleteBuffer(f),f.name=0,Wc[e]=null,e==X.ve&&(X.ve=0),e==X.ce&&(X.ce=0))}},_b:function(a,b){for(var c=0;c>2],f=Yc[e];f&&(X.deleteFramebuffer(f),f.name=0,Yc[e]=null)}},la:function(a){if(a){var b=Xc[a];b?(X.deleteProgram(b),b.name=0,Xc[a]=null): -U(1281)}},$b:function(a,b){for(var c=0;c>2],f=Zc[e];f&&(X.deleteRenderbuffer(f),f.name=0,Zc[e]=null)}},Jb:function(a,b){for(var c=0;c>2],f=bd[e];f&&(X.deleteSampler(f),f.name=0,bd[e]=null)}},ma:function(a){if(a){var b=$c[a];b?(X.deleteShader(b),$c[a]=null):U(1281)}},Rb:function(a){if(a){var b=cd[a];b?(X.deleteSync(b),b.name=0,cd[a]=null):U(1281)}},na:function(a,b){for(var c=0;c>2],f=ea[e];f&&(X.deleteTexture(f),f.name=0,ea[e]=null)}}, -rc:function(a,b){for(var c=0;c>2];X.deleteVertexArray(ad[e]);ad[e]=null}},uc:function(a,b){for(var c=0;c>2];X.deleteVertexArray(ad[e]);ad[e]=null}},oa:function(a){X.depthMask(!!a)},pa:function(a){X.disable(a)},qa:function(a){X.disableVertexAttribArray(a)},ra:function(a,b,c){X.drawArrays(a,b,c)},oc:function(a,b,c,e){X.drawArraysInstanced(a,b,c,e)},mc:function(a,b,c,e,f){X.De.drawArraysInstancedBaseInstanceWEBGL(a,b,c,e,f)},kc:function(a,b){for(var c=ld[a], -e=0;e>2];X.drawBuffers(c)},sa:function(a,b,c,e){X.drawElements(a,b,c,e)},pc:function(a,b,c,e,f){X.drawElementsInstanced(a,b,c,e,f)},nc:function(a,b,c,e,f,k,m){X.De.drawElementsInstancedBaseVertexBaseInstanceWEBGL(a,b,c,e,f,k,m)},ec:function(a,b,c,e,f,k){X.drawElements(a,e,f,k)},ta:function(a){X.enable(a)},ua:function(a){X.enableVertexAttribArray(a)},Ob:function(a,b){return(a=X.fenceSync(a,b))?(b=ca(cd),a.name=b,cd[b]=a,b):0},va:function(){X.finish()},wa:function(){X.flush()},ac:function(a, -b,c,e){X.framebufferRenderbuffer(a,b,c,Zc[e])},bc:function(a,b,c,e,f){X.framebufferTexture2D(a,b,c,ea[e],f)},xa:function(a){X.frontFace(a)},ya:function(a,b){md(a,b,"createBuffer",Wc)},cc:function(a,b){md(a,b,"createFramebuffer",Yc)},dc:function(a,b){md(a,b,"createRenderbuffer",Zc)},Kb:function(a,b){md(a,b,"createSampler",bd)},za:function(a,b){md(a,b,"createTexture",ea)},sc:function(a,b){md(a,b,"createVertexArray",ad)},vc:function(a,b){md(a,b,"createVertexArray",ad)},Ub:function(a){X.generateMipmap(a)}, -Aa:function(a,b,c){c?G[c>>2]=X.getBufferParameter(a,b):U(1281)},Ba:function(){var a=X.getError()||hd;hd=0;return a},Ca:function(a,b){nd(a,b,2)},Vb:function(a,b,c,e){a=X.getFramebufferAttachmentParameter(a,b,c);if(a instanceof WebGLRenderbuffer||a instanceof WebGLTexture)a=a.name|0;G[e>>2]=a},L:function(a,b){nd(a,b,0)},Da:function(a,b,c,e){a=X.getProgramInfoLog(Xc[a]);null===a&&(a="(unknown error)");b=0>2]=b)},Ea:function(a,b,c){if(c)if(a>=Vc)U(1281);else if(a=Xc[a],35716== -b)a=X.getProgramInfoLog(a),null===a&&(a="(unknown error)"),G[c>>2]=a.length+1;else if(35719==b){if(!a.re)for(b=0;b>2]=a.re}else if(35722==b){if(!a.pe)for(b=0;b>2]=a.pe}else if(35381==b){if(!a.qe)for(b=0;b> -2]=a.qe}else G[c>>2]=X.getProgramParameter(a,b);else U(1281)},Wb:function(a,b,c){c?G[c>>2]=X.getRenderbufferParameter(a,b):U(1281)},Fa:function(a,b,c,e){a=X.getShaderInfoLog($c[a]);null===a&&(a="(unknown error)");b=0>2]=b)},Fb:function(a,b,c,e){a=X.getShaderPrecisionFormat(a,b);G[c>>2]=a.rangeMin;G[c+4>>2]=a.rangeMax;G[e>>2]=a.precision},Ga:function(a,b,c){c?35716==b?(a=X.getShaderInfoLog($c[a]),null===a&&(a="(unknown error)"),G[c>>2]=a?a.length+1:0):35720==b?(a=X.getShaderSource($c[a]), -G[c>>2]=a?a.length+1:0):G[c>>2]=X.getShaderParameter($c[a],b):U(1281)},Q:function(a){var b=ed[a];if(!b){switch(a){case 7939:b=X.getSupportedExtensions()||[];b=b.concat(b.map(function(e){return"GL_"+e}));b=od(b.join(" "));break;case 7936:case 7937:case 37445:case 37446:(b=X.getParameter(a))||U(1280);b=b&&od(b);break;case 7938:b=X.getParameter(7938);b=2<=u.version?"OpenGL ES 3.0 ("+b+")":"OpenGL ES 2.0 ("+b+")";b=od(b);break;case 35724:b=X.getParameter(35724);var c=b.match(/^WebGL GLSL ES ([0-9]\.[0-9][0-9]?)(?:$| .*)/); -null!==c&&(3==c[1].length&&(c[1]+="0"),b="OpenGL ES GLSL ES "+c[1]+" ("+b+")");b=od(b);break;default:U(1280)}ed[a]=b}return b},bb:function(a,b){if(2>u.version)return U(1282),0;var c=fd[a];if(c)return 0>b||b>=c.length?(U(1281),0):c[b];switch(a){case 7939:return c=X.getSupportedExtensions()||[],c=c.concat(c.map(function(e){return"GL_"+e})),c=c.map(function(e){return od(e)}),c=fd[a]=c,0>b||b>=c.length?(U(1281),0):c[b];default:return U(1280),0}},Ha:function(a,b){b=Ka(b);if(a=Xc[a]){var c=a,e=c.ie,f=c.Je, -k;if(!e)for(c.ie=e={},c.Ie={},k=0;k>>0,f=b.slice(0,k));if((f=a.Je[f])&&e>2];X.invalidateFramebuffer(a,e)},Hb:function(a, -b,c,e,f,k,m){for(var l=ld[b],q=0;q>2];X.invalidateSubFramebuffer(a,l,e,f,k,m)},Pb:function(a){return X.isSync(cd[a])},Ia:function(a){return(a=ea[a])?X.isTexture(a):0},Ja:function(a){X.lineWidth(a)},Ka:function(a){a=Xc[a];X.linkProgram(a);a.ie=0;a.Je={}},ic:function(a,b,c,e,f,k){X.Ge.multiDrawArraysInstancedBaseInstanceWEBGL(a,G,b>>2,G,c>>2,G,e>>2,J,f>>2,k)},jc:function(a,b,c,e,f,k,m,l){X.Ge.multiDrawElementsInstancedBaseVertexBaseInstanceWEBGL(a,G,b>>2,c,G,e>>2,G,f>>2,G,k>>2,J, -m>>2,l)},La:function(a,b){3317==a&&(gd=b);X.pixelStorei(a,b)},lc:function(a){X.readBuffer(a)},Ma:function(a,b,c,e,f,k,m){if(2<=u.version)if(X.ve)X.readPixels(a,b,c,e,f,k,m);else{var l=rd(k);X.readPixels(a,b,c,e,f,k,l,m>>31-Math.clz32(l.BYTES_PER_ELEMENT))}else(m=sd(k,f,c,e,m))?X.readPixels(a,b,c,e,f,k,m):U(1280)},Xb:function(a,b,c,e){X.renderbufferStorage(a,b,c,e)},Tb:function(a,b,c,e,f){X.renderbufferStorageMultisample(a,b,c,e,f)},Lb:function(a,b,c){X.samplerParameterf(bd[a],b,c)},Mb:function(a, -b,c){X.samplerParameteri(bd[a],b,c)},Nb:function(a,b,c){X.samplerParameteri(bd[a],b,G[c>>2])},Na:function(a,b,c,e){X.scissor(a,b,c,e)},Oa:function(a,b,c,e){for(var f="",k=0;k>2]:-1;f+=Ka(G[c+4*k>>2],0>m?void 0:m)}X.shaderSource($c[a],f)},Pa:function(a,b,c){X.stencilFunc(a,b,c)},Qa:function(a,b,c,e){X.stencilFuncSeparate(a,b,c,e)},Ra:function(a){X.stencilMask(a)},Sa:function(a,b){X.stencilMaskSeparate(a,b)},Ta:function(a,b,c){X.stencilOp(a,b,c)},Ua:function(a,b,c,e){X.stencilOpSeparate(a, -b,c,e)},Va:function(a,b,c,e,f,k,m,l,q){if(2<=u.version)if(X.ce)X.texImage2D(a,b,c,e,f,k,m,l,q);else if(q){var x=rd(l);X.texImage2D(a,b,c,e,f,k,m,l,x,q>>31-Math.clz32(x.BYTES_PER_ELEMENT))}else X.texImage2D(a,b,c,e,f,k,m,l,null);else X.texImage2D(a,b,c,e,f,k,m,l,q?sd(l,m,e,f,q):null)},Wa:function(a,b,c){X.texParameterf(a,b,c)},Xa:function(a,b,c){X.texParameterf(a,b,N[c>>2])},Ya:function(a,b,c){X.texParameteri(a,b,c)},Za:function(a,b,c){X.texParameteri(a,b,G[c>>2])},fc:function(a,b,c,e,f){X.texStorage2D(a, -b,c,e,f)},_a:function(a,b,c,e,f,k,m,l,q){if(2<=u.version)if(X.ce)X.texSubImage2D(a,b,c,e,f,k,m,l,q);else if(q){var x=rd(l);X.texSubImage2D(a,b,c,e,f,k,m,l,x,q>>31-Math.clz32(x.BYTES_PER_ELEMENT))}else X.texSubImage2D(a,b,c,e,f,k,m,l,null);else x=null,q&&(x=sd(l,m,f,k,q)),X.texSubImage2D(a,b,c,e,f,k,m,l,x)},$a:function(a,b){X.uniform1f(Z(a),b)},ab:function(a,b,c){if(2<=u.version)b&&X.uniform1fv(Z(a),N,c>>2,b);else{if(288>=b)for(var e=td[b-1],f=0;f>2];else e=N.subarray(c>>2,c+4* -b>>2);X.uniform1fv(Z(a),e)}},Qc:function(a,b){X.uniform1i(Z(a),b)},Rc:function(a,b,c){if(2<=u.version)b&&X.uniform1iv(Z(a),G,c>>2,b);else{if(288>=b)for(var e=ud[b-1],f=0;f>2];else e=G.subarray(c>>2,c+4*b>>2);X.uniform1iv(Z(a),e)}},Sc:function(a,b,c){X.uniform2f(Z(a),b,c)},Tc:function(a,b,c){if(2<=u.version)b&&X.uniform2fv(Z(a),N,c>>2,2*b);else{if(144>=b)for(var e=td[2*b-1],f=0;f<2*b;f+=2)e[f]=N[c+4*f>>2],e[f+1]=N[c+(4*f+4)>>2];else e=N.subarray(c>>2,c+8*b>>2);X.uniform2fv(Z(a), -e)}},Pc:function(a,b,c){X.uniform2i(Z(a),b,c)},Oc:function(a,b,c){if(2<=u.version)b&&X.uniform2iv(Z(a),G,c>>2,2*b);else{if(144>=b)for(var e=ud[2*b-1],f=0;f<2*b;f+=2)e[f]=G[c+4*f>>2],e[f+1]=G[c+(4*f+4)>>2];else e=G.subarray(c>>2,c+8*b>>2);X.uniform2iv(Z(a),e)}},Nc:function(a,b,c,e){X.uniform3f(Z(a),b,c,e)},Mc:function(a,b,c){if(2<=u.version)b&&X.uniform3fv(Z(a),N,c>>2,3*b);else{if(96>=b)for(var e=td[3*b-1],f=0;f<3*b;f+=3)e[f]=N[c+4*f>>2],e[f+1]=N[c+(4*f+4)>>2],e[f+2]=N[c+(4*f+8)>>2];else e=N.subarray(c>> -2,c+12*b>>2);X.uniform3fv(Z(a),e)}},Lc:function(a,b,c,e){X.uniform3i(Z(a),b,c,e)},Kc:function(a,b,c){if(2<=u.version)b&&X.uniform3iv(Z(a),G,c>>2,3*b);else{if(96>=b)for(var e=ud[3*b-1],f=0;f<3*b;f+=3)e[f]=G[c+4*f>>2],e[f+1]=G[c+(4*f+4)>>2],e[f+2]=G[c+(4*f+8)>>2];else e=G.subarray(c>>2,c+12*b>>2);X.uniform3iv(Z(a),e)}},Jc:function(a,b,c,e,f){X.uniform4f(Z(a),b,c,e,f)},Ic:function(a,b,c){if(2<=u.version)b&&X.uniform4fv(Z(a),N,c>>2,4*b);else{if(72>=b){var e=td[4*b-1],f=N;c>>=2;for(var k=0;k<4*b;k+=4){var m= -c+k;e[k]=f[m];e[k+1]=f[m+1];e[k+2]=f[m+2];e[k+3]=f[m+3]}}else e=N.subarray(c>>2,c+16*b>>2);X.uniform4fv(Z(a),e)}},wc:function(a,b,c,e,f){X.uniform4i(Z(a),b,c,e,f)},xc:function(a,b,c){if(2<=u.version)b&&X.uniform4iv(Z(a),G,c>>2,4*b);else{if(72>=b)for(var e=ud[4*b-1],f=0;f<4*b;f+=4)e[f]=G[c+4*f>>2],e[f+1]=G[c+(4*f+4)>>2],e[f+2]=G[c+(4*f+8)>>2],e[f+3]=G[c+(4*f+12)>>2];else e=G.subarray(c>>2,c+16*b>>2);X.uniform4iv(Z(a),e)}},yc:function(a,b,c,e){if(2<=u.version)b&&X.uniformMatrix2fv(Z(a),!!c,N,e>>2,4* -b);else{if(72>=b)for(var f=td[4*b-1],k=0;k<4*b;k+=4)f[k]=N[e+4*k>>2],f[k+1]=N[e+(4*k+4)>>2],f[k+2]=N[e+(4*k+8)>>2],f[k+3]=N[e+(4*k+12)>>2];else f=N.subarray(e>>2,e+16*b>>2);X.uniformMatrix2fv(Z(a),!!c,f)}},zc:function(a,b,c,e){if(2<=u.version)b&&X.uniformMatrix3fv(Z(a),!!c,N,e>>2,9*b);else{if(32>=b)for(var f=td[9*b-1],k=0;k<9*b;k+=9)f[k]=N[e+4*k>>2],f[k+1]=N[e+(4*k+4)>>2],f[k+2]=N[e+(4*k+8)>>2],f[k+3]=N[e+(4*k+12)>>2],f[k+4]=N[e+(4*k+16)>>2],f[k+5]=N[e+(4*k+20)>>2],f[k+6]=N[e+(4*k+24)>>2],f[k+7]= -N[e+(4*k+28)>>2],f[k+8]=N[e+(4*k+32)>>2];else f=N.subarray(e>>2,e+36*b>>2);X.uniformMatrix3fv(Z(a),!!c,f)}},Ac:function(a,b,c,e){if(2<=u.version)b&&X.uniformMatrix4fv(Z(a),!!c,N,e>>2,16*b);else{if(18>=b){var f=td[16*b-1],k=N;e>>=2;for(var m=0;m<16*b;m+=16){var l=e+m;f[m]=k[l];f[m+1]=k[l+1];f[m+2]=k[l+2];f[m+3]=k[l+3];f[m+4]=k[l+4];f[m+5]=k[l+5];f[m+6]=k[l+6];f[m+7]=k[l+7];f[m+8]=k[l+8];f[m+9]=k[l+9];f[m+10]=k[l+10];f[m+11]=k[l+11];f[m+12]=k[l+12];f[m+13]=k[l+13];f[m+14]=k[l+14];f[m+15]=k[l+15]}}else f= -N.subarray(e>>2,e+64*b>>2);X.uniformMatrix4fv(Z(a),!!c,f)}},Bc:function(a){a=Xc[a];X.useProgram(a);X.Xe=a},Cc:function(a,b){X.vertexAttrib1f(a,b)},Dc:function(a,b){X.vertexAttrib2f(a,N[b>>2],N[b+4>>2])},Ec:function(a,b){X.vertexAttrib3f(a,N[b>>2],N[b+4>>2],N[b+8>>2])},Fc:function(a,b){X.vertexAttrib4f(a,N[b>>2],N[b+4>>2],N[b+8>>2],N[b+12>>2])},gc:function(a,b){X.vertexAttribDivisor(a,b)},hc:function(a,b,c,e,f){X.vertexAttribIPointer(a,b,c,e,f)},Gc:function(a,b,c,e,f,k){X.vertexAttribPointer(a,b,c, -!!e,f,k)},Hc:function(a,b,c,e){X.viewport(a,b,c,e)},db:function(a,b,c,e){X.waitSync(cd[a],b,(c>>>0)+4294967296*e)},lb:function(a){var b=C.length;a>>>=0;if(2147483648=c;c*=2){var e=b*(1+.2/c);e=Math.min(e,a+100663296);var f=Math,k=f.min;e=Math.max(a,e);e+=(65536-e%65536)%65536;a:{var m=Ga.buffer;try{Ga.grow(k.call(f,2147483648,e)-m.byteLength+65535>>>16);Qa();var l=1;break a}catch(q){}l=void 0}if(l)return!0}return!1},fb:function(){return u?u.gf:0},ob:function(a,b){var c=0; -wd().forEach(function(e,f){var k=b+c;f=J[a+4*f>>2]=k;for(k=0;k>0]=e.charCodeAt(k);Ma[f>>0]=0;c+=e.length+1});return 0},pb:function(a,b){var c=wd();J[a>>2]=c.length;var e=0;c.forEach(function(f){e+=f.length+1});J[b>>2]=e;return 0},Bb:function(a){if(!noExitRuntime){if(r.onExit)r.onExit(a);Ha=!0}oa(a,new Ba(a))},M:function(){return 52},gb:function(){return 52},ub:function(){return 52},hb:function(){return 70},S:function(a,b,c,e){for(var f=0,k=0;k>2],l=J[b+4>>2]; -b+=8;for(var q=0;q>2]=f;return 0},n:Jd,m:Kd,k:Ld,O:Md,Z:Nd,Y:Od,w:Pd,y:Qd,p:Rd,v:Sd,Cb:Td,Db:Ud,Eb:Vd,jb:function(a,b,c,e){return Dd(a,b,c,e)}}; -(function(){function a(c){c=c.exports;r.asm=c;Ga=r.asm.ad;Qa();Sa=r.asm.cd;Ua.unshift(r.asm.bd);Xa--;r.monitorRunDependencies&&r.monitorRunDependencies(Xa);if(0==Xa&&(null!==Ya&&(clearInterval(Ya),Ya=null),Za)){var e=Za;Za=null;e()}return c}var b={a:Wd};Xa++;r.monitorRunDependencies&&r.monitorRunDependencies(Xa);if(r.instantiateWasm)try{return r.instantiateWasm(b,a)}catch(c){Ca("Module.instantiateWasm callback failed with error: "+c),ba(c)}fb(b,function(c){a(c.instance)}).catch(ba);return{}})(); -var pc=r._free=function(){return(pc=r._free=r.asm.dd).apply(null,arguments)},pd=r._malloc=function(){return(pd=r._malloc=r.asm.ed).apply(null,arguments)},oc=r.___getTypeName=function(){return(oc=r.___getTypeName=r.asm.fd).apply(null,arguments)};r.__embind_initialize_bindings=function(){return(r.__embind_initialize_bindings=r.asm.gd).apply(null,arguments)};function Xd(){return(Xd=r.asm.hd).apply(null,arguments)}function Yd(){return(Yd=r.asm.id).apply(null,arguments)} -function Zd(){return(Zd=r.asm.jd).apply(null,arguments)}r.dynCall_viji=function(){return(r.dynCall_viji=r.asm.ld).apply(null,arguments)};r.dynCall_vijiii=function(){return(r.dynCall_vijiii=r.asm.md).apply(null,arguments)};r.dynCall_viiiiij=function(){return(r.dynCall_viiiiij=r.asm.nd).apply(null,arguments)};r.dynCall_iiiji=function(){return(r.dynCall_iiiji=r.asm.od).apply(null,arguments)};r.dynCall_jii=function(){return(r.dynCall_jii=r.asm.pd).apply(null,arguments)}; -r.dynCall_vij=function(){return(r.dynCall_vij=r.asm.qd).apply(null,arguments)};r.dynCall_iiij=function(){return(r.dynCall_iiij=r.asm.rd).apply(null,arguments)};r.dynCall_iiiij=function(){return(r.dynCall_iiiij=r.asm.sd).apply(null,arguments)};r.dynCall_viij=function(){return(r.dynCall_viij=r.asm.td).apply(null,arguments)};r.dynCall_viiij=function(){return(r.dynCall_viiij=r.asm.ud).apply(null,arguments)};r.dynCall_ji=function(){return(r.dynCall_ji=r.asm.vd).apply(null,arguments)}; -r.dynCall_iij=function(){return(r.dynCall_iij=r.asm.wd).apply(null,arguments)};r.dynCall_jiiii=function(){return(r.dynCall_jiiii=r.asm.xd).apply(null,arguments)};r.dynCall_jiiiiii=function(){return(r.dynCall_jiiiiii=r.asm.yd).apply(null,arguments)};r.dynCall_jiiiiji=function(){return(r.dynCall_jiiiiji=r.asm.zd).apply(null,arguments)};r.dynCall_iijj=function(){return(r.dynCall_iijj=r.asm.Ad).apply(null,arguments)};r.dynCall_iiji=function(){return(r.dynCall_iiji=r.asm.Bd).apply(null,arguments)}; -r.dynCall_iijjiii=function(){return(r.dynCall_iijjiii=r.asm.Cd).apply(null,arguments)};r.dynCall_vijjjii=function(){return(r.dynCall_vijjjii=r.asm.Dd).apply(null,arguments)};r.dynCall_jiji=function(){return(r.dynCall_jiji=r.asm.Ed).apply(null,arguments)};r.dynCall_viijii=function(){return(r.dynCall_viijii=r.asm.Fd).apply(null,arguments)};r.dynCall_iiiiij=function(){return(r.dynCall_iiiiij=r.asm.Gd).apply(null,arguments)};r.dynCall_iiiiijj=function(){return(r.dynCall_iiiiijj=r.asm.Hd).apply(null,arguments)}; -r.dynCall_iiiiiijj=function(){return(r.dynCall_iiiiiijj=r.asm.Id).apply(null,arguments)};function Sd(a,b,c,e,f){var k=Yd();try{Q(a)(b,c,e,f)}catch(m){Zd(k);if(m!==m+0)throw m;Xd(1,0)}}function Kd(a,b,c){var e=Yd();try{return Q(a)(b,c)}catch(f){Zd(e);if(f!==f+0)throw f;Xd(1,0)}}function Qd(a,b,c){var e=Yd();try{Q(a)(b,c)}catch(f){Zd(e);if(f!==f+0)throw f;Xd(1,0)}}function Jd(a,b){var c=Yd();try{return Q(a)(b)}catch(e){Zd(c);if(e!==e+0)throw e;Xd(1,0)}} -function Pd(a,b){var c=Yd();try{Q(a)(b)}catch(e){Zd(c);if(e!==e+0)throw e;Xd(1,0)}}function Ld(a,b,c,e){var f=Yd();try{return Q(a)(b,c,e)}catch(k){Zd(f);if(k!==k+0)throw k;Xd(1,0)}}function Vd(a,b,c,e,f,k,m,l,q,x){var y=Yd();try{Q(a)(b,c,e,f,k,m,l,q,x)}catch(B){Zd(y);if(B!==B+0)throw B;Xd(1,0)}}function Rd(a,b,c,e){var f=Yd();try{Q(a)(b,c,e)}catch(k){Zd(f);if(k!==k+0)throw k;Xd(1,0)}}function Ud(a,b,c,e,f,k,m){var l=Yd();try{Q(a)(b,c,e,f,k,m)}catch(q){Zd(l);if(q!==q+0)throw q;Xd(1,0)}} -function Md(a,b,c,e,f){var k=Yd();try{return Q(a)(b,c,e,f)}catch(m){Zd(k);if(m!==m+0)throw m;Xd(1,0)}}function Nd(a,b,c,e,f,k,m){var l=Yd();try{return Q(a)(b,c,e,f,k,m)}catch(q){Zd(l);if(q!==q+0)throw q;Xd(1,0)}}function Td(a,b,c,e,f,k){var m=Yd();try{Q(a)(b,c,e,f,k)}catch(l){Zd(m);if(l!==l+0)throw l;Xd(1,0)}}function Od(a,b,c,e,f,k,m,l,q,x){var y=Yd();try{return Q(a)(b,c,e,f,k,m,l,q,x)}catch(B){Zd(y);if(B!==B+0)throw B;Xd(1,0)}}var $d;Za=function ae(){$d||be();$d||(Za=ae)}; -function be(){function a(){if(!$d&&($d=!0,r.calledRun=!0,!Ha)){hb(Ua);aa(r);if(r.onRuntimeInitialized)r.onRuntimeInitialized();if(r.postRun)for("function"==typeof r.postRun&&(r.postRun=[r.postRun]);r.postRun.length;){var b=r.postRun.shift();Va.unshift(b)}hb(Va)}}if(!(0 { - var _scriptDir = typeof document !== 'undefined' && document.currentScript ? document.currentScript.src : undefined; - if (typeof __filename !== 'undefined') _scriptDir = _scriptDir || __filename; - return ( -function(CanvasKitInit = {}) { - -var r;r||(r=typeof CanvasKitInit !== 'undefined' ? CanvasKitInit : {});var aa,ba;r.ready=new Promise(function(a,b){aa=a;ba=b}); -(function(a){a.Id=a.Id||[];a.Id.push(function(){a.MakeSWCanvasSurface=function(b){var c=b,e="undefined"!==typeof OffscreenCanvas&&c instanceof OffscreenCanvas;if(!("undefined"!==typeof HTMLCanvasElement&&c instanceof HTMLCanvasElement||e||(c=document.getElementById(b),c)))throw"Canvas with id "+b+" was not found";if(b=a.MakeSurface(c.width,c.height))b.fe=c;return b};a.MakeCanvasSurface||(a.MakeCanvasSurface=a.MakeSWCanvasSurface);a.MakeSurface=function(b,c){var e={width:b,height:c,colorType:a.ColorType.RGBA_8888, -alphaType:a.AlphaType.Unpremul,colorSpace:a.ColorSpace.SRGB},f=b*c*4,k=a._malloc(f);if(e=a.Surface._makeRasterDirect(e,k,4*b))e.fe=null,e.Qe=b,e.Ne=c,e.Oe=f,e.pe=k,e.getCanvas().clear(a.TRANSPARENT);return e};a.MakeRasterDirectSurface=function(b,c,e){return a.Surface._makeRasterDirect(b,c.byteOffset,e)};a.Surface.prototype.flush=function(b){a.Fd(this.Ed);this._flush();if(this.fe){var c=new Uint8ClampedArray(a.HEAPU8.buffer,this.pe,this.Oe);c=new ImageData(c,this.Qe,this.Ne);b?this.fe.getContext("2d").putImageData(c, -0,0,b[0],b[1],b[2]-b[0],b[3]-b[1]):this.fe.getContext("2d").putImageData(c,0,0)}};a.Surface.prototype.dispose=function(){this.pe&&a._free(this.pe);this.delete()};a.Fd=a.Fd||function(){};a.ge=a.ge||function(){return null}})})(r); -(function(a){a.Id=a.Id||[];a.Id.push(function(){function b(l,q,x){return l&&l.hasOwnProperty(q)?l[q]:x}function c(l){var q=ca(ea);ea[q]=l;return q}function e(l){return l.naturalHeight||l.videoHeight||l.displayHeight||l.height}function f(l){return l.naturalWidth||l.videoWidth||l.displayWidth||l.width}function k(l,q,x,y){l.bindTexture(l.TEXTURE_2D,q);y||x.alphaType!==a.AlphaType.Premul||l.pixelStorei(l.UNPACK_PREMULTIPLY_ALPHA_WEBGL,!0);return q}function m(l,q,x){x||q.alphaType!==a.AlphaType.Premul|| -l.pixelStorei(l.UNPACK_PREMULTIPLY_ALPHA_WEBGL,!1);l.bindTexture(l.TEXTURE_2D,null)}a.GetWebGLContext=function(l,q){if(!l)throw"null canvas passed into makeWebGLContext";var x={alpha:b(q,"alpha",1),depth:b(q,"depth",1),stencil:b(q,"stencil",8),antialias:b(q,"antialias",0),premultipliedAlpha:b(q,"premultipliedAlpha",1),preserveDrawingBuffer:b(q,"preserveDrawingBuffer",0),preferLowPowerToHighPerformance:b(q,"preferLowPowerToHighPerformance",0),failIfMajorPerformanceCaveat:b(q,"failIfMajorPerformanceCaveat", -0),enableExtensionsByDefault:b(q,"enableExtensionsByDefault",1),explicitSwapControl:b(q,"explicitSwapControl",0),renderViaOffscreenBackBuffer:b(q,"renderViaOffscreenBackBuffer",0)};x.majorVersion=q&&q.majorVersion?q.majorVersion:"undefined"!==typeof WebGL2RenderingContext?2:1;if(x.explicitSwapControl)throw"explicitSwapControl is not supported";l=fa(l,x);if(!l)return 0;ha(l);u.Pd.getExtension("WEBGL_debug_renderer_info");return l};a.deleteContext=function(l){u===ia[l]&&(u=null);"object"==typeof JSEvents&& -JSEvents.vf(ia[l].Pd.canvas);ia[l]&&ia[l].Pd.canvas&&(ia[l].Pd.canvas.He=void 0);ia[l]=null};a._setTextureCleanup({deleteTexture:function(l,q){var x=ea[q];x&&ia[l].Pd.deleteTexture(x);ea[q]=null}});a.MakeWebGLContext=function(l){if(!this.Fd(l))return null;var q=this._MakeGrContext();if(!q)return null;q.Ed=l;var x=q.delete.bind(q);q["delete"]=function(){a.Fd(this.Ed);x()}.bind(q);return u.re=q};a.MakeGrContext=a.MakeWebGLContext;a.GrDirectContext.prototype.getResourceCacheLimitBytes=function(){a.Fd(this.Ed); -this._getResourceCacheLimitBytes()};a.GrDirectContext.prototype.getResourceCacheUsageBytes=function(){a.Fd(this.Ed);this._getResourceCacheUsageBytes()};a.GrDirectContext.prototype.releaseResourcesAndAbandonContext=function(){a.Fd(this.Ed);this._releaseResourcesAndAbandonContext()};a.GrDirectContext.prototype.setResourceCacheLimitBytes=function(l){a.Fd(this.Ed);this._setResourceCacheLimitBytes(l)};a.MakeOnScreenGLSurface=function(l,q,x,y,B,D){if(!this.Fd(l.Ed))return null;q=void 0===B||void 0===D? -this._MakeOnScreenGLSurface(l,q,x,y):this._MakeOnScreenGLSurface(l,q,x,y,B,D);if(!q)return null;q.Ed=l.Ed;return q};a.MakeRenderTarget=function(){var l=arguments[0];if(!this.Fd(l.Ed))return null;if(3===arguments.length){var q=this._MakeRenderTargetWH(l,arguments[1],arguments[2]);if(!q)return null}else if(2===arguments.length){if(q=this._MakeRenderTargetII(l,arguments[1]),!q)return null}else return null;q.Ed=l.Ed;return q};a.MakeWebGLCanvasSurface=function(l,q,x){q=q||null;var y=l,B="undefined"!== -typeof OffscreenCanvas&&y instanceof OffscreenCanvas;if(!("undefined"!==typeof HTMLCanvasElement&&y instanceof HTMLCanvasElement||B||(y=document.getElementById(l),y)))throw"Canvas with id "+l+" was not found";l=this.GetWebGLContext(y,x);if(!l||0>l)throw"failed to create webgl context: err "+l;l=this.MakeWebGLContext(l);q=this.MakeOnScreenGLSurface(l,y.width,y.height,q);return q?q:(q=y.cloneNode(!0),y.parentNode.replaceChild(q,y),q.classList.add("ck-replaced"),a.MakeSWCanvasSurface(q))};a.MakeCanvasSurface= -a.MakeWebGLCanvasSurface;a.Surface.prototype.makeImageFromTexture=function(l,q){a.Fd(this.Ed);l=c(l);if(q=this._makeImageFromTexture(this.Ed,l,q))q.be=l;return q};a.Surface.prototype.makeImageFromTextureSource=function(l,q,x){q||(q={height:e(l),width:f(l),colorType:a.ColorType.RGBA_8888,alphaType:x?a.AlphaType.Premul:a.AlphaType.Unpremul});q.colorSpace||(q.colorSpace=a.ColorSpace.SRGB);a.Fd(this.Ed);var y=u.Pd;x=k(y,y.createTexture(),q,x);2===u.version?y.texImage2D(y.TEXTURE_2D,0,y.RGBA,q.width,q.height, -0,y.RGBA,y.UNSIGNED_BYTE,l):y.texImage2D(y.TEXTURE_2D,0,y.RGBA,y.RGBA,y.UNSIGNED_BYTE,l);m(y,q);this._resetContext();return this.makeImageFromTexture(x,q)};a.Surface.prototype.updateTextureFromSource=function(l,q,x){if(l.be){a.Fd(this.Ed);var y=l.getImageInfo(),B=u.Pd,D=k(B,ea[l.be],y,x);2===u.version?B.texImage2D(B.TEXTURE_2D,0,B.RGBA,f(q),e(q),0,B.RGBA,B.UNSIGNED_BYTE,q):B.texImage2D(B.TEXTURE_2D,0,B.RGBA,B.RGBA,B.UNSIGNED_BYTE,q);m(B,y,x);this._resetContext();ea[l.be]=null;l.be=c(D);y.colorSpace= -l.getColorSpace();q=this._makeImageFromTexture(this.Ed,l.be,y);x=l.jd.Gd;B=l.jd.Ld;l.jd.Gd=q.jd.Gd;l.jd.Ld=q.jd.Ld;q.jd.Gd=x;q.jd.Ld=B;q.delete();y.colorSpace.delete()}};a.MakeLazyImageFromTextureSource=function(l,q,x){q||(q={height:e(l),width:f(l),colorType:a.ColorType.RGBA_8888,alphaType:x?a.AlphaType.Premul:a.AlphaType.Unpremul});q.colorSpace||(q.colorSpace=a.ColorSpace.SRGB);var y={makeTexture:function(){var B=u,D=B.Pd,v=k(D,D.createTexture(),q,x);2===B.version?D.texImage2D(D.TEXTURE_2D,0,D.RGBA, -q.width,q.height,0,D.RGBA,D.UNSIGNED_BYTE,l):D.texImage2D(D.TEXTURE_2D,0,D.RGBA,D.RGBA,D.UNSIGNED_BYTE,l);m(D,q,x);return c(v)},freeSrc:function(){}};"VideoFrame"===l.constructor.name&&(y.freeSrc=function(){l.close()});return a.Image._makeFromGenerator(q,y)};a.Fd=function(l){return l?ha(l):!1};a.ge=function(){return u&&u.re&&!u.re.isDeleted()?u.re:null}})})(r); -(function(a){function b(g){return(f(255*g[3])<<24|f(255*g[0])<<16|f(255*g[1])<<8|f(255*g[2])<<0)>>>0}function c(g){if(g&&g._ck)return g;if(g instanceof Float32Array){for(var d=Math.floor(g.length/4),h=new Uint32Array(d),n=0;nz;z++)a.HEAPF32[t+n]=g[w][z],n++;g=h}else g=M;d.Md=g}else throw"Invalid argument to copyFlexibleColorArray, Not a color array "+typeof g;return d}function q(g){if(!g)return M;var d=S.toTypedArray();if(g.length){if(6===g.length||9===g.length)return m(g,"HEAPF32",H),6===g.length&&a.HEAPF32.set(dd,6+H/4),H;if(16===g.length)return d[0]=g[0],d[1]=g[1],d[2]=g[3],d[3]=g[4],d[4]=g[5],d[5]=g[7],d[6]=g[12],d[7]=g[13],d[8]=g[15],H;throw"invalid matrix size"; -}if(void 0===g.m11)throw"invalid matrix argument";d[0]=g.m11;d[1]=g.m21;d[2]=g.m41;d[3]=g.m12;d[4]=g.m22;d[5]=g.m42;d[6]=g.m14;d[7]=g.m24;d[8]=g.m44;return H}function x(g){if(!g)return M;var d=da.toTypedArray();if(g.length){if(16!==g.length&&6!==g.length&&9!==g.length)throw"invalid matrix size";if(16===g.length)return m(g,"HEAPF32",Y);d.fill(0);d[0]=g[0];d[1]=g[1];d[3]=g[2];d[4]=g[3];d[5]=g[4];d[7]=g[5];d[10]=1;d[12]=g[6];d[13]=g[7];d[15]=g[8];6===g.length&&(d[12]=0,d[13]=0,d[15]=1);return Y}if(void 0=== -g.m11)throw"invalid matrix argument";d[0]=g.m11;d[1]=g.m21;d[2]=g.m31;d[3]=g.m41;d[4]=g.m12;d[5]=g.m22;d[6]=g.m32;d[7]=g.m42;d[8]=g.m13;d[9]=g.m23;d[10]=g.m33;d[11]=g.m43;d[12]=g.m14;d[13]=g.m24;d[14]=g.m34;d[15]=g.m44;return Y}function y(g,d){return m(g,"HEAPF32",d||ua)}function B(g,d,h,n){var t=La.toTypedArray();t[0]=g;t[1]=d;t[2]=h;t[3]=n;return ua}function D(g){for(var d=new Float32Array(4),h=0;4>h;h++)d[h]=a.HEAPF32[g/4+h];return d}function v(g,d){return m(g,"HEAPF32",d||V)}function E(g,d){return m(g, -"HEAPF32",d||Cb)}a.Color=function(g,d,h,n){void 0===n&&(n=1);return a.Color4f(f(g)/255,f(d)/255,f(h)/255,n)};a.ColorAsInt=function(g,d,h,n){void 0===n&&(n=255);return(f(n)<<24|f(g)<<16|f(d)<<8|f(h)<<0&268435455)>>>0};a.Color4f=function(g,d,h,n){void 0===n&&(n=1);return Float32Array.of(g,d,h,n)};Object.defineProperty(a,"TRANSPARENT",{get:function(){return a.Color4f(0,0,0,0)}});Object.defineProperty(a,"BLACK",{get:function(){return a.Color4f(0,0,0,1)}});Object.defineProperty(a,"WHITE",{get:function(){return a.Color4f(1, -1,1,1)}});Object.defineProperty(a,"RED",{get:function(){return a.Color4f(1,0,0,1)}});Object.defineProperty(a,"GREEN",{get:function(){return a.Color4f(0,1,0,1)}});Object.defineProperty(a,"BLUE",{get:function(){return a.Color4f(0,0,1,1)}});Object.defineProperty(a,"YELLOW",{get:function(){return a.Color4f(1,1,0,1)}});Object.defineProperty(a,"CYAN",{get:function(){return a.Color4f(0,1,1,1)}});Object.defineProperty(a,"MAGENTA",{get:function(){return a.Color4f(1,0,1,1)}});a.getColorComponents=function(g){return[Math.floor(255* -g[0]),Math.floor(255*g[1]),Math.floor(255*g[2]),g[3]]};a.parseColorString=function(g,d){g=g.toLowerCase();if(g.startsWith("#")){d=255;switch(g.length){case 9:d=parseInt(g.slice(7,9),16);case 7:var h=parseInt(g.slice(1,3),16);var n=parseInt(g.slice(3,5),16);var t=parseInt(g.slice(5,7),16);break;case 5:d=17*parseInt(g.slice(4,5),16);case 4:h=17*parseInt(g.slice(1,2),16),n=17*parseInt(g.slice(2,3),16),t=17*parseInt(g.slice(3,4),16)}return a.Color(h,n,t,d/255)}return g.startsWith("rgba")?(g=g.slice(5, --1),g=g.split(","),a.Color(+g[0],+g[1],+g[2],e(g[3]))):g.startsWith("rgb")?(g=g.slice(4,-1),g=g.split(","),a.Color(+g[0],+g[1],+g[2],e(g[3]))):g.startsWith("gray(")||g.startsWith("hsl")||!d||(g=d[g],void 0===g)?a.BLACK:g};a.multiplyByAlpha=function(g,d){g=g.slice();g[3]=Math.max(0,Math.min(g[3]*d,1));return g};a.Malloc=function(g,d){var h=a._malloc(d*g.BYTES_PER_ELEMENT);return{_ck:!0,length:d,byteOffset:h,Wd:null,subarray:function(n,t){n=this.toTypedArray().subarray(n,t);n._ck=!0;return n},toTypedArray:function(){if(this.Wd&& -this.Wd.length)return this.Wd;this.Wd=new g(a.HEAPU8.buffer,h,d);this.Wd._ck=!0;return this.Wd}}};a.Free=function(g){a._free(g.byteOffset);g.byteOffset=M;g.toTypedArray=null;g.Wd=null};var H=M,S,Y=M,da,ua=M,La,ma,V=M,gc,Aa=M,hc,Db=M,ic,Eb=M,Fb,gb=M,jc,Cb=M,kc,lc=M,dd=Float32Array.of(0,0,1),M=0;a.onRuntimeInitialized=function(){function g(d,h,n,t,w,z,F){z||(z=4*t.width,t.colorType===a.ColorType.RGBA_F16?z*=2:t.colorType===a.ColorType.RGBA_F32&&(z*=4));var K=z*t.height;var I=w?w.byteOffset:a._malloc(K); -if(F?!d._readPixels(t,I,z,h,n,F):!d._readPixels(t,I,z,h,n))return w||a._free(I),null;if(w)return w.toTypedArray();switch(t.colorType){case a.ColorType.RGBA_8888:case a.ColorType.RGBA_F16:d=(new Uint8Array(a.HEAPU8.buffer,I,K)).slice();break;case a.ColorType.RGBA_F32:d=(new Float32Array(a.HEAPU8.buffer,I,K)).slice();break;default:return null}a._free(I);return d}La=a.Malloc(Float32Array,4);ua=La.byteOffset;da=a.Malloc(Float32Array,16);Y=da.byteOffset;S=a.Malloc(Float32Array,9);H=S.byteOffset;jc=a.Malloc(Float32Array, -12);Cb=jc.byteOffset;kc=a.Malloc(Float32Array,12);lc=kc.byteOffset;ma=a.Malloc(Float32Array,4);V=ma.byteOffset;gc=a.Malloc(Float32Array,4);Aa=gc.byteOffset;hc=a.Malloc(Float32Array,3);Db=hc.byteOffset;ic=a.Malloc(Float32Array,3);Eb=ic.byteOffset;Fb=a.Malloc(Int32Array,4);gb=Fb.byteOffset;a.ColorSpace.SRGB=a.ColorSpace._MakeSRGB();a.ColorSpace.DISPLAY_P3=a.ColorSpace._MakeDisplayP3();a.ColorSpace.ADOBE_RGB=a.ColorSpace._MakeAdobeRGB();a.GlyphRunFlags={IsWhiteSpace:a._GlyphRunFlags_isWhiteSpace};a.Path.MakeFromCmds= -function(d){var h=m(d,"HEAPF32"),n=a.Path._MakeFromCmds(h,d.length);k(h,d);return n};a.Path.MakeFromVerbsPointsWeights=function(d,h,n){var t=m(d,"HEAPU8"),w=m(h,"HEAPF32"),z=m(n,"HEAPF32"),F=a.Path._MakeFromVerbsPointsWeights(t,d.length,w,h.length,z,n&&n.length||0);k(t,d);k(w,h);k(z,n);return F};a.Path.prototype.addArc=function(d,h,n){d=v(d);this._addArc(d,h,n);return this};a.Path.prototype.addCircle=function(d,h,n,t){this._addCircle(d,h,n,!!t);return this};a.Path.prototype.addOval=function(d,h,n){void 0=== -n&&(n=1);d=v(d);this._addOval(d,!!h,n);return this};a.Path.prototype.addPath=function(){var d=Array.prototype.slice.call(arguments),h=d[0],n=!1;"boolean"===typeof d[d.length-1]&&(n=d.pop());if(1===d.length)this._addPath(h,1,0,0,0,1,0,0,0,1,n);else if(2===d.length)d=d[1],this._addPath(h,d[0],d[1],d[2],d[3],d[4],d[5],d[6]||0,d[7]||0,d[8]||1,n);else if(7===d.length||10===d.length)this._addPath(h,d[1],d[2],d[3],d[4],d[5],d[6],d[7]||0,d[8]||0,d[9]||1,n);else return null;return this};a.Path.prototype.addPoly= -function(d,h){var n=m(d,"HEAPF32");this._addPoly(n,d.length/2,h);k(n,d);return this};a.Path.prototype.addRect=function(d,h){d=v(d);this._addRect(d,!!h);return this};a.Path.prototype.addRRect=function(d,h){d=E(d);this._addRRect(d,!!h);return this};a.Path.prototype.addVerbsPointsWeights=function(d,h,n){var t=m(d,"HEAPU8"),w=m(h,"HEAPF32"),z=m(n,"HEAPF32");this._addVerbsPointsWeights(t,d.length,w,h.length,z,n&&n.length||0);k(t,d);k(w,h);k(z,n)};a.Path.prototype.arc=function(d,h,n,t,w,z){d=a.LTRBRect(d- -n,h-n,d+n,h+n);w=(w-t)/Math.PI*180-360*!!z;z=new a.Path;z.addArc(d,t/Math.PI*180,w);this.addPath(z,!0);z.delete();return this};a.Path.prototype.arcToOval=function(d,h,n,t){d=v(d);this._arcToOval(d,h,n,t);return this};a.Path.prototype.arcToRotated=function(d,h,n,t,w,z,F){this._arcToRotated(d,h,n,!!t,!!w,z,F);return this};a.Path.prototype.arcToTangent=function(d,h,n,t,w){this._arcToTangent(d,h,n,t,w);return this};a.Path.prototype.close=function(){this._close();return this};a.Path.prototype.conicTo= -function(d,h,n,t,w){this._conicTo(d,h,n,t,w);return this};a.Path.prototype.computeTightBounds=function(d){this._computeTightBounds(V);var h=ma.toTypedArray();return d?(d.set(h),d):h.slice()};a.Path.prototype.cubicTo=function(d,h,n,t,w,z){this._cubicTo(d,h,n,t,w,z);return this};a.Path.prototype.dash=function(d,h,n){return this._dash(d,h,n)?this:null};a.Path.prototype.getBounds=function(d){this._getBounds(V);var h=ma.toTypedArray();return d?(d.set(h),d):h.slice()};a.Path.prototype.lineTo=function(d, -h){this._lineTo(d,h);return this};a.Path.prototype.moveTo=function(d,h){this._moveTo(d,h);return this};a.Path.prototype.offset=function(d,h){this._transform(1,0,d,0,1,h,0,0,1);return this};a.Path.prototype.quadTo=function(d,h,n,t){this._quadTo(d,h,n,t);return this};a.Path.prototype.rArcTo=function(d,h,n,t,w,z,F){this._rArcTo(d,h,n,t,w,z,F);return this};a.Path.prototype.rConicTo=function(d,h,n,t,w){this._rConicTo(d,h,n,t,w);return this};a.Path.prototype.rCubicTo=function(d,h,n,t,w,z){this._rCubicTo(d, -h,n,t,w,z);return this};a.Path.prototype.rLineTo=function(d,h){this._rLineTo(d,h);return this};a.Path.prototype.rMoveTo=function(d,h){this._rMoveTo(d,h);return this};a.Path.prototype.rQuadTo=function(d,h,n,t){this._rQuadTo(d,h,n,t);return this};a.Path.prototype.stroke=function(d){d=d||{};d.width=d.width||1;d.miter_limit=d.miter_limit||4;d.cap=d.cap||a.StrokeCap.Butt;d.join=d.join||a.StrokeJoin.Miter;d.precision=d.precision||1;return this._stroke(d)?this:null};a.Path.prototype.transform=function(){if(1=== -arguments.length){var d=arguments[0];this._transform(d[0],d[1],d[2],d[3],d[4],d[5],d[6]||0,d[7]||0,d[8]||1)}else if(6===arguments.length||9===arguments.length)d=arguments,this._transform(d[0],d[1],d[2],d[3],d[4],d[5],d[6]||0,d[7]||0,d[8]||1);else throw"transform expected to take 1 or 9 arguments. Got "+arguments.length;return this};a.Path.prototype.trim=function(d,h,n){return this._trim(d,h,!!n)?this:null};a.Image.prototype.encodeToBytes=function(d,h){var n=a.ge();d=d||a.ImageFormat.PNG;h=h||100; -return n?this._encodeToBytes(d,h,n):this._encodeToBytes(d,h)};a.Image.prototype.makeShaderCubic=function(d,h,n,t,w){w=q(w);return this._makeShaderCubic(d,h,n,t,w)};a.Image.prototype.makeShaderOptions=function(d,h,n,t,w){w=q(w);return this._makeShaderOptions(d,h,n,t,w)};a.Image.prototype.readPixels=function(d,h,n,t,w){var z=a.ge();return g(this,d,h,n,t,w,z)};a.Canvas.prototype.clear=function(d){a.Fd(this.Ed);d=y(d);this._clear(d)};a.Canvas.prototype.clipRRect=function(d,h,n){a.Fd(this.Ed);d=E(d);this._clipRRect(d, -h,n)};a.Canvas.prototype.clipRect=function(d,h,n){a.Fd(this.Ed);d=v(d);this._clipRect(d,h,n)};a.Canvas.prototype.concat=function(d){a.Fd(this.Ed);d=x(d);this._concat(d)};a.Canvas.prototype.drawArc=function(d,h,n,t,w){a.Fd(this.Ed);d=v(d);this._drawArc(d,h,n,t,w)};a.Canvas.prototype.drawAtlas=function(d,h,n,t,w,z,F){if(d&&t&&h&&n&&h.length===n.length){a.Fd(this.Ed);w||(w=a.BlendMode.SrcOver);var K=m(h,"HEAPF32"),I=m(n,"HEAPF32"),T=n.length/4,p=m(c(z),"HEAPU32");if(F&&"B"in F&&"C"in F)this._drawAtlasCubic(d, -I,K,p,T,w,F.B,F.C,t);else{let A=a.FilterMode.Linear,L=a.MipmapMode.None;F&&(A=F.filter,"mipmap"in F&&(L=F.mipmap));this._drawAtlasOptions(d,I,K,p,T,w,A,L,t)}k(K,h);k(I,n);k(p,z)}};a.Canvas.prototype.drawCircle=function(d,h,n,t){a.Fd(this.Ed);this._drawCircle(d,h,n,t)};a.Canvas.prototype.drawColor=function(d,h){a.Fd(this.Ed);d=y(d);void 0!==h?this._drawColor(d,h):this._drawColor(d)};a.Canvas.prototype.drawColorInt=function(d,h){a.Fd(this.Ed);this._drawColorInt(d,h||a.BlendMode.SrcOver)};a.Canvas.prototype.drawColorComponents= -function(d,h,n,t,w){a.Fd(this.Ed);d=B(d,h,n,t);void 0!==w?this._drawColor(d,w):this._drawColor(d)};a.Canvas.prototype.drawDRRect=function(d,h,n){a.Fd(this.Ed);d=E(d,Cb);h=E(h,lc);this._drawDRRect(d,h,n)};a.Canvas.prototype.drawImage=function(d,h,n,t){a.Fd(this.Ed);this._drawImage(d,h,n,t||null)};a.Canvas.prototype.drawImageCubic=function(d,h,n,t,w,z){a.Fd(this.Ed);this._drawImageCubic(d,h,n,t,w,z||null)};a.Canvas.prototype.drawImageOptions=function(d,h,n,t,w,z){a.Fd(this.Ed);this._drawImageOptions(d, -h,n,t,w,z||null)};a.Canvas.prototype.drawImageNine=function(d,h,n,t,w){a.Fd(this.Ed);h=m(h,"HEAP32",gb);n=v(n);this._drawImageNine(d,h,n,t,w||null)};a.Canvas.prototype.drawImageRect=function(d,h,n,t,w){a.Fd(this.Ed);v(h,V);v(n,Aa);this._drawImageRect(d,V,Aa,t,!!w)};a.Canvas.prototype.drawImageRectCubic=function(d,h,n,t,w,z){a.Fd(this.Ed);v(h,V);v(n,Aa);this._drawImageRectCubic(d,V,Aa,t,w,z||null)};a.Canvas.prototype.drawImageRectOptions=function(d,h,n,t,w,z){a.Fd(this.Ed);v(h,V);v(n,Aa);this._drawImageRectOptions(d, -V,Aa,t,w,z||null)};a.Canvas.prototype.drawLine=function(d,h,n,t,w){a.Fd(this.Ed);this._drawLine(d,h,n,t,w)};a.Canvas.prototype.drawOval=function(d,h){a.Fd(this.Ed);d=v(d);this._drawOval(d,h)};a.Canvas.prototype.drawPaint=function(d){a.Fd(this.Ed);this._drawPaint(d)};a.Canvas.prototype.drawParagraph=function(d,h,n){a.Fd(this.Ed);this._drawParagraph(d,h,n)};a.Canvas.prototype.drawPatch=function(d,h,n,t,w){if(24>d.length)throw"Need 12 cubic points";if(h&&4>h.length)throw"Need 4 colors";if(n&&8>n.length)throw"Need 4 shader coordinates"; -a.Fd(this.Ed);const z=m(d,"HEAPF32"),F=h?m(c(h),"HEAPU32"):M,K=n?m(n,"HEAPF32"):M;t||(t=a.BlendMode.Modulate);this._drawPatch(z,F,K,t,w);k(K,n);k(F,h);k(z,d)};a.Canvas.prototype.drawPath=function(d,h){a.Fd(this.Ed);this._drawPath(d,h)};a.Canvas.prototype.drawPicture=function(d){a.Fd(this.Ed);this._drawPicture(d)};a.Canvas.prototype.drawPoints=function(d,h,n){a.Fd(this.Ed);var t=m(h,"HEAPF32");this._drawPoints(d,t,h.length/2,n);k(t,h)};a.Canvas.prototype.drawRRect=function(d,h){a.Fd(this.Ed);d=E(d); -this._drawRRect(d,h)};a.Canvas.prototype.drawRect=function(d,h){a.Fd(this.Ed);d=v(d);this._drawRect(d,h)};a.Canvas.prototype.drawRect4f=function(d,h,n,t,w){a.Fd(this.Ed);this._drawRect4f(d,h,n,t,w)};a.Canvas.prototype.drawShadow=function(d,h,n,t,w,z,F){a.Fd(this.Ed);var K=m(w,"HEAPF32"),I=m(z,"HEAPF32");h=m(h,"HEAPF32",Db);n=m(n,"HEAPF32",Eb);this._drawShadow(d,h,n,t,K,I,F);k(K,w);k(I,z)};a.getShadowLocalBounds=function(d,h,n,t,w,z,F){d=q(d);n=m(n,"HEAPF32",Db);t=m(t,"HEAPF32",Eb);if(!this._getShadowLocalBounds(d, -h,n,t,w,z,V))return null;h=ma.toTypedArray();return F?(F.set(h),F):h.slice()};a.Canvas.prototype.drawTextBlob=function(d,h,n,t){a.Fd(this.Ed);this._drawTextBlob(d,h,n,t)};a.Canvas.prototype.drawVertices=function(d,h,n){a.Fd(this.Ed);this._drawVertices(d,h,n)};a.Canvas.prototype.getDeviceClipBounds=function(d){this._getDeviceClipBounds(gb);var h=Fb.toTypedArray();d?d.set(h):d=h.slice();return d};a.Canvas.prototype.getLocalToDevice=function(){this._getLocalToDevice(Y);for(var d=Y,h=Array(16),n=0;16> -n;n++)h[n]=a.HEAPF32[d/4+n];return h};a.Canvas.prototype.getTotalMatrix=function(){this._getTotalMatrix(H);for(var d=Array(9),h=0;9>h;h++)d[h]=a.HEAPF32[H/4+h];return d};a.Canvas.prototype.makeSurface=function(d){d=this._makeSurface(d);d.Ed=this.Ed;return d};a.Canvas.prototype.readPixels=function(d,h,n,t,w){a.Fd(this.Ed);return g(this,d,h,n,t,w)};a.Canvas.prototype.saveLayer=function(d,h,n,t){h=v(h);return this._saveLayer(d||null,h,n||null,t||0)};a.Canvas.prototype.writePixels=function(d,h,n,t,w, -z,F,K){if(d.byteLength%(h*n))throw"pixels length must be a multiple of the srcWidth * srcHeight";a.Fd(this.Ed);var I=d.byteLength/(h*n);z=z||a.AlphaType.Unpremul;F=F||a.ColorType.RGBA_8888;K=K||a.ColorSpace.SRGB;var T=I*h;I=m(d,"HEAPU8");h=this._writePixels({width:h,height:n,colorType:F,alphaType:z,colorSpace:K},I,T,t,w);k(I,d);return h};a.ColorFilter.MakeBlend=function(d,h,n){d=y(d);n=n||a.ColorSpace.SRGB;return a.ColorFilter._MakeBlend(d,h,n)};a.ColorFilter.MakeMatrix=function(d){if(!d||20!==d.length)throw"invalid color matrix"; -var h=m(d,"HEAPF32"),n=a.ColorFilter._makeMatrix(h);k(h,d);return n};a.ContourMeasure.prototype.getPosTan=function(d,h){this._getPosTan(d,V);d=ma.toTypedArray();return h?(h.set(d),h):d.slice()};a.ImageFilter.MakeDropShadow=function(d,h,n,t,w,z){w=y(w,ua);return a.ImageFilter._MakeDropShadow(d,h,n,t,w,z)};a.ImageFilter.MakeDropShadowOnly=function(d,h,n,t,w,z){w=y(w,ua);return a.ImageFilter._MakeDropShadowOnly(d,h,n,t,w,z)};a.ImageFilter.MakeImage=function(d,h,n,t){n=v(n,V);t=v(t,Aa);if("B"in h&&"C"in -h)return a.ImageFilter._MakeImageCubic(d,h.B,h.C,n,t);const w=h.filter;let z=a.MipmapMode.None;"mipmap"in h&&(z=h.mipmap);return a.ImageFilter._MakeImageOptions(d,w,z,n,t)};a.ImageFilter.MakeMatrixTransform=function(d,h,n){d=q(d);if("B"in h&&"C"in h)return a.ImageFilter._MakeMatrixTransformCubic(d,h.B,h.C,n);const t=h.filter;let w=a.MipmapMode.None;"mipmap"in h&&(w=h.mipmap);return a.ImageFilter._MakeMatrixTransformOptions(d,t,w,n)};a.Paint.prototype.getColor=function(){this._getColor(ua);return D(ua)}; -a.Paint.prototype.setColor=function(d,h){h=h||null;d=y(d);this._setColor(d,h)};a.Paint.prototype.setColorComponents=function(d,h,n,t,w){w=w||null;d=B(d,h,n,t);this._setColor(d,w)};a.Path.prototype.getPoint=function(d,h){this._getPoint(d,V);d=ma.toTypedArray();return h?(h[0]=d[0],h[1]=d[1],h):d.slice(0,2)};a.Picture.prototype.makeShader=function(d,h,n,t,w){t=q(t);w=v(w);return this._makeShader(d,h,n,t,w)};a.Picture.prototype.cullRect=function(d){this._cullRect(V);var h=ma.toTypedArray();return d?(d.set(h), -d):h.slice()};a.PictureRecorder.prototype.beginRecording=function(d,h){d=v(d);return this._beginRecording(d,!!h)};a.Surface.prototype.getCanvas=function(){var d=this._getCanvas();d.Ed=this.Ed;return d};a.Surface.prototype.makeImageSnapshot=function(d){a.Fd(this.Ed);d=m(d,"HEAP32",gb);return this._makeImageSnapshot(d)};a.Surface.prototype.makeSurface=function(d){a.Fd(this.Ed);d=this._makeSurface(d);d.Ed=this.Ed;return d};a.Surface.prototype.Pe=function(d,h){this.ae||(this.ae=this.getCanvas());return requestAnimationFrame(function(){a.Fd(this.Ed); -d(this.ae);this.flush(h)}.bind(this))};a.Surface.prototype.requestAnimationFrame||(a.Surface.prototype.requestAnimationFrame=a.Surface.prototype.Pe);a.Surface.prototype.Me=function(d,h){this.ae||(this.ae=this.getCanvas());requestAnimationFrame(function(){a.Fd(this.Ed);d(this.ae);this.flush(h);this.dispose()}.bind(this))};a.Surface.prototype.drawOnce||(a.Surface.prototype.drawOnce=a.Surface.prototype.Me);a.PathEffect.MakeDash=function(d,h){h||(h=0);if(!d.length||1===d.length%2)throw"Intervals array must have even length"; -var n=m(d,"HEAPF32");h=a.PathEffect._MakeDash(n,d.length,h);k(n,d);return h};a.PathEffect.MakeLine2D=function(d,h){h=q(h);return a.PathEffect._MakeLine2D(d,h)};a.PathEffect.MakePath2D=function(d,h){d=q(d);return a.PathEffect._MakePath2D(d,h)};a.Shader.MakeColor=function(d,h){h=h||null;d=y(d);return a.Shader._MakeColor(d,h)};a.Shader.Blend=a.Shader.MakeBlend;a.Shader.Color=a.Shader.MakeColor;a.Shader.MakeLinearGradient=function(d,h,n,t,w,z,F,K){K=K||null;var I=l(n),T=m(t,"HEAPF32");F=F||0;z=q(z);var p= -ma.toTypedArray();p.set(d);p.set(h,2);d=a.Shader._MakeLinearGradient(V,I.Md,I.colorType,T,I.count,w,F,z,K);k(I.Md,n);t&&k(T,t);return d};a.Shader.MakeRadialGradient=function(d,h,n,t,w,z,F,K){K=K||null;var I=l(n),T=m(t,"HEAPF32");F=F||0;z=q(z);d=a.Shader._MakeRadialGradient(d[0],d[1],h,I.Md,I.colorType,T,I.count,w,F,z,K);k(I.Md,n);t&&k(T,t);return d};a.Shader.MakeSweepGradient=function(d,h,n,t,w,z,F,K,I,T){T=T||null;var p=l(n),A=m(t,"HEAPF32");F=F||0;K=K||0;I=I||360;z=q(z);d=a.Shader._MakeSweepGradient(d, -h,p.Md,p.colorType,A,p.count,w,K,I,F,z,T);k(p.Md,n);t&&k(A,t);return d};a.Shader.MakeTwoPointConicalGradient=function(d,h,n,t,w,z,F,K,I,T){T=T||null;var p=l(w),A=m(z,"HEAPF32");I=I||0;K=q(K);var L=ma.toTypedArray();L.set(d);L.set(n,2);d=a.Shader._MakeTwoPointConicalGradient(V,h,t,p.Md,p.colorType,A,p.count,F,I,K,T);k(p.Md,w);z&&k(A,z);return d};a.Vertices.prototype.bounds=function(d){this._bounds(V);var h=ma.toTypedArray();return d?(d.set(h),d):h.slice()};a.Id&&a.Id.forEach(function(d){d()})};a.computeTonalColors= -function(g){var d=m(g.ambient,"HEAPF32"),h=m(g.spot,"HEAPF32");this._computeTonalColors(d,h);var n={ambient:D(d),spot:D(h)};k(d,g.ambient);k(h,g.spot);return n};a.LTRBRect=function(g,d,h,n){return Float32Array.of(g,d,h,n)};a.XYWHRect=function(g,d,h,n){return Float32Array.of(g,d,g+h,d+n)};a.LTRBiRect=function(g,d,h,n){return Int32Array.of(g,d,h,n)};a.XYWHiRect=function(g,d,h,n){return Int32Array.of(g,d,g+h,d+n)};a.RRectXY=function(g,d,h){return Float32Array.of(g[0],g[1],g[2],g[3],d,h,d,h,d,h,d,h)}; -a.MakeAnimatedImageFromEncoded=function(g){g=new Uint8Array(g);var d=a._malloc(g.byteLength);a.HEAPU8.set(g,d);return(g=a._decodeAnimatedImage(d,g.byteLength))?g:null};a.MakeImageFromEncoded=function(g){g=new Uint8Array(g);var d=a._malloc(g.byteLength);a.HEAPU8.set(g,d);return(g=a._decodeImage(d,g.byteLength))?g:null};var Ra=null;a.MakeImageFromCanvasImageSource=function(g){var d=g.width,h=g.height;Ra||(Ra=document.createElement("canvas"));Ra.width=d;Ra.height=h;var n=Ra.getContext("2d",{xf:!0}); -n.drawImage(g,0,0);g=n.getImageData(0,0,d,h);return a.MakeImage({width:d,height:h,alphaType:a.AlphaType.Unpremul,colorType:a.ColorType.RGBA_8888,colorSpace:a.ColorSpace.SRGB},g.data,4*d)};a.MakeImage=function(g,d,h){var n=a._malloc(d.length);a.HEAPU8.set(d,n);return a._MakeImage(g,n,d.length,h)};a.MakeVertices=function(g,d,h,n,t,w){var z=t&&t.length||0,F=0;h&&h.length&&(F|=1);n&&n.length&&(F|=2);void 0===w||w||(F|=4);g=new a._VerticesBuilder(g,d.length/2,z,F);m(d,"HEAPF32",g.positions());g.texCoords()&& -m(h,"HEAPF32",g.texCoords());g.colors()&&m(c(n),"HEAPU32",g.colors());g.indices()&&m(t,"HEAPU16",g.indices());return g.detach()};(function(g){g.Id=g.Id||[];g.Id.push(function(){function d(p){if(!p||!p.length)return[];for(var A=[],L=0;Ld)return a._free(g),null;t=new Uint16Array(a.HEAPU8.buffer,g,d);if(h)return h.set(t),a._free(g),h;h=Uint16Array.from(t);a._free(g);return h};a.Font.prototype.getGlyphIntercepts=function(g,d,h,n){var t=m(g,"HEAPU16"),w=m(d,"HEAPF32");return this._getGlyphIntercepts(t, -g.length,!(g&&g._ck),w,d.length,!(d&&d._ck),h,n)};a.Font.prototype.getGlyphWidths=function(g,d,h){var n=m(g,"HEAPU16"),t=a._malloc(4*g.length);this._getGlyphWidthBounds(n,g.length,t,M,d||null);d=new Float32Array(a.HEAPU8.buffer,t,g.length);k(n,g);if(h)return h.set(d),a._free(t),h;g=Float32Array.from(d);a._free(t);return g};a.FontMgr.FromData=function(){if(!arguments.length)return null;var g=arguments;1===g.length&&Array.isArray(g[0])&&(g=arguments[0]);if(!g.length)return null;for(var d=[],h=[],n= -0;nd)return a._free(g),null;t=new Uint16Array(a.HEAPU8.buffer,g,d);if(h)return h.set(t),a._free(g),h;h=Uint16Array.from(t);a._free(g);return h};a.TextBlob.MakeOnPath=function(g,d,h,n){if(g&&g.length&&d&&d.countPoints()){if(1===d.countPoints())return this.MakeFromText(g,h);n||(n=0);var t=h.getGlyphIDs(g);t=h.getGlyphWidths(t);var w=[];d=new a.ContourMeasureIter(d,!1,1);for(var z=d.next(),F=new Float32Array(4),K=0;Kz.length()){z.delete();z= -d.next();if(!z){g=g.substring(0,K);break}n=I/2}z.getPosTan(n,F);var T=F[2],p=F[3];w.push(T,p,F[0]-I/2*T,F[1]-I/2*p);n+=I/2}g=this.MakeFromRSXform(g,w,h);z&&z.delete();d.delete();return g}};a.TextBlob.MakeFromRSXform=function(g,d,h){var n=ja(g)+1,t=a._malloc(n);ka(g,C,t,n);g=m(d,"HEAPF32");h=a.TextBlob._MakeFromRSXform(t,n-1,g,h);a._free(t);return h?h:null};a.TextBlob.MakeFromRSXformGlyphs=function(g,d,h){var n=m(g,"HEAPU16");d=m(d,"HEAPF32");h=a.TextBlob._MakeFromRSXformGlyphs(n,2*g.length,d,h);k(n, -g);return h?h:null};a.TextBlob.MakeFromGlyphs=function(g,d){var h=m(g,"HEAPU16");d=a.TextBlob._MakeFromGlyphs(h,2*g.length,d);k(h,g);return d?d:null};a.TextBlob.MakeFromText=function(g,d){var h=ja(g)+1,n=a._malloc(h);ka(g,C,n,h);g=a.TextBlob._MakeFromText(n,h-1,d);a._free(n);return g?g:null};a.MallocGlyphIDs=function(g){return a.Malloc(Uint16Array,g)}});a.Id=a.Id||[];a.Id.push(function(){a.MakePicture=function(g){g=new Uint8Array(g);var d=a._malloc(g.byteLength);a.HEAPU8.set(g,d);return(g=a._MakePicture(d, -g.byteLength))?g:null}});a.Id=a.Id||[];a.Id.push(function(){a.RuntimeEffect.Make=function(g,d){return a.RuntimeEffect._Make(g,{onError:d||function(h){console.log("RuntimeEffect error",h)}})};a.RuntimeEffect.prototype.makeShader=function(g,d){var h=!g._ck,n=m(g,"HEAPF32");d=q(d);return this._makeShader(n,4*g.length,h,d)};a.RuntimeEffect.prototype.makeShaderWithChildren=function(g,d,h){var n=!g._ck,t=m(g,"HEAPF32");h=q(h);for(var w=[],z=0;z{throw b;},qa="object"==typeof window,ra="function"==typeof importScripts,sa="object"==typeof process&&"object"==typeof process.versions&&"string"==typeof process.versions.node,ta="",va,wa,ya; -if(sa){var fs=require("fs"),za=require("path");ta=ra?za.dirname(ta)+"/":__dirname+"/";va=(a,b)=>{a=a.startsWith("file://")?new URL(a):za.normalize(a);return fs.readFileSync(a,b?void 0:"utf8")};ya=a=>{a=va(a,!0);a.buffer||(a=new Uint8Array(a));return a};wa=(a,b,c)=>{a=a.startsWith("file://")?new URL(a):za.normalize(a);fs.readFile(a,function(e,f){e?c(e):b(f.buffer)})};1process.versions.node.split(".")[0])process.on("unhandledRejection", -function(a){throw a;});oa=(a,b)=>{if(noExitRuntime)throw process.exitCode=a,b;if(!(b instanceof Ba)){var c=b;b&&"object"==typeof b&&b.stack&&(c=[b,b.stack]);Ca("exiting due to exception: "+c)}process.exit(a)};r.inspect=function(){return"[Emscripten Module object]"}}else if(qa||ra)ra?ta=self.location.href:"undefined"!=typeof document&&document.currentScript&&(ta=document.currentScript.src),_scriptDir&&(ta=_scriptDir),0!==ta.indexOf("blob:")?ta=ta.substr(0,ta.replace(/[?#].*/,"").lastIndexOf("/")+1): -ta="",va=a=>{var b=new XMLHttpRequest;b.open("GET",a,!1);b.send(null);return b.responseText},ra&&(ya=a=>{var b=new XMLHttpRequest;b.open("GET",a,!1);b.responseType="arraybuffer";b.send(null);return new Uint8Array(b.response)}),wa=(a,b,c)=>{var e=new XMLHttpRequest;e.open("GET",a,!0);e.responseType="arraybuffer";e.onload=()=>{200==e.status||0==e.status&&e.response?b(e.response):c()};e.onerror=c;e.send(null)};var Da=r.print||console.log.bind(console),Ca=r.printErr||console.warn.bind(console); -Object.assign(r,la);la=null;r.thisProgram&&(na=r.thisProgram);r.quit&&(oa=r.quit);var Ea;r.wasmBinary&&(Ea=r.wasmBinary);var noExitRuntime=r.noExitRuntime||!0;"object"!=typeof WebAssembly&&Fa("no native wasm support detected");var Ga,Ha=!1,Ia="undefined"!=typeof TextDecoder?new TextDecoder("utf8"):void 0; -function Ja(a,b,c){var e=b+c;for(c=b;a[c]&&!(c>=e);)++c;if(16f?e+=String.fromCharCode(f):(f-=65536,e+=String.fromCharCode(55296|f>>10,56320|f&1023))}}else e+=String.fromCharCode(f)}return e}function Ka(a,b){return a?Ja(C,a,b):""} -function ka(a,b,c,e){if(!(0=m){var l=a.charCodeAt(++k);m=65536+((m&1023)<<10)|l&1023}if(127>=m){if(c>=e)break;b[c++]=m}else{if(2047>=m){if(c+1>=e)break;b[c++]=192|m>>6}else{if(65535>=m){if(c+2>=e)break;b[c++]=224|m>>12}else{if(c+3>=e)break;b[c++]=240|m>>18;b[c++]=128|m>>12&63}b[c++]=128|m>>6&63}b[c++]=128|m&63}}b[c]=0;return c-f} -function ja(a){for(var b=0,c=0;c=e?b++:2047>=e?b+=2:55296<=e&&57343>=e?(b+=4,++c):b+=3}return b}var Ma,C,Na,Oa,G,J,N,Pa;function Qa(){var a=Ga.buffer;r.HEAP8=Ma=new Int8Array(a);r.HEAP16=Na=new Int16Array(a);r.HEAP32=G=new Int32Array(a);r.HEAPU8=C=new Uint8Array(a);r.HEAPU16=Oa=new Uint16Array(a);r.HEAPU32=J=new Uint32Array(a);r.HEAPF32=N=new Float32Array(a);r.HEAPF64=Pa=new Float64Array(a)}var Sa,Ta=[],Ua=[],Va=[]; -function Wa(){var a=r.preRun.shift();Ta.unshift(a)}var Xa=0,Ya=null,Za=null;function Fa(a){if(r.onAbort)r.onAbort(a);a="Aborted("+a+")";Ca(a);Ha=!0;a=new WebAssembly.RuntimeError(a+". Build with -sASSERTIONS for more info.");ba(a);throw a;}function $a(a){return a.startsWith("data:application/octet-stream;base64,")}var ab;ab="canvaskit.wasm";if(!$a(ab)){var bb=ab;ab=r.locateFile?r.locateFile(bb,ta):ta+bb} -function cb(a){try{if(a==ab&&Ea)return new Uint8Array(Ea);if(ya)return ya(a);throw"both async and sync fetching of the wasm failed";}catch(b){Fa(b)}} -function db(a){if(!Ea&&(qa||ra)){if("function"==typeof fetch&&!a.startsWith("file://"))return fetch(a,{credentials:"same-origin"}).then(function(b){if(!b.ok)throw"failed to load wasm binary file at '"+a+"'";return b.arrayBuffer()}).catch(function(){return cb(a)});if(wa)return new Promise(function(b,c){wa(a,function(e){b(new Uint8Array(e))},c)})}return Promise.resolve().then(function(){return cb(a)})} -function eb(a,b,c){return db(a).then(function(e){return WebAssembly.instantiate(e,b)}).then(function(e){return e}).then(c,function(e){Ca("failed to asynchronously prepare wasm: "+e);Fa(e)})} -function fb(a,b){var c=ab;return Ea||"function"!=typeof WebAssembly.instantiateStreaming||$a(c)||c.startsWith("file://")||sa||"function"!=typeof fetch?eb(c,a,b):fetch(c,{credentials:"same-origin"}).then(function(e){return WebAssembly.instantiateStreaming(e,a).then(b,function(f){Ca("wasm streaming compile failed: "+f);Ca("falling back to ArrayBuffer instantiation");return eb(c,a,b)})})}function Ba(a){this.name="ExitStatus";this.message="Program terminated with exit("+a+")";this.status=a} -function hb(a){for(;0>2]=b};this.Ie=function(b){J[this.Gd+8>>2]=b};this.Je=function(){G[this.Gd>>2]=0};this.Ge=function(){Ma[this.Gd+12>>0]=0};this.Ke=function(){Ma[this.Gd+13>>0]=0};this.je=function(b,c){this.Fe();this.Le(b);this.Ie(c);this.Je();this.Ge();this.Ke()};this.Fe=function(){J[this.Gd+16>>2]=0}}var jb=0,kb={};function lb(a){for(;a.length;){var b=a.pop();a.pop()(b)}} -function mb(a){return this.fromWireType(G[a>>2])}var nb={},ob={},pb={};function qb(a){if(void 0===a)return"_unknown";a=a.replace(/[^a-zA-Z0-9_]/g,"$");var b=a.charCodeAt(0);return 48<=b&&57>=b?"_"+a:a}function rb(a,b){a=qb(a);return{[a]:function(){return b.apply(this,arguments)}}[a]} -function sb(a){var b=Error,c=rb(a,function(e){this.name=a;this.message=e;e=Error(e).stack;void 0!==e&&(this.stack=this.toString()+"\n"+e.replace(/^Error(:[^\n]*)?\n/,""))});c.prototype=Object.create(b.prototype);c.prototype.constructor=c;c.prototype.toString=function(){return void 0===this.message?this.name:this.name+": "+this.message};return c}var tb=void 0;function ub(a){throw new tb(a);} -function vb(a,b,c){function e(l){l=c(l);l.length!==a.length&&ub("Mismatched type converter count");for(var q=0;q{ob.hasOwnProperty(l)?f[q]=ob[l]:(k.push(l),nb.hasOwnProperty(l)||(nb[l]=[]),nb[l].push(()=>{f[q]=ob[l];++m;m===k.length&&e(f)}))});0===k.length&&e(f)} -function xb(a){switch(a){case 1:return 0;case 2:return 1;case 4:return 2;case 8:return 3;default:throw new TypeError("Unknown type size: "+a);}}var yb=void 0;function O(a){for(var b="";C[a];)b+=yb[C[a++]];return b}var zb=void 0;function P(a){throw new zb(a);} -function wb(a,b,c={}){if(!("argPackAdvance"in b))throw new TypeError("registerType registeredInstance requires argPackAdvance");var e=b.name;a||P('type "'+e+'" must have a positive integer typeid pointer');if(ob.hasOwnProperty(a)){if(c.cf)return;P("Cannot register type '"+e+"' twice")}ob[a]=b;delete pb[a];nb.hasOwnProperty(a)&&(b=nb[a],delete nb[a],b.forEach(f=>f()))}function Ab(a){P(a.jd.Jd.Hd.name+" instance already deleted")}var Bb=!1;function Ib(){} -function Jb(a){--a.count.value;0===a.count.value&&(a.Ld?a.Od.Sd(a.Ld):a.Jd.Hd.Sd(a.Gd))}function Kb(a,b,c){if(b===c)return a;if(void 0===c.Qd)return null;a=Kb(a,b,c.Qd);return null===a?null:c.Ue(a)}var Lb={},Mb=[];function Nb(){for(;Mb.length;){var a=Mb.pop();a.jd.Zd=!1;a["delete"]()}}var Ob=void 0,Pb={};function Qb(a,b){for(void 0===b&&P("ptr should not be undefined");a.Qd;)b=a.ee(b),a=a.Qd;return Pb[b]} -function Rb(a,b){b.Jd&&b.Gd||ub("makeClassHandle requires ptr and ptrType");!!b.Od!==!!b.Ld&&ub("Both smartPtrType and smartPtr must be specified");b.count={value:1};return Sb(Object.create(a,{jd:{value:b}}))}function Sb(a){if("undefined"===typeof FinalizationRegistry)return Sb=b=>b,a;Bb=new FinalizationRegistry(b=>{Jb(b.jd)});Sb=b=>{var c=b.jd;c.Ld&&Bb.register(b,{jd:c},b);return b};Ib=b=>{Bb.unregister(b)};return Sb(a)}function Tb(){} -function Ub(a,b,c){if(void 0===a[b].Kd){var e=a[b];a[b]=function(){a[b].Kd.hasOwnProperty(arguments.length)||P("Function '"+c+"' called with an invalid number of arguments ("+arguments.length+") - expects one of ("+a[b].Kd+")!");return a[b].Kd[arguments.length].apply(this,arguments)};a[b].Kd=[];a[b].Kd[e.Xd]=e}} -function Vb(a,b,c){r.hasOwnProperty(a)?((void 0===c||void 0!==r[a].Kd&&void 0!==r[a].Kd[c])&&P("Cannot register public name '"+a+"' twice"),Ub(r,a,a),r.hasOwnProperty(c)&&P("Cannot register multiple overloads of a function with the same number of arguments ("+c+")!"),r[a].Kd[c]=b):(r[a]=b,void 0!==c&&(r[a].uf=c))}function Wb(a,b,c,e,f,k,m,l){this.name=a;this.constructor=b;this.$d=c;this.Sd=e;this.Qd=f;this.Xe=k;this.ee=m;this.Ue=l;this.gf=[]} -function Xb(a,b,c){for(;b!==c;)b.ee||P("Expected null or instance of "+c.name+", got an instance of "+b.name),a=b.ee(a),b=b.Qd;return a}function Yb(a,b){if(null===b)return this.se&&P("null is not a valid "+this.name),0;b.jd||P('Cannot pass "'+Zb(b)+'" as a '+this.name);b.jd.Gd||P("Cannot pass deleted object as a pointer of type "+this.name);return Xb(b.jd.Gd,b.jd.Jd.Hd,this.Hd)} -function $b(a,b){if(null===b){this.se&&P("null is not a valid "+this.name);if(this.ie){var c=this.te();null!==a&&a.push(this.Sd,c);return c}return 0}b.jd||P('Cannot pass "'+Zb(b)+'" as a '+this.name);b.jd.Gd||P("Cannot pass deleted object as a pointer of type "+this.name);!this.he&&b.jd.Jd.he&&P("Cannot convert argument of type "+(b.jd.Od?b.jd.Od.name:b.jd.Jd.name)+" to parameter type "+this.name);c=Xb(b.jd.Gd,b.jd.Jd.Hd,this.Hd);if(this.ie)switch(void 0===b.jd.Ld&&P("Passing raw pointer to smart pointer is illegal"), -this.mf){case 0:b.jd.Od===this?c=b.jd.Ld:P("Cannot convert argument of type "+(b.jd.Od?b.jd.Od.name:b.jd.Jd.name)+" to parameter type "+this.name);break;case 1:c=b.jd.Ld;break;case 2:if(b.jd.Od===this)c=b.jd.Ld;else{var e=b.clone();c=this.hf(c,ac(function(){e["delete"]()}));null!==a&&a.push(this.Sd,c)}break;default:P("Unsupporting sharing policy")}return c} -function bc(a,b){if(null===b)return this.se&&P("null is not a valid "+this.name),0;b.jd||P('Cannot pass "'+Zb(b)+'" as a '+this.name);b.jd.Gd||P("Cannot pass deleted object as a pointer of type "+this.name);b.jd.Jd.he&&P("Cannot convert argument of type "+b.jd.Jd.name+" to parameter type "+this.name);return Xb(b.jd.Gd,b.jd.Jd.Hd,this.Hd)} -function cc(a,b,c,e,f,k,m,l,q,x,y){this.name=a;this.Hd=b;this.se=c;this.he=e;this.ie=f;this.ff=k;this.mf=m;this.Ce=l;this.te=q;this.hf=x;this.Sd=y;f||void 0!==b.Qd?this.toWireType=$b:(this.toWireType=e?Yb:bc,this.Nd=null)}function dc(a,b,c){r.hasOwnProperty(a)||ub("Replacing nonexistant public symbol");void 0!==r[a].Kd&&void 0!==c?r[a].Kd[c]=b:(r[a]=b,r[a].Xd=c)}function Q(a){return Sa.get(a)} -function ec(a,b){var c=[];return function(){c.length=0;Object.assign(c,arguments);if(a.includes("j")){var e=r["dynCall_"+a];e=c&&c.length?e.apply(null,[b].concat(c)):e.call(null,b)}else e=Q(b).apply(null,c);return e}}function R(a,b){a=O(a);var c=a.includes("j")?ec(a,b):Q(b);"function"!=typeof c&&P("unknown function pointer with signature "+a+": "+b);return c}var fc=void 0;function nc(a){a=oc(a);var b=O(a);pc(a);return b} -function qc(a,b){function c(k){f[k]||ob[k]||(pb[k]?pb[k].forEach(c):(e.push(k),f[k]=!0))}var e=[],f={};b.forEach(c);throw new fc(a+": "+e.map(nc).join([", "]));} -function rc(a,b,c,e,f){var k=b.length;2>k&&P("argTypes array size mismatch! Must at least get return value and 'this' types!");var m=null!==b[1]&&null!==c,l=!1;for(c=1;c>2]);return c}var tc=[],uc=[{},{value:void 0},{value:null},{value:!0},{value:!1}];function vc(a){4{a||P("Cannot use deleted val. handle = "+a);return uc[a].value},ac=a=>{switch(a){case void 0:return 1;case null:return 2;case !0:return 3;case !1:return 4;default:var b=tc.length?tc.pop():uc.length;uc[b]={ue:1,value:a};return b}}; -function xc(a,b,c){switch(b){case 0:return function(e){return this.fromWireType((c?Ma:C)[e])};case 1:return function(e){return this.fromWireType((c?Na:Oa)[e>>1])};case 2:return function(e){return this.fromWireType((c?G:J)[e>>2])};default:throw new TypeError("Unknown integer type: "+a);}}function yc(a,b){var c=ob[a];void 0===c&&P(b+" has unknown type "+nc(a));return c}function Zb(a){if(null===a)return"null";var b=typeof a;return"object"===b||"array"===b||"function"===b?a.toString():""+a} -function zc(a,b){switch(b){case 2:return function(c){return this.fromWireType(N[c>>2])};case 3:return function(c){return this.fromWireType(Pa[c>>3])};default:throw new TypeError("Unknown float type: "+a);}} -function Ac(a,b,c){switch(b){case 0:return c?function(e){return Ma[e]}:function(e){return C[e]};case 1:return c?function(e){return Na[e>>1]}:function(e){return Oa[e>>1]};case 2:return c?function(e){return G[e>>2]}:function(e){return J[e>>2]};default:throw new TypeError("Unknown integer type: "+a);}}var Bc="undefined"!=typeof TextDecoder?new TextDecoder("utf-16le"):void 0; -function Cc(a,b){var c=a>>1;for(var e=c+b/2;!(c>=e)&&Oa[c];)++c;c<<=1;if(32=b/2);++e){var f=Na[a+2*e>>1];if(0==f)break;c+=String.fromCharCode(f)}return c}function Dc(a,b,c){void 0===c&&(c=2147483647);if(2>c)return 0;c-=2;var e=b;c=c<2*a.length?c/2:a.length;for(var f=0;f>1]=a.charCodeAt(f),b+=2;Na[b>>1]=0;return b-e}function Ec(a){return 2*a.length} -function Fc(a,b){for(var c=0,e="";!(c>=b/4);){var f=G[a+4*c>>2];if(0==f)break;++c;65536<=f?(f-=65536,e+=String.fromCharCode(55296|f>>10,56320|f&1023)):e+=String.fromCharCode(f)}return e}function Gc(a,b,c){void 0===c&&(c=2147483647);if(4>c)return 0;var e=b;c=e+c-4;for(var f=0;f=k){var m=a.charCodeAt(++f);k=65536+((k&1023)<<10)|m&1023}G[b>>2]=k;b+=4;if(b+4>c)break}G[b>>2]=0;return b-e} -function Hc(a){for(var b=0,c=0;c=e&&++c;b+=4}return b}var Ic={};function Jc(a){var b=Ic[a];return void 0===b?O(a):b}var Kc=[]; -function Lc(){function a(b){b.$$$embind_global$$$=b;var c="object"==typeof $$$embind_global$$$&&b.$$$embind_global$$$==b;c||delete b.$$$embind_global$$$;return c}if("object"==typeof globalThis)return globalThis;if("object"==typeof $$$embind_global$$$)return $$$embind_global$$$;"object"==typeof global&&a(global)?$$$embind_global$$$=global:"object"==typeof self&&a(self)&&($$$embind_global$$$=self);if("object"==typeof $$$embind_global$$$)return $$$embind_global$$$;throw Error("unable to get global object."); -}function Mc(a){var b=Kc.length;Kc.push(a);return b}function Nc(a,b){for(var c=Array(a),e=0;e>2],"parameter "+e);return c}var Oc=[];function Pc(a){var b=Array(a+1);return function(c,e,f){b[0]=c;for(var k=0;k>2],"parameter "+k);b[k+1]=m.readValueFromPointer(f);f+=m.argPackAdvance}c=new (c.bind.apply(c,b));return ac(c)}}var Qc={},Rc;Rc=sa?()=>{var a=process.hrtime();return 1E3*a[0]+a[1]/1E6}:()=>performance.now(); -function Sc(a){var b=a.getExtension("ANGLE_instanced_arrays");b&&(a.vertexAttribDivisor=function(c,e){b.vertexAttribDivisorANGLE(c,e)},a.drawArraysInstanced=function(c,e,f,k){b.drawArraysInstancedANGLE(c,e,f,k)},a.drawElementsInstanced=function(c,e,f,k,m){b.drawElementsInstancedANGLE(c,e,f,k,m)})} -function Tc(a){var b=a.getExtension("OES_vertex_array_object");b&&(a.createVertexArray=function(){return b.createVertexArrayOES()},a.deleteVertexArray=function(c){b.deleteVertexArrayOES(c)},a.bindVertexArray=function(c){b.bindVertexArrayOES(c)},a.isVertexArray=function(c){return b.isVertexArrayOES(c)})}function Uc(a){var b=a.getExtension("WEBGL_draw_buffers");b&&(a.drawBuffers=function(c,e){b.drawBuffersWEBGL(c,e)})} -var Vc=1,Wc=[],Xc=[],Yc=[],Zc=[],ea=[],$c=[],ad=[],ia=[],bd=[],cd=[],ed={},fd={},gd=4;function U(a){hd||(hd=a)}function ca(a){for(var b=Vc++,c=a.length;ca.version||!b.ze)b.ze=b.getExtension("EXT_disjoint_timer_query");b.tf=b.getExtension("WEBGL_multi_draw");(b.getSupportedExtensions()||[]).forEach(function(c){c.includes("lose_context")||c.includes("debug")||b.getExtension(c)})}} -var u,hd,ld=[];function md(a,b,c,e){for(var f=0;f>2]=m}} -function nd(a,b,c){if(b){var e=void 0;switch(a){case 36346:e=1;break;case 36344:0!=c&&1!=c&&U(1280);return;case 34814:case 36345:e=0;break;case 34466:var f=X.getParameter(34467);e=f?f.length:0;break;case 33309:if(2>u.version){U(1282);return}e=2*(X.getSupportedExtensions()||[]).length;break;case 33307:case 33308:if(2>u.version){U(1280);return}e=33307==a?3:0}if(void 0===e)switch(f=X.getParameter(a),typeof f){case "number":e=f;break;case "boolean":e=f?1:0;break;case "string":U(1280);return;case "object":if(null=== -f)switch(a){case 34964:case 35725:case 34965:case 36006:case 36007:case 32873:case 34229:case 36662:case 36663:case 35053:case 35055:case 36010:case 35097:case 35869:case 32874:case 36389:case 35983:case 35368:case 34068:e=0;break;default:U(1280);return}else{if(f instanceof Float32Array||f instanceof Uint32Array||f instanceof Int32Array||f instanceof Array){for(a=0;a>2]=f[a];break;case 2:N[b+4*a>>2]=f[a];break;case 4:Ma[b+a>>0]=f[a]?1:0}return}try{e=f.name|0}catch(k){U(1280); -Ca("GL_INVALID_ENUM in glGet"+c+"v: Unknown object returned from WebGL getParameter("+a+")! (error: "+k+")");return}}break;default:U(1280);Ca("GL_INVALID_ENUM in glGet"+c+"v: Native code calling glGet"+c+"v("+a+") and it returns "+f+" of type "+typeof f+"!");return}switch(c){case 1:c=e;J[b>>2]=c;J[b+4>>2]=(c-J[b>>2])/4294967296;break;case 0:G[b>>2]=e;break;case 2:N[b>>2]=e;break;case 4:Ma[b>>0]=e?1:0}}else U(1281)}function od(a){var b=ja(a)+1,c=pd(b);ka(a,C,c,b);return c} -function qd(a){return"]"==a.slice(-1)&&a.lastIndexOf("[")}function rd(a){a-=5120;return 0==a?Ma:1==a?C:2==a?Na:4==a?G:6==a?N:5==a||28922==a||28520==a||30779==a||30782==a?J:Oa}function sd(a,b,c,e,f){a=rd(a);var k=31-Math.clz32(a.BYTES_PER_ELEMENT),m=gd;return a.subarray(f>>k,f+e*(c*({5:3,6:4,8:2,29502:3,29504:4,26917:2,26918:2,29846:3,29847:4}[b-6402]||1)*(1<>k)} -function Z(a){var b=X.Se;if(b){var c=b.de[a];"number"==typeof c&&(b.de[a]=c=X.getUniformLocation(b,b.De[a]+(0Y?-1:0S-v.getDate())E-=S-v.getDate()+1,v.setDate(1),11>H?v.setMonth(H+1):(v.setMonth(0),v.setFullYear(v.getFullYear()+1));else{v.setDate(v.getDate()+E);break}}H=new Date(v.getFullYear()+1,0,4);E=l(new Date(v.getFullYear(), -0,4));H=l(H);return 0>=m(E,v)?0>=m(H,v)?v.getFullYear()+1:v.getFullYear():v.getFullYear()-1}var x=G[e+40>>2];e={qf:G[e>>2],pf:G[e+4>>2],ne:G[e+8>>2],ve:G[e+12>>2],oe:G[e+16>>2],Vd:G[e+20>>2],Rd:G[e+24>>2],Ud:G[e+28>>2],wf:G[e+32>>2],nf:G[e+36>>2],rf:x?Ka(x):""};c=Ka(c);x={"%c":"%a %b %d %H:%M:%S %Y","%D":"%m/%d/%y","%F":"%Y-%m-%d","%h":"%b","%r":"%I:%M:%S %p","%R":"%H:%M","%T":"%H:%M:%S","%x":"%m/%d/%y","%X":"%H:%M:%S","%Ec":"%c","%EC":"%C","%Ex":"%m/%d/%y","%EX":"%H:%M:%S","%Ey":"%y","%EY":"%Y", -"%Od":"%d","%Oe":"%e","%OH":"%H","%OI":"%I","%Om":"%m","%OM":"%M","%OS":"%S","%Ou":"%u","%OU":"%U","%OV":"%V","%Ow":"%w","%OW":"%W","%Oy":"%y"};for(var y in x)c=c.replace(new RegExp(y,"g"),x[y]);var B="Sunday Monday Tuesday Wednesday Thursday Friday Saturday".split(" "),D="January February March April May June July August September October November December".split(" ");x={"%a":function(v){return B[v.Rd].substring(0,3)},"%A":function(v){return B[v.Rd]},"%b":function(v){return D[v.oe].substring(0,3)}, -"%B":function(v){return D[v.oe]},"%C":function(v){return k((v.Vd+1900)/100|0,2)},"%d":function(v){return k(v.ve,2)},"%e":function(v){return f(v.ve,2," ")},"%g":function(v){return q(v).toString().substring(2)},"%G":function(v){return q(v)},"%H":function(v){return k(v.ne,2)},"%I":function(v){v=v.ne;0==v?v=12:12v.ne?"AM":"PM"},"%S":function(v){return k(v.qf,2)},"%t":function(){return"\t"},"%u":function(v){return v.Rd||7},"%U":function(v){return k(Math.floor((v.Ud+7-v.Rd)/7),2)},"%V":function(v){var E=Math.floor((v.Ud+7-(v.Rd+6)%7)/7);2>=(v.Rd+371-v.Ud-2)%7&&E++;if(E)53==E&&(H=(v.Rd+371-v.Ud)%7,4==H||3==H&&zd(v.Vd)||(E=1));else{E=52;var H=(v.Rd+7-v.Ud-1)%7;(4==H||5==H&&zd(v.Vd%400-1))&&E++}return k(E,2)},"%w":function(v){return v.Rd},"%W":function(v){return k(Math.floor((v.Ud+ -7-(v.Rd+6)%7)/7),2)},"%y":function(v){return(v.Vd+1900).toString().substring(2)},"%Y":function(v){return v.Vd+1900},"%z":function(v){v=v.nf;var E=0<=v;v=Math.abs(v)/60;return(E?"+":"-")+String("0000"+(v/60*100+v%60)).slice(-4)},"%Z":function(v){return v.rf},"%%":function(){return"%"}};c=c.replace(/%%/g,"\x00\x00");for(y in x)c.includes(y)&&(c=c.replace(new RegExp(y,"g"),x[y](e)));c=c.replace(/\0\0/g,"%");y=Cd(c);if(y.length>b)return 0;Ma.set(y,a);return y.length-1}tb=r.InternalError=sb("InternalError"); -for(var Ed=Array(256),Fd=0;256>Fd;++Fd)Ed[Fd]=String.fromCharCode(Fd);yb=Ed;zb=r.BindingError=sb("BindingError");Tb.prototype.isAliasOf=function(a){if(!(this instanceof Tb&&a instanceof Tb))return!1;var b=this.jd.Jd.Hd,c=this.jd.Gd,e=a.jd.Jd.Hd;for(a=a.jd.Gd;b.Qd;)c=b.ee(c),b=b.Qd;for(;e.Qd;)a=e.ee(a),e=e.Qd;return b===e&&c===a}; -Tb.prototype.clone=function(){this.jd.Gd||Ab(this);if(this.jd.ce)return this.jd.count.value+=1,this;var a=Sb,b=Object,c=b.create,e=Object.getPrototypeOf(this),f=this.jd;a=a(c.call(b,e,{jd:{value:{count:f.count,Zd:f.Zd,ce:f.ce,Gd:f.Gd,Jd:f.Jd,Ld:f.Ld,Od:f.Od}}}));a.jd.count.value+=1;a.jd.Zd=!1;return a};Tb.prototype["delete"]=function(){this.jd.Gd||Ab(this);this.jd.Zd&&!this.jd.ce&&P("Object already scheduled for deletion");Ib(this);Jb(this.jd);this.jd.ce||(this.jd.Ld=void 0,this.jd.Gd=void 0)}; -Tb.prototype.isDeleted=function(){return!this.jd.Gd};Tb.prototype.deleteLater=function(){this.jd.Gd||Ab(this);this.jd.Zd&&!this.jd.ce&&P("Object already scheduled for deletion");Mb.push(this);1===Mb.length&&Ob&&Ob(Nb);this.jd.Zd=!0;return this};r.getInheritedInstanceCount=function(){return Object.keys(Pb).length};r.getLiveInheritedInstances=function(){var a=[],b;for(b in Pb)Pb.hasOwnProperty(b)&&a.push(Pb[b]);return a};r.flushPendingDeletes=Nb;r.setDelayFunction=function(a){Ob=a;Mb.length&&Ob&&Ob(Nb)}; -cc.prototype.Ye=function(a){this.Ce&&(a=this.Ce(a));return a};cc.prototype.xe=function(a){this.Sd&&this.Sd(a)};cc.prototype.argPackAdvance=8;cc.prototype.readValueFromPointer=mb;cc.prototype.deleteObject=function(a){if(null!==a)a["delete"]()}; -cc.prototype.fromWireType=function(a){function b(){return this.ie?Rb(this.Hd.$d,{Jd:this.ff,Gd:c,Od:this,Ld:a}):Rb(this.Hd.$d,{Jd:this,Gd:a})}var c=this.Ye(a);if(!c)return this.xe(a),null;var e=Qb(this.Hd,c);if(void 0!==e){if(0===e.jd.count.value)return e.jd.Gd=c,e.jd.Ld=a,e.clone();e=e.clone();this.xe(a);return e}e=this.Hd.Xe(c);e=Lb[e];if(!e)return b.call(this);e=this.he?e.Re:e.pointerType;var f=Kb(c,this.Hd,e.Hd);return null===f?b.call(this):this.ie?Rb(e.Hd.$d,{Jd:e,Gd:f,Od:this,Ld:a}):Rb(e.Hd.$d, -{Jd:e,Gd:f})};fc=r.UnboundTypeError=sb("UnboundTypeError");r.count_emval_handles=function(){for(var a=0,b=5;bGd;++Gd)ld.push(Array(Gd));var Hd=new Float32Array(288);for(Gd=0;288>Gd;++Gd)td[Gd]=Hd.subarray(0,Gd+1);var Id=new Int32Array(288);for(Gd=0;288>Gd;++Gd)ud[Gd]=Id.subarray(0,Gd+1); -var Wd={G:function(a,b,c){(new ib(a)).je(b,c);jb++;throw a;},T:function(){return 0},rb:function(){},tb:function(){return 0},pb:function(){},ub:function(){},qb:function(){},C:function(a){var b=kb[a];delete kb[a];var c=b.te,e=b.Sd,f=b.Ae,k=f.map(m=>m.af).concat(f.map(m=>m.kf));vb([a],k,m=>{var l={};f.forEach((q,x)=>{var y=m[x],B=q.Ze,D=q.$e,v=m[x+f.length],E=q.jf,H=q.lf;l[q.We]={read:S=>y.fromWireType(B(D,S)),write:(S,Y)=>{var da=[];E(H,S,v.toWireType(da,Y));lb(da)}}});return[{name:b.name,fromWireType:function(q){var x= -{},y;for(y in l)x[y]=l[y].read(q);e(q);return x},toWireType:function(q,x){for(var y in l)if(!(y in x))throw new TypeError('Missing field: "'+y+'"');var B=c();for(y in l)l[y].write(B,x[y]);null!==q&&q.push(e,B);return B},argPackAdvance:8,readValueFromPointer:mb,Nd:e}]})},hb:function(){},yb:function(a,b,c,e,f){var k=xb(c);b=O(b);wb(a,{name:b,fromWireType:function(m){return!!m},toWireType:function(m,l){return l?e:f},argPackAdvance:8,readValueFromPointer:function(m){if(1===c)var l=Ma;else if(2===c)l= -Na;else if(4===c)l=G;else throw new TypeError("Unknown boolean type size: "+b);return this.fromWireType(l[m>>k])},Nd:null})},l:function(a,b,c,e,f,k,m,l,q,x,y,B,D){y=O(y);k=R(f,k);l&&(l=R(m,l));x&&(x=R(q,x));D=R(B,D);var v=qb(y);Vb(v,function(){qc("Cannot construct "+y+" due to unbound types",[e])});vb([a,b,c],e?[e]:[],function(E){E=E[0];if(e){var H=E.Hd;var S=H.$d}else S=Tb.prototype;E=rb(v,function(){if(Object.getPrototypeOf(this)!==Y)throw new zb("Use 'new' to construct "+y);if(void 0===da.Td)throw new zb(y+ -" has no accessible constructor");var La=da.Td[arguments.length];if(void 0===La)throw new zb("Tried to invoke ctor of "+y+" with invalid number of parameters ("+arguments.length+") - expected ("+Object.keys(da.Td).toString()+") parameters instead!");return La.apply(this,arguments)});var Y=Object.create(S,{constructor:{value:E}});E.prototype=Y;var da=new Wb(y,E,Y,D,H,k,l,x);H=new cc(y,da,!0,!1,!1);S=new cc(y+"*",da,!1,!1,!1);var ua=new cc(y+" const*",da,!1,!0,!1);Lb[a]={pointerType:S,Re:ua};dc(v,E); -return[H,S,ua]})},e:function(a,b,c,e,f,k,m){var l=sc(c,e);b=O(b);k=R(f,k);vb([],[a],function(q){function x(){qc("Cannot call "+y+" due to unbound types",l)}q=q[0];var y=q.name+"."+b;b.startsWith("@@")&&(b=Symbol[b.substring(2)]);var B=q.Hd.constructor;void 0===B[b]?(x.Xd=c-1,B[b]=x):(Ub(B,b,y),B[b].Kd[c-1]=x);vb([],l,function(D){D=[D[0],null].concat(D.slice(1));D=rc(y,D,null,k,m);void 0===B[b].Kd?(D.Xd=c-1,B[b]=D):B[b].Kd[c-1]=D;return[]});return[]})},A:function(a,b,c,e,f,k){0{qc("Cannot construct "+l.name+" due to unbound types",m)};vb([],m,function(x){x.splice(1,0,null);l.Hd.Td[b-1]=rc(q,x,null,f,k);return[]}); -return[]})},a:function(a,b,c,e,f,k,m,l){var q=sc(c,e);b=O(b);k=R(f,k);vb([],[a],function(x){function y(){qc("Cannot call "+B+" due to unbound types",q)}x=x[0];var B=x.name+"."+b;b.startsWith("@@")&&(b=Symbol[b.substring(2)]);l&&x.Hd.gf.push(b);var D=x.Hd.$d,v=D[b];void 0===v||void 0===v.Kd&&v.className!==x.name&&v.Xd===c-2?(y.Xd=c-2,y.className=x.name,D[b]=y):(Ub(D,b,B),D[b].Kd[c-2]=y);vb([],q,function(E){E=rc(B,E,x,k,m);void 0===D[b].Kd?(E.Xd=c-2,D[b]=E):D[b].Kd[c-2]=E;return[]});return[]})},r:function(a, -b,c){a=O(a);vb([],[b],function(e){e=e[0];r[a]=e.fromWireType(c);return[]})},xb:function(a,b){b=O(b);wb(a,{name:b,fromWireType:function(c){var e=wc(c);vc(c);return e},toWireType:function(c,e){return ac(e)},argPackAdvance:8,readValueFromPointer:mb,Nd:null})},i:function(a,b,c,e){function f(){}c=xb(c);b=O(b);f.values={};wb(a,{name:b,constructor:f,fromWireType:function(k){return this.constructor.values[k]},toWireType:function(k,m){return m.value},argPackAdvance:8,readValueFromPointer:xc(b,c,e),Nd:null}); -Vb(b,f)},b:function(a,b,c){var e=yc(a,"enum");b=O(b);a=e.constructor;e=Object.create(e.constructor.prototype,{value:{value:c},constructor:{value:rb(e.name+"_"+b,function(){})}});a.values[c]=e;a[b]=e},W:function(a,b,c){c=xb(c);b=O(b);wb(a,{name:b,fromWireType:function(e){return e},toWireType:function(e,f){return f},argPackAdvance:8,readValueFromPointer:zc(b,c),Nd:null})},t:function(a,b,c,e,f,k){var m=sc(b,c);a=O(a);f=R(e,f);Vb(a,function(){qc("Cannot call "+a+" due to unbound types",m)},b-1);vb([], -m,function(l){l=[l[0],null].concat(l.slice(1));dc(a,rc(a,l,null,f,k),b-1);return[]})},E:function(a,b,c,e,f){b=O(b);-1===f&&(f=4294967295);f=xb(c);var k=l=>l;if(0===e){var m=32-8*c;k=l=>l<>>m}c=b.includes("unsigned")?function(l,q){return q>>>0}:function(l,q){return q};wb(a,{name:b,fromWireType:k,toWireType:c,argPackAdvance:8,readValueFromPointer:Ac(b,f,0!==e),Nd:null})},s:function(a,b,c){function e(k){k>>=2;var m=J;return new f(m.buffer,m[k+1],m[k])}var f=[Int8Array,Uint8Array,Int16Array,Uint16Array, -Int32Array,Uint32Array,Float32Array,Float64Array][b];c=O(c);wb(a,{name:c,fromWireType:e,argPackAdvance:8,readValueFromPointer:e},{cf:!0})},q:function(a,b,c,e,f,k,m,l,q,x,y,B){c=O(c);k=R(f,k);l=R(m,l);x=R(q,x);B=R(y,B);vb([a],[b],function(D){D=D[0];return[new cc(c,D.Hd,!1,!1,!0,D,e,k,l,x,B)]})},V:function(a,b){b=O(b);var c="std::string"===b;wb(a,{name:b,fromWireType:function(e){var f=J[e>>2],k=e+4;if(c)for(var m=k,l=0;l<=f;++l){var q=k+l;if(l==f||0==C[q]){m=Ka(m,q-m);if(void 0===x)var x=m;else x+= -String.fromCharCode(0),x+=m;m=q+1}}else{x=Array(f);for(l=0;l>2]=k;if(c&&m)ka(f,C,q,k+1);else if(m)for(m=0;mOa;var l=1}else 4===b&&(e=Fc,f=Gc,k=Hc,m=()=>J,l=2);wb(a,{name:c,fromWireType:function(q){for(var x=J[q>>2],y=m(),B,D=q+4,v=0;v<=x;++v){var E=q+4+v*b;if(v==x||0==y[E>>l])D=e(D,E-D),void 0===B?B=D:(B+=String.fromCharCode(0),B+=D),D=E+b}pc(q);return B},toWireType:function(q,x){"string"!=typeof x&& -P("Cannot pass non-string to C++ string type "+c);var y=k(x),B=pd(4+y+b);J[B>>2]=y>>l;f(x,B+4,y+b);null!==q&&q.push(pc,B);return B},argPackAdvance:8,readValueFromPointer:mb,Nd:function(q){pc(q)}})},D:function(a,b,c,e,f,k){kb[a]={name:O(b),te:R(c,e),Sd:R(f,k),Ae:[]}},d:function(a,b,c,e,f,k,m,l,q,x){kb[a].Ae.push({We:O(b),af:c,Ze:R(e,f),$e:k,kf:m,jf:R(l,q),lf:x})},zb:function(a,b){b=O(b);wb(a,{ef:!0,name:b,argPackAdvance:0,fromWireType:function(){},toWireType:function(){}})},wb:function(){return!0}, -jb:function(){throw Infinity;},F:function(a,b,c){a=wc(a);b=yc(b,"emval::as");var e=[],f=ac(e);J[c>>2]=f;return b.toWireType(e,a)},O:function(a,b,c,e,f){a=Kc[a];b=wc(b);c=Jc(c);var k=[];J[e>>2]=ac(k);return a(b,c,k,f)},x:function(a,b,c,e){a=Kc[a];b=wc(b);c=Jc(c);a(b,c,null,e)},c:vc,K:function(a){if(0===a)return ac(Lc());a=Jc(a);return ac(Lc()[a])},u:function(a,b){var c=Nc(a,b),e=c[0];b=e.name+"_$"+c.slice(1).map(function(m){return m.name}).join("_")+"$";var f=Oc[b];if(void 0!==f)return f;var k=Array(a- -1);f=Mc((m,l,q,x)=>{for(var y=0,B=0;B>>0)+4294967296*e)},ba:function(a,b,c,e){X.colorMask(!!a,!!b,!!c,!!e)},ca:function(a){X.compileShader($c[a])},da:function(a,b,c,e,f,k,m,l){2<=u.version?X.Yd||!m?X.compressedTexImage2D(a, -b,c,e,f,k,m,l):X.compressedTexImage2D(a,b,c,e,f,k,C,l,m):X.compressedTexImage2D(a,b,c,e,f,k,l?C.subarray(l,l+m):null)},ea:function(a,b,c,e,f,k,m,l,q){2<=u.version?X.Yd||!l?X.compressedTexSubImage2D(a,b,c,e,f,k,m,l,q):X.compressedTexSubImage2D(a,b,c,e,f,k,m,C,q,l):X.compressedTexSubImage2D(a,b,c,e,f,k,m,q?C.subarray(q,q+l):null)},Pb:function(a,b,c,e,f){X.copyBufferSubData(a,b,c,e,f)},fa:function(a,b,c,e,f,k,m,l){X.copyTexSubImage2D(a,b,c,e,f,k,m,l)},ga:function(){var a=ca(Xc),b=X.createProgram();b.name= -a;b.me=b.ke=b.le=0;b.we=1;Xc[a]=b;return a},ha:function(a){var b=ca($c);$c[b]=X.createShader(a);return b},ia:function(a){X.cullFace(a)},ja:function(a,b){for(var c=0;c>2],f=Wc[e];f&&(X.deleteBuffer(f),f.name=0,Wc[e]=null,e==X.qe&&(X.qe=0),e==X.Yd&&(X.Yd=0))}},Zb:function(a,b){for(var c=0;c>2],f=Yc[e];f&&(X.deleteFramebuffer(f),f.name=0,Yc[e]=null)}},ka:function(a){if(a){var b=Xc[a];b?(X.deleteProgram(b),b.name=0,Xc[a]=null):U(1281)}},_b:function(a,b){for(var c= -0;c>2],f=Zc[e];f&&(X.deleteRenderbuffer(f),f.name=0,Zc[e]=null)}},Ib:function(a,b){for(var c=0;c>2],f=bd[e];f&&(X.deleteSampler(f),f.name=0,bd[e]=null)}},la:function(a){if(a){var b=$c[a];b?(X.deleteShader(b),$c[a]=null):U(1281)}},Qb:function(a){if(a){var b=cd[a];b?(X.deleteSync(b),b.name=0,cd[a]=null):U(1281)}},ma:function(a,b){for(var c=0;c>2],f=ea[e];f&&(X.deleteTexture(f),f.name=0,ea[e]=null)}},qc:function(a,b){for(var c=0;c>2];X.deleteVertexArray(ad[e]);ad[e]=null}},tc:function(a,b){for(var c=0;c>2];X.deleteVertexArray(ad[e]);ad[e]=null}},na:function(a){X.depthMask(!!a)},oa:function(a){X.disable(a)},pa:function(a){X.disableVertexAttribArray(a)},qa:function(a,b,c){X.drawArrays(a,b,c)},nc:function(a,b,c,e){X.drawArraysInstanced(a,b,c,e)},lc:function(a,b,c,e,f){X.ye.drawArraysInstancedBaseInstanceWEBGL(a,b,c,e,f)},jc:function(a,b){for(var c=ld[a],e=0;e>2];X.drawBuffers(c)}, -ra:function(a,b,c,e){X.drawElements(a,b,c,e)},oc:function(a,b,c,e,f){X.drawElementsInstanced(a,b,c,e,f)},mc:function(a,b,c,e,f,k,m){X.ye.drawElementsInstancedBaseVertexBaseInstanceWEBGL(a,b,c,e,f,k,m)},dc:function(a,b,c,e,f,k){X.drawElements(a,e,f,k)},sa:function(a){X.enable(a)},ta:function(a){X.enableVertexAttribArray(a)},Nb:function(a,b){return(a=X.fenceSync(a,b))?(b=ca(cd),a.name=b,cd[b]=a,b):0},ua:function(){X.finish()},va:function(){X.flush()},$b:function(a,b,c,e){X.framebufferRenderbuffer(a, -b,c,Zc[e])},ac:function(a,b,c,e,f){X.framebufferTexture2D(a,b,c,ea[e],f)},wa:function(a){X.frontFace(a)},xa:function(a,b){md(a,b,"createBuffer",Wc)},bc:function(a,b){md(a,b,"createFramebuffer",Yc)},cc:function(a,b){md(a,b,"createRenderbuffer",Zc)},Jb:function(a,b){md(a,b,"createSampler",bd)},ya:function(a,b){md(a,b,"createTexture",ea)},rc:function(a,b){md(a,b,"createVertexArray",ad)},uc:function(a,b){md(a,b,"createVertexArray",ad)},Tb:function(a){X.generateMipmap(a)},za:function(a,b,c){c?G[c>>2]= -X.getBufferParameter(a,b):U(1281)},Aa:function(){var a=X.getError()||hd;hd=0;return a},Ba:function(a,b){nd(a,b,2)},Ub:function(a,b,c,e){a=X.getFramebufferAttachmentParameter(a,b,c);if(a instanceof WebGLRenderbuffer||a instanceof WebGLTexture)a=a.name|0;G[e>>2]=a},L:function(a,b){nd(a,b,0)},Ca:function(a,b,c,e){a=X.getProgramInfoLog(Xc[a]);null===a&&(a="(unknown error)");b=0>2]=b)},Da:function(a,b,c){if(c)if(a>=Vc)U(1281);else if(a=Xc[a],35716==b)a=X.getProgramInfoLog(a), -null===a&&(a="(unknown error)"),G[c>>2]=a.length+1;else if(35719==b){if(!a.me)for(b=0;b>2]=a.me}else if(35722==b){if(!a.ke)for(b=0;b>2]=a.ke}else if(35381==b){if(!a.le)for(b=0;b>2]=a.le}else G[c>>2]=X.getProgramParameter(a, -b);else U(1281)},Vb:function(a,b,c){c?G[c>>2]=X.getRenderbufferParameter(a,b):U(1281)},Ea:function(a,b,c,e){a=X.getShaderInfoLog($c[a]);null===a&&(a="(unknown error)");b=0>2]=b)},Eb:function(a,b,c,e){a=X.getShaderPrecisionFormat(a,b);G[c>>2]=a.rangeMin;G[c+4>>2]=a.rangeMax;G[e>>2]=a.precision},Fa:function(a,b,c){c?35716==b?(a=X.getShaderInfoLog($c[a]),null===a&&(a="(unknown error)"),G[c>>2]=a?a.length+1:0):35720==b?(a=X.getShaderSource($c[a]),G[c>>2]=a?a.length+1:0):G[c>> -2]=X.getShaderParameter($c[a],b):U(1281)},P:function(a){var b=ed[a];if(!b){switch(a){case 7939:b=X.getSupportedExtensions()||[];b=b.concat(b.map(function(e){return"GL_"+e}));b=od(b.join(" "));break;case 7936:case 7937:case 37445:case 37446:(b=X.getParameter(a))||U(1280);b=b&&od(b);break;case 7938:b=X.getParameter(7938);b=2<=u.version?"OpenGL ES 3.0 ("+b+")":"OpenGL ES 2.0 ("+b+")";b=od(b);break;case 35724:b=X.getParameter(35724);var c=b.match(/^WebGL GLSL ES ([0-9]\.[0-9][0-9]?)(?:$| .*)/);null!== -c&&(3==c[1].length&&(c[1]+="0"),b="OpenGL ES GLSL ES "+c[1]+" ("+b+")");b=od(b);break;default:U(1280)}ed[a]=b}return b},ab:function(a,b){if(2>u.version)return U(1282),0;var c=fd[a];if(c)return 0>b||b>=c.length?(U(1281),0):c[b];switch(a){case 7939:return c=X.getSupportedExtensions()||[],c=c.concat(c.map(function(e){return"GL_"+e})),c=c.map(function(e){return od(e)}),c=fd[a]=c,0>b||b>=c.length?(U(1281),0):c[b];default:return U(1280),0}},Ga:function(a,b){b=Ka(b);if(a=Xc[a]){var c=a,e=c.de,f=c.Ee,k;if(!e)for(c.de= -e={},c.De={},k=0;k>>0,f=b.slice(0,k));if((f=a.Ee[f])&&e>2];X.invalidateFramebuffer(a,e)},Gb:function(a,b,c,e,f,k,m){for(var l= -ld[b],q=0;q>2];X.invalidateSubFramebuffer(a,l,e,f,k,m)},Ob:function(a){return X.isSync(cd[a])},Ha:function(a){return(a=ea[a])?X.isTexture(a):0},Ia:function(a){X.lineWidth(a)},Ja:function(a){a=Xc[a];X.linkProgram(a);a.de=0;a.Ee={}},hc:function(a,b,c,e,f,k){X.Be.multiDrawArraysInstancedBaseInstanceWEBGL(a,G,b>>2,G,c>>2,G,e>>2,J,f>>2,k)},ic:function(a,b,c,e,f,k,m,l){X.Be.multiDrawElementsInstancedBaseVertexBaseInstanceWEBGL(a,G,b>>2,c,G,e>>2,G,f>>2,G,k>>2,J,m>>2,l)},Ka:function(a, -b){3317==a&&(gd=b);X.pixelStorei(a,b)},kc:function(a){X.readBuffer(a)},La:function(a,b,c,e,f,k,m){if(2<=u.version)if(X.qe)X.readPixels(a,b,c,e,f,k,m);else{var l=rd(k);X.readPixels(a,b,c,e,f,k,l,m>>31-Math.clz32(l.BYTES_PER_ELEMENT))}else(m=sd(k,f,c,e,m))?X.readPixels(a,b,c,e,f,k,m):U(1280)},Wb:function(a,b,c,e){X.renderbufferStorage(a,b,c,e)},Sb:function(a,b,c,e,f){X.renderbufferStorageMultisample(a,b,c,e,f)},Kb:function(a,b,c){X.samplerParameterf(bd[a],b,c)},Lb:function(a,b,c){X.samplerParameteri(bd[a], -b,c)},Mb:function(a,b,c){X.samplerParameteri(bd[a],b,G[c>>2])},Ma:function(a,b,c,e){X.scissor(a,b,c,e)},Na:function(a,b,c,e){for(var f="",k=0;k>2]:-1;f+=Ka(G[c+4*k>>2],0>m?void 0:m)}X.shaderSource($c[a],f)},Oa:function(a,b,c){X.stencilFunc(a,b,c)},Pa:function(a,b,c,e){X.stencilFuncSeparate(a,b,c,e)},Qa:function(a){X.stencilMask(a)},Ra:function(a,b){X.stencilMaskSeparate(a,b)},Sa:function(a,b,c){X.stencilOp(a,b,c)},Ta:function(a,b,c,e){X.stencilOpSeparate(a,b,c,e)},Ua:function(a, -b,c,e,f,k,m,l,q){if(2<=u.version)if(X.Yd)X.texImage2D(a,b,c,e,f,k,m,l,q);else if(q){var x=rd(l);X.texImage2D(a,b,c,e,f,k,m,l,x,q>>31-Math.clz32(x.BYTES_PER_ELEMENT))}else X.texImage2D(a,b,c,e,f,k,m,l,null);else X.texImage2D(a,b,c,e,f,k,m,l,q?sd(l,m,e,f,q):null)},Va:function(a,b,c){X.texParameterf(a,b,c)},Wa:function(a,b,c){X.texParameterf(a,b,N[c>>2])},Xa:function(a,b,c){X.texParameteri(a,b,c)},Ya:function(a,b,c){X.texParameteri(a,b,G[c>>2])},ec:function(a,b,c,e,f){X.texStorage2D(a,b,c,e,f)},Za:function(a, -b,c,e,f,k,m,l,q){if(2<=u.version)if(X.Yd)X.texSubImage2D(a,b,c,e,f,k,m,l,q);else if(q){var x=rd(l);X.texSubImage2D(a,b,c,e,f,k,m,l,x,q>>31-Math.clz32(x.BYTES_PER_ELEMENT))}else X.texSubImage2D(a,b,c,e,f,k,m,l,null);else x=null,q&&(x=sd(l,m,f,k,q)),X.texSubImage2D(a,b,c,e,f,k,m,l,x)},_a:function(a,b){X.uniform1f(Z(a),b)},$a:function(a,b,c){if(2<=u.version)b&&X.uniform1fv(Z(a),N,c>>2,b);else{if(288>=b)for(var e=td[b-1],f=0;f>2];else e=N.subarray(c>>2,c+4*b>>2);X.uniform1fv(Z(a), -e)}},Pc:function(a,b){X.uniform1i(Z(a),b)},Qc:function(a,b,c){if(2<=u.version)b&&X.uniform1iv(Z(a),G,c>>2,b);else{if(288>=b)for(var e=ud[b-1],f=0;f>2];else e=G.subarray(c>>2,c+4*b>>2);X.uniform1iv(Z(a),e)}},Rc:function(a,b,c){X.uniform2f(Z(a),b,c)},Sc:function(a,b,c){if(2<=u.version)b&&X.uniform2fv(Z(a),N,c>>2,2*b);else{if(144>=b)for(var e=td[2*b-1],f=0;f<2*b;f+=2)e[f]=N[c+4*f>>2],e[f+1]=N[c+(4*f+4)>>2];else e=N.subarray(c>>2,c+8*b>>2);X.uniform2fv(Z(a),e)}},Oc:function(a,b,c){X.uniform2i(Z(a), -b,c)},Nc:function(a,b,c){if(2<=u.version)b&&X.uniform2iv(Z(a),G,c>>2,2*b);else{if(144>=b)for(var e=ud[2*b-1],f=0;f<2*b;f+=2)e[f]=G[c+4*f>>2],e[f+1]=G[c+(4*f+4)>>2];else e=G.subarray(c>>2,c+8*b>>2);X.uniform2iv(Z(a),e)}},Mc:function(a,b,c,e){X.uniform3f(Z(a),b,c,e)},Lc:function(a,b,c){if(2<=u.version)b&&X.uniform3fv(Z(a),N,c>>2,3*b);else{if(96>=b)for(var e=td[3*b-1],f=0;f<3*b;f+=3)e[f]=N[c+4*f>>2],e[f+1]=N[c+(4*f+4)>>2],e[f+2]=N[c+(4*f+8)>>2];else e=N.subarray(c>>2,c+12*b>>2);X.uniform3fv(Z(a),e)}}, -Kc:function(a,b,c,e){X.uniform3i(Z(a),b,c,e)},Jc:function(a,b,c){if(2<=u.version)b&&X.uniform3iv(Z(a),G,c>>2,3*b);else{if(96>=b)for(var e=ud[3*b-1],f=0;f<3*b;f+=3)e[f]=G[c+4*f>>2],e[f+1]=G[c+(4*f+4)>>2],e[f+2]=G[c+(4*f+8)>>2];else e=G.subarray(c>>2,c+12*b>>2);X.uniform3iv(Z(a),e)}},Ic:function(a,b,c,e,f){X.uniform4f(Z(a),b,c,e,f)},Hc:function(a,b,c){if(2<=u.version)b&&X.uniform4fv(Z(a),N,c>>2,4*b);else{if(72>=b){var e=td[4*b-1],f=N;c>>=2;for(var k=0;k<4*b;k+=4){var m=c+k;e[k]=f[m];e[k+1]=f[m+1];e[k+ -2]=f[m+2];e[k+3]=f[m+3]}}else e=N.subarray(c>>2,c+16*b>>2);X.uniform4fv(Z(a),e)}},vc:function(a,b,c,e,f){X.uniform4i(Z(a),b,c,e,f)},wc:function(a,b,c){if(2<=u.version)b&&X.uniform4iv(Z(a),G,c>>2,4*b);else{if(72>=b)for(var e=ud[4*b-1],f=0;f<4*b;f+=4)e[f]=G[c+4*f>>2],e[f+1]=G[c+(4*f+4)>>2],e[f+2]=G[c+(4*f+8)>>2],e[f+3]=G[c+(4*f+12)>>2];else e=G.subarray(c>>2,c+16*b>>2);X.uniform4iv(Z(a),e)}},xc:function(a,b,c,e){if(2<=u.version)b&&X.uniformMatrix2fv(Z(a),!!c,N,e>>2,4*b);else{if(72>=b)for(var f=td[4* -b-1],k=0;k<4*b;k+=4)f[k]=N[e+4*k>>2],f[k+1]=N[e+(4*k+4)>>2],f[k+2]=N[e+(4*k+8)>>2],f[k+3]=N[e+(4*k+12)>>2];else f=N.subarray(e>>2,e+16*b>>2);X.uniformMatrix2fv(Z(a),!!c,f)}},yc:function(a,b,c,e){if(2<=u.version)b&&X.uniformMatrix3fv(Z(a),!!c,N,e>>2,9*b);else{if(32>=b)for(var f=td[9*b-1],k=0;k<9*b;k+=9)f[k]=N[e+4*k>>2],f[k+1]=N[e+(4*k+4)>>2],f[k+2]=N[e+(4*k+8)>>2],f[k+3]=N[e+(4*k+12)>>2],f[k+4]=N[e+(4*k+16)>>2],f[k+5]=N[e+(4*k+20)>>2],f[k+6]=N[e+(4*k+24)>>2],f[k+7]=N[e+(4*k+28)>>2],f[k+8]=N[e+(4*k+ -32)>>2];else f=N.subarray(e>>2,e+36*b>>2);X.uniformMatrix3fv(Z(a),!!c,f)}},zc:function(a,b,c,e){if(2<=u.version)b&&X.uniformMatrix4fv(Z(a),!!c,N,e>>2,16*b);else{if(18>=b){var f=td[16*b-1],k=N;e>>=2;for(var m=0;m<16*b;m+=16){var l=e+m;f[m]=k[l];f[m+1]=k[l+1];f[m+2]=k[l+2];f[m+3]=k[l+3];f[m+4]=k[l+4];f[m+5]=k[l+5];f[m+6]=k[l+6];f[m+7]=k[l+7];f[m+8]=k[l+8];f[m+9]=k[l+9];f[m+10]=k[l+10];f[m+11]=k[l+11];f[m+12]=k[l+12];f[m+13]=k[l+13];f[m+14]=k[l+14];f[m+15]=k[l+15]}}else f=N.subarray(e>>2,e+64*b>>2); -X.uniformMatrix4fv(Z(a),!!c,f)}},Ac:function(a){a=Xc[a];X.useProgram(a);X.Se=a},Bc:function(a,b){X.vertexAttrib1f(a,b)},Cc:function(a,b){X.vertexAttrib2f(a,N[b>>2],N[b+4>>2])},Dc:function(a,b){X.vertexAttrib3f(a,N[b>>2],N[b+4>>2],N[b+8>>2])},Ec:function(a,b){X.vertexAttrib4f(a,N[b>>2],N[b+4>>2],N[b+8>>2],N[b+12>>2])},fc:function(a,b){X.vertexAttribDivisor(a,b)},gc:function(a,b,c,e,f){X.vertexAttribIPointer(a,b,c,e,f)},Fc:function(a,b,c,e,f,k){X.vertexAttribPointer(a,b,c,!!e,f,k)},Gc:function(a,b, -c,e){X.viewport(a,b,c,e)},cb:function(a,b,c,e){X.waitSync(cd[a],b,(c>>>0)+4294967296*e)},kb:function(a){var b=C.length;a>>>=0;if(2147483648=c;c*=2){var e=b*(1+.2/c);e=Math.min(e,a+100663296);var f=Math,k=f.min;e=Math.max(a,e);e+=(65536-e%65536)%65536;a:{var m=Ga.buffer;try{Ga.grow(k.call(f,2147483648,e)-m.byteLength+65535>>>16);Qa();var l=1;break a}catch(q){}l=void 0}if(l)return!0}return!1},eb:function(){return u?u.bf:0},nb:function(a,b){var c=0;wd().forEach(function(e,f){var k= -b+c;f=J[a+4*f>>2]=k;for(k=0;k>0]=e.charCodeAt(k);Ma[f>>0]=0;c+=e.length+1});return 0},ob:function(a,b){var c=wd();J[a>>2]=c.length;var e=0;c.forEach(function(f){e+=f.length+1});J[b>>2]=e;return 0},Ab:function(a){if(!noExitRuntime){if(r.onExit)r.onExit(a);Ha=!0}oa(a,new Ba(a))},U:function(){return 52},fb:function(){return 52},sb:function(){return 52},gb:function(){return 70},R:function(a,b,c,e){for(var f=0,k=0;k>2],l=J[b+4>>2];b+=8;for(var q=0;q>2]=f;return 0},n:Jd,m:Kd,k:Ld,N:Md,Y:Nd,X:Od,w:Pd,y:Qd,p:Rd,v:Sd,Bb:Td,Cb:Ud,Db:Vd,ib:function(a,b,c,e){return Dd(a,b,c,e)}}; -(function(){function a(c){c=c.exports;r.asm=c;Ga=r.asm.$c;Qa();Sa=r.asm.bd;Ua.unshift(r.asm.ad);Xa--;r.monitorRunDependencies&&r.monitorRunDependencies(Xa);if(0==Xa&&(null!==Ya&&(clearInterval(Ya),Ya=null),Za)){var e=Za;Za=null;e()}return c}var b={a:Wd};Xa++;r.monitorRunDependencies&&r.monitorRunDependencies(Xa);if(r.instantiateWasm)try{return r.instantiateWasm(b,a)}catch(c){Ca("Module.instantiateWasm callback failed with error: "+c),ba(c)}fb(b,function(c){a(c.instance)}).catch(ba);return{}})(); -var pc=r._free=function(){return(pc=r._free=r.asm.cd).apply(null,arguments)},pd=r._malloc=function(){return(pd=r._malloc=r.asm.dd).apply(null,arguments)},oc=r.___getTypeName=function(){return(oc=r.___getTypeName=r.asm.ed).apply(null,arguments)};r.__embind_initialize_bindings=function(){return(r.__embind_initialize_bindings=r.asm.fd).apply(null,arguments)};function Xd(){return(Xd=r.asm.gd).apply(null,arguments)}function Yd(){return(Yd=r.asm.hd).apply(null,arguments)} -function Zd(){return(Zd=r.asm.id).apply(null,arguments)}r.dynCall_viji=function(){return(r.dynCall_viji=r.asm.kd).apply(null,arguments)};r.dynCall_vijiii=function(){return(r.dynCall_vijiii=r.asm.ld).apply(null,arguments)};r.dynCall_viiiiij=function(){return(r.dynCall_viiiiij=r.asm.md).apply(null,arguments)};r.dynCall_jii=function(){return(r.dynCall_jii=r.asm.nd).apply(null,arguments)};r.dynCall_vij=function(){return(r.dynCall_vij=r.asm.od).apply(null,arguments)}; -r.dynCall_iiij=function(){return(r.dynCall_iiij=r.asm.pd).apply(null,arguments)};r.dynCall_iiiij=function(){return(r.dynCall_iiiij=r.asm.qd).apply(null,arguments)};r.dynCall_viij=function(){return(r.dynCall_viij=r.asm.rd).apply(null,arguments)};r.dynCall_viiij=function(){return(r.dynCall_viiij=r.asm.sd).apply(null,arguments)};r.dynCall_ji=function(){return(r.dynCall_ji=r.asm.td).apply(null,arguments)};r.dynCall_iij=function(){return(r.dynCall_iij=r.asm.ud).apply(null,arguments)}; -r.dynCall_jiiii=function(){return(r.dynCall_jiiii=r.asm.vd).apply(null,arguments)};r.dynCall_jiiiiii=function(){return(r.dynCall_jiiiiii=r.asm.wd).apply(null,arguments)};r.dynCall_jiiiiji=function(){return(r.dynCall_jiiiiji=r.asm.xd).apply(null,arguments)};r.dynCall_iijj=function(){return(r.dynCall_iijj=r.asm.yd).apply(null,arguments)};r.dynCall_jiji=function(){return(r.dynCall_jiji=r.asm.zd).apply(null,arguments)};r.dynCall_viijii=function(){return(r.dynCall_viijii=r.asm.Ad).apply(null,arguments)}; -r.dynCall_iiiiij=function(){return(r.dynCall_iiiiij=r.asm.Bd).apply(null,arguments)};r.dynCall_iiiiijj=function(){return(r.dynCall_iiiiijj=r.asm.Cd).apply(null,arguments)};r.dynCall_iiiiiijj=function(){return(r.dynCall_iiiiiijj=r.asm.Dd).apply(null,arguments)};function Sd(a,b,c,e,f){var k=Yd();try{Q(a)(b,c,e,f)}catch(m){Zd(k);if(m!==m+0)throw m;Xd(1,0)}}function Kd(a,b,c){var e=Yd();try{return Q(a)(b,c)}catch(f){Zd(e);if(f!==f+0)throw f;Xd(1,0)}} -function Qd(a,b,c){var e=Yd();try{Q(a)(b,c)}catch(f){Zd(e);if(f!==f+0)throw f;Xd(1,0)}}function Jd(a,b){var c=Yd();try{return Q(a)(b)}catch(e){Zd(c);if(e!==e+0)throw e;Xd(1,0)}}function Pd(a,b){var c=Yd();try{Q(a)(b)}catch(e){Zd(c);if(e!==e+0)throw e;Xd(1,0)}}function Ld(a,b,c,e){var f=Yd();try{return Q(a)(b,c,e)}catch(k){Zd(f);if(k!==k+0)throw k;Xd(1,0)}}function Vd(a,b,c,e,f,k,m,l,q,x){var y=Yd();try{Q(a)(b,c,e,f,k,m,l,q,x)}catch(B){Zd(y);if(B!==B+0)throw B;Xd(1,0)}} -function Rd(a,b,c,e){var f=Yd();try{Q(a)(b,c,e)}catch(k){Zd(f);if(k!==k+0)throw k;Xd(1,0)}}function Ud(a,b,c,e,f,k,m){var l=Yd();try{Q(a)(b,c,e,f,k,m)}catch(q){Zd(l);if(q!==q+0)throw q;Xd(1,0)}}function Md(a,b,c,e,f){var k=Yd();try{return Q(a)(b,c,e,f)}catch(m){Zd(k);if(m!==m+0)throw m;Xd(1,0)}}function Nd(a,b,c,e,f,k,m){var l=Yd();try{return Q(a)(b,c,e,f,k,m)}catch(q){Zd(l);if(q!==q+0)throw q;Xd(1,0)}} -function Td(a,b,c,e,f,k){var m=Yd();try{Q(a)(b,c,e,f,k)}catch(l){Zd(m);if(l!==l+0)throw l;Xd(1,0)}}function Od(a,b,c,e,f,k,m,l,q,x){var y=Yd();try{return Q(a)(b,c,e,f,k,m,l,q,x)}catch(B){Zd(y);if(B!==B+0)throw B;Xd(1,0)}}var $d;Za=function ae(){$d||be();$d||(Za=ae)}; -function be(){function a(){if(!$d&&($d=!0,r.calledRun=!0,!Ha)){hb(Ua);aa(r);if(r.onRuntimeInitialized)r.onRuntimeInitialized();if(r.postRun)for("function"==typeof r.postRun&&(r.postRun=[r.postRun]);r.postRun.length;){var b=r.postRun.shift();Va.unshift(b)}hb(Va)}}if(!(0 { - var _scriptDir = typeof document !== 'undefined' && document.currentScript ? document.currentScript.src : undefined; - if (typeof __filename !== 'undefined') _scriptDir = _scriptDir || __filename; - return ( -function(skwasm = {}) { - -function GROWABLE_HEAP_I8(){if(wasmMemory.buffer!=HEAP8.buffer){updateMemoryViews()}return HEAP8}function GROWABLE_HEAP_U8(){if(wasmMemory.buffer!=HEAP8.buffer){updateMemoryViews()}return HEAPU8}function GROWABLE_HEAP_I16(){if(wasmMemory.buffer!=HEAP8.buffer){updateMemoryViews()}return HEAP16}function GROWABLE_HEAP_U16(){if(wasmMemory.buffer!=HEAP8.buffer){updateMemoryViews()}return HEAPU16}function GROWABLE_HEAP_I32(){if(wasmMemory.buffer!=HEAP8.buffer){updateMemoryViews()}return HEAP32}function GROWABLE_HEAP_U32(){if(wasmMemory.buffer!=HEAP8.buffer){updateMemoryViews()}return HEAPU32}function GROWABLE_HEAP_F32(){if(wasmMemory.buffer!=HEAP8.buffer){updateMemoryViews()}return HEAPF32}function GROWABLE_HEAP_F64(){if(wasmMemory.buffer!=HEAP8.buffer){updateMemoryViews()}return HEAPF64}var Module=typeof skwasm!="undefined"?skwasm:{};var readyPromiseResolve,readyPromiseReject;Module["ready"]=new Promise(function(resolve,reject){readyPromiseResolve=resolve;readyPromiseReject=reject});var moduleOverrides=Object.assign({},Module);var arguments_=[];var thisProgram="./this.program";var quit_=(status,toThrow)=>{throw toThrow};var ENVIRONMENT_IS_WEB=typeof window=="object";var ENVIRONMENT_IS_WORKER=typeof importScripts=="function";var ENVIRONMENT_IS_NODE=typeof process=="object"&&typeof process.versions=="object"&&typeof process.versions.node=="string";var ENVIRONMENT_IS_PTHREAD=Module["ENVIRONMENT_IS_PTHREAD"]||false;var scriptDirectory="";function locateFile(path){if(Module["locateFile"]){return Module["locateFile"](path,scriptDirectory)}return scriptDirectory+path}var read_,readAsync,readBinary,setWindowTitle;function logExceptionOnExit(e){if(e instanceof ExitStatus)return;let toLog=e;if(e&&typeof e=="object"&&e.stack){toLog=[e,e.stack]}err("exiting due to exception: "+toLog)}if(ENVIRONMENT_IS_NODE){var fs=require("fs");var nodePath=require("path");if(ENVIRONMENT_IS_WORKER){scriptDirectory=nodePath.dirname(scriptDirectory)+"/"}else{scriptDirectory=__dirname+"/"}read_=(filename,binary)=>{filename=isFileURI(filename)?new URL(filename):nodePath.normalize(filename);return fs.readFileSync(filename,binary?undefined:"utf8")};readBinary=filename=>{var ret=read_(filename,true);if(!ret.buffer){ret=new Uint8Array(ret)}return ret};readAsync=(filename,onload,onerror)=>{filename=isFileURI(filename)?new URL(filename):nodePath.normalize(filename);fs.readFile(filename,function(err,data){if(err)onerror(err);else onload(data.buffer)})};if(process.argv.length>1){thisProgram=process.argv[1].replace(/\\/g,"/")}arguments_=process.argv.slice(2);process.on("uncaughtException",function(ex){if(!(ex instanceof ExitStatus)){throw ex}});var nodeMajor=process.versions.node.split(".")[0];if(nodeMajor<15){process.on("unhandledRejection",function(reason){throw reason})}quit_=(status,toThrow)=>{if(keepRuntimeAlive()){process.exitCode=status;throw toThrow}logExceptionOnExit(toThrow);process.exit(status)};Module["inspect"]=function(){return"[Emscripten Module object]"};let nodeWorkerThreads;try{nodeWorkerThreads=require("worker_threads")}catch(e){console.error('The "worker_threads" module is not supported in this node.js build - perhaps a newer version is needed?');throw e}global.Worker=nodeWorkerThreads.Worker}else if(ENVIRONMENT_IS_WEB||ENVIRONMENT_IS_WORKER){if(ENVIRONMENT_IS_WORKER){scriptDirectory=self.location.href}else if(typeof document!="undefined"&&document.currentScript){scriptDirectory=document.currentScript.src}if(_scriptDir){scriptDirectory=_scriptDir}if(scriptDirectory.indexOf("blob:")!==0){scriptDirectory=scriptDirectory.substr(0,scriptDirectory.replace(/[?#].*/,"").lastIndexOf("/")+1)}else{scriptDirectory=""}if(!ENVIRONMENT_IS_NODE){read_=url=>{var xhr=new XMLHttpRequest;xhr.open("GET",url,false);xhr.send(null);return xhr.responseText};if(ENVIRONMENT_IS_WORKER){readBinary=url=>{var xhr=new XMLHttpRequest;xhr.open("GET",url,false);xhr.responseType="arraybuffer";xhr.send(null);return new Uint8Array(xhr.response)}}readAsync=(url,onload,onerror)=>{var xhr=new XMLHttpRequest;xhr.open("GET",url,true);xhr.responseType="arraybuffer";xhr.onload=()=>{if(xhr.status==200||xhr.status==0&&xhr.response){onload(xhr.response);return}onerror()};xhr.onerror=onerror;xhr.send(null)}}setWindowTitle=title=>document.title=title}else{}if(ENVIRONMENT_IS_NODE){if(typeof performance=="undefined"){global.performance=require("perf_hooks").performance}}var defaultPrint=console.log.bind(console);var defaultPrintErr=console.warn.bind(console);if(ENVIRONMENT_IS_NODE){defaultPrint=str=>fs.writeSync(1,str+"\n");defaultPrintErr=str=>fs.writeSync(2,str+"\n")}var out=Module["print"]||defaultPrint;var err=Module["printErr"]||defaultPrintErr;Object.assign(Module,moduleOverrides);moduleOverrides=null;if(Module["arguments"])arguments_=Module["arguments"];if(Module["thisProgram"])thisProgram=Module["thisProgram"];if(Module["quit"])quit_=Module["quit"];var wasmBinary;if(Module["wasmBinary"])wasmBinary=Module["wasmBinary"];var noExitRuntime=Module["noExitRuntime"]||true;if(typeof WebAssembly!="object"){abort("no native wasm support detected")}var wasmMemory;var wasmModule;var ABORT=false;var EXITSTATUS;function assert(condition,text){if(!condition){abort(text)}}var UTF8Decoder=typeof TextDecoder!="undefined"?new TextDecoder("utf8"):undefined;function UTF8ArrayToString(heapOrArray,idx,maxBytesToRead){var endIdx=idx+maxBytesToRead;var endPtr=idx;while(heapOrArray[endPtr]&&!(endPtr>=endIdx))++endPtr;if(endPtr-idx>16&&heapOrArray.buffer&&UTF8Decoder){return UTF8Decoder.decode(heapOrArray.slice(idx,endPtr))}var str="";while(idx>10,56320|ch&1023)}}return str}function UTF8ToString(ptr,maxBytesToRead){return ptr?UTF8ArrayToString(GROWABLE_HEAP_U8(),ptr,maxBytesToRead):""}function stringToUTF8Array(str,heap,outIdx,maxBytesToWrite){if(!(maxBytesToWrite>0))return 0;var startIdx=outIdx;var endIdx=outIdx+maxBytesToWrite-1;for(var i=0;i=55296&&u<=57343){var u1=str.charCodeAt(++i);u=65536+((u&1023)<<10)|u1&1023}if(u<=127){if(outIdx>=endIdx)break;heap[outIdx++]=u}else if(u<=2047){if(outIdx+1>=endIdx)break;heap[outIdx++]=192|u>>6;heap[outIdx++]=128|u&63}else if(u<=65535){if(outIdx+2>=endIdx)break;heap[outIdx++]=224|u>>12;heap[outIdx++]=128|u>>6&63;heap[outIdx++]=128|u&63}else{if(outIdx+3>=endIdx)break;heap[outIdx++]=240|u>>18;heap[outIdx++]=128|u>>12&63;heap[outIdx++]=128|u>>6&63;heap[outIdx++]=128|u&63}}heap[outIdx]=0;return outIdx-startIdx}function stringToUTF8(str,outPtr,maxBytesToWrite){return stringToUTF8Array(str,GROWABLE_HEAP_U8(),outPtr,maxBytesToWrite)}function lengthBytesUTF8(str){var len=0;for(var i=0;i=55296&&c<=57343){len+=4;++i}else{len+=3}}return len}var HEAP8,HEAPU8,HEAP16,HEAPU16,HEAP32,HEAPU32,HEAPF32,HEAPF64;function updateMemoryViews(){var b=wasmMemory.buffer;Module["HEAP8"]=HEAP8=new Int8Array(b);Module["HEAP16"]=HEAP16=new Int16Array(b);Module["HEAP32"]=HEAP32=new Int32Array(b);Module["HEAPU8"]=HEAPU8=new Uint8Array(b);Module["HEAPU16"]=HEAPU16=new Uint16Array(b);Module["HEAPU32"]=HEAPU32=new Uint32Array(b);Module["HEAPF32"]=HEAPF32=new Float32Array(b);Module["HEAPF64"]=HEAPF64=new Float64Array(b)}var INITIAL_MEMORY=Module["INITIAL_MEMORY"]||16777216;assert(INITIAL_MEMORY>=65536,"INITIAL_MEMORY should be larger than STACK_SIZE, was "+INITIAL_MEMORY+"! (STACK_SIZE="+65536+")");if(ENVIRONMENT_IS_PTHREAD){wasmMemory=Module["wasmMemory"]}else{if(Module["wasmMemory"]){wasmMemory=Module["wasmMemory"]}else{wasmMemory=new WebAssembly.Memory({"initial":INITIAL_MEMORY/65536,"maximum":2147483648/65536,"shared":true});if(!(wasmMemory.buffer instanceof SharedArrayBuffer)){err("requested a shared WebAssembly.Memory but the returned buffer is not a SharedArrayBuffer, indicating that while the browser has SharedArrayBuffer it does not have WebAssembly threads support - you may need to set a flag");if(ENVIRONMENT_IS_NODE){err("(on node you may need: --experimental-wasm-threads --experimental-wasm-bulk-memory and/or recent version)")}throw Error("bad memory")}}}updateMemoryViews();INITIAL_MEMORY=wasmMemory.buffer.byteLength;var wasmTable;var __ATPRERUN__=[];var __ATINIT__=[];var __ATEXIT__=[];var __ATPOSTRUN__=[];var runtimeInitialized=false;function keepRuntimeAlive(){return noExitRuntime}function preRun(){if(Module["preRun"]){if(typeof Module["preRun"]=="function")Module["preRun"]=[Module["preRun"]];while(Module["preRun"].length){addOnPreRun(Module["preRun"].shift())}}callRuntimeCallbacks(__ATPRERUN__)}function initRuntime(){runtimeInitialized=true;if(ENVIRONMENT_IS_PTHREAD)return;callRuntimeCallbacks(__ATINIT__)}function postRun(){if(ENVIRONMENT_IS_PTHREAD)return;if(Module["postRun"]){if(typeof Module["postRun"]=="function")Module["postRun"]=[Module["postRun"]];while(Module["postRun"].length){addOnPostRun(Module["postRun"].shift())}}callRuntimeCallbacks(__ATPOSTRUN__)}function addOnPreRun(cb){__ATPRERUN__.unshift(cb)}function addOnInit(cb){__ATINIT__.unshift(cb)}function addOnPostRun(cb){__ATPOSTRUN__.unshift(cb)}var runDependencies=0;var runDependencyWatcher=null;var dependenciesFulfilled=null;function addRunDependency(id){runDependencies++;if(Module["monitorRunDependencies"]){Module["monitorRunDependencies"](runDependencies)}}function removeRunDependency(id){runDependencies--;if(Module["monitorRunDependencies"]){Module["monitorRunDependencies"](runDependencies)}if(runDependencies==0){if(runDependencyWatcher!==null){clearInterval(runDependencyWatcher);runDependencyWatcher=null}if(dependenciesFulfilled){var callback=dependenciesFulfilled;dependenciesFulfilled=null;callback()}}}function abort(what){if(Module["onAbort"]){Module["onAbort"](what)}what="Aborted("+what+")";err(what);ABORT=true;EXITSTATUS=1;what+=". Build with -sASSERTIONS for more info.";var e=new WebAssembly.RuntimeError(what);readyPromiseReject(e);throw e}var dataURIPrefix="data:application/octet-stream;base64,";function isDataURI(filename){return filename.startsWith(dataURIPrefix)}function isFileURI(filename){return filename.startsWith("file://")}var wasmBinaryFile;wasmBinaryFile="skwasm.wasm";if(!isDataURI(wasmBinaryFile)){wasmBinaryFile=locateFile(wasmBinaryFile)}function getBinary(file){try{if(file==wasmBinaryFile&&wasmBinary){return new Uint8Array(wasmBinary)}if(readBinary){return readBinary(file)}throw"both async and sync fetching of the wasm failed"}catch(err){abort(err)}}function getBinaryPromise(binaryFile){if(!wasmBinary&&(ENVIRONMENT_IS_WEB||ENVIRONMENT_IS_WORKER)){if(typeof fetch=="function"&&!isFileURI(binaryFile)){return fetch(binaryFile,{credentials:"same-origin"}).then(function(response){if(!response["ok"]){throw"failed to load wasm binary file at '"+binaryFile+"'"}return response["arrayBuffer"]()}).catch(function(){return getBinary(binaryFile)})}else{if(readAsync){return new Promise(function(resolve,reject){readAsync(binaryFile,function(response){resolve(new Uint8Array(response))},reject)})}}}return Promise.resolve().then(function(){return getBinary(binaryFile)})}function instantiateArrayBuffer(binaryFile,imports,receiver){return getBinaryPromise(binaryFile).then(function(binary){return WebAssembly.instantiate(binary,imports)}).then(function(instance){return instance}).then(receiver,function(reason){err("failed to asynchronously prepare wasm: "+reason);abort(reason)})}function instantiateAsync(binary,binaryFile,imports,callback){if(!binary&&typeof WebAssembly.instantiateStreaming=="function"&&!isDataURI(binaryFile)&&!isFileURI(binaryFile)&&!ENVIRONMENT_IS_NODE&&typeof fetch=="function"){return fetch(binaryFile,{credentials:"same-origin"}).then(function(response){var result=WebAssembly.instantiateStreaming(response,imports);return result.then(callback,function(reason){err("wasm streaming compile failed: "+reason);err("falling back to ArrayBuffer instantiation");return instantiateArrayBuffer(binaryFile,imports,callback)})})}else{return instantiateArrayBuffer(binaryFile,imports,callback)}}function createWasm(){var info={"env":wasmImports,"wasi_snapshot_preview1":wasmImports};function receiveInstance(instance,module){var exports=instance.exports;Module["asm"]=exports;registerTLSInit(Module["asm"]["_emscripten_tls_init"]);wasmTable=Module["asm"]["__indirect_function_table"];addOnInit(Module["asm"]["__wasm_call_ctors"]);wasmModule=module;PThread.loadWasmModuleToAllWorkers(()=>removeRunDependency("wasm-instantiate"));return exports}addRunDependency("wasm-instantiate");function receiveInstantiationResult(result){receiveInstance(result["instance"],result["module"])}if(Module["instantiateWasm"]){try{return Module["instantiateWasm"](info,receiveInstance)}catch(e){err("Module.instantiateWasm callback failed with error: "+e);readyPromiseReject(e)}}instantiateAsync(wasmBinary,wasmBinaryFile,info,receiveInstantiationResult).catch(readyPromiseReject);return{}}function ExitStatus(status){this.name="ExitStatus";this.message="Program terminated with exit("+status+")";this.status=status}function terminateWorker(worker){worker.terminate();worker.onmessage=e=>{}}function killThread(pthread_ptr){var worker=PThread.pthreads[pthread_ptr];delete PThread.pthreads[pthread_ptr];terminateWorker(worker);__emscripten_thread_free_data(pthread_ptr);PThread.runningWorkers.splice(PThread.runningWorkers.indexOf(worker),1);worker.pthread_ptr=0}function cancelThread(pthread_ptr){var worker=PThread.pthreads[pthread_ptr];worker.postMessage({"cmd":"cancel"})}function cleanupThread(pthread_ptr){var worker=PThread.pthreads[pthread_ptr];assert(worker);PThread.returnWorkerToPool(worker)}function spawnThread(threadParams){var worker=PThread.getNewWorker();if(!worker){return 6}PThread.runningWorkers.push(worker);PThread.pthreads[threadParams.pthread_ptr]=worker;worker.pthread_ptr=threadParams.pthread_ptr;var msg={"cmd":"run","start_routine":threadParams.startRoutine,"arg":threadParams.arg,"pthread_ptr":threadParams.pthread_ptr};msg.moduleCanvasId=threadParams.moduleCanvasId;msg.offscreenCanvases=threadParams.offscreenCanvases;if(ENVIRONMENT_IS_NODE){worker.ref()}worker.postMessage(msg,threadParams.transferList);return 0}var SYSCALLS={varargs:undefined,get:function(){SYSCALLS.varargs+=4;var ret=GROWABLE_HEAP_I32()[SYSCALLS.varargs-4>>2];return ret},getStr:function(ptr){var ret=UTF8ToString(ptr);return ret}};function _proc_exit(code){if(ENVIRONMENT_IS_PTHREAD)return _emscripten_proxy_to_main_thread_js(1,1,code);EXITSTATUS=code;if(!keepRuntimeAlive()){PThread.terminateAllThreads();if(Module["onExit"])Module["onExit"](code);ABORT=true}quit_(code,new ExitStatus(code))}function exitJS(status,implicit){EXITSTATUS=status;if(ENVIRONMENT_IS_PTHREAD){exitOnMainThread(status);throw"unwind"}_proc_exit(status)}var _exit=exitJS;function handleException(e){if(e instanceof ExitStatus||e=="unwind"){return EXITSTATUS}quit_(1,e)}var PThread={unusedWorkers:[],runningWorkers:[],tlsInitFunctions:[],pthreads:{},init:function(){if(ENVIRONMENT_IS_PTHREAD){PThread.initWorker()}else{PThread.initMainThread()}},initMainThread:function(){var pthreadPoolSize=1;while(pthreadPoolSize--){PThread.allocateUnusedWorker()}},initWorker:function(){noExitRuntime=false},setExitStatus:function(status){EXITSTATUS=status},terminateAllThreads__deps:["$terminateWorker"],terminateAllThreads:function(){for(var worker of PThread.runningWorkers){terminateWorker(worker)}for(var worker of PThread.unusedWorkers){terminateWorker(worker)}PThread.unusedWorkers=[];PThread.runningWorkers=[];PThread.pthreads=[]},returnWorkerToPool:function(worker){var pthread_ptr=worker.pthread_ptr;delete PThread.pthreads[pthread_ptr];PThread.unusedWorkers.push(worker);PThread.runningWorkers.splice(PThread.runningWorkers.indexOf(worker),1);worker.pthread_ptr=0;if(ENVIRONMENT_IS_NODE){worker.unref()}__emscripten_thread_free_data(pthread_ptr)},receiveObjectTransfer:function(data){if(typeof GL!="undefined"){Object.assign(GL.offscreenCanvases,data.offscreenCanvases);if(!Module["canvas"]&&data.moduleCanvasId&&GL.offscreenCanvases[data.moduleCanvasId]){Module["canvas"]=GL.offscreenCanvases[data.moduleCanvasId].offscreenCanvas;Module["canvas"].id=data.moduleCanvasId}}},threadInitTLS:function(){PThread.tlsInitFunctions.forEach(f=>f())},loadWasmModuleToWorker:worker=>new Promise(onFinishedLoading=>{worker.onmessage=e=>{var d=e["data"];var cmd=d["cmd"];if(worker.pthread_ptr)PThread.currentProxiedOperationCallerThread=worker.pthread_ptr;if(d["targetThread"]&&d["targetThread"]!=_pthread_self()){var targetWorker=PThread.pthreads[d.targetThread];if(targetWorker){targetWorker.postMessage(d,d["transferList"])}else{err('Internal error! Worker sent a message "'+cmd+'" to target pthread '+d["targetThread"]+", but that thread no longer exists!")}PThread.currentProxiedOperationCallerThread=undefined;return}if(cmd==="processProxyingQueue"){executeNotifiedProxyingQueue(d["queue"])}else if(cmd==="spawnThread"){spawnThread(d)}else if(cmd==="cleanupThread"){cleanupThread(d["thread"])}else if(cmd==="killThread"){killThread(d["thread"])}else if(cmd==="cancelThread"){cancelThread(d["thread"])}else if(cmd==="loaded"){worker.loaded=true;if(ENVIRONMENT_IS_NODE&&!worker.pthread_ptr){worker.unref()}onFinishedLoading(worker)}else if(cmd==="print"){out("Thread "+d["threadId"]+": "+d["text"])}else if(cmd==="printErr"){err("Thread "+d["threadId"]+": "+d["text"])}else if(cmd==="alert"){alert("Thread "+d["threadId"]+": "+d["text"])}else if(d.target==="setimmediate"){worker.postMessage(d)}else if(cmd==="callHandler"){Module[d["handler"]](...d["args"])}else if(cmd){err("worker sent an unknown command "+cmd)}PThread.currentProxiedOperationCallerThread=undefined};worker.onerror=e=>{var message="worker sent an error!";err(message+" "+e.filename+":"+e.lineno+": "+e.message);throw e};if(ENVIRONMENT_IS_NODE){worker.on("message",function(data){worker.onmessage({data:data})});worker.on("error",function(e){worker.onerror(e)});worker.on("detachedExit",function(){})}var handlers=[];var knownHandlers=["onExit","onAbort","print","printErr"];for(var handler of knownHandlers){if(Module.hasOwnProperty(handler)){handlers.push(handler)}}worker.postMessage({"cmd":"load","handlers":handlers,"urlOrBlob":Module["mainScriptUrlOrBlob"]||_scriptDir,"wasmMemory":wasmMemory,"wasmModule":wasmModule})}),loadWasmModuleToAllWorkers:function(onMaybeReady){if(ENVIRONMENT_IS_PTHREAD){return onMaybeReady()}let pthreadPoolReady=Promise.all(PThread.unusedWorkers.map(PThread.loadWasmModuleToWorker));pthreadPoolReady.then(onMaybeReady)},allocateUnusedWorker:function(){var worker;var pthreadMainJs=locateFile("skwasm.worker.js");worker=new Worker(pthreadMainJs);PThread.unusedWorkers.push(worker)},getNewWorker:function(){if(PThread.unusedWorkers.length==0){PThread.allocateUnusedWorker();PThread.loadWasmModuleToWorker(PThread.unusedWorkers[0])}return PThread.unusedWorkers.pop()}};Module["PThread"]=PThread;function callRuntimeCallbacks(callbacks){while(callbacks.length>0){callbacks.shift()(Module)}}function establishStackSpace(){var pthread_ptr=_pthread_self();var stackTop=GROWABLE_HEAP_I32()[pthread_ptr+52>>2];var stackSize=GROWABLE_HEAP_I32()[pthread_ptr+56>>2];var stackMax=stackTop-stackSize;_emscripten_stack_set_limits(stackTop,stackMax);stackRestore(stackTop)}Module["establishStackSpace"]=establishStackSpace;function exitOnMainThread(returnCode){if(ENVIRONMENT_IS_PTHREAD)return _emscripten_proxy_to_main_thread_js(2,0,returnCode);try{_exit(returnCode)}catch(e){handleException(e)}}function getWasmTableEntry(funcPtr){return wasmTable.get(funcPtr)}function invokeEntryPoint(ptr,arg){var result=getWasmTableEntry(ptr)(arg);if(keepRuntimeAlive()){PThread.setExitStatus(result)}else{__emscripten_thread_exit(result)}}Module["invokeEntryPoint"]=invokeEntryPoint;function registerTLSInit(tlsInitFunc){PThread.tlsInitFunctions.push(tlsInitFunc)}function ExceptionInfo(excPtr){this.excPtr=excPtr;this.ptr=excPtr-24;this.set_type=function(type){GROWABLE_HEAP_U32()[this.ptr+4>>2]=type};this.get_type=function(){return GROWABLE_HEAP_U32()[this.ptr+4>>2]};this.set_destructor=function(destructor){GROWABLE_HEAP_U32()[this.ptr+8>>2]=destructor};this.get_destructor=function(){return GROWABLE_HEAP_U32()[this.ptr+8>>2]};this.set_refcount=function(refcount){GROWABLE_HEAP_I32()[this.ptr>>2]=refcount};this.set_caught=function(caught){caught=caught?1:0;GROWABLE_HEAP_I8()[this.ptr+12>>0]=caught};this.get_caught=function(){return GROWABLE_HEAP_I8()[this.ptr+12>>0]!=0};this.set_rethrown=function(rethrown){rethrown=rethrown?1:0;GROWABLE_HEAP_I8()[this.ptr+13>>0]=rethrown};this.get_rethrown=function(){return GROWABLE_HEAP_I8()[this.ptr+13>>0]!=0};this.init=function(type,destructor){this.set_adjusted_ptr(0);this.set_type(type);this.set_destructor(destructor);this.set_refcount(0);this.set_caught(false);this.set_rethrown(false)};this.add_ref=function(){Atomics.add(GROWABLE_HEAP_I32(),this.ptr+0>>2,1)};this.release_ref=function(){var prev=Atomics.sub(GROWABLE_HEAP_I32(),this.ptr+0>>2,1);return prev===1};this.set_adjusted_ptr=function(adjustedPtr){GROWABLE_HEAP_U32()[this.ptr+16>>2]=adjustedPtr};this.get_adjusted_ptr=function(){return GROWABLE_HEAP_U32()[this.ptr+16>>2]};this.get_exception_ptr=function(){var isPointer=___cxa_is_pointer_type(this.get_type());if(isPointer){return GROWABLE_HEAP_U32()[this.excPtr>>2]}var adjusted=this.get_adjusted_ptr();if(adjusted!==0)return adjusted;return this.excPtr}}var exceptionLast=0;var uncaughtExceptionCount=0;function ___cxa_throw(ptr,type,destructor){var info=new ExceptionInfo(ptr);info.init(type,destructor);exceptionLast=ptr;uncaughtExceptionCount++;throw ptr}function ___emscripten_init_main_thread_js(tb){__emscripten_thread_init(tb,!ENVIRONMENT_IS_WORKER,1,!ENVIRONMENT_IS_WEB);PThread.threadInitTLS()}function ___emscripten_thread_cleanup(thread){if(!ENVIRONMENT_IS_PTHREAD)cleanupThread(thread);else postMessage({"cmd":"cleanupThread","thread":thread})}function pthreadCreateProxied(pthread_ptr,attr,startRoutine,arg){if(ENVIRONMENT_IS_PTHREAD)return _emscripten_proxy_to_main_thread_js(3,1,pthread_ptr,attr,startRoutine,arg);return ___pthread_create_js(pthread_ptr,attr,startRoutine,arg)}function ___pthread_create_js(pthread_ptr,attr,startRoutine,arg){if(typeof SharedArrayBuffer=="undefined"){err("Current environment does not support SharedArrayBuffer, pthreads are not available!");return 6}var transferList=[];var error=0;var transferredCanvasNames=attr?GROWABLE_HEAP_U32()[attr+40>>2]:0;if(transferredCanvasNames==-1>>>0)transferredCanvasNames="#canvas";else if(transferredCanvasNames)transferredCanvasNames=UTF8ToString(transferredCanvasNames).trim();if(transferredCanvasNames)transferredCanvasNames=transferredCanvasNames.split(",");var offscreenCanvases={};var moduleCanvasId=Module["canvas"]?Module["canvas"].id:"";for(var i in transferredCanvasNames){var name=transferredCanvasNames[i].trim();var offscreenCanvasInfo;try{if(name=="#canvas"){if(!Module["canvas"]){err('pthread_create: could not find canvas with ID "'+name+'" to transfer to thread!');error=28;break}name=Module["canvas"].id}if(GL.offscreenCanvases[name]){offscreenCanvasInfo=GL.offscreenCanvases[name];GL.offscreenCanvases[name]=null;if(Module["canvas"]instanceof OffscreenCanvas&&name===Module["canvas"].id)Module["canvas"]=null}else if(!ENVIRONMENT_IS_PTHREAD){var canvas=Module["canvas"]&&Module["canvas"].id===name?Module["canvas"]:document.querySelector(name);if(!canvas){err('pthread_create: could not find canvas with ID "'+name+'" to transfer to thread!');error=28;break}if(canvas.controlTransferredOffscreen){err('pthread_create: cannot transfer canvas with ID "'+name+'" to thread, since the current thread does not have control over it!');error=63;break}if(canvas.transferControlToOffscreen){if(!canvas.canvasSharedPtr){canvas.canvasSharedPtr=_malloc(12);GROWABLE_HEAP_I32()[canvas.canvasSharedPtr>>2]=canvas.width;GROWABLE_HEAP_I32()[canvas.canvasSharedPtr+4>>2]=canvas.height;GROWABLE_HEAP_I32()[canvas.canvasSharedPtr+8>>2]=0}offscreenCanvasInfo={offscreenCanvas:canvas.transferControlToOffscreen(),canvasSharedPtr:canvas.canvasSharedPtr,id:canvas.id};canvas.controlTransferredOffscreen=true}else{err('pthread_create: cannot transfer control of canvas "'+name+'" to pthread, because current browser does not support OffscreenCanvas!');err("pthread_create: Build with -sOFFSCREEN_FRAMEBUFFER to enable fallback proxying of GL commands from pthread to main thread.");return 52}}if(offscreenCanvasInfo){transferList.push(offscreenCanvasInfo.offscreenCanvas);offscreenCanvases[offscreenCanvasInfo.id]=offscreenCanvasInfo}}catch(e){err('pthread_create: failed to transfer control of canvas "'+name+'" to OffscreenCanvas! Error: '+e);return 28}}if(ENVIRONMENT_IS_PTHREAD&&(transferList.length===0||error)){return pthreadCreateProxied(pthread_ptr,attr,startRoutine,arg)}if(error)return error;for(var canvas of Object.values(offscreenCanvases)){GROWABLE_HEAP_I32()[canvas.canvasSharedPtr+8>>2]=pthread_ptr}var threadParams={startRoutine:startRoutine,pthread_ptr:pthread_ptr,arg:arg,moduleCanvasId:moduleCanvasId,offscreenCanvases:offscreenCanvases,transferList:transferList};if(ENVIRONMENT_IS_PTHREAD){threadParams.cmd="spawnThread";postMessage(threadParams,transferList);return 0}return spawnThread(threadParams)}function ___syscall_fcntl64(fd,cmd,varargs){if(ENVIRONMENT_IS_PTHREAD)return _emscripten_proxy_to_main_thread_js(4,1,fd,cmd,varargs);SYSCALLS.varargs=varargs;return 0}function ___syscall_fstat64(fd,buf){if(ENVIRONMENT_IS_PTHREAD)return _emscripten_proxy_to_main_thread_js(5,1,fd,buf)}function ___syscall_ioctl(fd,op,varargs){if(ENVIRONMENT_IS_PTHREAD)return _emscripten_proxy_to_main_thread_js(6,1,fd,op,varargs);SYSCALLS.varargs=varargs;return 0}function ___syscall_openat(dirfd,path,flags,varargs){if(ENVIRONMENT_IS_PTHREAD)return _emscripten_proxy_to_main_thread_js(7,1,dirfd,path,flags,varargs);SYSCALLS.varargs=varargs}function __emscripten_default_pthread_stack_size(){return 65536}var nowIsMonotonic=true;function __emscripten_get_now_is_monotonic(){return nowIsMonotonic}function executeNotifiedProxyingQueue(queue){Atomics.store(GROWABLE_HEAP_I32(),queue>>2,1);if(_pthread_self()){__emscripten_proxy_execute_task_queue(queue)}Atomics.compareExchange(GROWABLE_HEAP_I32(),queue>>2,1,0)}Module["executeNotifiedProxyingQueue"]=executeNotifiedProxyingQueue;function __emscripten_notify_task_queue(targetThreadId,currThreadId,mainThreadId,queue){if(targetThreadId==currThreadId){setTimeout(()=>executeNotifiedProxyingQueue(queue))}else if(ENVIRONMENT_IS_PTHREAD){postMessage({"targetThread":targetThreadId,"cmd":"processProxyingQueue","queue":queue})}else{var worker=PThread.pthreads[targetThreadId];if(!worker){return}worker.postMessage({"cmd":"processProxyingQueue","queue":queue})}}function withStackSave(f){var stack=stackSave();var ret=f();stackRestore(stack);return ret}var JSEvents={inEventHandler:0,removeAllEventListeners:function(){for(var i=JSEvents.eventHandlers.length-1;i>=0;--i){JSEvents._removeHandler(i)}JSEvents.eventHandlers=[];JSEvents.deferredCalls=[]},registerRemoveEventListeners:function(){if(!JSEvents.removeEventListenersRegistered){__ATEXIT__.push(JSEvents.removeAllEventListeners);JSEvents.removeEventListenersRegistered=true}},deferredCalls:[],deferCall:function(targetFunction,precedence,argsList){function arraysHaveEqualContent(arrA,arrB){if(arrA.length!=arrB.length)return false;for(var i in arrA){if(arrA[i]!=arrB[i])return false}return true}for(var i in JSEvents.deferredCalls){var call=JSEvents.deferredCalls[i];if(call.targetFunction==targetFunction&&arraysHaveEqualContent(call.argsList,argsList)){return}}JSEvents.deferredCalls.push({targetFunction:targetFunction,precedence:precedence,argsList:argsList});JSEvents.deferredCalls.sort(function(x,y){return x.precedence>2]=eventTypeId;GROWABLE_HEAP_I32()[varargs+4>>2]=eventData;GROWABLE_HEAP_I32()[varargs+8>>2]=userData;_emscripten_dispatch_to_thread_(targetThread,637534208,eventHandlerFunc,eventData,varargs)})},getTargetThreadForEventCallback:function(targetThread){switch(targetThread){case 1:return 0;case 2:return PThread.currentProxiedOperationCallerThread;default:return targetThread}},getNodeNameForTarget:function(target){if(!target)return"";if(target==window)return"#window";if(target==screen)return"#screen";return target&&target.nodeName?target.nodeName:""},fullscreenEnabled:function(){return document.fullscreenEnabled||document.webkitFullscreenEnabled}};function stringToNewUTF8(jsString){var length=lengthBytesUTF8(jsString)+1;var cString=_malloc(length);stringToUTF8(jsString,cString,length);return cString}function _emscripten_set_offscreencanvas_size_on_target_thread_js(targetThread,targetCanvas,width,height){withStackSave(function(){var varargs=stackAlloc(12);var targetCanvasPtr=0;if(targetCanvas){targetCanvasPtr=stringToNewUTF8(targetCanvas)}GROWABLE_HEAP_I32()[varargs>>2]=targetCanvasPtr;GROWABLE_HEAP_I32()[varargs+4>>2]=width;GROWABLE_HEAP_I32()[varargs+8>>2]=height;_emscripten_dispatch_to_thread_(targetThread,654311424,0,targetCanvasPtr,varargs)})}function _emscripten_set_offscreencanvas_size_on_target_thread(targetThread,targetCanvas,width,height){targetCanvas=targetCanvas?UTF8ToString(targetCanvas):"";_emscripten_set_offscreencanvas_size_on_target_thread_js(targetThread,targetCanvas,width,height)}function __webgl_enable_ANGLE_instanced_arrays(ctx){var ext=ctx.getExtension("ANGLE_instanced_arrays");if(ext){ctx["vertexAttribDivisor"]=function(index,divisor){ext["vertexAttribDivisorANGLE"](index,divisor)};ctx["drawArraysInstanced"]=function(mode,first,count,primcount){ext["drawArraysInstancedANGLE"](mode,first,count,primcount)};ctx["drawElementsInstanced"]=function(mode,count,type,indices,primcount){ext["drawElementsInstancedANGLE"](mode,count,type,indices,primcount)};return 1}}function __webgl_enable_OES_vertex_array_object(ctx){var ext=ctx.getExtension("OES_vertex_array_object");if(ext){ctx["createVertexArray"]=function(){return ext["createVertexArrayOES"]()};ctx["deleteVertexArray"]=function(vao){ext["deleteVertexArrayOES"](vao)};ctx["bindVertexArray"]=function(vao){ext["bindVertexArrayOES"](vao)};ctx["isVertexArray"]=function(vao){return ext["isVertexArrayOES"](vao)};return 1}}function __webgl_enable_WEBGL_draw_buffers(ctx){var ext=ctx.getExtension("WEBGL_draw_buffers");if(ext){ctx["drawBuffers"]=function(n,bufs){ext["drawBuffersWEBGL"](n,bufs)};return 1}}function __webgl_enable_WEBGL_draw_instanced_base_vertex_base_instance(ctx){return!!(ctx.dibvbi=ctx.getExtension("WEBGL_draw_instanced_base_vertex_base_instance"))}function __webgl_enable_WEBGL_multi_draw_instanced_base_vertex_base_instance(ctx){return!!(ctx.mdibvbi=ctx.getExtension("WEBGL_multi_draw_instanced_base_vertex_base_instance"))}function __webgl_enable_WEBGL_multi_draw(ctx){return!!(ctx.multiDrawWebgl=ctx.getExtension("WEBGL_multi_draw"))}var GL={counter:1,buffers:[],programs:[],framebuffers:[],renderbuffers:[],textures:[],shaders:[],vaos:[],contexts:{},offscreenCanvases:{},queries:[],samplers:[],transformFeedbacks:[],syncs:[],stringCache:{},stringiCache:{},unpackAlignment:4,recordError:function recordError(errorCode){if(!GL.lastError){GL.lastError=errorCode}},getNewId:function(table){var ret=GL.counter++;for(var i=table.length;i>2]:-1;source+=UTF8ToString(GROWABLE_HEAP_I32()[string+i*4>>2],len<0?undefined:len)}return source},createContext:function(canvas,webGLContextAttributes){if(!canvas.getContextSafariWebGL2Fixed){canvas.getContextSafariWebGL2Fixed=canvas.getContext;function fixedGetContext(ver,attrs){var gl=canvas.getContextSafariWebGL2Fixed(ver,attrs);return ver=="webgl"==gl instanceof WebGLRenderingContext?gl:null}canvas.getContext=fixedGetContext}var ctx=webGLContextAttributes.majorVersion>1?canvas.getContext("webgl2",webGLContextAttributes):canvas.getContext("webgl",webGLContextAttributes);if(!ctx)return 0;var handle=GL.registerContext(ctx,webGLContextAttributes);return handle},registerContext:function(ctx,webGLContextAttributes){var handle=_malloc(8);GROWABLE_HEAP_I32()[handle+4>>2]=_pthread_self();var context={handle:handle,attributes:webGLContextAttributes,version:webGLContextAttributes.majorVersion,GLctx:ctx};if(ctx.canvas)ctx.canvas.GLctxObject=context;GL.contexts[handle]=context;if(typeof webGLContextAttributes.enableExtensionsByDefault=="undefined"||webGLContextAttributes.enableExtensionsByDefault){GL.initExtensions(context)}return handle},makeContextCurrent:function(contextHandle){GL.currentContext=GL.contexts[contextHandle];Module.ctx=GLctx=GL.currentContext&&GL.currentContext.GLctx;return!(contextHandle&&!GLctx)},getContext:function(contextHandle){return GL.contexts[contextHandle]},deleteContext:function(contextHandle){if(GL.currentContext===GL.contexts[contextHandle])GL.currentContext=null;if(typeof JSEvents=="object")JSEvents.removeAllHandlersOnTarget(GL.contexts[contextHandle].GLctx.canvas);if(GL.contexts[contextHandle]&&GL.contexts[contextHandle].GLctx.canvas)GL.contexts[contextHandle].GLctx.canvas.GLctxObject=undefined;_free(GL.contexts[contextHandle].handle);GL.contexts[contextHandle]=null},initExtensions:function(context){if(!context)context=GL.currentContext;if(context.initExtensionsDone)return;context.initExtensionsDone=true;var GLctx=context.GLctx;__webgl_enable_ANGLE_instanced_arrays(GLctx);__webgl_enable_OES_vertex_array_object(GLctx);__webgl_enable_WEBGL_draw_buffers(GLctx);__webgl_enable_WEBGL_draw_instanced_base_vertex_base_instance(GLctx);__webgl_enable_WEBGL_multi_draw_instanced_base_vertex_base_instance(GLctx);if(context.version>=2){GLctx.disjointTimerQueryExt=GLctx.getExtension("EXT_disjoint_timer_query_webgl2")}if(context.version<2||!GLctx.disjointTimerQueryExt){GLctx.disjointTimerQueryExt=GLctx.getExtension("EXT_disjoint_timer_query")}__webgl_enable_WEBGL_multi_draw(GLctx);var exts=GLctx.getSupportedExtensions()||[];exts.forEach(function(ext){if(!ext.includes("lose_context")&&!ext.includes("debug")){GLctx.getExtension(ext)}})}};function maybeCStringToJsString(cString){return cString>2?UTF8ToString(cString):cString}function findCanvasEventTarget(target){target=maybeCStringToJsString(target);return GL.offscreenCanvases[target.substr(1)]||target=="canvas"&&Object.keys(GL.offscreenCanvases)[0]||typeof document!="undefined"&&document.querySelector(target)}function _emscripten_set_canvas_element_size_calling_thread(target,width,height){var canvas=findCanvasEventTarget(target);if(!canvas)return-4;if(canvas.canvasSharedPtr){GROWABLE_HEAP_I32()[canvas.canvasSharedPtr>>2]=width;GROWABLE_HEAP_I32()[canvas.canvasSharedPtr+4>>2]=height}if(canvas.offscreenCanvas||!canvas.controlTransferredOffscreen){if(canvas.offscreenCanvas)canvas=canvas.offscreenCanvas;var autoResizeViewport=false;if(canvas.GLctxObject&&canvas.GLctxObject.GLctx){var prevViewport=canvas.GLctxObject.GLctx.getParameter(2978);autoResizeViewport=prevViewport[0]===0&&prevViewport[1]===0&&prevViewport[2]===canvas.width&&prevViewport[3]===canvas.height}canvas.width=width;canvas.height=height;if(autoResizeViewport){canvas.GLctxObject.GLctx.viewport(0,0,width,height)}}else if(canvas.canvasSharedPtr){var targetThread=GROWABLE_HEAP_I32()[canvas.canvasSharedPtr+8>>2];_emscripten_set_offscreencanvas_size_on_target_thread(targetThread,target,width,height);return 1}else{return-4}return 0}function _emscripten_set_canvas_element_size_main_thread(target,width,height){if(ENVIRONMENT_IS_PTHREAD)return _emscripten_proxy_to_main_thread_js(8,1,target,width,height);return _emscripten_set_canvas_element_size_calling_thread(target,width,height)}function _emscripten_set_canvas_element_size(target,width,height){var canvas=findCanvasEventTarget(target);if(canvas){return _emscripten_set_canvas_element_size_calling_thread(target,width,height)}return _emscripten_set_canvas_element_size_main_thread(target,width,height)}var __emscripten_set_offscreencanvas_size=_emscripten_set_canvas_element_size;function __emscripten_throw_longjmp(){throw Infinity}function __mmap_js(len,prot,flags,fd,off,allocated,addr){if(ENVIRONMENT_IS_PTHREAD)return _emscripten_proxy_to_main_thread_js(9,1,len,prot,flags,fd,off,allocated,addr);return-52}function __munmap_js(addr,len,prot,flags,fd,offset){if(ENVIRONMENT_IS_PTHREAD)return _emscripten_proxy_to_main_thread_js(10,1,addr,len,prot,flags,fd,offset)}function _abort(){abort("")}function warnOnce(text){if(!warnOnce.shown)warnOnce.shown={};if(!warnOnce.shown[text]){warnOnce.shown[text]=1;if(ENVIRONMENT_IS_NODE)text="warning: "+text;err(text)}}function _emscripten_check_blocking_allowed(){if(ENVIRONMENT_IS_NODE)return;if(ENVIRONMENT_IS_WORKER)return;warnOnce("Blocking on the main thread is very dangerous, see https://emscripten.org/docs/porting/pthreads.html#blocking-on-the-main-browser-thread")}var _emscripten_get_now;if(ENVIRONMENT_IS_NODE){_emscripten_get_now=()=>{var t=process.hrtime();return t[0]*1e3+t[1]/1e6}}else _emscripten_get_now=()=>performance.timeOrigin+performance.now();function _emscripten_glActiveTexture(x0){GLctx["activeTexture"](x0)}function _emscripten_glAttachShader(program,shader){GLctx.attachShader(GL.programs[program],GL.shaders[shader])}function _emscripten_glBindAttribLocation(program,index,name){GLctx.bindAttribLocation(GL.programs[program],index,UTF8ToString(name))}function _emscripten_glBindBuffer(target,buffer){if(target==35051){GLctx.currentPixelPackBufferBinding=buffer}else if(target==35052){GLctx.currentPixelUnpackBufferBinding=buffer}GLctx.bindBuffer(target,GL.buffers[buffer])}function _emscripten_glBindFramebuffer(target,framebuffer){GLctx.bindFramebuffer(target,GL.framebuffers[framebuffer])}function _emscripten_glBindRenderbuffer(target,renderbuffer){GLctx.bindRenderbuffer(target,GL.renderbuffers[renderbuffer])}function _emscripten_glBindSampler(unit,sampler){GLctx["bindSampler"](unit,GL.samplers[sampler])}function _emscripten_glBindTexture(target,texture){GLctx.bindTexture(target,GL.textures[texture])}function _emscripten_glBindVertexArray(vao){GLctx["bindVertexArray"](GL.vaos[vao])}function _emscripten_glBindVertexArrayOES(vao){GLctx["bindVertexArray"](GL.vaos[vao])}function _emscripten_glBlendColor(x0,x1,x2,x3){GLctx["blendColor"](x0,x1,x2,x3)}function _emscripten_glBlendEquation(x0){GLctx["blendEquation"](x0)}function _emscripten_glBlendFunc(x0,x1){GLctx["blendFunc"](x0,x1)}function _emscripten_glBlitFramebuffer(x0,x1,x2,x3,x4,x5,x6,x7,x8,x9){GLctx["blitFramebuffer"](x0,x1,x2,x3,x4,x5,x6,x7,x8,x9)}function _emscripten_glBufferData(target,size,data,usage){if(GL.currentContext.version>=2){if(data&&size){GLctx.bufferData(target,GROWABLE_HEAP_U8(),usage,data,size)}else{GLctx.bufferData(target,size,usage)}}else{GLctx.bufferData(target,data?GROWABLE_HEAP_U8().subarray(data,data+size):size,usage)}}function _emscripten_glBufferSubData(target,offset,size,data){if(GL.currentContext.version>=2){size&&GLctx.bufferSubData(target,offset,GROWABLE_HEAP_U8(),data,size);return}GLctx.bufferSubData(target,offset,GROWABLE_HEAP_U8().subarray(data,data+size))}function _emscripten_glCheckFramebufferStatus(x0){return GLctx["checkFramebufferStatus"](x0)}function _emscripten_glClear(x0){GLctx["clear"](x0)}function _emscripten_glClearColor(x0,x1,x2,x3){GLctx["clearColor"](x0,x1,x2,x3)}function _emscripten_glClearStencil(x0){GLctx["clearStencil"](x0)}function convertI32PairToI53(lo,hi){return(lo>>>0)+hi*4294967296}function _emscripten_glClientWaitSync(sync,flags,timeout_low,timeout_high){var timeout=convertI32PairToI53(timeout_low,timeout_high);return GLctx.clientWaitSync(GL.syncs[sync],flags,timeout)}function _emscripten_glColorMask(red,green,blue,alpha){GLctx.colorMask(!!red,!!green,!!blue,!!alpha)}function _emscripten_glCompileShader(shader){GLctx.compileShader(GL.shaders[shader])}function _emscripten_glCompressedTexImage2D(target,level,internalFormat,width,height,border,imageSize,data){if(GL.currentContext.version>=2){if(GLctx.currentPixelUnpackBufferBinding||!imageSize){GLctx["compressedTexImage2D"](target,level,internalFormat,width,height,border,imageSize,data)}else{GLctx["compressedTexImage2D"](target,level,internalFormat,width,height,border,GROWABLE_HEAP_U8(),data,imageSize)}return}GLctx["compressedTexImage2D"](target,level,internalFormat,width,height,border,data?GROWABLE_HEAP_U8().subarray(data,data+imageSize):null)}function _emscripten_glCompressedTexSubImage2D(target,level,xoffset,yoffset,width,height,format,imageSize,data){if(GL.currentContext.version>=2){if(GLctx.currentPixelUnpackBufferBinding||!imageSize){GLctx["compressedTexSubImage2D"](target,level,xoffset,yoffset,width,height,format,imageSize,data)}else{GLctx["compressedTexSubImage2D"](target,level,xoffset,yoffset,width,height,format,GROWABLE_HEAP_U8(),data,imageSize)}return}GLctx["compressedTexSubImage2D"](target,level,xoffset,yoffset,width,height,format,data?GROWABLE_HEAP_U8().subarray(data,data+imageSize):null)}function _emscripten_glCopyBufferSubData(x0,x1,x2,x3,x4){GLctx["copyBufferSubData"](x0,x1,x2,x3,x4)}function _emscripten_glCopyTexSubImage2D(x0,x1,x2,x3,x4,x5,x6,x7){GLctx["copyTexSubImage2D"](x0,x1,x2,x3,x4,x5,x6,x7)}function _emscripten_glCreateProgram(){var id=GL.getNewId(GL.programs);var program=GLctx.createProgram();program.name=id;program.maxUniformLength=program.maxAttributeLength=program.maxUniformBlockNameLength=0;program.uniformIdCounter=1;GL.programs[id]=program;return id}function _emscripten_glCreateShader(shaderType){var id=GL.getNewId(GL.shaders);GL.shaders[id]=GLctx.createShader(shaderType);return id}function _emscripten_glCullFace(x0){GLctx["cullFace"](x0)}function _emscripten_glDeleteBuffers(n,buffers){for(var i=0;i>2];var buffer=GL.buffers[id];if(!buffer)continue;GLctx.deleteBuffer(buffer);buffer.name=0;GL.buffers[id]=null;if(id==GLctx.currentPixelPackBufferBinding)GLctx.currentPixelPackBufferBinding=0;if(id==GLctx.currentPixelUnpackBufferBinding)GLctx.currentPixelUnpackBufferBinding=0}}function _emscripten_glDeleteFramebuffers(n,framebuffers){for(var i=0;i>2];var framebuffer=GL.framebuffers[id];if(!framebuffer)continue;GLctx.deleteFramebuffer(framebuffer);framebuffer.name=0;GL.framebuffers[id]=null}}function _emscripten_glDeleteProgram(id){if(!id)return;var program=GL.programs[id];if(!program){GL.recordError(1281);return}GLctx.deleteProgram(program);program.name=0;GL.programs[id]=null}function _emscripten_glDeleteRenderbuffers(n,renderbuffers){for(var i=0;i>2];var renderbuffer=GL.renderbuffers[id];if(!renderbuffer)continue;GLctx.deleteRenderbuffer(renderbuffer);renderbuffer.name=0;GL.renderbuffers[id]=null}}function _emscripten_glDeleteSamplers(n,samplers){for(var i=0;i>2];var sampler=GL.samplers[id];if(!sampler)continue;GLctx["deleteSampler"](sampler);sampler.name=0;GL.samplers[id]=null}}function _emscripten_glDeleteShader(id){if(!id)return;var shader=GL.shaders[id];if(!shader){GL.recordError(1281);return}GLctx.deleteShader(shader);GL.shaders[id]=null}function _emscripten_glDeleteSync(id){if(!id)return;var sync=GL.syncs[id];if(!sync){GL.recordError(1281);return}GLctx.deleteSync(sync);sync.name=0;GL.syncs[id]=null}function _emscripten_glDeleteTextures(n,textures){for(var i=0;i>2];var texture=GL.textures[id];if(!texture)continue;GLctx.deleteTexture(texture);texture.name=0;GL.textures[id]=null}}function _emscripten_glDeleteVertexArrays(n,vaos){for(var i=0;i>2];GLctx["deleteVertexArray"](GL.vaos[id]);GL.vaos[id]=null}}function _emscripten_glDeleteVertexArraysOES(n,vaos){for(var i=0;i>2];GLctx["deleteVertexArray"](GL.vaos[id]);GL.vaos[id]=null}}function _emscripten_glDepthMask(flag){GLctx.depthMask(!!flag)}function _emscripten_glDisable(x0){GLctx["disable"](x0)}function _emscripten_glDisableVertexAttribArray(index){GLctx.disableVertexAttribArray(index)}function _emscripten_glDrawArrays(mode,first,count){GLctx.drawArrays(mode,first,count)}function _emscripten_glDrawArraysInstanced(mode,first,count,primcount){GLctx["drawArraysInstanced"](mode,first,count,primcount)}function _emscripten_glDrawArraysInstancedBaseInstanceWEBGL(mode,first,count,instanceCount,baseInstance){GLctx.dibvbi["drawArraysInstancedBaseInstanceWEBGL"](mode,first,count,instanceCount,baseInstance)}var tempFixedLengthArray=[];function _emscripten_glDrawBuffers(n,bufs){var bufArray=tempFixedLengthArray[n];for(var i=0;i>2]}GLctx["drawBuffers"](bufArray)}function _emscripten_glDrawElements(mode,count,type,indices){GLctx.drawElements(mode,count,type,indices)}function _emscripten_glDrawElementsInstanced(mode,count,type,indices,primcount){GLctx["drawElementsInstanced"](mode,count,type,indices,primcount)}function _emscripten_glDrawElementsInstancedBaseVertexBaseInstanceWEBGL(mode,count,type,offset,instanceCount,baseVertex,baseinstance){GLctx.dibvbi["drawElementsInstancedBaseVertexBaseInstanceWEBGL"](mode,count,type,offset,instanceCount,baseVertex,baseinstance)}function _glDrawElements(mode,count,type,indices){GLctx.drawElements(mode,count,type,indices)}function _emscripten_glDrawRangeElements(mode,start,end,count,type,indices){_glDrawElements(mode,count,type,indices)}function _emscripten_glEnable(x0){GLctx["enable"](x0)}function _emscripten_glEnableVertexAttribArray(index){GLctx.enableVertexAttribArray(index)}function _emscripten_glFenceSync(condition,flags){var sync=GLctx.fenceSync(condition,flags);if(sync){var id=GL.getNewId(GL.syncs);sync.name=id;GL.syncs[id]=sync;return id}return 0}function _emscripten_glFinish(){GLctx["finish"]()}function _emscripten_glFlush(){GLctx["flush"]()}function _emscripten_glFramebufferRenderbuffer(target,attachment,renderbuffertarget,renderbuffer){GLctx.framebufferRenderbuffer(target,attachment,renderbuffertarget,GL.renderbuffers[renderbuffer])}function _emscripten_glFramebufferTexture2D(target,attachment,textarget,texture,level){GLctx.framebufferTexture2D(target,attachment,textarget,GL.textures[texture],level)}function _emscripten_glFrontFace(x0){GLctx["frontFace"](x0)}function __glGenObject(n,buffers,createFunction,objectTable){for(var i=0;i>2]=id}}function _emscripten_glGenBuffers(n,buffers){__glGenObject(n,buffers,"createBuffer",GL.buffers)}function _emscripten_glGenFramebuffers(n,ids){__glGenObject(n,ids,"createFramebuffer",GL.framebuffers)}function _emscripten_glGenRenderbuffers(n,renderbuffers){__glGenObject(n,renderbuffers,"createRenderbuffer",GL.renderbuffers)}function _emscripten_glGenSamplers(n,samplers){__glGenObject(n,samplers,"createSampler",GL.samplers)}function _emscripten_glGenTextures(n,textures){__glGenObject(n,textures,"createTexture",GL.textures)}function _emscripten_glGenVertexArrays(n,arrays){__glGenObject(n,arrays,"createVertexArray",GL.vaos)}function _emscripten_glGenVertexArraysOES(n,arrays){__glGenObject(n,arrays,"createVertexArray",GL.vaos)}function _emscripten_glGenerateMipmap(x0){GLctx["generateMipmap"](x0)}function _emscripten_glGetBufferParameteriv(target,value,data){if(!data){GL.recordError(1281);return}GROWABLE_HEAP_I32()[data>>2]=GLctx.getBufferParameter(target,value)}function _emscripten_glGetError(){var error=GLctx.getError()||GL.lastError;GL.lastError=0;return error}function writeI53ToI64(ptr,num){GROWABLE_HEAP_U32()[ptr>>2]=num;GROWABLE_HEAP_U32()[ptr+4>>2]=(num-GROWABLE_HEAP_U32()[ptr>>2])/4294967296}function emscriptenWebGLGet(name_,p,type){if(!p){GL.recordError(1281);return}var ret=undefined;switch(name_){case 36346:ret=1;break;case 36344:if(type!=0&&type!=1){GL.recordError(1280)}return;case 34814:case 36345:ret=0;break;case 34466:var formats=GLctx.getParameter(34467);ret=formats?formats.length:0;break;case 33309:if(GL.currentContext.version<2){GL.recordError(1282);return}var exts=GLctx.getSupportedExtensions()||[];ret=2*exts.length;break;case 33307:case 33308:if(GL.currentContext.version<2){GL.recordError(1280);return}ret=name_==33307?3:0;break}if(ret===undefined){var result=GLctx.getParameter(name_);switch(typeof result){case"number":ret=result;break;case"boolean":ret=result?1:0;break;case"string":GL.recordError(1280);return;case"object":if(result===null){switch(name_){case 34964:case 35725:case 34965:case 36006:case 36007:case 32873:case 34229:case 36662:case 36663:case 35053:case 35055:case 36010:case 35097:case 35869:case 32874:case 36389:case 35983:case 35368:case 34068:{ret=0;break}default:{GL.recordError(1280);return}}}else if(result instanceof Float32Array||result instanceof Uint32Array||result instanceof Int32Array||result instanceof Array){for(var i=0;i>2]=result[i];break;case 2:GROWABLE_HEAP_F32()[p+i*4>>2]=result[i];break;case 4:GROWABLE_HEAP_I8()[p+i>>0]=result[i]?1:0;break}}return}else{try{ret=result.name|0}catch(e){GL.recordError(1280);err("GL_INVALID_ENUM in glGet"+type+"v: Unknown object returned from WebGL getParameter("+name_+")! (error: "+e+")");return}}break;default:GL.recordError(1280);err("GL_INVALID_ENUM in glGet"+type+"v: Native code calling glGet"+type+"v("+name_+") and it returns "+result+" of type "+typeof result+"!");return}}switch(type){case 1:writeI53ToI64(p,ret);break;case 0:GROWABLE_HEAP_I32()[p>>2]=ret;break;case 2:GROWABLE_HEAP_F32()[p>>2]=ret;break;case 4:GROWABLE_HEAP_I8()[p>>0]=ret?1:0;break}}function _emscripten_glGetFloatv(name_,p){emscriptenWebGLGet(name_,p,2)}function _emscripten_glGetFramebufferAttachmentParameteriv(target,attachment,pname,params){var result=GLctx.getFramebufferAttachmentParameter(target,attachment,pname);if(result instanceof WebGLRenderbuffer||result instanceof WebGLTexture){result=result.name|0}GROWABLE_HEAP_I32()[params>>2]=result}function _emscripten_glGetIntegerv(name_,p){emscriptenWebGLGet(name_,p,0)}function _emscripten_glGetProgramInfoLog(program,maxLength,length,infoLog){var log=GLctx.getProgramInfoLog(GL.programs[program]);if(log===null)log="(unknown error)";var numBytesWrittenExclNull=maxLength>0&&infoLog?stringToUTF8(log,infoLog,maxLength):0;if(length)GROWABLE_HEAP_I32()[length>>2]=numBytesWrittenExclNull}function _emscripten_glGetProgramiv(program,pname,p){if(!p){GL.recordError(1281);return}if(program>=GL.counter){GL.recordError(1281);return}program=GL.programs[program];if(pname==35716){var log=GLctx.getProgramInfoLog(program);if(log===null)log="(unknown error)";GROWABLE_HEAP_I32()[p>>2]=log.length+1}else if(pname==35719){if(!program.maxUniformLength){for(var i=0;i>2]=program.maxUniformLength}else if(pname==35722){if(!program.maxAttributeLength){for(var i=0;i>2]=program.maxAttributeLength}else if(pname==35381){if(!program.maxUniformBlockNameLength){for(var i=0;i>2]=program.maxUniformBlockNameLength}else{GROWABLE_HEAP_I32()[p>>2]=GLctx.getProgramParameter(program,pname)}}function _emscripten_glGetRenderbufferParameteriv(target,pname,params){if(!params){GL.recordError(1281);return}GROWABLE_HEAP_I32()[params>>2]=GLctx.getRenderbufferParameter(target,pname)}function _emscripten_glGetShaderInfoLog(shader,maxLength,length,infoLog){var log=GLctx.getShaderInfoLog(GL.shaders[shader]);if(log===null)log="(unknown error)";var numBytesWrittenExclNull=maxLength>0&&infoLog?stringToUTF8(log,infoLog,maxLength):0;if(length)GROWABLE_HEAP_I32()[length>>2]=numBytesWrittenExclNull}function _emscripten_glGetShaderPrecisionFormat(shaderType,precisionType,range,precision){var result=GLctx.getShaderPrecisionFormat(shaderType,precisionType);GROWABLE_HEAP_I32()[range>>2]=result.rangeMin;GROWABLE_HEAP_I32()[range+4>>2]=result.rangeMax;GROWABLE_HEAP_I32()[precision>>2]=result.precision}function _emscripten_glGetShaderiv(shader,pname,p){if(!p){GL.recordError(1281);return}if(pname==35716){var log=GLctx.getShaderInfoLog(GL.shaders[shader]);if(log===null)log="(unknown error)";var logLength=log?log.length+1:0;GROWABLE_HEAP_I32()[p>>2]=logLength}else if(pname==35720){var source=GLctx.getShaderSource(GL.shaders[shader]);var sourceLength=source?source.length+1:0;GROWABLE_HEAP_I32()[p>>2]=sourceLength}else{GROWABLE_HEAP_I32()[p>>2]=GLctx.getShaderParameter(GL.shaders[shader],pname)}}function _emscripten_glGetString(name_){var ret=GL.stringCache[name_];if(!ret){switch(name_){case 7939:var exts=GLctx.getSupportedExtensions()||[];exts=exts.concat(exts.map(function(e){return"GL_"+e}));ret=stringToNewUTF8(exts.join(" "));break;case 7936:case 7937:case 37445:case 37446:var s=GLctx.getParameter(name_);if(!s){GL.recordError(1280)}ret=s&&stringToNewUTF8(s);break;case 7938:var glVersion=GLctx.getParameter(7938);if(GL.currentContext.version>=2)glVersion="OpenGL ES 3.0 ("+glVersion+")";else{glVersion="OpenGL ES 2.0 ("+glVersion+")"}ret=stringToNewUTF8(glVersion);break;case 35724:var glslVersion=GLctx.getParameter(35724);var ver_re=/^WebGL GLSL ES ([0-9]\.[0-9][0-9]?)(?:$| .*)/;var ver_num=glslVersion.match(ver_re);if(ver_num!==null){if(ver_num[1].length==3)ver_num[1]=ver_num[1]+"0";glslVersion="OpenGL ES GLSL ES "+ver_num[1]+" ("+glslVersion+")"}ret=stringToNewUTF8(glslVersion);break;default:GL.recordError(1280)}GL.stringCache[name_]=ret}return ret}function _emscripten_glGetStringi(name,index){if(GL.currentContext.version<2){GL.recordError(1282);return 0}var stringiCache=GL.stringiCache[name];if(stringiCache){if(index<0||index>=stringiCache.length){GL.recordError(1281);return 0}return stringiCache[index]}switch(name){case 7939:var exts=GLctx.getSupportedExtensions()||[];exts=exts.concat(exts.map(function(e){return"GL_"+e}));exts=exts.map(function(e){return stringToNewUTF8(e)});stringiCache=GL.stringiCache[name]=exts;if(index<0||index>=stringiCache.length){GL.recordError(1281);return 0}return stringiCache[index];default:GL.recordError(1280);return 0}}function jstoi_q(str){return parseInt(str)}function webglGetLeftBracePos(name){return name.slice(-1)=="]"&&name.lastIndexOf("[")}function webglPrepareUniformLocationsBeforeFirstUse(program){var uniformLocsById=program.uniformLocsById,uniformSizeAndIdsByName=program.uniformSizeAndIdsByName,i,j;if(!uniformLocsById){program.uniformLocsById=uniformLocsById={};program.uniformArrayNamesById={};for(i=0;i0?nm.slice(0,lb):nm;var id=program.uniformIdCounter;program.uniformIdCounter+=sz;uniformSizeAndIdsByName[arrayName]=[sz,id];for(j=0;j0){arrayIndex=jstoi_q(name.slice(leftBrace+1))>>>0;uniformBaseName=name.slice(0,leftBrace)}var sizeAndId=program.uniformSizeAndIdsByName[uniformBaseName];if(sizeAndId&&arrayIndex>2]}GLctx["invalidateFramebuffer"](target,list)}function _emscripten_glInvalidateSubFramebuffer(target,numAttachments,attachments,x,y,width,height){var list=tempFixedLengthArray[numAttachments];for(var i=0;i>2]}GLctx["invalidateSubFramebuffer"](target,list,x,y,width,height)}function _emscripten_glIsSync(sync){return GLctx.isSync(GL.syncs[sync])}function _emscripten_glIsTexture(id){var texture=GL.textures[id];if(!texture)return 0;return GLctx.isTexture(texture)}function _emscripten_glLineWidth(x0){GLctx["lineWidth"](x0)}function _emscripten_glLinkProgram(program){program=GL.programs[program];GLctx.linkProgram(program);program.uniformLocsById=0;program.uniformSizeAndIdsByName={}}function _emscripten_glMultiDrawArraysInstancedBaseInstanceWEBGL(mode,firsts,counts,instanceCounts,baseInstances,drawCount){GLctx.mdibvbi["multiDrawArraysInstancedBaseInstanceWEBGL"](mode,GROWABLE_HEAP_I32(),firsts>>2,GROWABLE_HEAP_I32(),counts>>2,GROWABLE_HEAP_I32(),instanceCounts>>2,GROWABLE_HEAP_U32(),baseInstances>>2,drawCount)}function _emscripten_glMultiDrawElementsInstancedBaseVertexBaseInstanceWEBGL(mode,counts,type,offsets,instanceCounts,baseVertices,baseInstances,drawCount){GLctx.mdibvbi["multiDrawElementsInstancedBaseVertexBaseInstanceWEBGL"](mode,GROWABLE_HEAP_I32(),counts>>2,type,GROWABLE_HEAP_I32(),offsets>>2,GROWABLE_HEAP_I32(),instanceCounts>>2,GROWABLE_HEAP_I32(),baseVertices>>2,GROWABLE_HEAP_U32(),baseInstances>>2,drawCount)}function _emscripten_glPixelStorei(pname,param){if(pname==3317){GL.unpackAlignment=param}GLctx.pixelStorei(pname,param)}function _emscripten_glReadBuffer(x0){GLctx["readBuffer"](x0)}function computeUnpackAlignedImageSize(width,height,sizePerPixel,alignment){function roundedToNextMultipleOf(x,y){return x+y-1&-y}var plainRowSize=width*sizePerPixel;var alignedRowSize=roundedToNextMultipleOf(plainRowSize,alignment);return height*alignedRowSize}function __colorChannelsInGlTextureFormat(format){var colorChannels={5:3,6:4,8:2,29502:3,29504:4,26917:2,26918:2,29846:3,29847:4};return colorChannels[format-6402]||1}function heapObjectForWebGLType(type){type-=5120;if(type==0)return GROWABLE_HEAP_I8();if(type==1)return GROWABLE_HEAP_U8();if(type==2)return GROWABLE_HEAP_I16();if(type==4)return GROWABLE_HEAP_I32();if(type==6)return GROWABLE_HEAP_F32();if(type==5||type==28922||type==28520||type==30779||type==30782)return GROWABLE_HEAP_U32();return GROWABLE_HEAP_U16()}function heapAccessShiftForWebGLHeap(heap){return 31-Math.clz32(heap.BYTES_PER_ELEMENT)}function emscriptenWebGLGetTexPixelData(type,format,width,height,pixels,internalFormat){var heap=heapObjectForWebGLType(type);var shift=heapAccessShiftForWebGLHeap(heap);var byteSize=1<>shift,pixels+bytes>>shift)}function _emscripten_glReadPixels(x,y,width,height,format,type,pixels){if(GL.currentContext.version>=2){if(GLctx.currentPixelPackBufferBinding){GLctx.readPixels(x,y,width,height,format,type,pixels)}else{var heap=heapObjectForWebGLType(type);GLctx.readPixels(x,y,width,height,format,type,heap,pixels>>heapAccessShiftForWebGLHeap(heap))}return}var pixelData=emscriptenWebGLGetTexPixelData(type,format,width,height,pixels,format);if(!pixelData){GL.recordError(1280);return}GLctx.readPixels(x,y,width,height,format,type,pixelData)}function _emscripten_glRenderbufferStorage(x0,x1,x2,x3){GLctx["renderbufferStorage"](x0,x1,x2,x3)}function _emscripten_glRenderbufferStorageMultisample(x0,x1,x2,x3,x4){GLctx["renderbufferStorageMultisample"](x0,x1,x2,x3,x4)}function _emscripten_glSamplerParameterf(sampler,pname,param){GLctx["samplerParameterf"](GL.samplers[sampler],pname,param)}function _emscripten_glSamplerParameteri(sampler,pname,param){GLctx["samplerParameteri"](GL.samplers[sampler],pname,param)}function _emscripten_glSamplerParameteriv(sampler,pname,params){var param=GROWABLE_HEAP_I32()[params>>2];GLctx["samplerParameteri"](GL.samplers[sampler],pname,param)}function _emscripten_glScissor(x0,x1,x2,x3){GLctx["scissor"](x0,x1,x2,x3)}function _emscripten_glShaderSource(shader,count,string,length){var source=GL.getSource(shader,count,string,length);GLctx.shaderSource(GL.shaders[shader],source)}function _emscripten_glStencilFunc(x0,x1,x2){GLctx["stencilFunc"](x0,x1,x2)}function _emscripten_glStencilFuncSeparate(x0,x1,x2,x3){GLctx["stencilFuncSeparate"](x0,x1,x2,x3)}function _emscripten_glStencilMask(x0){GLctx["stencilMask"](x0)}function _emscripten_glStencilMaskSeparate(x0,x1){GLctx["stencilMaskSeparate"](x0,x1)}function _emscripten_glStencilOp(x0,x1,x2){GLctx["stencilOp"](x0,x1,x2)}function _emscripten_glStencilOpSeparate(x0,x1,x2,x3){GLctx["stencilOpSeparate"](x0,x1,x2,x3)}function _emscripten_glTexImage2D(target,level,internalFormat,width,height,border,format,type,pixels){if(GL.currentContext.version>=2){if(GLctx.currentPixelUnpackBufferBinding){GLctx.texImage2D(target,level,internalFormat,width,height,border,format,type,pixels)}else if(pixels){var heap=heapObjectForWebGLType(type);GLctx.texImage2D(target,level,internalFormat,width,height,border,format,type,heap,pixels>>heapAccessShiftForWebGLHeap(heap))}else{GLctx.texImage2D(target,level,internalFormat,width,height,border,format,type,null)}return}GLctx.texImage2D(target,level,internalFormat,width,height,border,format,type,pixels?emscriptenWebGLGetTexPixelData(type,format,width,height,pixels,internalFormat):null)}function _emscripten_glTexParameterf(x0,x1,x2){GLctx["texParameterf"](x0,x1,x2)}function _emscripten_glTexParameterfv(target,pname,params){var param=GROWABLE_HEAP_F32()[params>>2];GLctx.texParameterf(target,pname,param)}function _emscripten_glTexParameteri(x0,x1,x2){GLctx["texParameteri"](x0,x1,x2)}function _emscripten_glTexParameteriv(target,pname,params){var param=GROWABLE_HEAP_I32()[params>>2];GLctx.texParameteri(target,pname,param)}function _emscripten_glTexStorage2D(x0,x1,x2,x3,x4){GLctx["texStorage2D"](x0,x1,x2,x3,x4)}function _emscripten_glTexSubImage2D(target,level,xoffset,yoffset,width,height,format,type,pixels){if(GL.currentContext.version>=2){if(GLctx.currentPixelUnpackBufferBinding){GLctx.texSubImage2D(target,level,xoffset,yoffset,width,height,format,type,pixels)}else if(pixels){var heap=heapObjectForWebGLType(type);GLctx.texSubImage2D(target,level,xoffset,yoffset,width,height,format,type,heap,pixels>>heapAccessShiftForWebGLHeap(heap))}else{GLctx.texSubImage2D(target,level,xoffset,yoffset,width,height,format,type,null)}return}var pixelData=null;if(pixels)pixelData=emscriptenWebGLGetTexPixelData(type,format,width,height,pixels,0);GLctx.texSubImage2D(target,level,xoffset,yoffset,width,height,format,type,pixelData)}function webglGetUniformLocation(location){var p=GLctx.currentProgram;if(p){var webglLoc=p.uniformLocsById[location];if(typeof webglLoc=="number"){p.uniformLocsById[location]=webglLoc=GLctx.getUniformLocation(p,p.uniformArrayNamesById[location]+(webglLoc>0?"["+webglLoc+"]":""))}return webglLoc}else{GL.recordError(1282)}}function _emscripten_glUniform1f(location,v0){GLctx.uniform1f(webglGetUniformLocation(location),v0)}var miniTempWebGLFloatBuffers=[];function _emscripten_glUniform1fv(location,count,value){if(GL.currentContext.version>=2){count&&GLctx.uniform1fv(webglGetUniformLocation(location),GROWABLE_HEAP_F32(),value>>2,count);return}if(count<=288){var view=miniTempWebGLFloatBuffers[count-1];for(var i=0;i>2]}}else{var view=GROWABLE_HEAP_F32().subarray(value>>2,value+count*4>>2)}GLctx.uniform1fv(webglGetUniformLocation(location),view)}function _emscripten_glUniform1i(location,v0){GLctx.uniform1i(webglGetUniformLocation(location),v0)}var __miniTempWebGLIntBuffers=[];function _emscripten_glUniform1iv(location,count,value){if(GL.currentContext.version>=2){count&&GLctx.uniform1iv(webglGetUniformLocation(location),GROWABLE_HEAP_I32(),value>>2,count);return}if(count<=288){var view=__miniTempWebGLIntBuffers[count-1];for(var i=0;i>2]}}else{var view=GROWABLE_HEAP_I32().subarray(value>>2,value+count*4>>2)}GLctx.uniform1iv(webglGetUniformLocation(location),view)}function _emscripten_glUniform2f(location,v0,v1){GLctx.uniform2f(webglGetUniformLocation(location),v0,v1)}function _emscripten_glUniform2fv(location,count,value){if(GL.currentContext.version>=2){count&&GLctx.uniform2fv(webglGetUniformLocation(location),GROWABLE_HEAP_F32(),value>>2,count*2);return}if(count<=144){var view=miniTempWebGLFloatBuffers[2*count-1];for(var i=0;i<2*count;i+=2){view[i]=GROWABLE_HEAP_F32()[value+4*i>>2];view[i+1]=GROWABLE_HEAP_F32()[value+(4*i+4)>>2]}}else{var view=GROWABLE_HEAP_F32().subarray(value>>2,value+count*8>>2)}GLctx.uniform2fv(webglGetUniformLocation(location),view)}function _emscripten_glUniform2i(location,v0,v1){GLctx.uniform2i(webglGetUniformLocation(location),v0,v1)}function _emscripten_glUniform2iv(location,count,value){if(GL.currentContext.version>=2){count&&GLctx.uniform2iv(webglGetUniformLocation(location),GROWABLE_HEAP_I32(),value>>2,count*2);return}if(count<=144){var view=__miniTempWebGLIntBuffers[2*count-1];for(var i=0;i<2*count;i+=2){view[i]=GROWABLE_HEAP_I32()[value+4*i>>2];view[i+1]=GROWABLE_HEAP_I32()[value+(4*i+4)>>2]}}else{var view=GROWABLE_HEAP_I32().subarray(value>>2,value+count*8>>2)}GLctx.uniform2iv(webglGetUniformLocation(location),view)}function _emscripten_glUniform3f(location,v0,v1,v2){GLctx.uniform3f(webglGetUniformLocation(location),v0,v1,v2)}function _emscripten_glUniform3fv(location,count,value){if(GL.currentContext.version>=2){count&&GLctx.uniform3fv(webglGetUniformLocation(location),GROWABLE_HEAP_F32(),value>>2,count*3);return}if(count<=96){var view=miniTempWebGLFloatBuffers[3*count-1];for(var i=0;i<3*count;i+=3){view[i]=GROWABLE_HEAP_F32()[value+4*i>>2];view[i+1]=GROWABLE_HEAP_F32()[value+(4*i+4)>>2];view[i+2]=GROWABLE_HEAP_F32()[value+(4*i+8)>>2]}}else{var view=GROWABLE_HEAP_F32().subarray(value>>2,value+count*12>>2)}GLctx.uniform3fv(webglGetUniformLocation(location),view)}function _emscripten_glUniform3i(location,v0,v1,v2){GLctx.uniform3i(webglGetUniformLocation(location),v0,v1,v2)}function _emscripten_glUniform3iv(location,count,value){if(GL.currentContext.version>=2){count&&GLctx.uniform3iv(webglGetUniformLocation(location),GROWABLE_HEAP_I32(),value>>2,count*3);return}if(count<=96){var view=__miniTempWebGLIntBuffers[3*count-1];for(var i=0;i<3*count;i+=3){view[i]=GROWABLE_HEAP_I32()[value+4*i>>2];view[i+1]=GROWABLE_HEAP_I32()[value+(4*i+4)>>2];view[i+2]=GROWABLE_HEAP_I32()[value+(4*i+8)>>2]}}else{var view=GROWABLE_HEAP_I32().subarray(value>>2,value+count*12>>2)}GLctx.uniform3iv(webglGetUniformLocation(location),view)}function _emscripten_glUniform4f(location,v0,v1,v2,v3){GLctx.uniform4f(webglGetUniformLocation(location),v0,v1,v2,v3)}function _emscripten_glUniform4fv(location,count,value){if(GL.currentContext.version>=2){count&&GLctx.uniform4fv(webglGetUniformLocation(location),GROWABLE_HEAP_F32(),value>>2,count*4);return}if(count<=72){var view=miniTempWebGLFloatBuffers[4*count-1];var heap=GROWABLE_HEAP_F32();value>>=2;for(var i=0;i<4*count;i+=4){var dst=value+i;view[i]=heap[dst];view[i+1]=heap[dst+1];view[i+2]=heap[dst+2];view[i+3]=heap[dst+3]}}else{var view=GROWABLE_HEAP_F32().subarray(value>>2,value+count*16>>2)}GLctx.uniform4fv(webglGetUniformLocation(location),view)}function _emscripten_glUniform4i(location,v0,v1,v2,v3){GLctx.uniform4i(webglGetUniformLocation(location),v0,v1,v2,v3)}function _emscripten_glUniform4iv(location,count,value){if(GL.currentContext.version>=2){count&&GLctx.uniform4iv(webglGetUniformLocation(location),GROWABLE_HEAP_I32(),value>>2,count*4);return}if(count<=72){var view=__miniTempWebGLIntBuffers[4*count-1];for(var i=0;i<4*count;i+=4){view[i]=GROWABLE_HEAP_I32()[value+4*i>>2];view[i+1]=GROWABLE_HEAP_I32()[value+(4*i+4)>>2];view[i+2]=GROWABLE_HEAP_I32()[value+(4*i+8)>>2];view[i+3]=GROWABLE_HEAP_I32()[value+(4*i+12)>>2]}}else{var view=GROWABLE_HEAP_I32().subarray(value>>2,value+count*16>>2)}GLctx.uniform4iv(webglGetUniformLocation(location),view)}function _emscripten_glUniformMatrix2fv(location,count,transpose,value){if(GL.currentContext.version>=2){count&&GLctx.uniformMatrix2fv(webglGetUniformLocation(location),!!transpose,GROWABLE_HEAP_F32(),value>>2,count*4);return}if(count<=72){var view=miniTempWebGLFloatBuffers[4*count-1];for(var i=0;i<4*count;i+=4){view[i]=GROWABLE_HEAP_F32()[value+4*i>>2];view[i+1]=GROWABLE_HEAP_F32()[value+(4*i+4)>>2];view[i+2]=GROWABLE_HEAP_F32()[value+(4*i+8)>>2];view[i+3]=GROWABLE_HEAP_F32()[value+(4*i+12)>>2]}}else{var view=GROWABLE_HEAP_F32().subarray(value>>2,value+count*16>>2)}GLctx.uniformMatrix2fv(webglGetUniformLocation(location),!!transpose,view)}function _emscripten_glUniformMatrix3fv(location,count,transpose,value){if(GL.currentContext.version>=2){count&&GLctx.uniformMatrix3fv(webglGetUniformLocation(location),!!transpose,GROWABLE_HEAP_F32(),value>>2,count*9);return}if(count<=32){var view=miniTempWebGLFloatBuffers[9*count-1];for(var i=0;i<9*count;i+=9){view[i]=GROWABLE_HEAP_F32()[value+4*i>>2];view[i+1]=GROWABLE_HEAP_F32()[value+(4*i+4)>>2];view[i+2]=GROWABLE_HEAP_F32()[value+(4*i+8)>>2];view[i+3]=GROWABLE_HEAP_F32()[value+(4*i+12)>>2];view[i+4]=GROWABLE_HEAP_F32()[value+(4*i+16)>>2];view[i+5]=GROWABLE_HEAP_F32()[value+(4*i+20)>>2];view[i+6]=GROWABLE_HEAP_F32()[value+(4*i+24)>>2];view[i+7]=GROWABLE_HEAP_F32()[value+(4*i+28)>>2];view[i+8]=GROWABLE_HEAP_F32()[value+(4*i+32)>>2]}}else{var view=GROWABLE_HEAP_F32().subarray(value>>2,value+count*36>>2)}GLctx.uniformMatrix3fv(webglGetUniformLocation(location),!!transpose,view)}function _emscripten_glUniformMatrix4fv(location,count,transpose,value){if(GL.currentContext.version>=2){count&&GLctx.uniformMatrix4fv(webglGetUniformLocation(location),!!transpose,GROWABLE_HEAP_F32(),value>>2,count*16);return}if(count<=18){var view=miniTempWebGLFloatBuffers[16*count-1];var heap=GROWABLE_HEAP_F32();value>>=2;for(var i=0;i<16*count;i+=16){var dst=value+i;view[i]=heap[dst];view[i+1]=heap[dst+1];view[i+2]=heap[dst+2];view[i+3]=heap[dst+3];view[i+4]=heap[dst+4];view[i+5]=heap[dst+5];view[i+6]=heap[dst+6];view[i+7]=heap[dst+7];view[i+8]=heap[dst+8];view[i+9]=heap[dst+9];view[i+10]=heap[dst+10];view[i+11]=heap[dst+11];view[i+12]=heap[dst+12];view[i+13]=heap[dst+13];view[i+14]=heap[dst+14];view[i+15]=heap[dst+15]}}else{var view=GROWABLE_HEAP_F32().subarray(value>>2,value+count*64>>2)}GLctx.uniformMatrix4fv(webglGetUniformLocation(location),!!transpose,view)}function _emscripten_glUseProgram(program){program=GL.programs[program];GLctx.useProgram(program);GLctx.currentProgram=program}function _emscripten_glVertexAttrib1f(x0,x1){GLctx["vertexAttrib1f"](x0,x1)}function _emscripten_glVertexAttrib2fv(index,v){GLctx.vertexAttrib2f(index,GROWABLE_HEAP_F32()[v>>2],GROWABLE_HEAP_F32()[v+4>>2])}function _emscripten_glVertexAttrib3fv(index,v){GLctx.vertexAttrib3f(index,GROWABLE_HEAP_F32()[v>>2],GROWABLE_HEAP_F32()[v+4>>2],GROWABLE_HEAP_F32()[v+8>>2])}function _emscripten_glVertexAttrib4fv(index,v){GLctx.vertexAttrib4f(index,GROWABLE_HEAP_F32()[v>>2],GROWABLE_HEAP_F32()[v+4>>2],GROWABLE_HEAP_F32()[v+8>>2],GROWABLE_HEAP_F32()[v+12>>2])}function _emscripten_glVertexAttribDivisor(index,divisor){GLctx["vertexAttribDivisor"](index,divisor)}function _emscripten_glVertexAttribIPointer(index,size,type,stride,ptr){GLctx["vertexAttribIPointer"](index,size,type,stride,ptr)}function _emscripten_glVertexAttribPointer(index,size,type,normalized,stride,ptr){GLctx.vertexAttribPointer(index,size,type,!!normalized,stride,ptr)}function _emscripten_glViewport(x0,x1,x2,x3){GLctx["viewport"](x0,x1,x2,x3)}function _emscripten_glWaitSync(sync,flags,timeout_low,timeout_high){var timeout=convertI32PairToI53(timeout_low,timeout_high);GLctx.waitSync(GL.syncs[sync],flags,timeout)}function _emscripten_proxy_to_main_thread_js(index,sync){var numCallArgs=arguments.length-2;var outerArgs=arguments;return withStackSave(()=>{var serializedNumCallArgs=numCallArgs;var args=stackAlloc(serializedNumCallArgs*8);var b=args>>3;for(var i=0;i>3;for(var i=0;i>>16);updateMemoryViews();return 1}catch(e){}}function _emscripten_resize_heap(requestedSize){var oldSize=GROWABLE_HEAP_U8().length;requestedSize=requestedSize>>>0;if(requestedSize<=oldSize){return false}var maxHeapSize=getHeapMax();if(requestedSize>maxHeapSize){return false}let alignUp=(x,multiple)=>x+(multiple-x%multiple)%multiple;for(var cutDown=1;cutDown<=4;cutDown*=2){var overGrownHeapSize=oldSize*(1+.2/cutDown);overGrownHeapSize=Math.min(overGrownHeapSize,requestedSize+100663296);var newSize=Math.min(maxHeapSize,alignUp(Math.max(requestedSize,overGrownHeapSize),65536));var replacement=emscripten_realloc_buffer(newSize);if(replacement){return true}}return false}function _emscripten_unwind_to_js_event_loop(){throw"unwind"}var __emscripten_webgl_power_preferences=["default","low-power","high-performance"];function _emscripten_webgl_do_create_context(target,attributes){var a=attributes>>2;var powerPreference=GROWABLE_HEAP_I32()[a+(24>>2)];var contextAttributes={"alpha":!!GROWABLE_HEAP_I32()[a+(0>>2)],"depth":!!GROWABLE_HEAP_I32()[a+(4>>2)],"stencil":!!GROWABLE_HEAP_I32()[a+(8>>2)],"antialias":!!GROWABLE_HEAP_I32()[a+(12>>2)],"premultipliedAlpha":!!GROWABLE_HEAP_I32()[a+(16>>2)],"preserveDrawingBuffer":!!GROWABLE_HEAP_I32()[a+(20>>2)],"powerPreference":__emscripten_webgl_power_preferences[powerPreference],"failIfMajorPerformanceCaveat":!!GROWABLE_HEAP_I32()[a+(28>>2)],majorVersion:GROWABLE_HEAP_I32()[a+(32>>2)],minorVersion:GROWABLE_HEAP_I32()[a+(36>>2)],enableExtensionsByDefault:GROWABLE_HEAP_I32()[a+(40>>2)],explicitSwapControl:GROWABLE_HEAP_I32()[a+(44>>2)],proxyContextToMainThread:GROWABLE_HEAP_I32()[a+(48>>2)],renderViaOffscreenBackBuffer:GROWABLE_HEAP_I32()[a+(52>>2)]};var canvas=findCanvasEventTarget(target);if(!canvas){return 0}if(canvas.offscreenCanvas)canvas=canvas.offscreenCanvas;if(contextAttributes.explicitSwapControl){var supportsOffscreenCanvas=canvas.transferControlToOffscreen||typeof OffscreenCanvas!="undefined"&&canvas instanceof OffscreenCanvas;if(!supportsOffscreenCanvas){return 0}if(canvas.transferControlToOffscreen){if(!canvas.controlTransferredOffscreen){GL.offscreenCanvases[canvas.id]={canvas:canvas.transferControlToOffscreen(),canvasSharedPtr:_malloc(12),id:canvas.id};canvas.controlTransferredOffscreen=true}else if(!GL.offscreenCanvases[canvas.id]){return 0}canvas=GL.offscreenCanvases[canvas.id]}}var contextHandle=GL.createContext(canvas,contextAttributes);return contextHandle}var _emscripten_webgl_create_context=_emscripten_webgl_do_create_context;function _emscripten_webgl_do_get_current_context(){return GL.currentContext?GL.currentContext.handle:0}var _emscripten_webgl_get_current_context=_emscripten_webgl_do_get_current_context;function _emscripten_webgl_init_context_attributes(attributes){var a=attributes>>2;for(var i=0;i<56>>2;++i){GROWABLE_HEAP_I32()[a+i]=0}GROWABLE_HEAP_I32()[a+(0>>2)]=GROWABLE_HEAP_I32()[a+(4>>2)]=GROWABLE_HEAP_I32()[a+(12>>2)]=GROWABLE_HEAP_I32()[a+(16>>2)]=GROWABLE_HEAP_I32()[a+(32>>2)]=GROWABLE_HEAP_I32()[a+(40>>2)]=1;if(ENVIRONMENT_IS_WORKER)GROWABLE_HEAP_I32()[attributes+48>>2]=1}function _emscripten_webgl_make_context_current(contextHandle){var success=GL.makeContextCurrent(contextHandle);return success?0:-5}var ENV={};function getExecutableName(){return thisProgram||"./this.program"}function getEnvStrings(){if(!getEnvStrings.strings){var lang=(typeof navigator=="object"&&navigator.languages&&navigator.languages[0]||"C").replace("-","_")+".UTF-8";var env={"USER":"web_user","LOGNAME":"web_user","PATH":"/","PWD":"/","HOME":"/home/web_user","LANG":lang,"_":getExecutableName()};for(var x in ENV){if(ENV[x]===undefined)delete env[x];else env[x]=ENV[x]}var strings=[];for(var x in env){strings.push(x+"="+env[x])}getEnvStrings.strings=strings}return getEnvStrings.strings}function writeAsciiToMemory(str,buffer,dontAddNull){for(var i=0;i>0]=str.charCodeAt(i)}if(!dontAddNull)GROWABLE_HEAP_I8()[buffer>>0]=0}function _environ_get(__environ,environ_buf){if(ENVIRONMENT_IS_PTHREAD)return _emscripten_proxy_to_main_thread_js(11,1,__environ,environ_buf);var bufSize=0;getEnvStrings().forEach(function(string,i){var ptr=environ_buf+bufSize;GROWABLE_HEAP_U32()[__environ+i*4>>2]=ptr;writeAsciiToMemory(string,ptr);bufSize+=string.length+1});return 0}function _environ_sizes_get(penviron_count,penviron_buf_size){if(ENVIRONMENT_IS_PTHREAD)return _emscripten_proxy_to_main_thread_js(12,1,penviron_count,penviron_buf_size);var strings=getEnvStrings();GROWABLE_HEAP_U32()[penviron_count>>2]=strings.length;var bufSize=0;strings.forEach(function(string){bufSize+=string.length+1});GROWABLE_HEAP_U32()[penviron_buf_size>>2]=bufSize;return 0}function _fd_close(fd){if(ENVIRONMENT_IS_PTHREAD)return _emscripten_proxy_to_main_thread_js(13,1,fd);return 52}function _fd_pread(fd,iov,iovcnt,offset_low,offset_high,pnum){if(ENVIRONMENT_IS_PTHREAD)return _emscripten_proxy_to_main_thread_js(14,1,fd,iov,iovcnt,offset_low,offset_high,pnum);return 52}function _fd_read(fd,iov,iovcnt,pnum){if(ENVIRONMENT_IS_PTHREAD)return _emscripten_proxy_to_main_thread_js(15,1,fd,iov,iovcnt,pnum);return 52}function _fd_seek(fd,offset_low,offset_high,whence,newOffset){if(ENVIRONMENT_IS_PTHREAD)return _emscripten_proxy_to_main_thread_js(16,1,fd,offset_low,offset_high,whence,newOffset);return 70}var printCharBuffers=[null,[],[]];function printChar(stream,curr){var buffer=printCharBuffers[stream];if(curr===0||curr===10){(stream===1?out:err)(UTF8ArrayToString(buffer,0));buffer.length=0}else{buffer.push(curr)}}function _fd_write(fd,iov,iovcnt,pnum){if(ENVIRONMENT_IS_PTHREAD)return _emscripten_proxy_to_main_thread_js(17,1,fd,iov,iovcnt,pnum);var num=0;for(var i=0;i>2];var len=GROWABLE_HEAP_U32()[iov+4>>2];iov+=8;for(var j=0;j>2]=num;return 0}function _glDeleteTextures(n,textures){for(var i=0;i>2];var texture=GL.textures[id];if(!texture)continue;GLctx.deleteTexture(texture);texture.name=0;GL.textures[id]=null}}function skwasm_support_setup(){const objectMap=new Map;skwasm_registerObject=function(id,object){objectMap.set(id,object)};skwasm_unregisterObject=function(id){objectMap.delete(id)};skwasm_getObject=function(id){return objectMap.get(id)};addEventListener("message",function(event){const transfers=event.data.skwasmObjectTransfers;if(!transfers){return}transfers.forEach(function(object,objectId){objectMap.set(objectId,object)})});skwasm_transferObjectToMain=function(objectId){postMessage({skwasmObjectTransfers:new Map([[objectId,objectMap[objectId]]])});objectMap.delete(objectId)};skwasm_transferObjectToThread=function(objectId,threadId){PThread.pthreads[threadId].postMessage({skwasmObjectTransfers:new Map([[objectId,objectMap.get(objectId)]])});objectMap.delete(objectId)};_skwasm_createGlTextureFromVideoFrame=function(videoFrameId,width,height){const videoFrame=skwasm_getObject(videoFrameId);const glCtx=GL.currentContext.GLctx;const newTexture=glCtx.createTexture();glCtx.bindTexture(glCtx.TEXTURE_2D,newTexture);glCtx.pixelStorei(glCtx.UNPACK_PREMULTIPLY_ALPHA_WEBGL,true);glCtx.texImage2D(glCtx.TEXTURE_2D,0,glCtx.RGBA,width,height,0,glCtx.RGBA,glCtx.UNSIGNED_BYTE,videoFrame);glCtx.pixelStorei(glCtx.UNPACK_PREMULTIPLY_ALPHA_WEBGL,false);glCtx.bindTexture(glCtx.TEXTURE_2D,null);const textureId=GL.getNewId(GL.textures);GL.textures[textureId]=newTexture;return textureId},_skwasm_disposeVideoFrame=function(videoFrameId){const videoFrame=skwasm_getObject(videoFrameId);videoFrame.close();skwasm_unregisterObject(videoFrameId)}}function skwasm_getObject(){}function _skwasm_createGlTextureFromVideoFrame(){}function skwasm_unregisterObject(){}function _skwasm_disposeVideoFrame(){}function __isLeapYear(year){return year%4===0&&(year%100!==0||year%400===0)}function __arraySum(array,index){var sum=0;for(var i=0;i<=index;sum+=array[i++]){}return sum}var __MONTH_DAYS_LEAP=[31,29,31,30,31,30,31,31,30,31,30,31];var __MONTH_DAYS_REGULAR=[31,28,31,30,31,30,31,31,30,31,30,31];function __addDays(date,days){var newDate=new Date(date.getTime());while(days>0){var leap=__isLeapYear(newDate.getFullYear());var currentMonth=newDate.getMonth();var daysInCurrentMonth=(leap?__MONTH_DAYS_LEAP:__MONTH_DAYS_REGULAR)[currentMonth];if(days>daysInCurrentMonth-newDate.getDate()){days-=daysInCurrentMonth-newDate.getDate()+1;newDate.setDate(1);if(currentMonth<11){newDate.setMonth(currentMonth+1)}else{newDate.setMonth(0);newDate.setFullYear(newDate.getFullYear()+1)}}else{newDate.setDate(newDate.getDate()+days);return newDate}}return newDate}function intArrayFromString(stringy,dontAddNull,length){var len=length>0?length:lengthBytesUTF8(stringy)+1;var u8array=new Array(len);var numBytesWritten=stringToUTF8Array(stringy,u8array,0,u8array.length);if(dontAddNull)u8array.length=numBytesWritten;return u8array}function writeArrayToMemory(array,buffer){GROWABLE_HEAP_I8().set(array,buffer)}function _strftime(s,maxsize,format,tm){var tm_zone=GROWABLE_HEAP_I32()[tm+40>>2];var date={tm_sec:GROWABLE_HEAP_I32()[tm>>2],tm_min:GROWABLE_HEAP_I32()[tm+4>>2],tm_hour:GROWABLE_HEAP_I32()[tm+8>>2],tm_mday:GROWABLE_HEAP_I32()[tm+12>>2],tm_mon:GROWABLE_HEAP_I32()[tm+16>>2],tm_year:GROWABLE_HEAP_I32()[tm+20>>2],tm_wday:GROWABLE_HEAP_I32()[tm+24>>2],tm_yday:GROWABLE_HEAP_I32()[tm+28>>2],tm_isdst:GROWABLE_HEAP_I32()[tm+32>>2],tm_gmtoff:GROWABLE_HEAP_I32()[tm+36>>2],tm_zone:tm_zone?UTF8ToString(tm_zone):""};var pattern=UTF8ToString(format);var EXPANSION_RULES_1={"%c":"%a %b %d %H:%M:%S %Y","%D":"%m/%d/%y","%F":"%Y-%m-%d","%h":"%b","%r":"%I:%M:%S %p","%R":"%H:%M","%T":"%H:%M:%S","%x":"%m/%d/%y","%X":"%H:%M:%S","%Ec":"%c","%EC":"%C","%Ex":"%m/%d/%y","%EX":"%H:%M:%S","%Ey":"%y","%EY":"%Y","%Od":"%d","%Oe":"%e","%OH":"%H","%OI":"%I","%Om":"%m","%OM":"%M","%OS":"%S","%Ou":"%u","%OU":"%U","%OV":"%V","%Ow":"%w","%OW":"%W","%Oy":"%y"};for(var rule in EXPANSION_RULES_1){pattern=pattern.replace(new RegExp(rule,"g"),EXPANSION_RULES_1[rule])}var WEEKDAYS=["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"];var MONTHS=["January","February","March","April","May","June","July","August","September","October","November","December"];function leadingSomething(value,digits,character){var str=typeof value=="number"?value.toString():value||"";while(str.length0?1:0}var compare;if((compare=sgn(date1.getFullYear()-date2.getFullYear()))===0){if((compare=sgn(date1.getMonth()-date2.getMonth()))===0){compare=sgn(date1.getDate()-date2.getDate())}}return compare}function getFirstWeekStartDate(janFourth){switch(janFourth.getDay()){case 0:return new Date(janFourth.getFullYear()-1,11,29);case 1:return janFourth;case 2:return new Date(janFourth.getFullYear(),0,3);case 3:return new Date(janFourth.getFullYear(),0,2);case 4:return new Date(janFourth.getFullYear(),0,1);case 5:return new Date(janFourth.getFullYear()-1,11,31);case 6:return new Date(janFourth.getFullYear()-1,11,30)}}function getWeekBasedYear(date){var thisDate=__addDays(new Date(date.tm_year+1900,0,1),date.tm_yday);var janFourthThisYear=new Date(thisDate.getFullYear(),0,4);var janFourthNextYear=new Date(thisDate.getFullYear()+1,0,4);var firstWeekStartThisYear=getFirstWeekStartDate(janFourthThisYear);var firstWeekStartNextYear=getFirstWeekStartDate(janFourthNextYear);if(compareByDay(firstWeekStartThisYear,thisDate)<=0){if(compareByDay(firstWeekStartNextYear,thisDate)<=0){return thisDate.getFullYear()+1}return thisDate.getFullYear()}return thisDate.getFullYear()-1}var EXPANSION_RULES_2={"%a":function(date){return WEEKDAYS[date.tm_wday].substring(0,3)},"%A":function(date){return WEEKDAYS[date.tm_wday]},"%b":function(date){return MONTHS[date.tm_mon].substring(0,3)},"%B":function(date){return MONTHS[date.tm_mon]},"%C":function(date){var year=date.tm_year+1900;return leadingNulls(year/100|0,2)},"%d":function(date){return leadingNulls(date.tm_mday,2)},"%e":function(date){return leadingSomething(date.tm_mday,2," ")},"%g":function(date){return getWeekBasedYear(date).toString().substring(2)},"%G":function(date){return getWeekBasedYear(date)},"%H":function(date){return leadingNulls(date.tm_hour,2)},"%I":function(date){var twelveHour=date.tm_hour;if(twelveHour==0)twelveHour=12;else if(twelveHour>12)twelveHour-=12;return leadingNulls(twelveHour,2)},"%j":function(date){return leadingNulls(date.tm_mday+__arraySum(__isLeapYear(date.tm_year+1900)?__MONTH_DAYS_LEAP:__MONTH_DAYS_REGULAR,date.tm_mon-1),3)},"%m":function(date){return leadingNulls(date.tm_mon+1,2)},"%M":function(date){return leadingNulls(date.tm_min,2)},"%n":function(){return"\n"},"%p":function(date){if(date.tm_hour>=0&&date.tm_hour<12){return"AM"}return"PM"},"%S":function(date){return leadingNulls(date.tm_sec,2)},"%t":function(){return"\t"},"%u":function(date){return date.tm_wday||7},"%U":function(date){var days=date.tm_yday+7-date.tm_wday;return leadingNulls(Math.floor(days/7),2)},"%V":function(date){var val=Math.floor((date.tm_yday+7-(date.tm_wday+6)%7)/7);if((date.tm_wday+371-date.tm_yday-2)%7<=2){val++}if(!val){val=52;var dec31=(date.tm_wday+7-date.tm_yday-1)%7;if(dec31==4||dec31==5&&__isLeapYear(date.tm_year%400-1)){val++}}else if(val==53){var jan1=(date.tm_wday+371-date.tm_yday)%7;if(jan1!=4&&(jan1!=3||!__isLeapYear(date.tm_year)))val=1}return leadingNulls(val,2)},"%w":function(date){return date.tm_wday},"%W":function(date){var days=date.tm_yday+7-(date.tm_wday+6)%7;return leadingNulls(Math.floor(days/7),2)},"%y":function(date){return(date.tm_year+1900).toString().substring(2)},"%Y":function(date){return date.tm_year+1900},"%z":function(date){var off=date.tm_gmtoff;var ahead=off>=0;off=Math.abs(off)/60;off=off/60*100+off%60;return(ahead?"+":"-")+String("0000"+off).slice(-4)},"%Z":function(date){return date.tm_zone},"%%":function(){return"%"}};pattern=pattern.replace(/%%/g,"\0\0");for(var rule in EXPANSION_RULES_2){if(pattern.includes(rule)){pattern=pattern.replace(new RegExp(rule,"g"),EXPANSION_RULES_2[rule](date))}}pattern=pattern.replace(/\0\0/g,"%");var bytes=intArrayFromString(pattern,false);if(bytes.length>maxsize){return 0}writeArrayToMemory(bytes,s);return bytes.length-1}function _strftime_l(s,maxsize,format,tm,loc){return _strftime(s,maxsize,format,tm)}function uleb128Encode(n,target){if(n<128){target.push(n)}else{target.push(n%128|128,n>>7)}}function sigToWasmTypes(sig){var typeNames={"i":"i32","j":"i32","f":"f32","d":"f64","p":"i32"};var type={parameters:[],results:sig[0]=="v"?[]:[typeNames[sig[0]]]};for(var i=1;i0){return}if(ENVIRONMENT_IS_PTHREAD){readyPromiseResolve(Module);initRuntime();startWorker(Module);return}preRun();if(runDependencies>0){return}function doRun(){if(calledRun)return;calledRun=true;Module["calledRun"]=true;if(ABORT)return;initRuntime();readyPromiseResolve(Module);if(Module["onRuntimeInitialized"])Module["onRuntimeInitialized"]();postRun()}if(Module["setStatus"]){Module["setStatus"]("Running...");setTimeout(function(){setTimeout(function(){Module["setStatus"]("")},1);doRun()},1)}else{doRun()}}if(Module["preInit"]){if(typeof Module["preInit"]=="function")Module["preInit"]=[Module["preInit"]];while(Module["preInit"].length>0){Module["preInit"].pop()()}}run(); - - - return skwasm.ready -} - -); -})(); -if (typeof exports === 'object' && typeof module === 'object') - module.exports = skwasm; -else if (typeof define === 'function' && define['amd']) - define([], function() { return skwasm; }); -else if (typeof exports === 'object') - exports["skwasm"] = skwasm; diff --git a/classic/frontend/build/web/canvaskit/skwasm.wasm b/classic/frontend/build/web/canvaskit/skwasm.wasm deleted file mode 100755 index e049c81f7c..0000000000 Binary files a/classic/frontend/build/web/canvaskit/skwasm.wasm and /dev/null differ diff --git a/classic/frontend/build/web/canvaskit/skwasm.worker.js b/classic/frontend/build/web/canvaskit/skwasm.worker.js deleted file mode 100644 index fcde1bb3df..0000000000 --- a/classic/frontend/build/web/canvaskit/skwasm.worker.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";var Module={};var ENVIRONMENT_IS_NODE=typeof process=="object"&&typeof process.versions=="object"&&typeof process.versions.node=="string";if(ENVIRONMENT_IS_NODE){var nodeWorkerThreads=require("worker_threads");var parentPort=nodeWorkerThreads.parentPort;parentPort.on("message",data=>onmessage({data:data}));var fs=require("fs");Object.assign(global,{self:global,require:require,Module:Module,location:{href:__filename},Worker:nodeWorkerThreads.Worker,importScripts:function(f){(0,eval)(fs.readFileSync(f,"utf8")+"//# sourceURL="+f)},postMessage:function(msg){parentPort.postMessage(msg)},performance:global.performance||{now:function(){return Date.now()}}})}var initializedJS=false;var pendingNotifiedProxyingQueues=[];function threadPrintErr(){var text=Array.prototype.slice.call(arguments).join(" ");if(ENVIRONMENT_IS_NODE){fs.writeSync(2,text+"\n");return}console.error(text)}function threadAlert(){var text=Array.prototype.slice.call(arguments).join(" ");postMessage({cmd:"alert",text:text,threadId:Module["_pthread_self"]()})}var err=threadPrintErr;self.alert=threadAlert;Module["instantiateWasm"]=(info,receiveInstance)=>{var module=Module["wasmModule"];Module["wasmModule"]=null;var instance=new WebAssembly.Instance(module,info);return receiveInstance(instance)};self.onunhandledrejection=e=>{throw e.reason??e};function handleMessage(e){try{if(e.data.cmd==="load"){let messageQueue=[];self.onmessage=e=>messageQueue.push(e);self.startWorker=instance=>{Module=instance;postMessage({"cmd":"loaded"});for(let msg of messageQueue){handleMessage(msg)}self.onmessage=handleMessage};Module["wasmModule"]=e.data.wasmModule;for(const handler of e.data.handlers){Module[handler]=function(){postMessage({cmd:"callHandler",handler:handler,args:[...arguments]})}}Module["wasmMemory"]=e.data.wasmMemory;Module["buffer"]=Module["wasmMemory"].buffer;Module["ENVIRONMENT_IS_PTHREAD"]=true;if(typeof e.data.urlOrBlob=="string"){importScripts(e.data.urlOrBlob)}else{var objectUrl=URL.createObjectURL(e.data.urlOrBlob);importScripts(objectUrl);URL.revokeObjectURL(objectUrl)}skwasm(Module)}else if(e.data.cmd==="run"){Module["__emscripten_thread_init"](e.data.pthread_ptr,0,0,1);Module["establishStackSpace"]();Module["PThread"].receiveObjectTransfer(e.data);Module["PThread"].threadInitTLS();if(!initializedJS){pendingNotifiedProxyingQueues.forEach(queue=>{Module["executeNotifiedProxyingQueue"](queue)});pendingNotifiedProxyingQueues=[];initializedJS=true}try{Module["invokeEntryPoint"](e.data.start_routine,e.data.arg)}catch(ex){if(ex!="unwind"){throw ex}}}else if(e.data.cmd==="cancel"){if(Module["_pthread_self"]()){Module["__emscripten_thread_exit"](-1)}}else if(e.data.target==="setimmediate"){}else if(e.data.cmd==="processProxyingQueue"){if(initializedJS){Module["executeNotifiedProxyingQueue"](e.data.queue)}else{pendingNotifiedProxyingQueues.push(e.data.queue)}}else if(e.data.cmd){err("worker.js received unknown command "+e.data.cmd);err(e.data)}}catch(ex){if(Module["__emscripten_thread_crashed"]){Module["__emscripten_thread_crashed"]()}throw ex}}self.onmessage=handleMessage; diff --git a/classic/frontend/build/web/favicon.png b/classic/frontend/build/web/favicon.png deleted file mode 100644 index 8aaa46ac1a..0000000000 Binary files a/classic/frontend/build/web/favicon.png and /dev/null differ diff --git a/classic/frontend/build/web/flutter.js b/classic/frontend/build/web/flutter.js deleted file mode 100644 index d3efa7fd80..0000000000 --- a/classic/frontend/build/web/flutter.js +++ /dev/null @@ -1,383 +0,0 @@ -// Copyright 2014 The Flutter Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -if (!_flutter) { - var _flutter = {}; -} -_flutter.loader = null; - -(function () { - "use strict"; - - const baseUri = ensureTrailingSlash(getBaseURI()); - - function getBaseURI() { - const base = document.querySelector("base"); - return (base && base.getAttribute("href")) || ""; - } - - function ensureTrailingSlash(uri) { - if (uri == "") { - return uri; - } - return uri.endsWith("/") ? uri : `${uri}/`; - } - - /** - * Wraps `promise` in a timeout of the given `duration` in ms. - * - * Resolves/rejects with whatever the original `promises` does, or rejects - * if `promise` takes longer to complete than `duration`. In that case, - * `debugName` is used to compose a legible error message. - * - * If `duration` is < 0, the original `promise` is returned unchanged. - * @param {Promise} promise - * @param {number} duration - * @param {string} debugName - * @returns {Promise} a wrapped promise. - */ - async function timeout(promise, duration, debugName) { - if (duration < 0) { - return promise; - } - let timeoutId; - const _clock = new Promise((_, reject) => { - timeoutId = setTimeout(() => { - reject( - new Error( - `${debugName} took more than ${duration}ms to resolve. Moving on.`, - { - cause: timeout, - } - ) - ); - }, duration); - }); - - return Promise.race([promise, _clock]).finally(() => { - clearTimeout(timeoutId); - }); - } - - /** - * Handles the creation of a TrustedTypes `policy` that validates URLs based - * on an (optional) incoming array of RegExes. - */ - class FlutterTrustedTypesPolicy { - /** - * Constructs the policy. - * @param {[RegExp]} validPatterns the patterns to test URLs - * @param {String} policyName the policy name (optional) - */ - constructor(validPatterns, policyName = "flutter-js") { - const patterns = validPatterns || [ - /\.js$/, - ]; - if (window.trustedTypes) { - this.policy = trustedTypes.createPolicy(policyName, { - createScriptURL: function(url) { - const parsed = new URL(url, window.location); - const file = parsed.pathname.split("/").pop(); - const matches = patterns.some((pattern) => pattern.test(file)); - if (matches) { - return parsed.toString(); - } - console.error( - "URL rejected by TrustedTypes policy", - policyName, ":", url, "(download prevented)"); - } - }); - } - } - } - - /** - * Handles loading/reloading Flutter's service worker, if configured. - * - * @see: https://developers.google.com/web/fundamentals/primers/service-workers - */ - class FlutterServiceWorkerLoader { - /** - * Injects a TrustedTypesPolicy (or undefined if the feature is not supported). - * @param {TrustedTypesPolicy | undefined} policy - */ - setTrustedTypesPolicy(policy) { - this._ttPolicy = policy; - } - - /** - * Returns a Promise that resolves when the latest Flutter service worker, - * configured by `settings` has been loaded and activated. - * - * Otherwise, the promise is rejected with an error message. - * @param {*} settings Service worker settings - * @returns {Promise} that resolves when the latest serviceWorker is ready. - */ - loadServiceWorker(settings) { - if (settings == null) { - // In the future, settings = null -> uninstall service worker? - console.debug("Null serviceWorker configuration. Skipping."); - return Promise.resolve(); - } - if (!("serviceWorker" in navigator)) { - let errorMessage = "Service Worker API unavailable."; - if (!window.isSecureContext) { - errorMessage += "\nThe current context is NOT secure." - errorMessage += "\nRead more: https://developer.mozilla.org/en-US/docs/Web/Security/Secure_Contexts"; - } - return Promise.reject( - new Error(errorMessage) - ); - } - const { - serviceWorkerVersion, - serviceWorkerUrl = `${baseUri}flutter_service_worker.js?v=${serviceWorkerVersion}`, - timeoutMillis = 4000, - } = settings; - - // Apply the TrustedTypes policy, if present. - let url = serviceWorkerUrl; - if (this._ttPolicy != null) { - url = this._ttPolicy.createScriptURL(url); - } - - const serviceWorkerActivation = navigator.serviceWorker - .register(url) - .then(this._getNewServiceWorker) - .then(this._waitForServiceWorkerActivation); - - // Timeout race promise - return timeout( - serviceWorkerActivation, - timeoutMillis, - "prepareServiceWorker" - ); - } - - /** - * Returns the latest service worker for the given `serviceWorkerRegistrationPromise`. - * - * This might return the current service worker, if there's no new service worker - * awaiting to be installed/updated. - * - * @param {Promise} serviceWorkerRegistrationPromise - * @returns {Promise} - */ - async _getNewServiceWorker(serviceWorkerRegistrationPromise) { - const reg = await serviceWorkerRegistrationPromise; - - if (!reg.active && (reg.installing || reg.waiting)) { - // No active web worker and we have installed or are installing - // one for the first time. Simply wait for it to activate. - console.debug("Installing/Activating first service worker."); - return reg.installing || reg.waiting; - } else if (!reg.active.scriptURL.endsWith(serviceWorkerVersion)) { - // When the app updates the serviceWorkerVersion changes, so we - // need to ask the service worker to update. - return reg.update().then((newReg) => { - console.debug("Updating service worker."); - return newReg.installing || newReg.waiting || newReg.active; - }); - } else { - console.debug("Loading from existing service worker."); - return reg.active; - } - } - - /** - * Returns a Promise that resolves when the `latestServiceWorker` changes its - * state to "activated". - * - * @param {Promise} latestServiceWorkerPromise - * @returns {Promise} - */ - async _waitForServiceWorkerActivation(latestServiceWorkerPromise) { - const serviceWorker = await latestServiceWorkerPromise; - - if (!serviceWorker || serviceWorker.state == "activated") { - if (!serviceWorker) { - return Promise.reject( - new Error("Cannot activate a null service worker!") - ); - } else { - console.debug("Service worker already active."); - return Promise.resolve(); - } - } - return new Promise((resolve, _) => { - serviceWorker.addEventListener("statechange", () => { - if (serviceWorker.state == "activated") { - console.debug("Activated new service worker."); - resolve(); - } - }); - }); - } - } - - /** - * Handles injecting the main Flutter web entrypoint (main.dart.js), and notifying - * the user when Flutter is ready, through `didCreateEngineInitializer`. - * - * @see https://docs.flutter.dev/development/platform-integration/web/initialization - */ - class FlutterEntrypointLoader { - /** - * Creates a FlutterEntrypointLoader. - */ - constructor() { - // Watchdog to prevent injecting the main entrypoint multiple times. - this._scriptLoaded = false; - } - - /** - * Injects a TrustedTypesPolicy (or undefined if the feature is not supported). - * @param {TrustedTypesPolicy | undefined} policy - */ - setTrustedTypesPolicy(policy) { - this._ttPolicy = policy; - } - - /** - * Loads flutter main entrypoint, specified by `entrypointUrl`, and calls a - * user-specified `onEntrypointLoaded` callback with an EngineInitializer - * object when it's done. - * - * @param {*} options - * @returns {Promise | undefined} that will eventually resolve with an - * EngineInitializer, or will be rejected with the error caused by the loader. - * Returns undefined when an `onEntrypointLoaded` callback is supplied in `options`. - */ - async loadEntrypoint(options) { - const { entrypointUrl = `${baseUri}main.dart.js`, onEntrypointLoaded } = - options || {}; - - return this._loadEntrypoint(entrypointUrl, onEntrypointLoaded); - } - - /** - * Resolves the promise created by loadEntrypoint, and calls the `onEntrypointLoaded` - * function supplied by the user (if needed). - * - * Called by Flutter through `_flutter.loader.didCreateEngineInitializer` method, - * which is bound to the correct instance of the FlutterEntrypointLoader by - * the FlutterLoader object. - * - * @param {Function} engineInitializer @see https://github.com/flutter/engine/blob/main/lib/web_ui/lib/src/engine/js_interop/js_loader.dart#L42 - */ - didCreateEngineInitializer(engineInitializer) { - if (typeof this._didCreateEngineInitializerResolve === "function") { - this._didCreateEngineInitializerResolve(engineInitializer); - // Remove the resolver after the first time, so Flutter Web can hot restart. - this._didCreateEngineInitializerResolve = null; - // Make the engine revert to "auto" initialization on hot restart. - delete _flutter.loader.didCreateEngineInitializer; - } - if (typeof this._onEntrypointLoaded === "function") { - this._onEntrypointLoaded(engineInitializer); - } - } - - /** - * Injects a script tag into the DOM, and configures this loader to be able to - * handle the "entrypoint loaded" notifications received from Flutter web. - * - * @param {string} entrypointUrl the URL of the script that will initialize - * Flutter. - * @param {Function} onEntrypointLoaded a callback that will be called when - * Flutter web notifies this object that the entrypoint is - * loaded. - * @returns {Promise | undefined} a Promise that resolves when the entrypoint - * is loaded, or undefined if `onEntrypointLoaded` - * is a function. - */ - _loadEntrypoint(entrypointUrl, onEntrypointLoaded) { - const useCallback = typeof onEntrypointLoaded === "function"; - - if (!this._scriptLoaded) { - this._scriptLoaded = true; - const scriptTag = this._createScriptTag(entrypointUrl); - if (useCallback) { - // Just inject the script tag, and return nothing; Flutter will call - // `didCreateEngineInitializer` when it's done. - console.debug("Injecting - - - - - - - - - diff --git a/classic/frontend/build/web/main.dart.js b/classic/frontend/build/web/main.dart.js deleted file mode 100644 index 24968701df..0000000000 --- a/classic/frontend/build/web/main.dart.js +++ /dev/null @@ -1,105062 +0,0 @@ -(function dartProgram(){function copyProperties(a,b){var s=Object.keys(a) -for(var r=0;r=0)return true -if(typeof version=="function"&&version.length==0){var q=version() -if(/^\d+\.\d+\.\d+\.\d+$/.test(q))return true}}catch(p){}return false}() -function inherit(a,b){a.prototype.constructor=a -a.prototype["$i"+a.name]=a -if(b!=null){if(z){Object.setPrototypeOf(a.prototype,b.prototype) -return}var s=Object.create(b.prototype) -copyProperties(a.prototype,s) -a.prototype=s}}function inheritMany(a,b){for(var s=0;s2)return B.aI -return B.bJ}else if(B.c.t(s.toLowerCase(),"iphone")||B.c.t(s.toLowerCase(),"ipad")||B.c.t(s.toLowerCase(),"ipod"))return B.aI -else if(B.c.t(r,"Android"))return B.hb -else if(B.c.bJ(s,"Linux"))return B.k4 -else if(B.c.bJ(s,"Win"))return B.us -else return B.MD}, -b6f(){var s=$.e5() -return B.kv.t(0,s)}, -b6g(){var s=$.e5() -return s===B.aI&&B.c.t(self.window.navigator.userAgent,"OS 15_")}, -yH(){var s,r=A.Kc(1,1) -if(A.lV(r,"webgl2",null)!=null){s=$.e5() -if(s===B.aI)return 1 -return 2}if(A.lV(r,"webgl",null)!=null)return 1 -return-1}, -aNM(){return self.Intl.v8BreakIterator!=null&&self.Intl.Segmenter!=null}, -al(){return $.bU.bR()}, -b79(a){return a===B.fB?$.bU.bR().FilterMode.Nearest:$.bU.bR().FilterMode.Linear}, -b01(a){var s=a.encodeToBytes() -return s==null?null:s}, -b03(a,b){return a.setColorInt(b)}, -aP2(a){var s,r,q,p=new Float32Array(16) -for(s=0;s<4;++s)for(r=s*4,q=0;q<4;++q)p[q*4+s]=a[r+q] -return p}, -aFS(a){var s,r,q,p=new Float32Array(9) -for(s=a.length,r=0;r<9;++r){q=B.nS[r] -if(q>>16&255)/255 -s[1]=(r>>>8&255)/255 -s[2]=(r&255)/255 -s[3]=(r>>>24&255)/255 -return s}, -fV(a){var s=new Float32Array(4) -s[0]=a.a -s[1]=a.b -s[2]=a.c -s[3]=a.d -return s}, -b5N(a){return new A.y(a[0],a[1],a[2],a[3])}, -Kp(a){var s=new Float32Array(12) -s[0]=a.a -s[1]=a.b -s[2]=a.c -s[3]=a.d -s[4]=a.e -s[5]=a.f -s[6]=a.r -s[7]=a.w -s[8]=a.x -s[9]=a.y -s[10]=a.z -s[11]=a.Q -return s}, -b77(a){var s,r=a.length,q=new Uint32Array(r) -for(s=0;s"))}, -b4P(a,b){return b+a}, -a3g(){var s=0,r=A.I(t.e),q,p -var $async$a3g=A.D(function(a,b){if(a===1)return A.F(b,r) -while(true)switch(s){case 0:s=3 -return A.K(A.aA3(A.b2T()),$async$a3g) -case 3:s=4 -return A.K(A.i3(self.window.CanvasKitInit({locateFile:A.bd(A.b3j())}),t.e),$async$a3g) -case 4:p=b -if(A.aKJ(p.ParagraphBuilder)&&!A.aNM())throw A.d(A.ck("The CanvasKit variant you are using only works on Chromium browsers. Please use a different CanvasKit variant, or use a Chromium browser.")) -q=p -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$a3g,r)}, -aA3(a){var s=0,r=A.I(t.H),q,p,o,n -var $async$aA3=A.D(function(b,c){if(b===1)return A.F(c,r) -while(true)switch(s){case 0:p=a.$ti,o=new A.bz(a,a.gp(a),p.i("bz")),p=p.i("am.E") -case 3:if(!o.u()){s=4 -break}n=o.d -s=5 -return A.K(A.b3e(n==null?p.a(n):n),$async$aA3) -case 5:if(c){s=1 -break}s=3 -break -case 4:throw A.d(A.ck("Failed to download any of the following CanvasKit URLs: "+a.k(0))) -case 1:return A.G(q,r)}}) -return A.H($async$aA3,r)}, -b3e(a){var s,r,q,p,o,n=$.cP -n=(n==null?$.cP=A.h3(self.window.flutterConfiguration):n).b -n=n==null?null:A.aDq(n) -s=A.bo(self.document,"script") -if(n!=null)s.nonce=n -s.src=A.b5m(a) -n=new A.ae($.ai,t.tq) -r=new A.b3(n,t.VY) -q=A.bg("loadCallback") -p=A.bg("errorCallback") -o=t.e -q.scM(o.a(A.bd(new A.aA2(s,r)))) -p.scM(o.a(A.bd(new A.aA1(s,r)))) -A.cI(s,"load",q.aI(),null) -A.cI(s,"error",p.aI(),null) -self.document.head.appendChild(s) -return n}, -afh(a){var s="ColorFilter",r=new A.Pa(a),q=new A.fn(s,t.gA) -q.jp(r,a.Gy(),s,t.e) -r.b!==$&&A.cQ() -r.b=q -return r}, -b5l(a,b){var s -a.goR(a) -s=$.bU.bR().ColorFilter.MakeBlend(A.aF9($.aCd(),a),$.aGt()[b.a]) -if(s==null)throw A.d(A.bF("Invalid parameters for blend mode ColorFilter",null)) -return s}, -aWr(a){return new A.zQ(a)}, -b5e(a){switch(0){case 0:return new A.zO(a.a,a.b)}}, -aJx(a){var s=null -return new A.jD(B.LD,s,s,s,a,s)}, -aXT(){var s=t.qN -return new A.N4(A.b([],s),A.b([],s))}, -b5x(a,b){var s,r,q,p,o -if(a.length===0||b.length===0)return null -s=new A.aAS(a,b) -r=new A.aAR(a,b) -q=B.b.d9(a,B.b.gM(b)) -p=B.b.oG(a,B.b.gL(b)) -o=q!==-1 -if(o&&p!==-1)if(q<=a.length-p)return s.$1(q) -else return r.$1(p) -else if(o)return s.$1(q) -else if(p!==-1)return r.$1(p) -else return null}, -aKp(a,b,c){var s=new globalThis.window.flutterCanvasKit.Font(c),r=A.b([0],t.t) -s.getGlyphBounds(r,null,null) -return new A.rE(b,a,c)}, -b6N(a,b,c){var s="encoded image bytes" -if($.aGA()&&b==null&&c==null)return A.LL(a,s) -else return A.aHz(a,s,c,b)}, -o_(a){return new A.Oq(a)}, -aBV(a,b){var s=0,r=A.I(t.hP),q,p -var $async$aBV=A.D(function(c,d){if(c===1)return A.F(d,r) -while(true)switch(s){case 0:s=3 -return A.K(A.a3i(a,b),$async$aBV) -case 3:p=d -if($.aGA()){q=A.LL(p,a) -s=1 -break}else{q=A.aHz(p,a,null,null) -s=1 -break}case 1:return A.G(q,r)}}) -return A.H($async$aBV,r)}, -a3i(a,b){return A.b5B(a,b)}, -b5B(a,b){var s=0,r=A.I(t.H3),q,p=2,o,n,m,l,k,j -var $async$a3i=A.D(function(c,d){if(c===1){o=d -s=p}while(true)switch(s){case 0:p=4 -s=7 -return A.K(A.tK(a),$async$a3i) -case 7:n=d -m=n.gan9() -if(!n.gC4()){l=A.o_(u.W+a+"\nServer response code: "+J.aVe(n)) -throw A.d(l)}s=m!=null?8:10 -break -case 8:l=A.aBP(n.grv(),m,b) -q=l -s=1 -break -s=9 -break -case 10:s=11 -return A.K(A.ad7(n),$async$a3i) -case 11:l=d -q=l -s=1 -break -case 9:p=2 -s=6 -break -case 4:p=3 -j=o -if(A.a6(j) instanceof A.B8)throw A.d(A.o_(u.W+a+"\nTrying to load an image from another domain? Find answers at:\nhttps://flutter.dev/docs/development/platform-integration/web-images")) -else throw j -s=6 -break -case 3:s=2 -break -case 6:case 1:return A.G(q,r) -case 2:return A.F(o,r)}}) -return A.H($async$a3i,r)}, -aBP(a,b,c){return A.b6H(a,b,c)}, -b6H(a,b,c){var s=0,r=A.I(t.H3),q,p,o -var $async$aBP=A.D(function(d,e){if(d===1)return A.F(e,r) -while(true)switch(s){case 0:p={} -o=t.H3.a(new globalThis.Uint8Array(b)) -p.a=p.b=0 -s=3 -return A.K(a.wW(0,new A.aBQ(p,c,b,o),t.e),$async$aBP) -case 3:q=o -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$aBP,r)}, -a5Y(a,b){var s=new A.ub($,b),r=A.aWF(a,s,"SkImage",t.XY,t.e) -s.b!==$&&A.cQ() -s.b=r -s.R3() -return s}, -aHz(a,b,c,d){var s,r,q,p,o,n,m,l,k=new A.LK(b,a,d,c),j=$.bU.bR().MakeAnimatedImageFromEncoded(a) -if(j==null)A.U(A.o_("Failed to decode image data.\nImage source: "+b)) -s=d==null -if(!s||c!=null)if(j.getFrameCount()>1)$.eh().$1("targetWidth and targetHeight for multi-frame images not supported") -else{r=j.makeImageAtCurrentFrame() -if(!s&&d<=0)d=null -if(c!=null&&c<=0)c=null -s=d==null -if(s&&c!=null)d=B.d.bE(c*(r.width()/r.height())) -else if(c==null&&!s)c=B.h.jo(d,r.width()/r.height()) -q=new A.ny() -p=q.uV(B.ey) -o=A.LR() -s=A.a5Y(r,null) -n=r.width() -m=r.height() -d.toString -c.toString -p.lx(s,new A.y(0,0,0+n,0+m),new A.y(0,0,d,c),o) -m=o.b -m===$&&A.c() -m.n() -m=q.vB().auq(d,c).b -m===$&&A.c() -m=m.a -m===$&&A.c() -m=m.a -m.toString -l=A.b01(m) -if(l==null)A.U(A.o_("Failed to re-size image")) -j=$.bU.bR().MakeAnimatedImageFromEncoded(l) -if(j==null)A.U(A.o_("Failed to decode re-sized image data.\nImage source: "+b))}k.d=B.d.ac(j.getFrameCount()) -k.e=B.d.ac(j.getRepetitionCount()) -s=new A.fn("Codec",t.gA) -s.jp(k,j,"Codec",t.e) -k.a!==$&&A.cQ() -k.a=s -return k}, -aWq(a,b,c){return new A.zP(a,b,c,new A.yZ(new A.a5i()))}, -LL(a,b){var s=0,r=A.I(t.Lh),q,p,o -var $async$LL=A.D(function(c,d){if(c===1)return A.F(d,r) -while(true)switch(s){case 0:o=A.b5t(a) -if(o==null)throw A.d(A.o_("Failed to detect image file format using the file header.\nFile header was "+(!B.P.ga8(a)?"["+A.b4O(B.P.bX(a,0,Math.min(10,a.length)))+"]":"empty")+".\nImage source: "+b)) -p=A.aWq(o,a,b) -s=3 -return A.K(p.pO(),$async$LL) -case 3:q=p -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$LL,r)}, -aWF(a,b,c,d,e){var s=new A.Mb(A.aE(d),d.i("@<0>").a5(e).i("Mb<1,2>")),r=new A.fn(c,e.i("fn<0>")) -r.jp(s,a,c,e) -s.a!==$&&A.cQ() -s.a=r -return s}, -LR(){var s,r=new globalThis.window.flutterCanvasKit.Paint(),q=new A.uc(r,B.cZ,B.aX,B.cu,B.hJ,B.fB) -r.setAntiAlias(!0) -r.setColorInt(4278190080) -s=new A.fn("Paint",t.gA) -s.jp(q,r,"Paint",t.e) -q.b!==$&&A.cQ() -q.b=s -return q}, -aCz(a,b){var s=new A.zR(b),r=new A.fn("Path",t.gA) -r.jp(s,a,"Path",t.e) -s.a!==$&&A.cQ() -s.a=r -return s}, -le(){var s,r,q,p=$.aKY -if(p==null){p=$.cP -p=(p==null?$.cP=A.h3(self.window.flutterConfiguration):p).b -if(p==null)p=null -else{p=p.canvasKitMaximumSurfaces -if(p==null)p=null -p=p==null?null:B.d.ac(p)}if(p==null)p=8 -s=A.bo(self.document,"flt-canvas-container") -r=t.y1 -q=A.b([],r) -r=A.b([],r) -r=$.aKY=new A.T2(new A.ld(s),Math.max(p,1),q,r) -p=r}return p}, -aWs(a,b){var s,r,q,p=null -t.S3.a(a) -s={} -r=A.aF2(a.a,a.b) -s.fontFamilies=r -r=a.c -if(r!=null)s.fontSize=r -r=a.d -if(r!=null)s.heightMultiplier=r -q=a.x -q=b==null?p:b.c -switch(q){case null:case void 0:break -case B.zx:A.aKL(s,!0) -break -case B.kN:A.aKL(s,!1) -break}r=a.f -if(r!=null||a.r!=null)s.fontStyle=A.aFR(r,a.r) -r=a.w -if(r!=null)s.forceStrutHeight=r -s.strutEnabled=!0 -return s}, -aCB(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1){return new A.zT(b,c,d,e,f,m,k,a0,g,h,j,q,a1,o,p,r,a,n,s,i,l)}, -aFR(a,b){var s={} -if(a!=null)s.weight=$.aRf()[a.a] -if(b!=null)s.slant=$.aRe()[b.a] -return s}, -aF2(a,b){var s=A.b([],t.s) -if(a!=null)s.push(a) -if(b!=null&&!B.b.JP(b,new A.aA8(a)))B.b.K(s,b) -B.b.K(s,$.ad().gvU().gK5().at) -return s}, -b_L(a,b){var s=b.length -if(s<=B.y6.b)return a.c -if(s<=B.y7.b)return a.b -if(s<=B.y8.b)return a.a -return null}, -aOb(a,b){var s,r=new A.MV(t.e.a($.aQK().h(0,b).segment(a)[self.Symbol.iterator]()),t.yN),q=A.b([],t.t) -for(;r.u();){s=r.b -s===$&&A.c() -q.push(B.d.ac(s.index))}q.push(a.length) -return new Uint32Array(A.jg(q))}, -b5K(a){var s,r,q,p,o=A.aNL(a,a,$.aRx()),n=o.length,m=new Uint32Array((n+1)*2) -m[0]=0 -m[1]=0 -for(s=0;s>>16&255)/255 -s[1]=(a.gl(a)>>>8&255)/255 -s[2]=(a.gl(a)&255)/255 -s[3]=(a.gl(a)>>>24&255)/255 -return s}, -aHG(){return self.window.navigator.clipboard!=null?new A.a6c():new A.a9h()}, -aJS(){var s=$.cr() -return s===B.bz||self.window.navigator.clipboard==null?new A.a9i():new A.a6d()}, -aNS(){var s=$.cP -return s==null?$.cP=A.h3(self.window.flutterConfiguration):s}, -h3(a){var s=new A.aa7() -if(a!=null){s.a=!0 -s.b=a}return s}, -aDq(a){var s=a.nonce -return s==null?null:s}, -aIl(a){var s=a.innerHeight -return s==null?null:s}, -aIm(a,b){return a.matchMedia(b)}, -aCX(a,b){return a.getComputedStyle(b)}, -aXs(a){return new A.a7B(a)}, -aXx(a){return a.userAgent}, -aXw(a){var s=a.languages -if(s==null)s=null -else{s=J.ei(s,new A.a7D(),t.N) -s=A.a8(s,!0,A.p(s).i("am.E"))}return s}, -bo(a,b){return a.createElement(b)}, -cI(a,b,c,d){if(c!=null)if(d==null)a.addEventListener(b,c) -else a.addEventListener(b,c,d)}, -eZ(a,b,c,d){if(c!=null)if(d==null)a.removeEventListener(b,c) -else a.removeEventListener(b,c,d)}, -h0(a){var s=a.timeStamp -return s==null?null:s}, -aIe(a,b){a.textContent=b -return b}, -a7E(a,b){return a.cloneNode(b)}, -b5f(a){return A.bo(self.document,a)}, -aXu(a){return a.tagName}, -aI5(a,b,c){var s=A.ax(c) -if(s==null)s=t.K.a(s) -return a.setAttribute(b,s)}, -aXt(a){var s -for(;a.firstChild!=null;){s=a.firstChild -s.toString -a.removeChild(s)}}, -aXp(a,b){return A.x(a,"width",b)}, -aXk(a,b){return A.x(a,"height",b)}, -aI0(a,b){return A.x(a,"position",b)}, -aXn(a,b){return A.x(a,"top",b)}, -aXl(a,b){return A.x(a,"left",b)}, -aXo(a,b){return A.x(a,"visibility",b)}, -aXm(a,b){return A.x(a,"overflow",b)}, -x(a,b,c){a.setProperty(b,c,"")}, -aCU(a){var s=a.src -return s==null?null:s}, -aI7(a,b){a.src=b -return b}, -aNV(a){var s=A.bo(self.document,"style") -if(a!=null)s.nonce=a -return s}, -Kc(a,b){var s -$.aO_=$.aO_+1 -s=A.bo(self.window.document,"canvas") -if(b!=null)A.uB(s,b) -if(a!=null)A.uA(s,a) -return s}, -uB(a,b){a.width=b -return b}, -uA(a,b){a.height=b -return b}, -lV(a,b,c){var s -if(c==null)return a.getContext(b) -else{s=A.ax(c) -if(s==null)s=t.K.a(s) -return a.getContext(b,s)}}, -aXr(a){var s=A.lV(a,"2d",null) -s.toString -return t.e.a(s)}, -aXq(a,b){var s -if(b===1){s=A.lV(a,"webgl",null) -s.toString -return t.e.a(s)}s=A.lV(a,"webgl2",null) -s.toString -return t.e.a(s)}, -a7z(a,b){var s=b -a.fillStyle=s -return s}, -aI3(a,b){a.lineWidth=b -return b}, -a7A(a,b){var s=b -a.strokeStyle=s -return s}, -a7y(a,b){if(b==null)a.fill() -else a.fill(b)}, -aI1(a,b,c,d){a.fillText(b,c,d)}, -aI2(a,b,c,d,e,f,g){return A.bq(a,"setTransform",[b,c,d,e,f,g])}, -aI4(a,b,c,d,e,f,g){return A.bq(a,"transform",[b,c,d,e,f,g])}, -a7x(a,b){if(b==null)a.clip() -else a.clip(b)}, -aCQ(a,b){a.filter=b -return b}, -aCS(a,b){a.shadowOffsetX=b -return b}, -aCT(a,b){a.shadowOffsetY=b -return b}, -aCR(a,b){a.shadowColor=b -return b}, -tK(a){return A.b60(a)}, -b60(a){var s=0,r=A.I(t.Lk),q,p=2,o,n,m,l,k -var $async$tK=A.D(function(b,c){if(b===1){o=c -s=p}while(true)switch(s){case 0:p=4 -s=7 -return A.K(A.i3(self.window.fetch(a),t.e),$async$tK) -case 7:n=c -q=new A.Om(a,n) -s=1 -break -p=2 -s=6 -break -case 4:p=3 -k=o -m=A.a6(k) -throw A.d(new A.B8(a,m)) -s=6 -break -case 3:s=2 -break -case 6:case 1:return A.G(q,r) -case 2:return A.F(o,r)}}) -return A.H($async$tK,r)}, -aBb(a){var s=0,r=A.I(t.pI),q -var $async$aBb=A.D(function(b,c){if(b===1)return A.F(c,r) -while(true)switch(s){case 0:s=3 -return A.K(A.tK(a),$async$aBb) -case 3:q=c.grv().o2() -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$aBb,r)}, -ad7(a){var s=0,r=A.I(t.H3),q,p -var $async$ad7=A.D(function(b,c){if(b===1)return A.F(c,r) -while(true)switch(s){case 0:p=A -s=3 -return A.K(a.grv().o2(),$async$ad7) -case 3:q=p.dm(c,0,null) -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$ad7,r)}, -aXz(a){var s=a.width -return s==null?null:s}, -b5g(a,b,c){var s,r -if(c==null)return new globalThis.FontFace(a,b) -else{s=globalThis.FontFace -r=A.ax(c) -if(r==null)r=t.K.a(r) -return new s(a,b,r)}}, -aIi(a){var s=a.height -return s==null?null:s}, -aIb(a,b){var s=b==null?null:b -a.value=s -return s}, -ql(a){var s=a.code -return s==null?null:s}, -kw(a){var s=a.key -return s==null?null:s}, -aIc(a){var s=a.state -if(s==null)s=null -else{s=A.aFq(s) -s.toString}return s}, -aXv(a){return a.matches}, -aId(a){var s=a.matches -return s==null?null:s}, -js(a){var s=a.buttons -return s==null?null:s}, -aIf(a){var s=a.pointerId -return s==null?null:s}, -aCW(a){var s=a.pointerType -return s==null?null:s}, -aIg(a){var s=a.tiltX -return s==null?null:s}, -aIh(a){var s=a.tiltY -return s==null?null:s}, -aIj(a){var s=a.wheelDeltaX -return s==null?null:s}, -aIk(a){var s=a.wheelDeltaY -return s==null?null:s}, -aXA(a){var s=a.identifier -return s==null?null:s}, -a7C(a,b){a.type=b -return b}, -aIa(a,b){var s=b==null?null:b -a.value=s -return s}, -aI8(a){var s=a.value -return s==null?null:s}, -aCV(a){var s=a.disabled -return s==null?null:s}, -aI9(a,b){a.disabled=b -return b}, -aXy(a,b,c){var s=A.ax(c) -if(s==null)s=t.K.a(s) -return a.getContext(b,s)}, -kv(a,b,c){return a.insertRule(b,c)}, -de(a,b,c){var s=t.e.a(A.bd(c)) -a.addEventListener(b,s) -return new A.MX(b,a,s)}, -b5h(a){return new globalThis.ResizeObserver(A.bd(new A.aAM(a)))}, -b5m(a){if(self.window.trustedTypes!=null)return $.aRw().createScriptURL(a) -return a}, -aNW(a){var s,r -if(self.Intl.Segmenter==null)throw A.d(A.cu("Intl.Segmenter() is not supported.")) -s=globalThis.Intl.Segmenter -r=t.N -r=A.ax(A.l(["granularity",a],r,r)) -if(r==null)r=t.K.a(r) -return new s([],r)}, -aNZ(){var s,r -if(self.Intl.v8BreakIterator==null)throw A.d(A.cu("v8BreakIterator is not supported.")) -s=globalThis.Intl.v8BreakIterator -r=A.ax(B.L_) -if(r==null)r=t.K.a(r) -return new s([],r)}, -aYg(a){switch(a){case"DeviceOrientation.portraitUp":return"portrait-primary" -case"DeviceOrientation.portraitDown":return"portrait-secondary" -case"DeviceOrientation.landscapeLeft":return"landscape-primary" -case"DeviceOrientation.landscapeRight":return"landscape-secondary" -default:return null}}, -b5I(){var s=$.ew -s.toString -return s}, -a3q(a,b){var s -if(b.j(0,B.e))return a -s=new A.cm(new Float32Array(16)) -s.aS(a) -s.aK(0,b.a,b.b) -return s}, -aO2(a,b,c){var s=a.aup() -if(c!=null)A.aFO(s,A.a3q(c,b).a) -return s}, -aFN(){var s=0,r=A.I(t.z) -var $async$aFN=A.D(function(a,b){if(a===1)return A.F(b,r) -while(true)switch(s){case 0:if(!$.aF_){$.aF_=!0 -self.window.requestAnimationFrame(A.bd(new A.aBU()))}return A.G(null,r)}}) -return A.H($async$aFN,r)}, -aYi(a,b){var s=t.S,r=A.dt(null,t.H),q=A.b(["Roboto"],t.s),p=B.b.pp(b,new A.aao()),o=B.b.pp(b,new A.aap()),n=B.b.pp(b,new A.aaq()),m=B.b.pp(b,new A.aar()),l=B.b.pp(b,new A.aas()),k=B.b.pp(b,new A.aat()) -s=new A.aan(a,A.aE(s),A.aE(s),A.aYj(b),p,o,n,m,l,k,r,q,A.aE(s)) -q=t.Te -s.b=new A.Nm(s,A.aE(q),A.m(t.N,q)) -return s}, -aYj(a){var s,r,q,p=t.Te,o=A.m(p,t.eT) -for(s=a.length,r=0;r0){q=p/2 -m-=q -j-=q -s=Math.max(0,s-p) -r=Math.max(0,r-p)}if(m!==o||j!==l||s!==n||r!==k)return new A.y(m,j,m+s,j+r) -return a}, -Kb(a,b,c,d){var s,r,q,p,o,n,m,l,k,j=A.bo(self.document,c),i=b.b===B.Q,h=b.c -if(h==null)h=0 -if(d.wg(0)){s=a.a -r=a.b -q="translate("+A.j(s)+"px, "+A.j(r)+"px)"}else{s=new Float32Array(16) -p=new A.cm(s) -p.aS(d) -r=a.a -o=a.b -p.aK(0,r,o) -q=A.kc(s) -s=r -r=o}n=j.style -A.x(n,"position","absolute") -A.x(n,"transform-origin","0 0 0") -A.x(n,"transform",q) -m=A.dA(b.r) -o=b.x -if(o!=null){l=o.b -o=$.cr() -if(o===B.M&&!i){A.x(n,"box-shadow","0px 0px "+A.j(l*2)+"px "+m) -o=b.r -m=A.dA(((B.d.bE((1-Math.min(Math.sqrt(l)/6.283185307179586,1))*(o>>>24&255))&255)<<24|o&16777215)>>>0)}else A.x(n,"filter","blur("+A.j(l)+"px)")}A.x(n,"width",A.j(a.c-s)+"px") -A.x(n,"height",A.j(a.d-r)+"px") -if(i)A.x(n,"border",A.n6(h)+" solid "+m) -else{A.x(n,"background-color",m) -k=A.b3y(b.w,a) -A.x(n,"background-image",k!==""?"url('"+k+"'":"")}return j}, -b3y(a,b){if(a!=null)if(a instanceof A.qI)return A.aQ(a.Ja(b,1,!0)) -return""}, -aNI(a,b){var s,r,q=b.e,p=b.r -if(q===p){s=b.z -if(q===s){r=b.x -s=q===r&&q===b.f&&p===b.w&&s===b.Q&&r===b.y}else s=!1}else s=!1 -if(s){A.x(a,"border-radius",A.n6(b.z)) -return}A.x(a,"border-top-left-radius",A.n6(q)+" "+A.n6(b.f)) -A.x(a,"border-top-right-radius",A.n6(p)+" "+A.n6(b.w)) -A.x(a,"border-bottom-left-radius",A.n6(b.z)+" "+A.n6(b.Q)) -A.x(a,"border-bottom-right-radius",A.n6(b.x)+" "+A.n6(b.y))}, -n6(a){return B.d.ad(a===0?1:a,3)+"px"}, -aCE(a,b,c){var s,r,q,p,o,n,m -if(0===b){c.push(new A.k(a.c,a.d)) -c.push(new A.k(a.e,a.f)) -return}s=new A.Vm() -a.OZ(s) -r=s.a -r.toString -q=s.b -q.toString -p=a.b -o=a.f -if(A.eq(p,a.d,o)){n=r.f -if(!A.eq(p,n,o))m=r.f=q.b=Math.abs(n-p)0){s=b[7] -b[9]=s -b[5]=s -if(o===2){s=b[13] -b[15]=s -b[11]=s}}return o}, -b2Z(b0,b1,b2){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9=b0.length -if(0===a9)for(s=0;s<8;++s)b2[s]=b1[s] -else{r=b0[0] -for(q=a9-1,p=0,s=0;s0))return 0 -s=1 -r=0}q=h-i -p=g-h -o=f-g -do{n=(r+s)/2 -m=i+q*n -l=h+p*n -k=m+(l-m)*n -j=k+(l+(g+o*n-l)*n-k)*n -if(j===0)return n -if(j<0)s=n -else r=n}while(Math.abs(r-s)>0.0000152587890625) -return(s+r)/2}, -aO5(a,b,c,d,e){return(((d+3*(b-c)-a)*e+3*(c-b-b+a))*e+3*(b-a))*e+a}, -aEb(){var s=new A.oW(A.aDT(),B.bK) -s.Sr() -return s}, -b2C(a,b,c){var s -if(0===c)s=0===b||360===b -else s=!1 -if(s)return new A.k(a.c,a.gaT().b) -return null}, -azP(a,b,c,d){var s=a+b -if(s<=c)return d -return Math.min(c/s,d)}, -aJU(a,b){var s=new A.ahk(a,!0,a.w) -if(a.Q)a.Ft() -if(!a.as)s.z=a.w -return s}, -aDT(){var s=new Float32Array(16) -s=new A.vP(s,new Uint8Array(8)) -s.e=s.c=8 -s.CW=172 -return s}, -aZI(a,b,c){var s,r,q=a.d,p=a.c,o=new Float32Array(p*2),n=a.f,m=q*2 -for(s=0;s0?1:0 -return s}, -a3r(a,b){var s -if(a<0){a=-a -b=-b}if(b===0||a===0||a>=b)return null -s=a/b -if(isNaN(s))return null -if(s===0)return null -return s}, -b6h(a){var s,r,q=a.e,p=a.r -if(q+p!==a.c-a.a)return!1 -s=a.f -r=a.w -if(s+r!==a.d-a.b)return!1 -if(q!==a.z||p!==a.x||s!==a.Q||r!==a.y)return!1 -return!0}, -aKK(a,b,c,d,e,f){return new A.am0(e-2*c+a,f-2*d+b,2*(c-a),2*(d-b),a,b)}, -ahn(a,b,c,d,e,f){if(d===f)return A.eq(c,a,e)&&a!==e -else return a===c&&b===d}, -aZJ(a){var s,r,q,p,o=a[0],n=a[1],m=a[2],l=a[3],k=a[4],j=a[5],i=n-l,h=A.a3r(i,i-l+j) -if(h!=null){s=o+h*(m-o) -r=n+h*(l-n) -q=m+h*(k-m) -p=l+h*(j-l) -a[2]=s -a[3]=r -a[4]=s+h*(q-s) -a[5]=r+h*(p-r) -a[6]=q -a[7]=p -a[8]=k -a[9]=j -return 1}a[3]=Math.abs(i)=q}, -b6Z(a,b,c,d){var s,r,q,p,o=a[1],n=a[3] -if(!A.eq(o,c,n))return -s=a[0] -r=a[2] -if(!A.eq(s,b,r))return -q=r-s -p=n-o -if(!(Math.abs((b-s)*p-q*(c-o))<0.000244140625))return -d.push(new A.k(q,p))}, -b7_(a,b,c,d){var s,r,q,p,o,n,m,l,k,j,i=a[1],h=a[3],g=a[5] -if(!A.eq(i,c,h)&&!A.eq(h,c,g))return -s=a[0] -r=a[2] -q=a[4] -if(!A.eq(s,b,r)&&!A.eq(r,b,q))return -p=new A.my() -o=p.mS(i-2*h+g,2*(h-i),i-c) -for(n=q-2*r+s,m=2*(r-s),l=0;l30)B.b.ck($.na,0).d.n()}else a.d.n()}}, -ahr(a,b){if(a<=0)return b*0.1 -else return Math.min(Math.max(b*0.5,a*10),b)}, -b34(a7,a8,a9){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6 -if(a7!=null){s=a7.a -s=s[15]===1&&s[0]===1&&s[1]===0&&s[2]===0&&s[3]===0&&s[4]===0&&s[5]===1&&s[6]===0&&s[7]===0&&s[8]===0&&s[9]===0&&s[10]===1&&s[11]===0}else s=!0 -if(s)return 1 -r=a7.a -s=r[12] -q=r[15] -p=s*q -o=r[13] -n=o*q -m=r[3] -l=m*a8 -k=r[7] -j=k*a9 -i=1/(l+j+q) -h=r[0] -g=h*a8 -f=r[4] -e=f*a9 -d=(g+e+s)*i -c=r[1] -b=c*a8 -a=r[5] -a0=a*a9 -a1=(b+a0+o)*i -a2=Math.min(p,d) -a3=Math.max(p,d) -a4=Math.min(n,a1) -a5=Math.max(n,a1) -i=1/(m*0+j+q) -d=(h*0+e+s)*i -a1=(c*0+a0+o)*i -p=Math.min(a2,d) -a3=Math.max(a3,d) -n=Math.min(a4,a1) -a5=Math.max(a5,a1) -i=1/(l+k*0+q) -d=(g+f*0+s)*i -a1=(b+a*0+o)*i -p=Math.min(p,d) -a3=Math.max(a3,d) -n=Math.min(n,a1) -a6=Math.min((a3-p)/a8,(Math.max(a5,a1)-n)/a9) -if(a6<1e-9||a6===1)return 1 -if(a6>1){a6=Math.min(4,B.d.e9(a6/2)*2) -s=a8*a9 -if(s*a6*a6>4194304&&a6>2)a6=3355443.2/s}else a6=Math.max(2/B.d.ec(2/a6),0.0001) -return a6}, -yI(a){var s,r=a.a,q=r.x,p=q!=null?0+q.b*2:0 -r=r.c -s=r==null -if((s?0:r)!==0)p+=(s?0:r)*0.70710678118 -return p}, -b6W(a,b,c,d){var s,r,q,p="comp",o="destalpha",n="image",m="SourceGraphic" -switch(b.a){case 1:s=A.hR() -s.nv(d,a,p,c) -r=s.bq() -break -case 5:case 9:s=A.hR() -s.xP(B.nT,o) -s.nv(d,a,n,c) -s.nu(n,o,1,0,0,0,6,p) -r=s.bq() -break -case 7:s=A.hR() -s.nv(d,a,n,c) -s.t9(n,m,3,p) -r=s.bq() -break -case 11:s=A.hR() -s.nv(d,a,n,c) -s.t9(n,m,5,p) -r=s.bq() -break -case 12:s=A.hR() -s.nv(d,a,n,c) -s.nu(n,m,0,1,1,0,6,p) -r=s.bq() -break -case 13:s=A.hR() -s.nv(d,a,n,c) -s.nu(n,m,1,0,0,0,6,p) -r=s.bq() -break -case 15:q=A.aAB(B.lK) -q.toString -r=A.aMK(a,q,c,d,!0) -break -case 26:case 18:case 19:case 25:case 27:case 28:case 24:case 14:case 16:case 17:case 20:case 21:case 22:case 23:q=A.aAB(b) -q.toString -r=A.aMK(a,q,c,d,!1) -break -case 2:case 10:case 6:case 8:case 4:case 0:case 3:throw A.d(A.V("Invalid svg filter request for blend-mode "+b.k(0))) -default:r=null}return r}, -aMK(a,b,c,d,e){var s,r="image",q="SourceGraphic",p=A.hR() -p.nv(d,a,r,c) -s=b.b -if(e)p.xO(q,r,s) -else p.xO(r,q,s) -return p.bq()}, -aZC(a2,a3){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1 -if(a3==null)a3=B.H9 -s=a2.length -r=B.b.dN(a2,new A.agX()) -q=!J.e(a3[0],0) -p=!J.e(B.b.gL(a3),1) -o=q?s+1:s -if(p)++o -n=o*4 -m=new Float32Array(n) -l=new Float32Array(n) -n=o-1 -k=B.h.dj(n,4) -j=new Float32Array(4*(k+1)) -if(q){i=a2[0] -m[0]=(i.gl(i)>>>16&255)/255 -m[1]=(i.gl(i)>>>8&255)/255 -m[2]=(i.gl(i)&255)/255 -m[3]=(i.gl(i)>>>24&255)/255 -j[0]=0 -h=4 -g=1}else{h=0 -g=0}for(k=a2.length,f=0;f>>16&255)/255 -h=e+1 -m[e]=(d.gl(i)>>>8&255)/255 -e=h+1 -m[h]=(d.gl(i)&255)/255 -h=e+1 -m[e]=(d.gl(i)>>>24&255)/255}for(k=a3.length,f=0;f>>16&255)/255 -h=e+1 -m[e]=(i.gl(i)>>>8&255)/255 -m[h]=(i.gl(i)&255)/255 -m[h+1]=(i.gl(i)>>>24&255)/255 -j[g]=1}b=4*n -for(a=0;a>>2 -l[a]=(m[a+4]-m[a])/(j[g+1]-j[g])}l[b]=0 -l[b+1]=0 -l[b+2]=0 -l[b+3]=0 -for(a=0;a1)B.b.dX(p,new A.aAH()) -for(p=$.aBL,o=p.length,r=0;r=s)return!1 -if(a[n]!==o.charCodeAt(p))continue $label0$0}return!0}return!1}, -aOW(a){$.pz.push(a)}, -aBf(a){return A.b67(a)}, -b67(a){var s=0,r=A.I(t.H),q,p,o,n -var $async$aBf=A.D(function(b,c){if(b===1)return A.F(c,r) -while(true)switch(s){case 0:n={} -if($.K5!==B.mX){s=1 -break}$.K5=B.EF -p=$.cP -if(p==null)p=$.cP=A.h3(self.window.flutterConfiguration) -if(a!=null)p.b=a -A.b6I("ext.flutter.disassemble",new A.aBh()) -n.a=!1 -$.aOY=new A.aBi(n) -n=$.cP -n=(n==null?$.cP=A.h3(self.window.flutterConfiguration):n).b -if(n==null)n=null -else{n=n.assetBase -if(n==null)n=null}o=new A.a4s(n) -A.b4h(o) -s=3 -return A.K(A.kD(A.b([new A.aBj().$0(),A.a35()],t.mo),t.H),$async$aBf) -case 3:$.K5=B.mY -case 1:return A.G(q,r)}}) -return A.H($async$aBf,r)}, -aFA(){var s=0,r=A.I(t.H),q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a -var $async$aFA=A.D(function(a0,a1){if(a0===1)return A.F(a1,r) -while(true)switch(s){case 0:if($.K5!==B.mY){s=1 -break}$.K5=B.EG -p=$.e5() -if($.aDZ==null)$.aDZ=A.b_i(p===B.bJ) -if($.aDJ==null)$.aDJ=new A.ag7() -if($.ew==null){o=$.cP -o=(o==null?$.cP=A.h3(self.window.flutterConfiguration):o).b -o=o==null?null:o.hostElement -n=A.aXU(o) -m=new A.NG(n) -l=$.cX() -l.e=A.aX7(o) -o=$.ad() -k=t.N -n.XS(0,A.l(["flt-renderer",o.gZP()+" (auto-selected)","flt-build-mode","release","spellcheck","false"],k,k)) -j=m.f=A.bo(self.document,"flutter-view") -i=m.r=A.bo(self.document,"flt-glass-pane") -n.Vg(j) -j.appendChild(i) -if(i.attachShadow==null)A.U(A.V("ShadowDOM is not supported in this browser.")) -n=A.ax(A.l(["mode","open","delegatesFocus",!1],k,t.z)) -if(n==null)n=t.K.a(n) -n=m.w=i.attachShadow(n) -i=$.cP -k=(i==null?$.cP=A.h3(self.window.flutterConfiguration):i).b -h=A.aNV(k==null?null:A.aDq(k)) -h.id="flt-internals-stylesheet" -n.appendChild(h) -A.aNH(h,"","normal normal 14px sans-serif") -k=$.cP -k=(k==null?$.cP=A.h3(self.window.flutterConfiguration):k).b -k=k==null?null:A.aDq(k) -g=A.bo(self.document,"flt-text-editing-host") -f=A.aNV(k) -f.id="flt-text-editing-stylesheet" -j.appendChild(f) -A.aNH(f,"flutter-view","normal normal 14px sans-serif") -j.appendChild(g) -m.x=g -j=A.bo(self.document,"flt-scene-host") -A.x(j.style,"pointer-events","none") -m.b=j -o.ZV(0,m) -e=A.bo(self.document,"flt-semantics-host") -o=e.style -A.x(o,"position","absolute") -A.x(o,"transform-origin","0 0 0") -m.d=e -m.a_r() -o=$.eF -d=(o==null?$.eF=A.lZ():o).w.a.Z7() -c=A.bo(self.document,"flt-announcement-host") -b=A.aH8(B.im) -a=A.aH8(B.io) -c.append(b) -c.append(a) -m.y=new A.a3N(b,a) -n.append(d) -o=m.b -o.toString -n.append(o) -n.append(c) -m.f.appendChild(e) -o=$.cP -if((o==null?$.cP=A.h3(self.window.flutterConfiguration):o).gao4())A.x(m.b.style,"opacity","0.3") -o=$.aen -if(o==null)o=$.aen=A.aYU() -n=m.f -o=o.gtQ() -if($.aK1==null){o=new A.QX(n,new A.ahO(A.m(t.S,t.mm)),o) -n=$.cr() -if(n===B.M)p=p===B.aI -else p=!1 -if(p)$.aPM().av5() -o.e=o.a8u() -$.aK1=o}p=l.e -p.gYP(p).rg(m.gaeY()) -$.ew=m}$.K5=B.EH -case 1:return A.G(q,r)}}) -return A.H($async$aFA,r)}, -b4h(a){if(a===$.yG)return -$.yG=a}, -a35(){var s=0,r=A.I(t.H),q,p,o -var $async$a35=A.D(function(a,b){if(a===1)return A.F(b,r) -while(true)switch(s){case 0:p=$.ad() -p.gvU().a0(0) -s=$.yG!=null?2:3 -break -case 2:p=p.gvU() -q=$.yG -q.toString -o=p -s=5 -return A.K(A.a3h(q),$async$a35) -case 5:s=4 -return A.K(o.lK(b),$async$a35) -case 4:case 3:return A.G(null,r)}}) -return A.H($async$a35,r)}, -aYM(a,b){var s,r=A.b([],b.i("w>")) -a.N(0,new A.ae_(r,b)) -B.b.dX(r,new A.ae0(b)) -s=new A.ae2(b).$1(r) -s.toString -new A.ae1(b).$1(s) -return new A.Oz(s,b.i("Oz<0>"))}, -aKk(a,b){var s=A.b([a],t.jl) -s.push(b) -return A.bq(a,"call",s)}, -aOg(a,b){return new globalThis.Promise(A.bd(new A.aB4(a,b)))}, -aEY(a){var s=B.d.ac(a) -return A.d2(B.d.ac((a-s)*1000),s,0)}, -b2K(a,b){var s={} -s.a=null -return new A.azG(s,a,b)}, -aYU(){var s=new A.ON(A.m(t.N,t.e)) -s.a5Y() -return s}, -aYW(a){switch(a.a){case 0:case 4:return new A.BL(A.aFU("M,2\u201ew\u2211wa2\u03a9q\u2021qb2\u02dbx\u2248xc3 c\xd4j\u2206jd2\xfee\xb4ef2\xfeu\xa8ug2\xfe\xff\u02c6ih3 h\xce\xff\u2202di3 i\xc7c\xe7cj2\xd3h\u02d9hk2\u02c7\xff\u2020tl5 l@l\xfe\xff|l\u02dcnm1~mn3 n\u0131\xff\u222bbo2\xaer\u2030rp2\xacl\xd2lq2\xc6a\xe6ar3 r\u03c0p\u220fps3 s\xd8o\xf8ot2\xa5y\xc1yu3 u\xa9g\u02ddgv2\u02dak\uf8ffkw2\xc2z\xc5zx2\u0152q\u0153qy5 y\xcff\u0192f\u02c7z\u03a9zz5 z\xa5y\u2021y\u2039\xff\u203aw.2\u221av\u25cav;4\xb5m\xcds\xd3m\xdfs/2\xb8z\u03a9z")) -case 3:return new A.BL(A.aFU(';b1{bc1&cf1[fg1]gm2y')) -case 1:case 2:case 5:return new A.BL(A.aFU("8a2@q\u03a9qk1&kq3@q\xc6a\xe6aw2xy2\xa5\xff\u2190\xffz51)s.push(new A.oi(B.b.gM(o),B.b.gL(o))) -else s.push(new A.oi(p,null))}return s}, -b3I(a,b){var s=a.iW(b),r=A.a3f(A.aQ(s.b)) -switch(s.a){case"setDevicePixelRatio":$.cX().x=r -$.bi().f.$0() -return!0}return!1}, -nd(a,b){if(a==null)return -if(b===$.ai)a.$0() -else b.x6(a)}, -Kg(a,b,c){if(a==null)return -if(b===$.ai)a.$1(c) -else b.x8(a,c)}, -b6b(a,b,c,d){if(b===$.ai)a.$2(c,d) -else b.x6(new A.aBl(a,c,d))}, -b5D(){var s,r,q,p=self.document.documentElement -p.toString -if("computedStyleMap" in p){s=p.computedStyleMap() -if(s!=null){r=s.get("font-size") -q=r!=null?r.value:null}else q=null}else q=null -if(q==null)q=A.aOO(A.aCX(self.window,p).getPropertyValue("font-size")) -return(q==null?16:q)/16}, -aZL(a,b,c,d,e,f,g,h){return new A.QU(a,!1,f,e,h,d,c,g)}, -b52(a){switch(a){case 0:return 1 -case 1:return 4 -case 2:return 2 -default:return B.h.a10(1,a)}}, -tk(a){var s=B.d.ac(a) -return A.d2(B.d.ac((a-s)*1000),s,0)}, -aFn(a,b){var s,r,q,p,o=$.eF -if((o==null?$.eF=A.lZ():o).x&&a.offsetX===0&&a.offsetY===0)return A.b33(a,b) -o=$.ew.x -o===$&&A.c() -s=a.target -s.toString -if(o.contains(s)){o=$.a3J() -r=o.giB().w -if(r!=null){a.target.toString -o.giB().c.toString -q=new A.cm(r.c).wO(a.offsetX,a.offsetY,0) -return new A.k(q.a,q.b)}}if(!J.e(a.target,b)){p=b.getBoundingClientRect() -return new A.k(a.clientX-p.x,a.clientY-p.y)}return new A.k(a.offsetX,a.offsetY)}, -b33(a,b){var s,r,q=a.clientX,p=a.clientY -for(s=b;s.offsetParent!=null;s=r){q-=s.offsetLeft-s.scrollLeft -p-=s.offsetTop-s.scrollTop -r=s.offsetParent -r.toString}return new A.k(q,p)}, -aBX(a,b){var s=b.$0() -return s}, -b5M(){if($.bi().ay==null)return -$.aFg=A.K8()}, -b5L(){if($.bi().ay==null)return -$.aER=A.K8()}, -aOc(){if($.bi().ay==null)return -$.aEQ=A.K8()}, -aOe(){if($.bi().ay==null)return -$.aFa=A.K8()}, -aOd(){var s,r,q=$.bi() -if(q.ay==null)return -s=$.aNn=A.K8() -$.aF0.push(new A.nT(A.b([$.aFg,$.aER,$.aEQ,$.aFa,s,s,0,0,0,0,1],t.t))) -$.aNn=$.aFa=$.aEQ=$.aER=$.aFg=-1 -if(s-$.aQI()>1e5){$.b3q=s -r=$.aF0 -A.Kg(q.ay,q.ch,r) -$.aF0=A.b([],t.no)}}, -K8(){return B.d.ac(self.window.performance.now()*1000)}, -b_i(a){var s=new A.aij(A.m(t.N,t.qe),a) -s.a61(a) -return s}, -b47(a){}, -aFv(a,b){return a[b]}, -aOO(a){var s=self.window.parseFloat(a) -if(s==null||isNaN(s))return null -return s}, -b6z(a){var s,r,q -if("computedStyleMap" in a){s=a.computedStyleMap() -if(s!=null){r=s.get("font-size") -q=r!=null?r.value:null}else q=null}else q=null -return q==null?A.aOO(A.aCX(self.window,a).getPropertyValue("font-size")):q}, -b7c(a,b){var s,r=self.document.createElement("CANVAS") -if(r==null)return null -try{A.uB(r,a) -A.uA(r,b)}catch(s){return null}return r}, -aJK(){var s,r=$.aJJ -if(r==null){r=$.cr() -s=$.aJJ=r!==B.M&&"OffscreenCanvas" in self.window -r=s}return r}, -aH8(a){var s=a===B.io?"assertive":"polite",r=A.bo(self.document,"flt-announcement-"+s),q=r.style -A.x(q,"position","fixed") -A.x(q,"overflow","hidden") -A.x(q,"transform","translate(-99999px, -99999px)") -A.x(q,"width","1px") -A.x(q,"height","1px") -q=A.ax(s) -if(q==null)q=t.K.a(q) -r.setAttribute("aria-live",q) -return r}, -b2X(a){var s=a.a -if((s&256)!==0)return B.We -else if((s&65536)!==0)return B.Wf -else return B.Wd}, -aYE(a){var s=new A.adC(A.bo(self.document,"input"),new A.KF(a.k1),B.y3,a) -s.a5X(a) -return s}, -aXV(a){return new A.a8N(a)}, -alh(a){var s=a.style -s.removeProperty("transform-origin") -s.removeProperty("transform") -s=$.e5() -if(s!==B.aI)s=s===B.bJ -else s=!0 -if(s){s=a.style -A.x(s,"top","0px") -A.x(s,"left","0px")}else{s=a.style -s.removeProperty("top") -s.removeProperty("left")}}, -lZ(){var s=t.S,r=t.UF,q=A.b([],t.Qo),p=A.b([],t.l),o=$.e5() -o=B.kv.t(0,o)?new A.a75():new A.ag1() -o=new A.a96(B.yF,A.m(s,r),A.m(s,r),q,p,new A.a9a(),new A.ald(o),B.d8,A.b([],t.sQ)) -o.a5U() -return o}, -aOz(a){var s,r,q,p,o,n,m,l,k=a.length,j=t.t,i=A.b([],j),h=A.b([0],j) -for(s=0,r=0;r=h.length)h.push(r) -else h[o]=r -if(o>s)s=o}m=A.aT(s,0,!1,t.S) -l=h[s] -for(r=s-1;r>=0;--r){m[r]=l -l=i[l]}return m}, -b_Q(a){var s,r=$.E_ -if(r!=null)s=r.a===a -else s=!1 -if(s){r.toString -return r}return $.E_=new A.alo(a,A.b([],t.Up),$,$,$,null)}, -aEH(a,b,c){var s,r;--c -for(;b0){k.push(new A.od(B.cH,o,n,r,p)) -r=p -o=0 -n=0}}if(o>0)l=B.cj -else l=q===s?B.ck:B.cH -k.push(new A.od(l,o,n,r,q))}if(k.length===0||B.b.gL(k).c===B.cj)k.push(new A.od(B.ck,0,0,s,s)) -return k}, -b32(a1){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a={},a0=A.b([],t._f) -a.a=a.b=null -s=A.Kf(a1,0) -r=A.aO4().r4(s) -a.c=a.d=a.e=a.f=0 -q=new A.azO(a,a1,a0) -q.$2(B.r,2) -p=++a.f -for(o=a1.length,n=t.jQ,m=t.S,l=t.MX,k=B.bg,j=0;p<=o;p=++a.f){a.b=a.a -a.a=r -if(s!=null&&s>65535){q.$2(B.r,-1) -p=++a.f}s=A.Kf(a1,p) -p=$.aAj -r=(p==null?$.aAj=new A.mO(A.aFf(u.C,937,B.nQ,n),B.bg,A.m(m,n),l):p).r4(s) -i=a.a -j=i===B.fQ?j+1:0 -if(i===B.e7||i===B.fO){q.$2(B.cj,5) -continue}if(i===B.fS){if(r===B.e7)q.$2(B.r,5) -else q.$2(B.cj,5) -continue}if(r===B.e7||r===B.fO||r===B.fS){q.$2(B.r,6) -continue}p=a.f -if(p>=o)break -if(r===B.db||r===B.jr){q.$2(B.r,7) -continue}if(i===B.db){q.$2(B.cH,18) -continue}if(i===B.jr){q.$2(B.cH,8) -continue}if(i===B.js){q.$2(B.r,8) -continue}h=i!==B.jm -if(h&&!0)k=i==null?B.bg:i -if(r===B.jm||r===B.js){if(k!==B.db){if(k===B.fQ)--j -q.$2(B.r,9) -r=k -continue}r=B.bg}if(!h||!1){a.a=k -h=k}else h=i -if(r===B.ju||h===B.ju){q.$2(B.r,11) -continue}if(h===B.jp){q.$2(B.r,12) -continue}g=h!==B.db -if(!(!g||h===B.fL||h===B.e6)&&r===B.jp){q.$2(B.r,12) -continue}if(g)g=r===B.jo||r===B.e5||r===B.nO||r===B.fM||r===B.jn -else g=!1 -if(g){q.$2(B.r,13) -continue}if(h===B.e4){q.$2(B.r,14) -continue}g=h===B.jx -if(g&&r===B.e4){q.$2(B.r,15) -continue}f=h!==B.jo -if((!f||h===B.e5)&&r===B.jq){q.$2(B.r,16) -continue}if(h===B.jt&&r===B.jt){q.$2(B.r,17) -continue}if(g||r===B.jx){q.$2(B.r,19) -continue}if(h===B.jw||r===B.jw){q.$2(B.cH,20) -continue}if(r===B.fL||r===B.e6||r===B.jq||h===B.nM){q.$2(B.r,21) -continue}if(a.b===B.bf)g=h===B.e6||h===B.fL -else g=!1 -if(g){q.$2(B.r,21) -continue}g=h===B.jn -if(g&&r===B.bf){q.$2(B.r,21) -continue}if(r===B.nN){q.$2(B.r,22) -continue}e=h!==B.bg -if(!((!e||h===B.bf)&&r===B.cl))if(h===B.cl)d=r===B.bg||r===B.bf -else d=!1 -else d=!0 -if(d){q.$2(B.r,23) -continue}d=h===B.fT -if(d)c=r===B.jv||r===B.fP||r===B.fR -else c=!1 -if(c){q.$2(B.r,23) -continue}if((h===B.jv||h===B.fP||h===B.fR)&&r===B.cI){q.$2(B.r,23) -continue}c=!d -if(!c||h===B.cI)b=r===B.bg||r===B.bf -else b=!1 -if(b){q.$2(B.r,24) -continue}if(!e||h===B.bf)b=r===B.fT||r===B.cI -else b=!1 -if(b){q.$2(B.r,24) -continue}if(!f||h===B.e5||h===B.cl)f=r===B.cI||r===B.fT -else f=!1 -if(f){q.$2(B.r,25) -continue}f=h!==B.cI -if((!f||d)&&r===B.e4){q.$2(B.r,25) -continue}if((!f||!c||h===B.e6||h===B.fM||h===B.cl||g)&&r===B.cl){q.$2(B.r,25) -continue}g=h===B.fN -if(g)f=r===B.fN||r===B.e8||r===B.ea||r===B.eb -else f=!1 -if(f){q.$2(B.r,26) -continue}f=h!==B.e8 -if(!f||h===B.ea)c=r===B.e8||r===B.e9 -else c=!1 -if(c){q.$2(B.r,26) -continue}c=h!==B.e9 -if((!c||h===B.eb)&&r===B.e9){q.$2(B.r,26) -continue}if((g||!f||!c||h===B.ea||h===B.eb)&&r===B.cI){q.$2(B.r,27) -continue}if(d)g=r===B.fN||r===B.e8||r===B.e9||r===B.ea||r===B.eb -else g=!1 -if(g){q.$2(B.r,27) -continue}if(!e||h===B.bf)g=r===B.bg||r===B.bf -else g=!1 -if(g){q.$2(B.r,28) -continue}if(h===B.fM)g=r===B.bg||r===B.bf -else g=!1 -if(g){q.$2(B.r,29) -continue}if(!e||h===B.bf||h===B.cl)if(r===B.e4){g=a1.charCodeAt(p) -if(g!==9001)if(!(g>=12296&&g<=12317))g=g>=65047&&g<=65378 -else g=!0 -else g=!0 -g=!g}else g=!1 -else g=!1 -if(g){q.$2(B.r,30) -continue}if(h===B.e5){p=a1.charCodeAt(p-1) -if(p!==9001)if(!(p>=12296&&p<=12317))p=p>=65047&&p<=65378 -else p=!0 -else p=!0 -if(!p)p=r===B.bg||r===B.bf||r===B.cl -else p=!1}else p=!1 -if(p){q.$2(B.r,30) -continue}if(r===B.fQ){if((j&1)===1)q.$2(B.r,30) -else q.$2(B.cH,30) -continue}if(h===B.fP&&r===B.fR){q.$2(B.r,30) -continue}q.$2(B.cH,31)}q.$2(B.ck,3) -return a0}, -pG(a,b,c,d,e){var s,r,q,p -if(c===d)return 0 -s=a.font -if(c===$.aNd&&d===$.aNc&&b===$.aNe&&s===$.aNb)r=$.aNf -else{q=c===0&&d===b.length?b:B.c.S(b,c,d) -p=A.aXz(a.measureText(q)) -p.toString -r=p}$.aNd=c -$.aNc=d -$.aNe=b -$.aNb=s -$.aNf=r -if(e==null)e=0 -return B.d.bE((e!==0?r+e*(d-c):r)*100)/100}, -aIx(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,a0,a1,a2){var s=g==null,r=s?"":g -return new A.AE(b,c,d,e,f,m,k,a1,!s,r,h,i,l,j,p,a2,o,q,a,n,a0)}, -aOa(a){if(a==null)return null -return A.aO9(a.a)}, -aO9(a){switch(a){case 0:return"100" -case 1:return"200" -case 2:return"300" -case 3:return"normal" -case 4:return"500" -case 5:return"600" -case 6:return"bold" -case 7:return"800" -case 8:return"900"}return""}, -b4i(a){var s,r,q,p,o=a.length -if(o===0)return"" -for(s=0,r="";s=48&&q<=57))s=q>=1632&&q<=1641 -else s=!0 -if(s)return B.p -r=$.aGy().r4(q) -if(r!=null)return r -return null}, -aF3(a,b){var s=A.Kf(a,b) -s.toString -if(s>=48&&s<=57)return B.fF -if(s>=1632&&s<=1641)return B.nv -switch($.aGy().r4(s)){case B.p:return B.nu -case B.a4:return B.nv -case null:case void 0:return B.jk}}, -Kf(a,b){var s,r -if(b<0||b>=a.length)return null -s=a.charCodeAt(b) -if((s&63488)===55296&&b>>6&31)+1<<16|(r&63)<<10|a.charCodeAt(b+1)&1023}return s}, -b10(a,b,c){return new A.mO(a,b,A.m(t.S,c),c.i("mO<0>"))}, -b11(a,b,c,d,e){return new A.mO(A.aFf(a,b,c,e),d,A.m(t.S,e),e.i("mO<0>"))}, -aFf(a,b,c,d){var s,r,q,p,o,n=A.b([],d.i("w>")),m=a.length -for(s=d.i("da<0>"),r=0;r=0&&q<=r))break -q+=s -if(A.b1c(b,q))break}return A.pB(q,0,r)}, -b1c(a,b){var s,r,q,p,o,n,m,l,k,j=null -if(b<=0||b>=a.length)return!0 -s=b-1 -if((a.charCodeAt(s)&63488)===55296)return!1 -r=$.Kz().BN(0,a,b) -q=$.Kz().BN(0,a,s) -if(q===B.hT&&r===B.hU)return!1 -if(A.eM(q,B.l7,B.hT,B.hU,j,j))return!0 -if(A.eM(r,B.l7,B.hT,B.hU,j,j))return!0 -if(q===B.l6&&r===B.l6)return!1 -if(A.eM(r,B.eX,B.eY,B.eW,j,j))return!1 -for(p=0;A.eM(q,B.eX,B.eY,B.eW,j,j);){++p -s=b-p-1 -if(s<0)return!0 -o=$.Kz() -n=A.Kf(a,s) -q=n==null?o.b:o.r4(n)}if(A.eM(q,B.by,B.aT,j,j,j)&&A.eM(r,B.by,B.aT,j,j,j))return!1 -m=0 -do{++m -l=$.Kz().BN(0,a,b+m)}while(A.eM(l,B.eX,B.eY,B.eW,j,j)) -do{++p -k=$.Kz().BN(0,a,b-p-1)}while(A.eM(k,B.eX,B.eY,B.eW,j,j)) -if(A.eM(q,B.by,B.aT,j,j,j)&&A.eM(r,B.l4,B.eV,B.dy,j,j)&&A.eM(l,B.by,B.aT,j,j,j))return!1 -if(A.eM(k,B.by,B.aT,j,j,j)&&A.eM(q,B.l4,B.eV,B.dy,j,j)&&A.eM(r,B.by,B.aT,j,j,j))return!1 -s=q===B.aT -if(s&&r===B.dy)return!1 -if(s&&r===B.l3&&l===B.aT)return!1 -if(k===B.aT&&q===B.l3&&r===B.aT)return!1 -s=q===B.c6 -if(s&&r===B.c6)return!1 -if(A.eM(q,B.by,B.aT,j,j,j)&&r===B.c6)return!1 -if(s&&A.eM(r,B.by,B.aT,j,j,j))return!1 -if(k===B.c6&&A.eM(q,B.l5,B.eV,B.dy,j,j)&&r===B.c6)return!1 -if(s&&A.eM(r,B.l5,B.eV,B.dy,j,j)&&l===B.c6)return!1 -if(q===B.eZ&&r===B.eZ)return!1 -if(A.eM(q,B.by,B.aT,B.c6,B.eZ,B.hS)&&r===B.hS)return!1 -if(q===B.hS&&A.eM(r,B.by,B.aT,B.c6,B.eZ,j))return!1 -return!0}, -eM(a,b,c,d,e,f){if(a===b)return!0 -if(a===c)return!0 -if(d!=null&&a===d)return!0 -if(e!=null&&a===e)return!0 -if(f!=null&&a===f)return!0 -return!1}, -aXX(a){switch(a){case"TextInputAction.continueAction":case"TextInputAction.next":return B.Cr -case"TextInputAction.previous":return B.CB -case"TextInputAction.done":return B.C0 -case"TextInputAction.go":return B.Cb -case"TextInputAction.newline":return B.C7 -case"TextInputAction.search":return B.CE -case"TextInputAction.send":return B.CF -case"TextInputAction.emergencyCall":case"TextInputAction.join":case"TextInputAction.none":case"TextInputAction.route":case"TextInputAction.unspecified":default:return B.Cs}}, -aIv(a,b){switch(a){case"TextInputType.number":return b?B.BX:B.Ct -case"TextInputType.phone":return B.CA -case"TextInputType.emailAddress":return B.C1 -case"TextInputType.url":return B.CS -case"TextInputType.multiline":return B.Cq -case"TextInputType.none":return B.m4 -case"TextInputType.text":default:return B.CO}}, -b0y(a){var s -if(a==="TextCapitalization.words")s=B.zn -else if(a==="TextCapitalization.characters")s=B.zp -else s=a==="TextCapitalization.sentences"?B.zo:B.kJ -return new A.ER(s)}, -b3g(a){}, -a3b(a,b,c,d){var s,r="transparent",q="none",p=a.style -A.x(p,"white-space","pre-wrap") -A.x(p,"align-content","center") -A.x(p,"padding","0") -A.x(p,"opacity","1") -A.x(p,"color",r) -A.x(p,"background-color",r) -A.x(p,"background",r) -A.x(p,"outline",q) -A.x(p,"border",q) -A.x(p,"resize",q) -A.x(p,"text-shadow",r) -A.x(p,"transform-origin","0 0 0") -if(b){A.x(p,"top","-9999px") -A.x(p,"left","-9999px")}if(d){A.x(p,"width","0") -A.x(p,"height","0")}if(c)A.x(p,"pointer-events",q) -s=$.cr() -if(s!==B.ca)s=s===B.M -else s=!0 -if(s)a.classList.add("transparentTextEditing") -A.x(p,"caret-color",r)}, -aXW(a6,a7){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5=null -if(a6==null)return a5 -s=t.N -r=t.e -q=A.m(s,r) -p=A.m(s,t.M1) -o=A.bo(self.document,"form") -n=$.a3J().giB() instanceof A.RW -o.noValidate=!0 -o.method="post" -o.action="#" -A.cI(o,"submit",r.a(A.bd(new A.a8R())),a5) -A.a3b(o,!1,n,!0) -m=J.Bk(0,s) -l=A.aCu(a6,B.zm) -if(a7!=null)for(s=t.a,r=J.fW(a7,s),k=A.p(r),r=new A.bz(r,r.gp(r),k.i("bz")),j=l.b,k=k.i("a_.E"),i=!n,h=a5,g=!1;r.u();){f=r.d -if(f==null)f=k.a(f) -e=J.X(f) -d=s.a(e.h(f,"autofill")) -c=A.aQ(e.h(f,"textCapitalization")) -if(c==="TextCapitalization.words")c=B.zn -else if(c==="TextCapitalization.characters")c=B.zp -else c=c==="TextCapitalization.sentences"?B.zo:B.kJ -b=A.aCu(d,new A.ER(c)) -c=b.b -m.push(c) -if(c!==j){a=A.aIv(A.aQ(J.aN(s.a(e.h(f,"inputType")),"name")),!1).J9() -b.a.fL(a) -b.fL(a) -A.a3b(a,!1,n,i) -p.m(0,c,b) -q.m(0,c,a) -o.append(a) -if(g){h=a -g=!1}}else g=!0}else{m.push(l.b) -h=a5}B.b.jl(m) -for(s=m.length,a0=0,r="";a00?r+"*":r)+a1}a2=r.charCodeAt(0)==0?r:r -a3=$.Ke.h(0,a2) -if(a3!=null)a3.remove() -a4=A.bo(self.document,"input") -A.a3b(a4,!0,!1,!0) -a4.className="submitBtn" -A.a7C(a4,"submit") -o.append(a4) -return new A.a8O(o,q,p,h==null?a4:h,a2)}, -aCu(a,b){var s,r=J.X(a),q=A.aQ(r.h(a,"uniqueIdentifier")),p=t.kc.a(r.h(a,"hints")),o=p==null||J.iD(p)?null:A.aQ(J.nh(p)),n=A.aIr(t.a.a(r.h(a,"editingValue"))) -if(o!=null){s=$.aPa().a.h(0,o) -if(s==null)s=o}else s=null -return new A.L8(n,q,s,A.au(r.h(a,"hintText")))}, -aFb(a,b,c){var s=c.a,r=c.b,q=Math.min(s,r) -r=Math.max(s,r) -return B.c.S(a,0,q)+b+B.c.bK(a,r)}, -b0z(a1,a2,a3){var s,r,q,p,o,n,m,l,k,j,i,h=a3.a,g=a3.b,f=a3.c,e=a3.d,d=a3.e,c=a3.f,b=a3.r,a=a3.w,a0=new A.x1(h,g,f,e,d,c,b,a) -d=a2==null -c=d?null:a2.b -s=c==(d?null:a2.c) -c=g.length -r=c===0 -q=r&&e!==-1 -r=!r -p=r&&!s -if(q){o=h.length-a1.a.length -f=a1.b -if(f!==(d?null:a2.b)){f=e-o -a0.c=f}else{a0.c=f -e=f+o -a0.d=e}}else if(p){f=a2.b -a0.c=f}n=b!=null&&b!==a -if(r&&s&&n){b.toString -f=a0.c=b}if(!(f===-1&&f===e)){m=A.aFb(h,g,new A.cb(f,e)) -f=a1.a -f.toString -if(m!==f){l=B.c.t(g,".") -for(e=A.aG(A.aFK(g),!0,!1,!1,!1).nY(0,f),e=new A.tj(e.a,e.b,e.c),d=t.Qz,b=h.length;e.u();){k=e.d -a=(k==null?d.a(k):k).b -r=a.index -if(!(r>=0&&r+a[0].length<=b)){j=r+c-1 -i=A.aFb(h,g,new A.cb(r,j))}else{j=l?r+a[0].length-1:r+a[0].length -i=A.aFb(h,g,new A.cb(r,j))}if(i===f){a0.c=r -a0.d=j -break}}}}a0.e=a1.b -a0.f=a1.c -return a0}, -a8w(a,b,c,d,e){var s,r=a==null?0:a -r=Math.max(0,r) -s=d==null?0:d -return new A.uF(e,r,Math.max(0,s),b,c)}, -aIr(a){var s=J.X(a),r=A.au(s.h(a,"text")),q=B.d.ac(A.kb(s.h(a,"selectionBase"))),p=B.d.ac(A.kb(s.h(a,"selectionExtent"))),o=A.aDs(a,"composingBase"),n=A.aDs(a,"composingExtent") -s=o==null?-1:o -return A.a8w(q,s,n==null?-1:n,p,r)}, -aIq(a){var s,r,q,p=null,o=globalThis.HTMLInputElement -if(o!=null&&a instanceof o){s=A.aI8(a) -r=a.selectionStart -if(r==null)r=p -r=r==null?p:B.d.ac(r) -q=a.selectionEnd -if(q==null)q=p -return A.a8w(r,-1,-1,q==null?p:B.d.ac(q),s)}else{o=globalThis.HTMLTextAreaElement -if(o!=null&&a instanceof o){s=a.value -if(s==null)s=p -r=a.selectionStart -if(r==null)r=p -r=r==null?p:B.d.ac(r) -q=a.selectionEnd -if(q==null)q=p -return A.a8w(r,-1,-1,q==null?p:B.d.ac(q),s)}else throw A.d(A.V("Initialized with unsupported input type"))}}, -aJ0(a){var s,r,q,p,o,n="inputType",m="autofill",l=J.X(a),k=t.a,j=A.aQ(J.aN(k.a(l.h(a,n)),"name")),i=A.lB(J.aN(k.a(l.h(a,n)),"decimal")) -j=A.aIv(j,i===!0) -i=A.au(l.h(a,"inputAction")) -if(i==null)i="TextInputAction.done" -s=A.lB(l.h(a,"obscureText")) -r=A.lB(l.h(a,"readOnly")) -q=A.lB(l.h(a,"autocorrect")) -p=A.b0y(A.aQ(l.h(a,"textCapitalization"))) -k=l.ak(a,m)?A.aCu(k.a(l.h(a,m)),B.zm):null -o=A.aXW(t.nA.a(l.h(a,m)),t.kc.a(l.h(a,"fields"))) -l=A.lB(l.h(a,"enableDeltaModel")) -return new A.adU(j,i,r===!0,s===!0,q!==!1,l===!0,k,o,p)}, -aYr(a){return new A.O1(a,A.b([],t.Up),$,$,$,null)}, -b6K(){$.Ke.N(0,new A.aBS())}, -b4Q(){var s,r,q -for(s=$.Ke.gaR($.Ke),r=A.p(s),r=r.i("@<1>").a5(r.z[1]),s=new A.bP(J.as(s.a),s.b,r.i("bP<1,2>")),r=r.z[1];s.u();){q=s.a -if(q==null)q=r.a(q) -q.remove()}$.Ke.a0(0)}, -aXK(a){var s=J.X(a),r=A.cZ(J.ei(t.j.a(s.h(a,"transform")),new A.a7W(),t.z),!0,t.i) -return new A.a7V(A.kb(s.h(a,"width")),A.kb(s.h(a,"height")),new Float32Array(A.jg(r)))}, -b5O(a,b){var s,r={},q=new A.ae($.ai,b.i("ae<0>")) -r.a=!0 -s=a.$1(new A.aB5(r,new A.IP(q,b.i("IP<0>")),b)) -r.a=!1 -if(s!=null)throw A.d(A.ck(s)) -return q}, -aFO(a,b){var s=a.style -A.x(s,"transform-origin","0 0 0") -A.x(s,"transform",A.kc(b))}, -kc(a){var s=A.aBY(a) -if(s===B.zQ)return"matrix("+A.j(a[0])+","+A.j(a[1])+","+A.j(a[4])+","+A.j(a[5])+","+A.j(a[12])+","+A.j(a[13])+")" -else if(s===B.hP)return A.b5H(a) -else return"none"}, -aBY(a){if(!(a[15]===1&&a[14]===0&&a[11]===0&&a[10]===1&&a[9]===0&&a[8]===0&&a[7]===0&&a[6]===0&&a[3]===0&&a[2]===0))return B.hP -if(a[0]===1&&a[1]===0&&a[4]===0&&a[5]===1&&a[12]===0&&a[13]===0)return B.zP -else return B.zQ}, -b5H(a){var s=a[0] -if(s===1&&a[1]===0&&a[2]===0&&a[3]===0&&a[4]===0&&a[5]===1&&a[6]===0&&a[7]===0&&a[8]===0&&a[9]===0&&a[10]===1&&a[11]===0&&a[14]===0&&a[15]===1)return"translate3d("+A.j(a[12])+"px, "+A.j(a[13])+"px, 0px)" -else return"matrix3d("+A.j(s)+","+A.j(a[1])+","+A.j(a[2])+","+A.j(a[3])+","+A.j(a[4])+","+A.j(a[5])+","+A.j(a[6])+","+A.j(a[7])+","+A.j(a[8])+","+A.j(a[9])+","+A.j(a[10])+","+A.j(a[11])+","+A.j(a[12])+","+A.j(a[13])+","+A.j(a[14])+","+A.j(a[15])+")"}, -aBZ(a,b){var s=$.aRt() -s[0]=b.a -s[1]=b.b -s[2]=b.c -s[3]=b.d -A.aFT(a,s) -return new A.y(s[0],s[1],s[2],s[3])}, -aFT(a1,a2){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0=$.aGx() -a0[0]=a2[0] -a0[4]=a2[1] -a0[8]=0 -a0[12]=1 -a0[1]=a2[2] -a0[5]=a2[1] -a0[9]=0 -a0[13]=1 -a0[2]=a2[0] -a0[6]=a2[3] -a0[10]=0 -a0[14]=1 -a0[3]=a2[2] -a0[7]=a2[3] -a0[11]=0 -a0[15]=1 -s=$.aRs().a -r=s[0] -q=s[4] -p=s[8] -o=s[12] -n=s[1] -m=s[5] -l=s[9] -k=s[13] -j=s[2] -i=s[6] -h=s[10] -g=s[14] -f=s[3] -e=s[7] -d=s[11] -c=s[15] -b=a1.a -s[0]=r*b[0]+q*b[4]+p*b[8]+o*b[12] -s[4]=r*b[1]+q*b[5]+p*b[9]+o*b[13] -s[8]=r*b[2]+q*b[6]+p*b[10]+o*b[14] -s[12]=r*b[3]+q*b[7]+p*b[11]+o*b[15] -s[1]=n*b[0]+m*b[4]+l*b[8]+k*b[12] -s[5]=n*b[1]+m*b[5]+l*b[9]+k*b[13] -s[9]=n*b[2]+m*b[6]+l*b[10]+k*b[14] -s[13]=n*b[3]+m*b[7]+l*b[11]+k*b[15] -s[2]=j*b[0]+i*b[4]+h*b[8]+g*b[12] -s[6]=j*b[1]+i*b[5]+h*b[9]+g*b[13] -s[10]=j*b[2]+i*b[6]+h*b[10]+g*b[14] -s[14]=j*b[3]+i*b[7]+h*b[11]+g*b[15] -s[3]=f*b[0]+e*b[4]+d*b[8]+c*b[12] -s[7]=f*b[1]+e*b[5]+d*b[9]+c*b[13] -s[11]=f*b[2]+e*b[6]+d*b[10]+c*b[14] -s[15]=f*b[3]+e*b[7]+d*b[11]+c*b[15] -a=b[15] -if(a===0)a=1 -a2[0]=Math.min(Math.min(Math.min(a0[0],a0[1]),a0[2]),a0[3])/a -a2[1]=Math.min(Math.min(Math.min(a0[4],a0[5]),a0[6]),a0[7])/a -a2[2]=Math.max(Math.max(Math.max(a0[0],a0[1]),a0[2]),a0[3])/a -a2[3]=Math.max(Math.max(Math.max(a0[4],a0[5]),a0[6]),a0[7])/a}, -aOU(a,b){return a.a<=b.a&&a.b<=b.b&&a.c>=b.c&&a.d>=b.d}, -dA(a){var s,r -if(a===4278190080)return"#000000" -if((a&4278190080)>>>0===4278190080){s=B.h.jc(a&16777215,16) -switch(s.length){case 1:return"#00000"+s -case 2:return"#0000"+s -case 3:return"#000"+s -case 4:return"#00"+s -case 5:return"#0"+s -default:return"#"+s}}else{r=""+"rgba("+B.h.k(a>>>16&255)+","+B.h.k(a>>>8&255)+","+B.h.k(a&255)+","+B.d.k((a>>>24&255)/255)+")" -return r.charCodeAt(0)==0?r:r}}, -b4V(a,b,c,d){var s=""+a,r=""+b,q=""+c -if(d===255)return"rgb("+s+","+r+","+q+")" -else return"rgba("+s+","+r+","+q+","+B.d.ad(d/255,2)+")"}, -aMZ(){if(A.b6g())return"BlinkMacSystemFont" -var s=$.e5() -if(s!==B.aI)s=s===B.bJ -else s=!0 -if(s)return"-apple-system, BlinkMacSystemFont" -return"Arial"}, -aAG(a){var s -if(B.OK.t(0,a))return a -s=$.e5() -if(s!==B.aI)s=s===B.bJ -else s=!0 -if(s)if(a===".SF Pro Text"||a===".SF Pro Display"||a===".SF UI Text"||a===".SF UI Display")return A.aMZ() -return'"'+A.j(a)+'", '+A.aMZ()+", sans-serif"}, -pB(a,b,c){if(ac)return c -else return a}, -pF(a,b){var s -if(a==null)return b==null -if(b==null||a.length!==b.length)return!1 -for(s=0;s")).bH(0," ")}, -ez(a,b,c){A.x(a.style,b,c)}, -aP_(a){var s=self.document.querySelector("#flutterweb-theme") -if(a!=null){if(s==null){s=A.bo(self.document,"meta") -s.id="flutterweb-theme" -s.name="theme-color" -self.document.head.append(s)}s.content=A.dA(a.a)}else if(s!=null)s.remove()}, -Kd(a,b,c,d,e,f,g,h,i){var s=$.aMV -if(s==null?$.aMV=a.ellipse!=null:s)A.bq(a,"ellipse",[b,c,d,e,f,g,h,i]) -else{a.save() -a.translate(b,c) -a.rotate(f) -a.scale(d,e) -A.bq(a,"arc",[0,0,1,g,h,i]) -a.restore()}}, -aFL(a){var s -for(;a.lastChild!=null;){s=a.lastChild -if(s.parentNode!=null)s.parentNode.removeChild(s)}}, -aDy(a,b,c){var s=b.i("@<0>").a5(c),r=new A.Gk(s.i("Gk<+key,value(1,2)>")) -r.a=r -r.b=r -return new A.P6(a,new A.Ao(r,s.i("Ao<+key,value(1,2)>")),A.m(b,s.i("aIn<+key,value(1,2)>")),s.i("P6<1,2>"))}, -en(){var s=new Float32Array(16) -s[15]=1 -s[0]=1 -s[5]=1 -s[10]=1 -return new A.cm(s)}, -aZh(a){return new A.cm(a)}, -aZk(a){var s=new A.cm(new Float32Array(16)) -if(s.h4(a)===0)return null -return s}, -a3p(a){var s=new Float32Array(16) -s[15]=a[15] -s[14]=a[14] -s[13]=a[13] -s[12]=a[12] -s[11]=a[11] -s[10]=a[10] -s[9]=a[9] -s[8]=a[8] -s[7]=a[7] -s[6]=a[6] -s[5]=a[5] -s[4]=a[4] -s[3]=a[3] -s[2]=a[2] -s[1]=a[1] -s[0]=a[0] -return s}, -aWP(a){var s=new A.Ms(a,new A.dG(null,null,t.Qh)) -s.a5S(a) -return s}, -aX7(a){var s,r -if(a!=null)return A.aWP(a) -else{s=new A.NT(new A.dG(null,null,t.Tv)) -r=self.window.visualViewport -if(r==null)r=self.window -s.a=A.de(r,"resize",s.gag7()) -return s}}, -aWQ(a){var s=t.e.a(A.bd(new A.Vo())) -A.aXt(a) -return new A.a6N(a,!0,s)}, -aXU(a){if(a!=null)return A.aWQ(a) -else return A.aYn()}, -aYn(){return new A.aaL(!0,t.e.a(A.bd(new A.Vo())))}, -aXY(a,b){var s=new A.Nf(a,b,A.dt(null,t.H),B.eU) -s.a5T(a,b) -return s}, -yZ:function yZ(a){var _=this -_.a=a -_.d=_.c=_.b=null}, -a4g:function a4g(a,b){this.a=a -this.b=b}, -a4l:function a4l(a){this.a=a}, -a4k:function a4k(a){this.a=a}, -a4m:function a4m(a){this.a=a}, -a4j:function a4j(a,b){this.a=a -this.b=b}, -a4i:function a4i(a){this.a=a}, -a4h:function a4h(a){this.a=a}, -zD:function zD(a,b){this.a=a -this.b=b}, -mn:function mn(a,b){this.a=a -this.b=b}, -a5K:function a5K(a,b,c,d,e){var _=this -_.e=_.d=null -_.f=a -_.r=b -_.z=_.y=_.x=_.w=null -_.Q=0 -_.as=c -_.a=d -_.b=null -_.c=e}, -a6x:function a6x(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.w=_.r=null -_.x=1 -_.Q=_.z=_.y=null -_.as=!1}, -a_p:function a_p(){}, -i5:function i5(a){this.a=a}, -a5X:function a5X(a,b,c){this.a=a -this.b=b -this.c=c}, -azK:function azK(){}, -aA2:function aA2(a,b){this.a=a -this.b=b}, -aA1:function aA1(a,b){this.a=a -this.b=b}, -a5G:function a5G(a){this.a=a}, -Pa:function Pa(a){this.a=a -this.b=$}, -LM:function LM(){}, -zO:function zO(a,b){this.a=a -this.b=b}, -zQ:function zQ(a){this.a=a}, -ua:function ua(a,b){this.a=a -this.b=b}, -Oj:function Oj(a,b,c,d,e,f,g,h,i){var _=this -_.b=a -_.c=b -_.d=c -_.e=d -_.f=e -_.r=f -_.w=g -_.x=h -_.Q=i}, -ad_:function ad_(){}, -ad0:function ad0(a){this.a=a}, -acX:function acX(){}, -acY:function acY(a){this.a=a}, -acZ:function acZ(a){this.a=a}, -op:function op(a,b){this.a=a -this.b=b}, -rg:function rg(a,b){this.a=a -this.b=b}, -jD:function jD(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f}, -C6:function C6(a){this.a=a}, -N4:function N4(a,b){this.a=a -this.b=b}, -lp:function lp(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -aAS:function aAS(a,b){this.a=a -this.b=b}, -aAR:function aAR(a,b){this.a=a -this.b=b}, -Sw:function Sw(a,b,c,d,e){var _=this -_.a=a -_.b=$ -_.c=b -_.d=c -_.e=d -_.f=e -_.w=_.r=null}, -am2:function am2(){}, -am3:function am3(){}, -am4:function am4(a){this.a=a}, -am5:function am5(a){this.a=a}, -am6:function am6(){}, -rE:function rE(a,b,c){this.a=a -this.b=b -this.c=c}, -p5:function p5(a,b,c){this.a=a -this.b=b -this.c=c}, -qC:function qC(a,b,c){this.a=a -this.b=b -this.c=c}, -am1:function am1(a){this.a=a}, -Oq:function Oq(a){this.a=a}, -aBQ:function aBQ(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -ub:function ub(a,b){var _=this -_.a=$ -_.b=a -_.c=b -_.d=!1}, -LO:function LO(){}, -FS:function FS(a,b,c){var _=this -_.a=a -_.b=b -_.c=c -_.d=$}, -FT:function FT(a,b){this.a=a -this.b=b -this.c=$}, -LK:function LK(a,b,c,d){var _=this -_.a=$ -_.b=a -_.c=b -_.d=0 -_.e=-1 -_.f=c -_.r=d -_.w=!1}, -zP:function zP(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.e=_.d=$ -_.f=!1 -_.r=0 -_.w=null -_.x=d}, -fC:function fC(){}, -ai2:function ai2(a){this.c=a}, -ahc:function ahc(a,b){this.a=a -this.b=b}, -up:function up(){}, -RN:function RN(a,b){this.c=a -this.a=null -this.b=b}, -Lf:function Lf(a,b,c,d){var _=this -_.f=a -_.r=b -_.c=c -_.a=null -_.b=d}, -LX:function LX(a,b,c,d){var _=this -_.f=a -_.r=b -_.c=c -_.a=null -_.b=d}, -M0:function M0(a,b,c,d){var _=this -_.f=a -_.r=b -_.c=c -_.a=null -_.b=d}, -LZ:function LZ(a,b,c,d){var _=this -_.f=a -_.r=b -_.c=c -_.a=null -_.b=d}, -Q3:function Q3(a,b,c,d){var _=this -_.f=a -_.r=b -_.c=c -_.a=null -_.b=d}, -Fg:function Fg(a,b,c){var _=this -_.f=a -_.c=b -_.a=null -_.b=c}, -Q1:function Q1(a,b,c){var _=this -_.f=a -_.c=b -_.a=null -_.b=c}, -Sn:function Sn(a,b,c,d,e,f){var _=this -_.f=a -_.r=b -_.w=c -_.x=d -_.c=e -_.a=null -_.b=f}, -QC:function QC(a,b,c){var _=this -_.c=a -_.d=b -_.a=null -_.b=c}, -OT:function OT(a){this.a=a}, -aeD:function aeD(a){this.a=a -this.b=$}, -aeE:function aeE(a,b){this.a=a -this.b=b}, -aaG:function aaG(a,b,c){this.a=a -this.b=b -this.c=c}, -aaH:function aaH(a,b,c){this.a=a -this.b=b -this.c=c}, -aaI:function aaI(a,b,c){this.a=a -this.b=b -this.c=c}, -a6p:function a6p(){}, -a5Z:function a5Z(a,b){this.a=a -this.b=b -this.c=$}, -LQ:function LQ(a){this.a=a}, -aA4:function aA4(){}, -agH:function agH(){}, -fn:function fn(a,b){this.a=null -this.b=a -this.$ti=b}, -Mb:function Mb(a,b){var _=this -_.a=$ -_.b=1 -_.c=a -_.$ti=b}, -uc:function uc(a,b,c,d,e,f){var _=this -_.a=a -_.b=$ -_.c=null -_.d=b -_.e=c -_.f=0 -_.r=d -_.w=e -_.x=!0 -_.y=4278190080 -_.z=!1 -_.ax=_.at=_.as=_.Q=null -_.ay=f -_.CW=_.ch=null}, -zR:function zR(a){this.a=$ -this.b=a}, -LU:function LU(a){var _=this -_.a=$ -_.b=a -_.c=!1 -_.d=null}, -ny:function ny(){this.c=this.b=this.a=null}, -aig:function aig(a,b){this.a=a -this.b=b}, -u5:function u5(a,b){this.a=a -this.b=b}, -LC:function LC(){var _=this -_.a=null -_.b=$ -_.c=null -_.d=$}, -a5H:function a5H(a){this.a=a}, -Sq:function Sq(){}, -LN:function LN(a,b,c,d,e,f){var _=this -_.b=a -_.c=b -_.d=c -_.e=d -_.f=e -_.r=f -_.a=$}, -EA:function EA(a,b){this.a=a -this.b=b}, -ld:function ld(a){var _=this -_.a=null -_.b=!0 -_.c=!1 -_.w=_.r=_.f=_.e=_.d=null -_.x=a -_.y=null -_.at=_.as=_.Q=_.z=-1 -_.ax=!1 -_.ch=_.ay=null -_.CW=-1}, -anE:function anE(a){this.a=a}, -LV:function LV(a,b){this.a=a -this.b=b -this.c=!1}, -T2:function T2(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=$ -_.d=c -_.e=d}, -LT:function LT(a,b,c,d,e,f,g){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g}, -zT:function zT(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0 -_.db=a1 -_.dy=_.dx=$}, -a60:function a60(a){this.a=a}, -zS:function zS(a,b,c,d,e,f,g,h,i){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i}, -LS:function LS(a){var _=this -_.a=$ -_.b=-1/0 -_.c=a -_.d=0 -_.e=!1 -_.z=_.y=_.x=_.w=_.r=_.f=0 -_.Q=$ -_.as=!1}, -LP:function LP(a){this.a=a}, -a6_:function a6_(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=0 -_.d=c -_.e=d}, -aA8:function aA8(a){this.a=a}, -Bj:function Bj(a,b){this.a=a -this.b=b}, -LB:function LB(a){this.a=a}, -M1:function M1(a,b){this.a=a -this.b=b}, -a6h:function a6h(a,b){this.a=a -this.b=b}, -a6i:function a6i(a,b){this.a=a -this.b=b}, -a6f:function a6f(a){this.a=a}, -a6g:function a6g(a,b){this.a=a -this.b=b}, -a6e:function a6e(a){this.a=a}, -a6c:function a6c(){}, -a6d:function a6d(){}, -a9h:function a9h(){}, -a9i:function a9i(){}, -aa7:function aa7(){this.a=!1 -this.b=null}, -a7B:function a7B(a){this.a=a}, -a7D:function a7D(){}, -Om:function Om(a,b){this.a=a -this.b=b}, -ad6:function ad6(a){this.a=a}, -Ol:function Ol(a,b){this.a=a -this.b=b}, -B8:function B8(a,b){this.a=a -this.b=b}, -MX:function MX(a,b,c){this.a=a -this.b=b -this.c=c}, -Al:function Al(a,b){this.a=a -this.b=b}, -aAM:function aAM(a){this.a=a}, -aAt:function aAt(){}, -Wk:function Wk(a,b){this.a=a -this.b=-1 -this.$ti=b}, -eO:function eO(a,b){this.a=a -this.$ti=b}, -Wp:function Wp(a,b){this.a=a -this.b=-1 -this.$ti=b}, -mW:function mW(a,b){this.a=a -this.$ti=b}, -MV:function MV(a,b){this.a=a -this.b=$ -this.$ti=b}, -NG:function NG(a){var _=this -_.a=a -_.e=_.d=_.c=_.b=null -_.y=_.x=_.w=_.r=_.f=$}, -aac:function aac(a){this.a=a}, -aad:function aad(a){this.a=a}, -a8S:function a8S(){}, -RZ:function RZ(a,b){this.a=a -this.b=b}, -rO:function rO(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -a_o:function a_o(a,b){this.a=a -this.b=b}, -akb:function akb(){}, -aBU:function aBU(){}, -aBT:function aBT(){}, -aan:function aan(a,b,c,d,e,f,g,h,i,j,k,l,m){var _=this -_.a=a -_.b=$ -_.c=b -_.d=c -_.f=d -_.r=e -_.w=f -_.x=g -_.y=h -_.z=i -_.Q=j -_.as=k -_.at=l -_.ax=m -_.ay=!1}, -aao:function aao(){}, -aap:function aap(){}, -aaq:function aaq(){}, -aar:function aar(){}, -aas:function aas(){}, -aat:function aat(){}, -aav:function aav(){}, -aau:function aau(a){this.a=a}, -aaw:function aaw(a){this.a=a}, -aax:function aax(a){this.a=a}, -Nm:function Nm(a,b,c){var _=this -_.a=a -_.c=b -_.d=c -_.f=null}, -a9o:function a9o(a,b,c){this.a=a -this.b=b -this.c=c}, -uX:function uX(a,b){this.a=a -this.b=b}, -qD:function qD(a,b){this.a=a -this.b=b}, -AZ:function AZ(a){this.a=a}, -aAX:function aAX(a){this.a=a}, -aAY:function aAY(a){this.a=a}, -aAZ:function aAZ(){}, -aAW:function aAW(){}, -f0:function f0(){}, -NN:function NN(){}, -AW:function AW(){}, -AY:function AY(){}, -zn:function zn(){}, -hE:function hE(a,b){this.a=a -this.$ti=b}, -Mc:function Mc(a){this.b=this.a=null -this.$ti=a}, -xA:function xA(a,b,c){this.a=a -this.b=b -this.$ti=c}, -CA:function CA(a,b,c,d){var _=this -_.CW=a -_.dx=_.db=_.cy=_.cx=null -_.dy=$ -_.fr=null -_.x=b -_.a=c -_.b=-1 -_.c=d -_.w=_.r=_.f=_.e=_.d=null}, -lK:function lK(a,b,c,d,e,f,g,h,i){var _=this -_.a=a -_.b=null -_.c=b -_.d=c -_.e=null -_.f=d -_.r=e -_.w=f -_.x=0 -_.y=g -_.Q=_.z=null -_.ax=_.at=_.as=!1 -_.ay=h -_.ch=i}, -cV:function cV(a){this.b=a}, -any:function any(a){this.a=a}, -Gg:function Gg(){}, -CC:function CC(a,b,c,d,e,f){var _=this -_.CW=a -_.cx=b -_.hF$=c -_.x=d -_.a=e -_.b=-1 -_.c=f -_.w=_.r=_.f=_.e=_.d=null}, -Qw:function Qw(a,b,c,d,e,f){var _=this -_.CW=a -_.cx=b -_.hF$=c -_.x=d -_.a=e -_.b=-1 -_.c=f -_.w=_.r=_.f=_.e=_.d=null}, -CB:function CB(a,b,c,d,e){var _=this -_.CW=a -_.cx=b -_.cy=null -_.x=c -_.a=d -_.b=-1 -_.c=e -_.w=_.r=_.f=_.e=_.d=null}, -anG:function anG(a,b,c){this.a=a -this.b=b -this.c=c}, -anF:function anF(a,b){this.a=a -this.b=b}, -a7w:function a7w(a,b,c,d){var _=this -_.a=a -_.X4$=b -_.vR$=c -_.lC$=d}, -CD:function CD(a,b,c,d,e){var _=this -_.CW=a -_.cx=b -_.cy=null -_.x=c -_.a=d -_.b=-1 -_.c=e -_.w=_.r=_.f=_.e=_.d=null}, -CE:function CE(a,b,c,d,e){var _=this -_.CW=a -_.cx=b -_.cy=null -_.x=c -_.a=d -_.b=-1 -_.c=e -_.w=_.r=_.f=_.e=_.d=null}, -wR:function wR(a){this.a=a -this.b=!1}, -T3:function T3(){var _=this -_.e=_.d=_.c=_.b=_.a=null -_.f=!0 -_.r=4278190080 -_.z=_.y=_.x=_.w=null}, -hz:function hz(a,b,c,d,e,f,g){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g}, -aid:function aid(){var _=this -_.d=_.c=_.b=_.a=0}, -a6s:function a6s(){var _=this -_.d=_.c=_.b=_.a=0}, -Vm:function Vm(){this.b=this.a=null}, -a6C:function a6C(){var _=this -_.d=_.c=_.b=_.a=0}, -oW:function oW(a,b){var _=this -_.a=a -_.b=b -_.c=0 -_.e=_.d=-1}, -ahk:function ahk(a,b,c){var _=this -_.a=a -_.b=b -_.c=c -_.d=!1 -_.e=0 -_.f=-1 -_.Q=_.z=_.y=_.x=_.w=_.r=0}, -vP:function vP(a,b){var _=this -_.b=_.a=null -_.e=_.d=_.c=0 -_.f=a -_.r=b -_.x=_.w=0 -_.y=null -_.z=0 -_.as=_.Q=!0 -_.ch=_.ay=_.ax=_.at=!1 -_.CW=-1 -_.cx=0}, -os:function os(a){var _=this -_.a=a -_.b=-1 -_.e=_.d=_.c=0}, -my:function my(){this.b=this.a=null}, -am0:function am0(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f}, -ahm:function ahm(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.e=_.d=0 -_.f=d}, -oq:function oq(a,b){this.a=a -this.b=b}, -Qz:function Qz(a,b,c,d,e,f,g){var _=this -_.ch=null -_.CW=a -_.cx=b -_.cy=c -_.db=d -_.dy=1 -_.fr=!1 -_.fx=e -_.id=_.go=_.fy=null -_.a=f -_.b=-1 -_.c=g -_.w=_.r=_.f=_.e=_.d=null}, -ahq:function ahq(a){this.a=a}, -aiH:function aiH(a,b,c){var _=this -_.a=a -_.b=null -_.c=b -_.d=c -_.f=_.e=!1 -_.r=1}, -dx:function dx(){}, -Aq:function Aq(){}, -Cw:function Cw(){}, -Qn:function Qn(){}, -Qr:function Qr(a,b){this.a=a -this.b=b}, -Qp:function Qp(a,b){this.a=a -this.b=b}, -Qo:function Qo(a){this.a=a}, -Qq:function Qq(a){this.a=a}, -Qb:function Qb(a,b){var _=this -_.f=a -_.r=b -_.a=!1 -_.c=_.b=-1/0 -_.e=_.d=1/0}, -Qa:function Qa(a){var _=this -_.f=a -_.a=!1 -_.c=_.b=-1/0 -_.e=_.d=1/0}, -Q9:function Q9(a){var _=this -_.f=a -_.a=!1 -_.c=_.b=-1/0 -_.e=_.d=1/0}, -Qf:function Qf(a,b,c){var _=this -_.f=a -_.r=b -_.w=c -_.a=!1 -_.c=_.b=-1/0 -_.e=_.d=1/0}, -Qh:function Qh(a){var _=this -_.f=a -_.a=!1 -_.c=_.b=-1/0 -_.e=_.d=1/0}, -Ql:function Ql(a,b){var _=this -_.f=a -_.r=b -_.a=!1 -_.c=_.b=-1/0 -_.e=_.d=1/0}, -Qk:function Qk(a,b){var _=this -_.f=a -_.r=b -_.a=!1 -_.c=_.b=-1/0 -_.e=_.d=1/0}, -Qd:function Qd(a,b,c){var _=this -_.f=a -_.r=b -_.w=c -_.x=null -_.a=!1 -_.c=_.b=-1/0 -_.e=_.d=1/0}, -Qg:function Qg(a,b){var _=this -_.f=a -_.r=b -_.a=!1 -_.c=_.b=-1/0 -_.e=_.d=1/0}, -Qc:function Qc(a,b,c){var _=this -_.f=a -_.r=b -_.w=c -_.a=!1 -_.c=_.b=-1/0 -_.e=_.d=1/0}, -Qj:function Qj(a,b){var _=this -_.f=a -_.r=b -_.a=!1 -_.c=_.b=-1/0 -_.e=_.d=1/0}, -Qm:function Qm(a,b,c,d){var _=this -_.f=a -_.r=b -_.w=c -_.x=d -_.a=!1 -_.c=_.b=-1/0 -_.e=_.d=1/0}, -Qe:function Qe(a,b,c,d){var _=this -_.f=a -_.r=b -_.w=c -_.x=d -_.a=!1 -_.c=_.b=-1/0 -_.e=_.d=1/0}, -Qi:function Qi(a,b){var _=this -_.f=a -_.r=b -_.a=!1 -_.c=_.b=-1/0 -_.e=_.d=1/0}, -avM:function avM(a,b,c,d){var _=this -_.a=a -_.b=!1 -_.d=_.c=17976931348623157e292 -_.f=_.e=-17976931348623157e292 -_.r=b -_.w=c -_.x=!0 -_.y=d -_.z=!1 -_.ax=_.at=_.as=_.Q=0}, -ajD:function ajD(){var _=this -_.d=_.c=_.b=_.a=!1}, -azi:function azi(){}, -acU:function acU(){this.b=this.a=$}, -acV:function acV(){}, -acW:function acW(a,b){this.a=a -this.b=b}, -wS:function wS(a){this.a=a}, -CF:function CF(a,b,c){var _=this -_.CW=null -_.x=a -_.a=b -_.b=-1 -_.c=c -_.w=_.r=_.f=_.e=_.d=null}, -anz:function anz(a){this.a=a}, -anB:function anB(a){this.a=a}, -anC:function anC(a){this.a=a}, -CG:function CG(a,b,c,d,e,f,g){var _=this -_.CW=null -_.cx=a -_.cy=b -_.db=c -_.dy=null -_.fr=d -_.x=e -_.a=f -_.b=-1 -_.c=g -_.w=_.r=_.f=_.e=_.d=null}, -agW:function agW(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -agX:function agX(){}, -aly:function aly(){this.a=null -this.b=!1}, -Na:function Na(){}, -qI:function qI(a,b,c,d,e,f){var _=this -_.b=a -_.c=b -_.d=c -_.e=d -_.f=e -_.r=f}, -abx:function abx(a,b,c,d,e,f,g){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g}, -lY:function lY(){}, -FI:function FI(a,b,c){this.a=a -this.b=b -this.c=c}, -Hm:function Hm(a,b){this.a=a -this.b=b}, -Nb:function Nb(){}, -C1:function C1(a,b){this.b=a -this.c=b -this.a=null}, -afw:function afw(){}, -Sm:function Sm(a,b,c,d,e){var _=this -_.b=a -_.c=b -_.e=null -_.w=_.r=_.f=0 -_.y=c -_.z=d -_.Q=null -_.as=e}, -E3:function E3(a,b){this.b=a -this.c=b -this.d=1}, -rX:function rX(a,b,c){this.a=a -this.b=b -this.c=c}, -aAH:function aAH(){}, -rp:function rp(a,b){this.a=a -this.b=b}, -dM:function dM(){}, -Qy:function Qy(){}, -ep:function ep(){}, -ahp:function ahp(){}, -pp:function pp(a,b,c){this.a=a -this.b=b -this.c=c}, -ai3:function ai3(){this.b=0}, -CH:function CH(a,b,c,d){var _=this -_.CW=a -_.cy=_.cx=null -_.x=b -_.a=c -_.b=-1 -_.c=d -_.w=_.r=_.f=_.e=_.d=null}, -B7:function B7(a,b){this.a=a -this.b=b}, -acN:function acN(a,b,c){this.a=a -this.b=b -this.c=c}, -acO:function acO(a,b){this.a=a -this.b=b}, -acL:function acL(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -acM:function acM(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -Of:function Of(a,b){this.a=a -this.b=b}, -Eb:function Eb(a){this.a=a}, -Oi:function Oi(a,b,c){var _=this -_.a=a -_.c=_.b=!1 -_.d=b -_.e=c}, -Ly:function Ly(){}, -a5i:function a5i(){}, -a5j:function a5j(a){this.a=a}, -z4:function z4(a,b){this.a=a -this.b=b}, -mc:function mc(a,b){this.a=a -this.b=b}, -qg:function qg(a,b){this.a=a -this.b=b}, -aBh:function aBh(){}, -aBi:function aBi(a){this.a=a}, -aBg:function aBg(a){this.a=a}, -aBj:function aBj(){}, -Oz:function Oz(a,b){this.a=a -this.$ti=b}, -ae_:function ae_(a,b){this.a=a -this.b=b}, -ae0:function ae0(a){this.a=a}, -ae2:function ae2(a){this.a=a}, -ae1:function ae1(a){this.a=a}, -kJ:function kJ(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.f=_.e=null -_.$ti=e}, -aB4:function aB4(a,b){this.a=a -this.b=b}, -aB2:function aB2(a,b){this.a=a -this.b=b}, -aB3:function aB3(a){this.a=a}, -aAa:function aAa(){}, -aAb:function aAb(){}, -aAc:function aAc(){}, -aAd:function aAd(){}, -aAe:function aAe(){}, -aAf:function aAf(){}, -aAg:function aAg(){}, -aAh:function aAh(){}, -azG:function azG(a,b,c){this.a=a -this.b=b -this.c=c}, -ON:function ON(a){this.a=$ -this.b=a}, -aek:function aek(a){this.a=a}, -ael:function ael(a){this.a=a}, -aem:function aem(a){this.a=a}, -aeo:function aeo(a){this.a=a}, -kC:function kC(a){this.a=a}, -aep:function aep(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=null -_.e=!1 -_.f=d -_.r=e}, -aev:function aev(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -aew:function aew(a){this.a=a}, -aex:function aex(a,b,c){this.a=a -this.b=b -this.c=c}, -aey:function aey(a,b){this.a=a -this.b=b}, -aer:function aer(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -aes:function aes(a,b,c){this.a=a -this.b=b -this.c=c}, -aet:function aet(a,b){this.a=a -this.b=b}, -aeu:function aeu(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -aeq:function aeq(a,b,c){this.a=a -this.b=b -this.c=c}, -aez:function aez(a,b){this.a=a -this.b=b}, -ag7:function ag7(){}, -a5h:function a5h(){}, -C3:function C3(a){var _=this -_.d=a -_.a=_.e=$ -_.c=_.b=!1}, -agh:function agh(){}, -Ea:function Ea(a,b){var _=this -_.d=a -_.e=b -_.f=null -_.a=$ -_.c=_.b=!1}, -alX:function alX(){}, -alY:function alY(){}, -a0:function a0(a,b,c){var _=this -_.a=a -_.b=b -_.c=c -_.d=$}, -lQ:function lQ(a,b){this.a=a -this.b=b}, -agB:function agB(a){this.a=a}, -Nd:function Nd(){this.a=null -this.b=$ -this.c=!1}, -Nc:function Nc(a){this.a=!1 -this.b=a}, -Oa:function Oa(a,b){this.a=a -this.b=b -this.c=$}, -Ne:function Ne(a,b,c,d,e){var _=this -_.a=a -_.d=b -_.e=c -_.id=_.go=_.fy=_.fx=_.fr=_.dy=_.cy=_.ch=_.ay=_.ax=_.at=_.as=_.Q=_.z=_.y=_.x=_.w=_.r=_.f=null -_.k1=d -_.p4=_.p3=_.p2=_.k4=_.k3=_.k2=null -_.R8=e -_.ry=null}, -a94:function a94(a,b,c){this.a=a -this.b=b -this.c=c}, -a93:function a93(a,b){this.a=a -this.b=b}, -a9_:function a9_(a,b){this.a=a -this.b=b}, -a90:function a90(a,b){this.a=a -this.b=b}, -a91:function a91(){}, -a92:function a92(a,b){this.a=a -this.b=b}, -a8Z:function a8Z(a){this.a=a}, -a8Y:function a8Y(a){this.a=a}, -a8X:function a8X(a){this.a=a}, -a95:function a95(a,b){this.a=a -this.b=b}, -aBl:function aBl(a,b,c){this.a=a -this.b=b -this.c=c}, -Ue:function Ue(){}, -QU:function QU(a,b,c,d,e,f,g,h){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h}, -ahJ:function ahJ(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -ahK:function ahK(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -ahL:function ahL(a,b){this.b=a -this.c=b}, -ak9:function ak9(){}, -aka:function aka(){}, -QX:function QX(a,b,c){var _=this -_.a=a -_.c=b -_.d=c -_.e=$}, -ahW:function ahW(){}, -Hc:function Hc(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -arj:function arj(){}, -ark:function ark(a){this.a=a}, -a1G:function a1G(){}, -lv:function lv(a,b){this.a=a -this.b=b}, -tn:function tn(){this.a=0}, -avP:function avP(a,b,c,d,e,f){var _=this -_.w=a -_.a=b -_.b=c -_.c=d -_.d=e -_.e=f -_.f=null -_.r=!1}, -avR:function avR(){}, -avQ:function avQ(a,b,c){this.a=a -this.b=b -this.c=c}, -avS:function avS(a){this.a=a}, -avT:function avT(a){this.a=a}, -avU:function avU(a){this.a=a}, -avV:function avV(a){this.a=a}, -avW:function avW(a){this.a=a}, -avX:function avX(a){this.a=a}, -ayU:function ayU(a,b,c,d,e,f){var _=this -_.w=a -_.a=b -_.b=c -_.c=d -_.d=e -_.e=f -_.f=null -_.r=!1}, -ayV:function ayV(a,b,c){this.a=a -this.b=b -this.c=c}, -ayW:function ayW(a){this.a=a}, -ayX:function ayX(a){this.a=a}, -ayY:function ayY(a){this.a=a}, -ayZ:function ayZ(a){this.a=a}, -avw:function avw(a,b,c,d,e,f){var _=this -_.w=a -_.a=b -_.b=c -_.c=d -_.d=e -_.e=f -_.f=null -_.r=!1}, -avx:function avx(a,b,c){this.a=a -this.b=b -this.c=c}, -avy:function avy(a){this.a=a}, -avz:function avz(a){this.a=a}, -avA:function avA(a){this.a=a}, -avB:function avB(a){this.a=a}, -avC:function avC(a){this.a=a}, -yh:function yh(a,b){this.a=null -this.b=a -this.c=b}, -ahO:function ahO(a){this.a=a -this.b=0}, -ahP:function ahP(a,b){this.a=a -this.b=b}, -aDX:function aDX(){}, -aij:function aij(a,b){var _=this -_.a=a -_.c=_.b=null -_.d=0 -_.e=b}, -aik:function aik(a){this.a=a}, -ail:function ail(a){this.a=a}, -aim:function aim(a){this.a=a}, -aio:function aio(a,b,c){this.a=a -this.b=b -this.c=c}, -aip:function aip(a){this.a=a}, -O0:function O0(a){this.a=a}, -O_:function O_(a){var _=this -_.a=a -_.fx=_.fr=_.dy=_.CW=_.ch=_.ay=_.ax=_.w=_.r=_.f=_.e=_.d=_.c=null}, -ah0:function ah0(a,b){var _=this -_.b=_.a=null -_.c=a -_.d=b}, -zm:function zm(a,b){this.a=a -this.b=b}, -a3N:function a3N(a,b){this.a=a -this.b=b}, -a3O:function a3O(a){this.a=a}, -FR:function FR(a,b){this.a=a -this.b=b}, -a5W:function a5W(a,b,c){var _=this -_.e=a -_.a=b -_.b=c -_.c=null}, -MO:function MO(a,b){this.a=a -this.b=b -this.c=null}, -RR:function RR(a,b){var _=this -_.d=null -_.a=a -_.b=b -_.c=!1}, -ajX:function ajX(a){this.a=a}, -NL:function NL(a,b,c){var _=this -_.d=a -_.a=b -_.b=c -_.c=!1}, -KF:function KF(a){this.a=a -this.b=null}, -a3Q:function a3Q(a){this.a=a}, -a3R:function a3R(a){this.a=a}, -a3P:function a3P(a,b,c){this.a=a -this.b=b -this.c=c}, -adu:function adu(a,b){var _=this -_.e=null -_.a=a -_.b=b -_.c=null}, -adC:function adC(a,b,c,d){var _=this -_.e=a -_.f=b -_.r=1 -_.w=null -_.x=!1 -_.a=c -_.b=d -_.c=null}, -adD:function adD(a,b){this.a=a -this.b=b}, -adE:function adE(a){this.a=a}, -OO:function OO(a,b){this.a=a -this.b=b -this.c=!1}, -P3:function P3(a,b){var _=this -_.d=null -_.a=a -_.b=b -_.c=!1}, -akJ:function akJ(a,b,c){var _=this -_.e=null -_.f=a -_.r=null -_.w=0 -_.a=b -_.b=c -_.c=null}, -akQ:function akQ(a){this.a=a}, -akR:function akR(a){this.a=a}, -akS:function akS(a){this.a=a}, -uJ:function uJ(a){this.a=a}, -a8N:function a8N(a){this.a=a}, -Sk:function Sk(a){this.a=a}, -Si:function Si(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9){var _=this -_.a=a -_.b=b -_.c=c -_.f=d -_.r=e -_.w=f -_.x=g -_.y=h -_.z=i -_.Q=j -_.as=k -_.at=l -_.ax=m -_.ay=n -_.ch=o -_.CW=p -_.cx=q -_.cy=r -_.db=s -_.dx=a0 -_.dy=a1 -_.fr=a2 -_.fx=a3 -_.fy=a4 -_.go=a5 -_.id=a6 -_.k1=a7 -_.k2=a8 -_.k4=a9}, -l0:function l0(a,b){this.a=a -this.b=b}, -rL:function rL(a,b){this.a=a -this.b=b}, -R_:function R_(){}, -aaT:function aaT(a,b){this.a=a -this.b=b -this.c=null}, -mA:function mA(){}, -rW:function rW(a,b,c){var _=this -_.a=0 -_.fy=_.fx=_.fr=_.dy=_.dx=_.db=_.cy=_.cx=_.CW=_.ch=_.ay=_.ax=_.at=_.as=_.Q=_.z=_.y=_.x=_.w=_.r=_.f=_.e=_.d=_.c=_.b=null -_.go=-1 -_.id=a -_.k1=b -_.k2=c -_.k3=-1 -_.p2=_.p1=_.ok=_.k4=null -_.p4=_.p3=0}, -ali:function ali(a){this.a=a}, -a3S:function a3S(a,b){this.a=a -this.b=b}, -qF:function qF(a,b){this.a=a -this.b=b}, -E0:function E0(a,b){this.a=a -this.b=b}, -a96:function a96(a,b,c,d,e,f,g,h,i){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=null -_.r=f -_.w=g -_.x=!1 -_.z=h -_.Q=null -_.as=i}, -a97:function a97(a){this.a=a}, -a98:function a98(a,b){this.a=a -this.b=b}, -a9a:function a9a(){}, -a99:function a99(a){this.a=a}, -AB:function AB(a,b){this.a=a -this.b=b}, -ald:function ald(a){this.a=a}, -al9:function al9(){}, -a75:function a75(){this.a=null}, -a76:function a76(a){this.a=a}, -ag1:function ag1(){var _=this -_.b=_.a=null -_.c=0 -_.d=!1}, -ag3:function ag3(a){this.a=a}, -ag2:function ag2(a){this.a=a}, -a5o:function a5o(a,b){this.a=a -this.b=b -this.c=null}, -Ti:function Ti(a,b){var _=this -_.d=null -_.a=a -_.b=b -_.c=!1}, -anU:function anU(a){this.a=a}, -alo:function alo(a,b,c,d,e,f){var _=this -_.cx=_.CW=_.ch=null -_.a=a -_.b=!1 -_.c=null -_.d=$ -_.y=_.x=_.w=_.r=_.f=_.e=null -_.z=b -_.Q=!1 -_.a$=c -_.b$=d -_.c$=e -_.d$=f}, -aoq:function aoq(a,b){var _=this -_.f=_.e=null -_.a=a -_.b=b -_.c=null}, -aor:function aor(a){this.a=a}, -aos:function aos(a){this.a=a}, -aot:function aot(a,b){this.a=a -this.b=b}, -aou:function aou(a){this.a=a}, -aov:function aov(a){this.a=a}, -aow:function aow(a){this.a=a}, -lz:function lz(){}, -Xx:function Xx(){}, -TW:function TW(a,b){this.a=a -this.b=b}, -iO:function iO(a,b){this.a=a -this.b=b}, -ae8:function ae8(){}, -aea:function aea(){}, -amu:function amu(){}, -amv:function amv(a,b){this.a=a -this.b=b}, -amx:function amx(){}, -aqn:function aqn(a,b,c){var _=this -_.a=!1 -_.b=a -_.c=b -_.d=c}, -Ra:function Ra(a){this.a=a -this.b=0}, -anD:function anD(a,b){this.a=a -this.b=b}, -LD:function LD(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=!1 -_.f=null -_.w=_.r=$ -_.x=null -_.y=!1}, -a5J:function a5J(){}, -rn:function rn(a,b,c){this.a=a -this.b=b -this.c=c}, -vW:function vW(a,b,c,d,e,f,g){var _=this -_.f=a -_.r=b -_.w=c -_.a=d -_.b=e -_.c=f -_.d=g}, -wQ:function wQ(){}, -LH:function LH(a,b){this.b=a -this.c=b -this.a=null}, -RO:function RO(a){this.b=a -this.a=null}, -a5I:function a5I(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=0 -_.r=f -_.w=!0}, -acQ:function acQ(){}, -acR:function acR(a,b,c){this.a=a -this.b=b -this.c=c}, -acS:function acS(a){this.a=a}, -acT:function acT(a){this.a=a}, -aoy:function aoy(){}, -aox:function aox(){}, -aeH:function aeH(a,b){this.b=a -this.a=b}, -asl:function asl(){}, -jy:function jy(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q){var _=this -_.BH$=a -_.qW$=b -_.h8$=c -_.ky$=d -_.mJ$=e -_.mK$=f -_.mL$=g -_.f7$=h -_.f8$=i -_.c=j -_.d=k -_.e=l -_.f=m -_.r=n -_.w=o -_.a=p -_.b=q}, -atH:function atH(){}, -atI:function atI(){}, -atG:function atG(){}, -N2:function N2(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q){var _=this -_.BH$=a -_.qW$=b -_.h8$=c -_.ky$=d -_.mJ$=e -_.mK$=f -_.mL$=g -_.f7$=h -_.f8$=i -_.c=j -_.d=k -_.e=l -_.f=m -_.r=n -_.w=o -_.a=p -_.b=q}, -p1:function p1(a,b,c){var _=this -_.a=a -_.b=-1 -_.c=0 -_.d=null -_.f=_.e=0 -_.w=_.r=-1 -_.x=!1 -_.y=b -_.z=c -_.as=_.Q=$}, -aeJ:function aeJ(a,b,c,d,e,f){var _=this -_.a=a -_.b=null -_.c=b -_.d=c -_.e=d -_.f=e -_.r=f -_.z=_.y=_.x=_.w=0 -_.Q=-1 -_.ax=_.at=_.as=0}, -SR:function SR(a){this.a=a -this.c=this.b=null}, -oe:function oe(a,b){this.a=a -this.b=b}, -a9l:function a9l(a){this.a=a}, -aqe:function aqe(a,b){this.b=a -this.a=b}, -od:function od(a,b,c,d,e){var _=this -_.c=a -_.d=b -_.e=c -_.a=d -_.b=e}, -azO:function azO(a,b,c){this.a=a -this.b=b -this.c=c}, -RU:function RU(a){this.a=a}, -aoX:function aoX(a){this.a=a}, -kz:function kz(a,b,c,d,e,f,g,h,i){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i}, -kY:function kY(a,b,c,d,e,f,g,h,i){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i}, -AC:function AC(a,b,c,d,e,f,g,h,i,j,k){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.z=j -_.Q=k}, -AE:function AE(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0 -_.db=a1 -_.dx=null -_.dy=$}, -AD:function AD(a,b,c,d,e,f,g,h,i){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i}, -ahh:function ahh(){}, -EW:function EW(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=$}, -aom:function aom(a){this.a=a -this.b=null}, -Tu:function Tu(a,b,c){var _=this -_.a=a -_.b=b -_.d=_.c=$ -_.e=c -_.r=_.f=$}, -uY:function uY(a,b){this.a=a -this.b=b}, -pT:function pT(a,b,c,d){var _=this -_.c=a -_.d=b -_.a=c -_.b=d}, -FU:function FU(a,b){this.a=a -this.b=b}, -da:function da(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.$ti=d}, -mO:function mO(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.$ti=d}, -WQ:function WQ(a,b,c){this.c=a -this.a=b -this.b=c}, -a5d:function a5d(a){this.a=a}, -M8:function M8(){}, -a8V:function a8V(){}, -agR:function agR(){}, -a9b:function a9b(){}, -a7F:function a7F(){}, -abl:function abl(){}, -agP:function agP(){}, -ai4:function ai4(){}, -akU:function akU(){}, -alq:function alq(){}, -a8W:function a8W(){}, -agT:function agT(){}, -aoO:function aoO(){}, -agY:function agY(){}, -a6U:function a6U(){}, -ahu:function ahu(){}, -a8I:function a8I(){}, -aq1:function aq1(){}, -PK:function PK(){}, -wZ:function wZ(a,b){this.a=a -this.b=b}, -ER:function ER(a){this.a=a}, -a8O:function a8O(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -a8R:function a8R(){}, -a8P:function a8P(a,b){this.a=a -this.b=b}, -a8Q:function a8Q(a,b,c){this.a=a -this.b=b -this.c=c}, -L8:function L8(a,b,c,d){var _=this -_.a=a -_.b=b -_.d=c -_.e=d}, -x1:function x1(a,b,c,d,e,f,g,h){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h}, -uF:function uF(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -adU:function adU(a,b,c,d,e,f,g,h,i){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i}, -O1:function O1(a,b,c,d,e,f){var _=this -_.a=a -_.b=!1 -_.c=null -_.d=$ -_.y=_.x=_.w=_.r=_.f=_.e=null -_.z=b -_.Q=!1 -_.a$=c -_.b$=d -_.c$=e -_.d$=f}, -RW:function RW(a,b,c,d,e,f){var _=this -_.a=a -_.b=!1 -_.c=null -_.d=$ -_.y=_.x=_.w=_.r=_.f=_.e=null -_.z=b -_.Q=!1 -_.a$=c -_.b$=d -_.c$=e -_.d$=f}, -ak8:function ak8(a){this.a=a}, -Ad:function Ad(){}, -a7_:function a7_(a){this.a=a}, -a70:function a70(){}, -a71:function a71(){}, -a72:function a72(){}, -adb:function adb(a,b,c,d,e,f){var _=this -_.ok=null -_.p1=!0 -_.a=a -_.b=!1 -_.c=null -_.d=$ -_.y=_.x=_.w=_.r=_.f=_.e=null -_.z=b -_.Q=!1 -_.a$=c -_.b$=d -_.c$=e -_.d$=f}, -ade:function ade(a){this.a=a}, -adf:function adf(a,b){this.a=a -this.b=b}, -adc:function adc(a){this.a=a}, -add:function add(a){this.a=a}, -a49:function a49(a,b,c,d,e,f){var _=this -_.a=a -_.b=!1 -_.c=null -_.d=$ -_.y=_.x=_.w=_.r=_.f=_.e=null -_.z=b -_.Q=!1 -_.a$=c -_.b$=d -_.c$=e -_.d$=f}, -a4a:function a4a(a){this.a=a}, -aa_:function aa_(a,b,c,d,e,f){var _=this -_.a=a -_.b=!1 -_.c=null -_.d=$ -_.y=_.x=_.w=_.r=_.f=_.e=null -_.z=b -_.Q=!1 -_.a$=c -_.b$=d -_.c$=e -_.d$=f}, -aa1:function aa1(a){this.a=a}, -aa2:function aa2(a){this.a=a}, -aa0:function aa0(a){this.a=a}, -aoB:function aoB(){}, -aoI:function aoI(a,b){this.a=a -this.b=b}, -aoP:function aoP(){}, -aoK:function aoK(a){this.a=a}, -aoN:function aoN(){}, -aoJ:function aoJ(a){this.a=a}, -aoM:function aoM(a){this.a=a}, -aoz:function aoz(){}, -aoF:function aoF(){}, -aoL:function aoL(){}, -aoH:function aoH(){}, -aoG:function aoG(){}, -aoE:function aoE(a){this.a=a}, -aBS:function aBS(){}, -aon:function aon(a){this.a=a}, -aoo:function aoo(a){this.a=a}, -ad8:function ad8(){var _=this -_.a=$ -_.b=null -_.c=!1 -_.d=null -_.f=$}, -ada:function ada(a){this.a=a}, -ad9:function ad9(a){this.a=a}, -a8v:function a8v(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -a7V:function a7V(a,b,c){this.a=a -this.b=b -this.c=c}, -a7W:function a7W(){}, -aB5:function aB5(a,b,c){this.a=a -this.b=b -this.c=c}, -Fh:function Fh(a,b){this.a=a -this.b=b}, -aAF:function aAF(){}, -P6:function P6(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.$ti=d}, -cm:function cm(a){this.a=a}, -a9p:function a9p(a){this.a=a -this.c=this.b=0}, -Ms:function Ms(a,b){this.a=a -this.b=$ -this.c=b}, -a6M:function a6M(a){this.a=a}, -a6L:function a6L(){}, -a79:function a79(){}, -NT:function NT(a){this.a=$ -this.b=a}, -a6N:function a6N(a,b,c){var _=this -_.d=a -_.a=null -_.ay$=b -_.ch$=c}, -a6O:function a6O(a){this.a=a}, -a8J:function a8J(){}, -asp:function asp(){}, -Vo:function Vo(){}, -aaL:function aaL(a,b){this.a=null -this.ay$=a -this.ch$=b}, -aaM:function aaM(a){this.a=a}, -N9:function N9(){}, -a8T:function a8T(a){this.a=a}, -a8U:function a8U(a,b){this.a=a -this.b=b}, -Nf:function Nf(a,b,c,d){var _=this -_.x=null -_.a=a -_.b=b -_.c=null -_.d=c -_.e=$ -_.f=d -_.r=null}, -Uf:function Uf(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -W7:function W7(){}, -Wj:function Wj(){}, -WI:function WI(){}, -XK:function XK(){}, -XL:function XL(){}, -XM:function XM(){}, -YT:function YT(){}, -YU:function YU(){}, -a27:function a27(){}, -a2h:function a2h(){}, -aDp:function aDp(){}, -qN(a){return new A.Ok(a)}, -aDi(a){var s,r,q,p,o,n,m,l,k,j,i,h=" ",g={} -g.a=0 -g.b=null -s=new A.ad1(g,a) -r=new A.ad3(g,a) -q=new A.ad4(g,a) -p=new A.ad5(g,a,2,0,1).$0() -if(p===2){o=r.$1(h) -s=g.a -if(a.charCodeAt(s)===32)g.a=s+1 -n=q.$1(h) -m=q.$1(":") -l=q.$1(":") -k=q.$1(h) -j=q.$1("")}else{s.$1(h) -i=p===0 -n=q.$1(i?h:"-") -o=r.$1(i?h:"-") -j=q.$1(h) -m=q.$1(":") -l=q.$1(":") -k=q.$1(h) -s.$1("GMT")}new A.ad2(g,a).$0() -g=A.aKi(j,o+1,n,m,l,k,0,!0) -if(!A.n9(g))A.U(A.tI(g)) -return new A.dX(g,!0)}, -Ok:function Ok(a){this.a=a}, -ad1:function ad1(a,b){this.a=a -this.b=b}, -ad5:function ad5(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -ad3:function ad3(a,b){this.a=a -this.b=b}, -ad4:function ad4(a,b){this.a=a -this.b=b}, -ad2:function ad2(a,b){this.a=a -this.b=b}, -b5k(){return $}, -c3(a,b,c){if(b.i("a7<0>").b(a))return new A.Gu(a,b.i("@<0>").a5(c).i("Gu<1,2>")) -return new A.q_(a,b.i("@<0>").a5(c).i("q_<1,2>"))}, -mi(a){return new A.ic("Field '"+a+"' has not been initialized.")}, -fB(a){return new A.ic("Local '"+a+"' has not been initialized.")}, -mj(a){return new A.ic("Local '"+a+"' has already been initialized.")}, -aWz(a){return new A.eU(a)}, -aBa(a){var s,r=a^48 -if(r<=9)return r -s=a|32 -if(97<=s&&s<=102)return s-87 -return-1}, -aOP(a,b){var s=A.aBa(a.charCodeAt(b)),r=A.aBa(a.charCodeAt(b+1)) -return s*16+r-(r&256)}, -P(a,b){a=a+b&536870911 -a=a+((a&524287)<<10)&536870911 -return a^a>>>6}, -eL(a){a=a+((a&67108863)<<3)&536870911 -a^=a>>>11 -return a+((a&16383)<<15)&536870911}, -b0o(a,b,c){return A.eL(A.P(A.P(c,a),b))}, -b0p(a,b,c,d,e){return A.eL(A.P(A.P(A.P(A.P(e,a),b),c),d))}, -fc(a,b,c){return a}, -aFC(a){var s,r -for(s=$.tN.length,r=0;rc)A.U(A.bZ(b,0,c,"start",null))}return new A.hk(a,b,c,d.i("hk<0>"))}, -iN(a,b,c,d){if(t.Ee.b(a))return new A.qm(a,b,c.i("@<0>").a5(d).i("qm<1,2>")) -return new A.eG(a,b,c.i("@<0>").a5(d).i("eG<1,2>"))}, -aEe(a,b,c){var s="takeCount" -A.tV(b,s) -A.e_(b,s) -if(t.Ee.b(a))return new A.Av(a,b,c.i("Av<0>")) -return new A.t2(a,b,c.i("t2<0>"))}, -aE8(a,b,c){var s="count" -if(t.Ee.b(a)){A.tV(b,s) -A.e_(b,s) -return new A.uG(a,b,c.i("uG<0>"))}A.tV(b,s) -A.e_(b,s) -return new A.mG(a,b,c.i("mG<0>"))}, -aIK(a,b,c){if(c.i("a7<0>").b(b))return new A.Au(a,b,c.i("Au<0>")) -return new A.m6(a,b,c.i("m6<0>"))}, -cd(){return new A.iW("No element")}, -ae4(){return new A.iW("Too many elements")}, -aJ2(){return new A.iW("Too few elements")}, -aKT(a,b){A.SJ(a,0,J.b4(a)-1,b)}, -SJ(a,b,c,d){if(c-b<=32)A.t1(a,b,c,d) -else A.t0(a,b,c,d)}, -t1(a,b,c,d){var s,r,q,p,o -for(s=b+1,r=J.X(a);s<=c;++s){q=r.h(a,s) -p=s -while(!0){if(!(p>b&&d.$2(r.h(a,p-1),q)>0))break -o=p-1 -r.m(a,p,r.h(a,o)) -p=o}r.m(a,p,q)}}, -t0(a3,a4,a5,a6){var s,r,q,p,o,n,m,l,k,j,i=B.h.dj(a5-a4+1,6),h=a4+i,g=a5-i,f=B.h.dj(a4+a5,2),e=f-i,d=f+i,c=J.X(a3),b=c.h(a3,h),a=c.h(a3,e),a0=c.h(a3,f),a1=c.h(a3,d),a2=c.h(a3,g) -if(a6.$2(b,a)>0){s=a -a=b -b=s}if(a6.$2(a1,a2)>0){s=a2 -a2=a1 -a1=s}if(a6.$2(b,a0)>0){s=a0 -a0=b -b=s}if(a6.$2(a,a0)>0){s=a0 -a0=a -a=s}if(a6.$2(b,a1)>0){s=a1 -a1=b -b=s}if(a6.$2(a0,a1)>0){s=a1 -a1=a0 -a0=s}if(a6.$2(a,a2)>0){s=a2 -a2=a -a=s}if(a6.$2(a,a0)>0){s=a0 -a0=a -a=s}if(a6.$2(a1,a2)>0){s=a2 -a2=a1 -a1=s}c.m(a3,h,b) -c.m(a3,f,a0) -c.m(a3,g,a2) -c.m(a3,e,c.h(a3,a4)) -c.m(a3,d,c.h(a3,a5)) -r=a4+1 -q=a5-1 -if(J.e(a6.$2(a,a1),0)){for(p=r;p<=q;++p){o=c.h(a3,p) -n=a6.$2(o,a) -if(n===0)continue -if(n<0){if(p!==r){c.m(a3,p,c.h(a3,r)) -c.m(a3,r,o)}++r}else for(;!0;){n=a6.$2(c.h(a3,q),a) -if(n>0){--q -continue}else{m=q-1 -if(n<0){c.m(a3,p,c.h(a3,r)) -l=r+1 -c.m(a3,r,c.h(a3,q)) -c.m(a3,q,o) -q=m -r=l -break}else{c.m(a3,p,c.h(a3,q)) -c.m(a3,q,o) -q=m -break}}}}k=!0}else{for(p=r;p<=q;++p){o=c.h(a3,p) -if(a6.$2(o,a)<0){if(p!==r){c.m(a3,p,c.h(a3,r)) -c.m(a3,r,o)}++r}else if(a6.$2(o,a1)>0)for(;!0;)if(a6.$2(c.h(a3,q),a1)>0){--q -if(qg){for(;J.e(a6.$2(c.h(a3,r),a),0);)++r -for(;J.e(a6.$2(c.h(a3,q),a1),0);)--q -for(p=r;p<=q;++p){o=c.h(a3,p) -if(a6.$2(o,a)===0){if(p!==r){c.m(a3,p,c.h(a3,r)) -c.m(a3,r,o)}++r}else if(a6.$2(o,a1)===0)for(;!0;)if(a6.$2(c.h(a3,q),a1)===0){--q -if(q")),!0,b),l=m.length,k=0 -while(!0){if(!(k").a5(c).i("bG<1,2>")) -n.$keys=m -return n}return new A.q5(A.qY(a,b,c),b.i("@<0>").a5(c).i("q5<1,2>"))}, -aCG(){throw A.d(A.V("Cannot modify unmodifiable Map"))}, -aCH(){throw A.d(A.V("Cannot modify constant Set"))}, -aP5(a){var s=v.mangledGlobalNames[a] -if(s!=null)return s -return"minified:"+a}, -aOu(a,b){var s -if(b!=null){s=b.x -if(s!=null)return s}return t.dC.b(a)}, -j(a){var s -if(typeof a=="string")return a -if(typeof a=="number"){if(a!==0)return""+a}else if(!0===a)return"true" -else if(!1===a)return"false" -else if(a==null)return"null" -s=J.di(a) -return s}, -z(a,b,c,d,e,f){return new A.Bm(a,c,d,e,f)}, -bcK(a,b,c,d,e,f){return new A.Bm(a,c,d,e,f)}, -fi(a){var s,r=$.aK8 -if(r==null)r=$.aK8=Symbol("identityHashCode") -s=a[r] -if(s==null){s=Math.random()*0x3fffffff|0 -a[r]=s}return s}, -aDW(a,b){var s,r,q,p,o,n=null,m=/^\s*[+-]?((0x[a-f0-9]+)|(\d+)|([a-z0-9]+))\s*$/i.exec(a) -if(m==null)return n -s=m[3] -if(b==null){if(s!=null)return parseInt(a,10) -if(m[2]!=null)return parseInt(a,16) -return n}if(b<2||b>36)throw A.d(A.bZ(b,2,36,"radix",n)) -if(b===10&&s!=null)return parseInt(a,10) -if(b<10||s==null){r=b<=10?47+b:86+b -q=m[1] -for(p=q.length,o=0;or)return n}return parseInt(a,b)}, -aKf(a){var s,r -if(!/^\s*[+-]?(?:Infinity|NaN|(?:\.\d+|\d+(?:\.\d*)?)(?:[eE][+-]?\d+)?)\s*$/.test(a))return null -s=parseFloat(a) -if(isNaN(s)){r=B.c.jd(a) -if(r==="NaN"||r==="+NaN"||r==="-NaN")return s -return null}return s}, -ai8(a){return A.b_6(a)}, -b_6(a){var s,r,q,p -if(a instanceof A.O)return A.i2(A.by(a),null) -s=J.kd(a) -if(s===B.GH||s===B.GV||t.kk.b(a)){r=B.m0(a) -if(r!=="Object"&&r!=="")return r -q=a.constructor -if(typeof q=="function"){p=q.name -if(typeof p=="string"&&p!=="Object"&&p!=="")return p}}return A.i2(A.by(a),null)}, -aKg(a){if(a==null||typeof a=="number"||A.iB(a))return J.di(a) -if(typeof a=="string")return JSON.stringify(a) -if(a instanceof A.nz)return a.k(0) -if(a instanceof A.i_)return a.TM(!0) -return"Instance of '"+A.ai8(a)+"'"}, -b_9(){return Date.now()}, -b_a(){var s,r -if($.ai9!==0)return -$.ai9=1000 -if(typeof window=="undefined")return -s=window -if(s==null)return -if(!!s.dartUseDateNowForTicks)return -r=s.performance -if(r==null)return -if(typeof r.now!="function")return -$.ai9=1e6 -$.R1=new A.ai7(r)}, -b_8(){if(!!self.location)return self.location.href -return null}, -aK7(a){var s,r,q,p,o=a.length -if(o<=500)return String.fromCharCode.apply(null,a) -for(s="",r=0;r65535)return A.b_b(a)}return A.aK7(a)}, -b_c(a,b,c){var s,r,q,p -if(c<=500&&b===0&&c===a.length)return String.fromCharCode.apply(null,a) -for(s=b,r="";s>>0,s&1023|56320)}}throw A.d(A.bZ(a,0,1114111,null,null))}, -aKi(a,b,c,d,e,f,g,h){var s,r=b-1 -if(0<=a&&a<100){a+=400 -r-=4800}s=h?Date.UTC(a,r,c,d,e,f,g):new Date(a,r,c,d,e,f,g).valueOf() -if(isNaN(s)||s<-864e13||s>864e13)return null -return s}, -hM(a){if(a.date===void 0)a.date=new Date(a.a) -return a.date}, -R0(a){return a.b?A.hM(a).getUTCFullYear()+0:A.hM(a).getFullYear()+0}, -aKd(a){return a.b?A.hM(a).getUTCMonth()+1:A.hM(a).getMonth()+1}, -aK9(a){return a.b?A.hM(a).getUTCDate()+0:A.hM(a).getDate()+0}, -aKa(a){return a.b?A.hM(a).getUTCHours()+0:A.hM(a).getHours()+0}, -aKc(a){return a.b?A.hM(a).getUTCMinutes()+0:A.hM(a).getMinutes()+0}, -aKe(a){return a.b?A.hM(a).getUTCSeconds()+0:A.hM(a).getSeconds()+0}, -aKb(a){return a.b?A.hM(a).getUTCMilliseconds()+0:A.hM(a).getMilliseconds()+0}, -oz(a,b,c){var s,r,q={} -q.a=0 -s=[] -r=[] -q.a=b.length -B.b.K(s,b) -q.b="" -if(c!=null&&c.a!==0)c.N(0,new A.ai6(q,r,s)) -return J.aVo(a,new A.Bm(B.Q7,0,s,r,0))}, -b_7(a,b,c){var s,r,q -if(Array.isArray(b))s=c==null||c.a===0 -else s=!1 -if(s){r=b.length -if(r===0){if(!!a.$0)return a.$0()}else if(r===1){if(!!a.$1)return a.$1(b[0])}else if(r===2){if(!!a.$2)return a.$2(b[0],b[1])}else if(r===3){if(!!a.$3)return a.$3(b[0],b[1],b[2])}else if(r===4){if(!!a.$4)return a.$4(b[0],b[1],b[2],b[3])}else if(r===5)if(!!a.$5)return a.$5(b[0],b[1],b[2],b[3],b[4]) -q=a[""+"$"+r] -if(q!=null)return q.apply(a,b)}return A.b_5(a,b,c)}, -b_5(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h,g=Array.isArray(b)?b:A.a8(b,!0,t.z),f=g.length,e=a.$R -if(fn)return A.oz(a,g,null) -if(fe)return A.oz(a,g,c) -if(g===b)g=A.a8(g,!0,t.z) -l=Object.keys(q) -if(c==null)for(r=l.length,k=0;k=s)return A.dv(b,s,a,null,r) -return A.aif(b,r)}, -b5v(a,b,c){if(a<0||a>c)return A.bZ(a,0,c,"start",null) -if(b!=null)if(bc)return A.bZ(b,a,c,"end",null) -return new A.iE(!0,b,"end",null)}, -tI(a){return new A.iE(!0,a,null,null)}, -lE(a){return a}, -d(a){return A.aOp(new Error(),a)}, -aOp(a,b){var s -if(b==null)b=new A.mM() -a.dartException=b -s=A.b7b -if("defineProperty" in Object){Object.defineProperty(a,"message",{get:s}) -a.name=""}else a.toString=s -return a}, -b7b(){return J.di(this.dartException)}, -U(a){throw A.d(a)}, -aBW(a,b){throw A.aOp(b,a)}, -N(a){throw A.d(A.c4(a))}, -mN(a){var s,r,q,p,o,n -a=A.aFK(a.replace(String({}),"$receiver$")) -s=a.match(/\\\$[a-zA-Z]+\\\$/g) -if(s==null)s=A.b([],t.s) -r=s.indexOf("\\$arguments\\$") -q=s.indexOf("\\$argumentsExpr\\$") -p=s.indexOf("\\$expr\\$") -o=s.indexOf("\\$method\\$") -n=s.indexOf("\\$receiver\\$") -return new A.apR(a.replace(new RegExp("\\\\\\$arguments\\\\\\$","g"),"((?:x|[^x])*)").replace(new RegExp("\\\\\\$argumentsExpr\\\\\\$","g"),"((?:x|[^x])*)").replace(new RegExp("\\\\\\$expr\\\\\\$","g"),"((?:x|[^x])*)").replace(new RegExp("\\\\\\$method\\\\\\$","g"),"((?:x|[^x])*)").replace(new RegExp("\\\\\\$receiver\\\\\\$","g"),"((?:x|[^x])*)"),r,q,p,o,n)}, -apS(a){return function($expr$){var $argumentsExpr$="$arguments$" -try{$expr$.$method$($argumentsExpr$)}catch(s){return s.message}}(a)}, -aLq(a){return function($expr$){try{$expr$.$method$}catch(s){return s.message}}(a)}, -aDr(a,b){var s=b==null,r=s?null:b.method -return new A.OD(a,r,s?null:b.receiver)}, -a6(a){if(a==null)return new A.PX(a) -if(a instanceof A.AG)return A.pJ(a,a.a) -if(typeof a!=="object")return a -if("dartException" in a)return A.pJ(a,a.dartException) -return A.b4v(a)}, -pJ(a,b){if(t.Lt.b(b))if(b.$thrownJsError==null)b.$thrownJsError=a -return b}, -b4v(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=null -if(!("message" in a))return a -s=a.message -if("number" in a&&typeof a.number=="number"){r=a.number -q=r&65535 -if((B.h.fH(r,16)&8191)===10)switch(q){case 438:return A.pJ(a,A.aDr(A.j(s)+" (Error "+q+")",e)) -case 445:case 5007:p=A.j(s) -return A.pJ(a,new A.Cm(p+" (Error "+q+")",e))}}if(a instanceof TypeError){o=$.aPY() -n=$.aPZ() -m=$.aQ_() -l=$.aQ0() -k=$.aQ3() -j=$.aQ4() -i=$.aQ2() -$.aQ1() -h=$.aQ6() -g=$.aQ5() -f=o.kM(s) -if(f!=null)return A.pJ(a,A.aDr(s,f)) -else{f=n.kM(s) -if(f!=null){f.method="call" -return A.pJ(a,A.aDr(s,f))}else{f=m.kM(s) -if(f==null){f=l.kM(s) -if(f==null){f=k.kM(s) -if(f==null){f=j.kM(s) -if(f==null){f=i.kM(s) -if(f==null){f=l.kM(s) -if(f==null){f=h.kM(s) -if(f==null){f=g.kM(s) -p=f!=null}else p=!0}else p=!0}else p=!0}else p=!0}else p=!0}else p=!0}else p=!0 -if(p)return A.pJ(a,new A.Cm(s,f==null?e:f.method))}}return A.pJ(a,new A.U_(typeof s=="string"?s:""))}if(a instanceof RangeError){if(typeof s=="string"&&s.indexOf("call stack")!==-1)return new A.Eq() -s=function(b){try{return String(b)}catch(d){}return null}(a) -return A.pJ(a,new A.iE(!1,e,e,typeof s=="string"?s.replace(/^RangeError:\s*/,""):s))}if(typeof InternalError=="function"&&a instanceof InternalError)if(typeof s=="string"&&s==="too much recursion")return new A.Eq() -return a}, -aJ(a){var s -if(a instanceof A.AG)return a.b -if(a==null)return new A.IH(a) -s=a.$cachedTrace -if(s!=null)return s -return a.$cachedTrace=new A.IH(a)}, -pI(a){if(a==null)return J.C(a) -if(typeof a=="object")return A.fi(a) -return J.C(a)}, -b51(a){if(typeof a=="number")return B.d.gA(a) -if(a instanceof A.J5)return A.fi(a) -if(a instanceof A.i_)return a.gA(a) -if(a instanceof A.mK)return a.gA(a) -return A.pI(a)}, -aO7(a,b){var s,r,q,p=a.length -for(s=0;s")) -s.c=a.e -return s}, -bcU(a,b,c){Object.defineProperty(a,b,{value:c,enumerable:false,writable:true,configurable:true})}, -b6p(a){var s,r,q,p,o,n=$.aOl.$1(a),m=$.aAT[n] -if(m!=null){Object.defineProperty(a,v.dispatchPropertyName,{value:m,enumerable:false,writable:true,configurable:true}) -return m.i}s=$.aBk[n] -if(s!=null)return s -r=v.interceptorsByTag[n] -if(r==null){q=$.aNG.$2(a,n) -if(q!=null){m=$.aAT[q] -if(m!=null){Object.defineProperty(a,v.dispatchPropertyName,{value:m,enumerable:false,writable:true,configurable:true}) -return m.i}s=$.aBk[q] -if(s!=null)return s -r=v.interceptorsByTag[q] -n=q}}if(r==null)return null -s=r.prototype -p=n[0] -if(p==="!"){m=A.aBH(s) -$.aAT[n]=m -Object.defineProperty(a,v.dispatchPropertyName,{value:m,enumerable:false,writable:true,configurable:true}) -return m.i}if(p==="~"){$.aBk[n]=s -return s}if(p==="-"){o=A.aBH(s) -Object.defineProperty(Object.getPrototypeOf(a),v.dispatchPropertyName,{value:o,enumerable:false,writable:true,configurable:true}) -return o.i}if(p==="+")return A.aOQ(a,s) -if(p==="*")throw A.d(A.cu(n)) -if(v.leafTags[n]===true){o=A.aBH(s) -Object.defineProperty(Object.getPrototypeOf(a),v.dispatchPropertyName,{value:o,enumerable:false,writable:true,configurable:true}) -return o.i}else return A.aOQ(a,s)}, -aOQ(a,b){var s=Object.getPrototypeOf(a) -Object.defineProperty(s,v.dispatchPropertyName,{value:J.aFE(b,s,null,null),enumerable:false,writable:true,configurable:true}) -return b}, -aBH(a){return J.aFE(a,!1,null,!!a.$ibI)}, -b6q(a,b,c){var s=b.prototype -if(v.leafTags[a]===true)return A.aBH(s) -else return J.aFE(s,c,null,null)}, -b64(){if(!0===$.aFz)return -$.aFz=!0 -A.b65()}, -b65(){var s,r,q,p,o,n,m,l -$.aAT=Object.create(null) -$.aBk=Object.create(null) -A.b63() -s=v.interceptorsByTag -r=Object.getOwnPropertyNames(s) -if(typeof window!="undefined"){window -q=function(){} -for(p=0;p=0 -else if(b instanceof A.mg){s=B.c.bK(a,c) -return b.b.test(s)}else{s=J.aGM(b,B.c.bK(a,c)) -return!s.ga8(s)}}, -aFt(a){if(a.indexOf("$",0)>=0)return a.replace(/\$/g,"$$$$") -return a}, -b6T(a,b,c,d){var s=b.FX(a,d) -if(s==null)return a -return A.aFP(a,s.b.index,s.gbg(s),c)}, -aFK(a){if(/[[\]{}()*+?.\\^$|]/.test(a))return a.replace(/[[\]{}()*+?.\\^$|]/g,"\\$&") -return a}, -e4(a,b,c){var s -if(typeof b=="string")return A.b6R(a,b,c) -if(b instanceof A.mg){s=b.gRD() -s.lastIndex=0 -return a.replace(s,A.aFt(c))}return A.b6Q(a,b,c)}, -b6Q(a,b,c){var s,r,q,p -for(s=J.aGM(b,a),s=s.ga9(s),r=0,q="";s.u();){p=s.gJ(s) -q=q+a.substring(r,p.gbM(p))+c -r=p.gbg(p)}s=q+a.substring(r) -return s.charCodeAt(0)==0?s:s}, -b6R(a,b,c){var s,r,q -if(b===""){if(a==="")return c -s=a.length -r=""+c -for(q=0;q=0)return a.split(b).join(c) -return a.replace(new RegExp(A.aFK(b),"g"),A.aFt(c))}, -aNA(a){return a}, -Km(a,b,c,d){var s,r,q,p,o,n,m -for(s=b.nY(0,a),s=new A.tj(s.a,s.b,s.c),r=t.Qz,q=0,p="";s.u();){o=s.d -if(o==null)o=r.a(o) -n=o.b -m=n.index -p=p+A.j(A.aNA(B.c.S(a,q,m)))+A.j(c.$1(o)) -q=m+n[0].length}s=p+A.j(A.aNA(B.c.bK(a,q))) -return s.charCodeAt(0)==0?s:s}, -aP1(a,b,c,d){var s,r,q,p -if(typeof b=="string"){s=a.indexOf(b,d) -if(s<0)return a -return A.aFP(a,s,s+b.length,c)}if(b instanceof A.mg)return d===0?a.replace(b.b,A.aFt(c)):A.b6T(a,b,c,d) -r=J.aUW(b,a,d) -q=r.ga9(r) -if(!q.u())return a -p=q.gJ(q) -return B.c.hM(a,p.gbM(p),p.gbg(p),c)}, -b6S(a,b,c,d){var s,r,q=b.nZ(0,a,d),p=new A.tj(q.a,q.b,q.c) -if(!p.u())return a -s=p.d -if(s==null)s=t.Qz.a(s) -r=A.j(c.$1(s)) -return B.c.hM(a,s.b.index,s.gbg(s),r)}, -aFP(a,b,c,d){return a.substring(0,b)+d+a.substring(c)}, -k5:function k5(a,b){this.a=a -this.b=b}, -yj:function yj(a,b){this.a=a -this.b=b}, -ZG:function ZG(a,b){this.a=a -this.b=b}, -ZH:function ZH(a,b,c){this.a=a -this.b=b -this.c=c}, -ZI:function ZI(a,b,c){this.a=a -this.b=b -this.c=c}, -HL:function HL(a,b,c){this.a=a -this.b=b -this.c=c}, -HM:function HM(a){this.a=a}, -q5:function q5(a,b){this.a=a -this.$ti=b}, -un:function un(){}, -a6t:function a6t(a,b,c){this.a=a -this.b=b -this.c=c}, -bG:function bG(a,b,c){this.a=a -this.b=b -this.$ti=c}, -tw:function tw(a,b){this.a=a -this.$ti=b}, -ph:function ph(a,b,c){var _=this -_.a=a -_.b=b -_.c=0 -_.d=null -_.$ti=c}, -d3:function d3(a,b){this.a=a -this.$ti=b}, -A0:function A0(){}, -fs:function fs(a,b,c){this.a=a -this.b=b -this.$ti=c}, -f1:function f1(a,b){this.a=a -this.$ti=b}, -Oy:function Oy(){}, -me:function me(a,b){this.a=a -this.$ti=b}, -Bm:function Bm(a,b,c,d,e){var _=this -_.a=a -_.c=b -_.d=c -_.e=d -_.f=e}, -ai7:function ai7(a){this.a=a}, -ai6:function ai6(a,b,c){this.a=a -this.b=b -this.c=c}, -apR:function apR(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f}, -Cm:function Cm(a,b){this.a=a -this.b=b}, -OD:function OD(a,b,c){this.a=a -this.b=b -this.c=c}, -U_:function U_(a){this.a=a}, -PX:function PX(a){this.a=a}, -AG:function AG(a,b){this.a=a -this.b=b}, -IH:function IH(a){this.a=a -this.b=null}, -nz:function nz(){}, -M2:function M2(){}, -M3:function M3(){}, -Tm:function Tm(){}, -SV:function SV(){}, -u_:function u_(a,b){this.a=a -this.b=b}, -VY:function VY(a){this.a=a}, -RV:function RV(a){this.a=a}, -awI:function awI(){}, -fA:function fA(a){var _=this -_.a=0 -_.f=_.e=_.d=_.c=_.b=null -_.r=0 -_.$ti=a}, -aef:function aef(a){this.a=a}, -aee:function aee(a,b){this.a=a -this.b=b}, -aed:function aed(a){this.a=a}, -aeP:function aeP(a,b){var _=this -_.a=a -_.b=b -_.d=_.c=null}, -bm:function bm(a,b){this.a=a -this.$ti=b}, -vp:function vp(a,b,c){var _=this -_.a=a -_.b=b -_.d=_.c=null -_.$ti=c}, -Bq:function Bq(a){var _=this -_.a=0 -_.f=_.e=_.d=_.c=_.b=null -_.r=0 -_.$ti=a}, -qU:function qU(a){var _=this -_.a=0 -_.f=_.e=_.d=_.c=_.b=null -_.r=0 -_.$ti=a}, -aBc:function aBc(a){this.a=a}, -aBd:function aBd(a){this.a=a}, -aBe:function aBe(a){this.a=a}, -i_:function i_(){}, -ZD:function ZD(){}, -ZE:function ZE(){}, -ZF:function ZF(){}, -mg:function mg(a,b){var _=this -_.a=a -_.b=b -_.d=_.c=null}, -y5:function y5(a){this.b=a}, -Uu:function Uu(a,b,c){this.a=a -this.b=b -this.c=c}, -tj:function tj(a,b,c){var _=this -_.a=a -_.b=b -_.c=c -_.d=null}, -wO:function wO(a,b,c){this.a=a -this.b=b -this.c=c}, -a0b:function a0b(a,b,c){this.a=a -this.b=b -this.c=c}, -a0c:function a0c(a,b,c){var _=this -_.a=a -_.b=b -_.c=c -_.d=null}, -b75(a){A.aBW(new A.ic("Field '"+a+u.N),new Error())}, -c(){A.aBW(new A.ic("Field '' has not been initialized."),new Error())}, -cQ(){A.aBW(new A.ic("Field '' has already been initialized."),new Error())}, -aW(){A.aBW(new A.ic("Field '' has been assigned during initialization."),new Error())}, -bg(a){var s=new A.arV(a) -return s.b=s}, -cO(a,b){var s=new A.aui(a,b) -return s.b=s}, -arV:function arV(a){this.a=a -this.b=null}, -aui:function aui(a,b){this.a=a -this.b=null -this.c=b}, -K3(a,b,c){}, -jg(a){var s,r,q -if(t.RP.b(a))return a -s=J.X(a) -r=A.aT(s.gp(a),null,!1,t.z) -for(q=0;q>>0!==a||a>=c)throw A.d(A.yN(b,a))}, -py(a,b,c){var s -if(!(a>>>0!==a))if(b==null)s=a>c -else s=b>>>0!==b||a>b||b>c -else s=!0 -if(s)throw A.d(A.b5v(a,b,c)) -if(b==null)return c -return b}, -C7:function C7(){}, -Cb:function Cb(){}, -C8:function C8(){}, -vD:function vD(){}, -on:function on(){}, -ik:function ik(){}, -C9:function C9(){}, -PN:function PN(){}, -PO:function PO(){}, -Ca:function Ca(){}, -PP:function PP(){}, -PQ:function PQ(){}, -Cc:function Cc(){}, -Cd:function Cd(){}, -ri:function ri(){}, -Ht:function Ht(){}, -Hu:function Hu(){}, -Hv:function Hv(){}, -Hw:function Hw(){}, -aKw(a,b){var s=b.c -return s==null?b.c=A.aEK(a,b.y,!0):s}, -aE2(a,b){var s=b.c -return s==null?b.c=A.J9(a,"at",[b.y]):s}, -aKx(a){var s=a.x -if(s===6||s===7||s===8)return A.aKx(a.y) -return s===12||s===13}, -b_w(a){return a.at}, -b6y(a,b){var s,r=b.length -for(s=0;s") -for(r=1;r=0)p+=" "+r[q];++q}return p+"})"}, -aN0(a3,a4,a5){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2=", " -if(a5!=null){s=a5.length -if(a4==null){a4=A.b([],t.s) -r=null}else r=a4.length -q=a4.length -for(p=s;p>0;--p)a4.push("T"+(q+p)) -for(o=t.X,n=t.ub,m="<",l="",p=0;p0){a0+=a1+"[" -for(a1="",p=0;p0){a0+=a1+"{" -for(a1="",p=0;p "+a}, -i2(a,b){var s,r,q,p,o,n,m=a.x -if(m===5)return"erased" -if(m===2)return"dynamic" -if(m===3)return"void" -if(m===1)return"Never" -if(m===4)return"any" -if(m===6){s=A.i2(a.y,b) -return s}if(m===7){r=a.y -s=A.i2(r,b) -q=r.x -return(q===12||q===13?"("+s+")":s)+"?"}if(m===8)return"FutureOr<"+A.i2(a.y,b)+">" -if(m===9){p=A.b4t(a.y) -o=a.z -return o.length>0?p+("<"+A.aNt(o,b)+">"):p}if(m===11)return A.b4b(a,b) -if(m===12)return A.aN0(a,b,null) -if(m===13)return A.aN0(a.y,b,a.z) -if(m===14){n=a.y -return b[b.length-1-n]}return"?"}, -b4t(a){var s=v.mangledGlobalNames[a] -if(s!=null)return s -return"minified:"+a}, -b2n(a,b){var s=a.tR[b] -for(;typeof s=="string";)s=a.tR[s] -return s}, -b2m(a,b){var s,r,q,p,o,n=a.eT,m=n[b] -if(m==null)return A.a1y(a,b,!1) -else if(typeof m=="number"){s=m -r=A.Ja(a,5,"#") -q=A.azf(s) -for(p=0;p0)p+="<"+A.J8(c)+">" -s=a.eC.get(p) -if(s!=null)return s -r=new A.iS(null,null) -r.x=9 -r.y=b -r.z=c -if(c.length>0)r.c=c[0] -r.at=p -q=A.n3(a,r) -a.eC.set(p,q) -return q}, -aEI(a,b,c){var s,r,q,p,o,n -if(b.x===10){s=b.y -r=b.z.concat(c)}else{r=c -s=b}q=s.at+(";<"+A.J8(r)+">") -p=a.eC.get(q) -if(p!=null)return p -o=new A.iS(null,null) -o.x=10 -o.y=s -o.z=r -o.at=q -n=A.n3(a,o) -a.eC.set(q,n) -return n}, -b2j(a,b,c){var s,r,q="+"+(b+"("+A.J8(c)+")"),p=a.eC.get(q) -if(p!=null)return p -s=new A.iS(null,null) -s.x=11 -s.y=b -s.z=c -s.at=q -r=A.n3(a,s) -a.eC.set(q,r) -return r}, -aMj(a,b,c){var s,r,q,p,o,n=b.at,m=c.a,l=m.length,k=c.b,j=k.length,i=c.c,h=i.length,g="("+A.J8(m) -if(j>0){s=l>0?",":"" -g+=s+"["+A.J8(k)+"]"}if(h>0){s=l>0?",":"" -g+=s+"{"+A.b2d(i)+"}"}r=n+(g+")") -q=a.eC.get(r) -if(q!=null)return q -p=new A.iS(null,null) -p.x=12 -p.y=b -p.z=c -p.at=r -o=A.n3(a,p) -a.eC.set(r,o) -return o}, -aEJ(a,b,c,d){var s,r=b.at+("<"+A.J8(c)+">"),q=a.eC.get(r) -if(q!=null)return q -s=A.b2f(a,b,c,r,d) -a.eC.set(r,s) -return s}, -b2f(a,b,c,d,e){var s,r,q,p,o,n,m,l -if(e){s=c.length -r=A.azf(s) -for(q=0,p=0;p0){n=A.nb(a,b,r,0) -m=A.K9(a,c,r,0) -return A.aEJ(a,n,m,c!==m)}}l=new A.iS(null,null) -l.x=13 -l.y=b -l.z=c -l.at=d -return A.n3(a,l)}, -aM_(a,b,c,d){return{u:a,e:b,r:c,s:[],p:0,n:d}}, -aM1(a){var s,r,q,p,o,n,m,l=a.r,k=a.s -for(s=l.length,r=0;r=48&&q<=57)r=A.b1S(r+1,q,l,k) -else if((((q|32)>>>0)-97&65535)<26||q===95||q===36||q===124)r=A.aM0(a,r,l,k,!1) -else if(q===46)r=A.aM0(a,r,l,k,!0) -else{++r -switch(q){case 44:break -case 58:k.push(!1) -break -case 33:k.push(!0) -break -case 59:k.push(A.po(a.u,a.e,k.pop())) -break -case 94:k.push(A.b2i(a.u,k.pop())) -break -case 35:k.push(A.Ja(a.u,5,"#")) -break -case 64:k.push(A.Ja(a.u,2,"@")) -break -case 126:k.push(A.Ja(a.u,3,"~")) -break -case 60:k.push(a.p) -a.p=k.length -break -case 62:A.b1U(a,k) -break -case 38:A.b1T(a,k) -break -case 42:p=a.u -k.push(A.aMl(p,A.po(p,a.e,k.pop()),a.n)) -break -case 63:p=a.u -k.push(A.aEK(p,A.po(p,a.e,k.pop()),a.n)) -break -case 47:p=a.u -k.push(A.aMk(p,A.po(p,a.e,k.pop()),a.n)) -break -case 40:k.push(-3) -k.push(a.p) -a.p=k.length -break -case 41:A.b1R(a,k) -break -case 91:k.push(a.p) -a.p=k.length -break -case 93:o=k.splice(a.p) -A.aM2(a.u,a.e,o) -a.p=k.pop() -k.push(o) -k.push(-1) -break -case 123:k.push(a.p) -a.p=k.length -break -case 125:o=k.splice(a.p) -A.b1W(a.u,a.e,o) -a.p=k.pop() -k.push(o) -k.push(-2) -break -case 43:n=l.indexOf("(",r) -k.push(l.substring(r,n)) -k.push(-4) -k.push(a.p) -a.p=k.length -r=n+1 -break -default:throw"Bad character "+q}}}m=k.pop() -return A.po(a.u,a.e,m)}, -b1S(a,b,c,d){var s,r,q=b-48 -for(s=c.length;a=48&&r<=57))break -q=q*10+(r-48)}d.push(q) -return a}, -aM0(a,b,c,d,e){var s,r,q,p,o,n,m=b+1 -for(s=c.length;m>>0)-97&65535)<26||r===95||r===36||r===124))q=r>=48&&r<=57 -else q=!0 -if(!q)break}}p=c.substring(b,m) -if(e){s=a.u -o=a.e -if(o.x===10)o=o.y -n=A.b2n(s,o.y)[p] -if(n==null)A.U('No "'+p+'" in "'+A.b_w(o)+'"') -d.push(A.Jb(s,o,n))}else d.push(p) -return m}, -b1U(a,b){var s,r=a.u,q=A.aLZ(a,b),p=b.pop() -if(typeof p=="string")b.push(A.J9(r,p,q)) -else{s=A.po(r,a.e,p) -switch(s.x){case 12:b.push(A.aEJ(r,s,q,a.n)) -break -default:b.push(A.aEI(r,s,q)) -break}}}, -b1R(a,b){var s,r,q,p,o,n=null,m=a.u,l=b.pop() -if(typeof l=="number")switch(l){case-1:s=b.pop() -r=n -break -case-2:r=b.pop() -s=n -break -default:b.push(l) -r=n -s=r -break}else{b.push(l) -r=n -s=r}q=A.aLZ(a,b) -l=b.pop() -switch(l){case-3:l=b.pop() -if(s==null)s=m.sEA -if(r==null)r=m.sEA -p=A.po(m,a.e,l) -o=new A.X3() -o.a=q -o.b=s -o.c=r -b.push(A.aMj(m,p,o)) -return -case-4:b.push(A.b2j(m,b.pop(),q)) -return -default:throw A.d(A.kj("Unexpected state under `()`: "+A.j(l)))}}, -b1T(a,b){var s=b.pop() -if(0===s){b.push(A.Ja(a.u,1,"0&")) -return}if(1===s){b.push(A.Ja(a.u,4,"1&")) -return}throw A.d(A.kj("Unexpected extended operation "+A.j(s)))}, -aLZ(a,b){var s=b.splice(a.p) -A.aM2(a.u,a.e,s) -a.p=b.pop() -return s}, -po(a,b,c){if(typeof c=="string")return A.J9(a,c,a.sEA) -else if(typeof c=="number"){b.toString -return A.b1V(a,b,c)}else return c}, -aM2(a,b,c){var s,r=c.length -for(s=0;sn)return!1 -m=n-o -l=s.b -k=r.b -j=l.length -i=k.length -if(o+j=d)return!1 -a1=f[b] -b+=3 -if(a00?new Array(q):v.typeUniverse.sEA -for(o=0;o0?new Array(a):v.typeUniverse.sEA}, -iS:function iS(a,b){var _=this -_.a=a -_.b=b -_.w=_.r=_.c=null -_.x=0 -_.at=_.as=_.Q=_.z=_.y=null}, -X3:function X3(){this.c=this.b=this.a=null}, -J5:function J5(a){this.a=a}, -WJ:function WJ(){}, -J6:function J6(a){this.a=a}, -b5Y(a,b){var s,r -if(B.c.bJ(a,"Digit"))return a.charCodeAt(5) -s=b.charCodeAt(0) -if(b.length<=1)r=!(s>=32&&s<=127) -else r=!0 -if(r){r=B.jX.h(0,a) -return r==null?null:r.charCodeAt(0)}if(!(s>=$.aQV()&&s<=$.aQW()))r=s>=$.aR5()&&s<=$.aR6() -else r=!0 -if(r)return b.toLowerCase().charCodeAt(0) -return null}, -b28(a){var s=A.m(t.S,t.N) -s.UR(s,B.jX.gfl(B.jX).ew(0,new A.axM(),t.q9)) -return new A.axL(a,s)}, -b4s(a){var s,r,q,p,o=a.Zu(),n=A.m(t.N,t.S) -for(s=a.a,r=0;r=2)return null -return a.toLowerCase().charCodeAt(0)}, -axL:function axL(a,b){this.a=a -this.b=b -this.c=0}, -axM:function axM(){}, -BL:function BL(a){this.a=a}, -bX:function bX(a,b){this.a=a -this.b=b}, -dR:function dR(a,b){this.a=a -this.b=b}, -b1g(){var s,r,q={} -if(self.scheduleImmediate!=null)return A.b4D() -if(self.MutationObserver!=null&&self.document!=null){s=self.document.createElement("div") -r=self.document.createElement("span") -q.a=null -new self.MutationObserver(A.pD(new A.ar3(q),1)).observe(s,{childList:true}) -return new A.ar2(q,s,r)}else if(self.setImmediate!=null)return A.b4E() -return A.b4F()}, -b1h(a){self.scheduleImmediate(A.pD(new A.ar4(a),0))}, -b1i(a){self.setImmediate(A.pD(new A.ar5(a),0))}, -b1j(a){A.aEk(B.q,a)}, -aEk(a,b){var s=B.h.dj(a.a,1000) -return A.b29(s<0?0:s,b)}, -aLk(a,b){var s=B.h.dj(a.a,1000) -return A.b2a(s<0?0:s,b)}, -b29(a,b){var s=new A.J2(!0) -s.a6e(a,b) -return s}, -b2a(a,b){var s=new A.J2(!1) -s.a6f(a,b) -return s}, -I(a){return new A.UM(new A.ae($.ai,a.i("ae<0>")),a.i("UM<0>"))}, -H(a,b){a.$2(0,null) -b.b=!0 -return b.a}, -K(a,b){A.aMI(a,b)}, -G(a,b){b.dm(0,a)}, -F(a,b){b.o8(A.a6(a),A.aJ(a))}, -aMI(a,b){var s,r,q=new A.azD(b),p=new A.azE(b) -if(a instanceof A.ae)a.TH(q,p,t.z) -else{s=t.z -if(t.L0.b(a))a.hj(0,q,p,s) -else{r=new A.ae($.ai,t.LR) -r.a=8 -r.c=a -r.TH(q,p,s)}}}, -D(a){var s=function(b,c){return function(d,e){while(true)try{b(d,e) -break}catch(r){e=r -d=c}}}(a,1) -return $.ai.Dg(new A.aAv(s))}, -px(a,b,c){var s,r,q,p -if(b===0){s=c.c -if(s!=null)s.pH(null) -else{s=c.a -s===$&&A.c() -s.aL(0)}return}else if(b===1){s=c.c -if(s!=null)s.fg(A.a6(a),A.aJ(a)) -else{s=A.a6(a) -r=A.aJ(a) -q=c.a -q===$&&A.c() -q.nW(s,r) -c.a.aL(0)}return}if(a instanceof A.H6){if(c.c!=null){b.$2(2,null) -return}s=a.b -if(s===0){s=a.a -r=c.a -r===$&&A.c() -r.E(0,s) -A.ey(new A.azB(c,b)) -return}else if(s===1){p=a.a -s=c.a -s===$&&A.c() -s.alN(0,p,!1).bQ(0,new A.azC(c,b),t.P) -return}}A.aMI(a,b)}, -aNz(a){var s=a.a -s===$&&A.c() -return new A.f9(s,A.p(s).i("f9<1>"))}, -b1k(a,b){var s=new A.UO(b.i("UO<0>")) -s.a6a(a,b) -return s}, -aNg(a,b){return A.b1k(a,b)}, -aLW(a){return new A.H6(a,1)}, -aLV(a){return new A.H6(a,0)}, -aMd(a,b,c){return 0}, -a4u(a,b){var s=A.fc(a,"error",t.K) -return new A.KZ(s,b==null?A.tW(a):b)}, -tW(a){var s -if(t.Lt.b(a)){s=a.gtk() -if(s!=null)return s}return B.D0}, -aYp(a,b){var s=new A.ae($.ai,b.i("ae<0>")) -A.cM(B.q,new A.aaQ(s,a)) -return s}, -dt(a,b){var s=a==null?b.a(a):a,r=new A.ae($.ai,b.i("ae<0>")) -r.iE(s) -return r}, -aDf(a,b,c){var s -A.fc(a,"error",t.K) -$.ai!==B.as -if(b==null)b=A.tW(a) -s=new A.ae($.ai,c.i("ae<0>")) -s.yo(a,b) -return s}, -NU(a,b,c){var s,r -if(b==null)s=!c.b(null) -else s=!1 -if(s)throw A.d(A.dW(null,"computation","The type parameter is not nullable")) -r=new A.ae($.ai,c.i("ae<0>")) -A.cM(a,new A.aaP(b,r,c)) -return r}, -kD(a,b){var s,r,q,p,o,n,m,l,k,j,i={},h=null,g=!1,f=new A.ae($.ai,b.i("ae>")) -i.a=null -i.b=0 -s=A.bg("error") -r=A.bg("stackTrace") -q=new A.aaS(i,h,g,f,s,r) -try{for(l=J.as(a),k=t.P;l.u();){p=l.gJ(l) -o=i.b -J.aVF(p,new A.aaR(i,o,f,h,g,s,r,b),q,k);++i.b}l=i.b -if(l===0){l=f -l.pH(A.b([],b.i("w<0>"))) -return l}i.a=A.aT(l,null,!1,b.i("0?"))}catch(j){n=A.a6(j) -m=A.aJ(j) -if(i.b===0||g)return A.aDf(n,m,b.i("B<0>")) -else{s.b=n -r.b=m}}return f}, -aYo(a,b,c,d){var s,r,q=new A.aaO(d,null,b,c) -if(a instanceof A.ae){s=$.ai -r=new A.ae(s,c.i("ae<0>")) -if(s!==B.as)q=s.Dg(q) -a.pD(new A.j9(r,2,null,q,a.$ti.i("@<1>").a5(c).i("j9<1,2>"))) -return r}return a.hj(0,new A.aaN(c),q,c)}, -aWC(a){return new A.b3(new A.ae($.ai,a.i("ae<0>")),a.i("b3<0>"))}, -aEU(a,b,c){if(c==null)c=A.tW(b) -a.fg(b,c)}, -aEs(a,b){var s,r -for(;s=a.a,(s&4)!==0;)a=a.c -if((s&24)!==0){r=b.zA() -b.yt(a) -A.xQ(b,r)}else{r=b.c -b.SY(a) -a.Hf(r)}}, -b1A(a,b){var s,r,q={},p=q.a=a -for(;s=p.a,(s&4)!==0;){p=p.c -q.a=p}if((s&24)===0){r=b.c -b.SY(p) -q.a.Hf(r) -return}if((s&16)===0&&b.c==null){b.yt(p) -return}b.a^=2 -A.pA(null,null,b.b,new A.atQ(q,b))}, -xQ(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g,f={},e=f.a=a -for(s=t.L0;!0;){r={} -q=e.a -p=(q&16)===0 -o=!p -if(b==null){if(o&&(q&1)===0){e=e.c -A.yL(e.a,e.b)}return}r.a=b -n=b.a -for(e=b;n!=null;e=n,n=m){e.a=null -A.xQ(f.a,e) -r.a=n -m=n.a}q=f.a -l=q.c -r.b=o -r.c=l -if(p){k=e.c -k=(k&1)!==0||(k&15)===8}else k=!0 -if(k){j=e.b.b -if(o){q=q.b===j -q=!(q||q)}else q=!1 -if(q){A.yL(l.a,l.b) -return}i=$.ai -if(i!==j)$.ai=j -else i=null -e=e.c -if((e&15)===8)new A.atX(r,f,o).$0() -else if(p){if((e&1)!==0)new A.atW(r,l).$0()}else if((e&2)!==0)new A.atV(f,r).$0() -if(i!=null)$.ai=i -e=r.c -if(s.b(e)){q=r.a.$ti -q=q.i("at<2>").b(e)||!q.z[1].b(e)}else q=!1 -if(q){h=r.a.b -if(e instanceof A.ae)if((e.a&24)!==0){g=h.c -h.c=null -b=h.zG(g) -h.a=e.a&30|h.a&1 -h.c=e.c -f.a=e -continue}else A.aEs(e,h) -else h.F9(e) -return}}h=r.a.b -g=h.c -h.c=null -b=h.zG(g) -e=r.b -q=r.c -if(!e){h.a=8 -h.c=q}else{h.a=h.a&1|16 -h.c=q}f.a=h -e=h}}, -aNo(a,b){if(t.Hg.b(a))return b.Dg(a) -if(t.C_.b(a))return a -throw A.d(A.dW(a,"onError",u.w))}, -b45(){var s,r -for(s=$.yK;s!=null;s=$.yK){$.K7=null -r=s.b -$.yK=r -if(r==null)$.K6=null -s.a.$0()}}, -b4j(){$.aF6=!0 -try{A.b45()}finally{$.K7=null -$.aF6=!1 -if($.yK!=null)$.aGf().$1(A.aNJ())}}, -aNw(a){var s=new A.UN(a),r=$.K6 -if(r==null){$.yK=$.K6=s -if(!$.aF6)$.aGf().$1(A.aNJ())}else $.K6=r.b=s}, -b4g(a){var s,r,q,p=$.yK -if(p==null){A.aNw(a) -$.K7=$.K6 -return}s=new A.UN(a) -r=$.K7 -if(r==null){s.b=p -$.yK=$.K7=s}else{q=r.b -s.b=q -$.K7=r.b=s -if(q==null)$.K6=s}}, -ey(a){var s,r=null,q=$.ai -if(B.as===q){A.pA(r,r,B.as,a) -return}s=!1 -if(s){A.pA(r,r,q,a) -return}A.pA(r,r,q,q.IH(a))}, -aKW(a,b){var s=null,r=b.i("pa<0>"),q=new A.pa(s,s,s,s,r) -q.kf(0,a) -q.P6() -return new A.f9(q,r.i("f9<1>"))}, -b9v(a,b){A.fc(a,"stream",t.K) -return new A.a09(b.i("a09<0>"))}, -SW(a,b,c,d){return new A.pa(b,null,c,a,d.i("pa<0>"))}, -a3a(a){var s,r,q -if(a==null)return -try{a.$0()}catch(q){s=A.a6(q) -r=A.aJ(q) -A.yL(s,r)}}, -b1t(a,b,c,d,e,f){var s=$.ai,r=e?1:0,q=A.arm(s,b),p=A.aEq(s,c),o=d==null?A.aFi():d -return new A.pd(a,q,p,o,s,r,f.i("pd<0>"))}, -b1d(a){return new A.aqx(a)}, -arm(a,b){return b==null?A.b4G():b}, -aEq(a,b){if(b==null)b=A.b4H() -if(t.hK.b(b))return a.Dg(b) -if(t.lO.b(b))return b -throw A.d(A.bF("handleError callback must take either an Object (the error), or both an Object (the error) and a StackTrace.",null))}, -b48(a){}, -b4a(a,b){A.yL(a,b)}, -b49(){}, -aEr(a,b){var s=new A.xE($.ai,a,b.i("xE<0>")) -s.SB() -return s}, -b1e(a,b,c,d){var s=new A.xt(a,null,c,$.ai,d.i("xt<0>")) -s.e=new A.xu(s.gafE(),s.gafg(),d.i("xu<0>")) -return s}, -b4c(a,b,c){var s,r,q,p,o,n -try{b.$1(a.$0())}catch(n){s=A.a6(n) -r=A.aJ(n) -q=null -if(q==null)c.$2(s,r) -else{p=J.aV7(q) -o=q.gtk() -c.$2(p,o)}}}, -b2Q(a,b,c,d){var s=a.bb(0),r=$.pK() -if(s!==r)s.fY(new A.azI(b,c,d)) -else b.fg(c,d)}, -b2R(a,b){return new A.azH(a,b)}, -b2S(a,b,c){var s=a.bb(0),r=$.pK() -if(s!==r)s.fY(new A.azJ(b,c)) -else b.mc(c)}, -aEP(a,b,c){a.iD(b,c)}, -cM(a,b){var s=$.ai -if(s===B.as)return A.aEk(a,b) -return A.aEk(a,s.IH(b))}, -aLj(a,b){var s=$.ai -if(s===B.as)return A.aLk(a,b) -return A.aLk(a,s.Vk(b,t.qe))}, -yL(a,b){A.b4g(new A.aAp(a,b))}, -aNq(a,b,c,d){var s,r=$.ai -if(r===c)return d.$0() -$.ai=c -s=r -try{r=d.$0() -return r}finally{$.ai=s}}, -aNs(a,b,c,d,e){var s,r=$.ai -if(r===c)return d.$1(e) -$.ai=c -s=r -try{r=d.$1(e) -return r}finally{$.ai=s}}, -aNr(a,b,c,d,e,f){var s,r=$.ai -if(r===c)return d.$2(e,f) -$.ai=c -s=r -try{r=d.$2(e,f) -return r}finally{$.ai=s}}, -pA(a,b,c,d){if(B.as!==c)d=c.IH(d) -A.aNw(d)}, -ar3:function ar3(a){this.a=a}, -ar2:function ar2(a,b,c){this.a=a -this.b=b -this.c=c}, -ar4:function ar4(a){this.a=a}, -ar5:function ar5(a){this.a=a}, -J2:function J2(a){this.a=a -this.b=null -this.c=0}, -ayQ:function ayQ(a,b){this.a=a -this.b=b}, -ayP:function ayP(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -UM:function UM(a,b){this.a=a -this.b=!1 -this.$ti=b}, -azD:function azD(a){this.a=a}, -azE:function azE(a){this.a=a}, -aAv:function aAv(a){this.a=a}, -azB:function azB(a,b){this.a=a -this.b=b}, -azC:function azC(a,b){this.a=a -this.b=b}, -UO:function UO(a){var _=this -_.a=$ -_.b=!1 -_.c=null -_.$ti=a}, -ar7:function ar7(a){this.a=a}, -ar8:function ar8(a){this.a=a}, -ara:function ara(a){this.a=a}, -arb:function arb(a,b){this.a=a -this.b=b}, -ar9:function ar9(a,b){this.a=a -this.b=b}, -ar6:function ar6(a){this.a=a}, -H6:function H6(a,b){this.a=a -this.b=b}, -je:function je(a,b){var _=this -_.a=a -_.e=_.d=_.c=_.b=null -_.$ti=b}, -iy:function iy(a,b){this.a=a -this.$ti=b}, -KZ:function KZ(a,b){this.a=a -this.b=b}, -dh:function dh(a,b){this.a=a -this.$ti=b}, -tl:function tl(a,b,c,d,e,f,g){var _=this -_.ay=0 -_.CW=_.ch=null -_.w=a -_.a=b -_.b=c -_.c=d -_.d=e -_.e=f -_.r=_.f=null -_.$ti=g}, -j4:function j4(){}, -pt:function pt(a,b,c){var _=this -_.a=a -_.b=b -_.c=0 -_.r=_.f=_.e=_.d=null -_.$ti=c}, -axW:function axW(a,b){this.a=a -this.b=b}, -axY:function axY(a,b,c){this.a=a -this.b=b -this.c=c}, -axX:function axX(a){this.a=a}, -dG:function dG(a,b,c){var _=this -_.a=a -_.b=b -_.c=0 -_.r=_.f=_.e=_.d=null -_.$ti=c}, -xu:function xu(a,b,c){var _=this -_.ax=null -_.a=a -_.b=b -_.c=0 -_.r=_.f=_.e=_.d=null -_.$ti=c}, -aaQ:function aaQ(a,b){this.a=a -this.b=b}, -aaP:function aaP(a,b,c){this.a=a -this.b=b -this.c=c}, -aaS:function aaS(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f}, -aaR:function aaR(a,b,c,d,e,f,g,h){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h}, -aaO:function aaO(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -aaN:function aaN(a){this.a=a}, -xx:function xx(){}, -b3:function b3(a,b){this.a=a -this.$ti=b}, -IP:function IP(a,b){this.a=a -this.$ti=b}, -j9:function j9(a,b,c,d,e){var _=this -_.a=null -_.b=a -_.c=b -_.d=c -_.e=d -_.$ti=e}, -ae:function ae(a,b){var _=this -_.a=0 -_.b=a -_.c=null -_.$ti=b}, -atN:function atN(a,b){this.a=a -this.b=b}, -atU:function atU(a,b){this.a=a -this.b=b}, -atR:function atR(a){this.a=a}, -atS:function atS(a){this.a=a}, -atT:function atT(a,b,c){this.a=a -this.b=b -this.c=c}, -atQ:function atQ(a,b){this.a=a -this.b=b}, -atP:function atP(a,b){this.a=a -this.b=b}, -atO:function atO(a,b,c){this.a=a -this.b=b -this.c=c}, -atX:function atX(a,b,c){this.a=a -this.b=b -this.c=c}, -atY:function atY(a){this.a=a}, -atW:function atW(a,b){this.a=a -this.b=b}, -atV:function atV(a,b){this.a=a -this.b=b}, -UN:function UN(a){this.a=a -this.b=null}, -c1:function c1(){}, -amL:function amL(a){this.a=a}, -amJ:function amJ(a){this.a=a}, -amK:function amK(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -amH:function amH(a,b){this.a=a -this.b=b}, -amI:function amI(){}, -amM:function amM(a,b){this.a=a -this.b=b}, -amN:function amN(a,b){this.a=a -this.b=b}, -amF:function amF(a){this.a=a}, -amG:function amG(a,b,c){this.a=a -this.b=b -this.c=c}, -Ev:function Ev(){}, -SX:function SX(){}, -ys:function ys(){}, -axI:function axI(a){this.a=a}, -axH:function axH(a){this.a=a}, -UP:function UP(){}, -pa:function pa(a,b,c,d,e){var _=this -_.a=null -_.b=0 -_.c=null -_.d=a -_.e=b -_.f=c -_.r=d -_.$ti=e}, -f9:function f9(a,b){this.a=a -this.$ti=b}, -pd:function pd(a,b,c,d,e,f,g){var _=this -_.w=a -_.a=b -_.b=c -_.c=d -_.d=e -_.e=f -_.r=_.f=null -_.$ti=g}, -Us:function Us(){}, -aqx:function aqx(a){this.a=a}, -aqw:function aqw(a){this.a=a}, -IL:function IL(a,b,c,d){var _=this -_.c=a -_.a=b -_.b=c -_.$ti=d}, -f7:function f7(){}, -aro:function aro(a,b,c){this.a=a -this.b=b -this.c=c}, -arn:function arn(a){this.a=a}, -yt:function yt(){}, -Wa:function Wa(){}, -j6:function j6(a,b){this.b=a -this.a=null -this.$ti=b}, -tp:function tp(a,b){this.b=a -this.c=b -this.a=null}, -at4:function at4(){}, -lt:function lt(a){var _=this -_.a=0 -_.c=_.b=null -_.$ti=a}, -avN:function avN(a,b){this.a=a -this.b=b}, -xE:function xE(a,b,c){var _=this -_.a=a -_.b=0 -_.c=b -_.$ti=c}, -xt:function xt(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.f=_.e=null -_.$ti=e}, -tm:function tm(a,b){this.a=a -this.$ti=b}, -a09:function a09(a){this.$ti=a}, -Gy:function Gy(a){this.$ti=a}, -azI:function azI(a,b,c){this.a=a -this.b=b -this.c=c}, -azH:function azH(a,b){this.a=a -this.b=b}, -azJ:function azJ(a,b){this.a=a -this.b=b}, -j8:function j8(){}, -xO:function xO(a,b,c,d,e,f,g){var _=this -_.w=a -_.x=null -_.a=b -_.b=c -_.c=d -_.d=e -_.e=f -_.r=_.f=null -_.$ti=g}, -fq:function fq(a,b,c){this.b=a -this.a=b -this.$ti=c}, -GP:function GP(a,b,c,d){var _=this -_.b=a -_.c=b -_.a=c -_.$ti=d}, -azp:function azp(){}, -aAp:function aAp(a,b){this.a=a -this.b=b}, -awM:function awM(){}, -awN:function awN(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -awO:function awO(a,b){this.a=a -this.b=b}, -awP:function awP(a,b,c){this.a=a -this.b=b -this.c=c}, -hG(a,b){return new A.ts(a.i("@<0>").a5(b).i("ts<1,2>"))}, -aEt(a,b){var s=a[b] -return s===a?null:s}, -aEv(a,b,c){if(c==null)a[b]=a -else a[b]=c}, -aEu(){var s=Object.create(null) -A.aEv(s,"",s) -delete s[""] -return s}, -kM(a,b,c,d){if(b==null){if(a==null)return new A.fA(c.i("@<0>").a5(d).i("fA<1,2>")) -b=A.b4T()}else{if(A.b5c()===b&&A.b5b()===a)return new A.Bq(c.i("@<0>").a5(d).i("Bq<1,2>")) -if(a==null)a=A.b4S()}return A.b1N(a,b,null,c,d)}, -l(a,b,c){return A.aO7(a,new A.fA(b.i("@<0>").a5(c).i("fA<1,2>")))}, -m(a,b){return new A.fA(a.i("@<0>").a5(b).i("fA<1,2>"))}, -b1N(a,b,c,d,e){return new A.Hb(a,b,new A.auR(d),d.i("@<0>").a5(e).i("Hb<1,2>"))}, -d5(a){return new A.ls(a.i("ls<0>"))}, -aEw(){var s=Object.create(null) -s[""]=s -delete s[""] -return s}, -jz(a){return new A.hZ(a.i("hZ<0>"))}, -aE(a){return new A.hZ(a.i("hZ<0>"))}, -cJ(a,b){return A.b5C(a,new A.hZ(b.i("hZ<0>")))}, -aEy(){var s=Object.create(null) -s[""]=s -delete s[""] -return s}, -db(a,b,c){var s=new A.jb(a,b,c.i("jb<0>")) -s.c=a.e -return s}, -b3a(a,b){return J.e(a,b)}, -b3b(a){return J.C(a)}, -qY(a,b,c){var s=A.kM(null,null,b,c) -J.fX(a,new A.aeQ(s,b,c)) -return s}, -qZ(a,b,c){var s=A.kM(null,null,b,c) -s.K(0,a) -return s}, -og(a,b){var s,r=A.jz(b) -for(s=J.as(a);s.u();)r.E(0,b.a(s.gJ(s))) -return r}, -hJ(a,b){var s=A.jz(b) -s.K(0,a) -return s}, -b1O(a,b){return new A.y2(a,a.a,a.c,b.i("y2<0>"))}, -aZ1(a,b){var s=t.b8 -return J.yT(s.a(a),s.a(b))}, -Pb(a){var s,r={} -if(A.aFC(a))return"{...}" -s=new A.cf("") -try{$.tN.push(a) -s.a+="{" -r.a=!0 -J.fX(a,new A.afj(r,s)) -s.a+="}"}finally{$.tN.pop()}r=s.a -return r.charCodeAt(0)==0?r:r}, -oh(a,b){return new A.BD(A.aT(A.aZ2(a),null,!1,b.i("0?")),b.i("BD<0>"))}, -aZ2(a){if(a==null||a<8)return 8 -else if((a&a-1)>>>0!==0)return A.aJd(a) -return a}, -aJd(a){var s -a=(a<<1>>>0)-1 -for(;!0;a=s){s=(a&a-1)>>>0 -if(s===0)return a}}, -b3f(a,b){return J.yT(a,b)}, -aMU(a){if(a.i("o(0,0)").b(A.aNT()))return A.aNT() -return A.b4U()}, -aE9(a,b){var s=A.aMU(a) -return new A.Em(s,new A.amm(a),a.i("@<0>").a5(b).i("Em<1,2>"))}, -amn(a,b,c){var s=a==null?A.aMU(c):a,r=b==null?new A.amq(c):b -return new A.wK(s,r,c.i("wK<0>"))}, -ts:function ts(a){var _=this -_.a=0 -_.e=_.d=_.c=_.b=null -_.$ti=a}, -au2:function au2(a){this.a=a}, -au1:function au1(a){this.a=a}, -xW:function xW(a){var _=this -_.a=0 -_.e=_.d=_.c=_.b=null -_.$ti=a}, -tt:function tt(a,b){this.a=a -this.$ti=b}, -xT:function xT(a,b,c){var _=this -_.a=a -_.b=b -_.c=0 -_.d=null -_.$ti=c}, -Hb:function Hb(a,b,c,d){var _=this -_.w=a -_.x=b -_.y=c -_.a=0 -_.f=_.e=_.d=_.c=_.b=null -_.r=0 -_.$ti=d}, -auR:function auR(a){this.a=a}, -ls:function ls(a){var _=this -_.a=0 -_.e=_.d=_.c=_.b=null -_.$ti=a}, -ja:function ja(a,b,c){var _=this -_.a=a -_.b=b -_.c=0 -_.d=null -_.$ti=c}, -hZ:function hZ(a){var _=this -_.a=0 -_.f=_.e=_.d=_.c=_.b=null -_.r=0 -_.$ti=a}, -auS:function auS(a){this.a=a -this.c=this.b=null}, -jb:function jb(a,b,c){var _=this -_.a=a -_.b=b -_.d=_.c=null -_.$ti=c}, -aeQ:function aeQ(a,b,c){this.a=a -this.b=b -this.c=c}, -r_:function r_(a){var _=this -_.b=_.a=0 -_.c=null -_.$ti=a}, -y2:function y2(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=null -_.d=c -_.e=!1 -_.$ti=d}, -ie:function ie(){}, -a_:function a_(){}, -aK:function aK(){}, -afi:function afi(a){this.a=a}, -afj:function afj(a,b){this.a=a -this.b=b}, -xh:function xh(){}, -He:function He(a,b){this.a=a -this.$ti=b}, -Y2:function Y2(a,b,c){var _=this -_.a=a -_.b=b -_.c=null -_.$ti=c}, -Jc:function Jc(){}, -BQ:function BQ(){}, -mQ:function mQ(a,b){this.a=a -this.$ti=b}, -Gj:function Gj(){}, -Gi:function Gi(a,b,c){var _=this -_.c=a -_.d=b -_.b=_.a=null -_.$ti=c}, -Gk:function Gk(a){this.b=this.a=null -this.$ti=a}, -Ao:function Ao(a,b){this.a=a -this.b=0 -this.$ti=b}, -Wr:function Wr(a,b,c){var _=this -_.a=a -_.b=b -_.c=null -_.$ti=c}, -BD:function BD(a,b){var _=this -_.a=a -_.d=_.c=_.b=0 -_.$ti=b}, -XV:function XV(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=null -_.$ti=e}, -iV:function iV(){}, -yq:function yq(){}, -a05:function a05(){}, -ht:function ht(a,b){var _=this -_.a=a -_.c=_.b=null -_.$ti=b}, -fS:function fS(a,b,c){var _=this -_.d=a -_.a=b -_.c=_.b=null -_.$ti=c}, -a04:function a04(){}, -Em:function Em(a,b,c){var _=this -_.d=null -_.e=a -_.f=b -_.c=_.b=_.a=0 -_.$ti=c}, -amm:function amm(a){this.a=a}, -lw:function lw(){}, -n0:function n0(a,b){this.a=a -this.$ti=b}, -tE:function tE(a,b){this.a=a -this.$ti=b}, -IC:function IC(a,b){this.a=a -this.$ti=b}, -n1:function n1(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=null -_.d=c -_.$ti=d}, -IG:function IG(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=null -_.d=c -_.$ti=d}, -tD:function tD(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=null -_.d=c -_.$ti=d}, -wK:function wK(a,b,c){var _=this -_.d=null -_.e=a -_.f=b -_.c=_.b=_.a=0 -_.$ti=c}, -amq:function amq(a){this.a=a}, -amp:function amp(a,b){this.a=a -this.b=b}, -amo:function amo(a,b){this.a=a -this.b=b}, -ID:function ID(){}, -IE:function IE(){}, -IF:function IF(){}, -Jd:function Jd(){}, -aF8(a,b){var s,r,q,p=null -try{p=JSON.parse(a)}catch(r){s=A.a6(r) -q=A.bW(String(s),null,null) -throw A.d(q)}q=A.azS(p) -return q}, -azS(a){var s -if(a==null)return null -if(typeof a!="object")return a -if(Object.getPrototypeOf(a)!==Array.prototype)return new A.XB(a,Object.create(null)) -for(s=0;s=0)return null -return r}return null}, -b18(a,b,c,d){var s=a?$.aQa():$.aQ9() -if(s==null)return null -if(0===c&&d===b.length)return A.aLy(s,b) -return A.aLy(s,b.subarray(c,A.co(c,d,b.length,null,null)))}, -aLy(a,b){var s,r -try{s=a.decode(b) -return s}catch(r){}return null}, -aHj(a,b,c,d,e,f){if(B.h.cF(f,4)!==0)throw A.d(A.bW("Invalid base64 padding, padded length must be multiple of four, is "+f,a,c)) -if(d+e!==f)throw A.d(A.bW("Invalid base64 padding, '=' not at the end",a,b)) -if(e>2)throw A.d(A.bW("Invalid base64 padding, more than two '=' characters",a,b))}, -b1p(a,b,c,d,e,f,g,h){var s,r,q,p,o,n,m=h>>>2,l=3-(h&3) -for(s=J.X(b),r=c,q=0;r>>0 -m=(m<<8|p)&16777215;--l -if(l===0){o=g+1 -f[g]=a.charCodeAt(m>>>18&63) -g=o+1 -f[o]=a.charCodeAt(m>>>12&63) -o=g+1 -f[g]=a.charCodeAt(m>>>6&63) -g=o+1 -f[o]=a.charCodeAt(m&63) -m=0 -l=3}}if(q>=0&&q<=255){if(e&&l<3){o=g+1 -n=o+1 -if(3-l===1){f[g]=a.charCodeAt(m>>>2&63) -f[o]=a.charCodeAt(m<<4&63) -f[n]=61 -f[n+1]=61}else{f[g]=a.charCodeAt(m>>>10&63) -f[o]=a.charCodeAt(m>>>4&63) -f[n]=a.charCodeAt(m<<2&63) -f[n+1]=61}return 0}return(m<<2|3-l)>>>0}for(r=c;r255)break;++r}throw A.d(A.dW(b,"Not a byte value at index "+r+": 0x"+J.aVK(s.h(b,r),16),null))}, -b1o(a,b,c,d,e,f){var s,r,q,p,o,n,m="Invalid encoding before padding",l="Invalid character",k=B.h.fH(f,2),j=f&3,i=$.aGg() -for(s=b,r=0;s=0){k=(k<<6|p)&16777215 -j=j+1&3 -if(j===0){o=e+1 -d[e]=k>>>16&255 -e=o+1 -d[o]=k>>>8&255 -o=e+1 -d[e]=k&255 -e=o -k=0}continue}else if(p===-1&&j>1){if(r>127)break -if(j===3){if((k&3)!==0)throw A.d(A.bW(m,a,s)) -d[e]=k>>>10 -d[e+1]=k>>>2}else{if((k&15)!==0)throw A.d(A.bW(m,a,s)) -d[e]=k>>>4}n=(3-j)*3 -if(q===37)n+=2 -return A.aLJ(a,s+1,c,-n-1)}throw A.d(A.bW(l,a,s))}if(r>=0&&r<=127)return(k<<2|j)>>>0 -for(s=b;s127)break -throw A.d(A.bW(l,a,s))}, -b1m(a,b,c,d){var s=A.b1n(a,b,c),r=(d&3)+(s-b),q=B.h.fH(r,2)*3,p=r&3 -if(p!==0&&s0)return new Uint8Array(q) -return $.aQe()}, -b1n(a,b,c){var s,r=c,q=r,p=0 -while(!0){if(!(q>b&&p<2))break -c$0:{--q -s=a.charCodeAt(q) -if(s===61){++p -r=q -break c$0}if((s|32)===100){if(q===b)break;--q -s=a.charCodeAt(q)}if(s===51){if(q===b)break;--q -s=a.charCodeAt(q)}if(s===37){++p -r=q -break c$0}break}}return r}, -aLJ(a,b,c,d){var s,r -if(b===c)return d -s=-d-1 -for(;s>0;){r=a.charCodeAt(b) -if(s===3){if(r===61){s-=3;++b -break}if(r===37){--s;++b -if(b===c)break -r=a.charCodeAt(b)}else break}if((s>3?s-3:s)===2){if(r!==51)break;++b;--s -if(b===c)break -r=a.charCodeAt(b)}if((r|32)!==100)break;++b;--s -if(b===c)break}if(b!==c)throw A.d(A.bW("Invalid padding character",a,b)) -return-s-1}, -aD0(a){return $.aPp().h(0,a.toLowerCase())}, -aJ7(a,b,c){return new A.Br(a,b)}, -aJ8(a){var s,r -if(a==null)return null -s=a.length -if(s===0)return new Uint8Array(0) -$label0$0:{for(r=0;r=128)break $label0$0 -return new A.eU(a)}return B.A.gku().cm(a)}, -b3c(a){return a.cq()}, -b1J(a,b){return new A.XE(a,[],A.aAL())}, -aLX(a,b,c){var s,r=new A.cf("") -A.aEx(a,r,b,c) -s=r.a -return s.charCodeAt(0)==0?s:s}, -aEx(a,b,c,d){var s -if(d==null)s=A.b1J(b,c) -else s=new A.auI(d,0,b,[],A.aAL()) -s.nl(a)}, -b1K(a,b,c){var s=new Uint8Array(b) -return new A.XF(b,c,s,[],A.aAL())}, -aLY(a,b,c,d,e){var s,r -if(b!=null){s=new Uint8Array(d) -r=new A.auL(b,0,d,e,s,[],A.aAL())}else r=A.b1K(c,d,e) -r.nl(a) -s=r.f -if(s>0)r.d.$3(r.e,0,s) -r.e=new Uint8Array(0) -r.f=0}, -b1L(a,b,c){var s,r,q -for(s=J.X(a),r=b,q=0;r>>0 -if(q>=0&&q<=255)return -A.b1M(a,b,c)}, -b1M(a,b,c){var s,r,q -for(s=J.X(a),r=b;r255)throw A.d(A.bW("Source contains non-Latin-1 characters.",a,r))}}, -aMB(a){switch(a){case 65:return"Missing extension byte" -case 67:return"Unexpected extension byte" -case 69:return"Invalid UTF-8 byte" -case 71:return"Overlong encoding" -case 73:return"Out of unicode range" -case 75:return"Encoded surrogate" -case 77:return"Unfinished UTF-8 octet sequence" -default:return""}}, -b2z(a,b,c){var s,r,q,p=c-b,o=new Uint8Array(p) -for(s=J.X(a),r=0;r>>0!==0?255:q}return o}, -XB:function XB(a,b){this.a=a -this.b=b -this.c=null}, -auG:function auG(a){this.a=a}, -XC:function XC(a){this.a=a}, -H7:function H7(a,b,c){this.b=a -this.c=b -this.a=c}, -aqd:function aqd(){}, -aqc:function aqc(){}, -KU:function KU(){}, -a1w:function a1w(){}, -KW:function KW(a){this.a=a}, -a1x:function a1x(a,b){this.a=a -this.b=b}, -a1v:function a1v(){}, -KV:function KV(a,b){this.a=a -this.b=b}, -atk:function atk(a){this.a=a}, -axr:function axr(a){this.a=a}, -Lh:function Lh(){}, -Lj:function Lj(){}, -FE:function FE(a){this.a=0 -this.b=a}, -arl:function arl(a){this.c=null -this.a=0 -this.b=a}, -ari:function ari(){}, -ar0:function ar0(a,b){this.a=a -this.b=b}, -azc:function azc(a,b){this.a=a -this.b=b}, -Li:function Li(){}, -UV:function UV(){this.a=0}, -UW:function UW(a,b){this.a=a -this.b=b}, -u3:function u3(){}, -FN:function FN(a){this.a=a}, -V5:function V5(a,b){this.a=a -this.b=b -this.c=0}, -LI:function LI(){}, -a_P:function a_P(a,b,c){this.a=a -this.b=b -this.$ti=c}, -dC:function dC(){}, -GI:function GI(a,b,c){this.a=a -this.b=b -this.$ti=c}, -bC:function bC(){}, -GJ:function GJ(a,b,c){this.a=a -this.b=b -this.$ti=c}, -nL:function nL(){}, -acP:function acP(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -Oh:function Oh(a){this.a=a}, -Xg:function Xg(a,b){this.a=a -this.b=b}, -Br:function Br(a,b){this.a=a -this.b=b}, -OH:function OH(a,b){this.a=a -this.b=b}, -OG:function OG(){}, -OJ:function OJ(a,b){this.a=a -this.b=b}, -OK:function OK(a,b,c){this.a=a -this.b=b -this.c=c}, -aeh:function aeh(a){this.a=a}, -auF:function auF(a,b,c){var _=this -_.a=a -_.b=b -_.c=c -_.d=!1}, -H8:function H8(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=!1}, -OI:function OI(a){this.a=a}, -auJ:function auJ(){}, -auK:function auK(a,b){this.a=a -this.b=b}, -XD:function XD(){}, -auH:function auH(a,b){this.a=a -this.b=b}, -XE:function XE(a,b,c){this.c=a -this.a=b -this.b=c}, -auI:function auI(a,b,c,d,e){var _=this -_.f=a -_.e$=b -_.c=c -_.a=d -_.b=e}, -XF:function XF(a,b,c,d,e){var _=this -_.c=a -_.d=b -_.e=c -_.f=0 -_.a=d -_.b=e}, -auL:function auL(a,b,c,d,e,f,g){var _=this -_.x=a -_.e$=b -_.c=c -_.d=d -_.e=e -_.f=0 -_.a=f -_.b=g}, -OP:function OP(){}, -OR:function OR(a){this.a=a}, -OQ:function OQ(a,b){this.a=a -this.b=b}, -XI:function XI(a){this.a=a}, -auM:function auM(a){this.a=a}, -aeK:function aeK(){}, -iZ:function iZ(){}, -ask:function ask(a,b){this.a=a -this.b=b}, -axK:function axK(a,b){this.a=a -this.b=b}, -yv:function yv(){}, -ps:function ps(a){this.a=a}, -aze:function aze(a,b,c){this.a=a -this.b=b -this.c=c}, -azd:function azd(a,b,c){this.a=a -this.b=b -this.c=c}, -U8:function U8(){}, -Fr:function Fr(){}, -a1B:function a1B(a){this.b=this.a=0 -this.c=a}, -Jj:function Jj(a,b){var _=this -_.d=a -_.b=_.a=0 -_.c=b}, -U9:function U9(a){this.a=a}, -Ji:function Ji(a){this.a=a -this.b=16 -this.c=0}, -a23:function a23(){}, -a24:function a24(){}, -a30:function a30(){}, -b62(a){return A.pI(a)}, -aIQ(a,b){return A.b_7(a,b,null)}, -AH(a){return new A.uN(new WeakMap(),a.i("uN<0>"))}, -kA(a){if(A.iB(a)||typeof a=="number"||typeof a=="string"||a instanceof A.i_)A.qr(a)}, -qr(a){throw A.d(A.dW(a,"object","Expandos are not allowed on strings, numbers, bools, records or null"))}, -dT(a,b){var s=A.aDW(a,b) -if(s!=null)return s -throw A.d(A.bW(a,null,null))}, -a3f(a){var s=A.aKf(a) -if(s!=null)return s -throw A.d(A.bW("Invalid double",a,null))}, -aY_(a,b){a=A.d(a) -a.stack=b.k(0) -throw a -throw A.d("unreachable")}, -Ab(a,b){var s -if(Math.abs(a)<=864e13)s=!1 -else s=!0 -if(s)A.U(A.bF("DateTime is outside valid range: "+a,null)) -A.fc(b,"isUtc",t.y) -return new A.dX(a,b)}, -aT(a,b,c,d){var s,r=c?J.Bk(a,d):J.OC(a,d) -if(a!==0&&b!=null)for(s=0;s")) -for(s=J.as(a);s.u();)r.push(s.gJ(s)) -if(b)return r -return J.ae7(r)}, -a8(a,b,c){var s -if(b)return A.aJe(a,c) -s=J.ae7(A.aJe(a,c)) -return s}, -aJe(a,b){var s,r -if(Array.isArray(a))return A.b(a.slice(0),b.i("w<0>")) -s=A.b([],b.i("w<0>")) -for(r=J.as(a);r.u();)s.push(r.gJ(r)) -return s}, -aZ7(a,b,c){var s,r=J.Bk(a,c) -for(s=0;s0||c=1000)return""+a -if(s>=100)return r+"0"+s -if(s>=10)return r+"00"+s -return r+"000"+s}, -aWU(a){var s=Math.abs(a),r=a<0?"-":"+" -if(s>=1e5)return r+s -return r+"0"+s}, -aHT(a){if(a>=100)return""+a -if(a>=10)return"0"+a -return"00"+a}, -lS(a){if(a>=10)return""+a -return"0"+a}, -d2(a,b,c){return new A.b8(a+1000*b+1e6*c)}, -aXZ(a,b){var s,r -for(s=0;s<3;++s){r=a[s] -if(r.b===b)return r}throw A.d(A.dW(b,"name","No enum value with that name"))}, -qo(a){if(typeof a=="number"||A.iB(a)||a==null)return J.di(a) -if(typeof a=="string")return JSON.stringify(a) -return A.aKg(a)}, -a9c(a,b){A.fc(a,"error",t.K) -A.fc(b,"stackTrace",t.Km) -A.aY_(a,b)}, -kj(a){return new A.pQ(a)}, -bF(a,b){return new A.iE(!1,null,b,a)}, -dW(a,b,c){return new A.iE(!0,a,b,c)}, -tV(a,b){return a}, -f3(a){var s=null -return new A.w7(s,s,!1,s,s,a)}, -aif(a,b){return new A.w7(null,null,!0,a,b,"Value not in range")}, -bZ(a,b,c,d,e){return new A.w7(b,c,!0,a,d,"Invalid value")}, -CZ(a,b,c,d){if(ac)throw A.d(A.bZ(a,b,c,d,null)) -return a}, -co(a,b,c,d,e){if(0>a||a>c)throw A.d(A.bZ(a,0,c,d==null?"start":d,null)) -if(b!=null){if(a>b||b>c)throw A.d(A.bZ(b,a,c,e==null?"end":e,null)) -return b}return c}, -e_(a,b){if(a<0)throw A.d(A.bZ(a,0,null,b,null)) -return a}, -aDl(a,b,c,d,e){var s=e==null?b.gp(b):e -return new A.Ba(s,!0,a,c,"Index out of range")}, -dv(a,b,c,d,e){return new A.Ba(b,!0,a,e,"Index out of range")}, -adF(a,b,c,d){if(0>a||a>=b)throw A.d(A.dv(a,b,c,null,d==null?"index":d)) -return a}, -V(a){return new A.U2(a)}, -cu(a){return new A.xf(a)}, -a4(a){return new A.iW(a)}, -c4(a){return new A.M9(a)}, -ck(a){return new A.GB(a)}, -bW(a,b,c){return new A.ia(a,b,c)}, -aYO(a,b,c){if(a<=0)return new A.h1(c.i("h1<0>")) -return new A.GL(a,b,c.i("GL<0>"))}, -aJ3(a,b,c){var s,r -if(A.aFC(a)){if(b==="("&&c===")")return"(...)" -return b+"..."+c}s=A.b([],t.s) -$.tN.push(a) -try{A.b3Z(a,s)}finally{$.tN.pop()}r=A.SZ(b,s,", ")+c -return r.charCodeAt(0)==0?r:r}, -vi(a,b,c){var s,r -if(A.aFC(a))return b+"..."+c -s=new A.cf(b) -$.tN.push(a) -try{r=s -r.a=A.SZ(r.a,a,", ")}finally{$.tN.pop()}s.a+=c -r=s.a -return r.charCodeAt(0)==0?r:r}, -b3Z(a,b){var s,r,q,p,o,n,m,l=J.as(a),k=0,j=0 -while(!0){if(!(k<80||j<3))break -if(!l.u())return -s=A.j(l.gJ(l)) -b.push(s) -k+=s.length+2;++j}if(!l.u()){if(j<=5)return -r=b.pop() -q=b.pop()}else{p=l.gJ(l);++j -if(!l.u()){if(j<=4){b.push(A.j(p)) -return}r=A.j(p) -q=b.pop() -k+=r.length+2}else{o=l.gJ(l);++j -for(;l.u();p=o,o=n){n=l.gJ(l);++j -if(j>100){while(!0){if(!(k>75&&j>3))break -k-=b.pop().length+2;--j}b.push("...") -return}}q=A.j(p) -r=A.j(o) -k+=r.length+q.length+4}}if(j>b.length+2){k+=5 -m="..."}else m=null -while(!0){if(!(k>80&&b.length>3))break -k-=b.pop().length+2 -if(m==null){k+=5 -m="..."}}if(m!=null)b.push(m) -b.push(q) -b.push(r)}, -aDz(a,b,c,d,e){return new A.q0(a,b.i("@<0>").a5(c).a5(d).a5(e).i("q0<1,2,3,4>"))}, -T(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,a0,a1){var s -if(B.a===c)return A.b0o(J.C(a),J.C(b),$.eA()) -if(B.a===d){s=J.C(a) -b=J.C(b) -c=J.C(c) -return A.eL(A.P(A.P(A.P($.eA(),s),b),c))}if(B.a===e)return A.b0p(J.C(a),J.C(b),J.C(c),J.C(d),$.eA()) -if(B.a===f){s=J.C(a) -b=J.C(b) -c=J.C(c) -d=J.C(d) -e=J.C(e) -return A.eL(A.P(A.P(A.P(A.P(A.P($.eA(),s),b),c),d),e))}if(B.a===g){s=J.C(a) -b=J.C(b) -c=J.C(c) -d=J.C(d) -e=J.C(e) -f=J.C(f) -return A.eL(A.P(A.P(A.P(A.P(A.P(A.P($.eA(),s),b),c),d),e),f))}if(B.a===h){s=J.C(a) -b=J.C(b) -c=J.C(c) -d=J.C(d) -e=J.C(e) -f=J.C(f) -g=J.C(g) -return A.eL(A.P(A.P(A.P(A.P(A.P(A.P(A.P($.eA(),s),b),c),d),e),f),g))}if(B.a===i){s=J.C(a) -b=J.C(b) -c=J.C(c) -d=J.C(d) -e=J.C(e) -f=J.C(f) -g=J.C(g) -h=J.C(h) -return A.eL(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P($.eA(),s),b),c),d),e),f),g),h))}if(B.a===j){s=J.C(a) -b=J.C(b) -c=J.C(c) -d=J.C(d) -e=J.C(e) -f=J.C(f) -g=J.C(g) -h=J.C(h) -i=J.C(i) -return A.eL(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P($.eA(),s),b),c),d),e),f),g),h),i))}if(B.a===k){s=J.C(a) -b=J.C(b) -c=J.C(c) -d=J.C(d) -e=J.C(e) -f=J.C(f) -g=J.C(g) -h=J.C(h) -i=J.C(i) -j=J.C(j) -return A.eL(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P($.eA(),s),b),c),d),e),f),g),h),i),j))}if(B.a===l){s=J.C(a) -b=J.C(b) -c=J.C(c) -d=J.C(d) -e=J.C(e) -f=J.C(f) -g=J.C(g) -h=J.C(h) -i=J.C(i) -j=J.C(j) -k=J.C(k) -return A.eL(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P($.eA(),s),b),c),d),e),f),g),h),i),j),k))}if(B.a===m){s=J.C(a) -b=J.C(b) -c=J.C(c) -d=J.C(d) -e=J.C(e) -f=J.C(f) -g=J.C(g) -h=J.C(h) -i=J.C(i) -j=J.C(j) -k=J.C(k) -l=J.C(l) -return A.eL(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P($.eA(),s),b),c),d),e),f),g),h),i),j),k),l))}if(B.a===n){s=J.C(a) -b=J.C(b) -c=J.C(c) -d=J.C(d) -e=J.C(e) -f=J.C(f) -g=J.C(g) -h=J.C(h) -i=J.C(i) -j=J.C(j) -k=J.C(k) -l=J.C(l) -m=J.C(m) -return A.eL(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P($.eA(),s),b),c),d),e),f),g),h),i),j),k),l),m))}if(B.a===o){s=J.C(a) -b=J.C(b) -c=J.C(c) -d=J.C(d) -e=J.C(e) -f=J.C(f) -g=J.C(g) -h=J.C(h) -i=J.C(i) -j=J.C(j) -k=J.C(k) -l=J.C(l) -m=J.C(m) -n=J.C(n) -return A.eL(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P($.eA(),s),b),c),d),e),f),g),h),i),j),k),l),m),n))}if(B.a===p){s=J.C(a) -b=J.C(b) -c=J.C(c) -d=J.C(d) -e=J.C(e) -f=J.C(f) -g=J.C(g) -h=J.C(h) -i=J.C(i) -j=J.C(j) -k=J.C(k) -l=J.C(l) -m=J.C(m) -n=J.C(n) -o=J.C(o) -return A.eL(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P($.eA(),s),b),c),d),e),f),g),h),i),j),k),l),m),n),o))}if(B.a===q){s=J.C(a) -b=J.C(b) -c=J.C(c) -d=J.C(d) -e=J.C(e) -f=J.C(f) -g=J.C(g) -h=J.C(h) -i=J.C(i) -j=J.C(j) -k=J.C(k) -l=J.C(l) -m=J.C(m) -n=J.C(n) -o=J.C(o) -p=J.C(p) -return A.eL(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P($.eA(),s),b),c),d),e),f),g),h),i),j),k),l),m),n),o),p))}if(B.a===r){s=J.C(a) -b=J.C(b) -c=J.C(c) -d=J.C(d) -e=J.C(e) -f=J.C(f) -g=J.C(g) -h=J.C(h) -i=J.C(i) -j=J.C(j) -k=J.C(k) -l=J.C(l) -m=J.C(m) -n=J.C(n) -o=J.C(o) -p=J.C(p) -q=J.C(q) -return A.eL(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P($.eA(),s),b),c),d),e),f),g),h),i),j),k),l),m),n),o),p),q))}if(B.a===a0){s=J.C(a) -b=J.C(b) -c=J.C(c) -d=J.C(d) -e=J.C(e) -f=J.C(f) -g=J.C(g) -h=J.C(h) -i=J.C(i) -j=J.C(j) -k=J.C(k) -l=J.C(l) -m=J.C(m) -n=J.C(n) -o=J.C(o) -p=J.C(p) -q=J.C(q) -r=J.C(r) -return A.eL(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P($.eA(),s),b),c),d),e),f),g),h),i),j),k),l),m),n),o),p),q),r))}if(B.a===a1){s=J.C(a) -b=J.C(b) -c=J.C(c) -d=J.C(d) -e=J.C(e) -f=J.C(f) -g=J.C(g) -h=J.C(h) -i=J.C(i) -j=J.C(j) -k=J.C(k) -l=J.C(l) -m=J.C(m) -n=J.C(n) -o=J.C(o) -p=J.C(p) -q=J.C(q) -r=J.C(r) -a0=J.C(a0) -return A.eL(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P($.eA(),s),b),c),d),e),f),g),h),i),j),k),l),m),n),o),p),q),r),a0))}s=J.C(a) -b=J.C(b) -c=J.C(c) -d=J.C(d) -e=J.C(e) -f=J.C(f) -g=J.C(g) -h=J.C(h) -i=J.C(i) -j=J.C(j) -k=J.C(k) -l=J.C(l) -m=J.C(m) -n=J.C(n) -o=J.C(o) -p=J.C(p) -q=J.C(q) -r=J.C(r) -a0=J.C(a0) -a1=J.C(a1) -return A.eL(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P(A.P($.eA(),s),b),c),d),e),f),g),h),i),j),k),l),m),n),o),p),q),r),a0),a1))}, -cn(a){var s,r=$.eA() -for(s=J.as(a);s.u();)r=A.P(r,J.C(s.gJ(s))) -return A.eL(r)}, -c_(a){A.aFI(A.j(a))}, -alu(a,b,c,d){return new A.lP(a,b,c.i("@<0>").a5(d).i("lP<1,2>"))}, -b0f(){$.a3v() -return new A.Es()}, -b30(a,b){return 65536+((a&1023)<<10)+(b&1023)}, -fo(a3,a4,a5){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2=null -a5=a3.length -s=a4+5 -if(a5>=s){r=((a3.charCodeAt(a4+4)^58)*3|a3.charCodeAt(a4)^100|a3.charCodeAt(a4+1)^97|a3.charCodeAt(a4+2)^116|a3.charCodeAt(a4+3)^97)>>>0 -if(r===0)return A.apY(a4>0||a5=14)q[7]=a5 -o=q[1] -if(o>=a4)if(A.aNv(a3,a4,o,20,q)===20)q[7]=o -n=q[2]+1 -m=q[3] -l=q[4] -k=q[5] -j=q[6] -if(jo+3){h=a2 -i=!1}else{p=m>a4 -if(p&&m+1===l){h=a2 -i=!1}else{if(!B.c.dv(a3,"\\",l))if(n>a4)g=B.c.dv(a3,"\\",n-1)||B.c.dv(a3,"\\",n-2) -else g=!1 -else g=!0 -if(g){h=a2 -i=!1}else{if(!(kl+2&&B.c.dv(a3,"/..",k-3) -else g=!0 -if(g){h=a2 -i=!1}else{if(o===a4+4)if(B.c.dv(a3,"file",a4)){if(n<=a4){if(!B.c.dv(a3,"/",l)){f="file:///" -r=3}else{f="file://" -r=2}a3=f+B.c.S(a3,l,a5) -o-=a4 -s=r-a4 -k+=s -j+=s -a5=a3.length -a4=0 -n=7 -m=7 -l=7}else if(l===k)if(a4===0&&!0){a3=B.c.hM(a3,l,k,"/");++k;++j;++a5}else{a3=B.c.S(a3,a4,l)+"/"+B.c.S(a3,k,a5) -o-=a4 -n-=a4 -m-=a4 -l-=a4 -s=1-a4 -k+=s -j+=s -a5=a3.length -a4=0}h="file"}else if(B.c.dv(a3,"http",a4)){if(p&&m+3===l&&B.c.dv(a3,"80",m+1))if(a4===0&&!0){a3=B.c.hM(a3,m,l,"") -l-=3 -k-=3 -j-=3 -a5-=3}else{a3=B.c.S(a3,a4,m)+B.c.S(a3,l,a5) -o-=a4 -n-=a4 -m-=a4 -s=3+a4 -l-=s -k-=s -j-=s -a5=a3.length -a4=0}h="http"}else h=a2 -else if(o===s&&B.c.dv(a3,"https",a4)){if(p&&m+4===l&&B.c.dv(a3,"443",m+1))if(a4===0&&!0){a3=B.c.hM(a3,m,l,"") -l-=4 -k-=4 -j-=4 -a5-=3}else{a3=B.c.S(a3,a4,m)+B.c.S(a3,l,a5) -o-=a4 -n-=a4 -m-=a4 -s=4+a4 -l-=s -k-=s -j-=s -a5=a3.length -a4=0}h="https"}else h=a2 -i=!0}}}}else h=a2 -if(i){if(a4>0||a5a4)h=A.b2v(a3,a4,o) -else{if(o===a4)A.yC(a3,a4,"Invalid empty scheme") -h=""}if(n>a4){e=o+3 -d=e9)k.$2("invalid character",s)}else{if(q===3)k.$2(m,s) -o=A.dT(B.c.S(a,r,s),null) -if(o>255)k.$2(l,r) -n=q+1 -j[q]=o -r=s+1 -q=n}}if(q!==3)k.$2(m,c) -o=A.dT(B.c.S(a,r,c),null) -if(o>255)k.$2(l,r) -j[q]=o -return j}, -aLt(a,b,a0){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=null,d=new A.aq_(a),c=new A.aq0(d,a) -if(a.length<2)d.$2("address is too short",e) -s=A.b([],t.t) -for(r=b,q=r,p=!1,o=!1;r>>0) -s.push((k[2]<<8|k[3])>>>0)}if(p){if(s.length>7)d.$2("an address with a wildcard must have less than 7 parts",e)}else if(s.length!==8)d.$2("an address without a wildcard must contain exactly 8 parts",e) -j=new Uint8Array(16) -for(l=s.length,i=9-l,r=0,h=0;ro)A.U(A.bZ(0,0,p.gp(q),null,null)) -if(A.a3o(q,"/",0)){s=A.V("Illegal path character "+A.j(q)) -throw A.d(s)}}}, -aMn(a,b,c){var s,r,q,p,o -for(s=A.er(a,c,null,A.W(a).c),r=s.$ti,s=new A.bz(s,s.gp(s),r.i("bz")),r=r.i("am.E");s.u();){q=s.d -if(q==null)q=r.a(q) -p=A.aG('["*/:<>?\\\\|]',!0,!1,!1,!1) -o=q.length -if(A.a3o(q,p,0)){s=A.V("Illegal character in path: "+q) -throw A.d(s)}}}, -b2q(a,b){var s -if(!(65<=a&&a<=90))s=97<=a&&a<=122 -else s=!0 -if(s)return -s=A.V("Illegal drive letter "+A.amR(a)) -throw A.d(s)}, -b2s(a){var s -if(a.length===0)return B.u2 -s=A.aMz(a) -s.a_k(s,A.aNU()) -return A.aCF(s,t.N,t.yp)}, -aEM(a,b){if(a!=null&&a===A.aMo(b))return null -return a}, -aMs(a,b,c,d){var s,r,q,p,o,n -if(a==null)return null -if(b===c)return"" -if(a.charCodeAt(b)===91){s=c-1 -if(a.charCodeAt(s)!==93)A.yC(a,b,"Missing end `]` to match `[` in host") -r=b+1 -q=A.b2r(a,r,s) -if(q=b&&q=b&&s>>4]&1<<(p&15))!==0){if(q&&65<=p&&90>=p){if(i==null)i=new A.cf("") -if(r>>4]&1<<(o&15))!==0){if(p&&65<=o&&90>=o){if(q==null)q=new A.cf("") -if(r>>4]&1<<(o&15))!==0)A.yC(a,s,"Invalid character") -else{if((o&64512)===55296&&s+1>>4]&1<<(q&15))!==0))A.yC(a,s,"Illegal scheme character") -if(65<=q&&q<=90)r=!0}a=B.c.S(a,b,c) -return A.b2o(r?a.toLowerCase():a)}, -b2o(a){if(a==="http")return"http" -if(a==="file")return"file" -if(a==="https")return"https" -if(a==="package")return"package" -return a}, -aMv(a,b,c){if(a==null)return"" -return A.Jh(a,b,c,B.I9,!1,!1)}, -aMt(a,b,c,d,e,f){var s,r=e==="file",q=r||f -if(a==null)return r?"/":"" -else s=A.Jh(a,b,c,B.nX,!0,!0) -if(s.length===0){if(r)return"/"}else if(q&&!B.c.bJ(s,"/"))s="/"+s -return A.b2w(s,e,f)}, -b2w(a,b,c){var s=b.length===0 -if(s&&!c&&!B.c.bJ(a,"/")&&!B.c.bJ(a,"\\"))return A.aEO(a,!s||c) -return A.n4(a)}, -aMu(a,b,c,d){var s,r={} -if(a!=null){if(d!=null)throw A.d(A.bF("Both query and queryParameters specified",null)) -return A.Jh(a,b,c,B.fY,!0,!1)}if(d==null)return null -s=new A.cf("") -r.a="" -d.N(0,new A.az9(new A.aza(r,s))) -r=s.a -return r.charCodeAt(0)==0?r:r}, -aMr(a,b,c){if(a==null)return null -return A.Jh(a,b,c,B.fY,!0,!1)}, -aEN(a,b,c){var s,r,q,p,o,n=b+2 -if(n>=a.length)return"%" -s=a.charCodeAt(b+1) -r=a.charCodeAt(n) -q=A.aBa(s) -p=A.aBa(r) -if(q<0||p<0)return"%" -o=q*16+p -if(o<127&&(B.fV[B.h.fH(o,4)]&1<<(o&15))!==0)return A.bQ(c&&65<=o&&90>=o?(o|32)>>>0:o) -if(s>=97||r>=97)return B.c.S(a,b,b+3).toUpperCase() -return null}, -aEL(a){var s,r,q,p,o,n="0123456789ABCDEF" -if(a<128){s=new Uint8Array(3) -s[0]=37 -s[1]=n.charCodeAt(a>>>4) -s[2]=n.charCodeAt(a&15)}else{if(a>2047)if(a>65535){r=240 -q=4}else{r=224 -q=3}else{r=192 -q=2}s=new Uint8Array(3*q) -for(p=0;--q,q>=0;r=128){o=B.h.aj8(a,6*q)&63|r -s[p]=37 -s[p+1]=n.charCodeAt(o>>>4) -s[p+2]=n.charCodeAt(o&15) -p+=3}}return A.j_(s,0,null)}, -Jh(a,b,c,d,e,f){var s=A.aMx(a,b,c,d,e,f) -return s==null?B.c.S(a,b,c):s}, -aMx(a,b,c,d,e,f){var s,r,q,p,o,n,m,l,k,j,i=null -for(s=!e,r=b,q=r,p=i;r>>4]&1<<(o&15))!==0)++r -else{if(o===37){n=A.aEN(a,r,!1) -if(n==null){r+=3 -continue}if("%"===n){n="%25" -m=1}else m=3}else if(o===92&&f){n="/" -m=1}else if(s&&o<=93&&(B.nY[o>>>4]&1<<(o&15))!==0){A.yC(a,r,"Invalid character") -m=i -n=m}else{if((o&64512)===55296){l=r+1 -if(l=2&&A.aMq(a.charCodeAt(0)))for(s=1;s127||(B.nV[r>>>4]&1<<(r&15))===0)break}return a}, -b2y(a,b){if(a.KA("package")&&a.c==null)return A.aNx(b,0,b.length) -return-1}, -aMA(a){var s,r,q,p=a.gru(),o=p.length -if(o>0&&J.b4(p[0])===2&&J.aCi(p[0],1)===58){A.b2q(J.aCi(p[0],0),!1) -A.aMn(p,!1,1) -s=!0}else{A.aMn(p,!1,0) -s=!1}r=a.gC2()&&!s?""+"\\":"" -if(a.gr6()){q=a.gjO(a) -if(q.length!==0)r=r+"\\"+q+"\\"}r=A.SZ(r,p,"\\") -o=s&&o===1?r+"\\":r -return o.charCodeAt(0)==0?o:o}, -b2t(){return A.b([],t.s)}, -aMz(a){var s,r,q,p,o,n=A.m(t.N,t.yp),m=new A.azb(a,B.A,n) -for(s=a.length,r=0,q=0,p=-1;r127)throw A.d(A.bF("Illegal percent encoding in URI",null)) -if(r===37){if(o+3>q)throw A.d(A.bF("Truncated URI",null)) -p.push(A.b2u(a,o+1)) -o+=2}else if(e&&r===43)p.push(32) -else p.push(r)}}return d.ea(0,p)}, -aMq(a){var s=a|32 -return 97<=s&&s<=122}, -b12(a){if(!a.KA("data"))throw A.d(A.dW(a,"uri","Scheme must be 'data'")) -if(a.gr6())throw A.d(A.dW(a,"uri","Data uri must not have authority")) -if(a.gC3())throw A.d(A.dW(a,"uri","Data uri must not have a fragment part")) -if(!a.gox())return A.apY(a.gdL(a),0,a) -return A.apY(a.k(0),5,a)}, -apY(a,b,c){var s,r,q,p,o,n,m,l,k="Invalid MIME type",j=A.b([b-1],t.t) -for(s=a.length,r=b,q=-1,p=null;rb)throw A.d(A.bW(k,a,r)) -for(;p!==44;){j.push(r);++r -for(o=-1;r=0)j.push(o) -else{n=B.b.gL(j) -if(p!==44||r!==n+7||!B.c.dv(a,"base64",n+1))throw A.d(A.bW("Expecting '='",a,r)) -break}}j.push(r) -m=r+1 -if((j.length&1)===1)a=B.is.YK(0,a,m,s) -else{l=A.aMx(a,m,s,B.fY,!0,!1) -if(l!=null)a=B.c.hM(a,m,s,l)}return new A.apX(a,j,c)}, -b38(){var s,r,q,p,o,n="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz-._~!$&'()*+,;=",m=".",l=":",k="/",j="\\",i="?",h="#",g="/\\",f=J.ae6(22,t.H3) -for(s=0;s<22;++s)f[s]=new Uint8Array(96) -r=new A.azW(f) -q=new A.azX() -p=new A.azY() -o=r.$2(0,225) -q.$3(o,n,1) -q.$3(o,m,14) -q.$3(o,l,34) -q.$3(o,k,3) -q.$3(o,j,227) -q.$3(o,i,172) -q.$3(o,h,205) -o=r.$2(14,225) -q.$3(o,n,1) -q.$3(o,m,15) -q.$3(o,l,34) -q.$3(o,g,234) -q.$3(o,i,172) -q.$3(o,h,205) -o=r.$2(15,225) -q.$3(o,n,1) -q.$3(o,"%",225) -q.$3(o,l,34) -q.$3(o,k,9) -q.$3(o,j,233) -q.$3(o,i,172) -q.$3(o,h,205) -o=r.$2(1,225) -q.$3(o,n,1) -q.$3(o,l,34) -q.$3(o,k,10) -q.$3(o,j,234) -q.$3(o,i,172) -q.$3(o,h,205) -o=r.$2(2,235) -q.$3(o,n,139) -q.$3(o,k,131) -q.$3(o,j,131) -q.$3(o,m,146) -q.$3(o,i,172) -q.$3(o,h,205) -o=r.$2(3,235) -q.$3(o,n,11) -q.$3(o,k,68) -q.$3(o,j,68) -q.$3(o,m,18) -q.$3(o,i,172) -q.$3(o,h,205) -o=r.$2(4,229) -q.$3(o,n,5) -p.$3(o,"AZ",229) -q.$3(o,l,102) -q.$3(o,"@",68) -q.$3(o,"[",232) -q.$3(o,k,138) -q.$3(o,j,138) -q.$3(o,i,172) -q.$3(o,h,205) -o=r.$2(5,229) -q.$3(o,n,5) -p.$3(o,"AZ",229) -q.$3(o,l,102) -q.$3(o,"@",68) -q.$3(o,k,138) -q.$3(o,j,138) -q.$3(o,i,172) -q.$3(o,h,205) -o=r.$2(6,231) -p.$3(o,"19",7) -q.$3(o,"@",68) -q.$3(o,k,138) -q.$3(o,j,138) -q.$3(o,i,172) -q.$3(o,h,205) -o=r.$2(7,231) -p.$3(o,"09",7) -q.$3(o,"@",68) -q.$3(o,k,138) -q.$3(o,j,138) -q.$3(o,i,172) -q.$3(o,h,205) -q.$3(r.$2(8,8),"]",5) -o=r.$2(9,235) -q.$3(o,n,11) -q.$3(o,m,16) -q.$3(o,g,234) -q.$3(o,i,172) -q.$3(o,h,205) -o=r.$2(16,235) -q.$3(o,n,11) -q.$3(o,m,17) -q.$3(o,g,234) -q.$3(o,i,172) -q.$3(o,h,205) -o=r.$2(17,235) -q.$3(o,n,11) -q.$3(o,k,9) -q.$3(o,j,233) -q.$3(o,i,172) -q.$3(o,h,205) -o=r.$2(10,235) -q.$3(o,n,11) -q.$3(o,m,18) -q.$3(o,k,10) -q.$3(o,j,234) -q.$3(o,i,172) -q.$3(o,h,205) -o=r.$2(18,235) -q.$3(o,n,11) -q.$3(o,m,19) -q.$3(o,g,234) -q.$3(o,i,172) -q.$3(o,h,205) -o=r.$2(19,235) -q.$3(o,n,11) -q.$3(o,g,234) -q.$3(o,i,172) -q.$3(o,h,205) -o=r.$2(11,235) -q.$3(o,n,11) -q.$3(o,k,10) -q.$3(o,j,234) -q.$3(o,i,172) -q.$3(o,h,205) -o=r.$2(12,236) -q.$3(o,n,12) -q.$3(o,i,12) -q.$3(o,h,205) -o=r.$2(13,237) -q.$3(o,n,13) -q.$3(o,i,13) -p.$3(r.$2(20,245),"az",21) -o=r.$2(21,245) -p.$3(o,"az",21) -p.$3(o,"09",21) -q.$3(o,"+-.",21) -return f}, -aNv(a,b,c,d,e){var s,r,q,p,o=$.aRc() -for(s=b;s95?31:q] -d=p&31 -e[p>>>5]=s}return d}, -aMc(a){if(a.b===7&&B.c.bJ(a.a,"package")&&a.c<=0)return A.aNx(a.a,a.e,a.f) -return-1}, -b4r(a,b){return A.vs(b,t.N)}, -aNx(a,b,c){var s,r,q -for(s=b,r=0;s")) -return t.lU.a(s.gbD(s))}, -Aw(a){var s,r,q="element tag unavailable" -try{s=a.tagName -s.toString -q=s}catch(r){}return q}, -b1x(a,b,c,d,e){var s=c==null?null:A.aNF(new A.atm(c),t.I3) -s=new A.GA(a,b,s,!1,e.i("GA<0>")) -s.HX() -return s}, -aLU(a){var s=A.aHa(null),r=window.location -s=new A.xV(new A.ax2(s,r)) -s.a6b(a) -return s}, -b1G(a,b,c,d){return!0}, -b1H(a,b,c,d){var s,r,q,p=d.a,o=p.a -o.href=c -s=o.hostname -p=p.b -if(s==p.hostname){r=o.port -q=p.port -q.toString -if(r===q){r=o.protocol -p=p.protocol -p.toString -p=r===p}else p=!1}else p=!1 -if(!p)if(s==="")if(o.port===""){p=o.protocol -p=p===":"||p===""}else p=!1 -else p=!1 -else p=!0 -return p}, -aMe(){var s=t.N,r=A.og(B.nR,s),q=A.b(["TEMPLATE"],t.s) -s=new A.a0z(r,A.jz(s),A.jz(s),A.jz(s),null) -s.a6d(null,new A.a1(B.nR,new A.ayd(),t.a4),q,null) -return s}, -b36(a){if(t.VF.b(a))return a -return new A.aqr([],[]).ani(a,!0)}, -b1u(a){var s=window -s.toString -if(a===s)return a -else return new A.VZ(a)}, -aNF(a,b){var s=$.ai -if(s===B.as)return a -return s.Vk(a,b)}, -aC:function aC(){}, -KG:function KG(){}, -KK:function KK(){}, -KT:function KT(){}, -tZ:function tZ(){}, -np:function np(){}, -pV:function pV(){}, -kn:function kn(){}, -Md:function Md(){}, -cw:function cw(){}, -qa:function qa(){}, -a6B:function a6B(){}, -fZ:function fZ(){}, -jq:function jq(){}, -Me:function Me(){}, -Mf:function Mf(){}, -Mu:function Mu(){}, -lU:function lU(){}, -MU:function MU(){}, -Am:function Am(){}, -An:function An(){}, -MW:function MW(){}, -MY:function MY(){}, -Vf:function Vf(a,b){this.a=a -this.b=b}, -bK:function bK(){}, -a8x:function a8x(){}, -aw:function aw(){}, -ac:function ac(){}, -h2:function h2(){}, -No:function No(){}, -Nq:function Nq(){}, -NQ:function NQ(){}, -h4:function h4(){}, -Od:function Od(){}, -qM:function qM(){}, -nV:function nV(){}, -qO:function qO(){}, -v7:function v7(){}, -BB:function BB(){}, -P5:function P5(){}, -Pq:function Pq(){}, -Pt:function Pt(){}, -PA:function PA(){}, -afY:function afY(a){this.a=a}, -afZ:function afZ(a){this.a=a}, -PB:function PB(){}, -ag_:function ag_(a){this.a=a}, -ag0:function ag0(a){this.a=a}, -hb:function hb(){}, -PC:function PC(){}, -eN:function eN(a){this.a=a}, -aP:function aP(){}, -Cj:function Cj(){}, -hd:function hd(){}, -QV:function QV(){}, -l1:function l1(){}, -RT:function RT(){}, -ak0:function ak0(a){this.a=a}, -ak1:function ak1(a){this.a=a}, -DG:function DG(){}, -Sb:function Sb(){}, -hg:function hg(){}, -SK:function SK(){}, -hh:function hh(){}, -SS:function SS(){}, -hi:function hi(){}, -Et:function Et(){}, -amD:function amD(a){this.a=a}, -amE:function amE(a){this.a=a}, -fl:function fl(){}, -EF:function EF(){}, -Tb:function Tb(){}, -Tc:function Tc(){}, -wX:function wX(){}, -ho:function ho(){}, -fm:function fm(){}, -TE:function TE(){}, -TF:function TF(){}, -TI:function TI(){}, -hp:function hp(){}, -TN:function TN(){}, -TO:function TO(){}, -U4:function U4(){}, -Ub:function Ub(){}, -p9:function p9(){}, -lq:function lq(){}, -xw:function xw(){}, -VH:function VH(){}, -Gh:function Gh(){}, -X4:function X4(){}, -Hs:function Hs(){}, -a03:function a03(){}, -a0h:function a0h(){}, -UQ:function UQ(){}, -Gv:function Gv(a){this.a=a}, -aD2:function aD2(a,b){this.a=a -this.$ti=b}, -pf:function pf(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.$ti=d}, -Gw:function Gw(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.$ti=d}, -GA:function GA(a,b,c,d,e){var _=this -_.a=0 -_.b=a -_.c=b -_.d=c -_.e=d -_.$ti=e}, -atm:function atm(a){this.a=a}, -atn:function atn(a){this.a=a}, -xV:function xV(a){this.a=a}, -b0:function b0(){}, -Ck:function Ck(a){this.a=a}, -agV:function agV(a){this.a=a}, -agU:function agU(a,b,c){this.a=a -this.b=b -this.c=c}, -Iy:function Iy(){}, -axs:function axs(){}, -axt:function axt(){}, -a0z:function a0z(a,b,c,d,e){var _=this -_.e=a -_.a=b -_.b=c -_.c=d -_.d=e}, -ayd:function ayd(){}, -a0i:function a0i(){}, -uS:function uS(a,b,c){var _=this -_.a=a -_.b=b -_.c=-1 -_.d=null -_.$ti=c}, -VZ:function VZ(a){this.a=a}, -ax2:function ax2(a,b){this.a=a -this.b=b}, -a1C:function a1C(a){this.a=a -this.b=0}, -azg:function azg(a){this.a=a}, -VI:function VI(){}, -Wl:function Wl(){}, -Wm:function Wm(){}, -Wn:function Wn(){}, -Wo:function Wo(){}, -WN:function WN(){}, -WO:function WO(){}, -Xe:function Xe(){}, -Xf:function Xf(){}, -Yh:function Yh(){}, -Yi:function Yi(){}, -Yj:function Yj(){}, -Yk:function Yk(){}, -Yy:function Yy(){}, -Yz:function Yz(){}, -YW:function YW(){}, -YX:function YX(){}, -a_n:function a_n(){}, -IA:function IA(){}, -IB:function IB(){}, -a01:function a01(){}, -a02:function a02(){}, -a08:function a08(){}, -a0U:function a0U(){}, -a0V:function a0V(){}, -J_:function J_(){}, -J0:function J0(){}, -a12:function a12(){}, -a13:function a13(){}, -a1Q:function a1Q(){}, -a1R:function a1R(){}, -a2_:function a2_(){}, -a20:function a20(){}, -a29:function a29(){}, -a2a:function a2a(){}, -a2C:function a2C(){}, -a2D:function a2D(){}, -a2E:function a2E(){}, -a2F:function a2F(){}, -aMP(a){var s,r,q -if(a==null)return a -if(typeof a=="string"||typeof a=="number"||A.iB(a))return a -if(A.aOt(a))return A.jh(a) -s=Array.isArray(a) -s.toString -if(s){r=[] -q=0 -while(!0){s=a.length -s.toString -if(!(qc)throw A.d(A.bZ(a,0,c,s,s)) -if(bc)throw A.d(A.bZ(b,a,c,s,s))}, -b2U(a){return a}, -aEX(a,b,c){var s -try{if(Object.isExtensible(a)&&!Object.prototype.hasOwnProperty.call(a,b)){Object.defineProperty(a,b,{value:c}) -return!0}}catch(s){}return!1}, -aN3(a,b){if(Object.prototype.hasOwnProperty.call(a,b))return a[b] -return null}, -azT(a){if(a==null||typeof a=="string"||typeof a=="number"||A.iB(a))return a -if(a instanceof A.mh)return a.a -if(A.aOr(a))return a -if(t.e2.b(a))return a -if(a instanceof A.dX)return A.hM(a) -if(t._8.b(a))return A.aN2(a,"$dart_jsFunction",new A.azU()) -return A.aN2(a,"_$dart_jsObject",new A.azV($.aGl()))}, -aN2(a,b,c){var s=A.aN3(a,b) -if(s==null){s=c.$1(a) -A.aEX(a,b,s)}return s}, -aEV(a){if(a==null||typeof a=="string"||typeof a=="number"||typeof a=="boolean")return a -else if(a instanceof Object&&A.aOr(a))return a -else if(a instanceof Object&&t.e2.b(a))return a -else if(a instanceof Date)return A.Ab(a.getTime(),!1) -else if(a.constructor===$.aGl())return a.o -else return A.aFh(a)}, -aFh(a){if(typeof a=="function")return A.aF1(a,$.a3t(),new A.aAw()) -if(a instanceof Array)return A.aF1(a,$.aGh(),new A.aAx()) -return A.aF1(a,$.aGh(),new A.aAy())}, -aF1(a,b,c){var s=A.aN3(a,b) -if(s==null||!(a instanceof Object)){s=c.$1(a) -A.aEX(a,b,s)}return s}, -azU:function azU(){}, -azV:function azV(a){this.a=a}, -aAw:function aAw(){}, -aAx:function aAx(){}, -aAy:function aAy(){}, -mh:function mh(a){this.a=a}, -Bp:function Bp(a){this.a=a}, -qT:function qT(a,b){this.a=a -this.$ti=b}, -y0:function y0(){}, -b35(a){var s,r=a.$dart_jsFunction -if(r!=null)return r -s=function(b,c){return function(){return b(c,Array.prototype.slice.apply(arguments))}}(A.b2N,a) -s[$.a3t()]=a -a.$dart_jsFunction=s -return s}, -b2N(a,b){return A.aIQ(a,b)}, -bd(a){if(typeof a=="function")return a -else return A.b35(a)}, -aNk(a){return a==null||A.iB(a)||typeof a=="number"||typeof a=="string"||t.pT.b(a)||t.H3.b(a)||t.Po.b(a)||t.JZ.b(a)||t.w7.b(a)||t.XO.b(a)||t.rd.b(a)||t.s4.b(a)||t.OE.b(a)||t.pI.b(a)||t.V4.b(a)}, -ax(a){if(A.aNk(a))return a -return new A.aBo(new A.xW(t.Fy)).$1(a)}, -aOm(){return globalThis}, -M(a,b){return a[b]}, -K4(a,b){return a[b]}, -bq(a,b,c){return a[b].apply(a,c)}, -b2O(a,b){return a[b]()}, -aMM(a,b,c){return a[b](c)}, -b2P(a,b,c,d){return a[b](c,d)}, -aML(a){return new a()}, -b2L(a,b){return new a(b)}, -i3(a,b){var s=new A.ae($.ai,b.i("ae<0>")),r=new A.b3(s,b.i("b3<0>")) -a.then(A.pD(new A.aBN(r),1),A.pD(new A.aBO(r),1)) -return s}, -aNj(a){return a==null||typeof a==="boolean"||typeof a==="number"||typeof a==="string"||a instanceof Int8Array||a instanceof Uint8Array||a instanceof Uint8ClampedArray||a instanceof Int16Array||a instanceof Uint16Array||a instanceof Int32Array||a instanceof Uint32Array||a instanceof Float32Array||a instanceof Float64Array||a instanceof ArrayBuffer||a instanceof DataView}, -aFq(a){if(A.aNj(a))return a -return new A.aAP(new A.xW(t.Fy)).$1(a)}, -aBo:function aBo(a){this.a=a}, -aBN:function aBN(a){this.a=a}, -aBO:function aBO(a){this.a=a}, -aAP:function aAP(a){this.a=a}, -PW:function PW(a){this.a=a}, -id:function id(){}, -OX:function OX(){}, -im:function im(){}, -PY:function PY(){}, -QW:function QW(){}, -wp:function wp(){}, -T_:function T_(){}, -aI:function aI(){}, -iu:function iu(){}, -TR:function TR(){}, -XO:function XO(){}, -XP:function XP(){}, -YI:function YI(){}, -YJ:function YJ(){}, -a0d:function a0d(){}, -a0e:function a0e(){}, -a18:function a18(){}, -a19:function a19(){}, -N8:function N8(){}, -kV(a,b,c){if(b==null)if(a==null)return null -else return a.a6(0,1-c) -else if(a==null)return b.a6(0,c) -else return new A.k(A.lC(a.a,b.a,c),A.lC(a.b,b.b,c))}, -alZ(a,b,c){if(b==null)if(a==null)return null -else return a.a6(0,1-c) -else if(a==null)return b.a6(0,c) -else return new A.Q(A.lC(a.a,b.a,c),A.lC(a.b,b.b,c))}, -l5(a,b){var s=a.a,r=b*2/2,q=a.b -return new A.y(s-r,q-r,s+r,q+r)}, -aKo(a,b,c){var s=a.a,r=c/2,q=a.b,p=b/2 -return new A.y(s-r,q-p,s+r,q+p)}, -rD(a,b){var s=a.a,r=b.a,q=a.b,p=b.b -return new A.y(Math.min(s,r),Math.min(q,p),Math.max(s,r),Math.max(q,p))}, -b_l(a,b,c){var s,r,q,p,o -if(b==null)if(a==null)return null -else{s=1-c -return new A.y(a.a*s,a.b*s,a.c*s,a.d*s)}else{r=b.a -q=b.b -p=b.c -o=b.d -if(a==null)return new A.y(r*c,q*c,p*c,o*c) -else return new A.y(A.lC(a.a,r,c),A.lC(a.b,q,c),A.lC(a.c,p,c),A.lC(a.d,o,c))}}, -CY(a,b,c){var s,r,q -if(b==null)if(a==null)return null -else{s=1-c -return new A.bc(a.a*s,a.b*s)}else{r=b.a -q=b.b -if(a==null)return new A.bc(r*c,q*c) -else return new A.bc(A.lC(a.a,r,c),A.lC(a.b,q,c))}}, -iQ(a,b){var s=b.a,r=b.b -return new A.jJ(a.a,a.b,a.c,a.d,s,r,s,r,s,r,s,r,s===r)}, -aKn(a,b,c,d,e,f,g,h){var s=g.a,r=g.b,q=h.a,p=h.b,o=e.a,n=e.b,m=f.a,l=f.b -return new A.jJ(a,b,c,d,s,r,q,p,m,l,o,n,s===r&&s===q&&s===p&&s===o&&s===n&&s===m&&s===l)}, -aie(a,b,c,d,e){var s=d.a,r=d.b,q=e.a,p=e.b,o=b.a,n=b.b,m=c.a,l=c.b,k=s===r&&s===q&&s===p&&s===o&&s===n&&s===m&&s===l -return new A.jJ(a.a,a.b,a.c,a.d,s,r,q,p,m,l,o,n,k)}, -aYS(a){switch(a.a){case 1:return"up" -case 0:return"down" -case 2:return"repeat"}}, -a3(a,b,c){var s -if(a!=b){s=a==null?null:isNaN(a) -if(s===!0){s=b==null?null:isNaN(b) -s=s===!0}else s=!1}else s=!0 -if(s)return a==null?null:a -if(a==null)a=0 -if(b==null)b=0 -return a*(1-c)+b*c}, -lC(a,b,c){return a*(1-c)+b*c}, -aAi(a,b,c){return a*(1-c)+b*c}, -a3d(a,b,c){if(ac)return c -if(isNaN(a))return c -return a}, -aNu(a,b){return A.ao(A.pB(B.d.bE((a.gl(a)>>>24&255)*b),0,255),a.gl(a)>>>16&255,a.gl(a)>>>8&255,a.gl(a)&255)}, -ao(a,b,c,d){return new A.L(((a&255)<<24|(b&255)<<16|(c&255)<<8|d&255)>>>0)}, -aHC(a,b,c,d){return new A.L(((B.d.dj(d*255,1)&255)<<24|(a&255)<<16|(b&255)<<8|c&255)>>>0)}, -aCD(a){if(a<=0.03928)return a/12.92 -return Math.pow((a+0.055)/1.055,2.4)}, -E(a,b,c){if(b==null)if(a==null)return null -else return A.aNu(a,1-c) -else if(a==null)return A.aNu(b,c) -else return A.ao(A.pB(B.d.ac(A.aAi(a.gl(a)>>>24&255,b.gl(b)>>>24&255,c)),0,255),A.pB(B.d.ac(A.aAi(a.gl(a)>>>16&255,b.gl(b)>>>16&255,c)),0,255),A.pB(B.d.ac(A.aAi(a.gl(a)>>>8&255,b.gl(b)>>>8&255,c)),0,255),A.pB(B.d.ac(A.aAi(a.gl(a)&255,b.gl(b)&255,c)),0,255))}, -a6m(a,b){var s,r,q,p=a.gl(a)>>>24&255 -if(p===0)return b -s=255-p -r=b.gl(b)>>>24&255 -if(r===255)return A.ao(255,B.h.dj(p*(a.gl(a)>>>16&255)+s*(b.gl(b)>>>16&255),255),B.h.dj(p*(a.gl(a)>>>8&255)+s*(b.gl(b)>>>8&255),255),B.h.dj(p*(a.gl(a)&255)+s*(b.gl(b)&255),255)) -else{r=B.h.dj(r*s,255) -q=p+r -return A.ao(q,B.h.jo((a.gl(a)>>>16&255)*p+(b.gl(b)>>>16&255)*r,q),B.h.jo((a.gl(a)>>>8&255)*p+(b.gl(b)>>>8&255)*r,q),B.h.jo((a.gl(a)&255)*p+(b.gl(b)&255)*r,q))}}, -aZG(){return $.ad().b1()}, -aDg(a,b,c,d,e,f){return $.ad().W5(0,a,b,c,d,e,null)}, -aYC(a,b){return $.ad().W6(a,b)}, -a3n(a,b){return A.b69(a,b)}, -b69(a,b){var s=0,r=A.I(t.hP),q,p=2,o,n=[],m,l,k,j,i,h,g,f -var $async$a3n=A.D(function(c,d){if(c===1){o=d -s=p}while(true)switch(s){case 0:s=b==null?3:5 -break -case 3:h=$.ad() -g=a.a -g.toString -q=h.wa(g) -s=1 -break -s=4 -break -case 5:h=$.ad() -g=a.a -g.toString -s=6 -return A.K(h.wa(g),$async$a3n) -case 6:m=d -p=7 -s=10 -return A.K(m.k8(),$async$a3n) -case 10:l=d -try{g=J.aCk(l) -k=g.gdg(g) -g=J.aCk(l) -j=g.gce(g) -i=b.$2(k,j) -g=a.a -g.toString -f=i.a -f=h.kH(g,!1,i.b,f) -q=f -n=[1] -s=8 -break}finally{J.aCk(l).n()}n.push(9) -s=8 -break -case 7:n=[2] -case 8:p=2 -m.n() -s=n.pop() -break -case 9:case 4:case 1:return A.G(q,r) -case 2:return A.F(o,r)}}) -return A.H($async$a3n,r)}, -b_W(a){return a>0?a*0.57735+0.5:0}, -b_X(a,b,c){var s,r,q=A.E(a.a,b.a,c) -q.toString -s=A.kV(a.b,b.b,c) -s.toString -r=A.lC(a.c,b.c,c) -return new A.oP(q,s,r)}, -b_Y(a,b,c){var s,r,q,p=a==null -if(p&&b==null)return null -if(p)a=A.b([],t.kO) -if(b==null)b=A.b([],t.kO) -s=A.b([],t.kO) -r=Math.min(a.length,b.length) -for(q=0;q=0}else q=!1 -if(!q)break -if(r>s)return-1 -if(A.aFB(a,c,d,r)&&A.aFB(a,c,d,r+p))return r -c=r+1}return-1}return A.b3r(a,b,c,d)}, -b3r(a,b,c,d){var s,r,q,p=new A.lN(a,d,c,0) -for(s=b.length;r=p.jW(),r>=0;){q=r+s -if(q>d)break -if(B.c.dv(a,b,r)&&A.aFB(a,c,d,q))return r}return-1}, -f5:function f5(a){this.a=a}, -Ex:function Ex(a,b,c){var _=this -_.a=a -_.b=b -_.c=c -_.d=null}, -aBu(a,b,c,d){if(d===208)return A.aOB(a,b,c) -if(d===224){if(A.aOA(a,b,c)>=0)return 145 -return 64}throw A.d(A.a4("Unexpected state: "+B.h.jc(d,16)))}, -aOB(a,b,c){var s,r,q,p,o -for(s=c,r=0;q=s-2,q>=b;s=q){p=a.charCodeAt(s-1) -if((p&64512)!==56320)break -o=a.charCodeAt(q) -if((o&64512)!==55296)break -if(A.lF(o,p)!==6)break -r^=1}if(r===0)return 193 -else return 144}, -aOA(a,b,c){var s,r,q,p,o -for(s=c;s>b;){--s -r=a.charCodeAt(s) -if((r&64512)!==56320)q=A.tM(r) -else{if(s>b){--s -p=a.charCodeAt(s) -o=(p&64512)===55296}else{p=0 -o=!1}if(o)q=A.lF(p,r) -else break}if(q===7)return s -if(q!==4)break}return-1}, -aFB(a,b,c,d){var s,r,q,p,o,n,m,l,k,j=u.q -if(b=c)return!0 -n=a.charCodeAt(o) -if((n&64512)!==56320)return!0 -p=A.lF(s,n)}else return(q&64512)!==55296 -if((q&64512)!==56320){m=A.tM(q) -d=r}else{d-=2 -if(b<=d){l=a.charCodeAt(d) -if((l&64512)!==55296)return!0 -m=A.lF(l,q)}else return!0}k=j.charCodeAt(j.charCodeAt(p|176)&240|m) -return((k>=208?A.aBu(a,b,d,k):k)&1)===0}return b!==c}, -b6F(a,b,c,d){var s,r,q,p,o,n -if(d===b||d===c)return d -s=a.charCodeAt(d) -if((s&63488)!==55296){r=A.tM(s) -q=d}else if((s&64512)===55296){p=d+1 -if(pb){o=s-1 -n=a.charCodeAt(o) -if((n&64512)===55296){q=A.lF(n,r) -s=o}else q=2}else q=2 -if(q===6)m=A.aOB(a,b,s)!==144?160:48 -else{l=q===1 -if(l||q===4)if(A.aOA(a,b,s)>=0)m=l?144:128 -else m=48 -else m=u.S.charCodeAt(q|176)}return new A.lN(a,a.length,d,m).jW()}, -lN:function lN(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -zr:function zr(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -bS:function bS(){}, -a5z:function a5z(a){this.a=a}, -a5A:function a5A(a){this.a=a}, -a5B:function a5B(a,b){this.a=a -this.b=b}, -a5C:function a5C(a){this.a=a}, -a5D:function a5D(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -a5E:function a5E(a,b,c){this.a=a -this.b=b -this.c=c}, -a5F:function a5F(a){this.a=a}, -MA:function MA(a){this.$ti=a}, -y4:function y4(a,b,c){this.a=a -this.b=b -this.c=c}, -Pc:function Pc(a){this.$ti=a}, -O9:function O9(a,b,c){var _=this -_.a=a -_.b=b -_.d=_.c=0 -_.$ti=c}, -a9v:function a9v(){}, -a9w:function a9w(){}, -a47:function a47(){}, -aD9(a){return $.aY5.bT(0,a.a.a,new A.a9H(a,null))}, -aIA(a,b){return new A.Nv(b.e,b.f,b.r,b.w,"firebase_auth",b.b,b.c)}, -aLv(a,b){A.hc(b,$.aC9(),!0) -return new A.j3(b)}, -aLw(a,b){A.hc(b,$.aC8(),!0) -return new A.Fp(a,b)}, -uO:function uO(a,b,c,d){var _=this -_.c=null -_.d=a -_.e=b -_.a=c -_.b=d}, -a9H:function a9H(a,b){this.a=a -this.b=b}, -a9I:function a9I(a){this.a=a}, -a9J:function a9J(){}, -Nv:function Nv(a,b,c,d,e,f,g){var _=this -_.e=a -_.f=b -_.r=c -_.w=d -_.a=e -_.b=f -_.c=g}, -j3:function j3(a){this.a=a}, -Fp:function Fp(a,b){this.a=a -this.b=b}, -yW:function yW(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -L3:function L3(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -a4x:function a4x(){}, -AM(a,b,c,d,e,f){return new A.AL(c,b,e,f,"firebase_auth",d,a)}, -AL:function AL(a,b,c,d,e,f,g){var _=this -_.e=a -_.f=b -_.r=c -_.w=d -_.a=e -_.b=f -_.c=g}, -aIB(a,b,c,d,e,f){return new A.uP(b,null,d,f,"firebase_auth",c,a)}, -uP:function uP(a,b,c,d,e,f,g){var _=this -_.e=a -_.f=b -_.r=c -_.w=d -_.a=e -_.b=f -_.c=g}, -aZo(a){var s=$.Ks(),r=new A.rf(new A.Nu(),a) -$.eQ().m(0,r,s) -r.a5Z(a) -return r}, -rf:function rf(a,b){this.c=a -this.d=null -this.a=b}, -afJ:function afJ(a,b){this.a=a -this.b=b}, -afG:function afG(a,b){this.a=a -this.b=b}, -afK:function afK(a,b){this.a=a -this.b=b}, -afF:function afF(a,b){this.a=a -this.b=b}, -afL:function afL(a){this.a=a}, -afI:function afI(){}, -iz:function iz(a,b){this.a=a -this.$ti=b}, -afP(a){var s=$.aG5(),r=new A.Px(new A.agp()) -$.eQ().m(0,r,s) -return r}, -Px:function Px(a){this.b=a}, -afQ:function afQ(a){this.e=a}, -afV(a,b,c){var s=$.aC9(),r=new A.Py(new A.a9z(),c) -$.eQ().m(0,r,s) -return r}, -Py:function Py(a,b){this.d=a -this.c=b}, -Pz:function Pz(a,b,c){this.b=a -this.c=b -this.d=c}, -b6u(a){var s=A.ae5(a,t.YS) -s=A.iN(s,new A.aBJ(),s.$ti.i("q.E"),t.Mw) -return A.a8(s,!0,A.p(s).i("q.E"))}, -aBJ:function aBJ(){}, -aK_(a){var s,r,q,p,o -t.W.a(a) -s=J.X(a) -r=A.au(s.h(a,0)) -q=s.h(a,1) -q.toString -A.ka(q) -p=A.au(s.h(a,2)) -o=s.h(a,3) -o.toString -return new A.mr(r,q,p,A.aQ(o),A.au(s.h(a,4)))}, -aJW(a){var s -t.W.a(a) -s=J.X(a) -return new A.QF(A.au(s.h(a,0)),A.au(s.h(a,1)))}, -aJX(a){var s,r,q,p,o -t.W.a(a) -s=J.X(a) -r=s.h(a,0) -r.toString -A.fb(r) -q=A.au(s.h(a,1)) -p=A.au(s.h(a,2)) -o=A.au(s.h(a,3)) -s=t.J1.a(s.h(a,4)) -return new A.QH(r,q,p,o,s==null?null:J.yS(s,t.u,t.X))}, -aJY(a){var s,r,q,p -t.W.a(a) -s=J.X(a) -r=s.h(a,0) -r.toString -A.aQ(r) -q=s.h(a,1) -q.toString -A.aQ(q) -p=s.h(a,2) -p.toString -return new A.QI(r,q,A.ef(p),A.au(s.h(a,3)))}, -aK0(a){var s,r,q,p,o,n,m,l -t.W.a(a) -s=J.X(a) -r=s.h(a,0) -r.toString -A.aQ(r) -q=A.au(s.h(a,1)) -p=A.au(s.h(a,2)) -o=A.au(s.h(a,3)) -n=A.au(s.h(a,4)) -m=s.h(a,5) -m.toString -A.fb(m) -l=s.h(a,6) -l.toString -return new A.vU(r,q,p,o,n,m,A.fb(l),A.au(s.h(a,7)),A.au(s.h(a,8)),A.au(s.h(a,9)),A.dz(s.h(a,10)),A.dz(s.h(a,11)))}, -QP(a){var s,r,q=t.W -q.a(a) -s=J.X(a) -r=s.h(a,0) -r.toString -r=A.aK0(q.a(r)) -s=t.wh.a(s.h(a,1)) -s.toString -return new A.CL(r,J.fW(s,t.J1))}, -kg:function kg(a,b){this.a=a -this.b=b}, -QL:function QL(a){this.a=a}, -QM:function QM(a,b){this.a=a -this.b=b}, -mr:function mr(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -ot:function ot(a,b){this.a=a -this.b=b}, -QE:function QE(a,b){this.a=a -this.b=b}, -QF:function QF(a,b){this.a=a -this.b=b}, -vT:function vT(a,b,c){this.a=a -this.b=b -this.c=c}, -QH:function QH(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -QI:function QI(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -vU:function vU(a,b,c,d,e,f,g,h,i,j,k,l){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l}, -CL:function CL(a,b){this.a=a -this.b=b}, -QG:function QG(a,b,c,d,e,f,g){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g}, -QJ:function QJ(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -QN:function QN(a,b,c){this.a=a -this.b=b -this.c=c}, -QR:function QR(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f}, -QK:function QK(a,b,c,d,e,f,g){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g}, -QQ:function QQ(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -QO:function QO(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -atq:function atq(){}, -Nu:function Nu(){}, -a9z:function a9z(){}, -agp:function agp(){}, -agi:function agi(){}, -a9y:function a9y(){}, -agj:function agj(){}, -agl:function agl(){}, -ii:function ii(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -CI:function CI(a,b,c,d,e){var _=this -_.e=a -_.a=b -_.b=c -_.c=d -_.d=e}, -Fe:function Fe(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -ahy:function ahy(){}, -apI:function apI(){}, -aiE:function aiE(){}, -e3:function e3(){}, -xk:function xk(){}, -abj:function abj(a,b,c){this.b=a -this.c=b -this.a=c}, -abm:function abm(a,b,c,d,e,f,g){var _=this -_.e=a -_.f=b -_.r=c -_.a=d -_.b=e -_.c=f -_.d=g}, -PZ:function PZ(a,b,c,d,e,f,g){var _=this -_.e=a -_.f=b -_.r=c -_.a=d -_.b=e -_.c=f -_.d=g}, -Fq:function Fq(a){this.a=a}, -aq6:function aq6(a,b){this.a=a -this.b=b}, -aIC(){var s=$.ai,r=$.Ks() -s=new A.Nx(new A.b3(new A.ae(s,t.c),t.h),null) -$.eQ().m(0,s,r) -return s}, -aY3(a,b){var s=$.ai,r=$.Ks() -s=new A.Nx(new A.b3(new A.ae(s,t.c),t.h),a) -$.eQ().m(0,s,r) -s.a5V(a,b) -return s}, -aY4(a){var s,r,q -A.aIF("auth",new A.a9G()) -s=A.aIC() -A.hc(s,$.Ks(),!0) -$.aD7=s -s=$.aPE() -r=new A.ahz() -q=$.eQ() -q.m(0,r,s) -A.hc(r,s,!0) -s=$.aPX() -r=new A.apJ() -q.m(0,r,s) -A.hc(r,s,!0) -s=$.aPH() -r=new A.aiF() -q.m(0,r,s) -A.hc(r,s,!0)}, -Nx:function Nx(a,b){var _=this -_.c=a -_.e=_.d=null -_.a=b}, -a9C:function a9C(a){this.a=a}, -a9D:function a9D(a){this.a=a}, -a9E:function a9E(a){this.a=a}, -a9F:function a9F(a){this.a=a}, -a9G:function a9G(){}, -ags(a,b){var s=$.aG5(),r=new A.agr() -$.eQ().m(0,r,s) -return r}, -agr:function agr(){}, -agm:function agm(){}, -ahz:function ahz(){}, -apJ:function apJ(){}, -aiF:function aiF(){}, -aq9(a,b,c,d){var s,r=c.a,q=J.bh(r),p=q.gmB(r),o=q.gvz(r),n=q.gBs(r),m=q.gCh(r),l=J.aGQ(q.goM(r))!=null?$.yR().h(0,"Date").hy("parse",A.b([J.aGQ(q.goM(r))],t._m)):null,k=J.aGS(q.goM(r))!=null?$.yR().h(0,"Date").hy("parse",A.b([J.aGS(q.goM(r))],t._m)):null,j=q.grz(r),i=q.gwP(r),h=q.gDe(r),g=q.gDr(r) -r=q.gk6(r) -q=c.gn8(c) -s=A.W(q).i("a1<1,az>") -s=A.a8(new A.a1(q,new A.aqa(),s),!0,s.i("am.E")) -q=$.aC9() -s=new A.lo(new A.CL(new A.vU(r,o,p,i,j,m,n,null,g,h,l,k),s)) -$.eQ().m(0,s,q) -return s}, -lo:function lo(a){this.c=a}, -aqa:function aqa(){}, -aLx(a,b,c){var s=b.a,r=A.b56(new A.a45(firebase_auth.getAdditionalUserInfo(s))),q=A.b57(b),p=J.bh(s),o=A.ags(a,A.agq(firebase_auth.multiFactor(A.tg(p.glX(s)).a))) -s=A.tg(p.glX(s)) -s.toString -s=A.aq9(a,o,s,c) -o=$.aC8() -s=new A.U5(r,q,s) -$.eQ().m(0,s,o) -return s}, -U5:function U5(a,b,c){this.b=a -this.c=b -this.d=c}, -aOi(a,b){return A.aVY(firebase_auth.initializeAuth(a.a,A.aBm(A.l(["errorMap",firebase_auth.debugErrorMap,"persistence",A.b([firebase_auth.indexedDBLocalPersistence,firebase_auth.browserLocalPersistence,firebase_auth.browserSessionPersistence],t.Zw),"popupRedirectResolver",firebase_auth.browserPopupRedirectResolver],t.N,t.z),null)))}, -tg(a){var s,r -if(a==null)return null -s=$.aQ8() -A.kA(a) -r=s.a.get(a) -if(r==null){r=new A.p6(a) -s.m(0,a,r) -s=r}else s=r -return s}, -aVY(a){var s,r=$.aP8() -A.kA(a) -s=r.a.get(a) -if(s==null){s=new A.L2(a) -r.m(0,a,s) -r=s}else r=s -return r}, -b16(a){return new A.xj(a)}, -ln:function ln(a,b){this.a=a -this.$ti=b}, -p6:function p6(a){this.a=a}, -aqb:function aqb(){}, -L2:function L2(a){var _=this -_.f=_.e=_.d=_.c=_.b=null -_.a=a}, -a4H:function a4H(a,b){this.a=a -this.b=b}, -a4I:function a4I(a){this.a=a}, -a4z:function a4z(a){this.a=a}, -a4A:function a4A(a){this.a=a}, -a4B:function a4B(a,b,c){this.a=a -this.b=b -this.c=c}, -a4C:function a4C(a){this.a=a}, -a4D:function a4D(a){this.a=a}, -a4E:function a4E(a){this.a=a}, -a4F:function a4F(a,b,c){this.a=a -this.b=b -this.c=c}, -a4G:function a4G(a){this.a=a}, -L5:function L5(){}, -aD_:function aD_(a){this.a=a}, -aD3:function aD3(a){this.a=a}, -qH:function qH(a){this.a=a}, -aDL:function aDL(a){this.a=a}, -xj:function xj(a){this.a=a}, -a45:function a45(a){this.a=a}, -zp:function zp(){}, -adj:function adj(){}, -jY:function jY(){}, -p8:function p8(){}, -vQ:function vQ(){}, -L4:function L4(){}, -agZ:function agZ(){}, -ah_:function ah_(){}, -L6:function L6(){}, -Ay:function Ay(){}, -AJ:function AJ(){}, -B1:function B1(){}, -abn:function abn(){}, -Cn:function Cn(){}, -apQ:function apQ(){}, -aht:function aht(){}, -ak4:function ak4(){}, -KS:function KS(){}, -aiG:function aiG(){}, -a6r:function a6r(){}, -a3U:function a3U(){}, -aq7:function aq7(){}, -aq8:function aq8(){}, -a3T:function a3T(){}, -a3V:function a3V(){}, -ae3:function ae3(){}, -a48:function a48(){}, -p7:function p7(){}, -yX:function yX(){}, -a4y:function a4y(){}, -C5:function C5(){}, -ij:function ij(){}, -PG:function PG(){}, -C4:function C4(){}, -ago:function ago(){}, -vS:function vS(){}, -xa:function xa(){}, -ahw:function ahw(){}, -ahx:function ahx(){}, -apK:function apK(){}, -apH:function apH(){}, -ahv:function ahv(){}, -apG:function apG(){}, -ahs:function ahs(){}, -agq(a){var s,r=$.aPD() -A.kA(a) -s=r.a.get(a) -if(s==null){s=new A.PH(a) -r.m(0,a,s) -r=s}else r=s -return r}, -PH:function PH(a){this.a=a}, -jC:function jC(a,b){this.a=a -this.$ti=b}, -CJ:function CJ(a){this.a=a}, -Ff:function Ff(a){this.a=a}, -agk:function agk(a){this.a=a}, -agn:function agn(){}, -b3J(a){var s,r -if(a instanceof self.Error&&"customData" in a){s=a.code -r=a.message -if(s==null||!B.c.bJ(s,"auth/"))return!1 -if(r==null||!B.c.t(r,"Firebase"))return!1 -return!0}else return!1}, -aFu(a,b){var s,r,q,p,o,n,m,l,k,j,i=null -if(!A.b3J(a))return A.AM("unknown",i,i,"An unknown error occurred: "+A.j(a),i,i) -s=t.e -s.a(a) -r=J.aH3(a.code,"auth/","") -q=B.c.Dm(J.aH3(a.message," ("+A.j(a.code)+").",""),"Firebase: ","") -p=s.a(a.customData) -if(r==="multi-factor-auth-required"){if(b==null)throw A.d(A.bF("Multi-factor authentication is required, but the auth instance is null. Please ensure that the auth instance is not null before calling `getFirebaseAuthException()`.",i)) -s=firebase_auth.getMultiFactorResolver(b.a,a) -o=new A.agk(s) -n=p.email -m=p.phoneNumber -l=p.tenantId -k=o.gr7(o) -j=A.W(k).i("a1<1,ii>") -A.a8(new A.a1(k,new A.aB7(),j),!0,j.i("am.E")) -J.aVc(s) -A.aIC() -s=$.aG6() -j=new A.agm() -$.eQ().m(0,j,s) -return A.aIB(r,n,q,m,j,l)}return A.AM(r,i,p.email,q,p.phoneNumber,p.tenantId)}, -b56(a){var s=a.a,r=J.bh(s) -return new A.yW(r.gCk(s),A.aAN(r.gDb(s),null),r.grB(s),r.gDJ(s),null)}, -b54(a){var s=new firebase_auth.GithubAuthProvider(),r=new A.qH(s) -B.b.N(a.b,r.gV0(r)) -J.aVA(s,A.aBm(a.c,null)) -return r}, -b57(a){var s,r,q,p,o,n=null,m=firebase_auth.OAuthProvider.credentialFromResult(a.a) -if(m==null)return n -s=J.bh(m) -r=s.grB(m) -q=s.gxW(m) -p=s.gAn(m) -o=s.gxH(m) -m=s.gC7(m) -return new A.PZ(m,o,n,r,q==null?"oauth":q,n,p)}, -b55(a){var s=firebase_auth.GoogleAuthProvider.credential(a.e,a.d) -return s}, -aB7:function aB7(){}, -a9Z(a){var s=0,r=A.I(t.Sm),q,p,o -var $async$a9Z=A.D(function(b,c){if(b===1)return A.F(c,r) -while(true)switch(s){case 0:p=$.m4 -s=3 -return A.K((p==null?$.m4=$.Kt():p).kF(null,a),$async$a9Z) -case 3:o=c -A.hc(o,$.tO(),!0) -q=new A.kB(o) -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$a9Z,r)}, -kB:function kB(a){this.a=a}, -aOI(a){return A.a9V("no-app","No Firebase App '"+a+"' has been created - call Firebase.initializeApp()","core")}, -aO3(a){return A.a9V("duplicate-app",'A Firebase App named "'+a+'" already exists',"core")}, -b58(){return A.a9V("not-initialized","Firebase has not been correctly initialized.\n\nUsually this means you've attempted to use a Firebase service before calling `Firebase.initializeApp`.\n\nView the documentation for more information: https://firebase.flutter.dev/docs/overview#initialization\n ","core")}, -a9V(a,b,c){return new A.uQ(c,b,a)}, -aY6(a){return new A.uR(a.a,a.b,a.c,a.d,a.e,a.f,a.r,a.w,a.x,a.y,a.z,a.Q,a.as,a.at)}, -uQ:function uQ(a,b,c){this.a=a -this.b=b -this.c=c}, -uR:function uR(a,b,c,d,e,f,g,h,i,j,k,l,m,n){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n}, -Pv:function Pv(){}, -afN:function afN(){}, -BZ:function BZ(a,b,c){this.e=a -this.a=b -this.b=c}, -a9X:function a9X(){}, -nP:function nP(){}, -a9Y:function a9Y(){}, -aJZ(a){var s,r,q,p,o -t.W.a(a) -s=J.X(a) -r=s.h(a,0) -r.toString -A.aQ(r) -q=s.h(a,1) -q.toString -A.aQ(q) -p=s.h(a,2) -p.toString -A.aQ(p) -o=s.h(a,3) -o.toString -return new A.CK(r,q,p,A.aQ(o),A.au(s.h(a,4)),A.au(s.h(a,5)),A.au(s.h(a,6)),A.au(s.h(a,7)),A.au(s.h(a,8)),A.au(s.h(a,9)),A.au(s.h(a,10)),A.au(s.h(a,11)),A.au(s.h(a,12)),A.au(s.h(a,13)))}, -CK:function CK(a,b,c,d,e,f,g,h,i,j,k,l,m,n){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n}, -jI:function jI(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -atr:function atr(){}, -a9K:function a9K(){}, -a9x:function a9x(){}, -aMQ(a){var s=null,r=J.bh(a),q=r.guQ(a),p=r.gAJ(a),o=r.gvo(a),n=r.gDc(a),m=r.gtp(a),l=r.gCz(a) -return new A.uR(q,r.gAE(a),l,n,p,o,m,r.gCy(a),s,s,s,s,s,s)}, -b3D(a){var s -if(J.e(a.name,"FirebaseError")){s=a.code -return s==null?"":s}return""}, -b2V(a){var s,r,q,p -if(J.e(a.name,"FirebaseError")){s=a.code -r=a.message -if(r==null)r="" -if(B.c.t(s,"/")){q=s.split("/") -p=q[q.length-1]}else p=s -return A.a9V(p,A.e4(r," ("+s+")",""),"core")}throw A.d(a)}, -aIz(a,b){var s=$.tO(),r=new A.Nt(a,b) -$.eQ().m(0,r,s) -return r}, -aY8(a,b,c){return new A.m3(a,c,b)}, -aIF(a,b){$.aC2().bT(0,a,new A.a9T(a,null,b))}, -aN5(a,b){if(B.c.t(J.di(a),"of undefined"))throw A.d(A.b58()) -A.a9c(a,b)}, -aOn(a,b){var s,r,q,p,o -try{s=a.$0() -if(t.L0.b(s)){p=b.a(s.kq(A.b5E())) -return p}return s}catch(o){r=A.a6(o) -q=A.aJ(o) -A.aN5(r,q)}}, -Nt:function Nt(a,b){this.a=a -this.b=b}, -m3:function m3(a,b,c){this.a=a -this.b=b -this.c=c}, -a9L:function a9L(){}, -a9T:function a9T(a,b,c){this.a=a -this.b=b -this.c=c}, -a9M:function a9M(){}, -a9R:function a9R(a){this.a=a}, -a9S:function a9S(a,b){this.a=a -this.b=b}, -a9N:function a9N(a,b,c){this.a=a -this.b=b -this.c=c}, -a9P:function a9P(){}, -a9Q:function a9Q(a){this.a=a}, -a9O:function a9O(a){this.a=a}, -a4n(a){var s,r=$.aP7() -A.kA(a) -s=r.a.get(a) -if(s==null){s=new A.nl(a) -r.m(0,a,s) -r=s}else r=s -return r}, -nl:function nl(a){this.a=a}, -zl:function zl(){}, -a9U:function a9U(){}, -a9W:function a9W(){}, -aia:function aia(){}, -OE:function OE(){}, -aAN(a,b){var s,r,q,p,o -if(A.aN6(a))return a -if(t.JY.b(a))return J.ei(a,new A.aAO(b),t.z).eM(0) -a.toString -s=A.b5n(a) -if(s!=null)return s -r=self.Object.keys(a) -q=A.m(t.N,t.z) -for(p=J.as(r);p.u();){o=p.gJ(p) -q.m(0,o,A.aAN(a[o],b))}return q}, -b6m(a,b){return self.Array.from(J.ei(a,new A.aBn(b),t.z).eM(0))}, -aBm(a,b){var s,r -if(A.aN6(a)){if(a==null)return null -return a}if(t.JY.b(a))return A.b6m(a,b) -if(t.f.b(a)){s={} -J.fX(a,new A.aBp(s,b)) -return s}if(t._8.b(a))return A.bd(a) -r=A.dW(a,"dartObject","Could not convert") -throw A.d(r)}, -aN6(a){if(a==null||typeof a=="number"||A.iB(a)||typeof a=="string")return!0 -return!1}, -a3m(a,b){return A.b5W(a,b,b)}, -b5W(a,b,c){var s=0,r=A.I(c),q -var $async$a3m=A.D(function(d,e){if(d===1)return A.F(e,r) -while(true)switch(s){case 0:q=A.i3(a,b) -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$a3m,r)}, -aAO:function aAO(a){this.a=a}, -aBn:function aBn(a){this.a=a}, -aBp:function aBp(a,b){this.a=a -this.b=b}, -kh:function kh(a,b){this.a=a -this.b=b}, -cl:function cl(){}, -bO(a,b,c,d,e){var s=new A.tT(0,1,a,B.Aw,b,c,B.aB,B.H,new A.b7(A.b([],t.x8),t.jc),new A.b7(A.b([],t.l),t.fy)) -s.r=e.vm(s.gF_()) -s.GE(d==null?0:d) -return s}, -aHd(a,b,c){var s=new A.tT(-1/0,1/0,a,B.Ax,null,null,B.aB,B.H,new A.b7(A.b([],t.x8),t.jc),new A.b7(A.b([],t.l),t.fy)) -s.r=c.vm(s.gF_()) -s.GE(b) -return s}, -xr:function xr(a,b){this.a=a -this.b=b}, -KO:function KO(a,b){this.a=a -this.b=b}, -tT:function tT(a,b,c,d,e,f,g,h,i,j){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.w=_.r=null -_.x=$ -_.y=null -_.z=g -_.Q=$ -_.as=h -_.d6$=i -_.cU$=j}, -auD:function auD(a,b,c,d,e){var _=this -_.b=a -_.c=b -_.d=c -_.e=d -_.a=e}, -awH:function awH(a,b,c,d,e,f,g){var _=this -_.b=a -_.c=b -_.d=c -_.e=d -_.f=e -_.r=f -_.a=g}, -UG:function UG(){}, -UH:function UH(){}, -UI:function UI(){}, -oA(a){var s=new A.CS(new A.b7(A.b([],t.x8),t.jc),new A.b7(A.b([],t.l),t.fy),0) -s.c=a -if(a==null){s.a=B.H -s.b=0}return s}, -ci(a,b,c){var s,r=new A.uv(b,a,c) -r.I0(b.gb4(b)) -b.bO() -s=b.d6$ -s.b=!0 -s.a.push(r.gI_()) -return r}, -aEl(a,b,c){var s,r,q=new A.tc(a,b,c,new A.b7(A.b([],t.x8),t.jc),new A.b7(A.b([],t.l),t.fy)) -if(J.e(a.gl(a),b.gl(b))){q.a=b -q.b=null -s=b}else{if(a.gl(a)>b.gl(b))q.c=B.Xn -else q.c=B.Xm -s=a}s.fK(q.gq7()) -s=q.gIc() -q.a.U(0,s) -r=q.b -if(r!=null)r.U(0,s) -return q}, -aHe(a,b,c){return new A.ze(a,b,new A.b7(A.b([],t.x8),t.jc),new A.b7(A.b([],t.l),t.fy),0,c.i("ze<0>"))}, -Uv:function Uv(){}, -Uw:function Uw(){}, -zf:function zf(){}, -CS:function CS(a,b,c){var _=this -_.c=_.b=_.a=null -_.d6$=a -_.cU$=b -_.mH$=c}, -jM:function jM(a,b,c){this.a=a -this.d6$=b -this.mH$=c}, -uv:function uv(a,b,c){var _=this -_.a=a -_.b=b -_.c=c -_.d=null}, -a17:function a17(a,b){this.a=a -this.b=b}, -tc:function tc(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=null -_.d=c -_.f=_.e=null -_.d6$=d -_.cU$=e}, -ul:function ul(){}, -ze:function ze(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.d=_.c=null -_.d6$=c -_.cU$=d -_.mH$=e -_.$ti=f}, -FV:function FV(){}, -FW:function FW(){}, -FX:function FX(){}, -VX:function VX(){}, -Zv:function Zv(){}, -Zw:function Zw(){}, -Zx:function Zx(){}, -a_i:function a_i(){}, -a_j:function a_j(){}, -a14:function a14(){}, -a15:function a15(){}, -a16:function a16(){}, -Cz:function Cz(){}, -h_:function h_(){}, -Ha:function Ha(){}, -Dz:function Dz(a){this.a=a}, -e7:function e7(a,b,c){this.a=a -this.b=b -this.c=c}, -F7:function F7(a){this.a=a}, -eE:function eE(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -F6:function F6(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -ju:function ju(a){this.a=a}, -W2:function W2(){}, -zd:function zd(){}, -zc:function zc(){}, -pO:function pO(){}, -nk:function nk(){}, -iv(a,b,c){return new A.ay(a,b,c.i("ay<0>"))}, -hA(a){return new A.eX(a)}, -aA:function aA(){}, -aX:function aX(a,b,c){this.a=a -this.b=b -this.$ti=c}, -f8:function f8(a,b,c){this.a=a -this.b=b -this.$ti=c}, -ay:function ay(a,b,c){this.a=a -this.b=b -this.$ti=c}, -Dx:function Dx(a,b,c,d){var _=this -_.c=a -_.a=b -_.b=c -_.$ti=d}, -hy:function hy(a,b){this.a=a -this.b=b}, -Sv:function Sv(a,b){this.a=a -this.b=b}, -D4:function D4(a,b){this.a=a -this.b=b}, -o3:function o3(a,b){this.a=a -this.b=b}, -uo:function uo(a,b,c){this.a=a -this.b=b -this.$ti=c}, -eX:function eX(a){this.a=a}, -Jw:function Jw(){}, -aLo(a,b){var s=new A.Fj(A.b([],b.i("w>")),A.b([],t.mz),b.i("Fj<0>")) -s.a69(a,b) -return s}, -aLp(a,b,c){return new A.hT(a,b,c.i("hT<0>"))}, -Fj:function Fj(a,b,c){this.a=a -this.b=b -this.$ti=c}, -hT:function hT(a,b,c){this.a=a -this.b=b -this.$ti=c}, -XA:function XA(a,b){this.a=a -this.b=b}, -aHK(a,b,c,d,e,f,g,h,i,j){return new A.Mm(h,j,d,b,a,g,f,e,c,i)}, -Mm:function Mm(a,b,c,d,e,f,g,h,i,j){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.w=f -_.x=g -_.y=h -_.z=i -_.a=j}, -a6I:function a6I(a){this.a=a}, -a6H:function a6H(a,b){this.a=a -this.b=b}, -aHH(a,b,c,d,e,f,g,h,i){return new A.A2(c,h,d,e,g,f,i,b,a,null)}, -A2:function A2(a,b,c,d,e,f,g,h,i,j){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.w=f -_.x=g -_.y=h -_.z=i -_.a=j}, -G2:function G2(a,b,c,d){var _=this -_.d=a -_.f=_.e=$ -_.r=!1 -_.eV$=b -_.cb$=c -_.a=null -_.b=d -_.c=null}, -asx:function asx(a,b){this.a=a -this.b=b}, -JD:function JD(){}, -ur(a,b){if(a==null)return null -return a instanceof A.cs?a.cE(b):a}, -cs:function cs(a,b,c,d,e,f,g,h,i,j,k,l){var _=this -_.b=a -_.c=b -_.d=c -_.e=d -_.f=e -_.r=f -_.w=g -_.x=h -_.y=i -_.z=j -_.Q=k -_.a=l}, -a6E:function a6E(a){this.a=a}, -VL:function VL(){}, -VK:function VK(){}, -a6D:function a6D(){}, -a1S:function a1S(){}, -Mg:function Mg(a,b,c){this.c=a -this.d=b -this.a=c}, -aWG(a,b){return new A.qb(a,b,null)}, -qb:function qb(a,b,c){this.c=a -this.f=b -this.a=c}, -G3:function G3(a){var _=this -_.d=!1 -_.a=null -_.b=a -_.c=null}, -asy:function asy(a){this.a=a}, -asz:function asz(a){this.a=a}, -aHI(a,b,c,d,e,f,g,h){return new A.Mh(g,b,h,c,e,a,d,f)}, -Mh:function Mh(a,b,c,d,e,f,g,h){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h}, -VN:function VN(){}, -VO:function VO(){}, -Mz:function Mz(){}, -A5:function A5(a,b,c){this.d=a -this.w=b -this.a=c}, -Ga:function Ga(a,b,c,d){var _=this -_.d=a -_.e=0 -_.r=_.f=$ -_.eV$=b -_.cb$=c -_.a=null -_.b=d -_.c=null}, -asL:function asL(a){this.a=a}, -asK:function asK(){}, -asJ:function asJ(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -Mi:function Mi(a,b,c){this.r=a -this.w=b -this.a=c}, -JG:function JG(){}, -aCI(a){return new A.qc(a,null)}, -qc:function qc(a,b){this.d=a -this.a=b}, -G5:function G5(a){this.a=null -this.b=a -this.c=null}, -aWH(a){var s -if(a.gYc())return!1 -s=a.kx$ -if(s!=null&&s.length!==0)return!1 -if(a.k1.length!==0)return!1 -s=a.go -if(s.gb4(s)!==B.W)return!1 -s=a.id -if(s.gb4(s)!==B.H)return!1 -if(a.a.cx.a)return!1 -return!0}, -aHJ(a,b,c,d,e,f){var s,r,q,p=a.a.cx.a,o=p?c:A.ci(B.zL,c,new A.ju(B.zL)),n=$.aR4(),m=t.o -m.a(o) -s=p?d:A.ci(B.iP,d,B.El) -r=$.aQY() -m.a(s) -p=p?c:A.ci(B.iP,c,null) -q=$.aQk() -return new A.Mj(new A.aX(o,n,n.$ti.i("aX")),new A.aX(s,r,r.$ti.i("aX")),new A.aX(m.a(p),q,A.p(q).i("aX")),new A.xB(e,new A.a6F(a),new A.a6G(a,f),null,f.i("xB<0>")),null)}, -asA(a,b,c){var s,r,q,p,o,n,m -if(a==b)return a -if(a==null){s=b.a -if(s==null)s=b -else{r=A.W(s).i("a1<1,L>") -r=new A.k1(A.a8(new A.a1(s,new A.asB(c),r),!0,r.i("am.E"))) -s=r}return s}if(b==null){s=a.a -if(s==null)s=a -else{r=A.W(s).i("a1<1,L>") -r=new A.k1(A.a8(new A.a1(s,new A.asC(c),r),!0,r.i("am.E"))) -s=r}return s}s=A.b([],t.t_) -for(r=b.a,q=a.a,p=q==null,o=0;o"))) -return new A.m5(r)}, -uU(a){return new A.m5(a)}, -aYd(a){return a}, -aIH(a,b){if(a.r&&!0)return -if($.aDa===0||!1)A.b5o(J.di(a.a),100,a.b) -else A.aFJ().$1("Another exception was thrown: "+a.ga1C().k(0)) -$.aDa=$.aDa+1}, -aYe(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=A.l(["dart:async-patch",0,"dart:async",0,"package:stack_trace",0,"class _AssertionError",0,"class _FakeAsync",0,"class _FrameCallbackEntry",0,"class _Timer",0,"class _RawReceivePortImpl",0],t.N,t.S),d=A.b0c(J.aVk(a,"\n")) -for(s=0,r=0;q=d.length,r0)q.push(h.a)}B.b.jl(q) -if(s===1)j.push("(elided one frame from "+B.b.gbD(q)+")") -else if(s>1){l=q.length -if(l>1)q[l-1]="and "+B.b.gL(q) -l="(elided "+s -if(q.length>2)j.push(l+" frames from "+B.b.bH(q,", ")+")") -else j.push(l+" frames from "+B.b.bH(q," ")+")")}return j}, -cY(a){var s=$.jj() -if(s!=null)s.$1(a)}, -b5o(a,b,c){var s,r -A.aFJ().$1(a) -s=A.b(B.c.lT(J.di(c==null?A.aEa():A.aYd(c))).split("\n"),t.s) -r=s.length -s=J.aH6(r!==0?new A.Ed(s,new A.aAQ(),t.Ws):s,b) -A.aFJ().$1(B.b.bH(A.aYe(s),"\n"))}, -b1y(a,b,c){return new A.WT(c,a,!0,!0,null,b)}, -pe:function pe(){}, -uK:function uK(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){var _=this -_.f=a -_.r=b -_.w=c -_.y=d -_.z=e -_.Q=f -_.as=g -_.at=h -_.ax=!0 -_.ay=null -_.ch=i -_.CW=j -_.a=k -_.b=l -_.c=m -_.d=n -_.e=o}, -Ni:function Ni(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){var _=this -_.f=a -_.r=b -_.w=c -_.y=d -_.z=e -_.Q=f -_.as=g -_.at=h -_.ax=!0 -_.ay=null -_.ch=i -_.CW=j -_.a=k -_.b=l -_.c=m -_.d=n -_.e=o}, -Ng:function Ng(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){var _=this -_.f=a -_.r=b -_.w=c -_.y=d -_.z=e -_.Q=f -_.as=g -_.at=h -_.ax=!0 -_.ay=null -_.ch=i -_.CW=j -_.a=k -_.b=l -_.c=m -_.d=n -_.e=o}, -bH:function bH(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.f=e -_.r=f}, -aa8:function aa8(a){this.a=a}, -m5:function m5(a){this.a=a}, -aa9:function aa9(){}, -aaa:function aaa(){}, -aab:function aab(){}, -aAQ:function aAQ(){}, -WT:function WT(a,b,c,d,e,f){var _=this -_.f=a -_.a=b -_.b=c -_.c=d -_.d=e -_.e=f}, -WV:function WV(){}, -WU:function WU(){}, -Lp:function Lp(){}, -a50:function a50(a,b){this.a=a -this.b=b}, -eu(a,b){return new A.fp(a,$.aO(),b.i("fp<0>"))}, -aa:function aa(){}, -aH:function aH(a){var _=this -_.aj$=0 -_.ag$=a -_.aU$=_.aB$=0 -_.aN$=!1}, -a5Q:function a5Q(a){this.a=a}, -ty:function ty(a){this.a=a}, -fp:function fp(a,b,c){var _=this -_.a=a -_.aj$=0 -_.ag$=b -_.aU$=_.aB$=0 -_.aN$=!1 -_.$ti=c}, -aX4(a,b,c){var s=null -return A.kt("",s,b,B.bq,a,!1,s,s,B.aO,s,!1,!1,!0,c,s,t.H)}, -kt(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p){var s -if(h==null)s=k?"MISSING":null -else s=h -return new A.hB(e,!1,c,s,g,o,k,b,d,i,a,m,l,j,n,p.i("hB<0>"))}, -aCN(a,b,c){return new A.ML(c,a,!0,!0,null,b)}, -aV(a){return B.c.rs(B.h.jc(J.C(a)&1048575,16),5,"0")}, -aX3(a,b,c,d,e,f,g){return new A.MM(b,d,"",g,a,c,!0,!0,null,f)}, -Af:function Af(a,b){this.a=a -this.b=b}, -ku:function ku(a,b){this.a=a -this.b=b}, -avF:function avF(){}, -eY:function eY(){}, -hB:function hB(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p){var _=this -_.f=a -_.r=b -_.w=c -_.y=d -_.z=e -_.Q=f -_.as=g -_.at=h -_.ax=!0 -_.ay=null -_.ch=i -_.CW=j -_.a=k -_.b=l -_.c=m -_.d=n -_.e=o -_.$ti=p}, -qk:function qk(){}, -ML:function ML(a,b,c,d,e,f){var _=this -_.f=a -_.a=b -_.b=c -_.c=d -_.d=e -_.e=f}, -ag:function ag(){}, -MK:function MK(){}, -ks:function ks(){}, -MM:function MM(a,b,c,d,e,f,g,h,i,j){var _=this -_.f=a -_.r=b -_.x=c -_.y=d -_.z=e -_.a=f -_.b=g -_.c=h -_.d=i -_.e=j}, -Wd:function Wd(){}, -h8:function h8(){}, -mk:function mk(){}, -mP:function mP(){}, -et:function et(a,b){this.a=a -this.$ti=b}, -aEG:function aEG(a){this.$ti=a}, -iM:function iM(){}, -BA:function BA(){}, -Co(a){return new A.b7(A.b([],a.i("w<0>")),a.i("b7<0>"))}, -b7:function b7(a,b){var _=this -_.a=a -_.b=!1 -_.c=$ -_.$ti=b}, -v0:function v0(a,b){this.a=a -this.$ti=b}, -b43(a){return A.aT(a,null,!1,t.X)}, -vR:function vR(a,b){this.a=a -this.$ti=b}, -az4:function az4(){}, -X2:function X2(a){this.a=a}, -pc:function pc(a,b){this.a=a -this.b=b}, -GQ:function GQ(a,b){this.a=a -this.b=b}, -ea:function ea(a,b){this.a=a -this.b=b}, -aqp(a){var s=new DataView(new ArrayBuffer(8)),r=A.dm(s.buffer,0,null) -return new A.aqo(new Uint8Array(a),s,r)}, -aqo:function aqo(a,b,c){var _=this -_.a=a -_.b=0 -_.c=!1 -_.d=b -_.e=c}, -D3:function D3(a){this.a=a -this.b=0}, -b0c(a){var s=t.ZK -return A.a8(new A.hr(new A.eG(new A.aL(A.b(B.c.jd(a).split("\n"),t.s),new A.ams(),t.Hd),A.b6O(),t.C9),s),!0,s.i("q.E"))}, -b0b(a){var s,r,q="",p=$.aPT().ev(a) -if(p==null)return null -s=A.b(p.b[1].split("."),t.s) -r=s.length>1?B.b.gM(s):q -return new A.jU(a,-1,q,q,q,-1,-1,r,s.length>1?A.er(s,1,null,t.N).bH(0,"."):B.b.gbD(s))}, -b0d(a){var s,r,q,p,o,n,m,l,k,j,i=null,h="" -if(a==="")return B.PB -else if(a==="...")return B.PA -if(!B.c.bJ(a,"#"))return A.b0b(a) -s=A.aG("^#(\\d+) +(.+) \\((.+?):?(\\d+){0,1}:?(\\d+){0,1}\\)$",!0,!1,!1,!1).ev(a).b -r=s[2] -r.toString -q=A.e4(r,".","") -if(B.c.bJ(q,"new")){p=q.split(" ").length>1?q.split(" ")[1]:h -if(B.c.t(p,".")){o=p.split(".") -p=o[0] -q=o[1]}else q=""}else if(B.c.t(q,".")){o=q.split(".") -p=o[0] -q=o[1]}else p="" -r=s[3] -r.toString -n=A.fo(r,0,i) -m=n.gdL(n) -if(n.gdB()==="dart"||n.gdB()==="package"){l=n.gru()[0] -m=B.c.Dm(n.gdL(n),A.j(n.gru()[0])+"/","")}else l=h -r=s[1] -r.toString -r=A.dT(r,i) -k=n.gdB() -j=s[4] -if(j==null)j=-1 -else{j=j -j.toString -j=A.dT(j,i)}s=s[5] -if(s==null)s=-1 -else{s=s -s.toString -s=A.dT(s,i)}return new A.jU(a,r,k,l,m,j,s,p,q)}, -jU:function jU(a,b,c,d,e,f,g,h,i){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i}, -ams:function ams(){}, -cW:function cW(a,b){this.a=a -this.$ti=b}, -anI:function anI(a){this.a=a}, -NX:function NX(a,b){this.a=a -this.b=b}, -du:function du(){}, -NV:function NV(a,b,c){this.a=a -this.b=b -this.c=c}, -xR:function xR(a){var _=this -_.a=a -_.b=!0 -_.d=_.c=!1 -_.e=null}, -atZ:function atZ(a){this.a=a}, -aaU:function aaU(a){this.a=a}, -aaW:function aaW(a,b){this.a=a -this.b=b}, -aaV:function aaV(a,b,c){this.a=a -this.b=b -this.c=c}, -aYc(a,b,c,d,e,f,g){return new A.AR(c,g,f,a,e,!1)}, -awJ:function awJ(a,b,c,d,e,f,g,h){var _=this -_.a=a -_.b=!1 -_.c=b -_.d=c -_.e=d -_.f=e -_.r=f -_.w=g -_.x=h -_.y=null}, -v_:function v_(){}, -aaX:function aaX(a){this.a=a}, -aaY:function aaY(a,b){this.a=a -this.b=b}, -AR:function AR(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.f=e -_.r=f}, -aNB(a,b){switch(b.a){case 1:case 4:return a -case 0:case 2:case 3:return a===0?1:a -case 5:return a===0?1:a}}, -aZR(a,b){var s=A.W(a) -return new A.hr(new A.eG(new A.aL(a,new A.ahQ(),s.i("aL<1>")),new A.ahR(b),s.i("eG<1,bn?>")),t.FI)}, -ahQ:function ahQ(){}, -ahR:function ahR(a){this.a=a}, -lW:function lW(a){this.a=a}, -kx:function kx(a,b,c){this.a=a -this.b=b -this.d=c}, -ky:function ky(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -i7:function i7(a,b){this.a=a -this.b=b}, -CO(a,b){var s,r -if(a==null)return b -s=new A.bE(new Float64Array(3)) -s.dC(b.a,b.b,0) -r=a.D6(s).a -return new A.k(r[0],r[1])}, -rs(a,b,c,d){if(a==null)return c -if(b==null)b=A.CO(a,d) -return b.Z(0,A.CO(a,d.Z(0,c)))}, -aDU(a){var s,r,q=new Float64Array(4),p=new A.jZ(q) -p.xT(0,0,1,0) -s=new Float64Array(16) -r=new A.b6(s) -r.aS(a) -s[11]=q[3] -s[10]=q[2] -s[9]=q[1] -s[8]=q[0] -r.Ec(2,p) -return r}, -aZO(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){return new A.rq(o,d,n,0,e,a,h,B.e,0,!1,!1,0,j,i,b,c,0,0,0,l,k,g,m,0,!1,null,null)}, -aZY(a,b,c,d,e,f,g,h,i,j,k,l){return new A.rw(l,c,k,0,d,a,f,B.e,0,!1,!1,0,h,g,0,b,0,0,0,j,i,0,0,0,!1,null,null)}, -aZT(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1){return new A.mv(a1,f,a0,0,g,c,j,b,a,!1,!1,0,l,k,d,e,q,m,p,o,n,i,s,0,r,null,null)}, -aZQ(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3){return new A.ow(a3,g,a2,k,h,c,l,b,a,f,!1,0,n,m,d,e,s,o,r,q,p,j,a1,0,a0,null,null)}, -aZS(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3){return new A.ox(a3,g,a2,k,h,c,l,b,a,f,!1,0,n,m,d,e,s,o,r,q,p,j,a1,0,a0,null,null)}, -aZP(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0){return new A.mu(a0,d,s,h,e,b,i,B.e,a,!0,!1,j,l,k,0,c,q,m,p,o,n,g,r,0,!1,null,null)}, -aZU(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3){return new A.rt(a3,e,a2,j,f,c,k,b,a,!0,!1,l,n,m,0,d,s,o,r,q,p,h,a1,i,a0,null,null)}, -b_1(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1){return new A.rA(a1,e,a0,i,f,b,j,B.e,a,!1,!1,k,m,l,c,d,r,n,q,p,o,h,s,0,!1,null,null)}, -b__(a,b,c,d,e,f,g){return new A.ry(e,g,b,f,0,c,a,d,B.e,0,!1,!1,1,1,1,0,0,0,0,0,0,0,0,0,0,!1,null,null)}, -b_0(a,b,c,d,e,f){return new A.rz(f,b,e,0,c,a,d,B.e,0,!1,!1,1,1,1,0,0,0,0,0,0,0,0,0,0,!1,null,null)}, -aZZ(a,b,c,d,e,f,g){return new A.rx(e,g,b,f,0,c,a,d,B.e,0,!1,!1,1,1,1,0,0,0,0,0,0,0,0,0,0,!1,null,null)}, -aZW(a,b,c,d,e,f,g){return new A.mw(g,b,f,c,B.aQ,a,d,B.e,0,!1,!1,1,1,1,0,0,0,0,0,0,0,0,0,0,e,null,null)}, -aZX(a,b,c,d,e,f,g,h,i,j,k){return new A.rv(c,d,h,g,k,b,j,e,B.aQ,a,f,B.e,0,!1,!1,1,1,1,0,0,0,0,0,0,0,0,0,0,i,null,null)}, -aZV(a,b,c,d,e,f,g){return new A.ru(g,b,f,c,B.aQ,a,d,B.e,0,!1,!1,1,1,1,0,0,0,0,0,0,0,0,0,0,e,null,null)}, -aK2(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0){return new A.rr(a0,e,s,i,f,b,j,B.e,a,!1,!1,0,l,k,c,d,q,m,p,o,n,h,r,0,!1,null,null)}, -pC(a,b){var s -switch(a.a){case 1:return 1 -case 2:case 3:case 5:case 0:case 4:s=b==null?null:b.a -return s==null?18:s}}, -aAJ(a,b){var s -switch(a.a){case 1:return 2 -case 2:case 3:case 5:case 0:case 4:if(b==null)s=null -else{s=b.a -s=s!=null?s*2:null}return s==null?36:s}}, -b5_(a){switch(a.a){case 1:return 1 -case 2:case 3:case 5:case 0:case 4:return 18}}, -bn:function bn(){}, -ed:function ed(){}, -Un:function Un(){}, -a1e:function a1e(){}, -Vq:function Vq(){}, -rq:function rq(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0 -_.db=a1 -_.dx=a2 -_.dy=a3 -_.fr=a4 -_.fx=a5 -_.fy=a6 -_.go=a7}, -a1a:function a1a(a,b){var _=this -_.c=a -_.d=b -_.b=_.a=$}, -VA:function VA(){}, -rw:function rw(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0 -_.db=a1 -_.dx=a2 -_.dy=a3 -_.fr=a4 -_.fx=a5 -_.fy=a6 -_.go=a7}, -a1l:function a1l(a,b){var _=this -_.c=a -_.d=b -_.b=_.a=$}, -Vv:function Vv(){}, -mv:function mv(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0 -_.db=a1 -_.dx=a2 -_.dy=a3 -_.fr=a4 -_.fx=a5 -_.fy=a6 -_.go=a7}, -a1g:function a1g(a,b){var _=this -_.c=a -_.d=b -_.b=_.a=$}, -Vt:function Vt(){}, -ow:function ow(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0 -_.db=a1 -_.dx=a2 -_.dy=a3 -_.fr=a4 -_.fx=a5 -_.fy=a6 -_.go=a7}, -a1d:function a1d(a,b){var _=this -_.c=a -_.d=b -_.b=_.a=$}, -Vu:function Vu(){}, -ox:function ox(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0 -_.db=a1 -_.dx=a2 -_.dy=a3 -_.fr=a4 -_.fx=a5 -_.fy=a6 -_.go=a7}, -a1f:function a1f(a,b){var _=this -_.c=a -_.d=b -_.b=_.a=$}, -Vs:function Vs(){}, -mu:function mu(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0 -_.db=a1 -_.dx=a2 -_.dy=a3 -_.fr=a4 -_.fx=a5 -_.fy=a6 -_.go=a7}, -a1c:function a1c(a,b){var _=this -_.c=a -_.d=b -_.b=_.a=$}, -Vw:function Vw(){}, -rt:function rt(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0 -_.db=a1 -_.dx=a2 -_.dy=a3 -_.fr=a4 -_.fx=a5 -_.fy=a6 -_.go=a7}, -a1h:function a1h(a,b){var _=this -_.c=a -_.d=b -_.b=_.a=$}, -VE:function VE(){}, -rA:function rA(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0 -_.db=a1 -_.dx=a2 -_.dy=a3 -_.fr=a4 -_.fx=a5 -_.fy=a6 -_.go=a7}, -a1p:function a1p(a,b){var _=this -_.c=a -_.d=b -_.b=_.a=$}, -fF:function fF(){}, -VC:function VC(){}, -ry:function ry(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8){var _=this -_.B=a -_.a=b -_.b=c -_.c=d -_.d=e -_.e=f -_.f=g -_.r=h -_.w=i -_.x=j -_.y=k -_.z=l -_.Q=m -_.as=n -_.at=o -_.ax=p -_.ay=q -_.ch=r -_.CW=s -_.cx=a0 -_.cy=a1 -_.db=a2 -_.dx=a3 -_.dy=a4 -_.fr=a5 -_.fx=a6 -_.fy=a7 -_.go=a8}, -a1n:function a1n(a,b){var _=this -_.c=a -_.d=b -_.b=_.a=$}, -VD:function VD(){}, -rz:function rz(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0 -_.db=a1 -_.dx=a2 -_.dy=a3 -_.fr=a4 -_.fx=a5 -_.fy=a6 -_.go=a7}, -a1o:function a1o(a,b){var _=this -_.c=a -_.d=b -_.b=_.a=$}, -VB:function VB(){}, -rx:function rx(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8){var _=this -_.B=a -_.a=b -_.b=c -_.c=d -_.d=e -_.e=f -_.f=g -_.r=h -_.w=i -_.x=j -_.y=k -_.z=l -_.Q=m -_.as=n -_.at=o -_.ax=p -_.ay=q -_.ch=r -_.CW=s -_.cx=a0 -_.cy=a1 -_.db=a2 -_.dx=a3 -_.dy=a4 -_.fr=a5 -_.fx=a6 -_.fy=a7 -_.go=a8}, -a1m:function a1m(a,b){var _=this -_.c=a -_.d=b -_.b=_.a=$}, -Vy:function Vy(){}, -mw:function mw(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0 -_.db=a1 -_.dx=a2 -_.dy=a3 -_.fr=a4 -_.fx=a5 -_.fy=a6 -_.go=a7}, -a1j:function a1j(a,b){var _=this -_.c=a -_.d=b -_.b=_.a=$}, -Vz:function Vz(){}, -rv:function rv(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1){var _=this -_.id=a -_.k1=b -_.k2=c -_.k3=d -_.a=e -_.b=f -_.c=g -_.d=h -_.e=i -_.f=j -_.r=k -_.w=l -_.x=m -_.y=n -_.z=o -_.Q=p -_.as=q -_.at=r -_.ax=s -_.ay=a0 -_.ch=a1 -_.CW=a2 -_.cx=a3 -_.cy=a4 -_.db=a5 -_.dx=a6 -_.dy=a7 -_.fr=a8 -_.fx=a9 -_.fy=b0 -_.go=b1}, -a1k:function a1k(a,b){var _=this -_.d=_.c=$ -_.e=a -_.f=b -_.b=_.a=$}, -Vx:function Vx(){}, -ru:function ru(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0 -_.db=a1 -_.dx=a2 -_.dy=a3 -_.fr=a4 -_.fx=a5 -_.fy=a6 -_.go=a7}, -a1i:function a1i(a,b){var _=this -_.c=a -_.d=b -_.b=_.a=$}, -Vr:function Vr(){}, -rr:function rr(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0 -_.db=a1 -_.dx=a2 -_.dy=a3 -_.fr=a4 -_.fx=a5 -_.fy=a6 -_.go=a7}, -a1b:function a1b(a,b){var _=this -_.c=a -_.d=b -_.b=_.a=$}, -YY:function YY(){}, -YZ:function YZ(){}, -Z_:function Z_(){}, -Z0:function Z0(){}, -Z1:function Z1(){}, -Z2:function Z2(){}, -Z3:function Z3(){}, -Z4:function Z4(){}, -Z5:function Z5(){}, -Z6:function Z6(){}, -Z7:function Z7(){}, -Z8:function Z8(){}, -Z9:function Z9(){}, -Za:function Za(){}, -Zb:function Zb(){}, -Zc:function Zc(){}, -Zd:function Zd(){}, -Ze:function Ze(){}, -Zf:function Zf(){}, -Zg:function Zg(){}, -Zh:function Zh(){}, -Zi:function Zi(){}, -Zj:function Zj(){}, -Zk:function Zk(){}, -Zl:function Zl(){}, -Zm:function Zm(){}, -Zn:function Zn(){}, -Zo:function Zo(){}, -Zp:function Zp(){}, -Zq:function Zq(){}, -Zr:function Zr(){}, -a2K:function a2K(){}, -a2L:function a2L(){}, -a2M:function a2M(){}, -a2N:function a2N(){}, -a2O:function a2O(){}, -a2P:function a2P(){}, -a2Q:function a2Q(){}, -a2R:function a2R(){}, -a2S:function a2S(){}, -a2T:function a2T(){}, -a2U:function a2U(){}, -a2V:function a2V(){}, -a2W:function a2W(){}, -a2X:function a2X(){}, -a2Y:function a2Y(){}, -a2Z:function a2Z(){}, -a3_:function a3_(){}, -aIM(a,b){var s=t.S,r=A.d5(s) -return new A.jv(B.ld,A.m(s,t.SP),r,a,b,A.yP(),A.m(s,t.F))}, -aIN(a,b,c){var s=(c-a)/(b-a) -return!isNaN(s)?A.R(s,0,1):s}, -tr:function tr(a,b){this.a=a -this.b=b}, -qE:function qE(a){this.a=a}, -jv:function jv(a,b,c,d,e,f,g){var _=this -_.ch=_.ay=_.ax=_.at=null -_.dx=_.db=$ -_.dy=a -_.f=b -_.r=c -_.a=d -_.b=null -_.c=e -_.d=f -_.e=g}, -aaF:function aaF(a,b){this.a=a -this.b=b}, -aaD:function aaD(a){this.a=a}, -aaE:function aaE(a){this.a=a}, -MJ:function MJ(a){this.a=a}, -acH(){var s=A.b([],t.om),r=new A.b6(new Float64Array(16)) -r.e6() -return new A.m9(s,A.b([r],t.rE),A.b([],t.cR))}, -ib:function ib(a,b){this.a=a -this.b=null -this.$ti=b}, -yB:function yB(){}, -Hn:function Hn(a){this.a=a}, -yc:function yc(a){this.a=a}, -m9:function m9(a,b,c){this.a=a -this.b=b -this.c=c}, -af1(a,b,c){var s=b==null?B.cC:b,r=t.S,q=A.d5(r),p=A.aOy() -return new A.hL(s,null,B.ci,A.m(r,t.SP),q,a,c,p,A.m(r,t.F))}, -aZ9(a){return a===1||a===2||a===4}, -vv:function vv(a,b){this.a=a -this.b=b}, -BO:function BO(a,b,c){this.a=a -this.b=b -this.c=c}, -vu:function vu(a,b){this.b=a -this.c=b}, -hL:function hL(a,b,c,d,e,f,g,h,i){var _=this -_.k2=!1 -_.bk=_.bS=_.bd=_.aG=_.al=_.bn=_.b_=_.y2=_.y1=_.xr=_.x2=_.x1=_.to=_.ry=_.rx=_.RG=_.R8=_.p4=_.p3=_.p2=_.p1=_.ok=_.k4=_.k3=null -_.at=a -_.ay=b -_.ch=c -_.cx=_.CW=null -_.cy=!1 -_.db=null -_.f=d -_.r=e -_.a=f -_.b=null -_.c=g -_.d=h -_.e=i}, -af4:function af4(a,b){this.a=a -this.b=b}, -af3:function af3(a,b){this.a=a -this.b=b}, -af2:function af2(a,b){this.a=a -this.b=b}, -n5:function n5(a,b,c){this.a=a -this.b=b -this.c=c}, -aEz:function aEz(a,b){this.a=a -this.b=b}, -ahX:function ahX(a){this.a=a -this.b=$}, -ahY:function ahY(){}, -OW:function OW(a,b,c){this.a=a -this.b=b -this.c=c}, -aXC(a){return new A.hq(a.gcp(a),A.aT(20,null,!1,t.av))}, -aXD(a){return a===1}, -aLB(a,b){var s=t.S,r=A.d5(s),q=A.aFG() -return new A.k_(B.a1,A.aFF(),B.cU,A.m(s,t.GY),A.aE(s),A.m(s,t.SP),r,a,b,q,A.m(s,t.F))}, -acJ(a,b){var s=t.S,r=A.d5(s),q=A.aFG() -return new A.jw(B.a1,A.aFF(),B.cU,A.m(s,t.GY),A.aE(s),A.m(s,t.SP),r,a,b,q,A.m(s,t.F))}, -aJR(a,b){var s=t.S,r=A.d5(s),q=A.aFG() -return new A.jH(B.a1,A.aFF(),B.cU,A.m(s,t.GY),A.aE(s),A.m(s,t.SP),r,a,b,q,A.m(s,t.F))}, -Gl:function Gl(a,b){this.a=a -this.b=b}, -Ap:function Ap(){}, -a7G:function a7G(a,b){this.a=a -this.b=b}, -a7L:function a7L(a,b){this.a=a -this.b=b}, -a7M:function a7M(a,b){this.a=a -this.b=b}, -a7H:function a7H(){}, -a7I:function a7I(a,b){this.a=a -this.b=b}, -a7J:function a7J(a){this.a=a}, -a7K:function a7K(a,b){this.a=a -this.b=b}, -k_:function k_(a,b,c,d,e,f,g,h,i,j,k){var _=this -_.at=a -_.dx=_.db=_.cy=_.cx=_.CW=_.ch=_.ay=_.ax=null -_.dy=!1 -_.fr=b -_.fx=c -_.go=_.fy=$ -_.k2=_.k1=_.id=null -_.k3=$ -_.k4=!1 -_.ok=d -_.p1=e -_.f=f -_.r=g -_.a=h -_.b=null -_.c=i -_.d=j -_.e=k}, -jw:function jw(a,b,c,d,e,f,g,h,i,j,k){var _=this -_.at=a -_.dx=_.db=_.cy=_.cx=_.CW=_.ch=_.ay=_.ax=null -_.dy=!1 -_.fr=b -_.fx=c -_.go=_.fy=$ -_.k2=_.k1=_.id=null -_.k3=$ -_.k4=!1 -_.ok=d -_.p1=e -_.f=f -_.r=g -_.a=h -_.b=null -_.c=i -_.d=j -_.e=k}, -jH:function jH(a,b,c,d,e,f,g,h,i,j,k){var _=this -_.at=a -_.dx=_.db=_.cy=_.cx=_.CW=_.ch=_.ay=_.ax=null -_.dy=!1 -_.fr=b -_.fx=c -_.go=_.fy=$ -_.k2=_.k1=_.id=null -_.k3=$ -_.k4=!1 -_.ok=d -_.p1=e -_.f=f -_.r=g -_.a=h -_.b=null -_.c=i -_.d=j -_.e=k}, -aXB(a){return a===1}, -VG:function VG(){this.a=!1}, -yx:function yx(a,b,c,d,e){var _=this -_.b=a -_.c=b -_.d=c -_.e=d -_.f=e -_.r=!1}, -jt:function jt(a,b,c,d,e){var _=this -_.y=_.x=_.w=_.r=_.f=null -_.z=a -_.a=b -_.b=null -_.c=c -_.d=d -_.e=e}, -ahS:function ahS(a,b){this.a=a -this.b=b}, -ahU:function ahU(){}, -ahT:function ahT(a,b,c){this.a=a -this.b=b -this.c=c}, -ahV:function ahV(){this.b=this.a=null}, -aYq(a){return!0}, -MZ:function MZ(a,b){this.a=a -this.b=b}, -d4:function d4(){}, -Cp:function Cp(){}, -B0:function B0(a,b){this.a=a -this.b=b}, -w3:function w3(){}, -ai5:function ai5(a,b){this.a=a -this.b=b}, -fE:function fE(a,b){this.a=a -this.b=b}, -X5:function X5(){}, -b_z(a,b,c,d,e,f,g,h){return new A.DF(b,a,d,g,c,h,f,e)}, -yo:function yo(a,b){this.a=a -this.b=b}, -tz:function tz(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -DE:function DE(a,b,c){this.a=a -this.b=b -this.c=c}, -DF:function DF(a,b,c,d,e,f,g,h){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h}, -wo:function wo(a,b,c){this.a=a -this.b=b -this.c=c}, -XT:function XT(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -jO:function jO(a,b,c,d,e,f,g,h,i,j,k,l,m){var _=this -_.at=a -_.ch=_.ay=_.ax=null -_.CW=b -_.cx=null -_.cy=!1 -_.db=c -_.dx=$ -_.dy=null -_.k2=_.k1=_.id=_.go=_.fy=_.fx=_.fr=$ -_.k4=_.k3=null -_.ok=d -_.p1=e -_.p2=f -_.p3=null -_.p4=$ -_.R8=g -_.RG=1 -_.rx=0 -_.f=h -_.r=i -_.a=j -_.b=null -_.c=k -_.d=l -_.e=m}, -akj:function akj(){}, -akk:function akk(){}, -akl:function akl(a,b){this.a=a -this.b=b}, -akm:function akm(a){this.a=a}, -akh:function akh(a){this.a=a}, -aki:function aki(a){this.a=a}, -akn:function akn(){}, -ako:function ako(){}, -Tf(a,b){var s=t.S,r=A.d5(s) -return new A.hS(B.aE,18,B.ci,A.m(s,t.SP),r,a,b,A.yP(),A.m(s,t.F))}, -wV:function wV(a,b){this.a=a -this.c=b}, -oY:function oY(){}, -Lm:function Lm(){}, -hS:function hS(a,b,c,d,e,f,g,h,i){var _=this -_.aJ=_.az=_.ar=_.a1=_.R=_.B=_.bk=_.bS=_.bd=_.aG=_.al=null -_.k3=_.k2=!1 -_.ok=_.k4=null -_.at=a -_.ay=b -_.ch=c -_.cx=_.CW=null -_.cy=!1 -_.db=null -_.f=d -_.r=e -_.a=f -_.b=null -_.c=g -_.d=h -_.e=i}, -anO:function anO(a,b){this.a=a -this.b=b}, -anP:function anP(a,b){this.a=a -this.b=b}, -anQ:function anQ(a,b){this.a=a -this.b=b}, -anR:function anR(a,b){this.a=a -this.b=b}, -anS:function anS(a){this.a=a}, -aYz(a){var s=t.av -return new A.qP(A.aT(20,null,!1,s),a,A.aT(20,null,!1,s))}, -hV:function hV(a){this.a=a}, -th:function th(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -HH:function HH(a,b){this.a=a -this.b=b}, -hq:function hq(a,b){this.a=a -this.b=b -this.c=0}, -qP:function qP(a,b,c){var _=this -_.d=a -_.a=b -_.b=c -_.c=0}, -vw:function vw(a,b,c){var _=this -_.d=a -_.a=b -_.b=c -_.c=0}, -Uo:function Uo(){}, -aqt:function aqt(a,b){this.a=a -this.b=b}, -xq:function xq(a,b,c,d){var _=this -_.c=a -_.d=b -_.e=c -_.a=d}, -Ld:function Ld(a){this.a=a}, -a4J:function a4J(){}, -a4K:function a4K(){}, -a4L:function a4L(){}, -Lc:function Lc(a,b,c,d){var _=this -_.c=a -_.d=b -_.f=c -_.a=d}, -N0:function N0(a){this.a=a}, -a7O:function a7O(){}, -a7P:function a7P(){}, -a7Q:function a7Q(){}, -N_:function N_(a,b,c,d){var _=this -_.c=a -_.d=b -_.f=c -_.a=d}, -N7:function N7(a){this.a=a}, -a8K:function a8K(){}, -a8L:function a8L(){}, -a8M:function a8M(){}, -N6:function N6(a,b,c,d){var _=this -_.c=a -_.d=b -_.f=c -_.a=d}, -aVO(a,b,c){var s,r,q,p,o=null,n=a==null -if(n&&b==null)return o -s=c<0.5 -if(s)r=n?o:a.a -else r=b==null?o:b.a -if(s)q=n?o:a.b -else q=b==null?o:b.b -if(s)p=n?o:a.c -else p=b==null?o:b.c -if(s)n=n?o:a.d -else n=b==null?o:b.d -return new A.tR(r,q,p,n)}, -tR:function tR(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -Uq:function Uq(){}, -aH9(a){return new A.KJ(a.ganb(),a.gana(),null)}, -aCr(a,b){var s=b.c -if(s!=null)return s -switch(A.a2(a).r.a){case 2:case 4:return A.aHM(a,b) -case 0:case 1:case 3:case 5:A.h9(a,B.b_,t.R).toString -switch(b.b.a){case 0:return"Cut" -case 1:return"Copy" -case 2:return"Paste" -case 3:return"Select all" -case 4:return"Delete".toUpperCase() -case 5:return"Scan text" -case 6:return""}break}}, -aVQ(a,b){var s,r,q,p,o,n,m,l=null -switch(A.a2(a).r.a){case 2:return new A.a1(b,new A.a42(),A.W(b).i("a1<1,h>")) -case 1:case 0:s=A.b([],t.p) -for(r=0;q=b.length,r")) -case 4:return new A.a1(b,new A.a44(a),A.W(b).i("a1<1,h>"))}}, -KJ:function KJ(a,b,c){this.c=a -this.e=b -this.a=c}, -a42:function a42(){}, -a43:function a43(a){this.a=a}, -a44:function a44(a){this.a=a}, -aZd(){return new A.v1(new A.afo(),A.m(t.K,t.Qu))}, -apj:function apj(a,b){this.a=a -this.b=b}, -BT:function BT(a,b,c,d,e){var _=this -_.e=a -_.CW=b -_.cy=c -_.p4=d -_.a=e}, -afo:function afo(){}, -afr:function afr(){}, -Hf:function Hf(a){var _=this -_.d=$ -_.a=null -_.b=a -_.c=null}, -av1:function av1(){}, -av2:function av2(){}, -aHf(a,b,c,d){return new A.zj(c,d,a,b,new A.Zt(null,null,1/0,56),null)}, -aVW(a,b){var s=A.a2(a).RG.Q -if(s==null)s=56 -return s+0}, -ayR:function ayR(a){this.b=a}, -Zt:function Zt(a,b,c,d){var _=this -_.e=a -_.f=b -_.a=c -_.b=d}, -zj:function zj(a,b,c,d,e,f){var _=this -_.c=a -_.e=b -_.ax=c -_.ay=d -_.fx=e -_.a=f}, -a4f:function a4f(a,b){this.a=a -this.b=b}, -FC:function FC(a){var _=this -_.d=null -_.e=!1 -_.a=null -_.b=a -_.c=null}, -ar_:function ar_(){}, -UL:function UL(a,b){this.c=a -this.a=b}, -ZK:function ZK(a,b,c,d){var _=this -_.v=null -_.V=a -_.am=b -_.C$=c -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=d -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -aqZ:function aqZ(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p){var _=this -_.ay=a -_.CW=_.ch=$ -_.a=b -_.b=c -_.c=d -_.d=e -_.e=f -_.f=g -_.r=h -_.w=i -_.x=j -_.y=k -_.z=l -_.Q=m -_.as=n -_.at=o -_.ax=p}, -aVU(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){return new A.tU(b==null?null:b,e,d,g,h,j,i,f,a,c,l,n,o,m,k)}, -aVV(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e -if(a===b&&!0)return a -s=A.E(a.a,b.a,c) -r=A.E(a.b,b.b,c) -q=A.a3(a.c,b.c,c) -p=A.a3(a.d,b.d,c) -o=A.E(a.e,b.e,c) -n=A.E(a.f,b.f,c) -m=A.dD(a.r,b.r,c) -l=A.ma(a.w,b.w,c) -k=A.ma(a.x,b.x,c) -j=c<0.5 -if(j)i=a.y -else i=b.y -h=A.a3(a.z,b.z,c) -g=A.a3(a.Q,b.Q,c) -f=A.bp(a.as,b.as,c) -e=A.bp(a.at,b.at,c) -if(j)j=a.ax -else j=b.ax -return A.aVU(k,s,i,q,r,l,p,o,m,n,j,h,e,g,f)}, -tU:function tU(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o}, -UK:function UK(){}, -b44(a,b){var s,r,q,p,o=A.bg("maxValue") -for(s=null,r=0;r<4;++r){q=a[r] -p=b.$1(q) -if(s==null||p>s){o.b=q -s=p}}return o.aI()}, -BV:function BV(a,b){var _=this -_.c=!0 -_.r=_.f=_.e=_.d=null -_.a=a -_.b=b}, -afp:function afp(a,b){this.a=a -this.b=b}, -xz:function xz(a,b){this.a=a -this.b=b}, -mV:function mV(a,b){this.a=a -this.b=b}, -vx:function vx(a,b){var _=this -_.e=!0 -_.r=_.f=$ -_.a=a -_.b=b}, -afq:function afq(a,b){this.a=a -this.b=b}, -aVZ(a,b,c){var s,r,q,p,o,n,m -if(a===b&&!0)return a -s=A.E(a.a,b.a,c) -r=A.E(a.b,b.b,c) -q=A.a3(a.c,b.c,c) -p=A.a3(a.d,b.d,c) -o=A.bp(a.e,b.e,c) -n=A.ek(a.f,b.f,c) -m=A.z_(a.r,b.r,c) -return new A.zt(s,r,q,p,o,n,m,A.kV(a.w,b.w,c))}, -zt:function zt(a,b,c,d,e,f,g,h){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h}, -UU:function UU(){}, -BU:function BU(a,b,c,d,e,f,g,h){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h}, -Y4:function Y4(){}, -aW3(a,b,c){var s,r,q,p,o,n -if(a===b&&!0)return a -s=A.E(a.a,b.a,c) -r=A.a3(a.b,b.b,c) -if(c<0.5)q=a.c -else q=b.c -p=A.a3(a.d,b.d,c) -o=A.E(a.e,b.e,c) -n=A.E(a.f,b.f,c) -return new A.zx(s,r,q,p,o,n,A.ek(a.r,b.r,c))}, -zx:function zx(a,b,c,d,e,f,g){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g}, -V_:function V_(){}, -aW4(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h,g,f -if(a===b&&!0)return a -s=A.E(a.a,b.a,c) -r=A.a3(a.b,b.b,c) -q=A.ma(a.c,b.c,c) -p=A.ma(a.d,b.d,c) -o=A.E(a.e,b.e,c) -n=A.E(a.f,b.f,c) -m=A.bp(a.r,b.r,c) -l=A.bp(a.w,b.w,c) -k=c<0.5 -if(k)j=a.x -else j=b.x -if(k)i=a.y -else i=b.y -if(k)h=a.z -else h=b.z -if(k)g=a.Q -else g=b.Q -if(k)f=a.as -else f=b.as -if(k)k=a.at -else k=b.at -return new A.zz(s,r,q,p,o,n,m,l,j,i,h,g,f,k)}, -zz:function zz(a,b,c,d,e,f,g,h,i,j,k,l,m,n){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n}, -V0:function V0(){}, -aW5(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h -if(a===b)return a -s=A.E(a.a,b.a,c) -r=A.E(a.b,b.b,c) -q=A.a3(a.c,b.c,c) -p=A.E(a.d,b.d,c) -o=A.E(a.e,b.e,c) -n=A.E(a.f,b.f,c) -m=A.a3(a.r,b.r,c) -l=A.dD(a.w,b.w,c) -k=c<0.5 -if(k)j=a.x -else j=b.x -i=A.E(a.y,b.y,c) -h=A.alZ(a.z,b.z,c) -if(k)k=a.Q -else k=b.Q -return new A.zA(s,r,q,p,o,n,m,l,j,i,h,k,A.nr(a.as,b.as,c))}, -zA:function zA(a,b,c,d,e,f,g,h,i,j,k,l,m){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m}, -V1:function V1(){}, -D2:function D2(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1){var _=this -_.c=a -_.f=b -_.r=c -_.w=d -_.x=e -_.y=f -_.Q=g -_.as=h -_.at=i -_.ax=j -_.ay=k -_.ch=l -_.cy=m -_.db=n -_.dy=o -_.fr=p -_.fx=q -_.fy=r -_.go=s -_.id=a0 -_.a=a1}, -ZB:function ZB(a,b){var _=this -_.qX$=a -_.a=null -_.b=b -_.c=null}, -Xv:function Xv(a,b,c){this.e=a -this.c=b -this.a=c}, -HV:function HV(a,b,c){var _=this -_.v=a -_.C$=b -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=c -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -awo:function awo(a,b){this.a=a -this.b=b}, -a2i:function a2i(){}, -aWa(a,b,c){var s,r,q,p,o,n,m,l,k -if(a===b)return a -s=c<0.5 -if(s)r=a.a -else r=b.a -if(s)q=a.b -else q=b.b -if(s)p=a.c -else p=b.c -o=A.a3(a.d,b.d,c) -n=A.a3(a.e,b.e,c) -m=A.ek(a.f,b.f,c) -if(s)l=a.r -else l=b.r -if(s)k=a.w -else k=b.w -if(s)s=a.x -else s=b.x -return new A.zE(r,q,p,o,n,m,l,k,s)}, -zE:function zE(a,b,c,d,e,f,g,h,i){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i}, -V2:function V2(){}, -u2(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2){return new A.c2(a1,c,g,m,o,s,d,n,k,f,j,h,i,q,p,l,a2,a0,b,e,a,r)}, -nu(a6,a7,a8){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5=null -if(a6==a7)return a6 -s=a6==null -r=s?a5:a6.a -q=a7==null -p=q?a5:a7.a -p=A.b5(r,p,a8,A.Ko(),t.p8) -r=s?a5:a6.b -o=q?a5:a7.b -n=t.m -o=A.b5(r,o,a8,A.cg(),n) -r=s?a5:a6.c -r=A.b5(r,q?a5:a7.c,a8,A.cg(),n) -m=s?a5:a6.d -m=A.b5(m,q?a5:a7.d,a8,A.cg(),n) -l=s?a5:a6.e -l=A.b5(l,q?a5:a7.e,a8,A.cg(),n) -k=s?a5:a6.f -k=A.b5(k,q?a5:a7.f,a8,A.cg(),n) -j=s?a5:a6.r -i=q?a5:a7.r -h=t.PM -i=A.b5(j,i,a8,A.Kr(),h) -j=s?a5:a6.w -g=q?a5:a7.w -g=A.b5(j,g,a8,A.aFr(),t.pc) -j=s?a5:a6.x -f=q?a5:a7.x -e=t.tW -f=A.b5(j,f,a8,A.Kq(),e) -j=s?a5:a6.y -j=A.b5(j,q?a5:a7.y,a8,A.Kq(),e) -d=s?a5:a6.z -e=A.b5(d,q?a5:a7.z,a8,A.Kq(),e) -d=s?a5:a6.Q -n=A.b5(d,q?a5:a7.Q,a8,A.cg(),n) -d=s?a5:a6.as -h=A.b5(d,q?a5:a7.as,a8,A.Kr(),h) -d=s?a5:a6.at -d=A.aWb(d,q?a5:a7.at,a8) -c=s?a5:a6.ax -b=q?a5:a7.ax -b=A.b5(c,b,a8,A.aFj(),t.KX) -c=a8<0.5 -if(c)a=s?a5:a6.ay -else a=q?a5:a7.ay -if(c)a0=s?a5:a6.ch -else a0=q?a5:a7.ch -if(c)a1=s?a5:a6.CW -else a1=q?a5:a7.CW -if(c)a2=s?a5:a6.cx -else a2=q?a5:a7.cx -if(c)a3=s?a5:a6.cy -else a3=q?a5:a7.cy -a4=s?a5:a6.db -a4=A.z_(a4,q?a5:a7.db,a8) -if(c)s=s?a5:a6.dx -else s=q?a5:a7.dx -return A.u2(a4,a2,o,i,a3,j,r,n,h,e,f,a,m,g,l,b,d,s,k,a1,p,a0)}, -aWb(a,b,c){if(a==null&&b==null)return null -return new A.XQ(a,b,c)}, -c2:function c2(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0 -_.db=a1 -_.dx=a2}, -XQ:function XQ(a,b,c){this.a=a -this.b=b -this.c=c}, -V3:function V3(){}, -a5q(a,b,c,d){var s -if(d<=1)return a -else if(d>=3)return c -else if(d<=2){s=A.ek(a,b,d-1) -s.toString -return s}s=A.ek(b,c,d-2) -s.toString -return s}, -zF:function zF(){}, -FM:function FM(a,b,c){var _=this -_.r=_.f=_.e=_.d=null -_.d5$=a -_.aZ$=b -_.a=null -_.b=c -_.c=null}, -arS:function arS(){}, -arP:function arP(a,b,c){this.a=a -this.b=b -this.c=c}, -arQ:function arQ(a,b){this.a=a -this.b=b}, -arR:function arR(a,b,c){this.a=a -this.b=b -this.c=c}, -ars:function ars(){}, -art:function art(){}, -aru:function aru(){}, -arF:function arF(){}, -arI:function arI(){}, -arJ:function arJ(){}, -arK:function arK(){}, -arL:function arL(){}, -arM:function arM(){}, -arN:function arN(){}, -arO:function arO(){}, -arv:function arv(){}, -arw:function arw(){}, -arx:function arx(){}, -arG:function arG(a){this.a=a}, -arq:function arq(a){this.a=a}, -arH:function arH(a){this.a=a}, -arp:function arp(a){this.a=a}, -ary:function ary(){}, -arz:function arz(){}, -arA:function arA(){}, -arB:function arB(){}, -arC:function arC(){}, -arD:function arD(){}, -arE:function arE(a){this.a=a}, -arr:function arr(){}, -Ym:function Ym(a){this.a=a}, -Xw:function Xw(a,b,c){this.e=a -this.c=b -this.a=c}, -HW:function HW(a,b,c){var _=this -_.v=a -_.C$=b -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=c -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -awp:function awp(a,b){this.a=a -this.b=b}, -Jy:function Jy(){}, -aHw(a){var s,r,q,p,o -a.an(t.Xj) -s=A.a2(a) -r=s.y1 -if(r.at==null){q=r.at -if(q==null)q=s.ax -p=r.ge4(r) -o=r.gcr(r) -r=A.aHv(!1,r.w,q,r.x,r.y,r.b,r.Q,r.z,r.d,r.ax,r.a,p,o,r.as,r.c)}r.toString -return r}, -aHv(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){return new A.Lz(k,f,o,i,l,m,!1,b,d,e,h,g,n,c,j)}, -a5r:function a5r(a,b){this.a=a -this.b=b}, -a5p:function a5p(a,b){this.a=a -this.b=b}, -Lz:function Lz(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o}, -V4:function V4(){}, -aWf(a,b,c){var s,r,q,p,o,n -if(a===b&&!0)return a -if(c<0.5)s=a.a -else s=b.a -r=A.E(a.b,b.b,c) -q=A.E(a.c,b.c,c) -p=A.E(a.d,b.d,c) -o=A.a3(a.e,b.e,c) -n=A.ek(a.f,b.f,c) -return new A.zG(s,r,q,p,o,n,A.dD(a.r,b.r,c))}, -zG:function zG(a,b,c,d,e,f,g){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g}, -V7:function V7(){}, -ash:function ash(a,b){this.a=a -this.b=b}, -zL:function zL(a,b,c){this.c=a -this.d=b -this.a=c}, -Vc:function Vc(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p){var _=this -_.d=a -_.e=null -_.kA$=b -_.kB$=c -_.lA$=d -_.vN$=e -_.vO$=f -_.r_$=g -_.vP$=h -_.r0$=i -_.BL$=j -_.ot$=k -_.mO$=l -_.mP$=m -_.d5$=n -_.aZ$=o -_.a=null -_.b=p -_.c=null}, -asf:function asf(a){this.a=a}, -asg:function asg(a,b){this.a=a -this.b=b}, -Vb:function Vb(a){var _=this -_.at=_.as=_.Q=_.z=_.y=_.x=_.w=_.r=_.f=_.e=_.d=_.c=_.b=_.a=_.fy=_.fx=_.fr=_.dy=_.dx=_.db=null -_.aj$=0 -_.ag$=a -_.aU$=_.aB$=0 -_.aN$=!1}, -asb:function asb(a,b,c,d,e,f,g,h,i,j,k){var _=this -_.y=a -_.z=b -_.a=c -_.b=d -_.c=e -_.d=f -_.e=g -_.f=h -_.r=i -_.w=j -_.x=k}, -ase:function ase(a){this.a=a}, -asc:function asc(a){this.a=a}, -asd:function asd(a){this.a=a}, -JA:function JA(){}, -JB:function JB(){}, -aWl(a,b,c){var s,r,q,p,o,n,m,l -if(a===b&&!0)return a -s=c<0.5 -if(s)r=a.a -else r=b.a -q=t.m -p=A.b5(a.b,b.b,c,A.cg(),q) -o=A.b5(a.c,b.c,c,A.cg(),q) -q=A.b5(a.d,b.d,c,A.cg(),q) -n=A.a3(a.e,b.e,c) -if(s)m=a.f -else m=b.f -if(s)s=a.r -else s=b.r -l=t.KX.a(A.dD(a.w,b.w,c)) -return new A.u7(r,p,o,q,n,m,s,l,A.aWk(a.x,b.x,c))}, -aWk(a,b,c){if(a==null||b==null)return null -if(a===b)return a -return A.aR(a,b,c)}, -u7:function u7(a,b,c,d,e,f,g,h,i){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i}, -Vd:function Vd(){}, -aWp(a3,a4,a5){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2 -if(a3===a4)return a3 -s=A.b5(a3.a,a4.a,a5,A.cg(),t.m) -r=A.E(a3.b,a4.b,a5) -q=A.E(a3.c,a4.c,a5) -p=A.E(a3.d,a4.d,a5) -o=A.E(a3.e,a4.e,a5) -n=A.E(a3.f,a4.f,a5) -m=A.E(a3.r,a4.r,a5) -l=A.E(a3.w,a4.w,a5) -k=A.E(a3.x,a4.x,a5) -j=a5<0.5 -if(j)i=a3.y!==!1 -else i=a4.y!==!1 -h=A.E(a3.z,a4.z,a5) -g=A.ek(a3.Q,a4.Q,a5) -f=A.ek(a3.as,a4.as,a5) -e=A.aWo(a3.at,a4.at,a5) -d=A.aWn(a3.ax,a4.ax,a5) -c=A.bp(a3.ay,a4.ay,a5) -b=A.bp(a3.ch,a4.ch,a5) -if(j){j=a3.CW -if(j==null)j=B.an}else{j=a4.CW -if(j==null)j=B.an}a=A.a3(a3.cx,a4.cx,a5) -a0=A.a3(a3.cy,a4.cy,a5) -a1=a3.db -if(a1==null)a2=a4.db!=null -else a2=!0 -if(a2)a1=A.ma(a1,a4.db,a5) -else a1=null -return new A.zM(s,r,q,p,o,n,m,l,k,i,h,g,f,e,d,c,b,j,a,a0,a1)}, -aWo(a,b,c){var s=a==null -if(s&&b==null)return null -if(s){s=b.a -return A.aR(new A.bk(A.ao(0,s.gl(s)>>>16&255,s.gl(s)>>>8&255,s.gl(s)&255),0,B.I,-1),b,c)}if(b==null){s=a.a -return A.aR(new A.bk(A.ao(0,s.gl(s)>>>16&255,s.gl(s)>>>8&255,s.gl(s)&255),0,B.I,-1),a,c)}return A.aR(a,b,c)}, -aWn(a,b,c){if(a==null&&b==null)return null -return t.KX.a(A.dD(a,b,c))}, -zM:function zM(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0 -_.db=a1}, -Vg:function Vg(){}, -zN(a,b,c){return new A.LJ(b,a,c,null)}, -LJ:function LJ(a,b,c,d){var _=this -_.c=a -_.d=b -_.y=c -_.a=d}, -aCC(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1){return new A.M5(b,a1,k,a2,l,a4,m,a5,n,b0,q,b1,r,c,h,d,i,a,g,a7,o,a9,p,s,a0,a6,a3,f,j,e,a8)}, -aWA(b7,b8,b9){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6 -if(b7===b8)return b7 -s=b9<0.5?b7.a:b8.a -r=b7.b -q=b8.b -p=A.E(r,q,b9) -p.toString -o=b7.c -n=b8.c -m=A.E(o,n,b9) -m.toString -l=b7.d -if(l==null)l=r -k=b8.d -l=A.E(l,k==null?q:k,b9) -k=b7.e -if(k==null)k=o -j=b8.e -k=A.E(k,j==null?n:j,b9) -j=b7.f -i=b8.f -h=A.E(j,i,b9) -h.toString -g=b7.r -f=b8.r -e=A.E(g,f,b9) -e.toString -d=b7.w -if(d==null)d=j -c=b8.w -d=A.E(d,c==null?i:c,b9) -c=b7.x -if(c==null)c=g -b=b8.x -c=A.E(c,b==null?f:b,b9) -b=b7.y -a=b==null -a0=a?j:b -a1=b8.y -a2=a1==null -a0=A.E(a0,a2?i:a1,b9) -a3=b7.z -a4=a3==null -a5=a4?g:a3 -a6=b8.z -a7=a6==null -a5=A.E(a5,a7?f:a6,b9) -a8=b7.Q -if(a8==null)j=a?j:b -else j=a8 -b=b8.Q -if(b==null)i=a2?i:a1 -else i=b -i=A.E(j,i,b9) -j=b7.as -if(j==null)j=a4?g:a3 -g=b8.as -if(g==null)g=a7?f:a6 -g=A.E(j,g,b9) -j=b7.at -f=b8.at -b=A.E(j,f,b9) -b.toString -a=b7.ax -a1=b8.ax -a2=A.E(a,a1,b9) -a2.toString -a3=b7.ay -j=a3==null?j:a3 -a3=b8.ay -j=A.E(j,a3==null?f:a3,b9) -f=b7.ch -if(f==null)f=a -a=b8.ch -f=A.E(f,a==null?a1:a,b9) -a=A.E(b7.CW,b8.CW,b9) -a.toString -a1=b7.cx -a3=b8.cx -a4=A.E(a1,a3,b9) -a4.toString -a6=b7.cy -a7=b8.cy -a8=A.E(a6,a7,b9) -a8.toString -a9=b7.db -b0=b8.db -b1=A.E(a9,b0,b9) -b1.toString -b2=b7.dx -if(b2==null)b2=a6 -b3=b8.dx -b2=A.E(b2,b3==null?a7:b3,b9) -b3=b7.dy -if(b3==null)b3=a9 -b4=b8.dy -b3=A.E(b3,b4==null?b0:b4,b9) -b4=b7.fr -if(b4==null)b4=a1 -b5=b8.fr -b4=A.E(b4,b5==null?a3:b5,b9) -b5=b7.fx -a1=b5==null?a1:b5 -b5=b8.fx -a1=A.E(a1,b5==null?a3:b5,b9) -a3=b7.fy -if(a3==null)a3=B.k -b5=b8.fy -a3=A.E(a3,b5==null?B.k:b5,b9) -b5=b7.go -if(b5==null)b5=B.k -b6=b8.go -b5=A.E(b5,b6==null?B.k:b6,b9) -b6=b7.id -a9=b6==null?a9:b6 -b6=b8.id -a9=A.E(a9,b6==null?b0:b6,b9) -b0=b7.k1 -a6=b0==null?a6:b0 -b0=b8.k1 -a6=A.E(a6,b0==null?a7:b0,b9) -a7=b7.k2 -o=a7==null?o:a7 -a7=b8.k2 -o=A.E(o,a7==null?n:a7,b9) -n=b7.k3 -r=n==null?r:n -n=b8.k3 -return A.aCC(a,s,b,j,o,a9,a4,a2,f,a6,m,k,e,c,b1,b3,a5,g,b4,a1,p,l,b5,h,d,a3,a8,A.E(r,n==null?q:n,b9),b2,a0,i)}, -M5:function M5(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0 -_.db=a1 -_.dx=a2 -_.dy=a3 -_.fr=a4 -_.fx=a5 -_.fy=a6 -_.go=a7 -_.id=a8 -_.k1=a9 -_.k2=b0 -_.k3=b1}, -Vk:function Vk(){}, -r8:function r8(a,b){this.b=a -this.a=b}, -aWR(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h,g,f -if(a===b)return a -s=A.a6V(a.a,b.a,c) -r=t.m -q=A.b5(a.b,b.b,c,A.cg(),r) -p=A.a3(a.c,b.c,c) -o=A.a3(a.d,b.d,c) -n=A.bp(a.e,b.e,c) -r=A.b5(a.f,b.f,c,A.cg(),r) -m=A.a3(a.r,b.r,c) -l=A.bp(a.w,b.w,c) -k=A.a3(a.x,b.x,c) -j=A.a3(a.y,b.y,c) -i=A.a3(a.z,b.z,c) -h=A.a3(a.Q,b.Q,c) -g=c<0.5 -f=g?a.as:b.as -g=g?a.at:b.at -return new A.A9(s,q,p,o,n,r,m,l,k,j,i,h,f,g)}, -A9:function A9(a,b,c,d,e,f,g,h,i,j,k,l,m,n){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n}, -W_:function W_(){}, -aWT(b5,b6,b7){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4 -if(b5===b6&&!0)return b5 -s=A.E(b5.a,b6.a,b7) -r=A.a3(b5.b,b6.b,b7) -q=A.E(b5.c,b6.c,b7) -p=A.E(b5.d,b6.d,b7) -o=A.dD(b5.e,b6.e,b7) -n=A.E(b5.f,b6.f,b7) -m=A.E(b5.r,b6.r,b7) -l=A.bp(b5.w,b6.w,b7) -k=A.bp(b5.x,b6.x,b7) -j=A.bp(b5.y,b6.y,b7) -i=A.bp(b5.z,b6.z,b7) -h=t.m -g=A.b5(b5.Q,b6.Q,b7,A.cg(),h) -f=A.b5(b5.as,b6.as,b7,A.cg(),h) -e=A.b5(b5.at,b6.at,b7,A.cg(),h) -d=A.b5(b5.ax,b6.ax,b7,A.cg(),h) -c=A.b5(b5.ay,b6.ay,b7,A.cg(),h) -b=A.aWS(b5.ch,b6.ch,b7) -a=A.bp(b5.CW,b6.CW,b7) -a0=A.b5(b5.cx,b6.cx,b7,A.cg(),h) -a1=A.b5(b5.cy,b6.cy,b7,A.cg(),h) -a2=A.b5(b5.db,b6.db,b7,A.cg(),h) -a3=A.E(b5.dx,b6.dx,b7) -a4=A.a3(b5.dy,b6.dy,b7) -a5=A.E(b5.fr,b6.fr,b7) -a6=A.E(b5.fx,b6.fx,b7) -a7=A.dD(b5.fy,b6.fy,b7) -a8=A.E(b5.go,b6.go,b7) -a9=A.E(b5.id,b6.id,b7) -b0=A.bp(b5.k1,b6.k1,b7) -b1=A.bp(b5.k2,b6.k2,b7) -b2=A.E(b5.k3,b6.k3,b7) -h=A.b5(b5.k4,b6.k4,b7,A.cg(),h) -b3=A.E(b5.ok,b6.ok,b7) -if(b7<0.5)b4=b5.p1 -else b4=b6.p1 -return new A.Aa(s,r,q,p,o,n,m,l,k,j,i,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,h,b3,b4)}, -aWS(a,b,c){var s -if(a==b)return a -if(a==null){s=b.a -return A.aR(new A.bk(A.ao(0,s.gl(s)>>>16&255,s.gl(s)>>>8&255,s.gl(s)&255),0,B.I,-1),b,c)}s=a.a -return A.aR(a,new A.bk(A.ao(0,s.gl(s)>>>16&255,s.gl(s)>>>8&255,s.gl(s)&255),0,B.I,-1),c)}, -Aa:function Aa(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0 -_.db=a1 -_.dx=a2 -_.dy=a3 -_.fr=a4 -_.fx=a5 -_.fy=a6 -_.go=a7 -_.id=a8 -_.k1=a9 -_.k2=b0 -_.k3=b1 -_.k4=b2 -_.ok=b3 -_.p1=b4}, -W1:function W1(){}, -Wc:function Wc(){}, -a77:function a77(){}, -a1T:function a1T(){}, -MH:function MH(a,b,c){this.c=a -this.d=b -this.a=c}, -aX2(a,b,c){var s=null -return new A.ux(b,A.dQ(c,s,B.aZ,s,B.zE.cH(A.a2(a).ax.a===B.Y?B.j:B.J),s,s),s)}, -ux:function ux(a,b,c){this.c=a -this.d=b -this.a=c}, -b2H(a,b,c,d){return A.iI(!1,d,A.ci(B.cf,b,null))}, -aX5(a,b,c,d,e,f,g,h,i,j,k){var s,r,q,p,o,n,m=null -A.h9(f,B.b_,t.R).toString -s=A.b([],t.Zt) -r=$.ai -q=A.oA(B.bS) -p=A.b([],t.wi) -o=A.eu(m,t.u) -n=$.ai -return new A.Ag(new A.a78(e,h,!0),!0,"Dismiss",b,B.dU,A.b5w(),a,m,i,s,new A.bB(m,k.i("bB>")),new A.bB(m,t.C),new A.rm(),m,0,new A.b3(new A.ae(r,k.i("ae<0?>")),k.i("b3<0?>")),q,p,B.hq,o,new A.b3(new A.ae(n,k.i("ae<0?>")),k.i("b3<0?>")),k.i("Ag<0>"))}, -MN:function MN(a,b,c){this.z=a -this.as=b -this.a=c}, -Ag:function Ag(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2){var _=this -_.ah=a -_.fR=b -_.c1=c -_.b6=d -_.dq=e -_.dI=f -_.v=g -_.fr=h -_.fx=i -_.fy=!1 -_.id=_.go=null -_.k1=j -_.k2=k -_.k3=l -_.k4=m -_.ok=$ -_.p1=null -_.p2=$ -_.kx$=n -_.oq$=o -_.y=p -_.z=null -_.Q=!1 -_.at=_.as=null -_.ax=q -_.CW=_.ch=null -_.e=r -_.a=null -_.b=s -_.c=a0 -_.d=a1 -_.$ti=a2}, -a78:function a78(a,b,c){this.a=a -this.b=b -this.c=c}, -at5:function at5(a,b,c,d,e,f,g,h,i,j,k,l,m){var _=this -_.z=a -_.Q=b -_.as=c -_.a=d -_.b=e -_.c=f -_.d=g -_.e=h -_.f=i -_.r=j -_.w=k -_.x=l -_.y=m}, -aX6(a,b,c){var s,r,q,p,o,n,m,l,k -if(a===b&&!0)return a -s=A.E(a.a,b.a,c) -r=A.a3(a.b,b.b,c) -q=A.E(a.c,b.c,c) -p=A.E(a.d,b.d,c) -o=A.dD(a.e,b.e,c) -n=A.z_(a.f,b.f,c) -m=A.E(a.y,b.y,c) -l=A.bp(a.r,b.r,c) -k=A.bp(a.w,b.w,c) -return new A.uy(s,r,q,p,o,n,l,k,A.ek(a.x,b.x,c),m)}, -uy:function uy(a,b,c,d,e,f,g,h,i,j){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j}, -We:function We(){}, -aXh(a,b,c){var s,r,q,p,o=A.aHZ(a) -A.a2(a) -s=A.aLL(a) -r=o.a -q=r -if(q==null)q=s==null?null:s.gaf(s) -p=c -if(q==null)return new A.bk(B.k,p,B.I,-1) -return new A.bk(q,p,B.I,-1)}, -aLL(a){return new A.at7(a,null,16,0,0,0)}, -MT:function MT(a){this.a=a}, -at7:function at7(a,b,c,d,e,f){var _=this -_.f=a -_.a=b -_.b=c -_.c=d -_.d=e -_.e=f}, -aXg(a,b,c){var s,r,q,p -if(a===b&&!0)return a -s=A.E(a.a,b.a,c) -r=A.a3(a.b,b.b,c) -q=A.a3(a.c,b.c,c) -p=A.a3(a.d,b.d,c) -return new A.uz(s,r,q,p,A.a3(a.e,b.e,c))}, -aHZ(a){var s -a.an(t.Jj) -s=A.a2(a) -return s.bS}, -uz:function uz(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -Wi:function Wi(){}, -aXG(a,b,c){var s,r,q,p,o,n,m -if(a===b)return a -s=A.E(a.a,b.a,c) -r=A.E(a.b,b.b,c) -q=A.a3(a.c,b.c,c) -p=A.E(a.d,b.d,c) -o=A.E(a.e,b.e,c) -n=A.dD(a.f,b.f,c) -m=A.dD(a.r,b.r,c) -return new A.Ar(s,r,q,p,o,n,m,A.a3(a.w,b.w,c))}, -Ar:function Ar(a,b,c,d,e,f,g,h){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h}, -Ws:function Ws(){}, -Wu:function Wu(a,b,c,d,e,f,g,h){var _=this -_.b=a -_.c=b -_.d=c -_.e=d -_.f=e -_.r=f -_.w=g -_.a=h}, -xH:function xH(a,b,c,d,e,f,g,h){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.w=f -_.a=g -_.$ti=h}, -xI:function xI(a,b){var _=this -_.a=null -_.b=a -_.c=null -_.$ti=b}, -xG:function xG(a,b,c,d,e,f,g,h,i){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.w=f -_.x=g -_.a=h -_.$ti=i}, -Gn:function Gn(a,b){var _=this -_.e=_.d=$ -_.a=null -_.b=a -_.c=null -_.$ti=b}, -atd:function atd(a){this.a=a}, -Wv:function Wv(a,b,c,d){var _=this -_.b=a -_.c=b -_.d=c -_.$ti=d}, -j7:function j7(a,b){this.a=a -this.$ti=b}, -avp:function avp(a,b,c){this.a=a -this.c=b -this.d=c}, -Go:function Go(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9){var _=this -_.ah=a -_.fR=b -_.c1=c -_.b6=d -_.dq=e -_.dI=f -_.v=g -_.V=h -_.am=i -_.br=j -_.e1=k -_.dJ=l -_.eX=m -_.eb=null -_.fS=n -_.fr=o -_.fx=p -_.fy=!1 -_.id=_.go=null -_.k1=q -_.k2=r -_.k3=s -_.k4=a0 -_.ok=$ -_.p1=null -_.p2=$ -_.kx$=a1 -_.oq$=a2 -_.y=a3 -_.z=null -_.Q=!1 -_.at=_.as=null -_.ax=a4 -_.CW=_.ch=null -_.e=a5 -_.a=null -_.b=a6 -_.c=a7 -_.d=a8 -_.$ti=a9}, -atf:function atf(a){this.a=a}, -atg:function atg(){}, -ath:function ath(){}, -xJ:function xJ(a,b,c,d,e,f,g,h,i,j,k){var _=this -_.c=a -_.d=b -_.f=c -_.r=d -_.w=e -_.y=f -_.Q=g -_.as=h -_.at=i -_.a=j -_.$ti=k}, -ate:function ate(a,b,c){this.a=a -this.b=b -this.c=c}, -y7:function y7(a,b,c,d,e){var _=this -_.e=a -_.f=b -_.c=c -_.a=d -_.$ti=e}, -a__:function a__(a,b,c){var _=this -_.v=a -_.C$=b -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=c -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -Wt:function Wt(){}, -nI:function nI(a,b,c,d,e){var _=this -_.r=a -_.c=b -_.d=c -_.a=d -_.$ti=e}, -uC:function uC(a,b,c,d,e){var _=this -_.c=a -_.d=b -_.r=c -_.a=d -_.$ti=e}, -xF:function xF(a,b){var _=this -_.r=_.f=_.e=_.d=null -_.w=$ -_.a=null -_.b=a -_.c=null -_.$ti=b}, -atb:function atb(a){this.a=a}, -atc:function atc(a){this.a=a}, -at8:function at8(a,b){this.a=a -this.b=b}, -at9:function at9(a){this.a=a}, -ata:function ata(a){this.a=a}, -JI:function JI(){}, -aXI(a,b,c){var s,r -if(a===b&&!0)return a -s=A.bp(a.a,b.a,c) -if(c<0.5)r=a.b -else r=b.b -return new A.As(s,r,A.aDE(a.c,b.c,c))}, -As:function As(a,b,c){this.a=a -this.b=b -this.c=c}, -Ww:function Ww(){}, -uI(a,b,c,d,e,f,g,h,i,j,k){return new A.uH(i,h,g,f,k,c,d,!1,j,!0,b,e)}, -qn(a,b,c,d,e,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4){var s,r,q,p,o,n,m,l,k,j,i,h,g,f=null -if(d==null)s=f -else s=d -r=new A.Gx(c,s) -q=a4==null?f:a4 -if(e==null)p=f -else p=e -o=q==null -n=o&&p==null?f:new A.Gx(q,p) -m=o?f:new A.WE(q) -l=a1==null?f:new A.WC(a1) -o=a8==null?f:new A.bJ(a8,t.h9) -k=a7==null?f:new A.bJ(a7,t.Ak) -j=a6==null?f:new A.bJ(a6,t.iL) -i=a5==null?f:new A.bJ(a5,t.iL) -h=b0==null?f:new A.bJ(b0,t.e1) -g=a9==null?f:new A.bJ(a9,t.kU) -return A.u2(a,b,r,l,a2,f,n,f,f,i,j,new A.WD(a3,a0),m,k,o,g,h,b1,f,b2,new A.bJ(b3,t.wG),b4)}, -b4f(a){var s -A.a2(a) -s=A.ct(a,B.bQ) -s=s==null?null:s.c -if(s==null)s=1 -return A.a5q(new A.aF(16,0,16,0),new A.aF(8,0,8,0),new A.aF(4,0,4,0),s)}, -uH:function uH(a,b,c,d,e,f,g,h,i,j,k,l){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.w=f -_.x=g -_.y=h -_.z=i -_.Q=j -_.as=k -_.a=l}, -Gx:function Gx(a,b){this.a=a -this.b=b}, -WE:function WE(a){this.a=a}, -WC:function WC(a){this.a=a}, -WD:function WD(a,b){this.a=a -this.b=b}, -WG:function WG(a,b,c,d,e,f,g,h,i,j,k,l){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.w=f -_.x=g -_.y=h -_.z=i -_.Q=j -_.as=k -_.a=l}, -WH:function WH(a,b,c){this.c=a -this.d=b -this.a=c}, -a1U:function a1U(){}, -a1V:function a1V(){}, -a1W:function a1W(){}, -a1X:function a1X(){}, -aXS(a,b,c){if(a===b)return a -return new A.Ax(A.nu(a.a,b.a,c))}, -Ax:function Ax(a){this.a=a}, -WF:function WF(){}, -aY0(a,b,c){var s,r,q,p,o,n,m,l,k,j -if(a===b)return a -s=A.E(a.a,b.a,c) -r=A.E(a.b,b.b,c) -q=A.ek(a.c,b.c,c) -p=A.z_(a.d,b.d,c) -o=A.ek(a.e,b.e,c) -n=A.E(a.f,b.f,c) -m=A.E(a.r,b.r,c) -l=A.E(a.w,b.w,c) -k=A.E(a.x,b.x,c) -j=A.dD(a.y,b.y,c) -return new A.AI(s,r,q,p,o,n,m,l,k,j,A.dD(a.z,b.z,c))}, -AI:function AI(a,b,c,d,e,f,g,h,i,j,k){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k}, -WL:function WL(){}, -aY2(a,b,c){if(a===b)return a -return new A.AK(A.nu(a.a,b.a,c))}, -AK:function AK(a){this.a=a}, -WP:function WP(){}, -AO:function AO(a,b,c,d,e,f,g){var _=this -_.f=a -_.r=b -_.w=c -_.x=d -_.y=e -_.b=f -_.a=g}, -asV:function asV(){}, -GE:function GE(a,b){this.a=a -this.b=b}, -ND:function ND(a,b,c,d){var _=this -_.c=a -_.z=b -_.k1=c -_.a=d}, -WA:function WA(a,b){this.a=a -this.b=b}, -Ve:function Ve(a,b){this.c=a -this.a=b}, -HN:function HN(a,b,c,d){var _=this -_.v=null -_.V=a -_.am=b -_.C$=c -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=d -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -ato:function ato(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5){var _=this -_.dx=a -_.dy=b -_.fr=c -_.fx=d -_.a=e -_.b=f -_.c=g -_.d=h -_.e=i -_.f=j -_.r=k -_.w=l -_.x=m -_.y=n -_.z=o -_.Q=p -_.as=q -_.at=r -_.ax=s -_.ay=a0 -_.ch=a1 -_.CW=a2 -_.cx=a3 -_.cy=a4 -_.db=a5}, -aLI(a,b,c,d,e){return new A.FB(c,d,a,b,new A.b7(A.b([],t.x8),t.jc),new A.b7(A.b([],t.l),t.fy),0,e.i("FB<0>"))}, -aa6:function aa6(){}, -amt:function amt(){}, -a9n:function a9n(){}, -a9m:function a9m(){}, -ati:function ati(){}, -aa5:function aa5(){}, -ax5:function ax5(){}, -FB:function FB(a,b,c,d,e,f,g,h){var _=this -_.w=a -_.x=b -_.a=c -_.b=d -_.d=_.c=null -_.d6$=e -_.cU$=f -_.mH$=g -_.$ti=h}, -a1Y:function a1Y(){}, -a1Z:function a1Z(){}, -aY9(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1){return new A.uT(k,a,i,m,a1,c,j,n,b,l,r,d,o,s,a0,p,g,e,f,h,q)}, -aYa(a2,a3,a4){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1 -if(a2===a3)return a2 -s=A.E(a2.a,a3.a,a4) -r=A.E(a2.b,a3.b,a4) -q=A.E(a2.c,a3.c,a4) -p=A.E(a2.d,a3.d,a4) -o=A.E(a2.e,a3.e,a4) -n=A.a3(a2.f,a3.f,a4) -m=A.a3(a2.r,a3.r,a4) -l=A.a3(a2.w,a3.w,a4) -k=A.a3(a2.x,a3.x,a4) -j=A.a3(a2.y,a3.y,a4) -i=A.dD(a2.z,a3.z,a4) -h=a4<0.5 -if(h)g=a2.Q -else g=a3.Q -f=A.a3(a2.as,a3.as,a4) -e=A.nr(a2.at,a3.at,a4) -d=A.nr(a2.ax,a3.ax,a4) -c=A.nr(a2.ay,a3.ay,a4) -b=A.nr(a2.ch,a3.ch,a4) -a=A.a3(a2.CW,a3.CW,a4) -a0=A.ek(a2.cx,a3.cx,a4) -a1=A.bp(a2.cy,a3.cy,a4) -if(h)h=a2.db -else h=a3.db -return A.aY9(r,k,n,g,a,a0,b,a1,q,m,s,j,p,l,f,c,h,i,e,d,o)}, -uT:function uT(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0 -_.db=a1}, -WS:function WS(){}, -h7(a,b,c,d,e,f,g,h,i){return new A.On(d,f,g,c,a,e,i,b,h,null)}, -Oo(a,b,c,d,e,f,g,h,i,j,k,l,a0,a1){var s,r,q,p,o=null,n=g==null,m=n&&!0?o:new A.Xh(g,b) -if(n)n=!0 -else n=!1 -s=n?o:new A.Xj(g,f,i,h) -n=a0==null?o:new A.bJ(a0,t.Ak) -r=l==null?o:new A.bJ(l,t.iL) -q=k==null?o:new A.bJ(k,t.iL) -p=j==null?o:new A.bJ(j,t.QL) -return A.u2(a,o,o,o,d,o,m,o,p,q,r,new A.Xi(e,c),s,n,o,o,o,o,o,o,o,a1)}, -aub:function aub(a,b){this.a=a -this.b=b}, -On:function On(a,b,c,d,e,f,g,h,i,j){var _=this -_.c=a -_.e=b -_.r=c -_.w=d -_.z=e -_.ax=f -_.cx=g -_.cy=h -_.dx=i -_.a=j}, -Xh:function Xh(a,b){this.a=a -this.b=b}, -Xj:function Xj(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -Xi:function Xi(a,b){this.a=a -this.b=b}, -a21:function a21(){}, -aYA(a,b,c){if(a===b)return a -return new A.nX(A.nu(a.a,b.a,c))}, -adg(a,b){return new A.B9(b,a,null)}, -aYB(a){var s=a.an(t.g5),r=s==null?null:s.w -return r==null?A.a2(a).aJ:r}, -nX:function nX(a){this.a=a}, -B9:function B9(a,b,c){this.w=a -this.b=b -this.a=c}, -Xk:function Xk(){}, -Bd:function Bd(a,b,c){this.c=a -this.e=b -this.a=c}, -H_:function H_(a,b){var _=this -_.d=a -_.a=_.e=null -_.b=b -_.c=null}, -Be:function Be(a,b,c,d){var _=this -_.f=_.e=null -_.r=!0 -_.w=a -_.a=b -_.b=c -_.c=d -_.d=!1}, -o2:function o2(a,b,c,d,e,f,g,h,i,j){var _=this -_.z=a -_.Q=b -_.as=c -_.at=d -_.ax=e -_.ch=_.ay=$ -_.CW=!0 -_.e=f -_.f=g -_.a=h -_.b=i -_.c=j -_.d=!1}, -b3z(a,b,c){if(c!=null)return c -if(b)return new A.aA6(a) -return null}, -aA6:function aA6(a){this.a=a}, -aup:function aup(){}, -Bf:function Bf(a,b,c,d,e,f,g,h,i,j){var _=this -_.z=a -_.Q=b -_.as=c -_.at=d -_.ax=e -_.db=_.cy=_.cx=_.CW=_.ch=_.ay=$ -_.e=f -_.f=g -_.a=h -_.b=i -_.c=j -_.d=!1}, -b3A(a,b,c){if(c!=null)return c -if(b)return new A.aA7(a) -return null}, -b3G(a,b,c,d){var s,r,q,p,o,n -if(b){if(c!=null){s=c.$0() -r=new A.Q(s.c-s.a,s.d-s.b)}else r=a.gq(a) -q=d.Z(0,B.e).gcB() -p=d.Z(0,new A.k(0+r.a,0)).gcB() -o=d.Z(0,new A.k(0,0+r.b)).gcB() -n=d.Z(0,r.uX(0,B.e)).gcB() -return Math.ceil(Math.max(Math.max(q,p),Math.max(o,n)))}return 35}, -aA7:function aA7(a){this.a=a}, -auq:function auq(){}, -Bg:function Bg(a,b,c,d,e,f,g,h,i,j,k){var _=this -_.z=a -_.Q=b -_.as=c -_.at=d -_.ax=e -_.ay=f -_.cx=_.CW=_.ch=$ -_.cy=null -_.e=g -_.f=h -_.a=i -_.b=j -_.c=k -_.d=!1}, -aYI(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3){return new A.vc(d,a5,a7,a8,a6,p,a0,a1,a3,a4,a2,r,s,o,e,l,b0,b,f,i,m,k,a9,b1,b2,g,!1,q,a,j,c,b3,n)}, -vd(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,a0,a1,a2){var s=null -return new A.Ow(d,p,s,s,s,s,o,s,s,s,s,m,n,k,!0,B.D,r,b,e,g,j,i,q,a0,a1,f!==!1,!1,l,a,h,c,a2,s)}, -o4:function o4(){}, -vg:function vg(){}, -HG:function HG(a,b,c){this.f=a -this.b=b -this.a=c}, -vc:function vc(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.w=f -_.x=g -_.y=h -_.z=i -_.Q=j -_.as=k -_.at=l -_.ax=m -_.ay=n -_.ch=o -_.CW=p -_.cx=q -_.cy=r -_.db=s -_.dx=a0 -_.dy=a1 -_.fr=a2 -_.fx=a3 -_.fy=a4 -_.go=a5 -_.id=a6 -_.k1=a7 -_.k2=a8 -_.k3=a9 -_.k4=b0 -_.ok=b1 -_.p1=b2 -_.a=b3}, -GZ:function GZ(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.w=f -_.x=g -_.y=h -_.z=i -_.Q=j -_.as=k -_.at=l -_.ax=m -_.ay=n -_.ch=o -_.CW=p -_.cx=q -_.cy=r -_.db=s -_.dx=a0 -_.dy=a1 -_.fr=a2 -_.fx=a3 -_.fy=a4 -_.go=a5 -_.id=a6 -_.k1=a7 -_.k2=a8 -_.k3=a9 -_.k4=b0 -_.ok=b1 -_.p1=b2 -_.p2=b3 -_.p3=b4 -_.p4=b5 -_.a=b6}, -pg:function pg(a,b){this.a=a -this.b=b}, -GY:function GY(a,b,c,d){var _=this -_.e=_.d=null -_.f=!1 -_.r=a -_.w=$ -_.x=null -_.y=b -_.z=!1 -_.ib$=c -_.a=null -_.b=d -_.c=null}, -aun:function aun(){}, -aum:function aum(){}, -auo:function auo(a,b){this.a=a -this.b=b}, -auj:function auj(a,b){this.a=a -this.b=b}, -aul:function aul(a){this.a=a}, -auk:function auk(a,b){this.a=a -this.b=b}, -Ow:function Ow(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.w=f -_.x=g -_.y=h -_.z=i -_.Q=j -_.as=k -_.at=l -_.ax=m -_.ay=n -_.ch=o -_.CW=p -_.cx=q -_.cy=r -_.db=s -_.dx=a0 -_.dy=a1 -_.fr=a2 -_.fx=a3 -_.fy=a4 -_.go=a5 -_.id=a6 -_.k1=a7 -_.k2=a8 -_.k3=a9 -_.k4=b0 -_.ok=b1 -_.p1=b2 -_.a=b3}, -JM:function JM(){}, -iK:function iK(){}, -Yx:function Yx(a){this.a=a}, -jX:function jX(a,b){this.b=a -this.a=b}, -aYb(a){if(a===-1)return"FloatingLabelAlignment.start" -if(a===0)return"FloatingLabelAlignment.center" -return"FloatingLabelAlignment(x: "+B.h.ad(a,1)+")"}, -aYK(a,b,c,d,e,f,g,h,i){return new A.qS(c,a,h,i,f,g,!1,e,b,null)}, -aJ1(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7,c8,c9,d0,d1){return new A.vf(b2,b3,b6,b8,b7,a0,a6,a5,a4,a9,a8,b0,a7,k,o,n,m,s,r,b5,d,!1,c0,c2,b9,c4,c3,c1,c7,c6,d1,d0,c8,c9,g,e,f,q,p,a1,b1,l,a2,a3,h,j,b,!0,c5,a,c)}, -H1:function H1(a){var _=this -_.a=null -_.aj$=_.b=0 -_.ag$=a -_.aU$=_.aB$=0 -_.aN$=!1}, -H2:function H2(a,b){this.a=a -this.b=b}, -Xt:function Xt(a,b,c,d,e,f,g,h,i){var _=this -_.b=a -_.c=b -_.d=c -_.e=d -_.f=e -_.r=f -_.w=g -_.x=h -_.a=i}, -FK:function FK(a,b,c,d,e,f,g){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.w=f -_.a=g}, -UY:function UY(a,b,c){var _=this -_.x=_.w=_.r=_.f=_.e=_.d=$ -_.d5$=a -_.aZ$=b -_.a=null -_.b=c -_.c=null}, -GR:function GR(a,b,c,d,e,f,g,h,i){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.w=f -_.x=g -_.y=h -_.a=i}, -GS:function GS(a,b,c){var _=this -_.d=$ -_.f=_.e=null -_.eV$=a -_.cb$=b -_.a=null -_.b=c -_.c=null}, -au3:function au3(){}, -AQ:function AQ(a,b){this.a=a -this.b=b}, -NE:function NE(){}, -fa:function fa(a,b){this.a=a -this.b=b}, -W3:function W3(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0 -_.db=a1}, -awh:function awh(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f}, -HQ:function HQ(a,b,c,d,e,f,g,h,i){var _=this -_.B=a -_.R=b -_.a1=c -_.ar=d -_.az=e -_.aJ=f -_.au=g -_.aY=null -_.e0$=h -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=i -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -awl:function awl(a){this.a=a}, -awk:function awk(a,b){this.a=a -this.b=b}, -awj:function awj(a,b){this.a=a -this.b=b}, -awi:function awi(a,b,c){this.a=a -this.b=b -this.c=c}, -W6:function W6(a,b,c,d,e,f,g){var _=this -_.d=a -_.e=b -_.f=c -_.r=d -_.w=e -_.x=f -_.a=g}, -qS:function qS(a,b,c,d,e,f,g,h,i,j){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.w=f -_.x=g -_.y=h -_.z=i -_.a=j}, -H3:function H3(a,b,c,d){var _=this -_.f=_.e=_.d=$ -_.r=a -_.w=null -_.d5$=b -_.aZ$=c -_.a=null -_.b=d -_.c=null}, -auB:function auB(){}, -vf:function vf(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7,c8,c9,d0,d1){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0 -_.db=a1 -_.dx=a2 -_.dy=a3 -_.fr=a4 -_.fx=a5 -_.fy=a6 -_.go=a7 -_.id=a8 -_.k1=a9 -_.k2=b0 -_.k3=b1 -_.k4=b2 -_.ok=b3 -_.p1=b4 -_.p2=b5 -_.p3=b6 -_.p4=b7 -_.R8=b8 -_.RG=b9 -_.rx=c0 -_.ry=c1 -_.to=c2 -_.x1=c3 -_.x2=c4 -_.xr=c5 -_.y1=c6 -_.y2=c7 -_.b_=c8 -_.bn=c9 -_.al=d0 -_.aG=d1}, -Bh:function Bh(){}, -aur:function aur(a){this.ok=a}, -auw:function auw(a){this.a=a}, -auy:function auy(a){this.a=a}, -auu:function auu(a){this.a=a}, -auv:function auv(a){this.a=a}, -aus:function aus(a){this.a=a}, -aut:function aut(a){this.a=a}, -aux:function aux(a){this.a=a}, -auz:function auz(a){this.a=a}, -auA:function auA(a){this.a=a}, -Xu:function Xu(){}, -Jx:function Jx(){}, -JL:function JL(){}, -JN:function JN(){}, -a2m:function a2m(){}, -aDv(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0){return new A.BE(i,r,p,s,!1,c,a0,o,m,b,e,k,j,!1,g,f,!1,q,n,d,null)}, -awq(a,b){if(a==null)return B.o -a.bz(b,!0) -return a.gq(a)}, -aeW:function aeW(a,b){this.a=a -this.b=b}, -aeV:function aeV(a,b){this.a=a -this.b=b}, -aeX:function aeX(a,b){this.a=a -this.b=b}, -BE:function BE(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.w=f -_.x=g -_.y=h -_.z=i -_.CW=j -_.cx=k -_.cy=l -_.dx=m -_.fr=n -_.fy=o -_.id=p -_.k1=q -_.k2=r -_.k3=s -_.k4=a0 -_.a=a1}, -aeY:function aeY(a){this.a=a}, -Xr:function Xr(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -k3:function k3(a,b){this.a=a -this.b=b}, -XW:function XW(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){var _=this -_.d=a -_.e=b -_.f=c -_.r=d -_.w=e -_.x=f -_.y=g -_.z=h -_.Q=i -_.as=j -_.at=k -_.ax=l -_.ay=m -_.ch=n -_.a=o}, -HZ:function HZ(a,b,c,d,e,f,g,h,i,j,k,l){var _=this -_.B=a -_.R=b -_.a1=c -_.ar=d -_.az=e -_.aJ=f -_.au=g -_.aY=h -_.b9=i -_.c7=j -_.e0$=k -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=l -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -aws:function aws(a,b){this.a=a -this.b=b}, -awr:function awr(a,b,c){this.a=a -this.b=b -this.c=c}, -auT:function auT(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0){var _=this -_.cy=a -_.dx=_.db=$ -_.a=b -_.b=c -_.c=d -_.d=e -_.e=f -_.f=g -_.r=h -_.w=i -_.x=j -_.y=k -_.z=l -_.Q=m -_.as=n -_.at=o -_.ax=p -_.ay=q -_.ch=r -_.CW=s -_.cx=a0}, -a2r:function a2r(){}, -aZ4(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s){return new A.vr(b,l,m,j,e,o,r,n,f,a,p,k,d,h,g,c,i,s,q)}, -aZ5(a0,a1,a2){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a -if(a0===a1)return a0 -s=a2<0.5 -if(s)r=a0.a -else r=a1.a -q=A.dD(a0.b,a1.b,a2) -if(s)p=a0.c -else p=a1.c -o=A.E(a0.d,a1.d,a2) -n=A.E(a0.e,a1.e,a2) -m=A.E(a0.f,a1.f,a2) -l=A.bp(a0.r,a1.r,a2) -k=A.bp(a0.w,a1.w,a2) -j=A.bp(a0.x,a1.x,a2) -i=A.ek(a0.y,a1.y,a2) -h=A.E(a0.z,a1.z,a2) -g=A.E(a0.Q,a1.Q,a2) -f=A.a3(a0.as,a1.as,a2) -e=A.a3(a0.at,a1.at,a2) -d=A.a3(a0.ax,a1.ax,a2) -if(s)c=a0.ay -else c=a1.ay -if(s)b=a0.ch -else b=a1.ch -if(s)a=a0.CW -else a=a1.CW -if(s)s=a0.cx -else s=a1.cx -return A.aZ4(i,r,c,f,n,j,d,e,b,o,g,q,p,k,m,h,s,l,a)}, -aZ6(a){var s=a.an(t.NJ),r=s==null?null:s.gqz(s) -return r==null?A.a2(a).au:r}, -vr:function vr(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s}, -XX:function XX(){}, -EZ:function EZ(a,b){this.c=a -this.a=b}, -aoW:function aoW(){}, -IV:function IV(a,b){var _=this -_.e=_.d=null -_.f=a -_.a=null -_.b=b -_.c=null}, -ayz:function ayz(a){this.a=a}, -ayy:function ayy(a){this.a=a}, -ayA:function ayA(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -P7:function P7(a,b){this.c=a -this.a=b}, -ha(a,b,c,d,e,f,g,h,i,j,k,l){return new A.BS(c,l,f,e,h,j,k,i,d,a,b,g)}, -aYH(a,b){var s,r,q,p,o,n,m,l,k,j,i=t.TT,h=A.b([a],i),g=A.b([b],i) -for(s=b,r=a;r!==s;){q=r.c -p=s.c -if(q>=p){o=r.gba(r) -if(!(o instanceof A.t)||!o.oV(r))return null -h.push(o) -r=o}if(q<=p){n=s.gba(s) -if(!(n instanceof A.t)||!n.oV(s))return null -g.push(n) -s=n}}m=new A.b6(new Float64Array(16)) -m.e6() -l=new A.b6(new Float64Array(16)) -l.e6() -for(k=g.length-1;k>0;k=j){j=k-1 -g[k].d4(g[j],m)}for(k=h.length-1;k>0;k=j){j=k-1 -h[k].d4(h[j],l)}if(l.h4(l)!==0){l.da(0,m) -i=l}else i=null -return i}, -ok:function ok(a,b){this.a=a -this.b=b}, -BS:function BS(a,b,c,d,e,f,g,h,i,j,k,l){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.w=f -_.x=g -_.y=h -_.Q=i -_.as=j -_.at=k -_.a=l}, -Y8:function Y8(a,b,c,d){var _=this -_.d=a -_.d5$=b -_.aZ$=c -_.a=null -_.b=d -_.c=null}, -avj:function avj(a){this.a=a}, -HU:function HU(a,b,c,d){var _=this -_.v=a -_.am=b -_.br=null -_.C$=c -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=d -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -Xs:function Xs(a,b,c,d,e){var _=this -_.e=a -_.f=b -_.r=c -_.c=d -_.a=e}, -kI:function kI(){}, -rY:function rY(a,b){this.a=a -this.b=b}, -Hg:function Hg(a,b,c,d,e,f,g,h,i,j,k,l){var _=this -_.r=a -_.w=b -_.x=c -_.y=d -_.z=e -_.Q=f -_.as=g -_.at=h -_.c=i -_.d=j -_.e=k -_.a=l}, -Y5:function Y5(a,b,c){var _=this -_.db=_.cy=_.cx=_.CW=null -_.e=_.d=$ -_.eV$=a -_.cb$=b -_.a=null -_.b=c -_.c=null}, -av3:function av3(){}, -av4:function av4(){}, -av5:function av5(){}, -av6:function av6(){}, -Iu:function Iu(a,b,c,d){var _=this -_.c=a -_.d=b -_.e=c -_.a=d}, -a_I:function a_I(a,b,c){this.b=a -this.c=b -this.a=c}, -a25:function a25(){}, -Y6:function Y6(){}, -MB:function MB(){}, -avi(a){return new A.Y9(a,J.jm(a.$1(B.OH)))}, -b1Q(a){return new A.Hi(a,B.k,1,B.I,-1)}, -Hj(a){var s=null -return new A.Ya(a,!0,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s)}, -cD(a,b,c){if(c.i("be<0>").b(a))return a.P(b) -return a}, -b5(a,b,c,d,e){if(a==null&&b==null)return null -return new A.H9(a,b,c,d,e.i("H9<0>"))}, -aJj(a){var s=A.aE(t.ui) -if(a!=null)s.K(0,a) -return new A.Pm(s,$.aO())}, -cR:function cR(a,b){this.a=a -this.b=b}, -Pi:function Pi(){}, -Y9:function Y9(a,b){this.c=a -this.a=b}, -Pk:function Pk(){}, -Gz:function Gz(a,b){this.a=a -this.c=b}, -Ph:function Ph(){}, -Hi:function Hi(a,b,c,d,e){var _=this -_.x=a -_.a=b -_.b=c -_.c=d -_.d=e}, -Pl:function Pl(){}, -Ya:function Ya(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7){var _=this -_.bS=a -_.a=b -_.b=c -_.c=d -_.d=e -_.e=f -_.f=g -_.r=h -_.w=i -_.x=j -_.y=k -_.z=l -_.Q=m -_.as=n -_.at=o -_.ax=p -_.ay=q -_.ch=r -_.CW=s -_.cx=a0 -_.cy=a1 -_.db=a2 -_.dx=a3 -_.dy=a4 -_.fr=a5 -_.fx=a6 -_.fy=a7}, -be:function be(){}, -H9:function H9(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.$ti=e}, -dy:function dy(a,b){this.a=a -this.$ti=b}, -bJ:function bJ(a,b){this.a=a -this.$ti=b}, -Pm:function Pm(a,b){var _=this -_.a=a -_.aj$=0 -_.ag$=b -_.aU$=_.aB$=0 -_.aN$=!1}, -Pj:function Pj(){}, -afu:function afu(a,b,c){this.a=a -this.b=b -this.c=c}, -afs:function afs(){}, -aft:function aft(){}, -aZl(a,b,c){if(a===b)return a -return new A.Pr(A.aDE(a.a,b.a,c))}, -Pr:function Pr(a){this.a=a}, -aZm(a,b,c){if(a===b)return a -return new A.BY(A.nu(a.a,b.a,c))}, -BY:function BY(a){this.a=a}, -Yd:function Yd(){}, -aDE(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d=null -if(a==b)return a -s=a==null -r=s?d:a.a -q=b==null -p=q?d:b.a -o=t.m -p=A.b5(r,p,c,A.cg(),o) -r=s?d:a.b -r=A.b5(r,q?d:b.b,c,A.cg(),o) -n=s?d:a.c -o=A.b5(n,q?d:b.c,c,A.cg(),o) -n=s?d:a.d -m=q?d:b.d -m=A.b5(n,m,c,A.Kr(),t.PM) -n=s?d:a.e -l=q?d:b.e -l=A.b5(n,l,c,A.aFr(),t.pc) -n=s?d:a.f -k=q?d:b.f -j=t.tW -k=A.b5(n,k,c,A.Kq(),j) -n=s?d:a.r -n=A.b5(n,q?d:b.r,c,A.Kq(),j) -i=s?d:a.w -j=A.b5(i,q?d:b.w,c,A.Kq(),j) -i=s?d:a.x -h=q?d:b.x -g=s?d:a.y -f=q?d:b.y -f=A.b5(g,f,c,A.aFj(),t.KX) -g=c<0.5 -if(g)e=s?d:a.z -else e=q?d:b.z -if(g)g=s?d:a.Q -else g=q?d:b.Q -s=s?d:a.as -return new A.Ps(p,r,o,m,l,k,n,j,new A.XS(i,h,c),f,e,g,A.z_(s,q?d:b.as,c))}, -Ps:function Ps(a,b,c,d,e,f,g,h,i,j,k,l,m){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m}, -XS:function XS(a,b,c){this.a=a -this.b=b -this.c=c}, -Yf:function Yf(){}, -aZn(a,b,c){if(a===b)return a -return new A.vz(A.aDE(a.a,b.a,c))}, -vz:function vz(a){this.a=a}, -Yg:function Yg(){}, -aZy(a,b,c){var s,r,q,p,o,n,m,l,k,j -if(a===b)return a -s=A.a3(a.a,b.a,c) -r=A.E(a.b,b.b,c) -q=A.a3(a.c,b.c,c) -p=A.E(a.d,b.d,c) -o=A.E(a.e,b.e,c) -n=A.E(a.f,b.f,c) -m=A.dD(a.r,b.r,c) -l=A.b5(a.w,b.w,c,A.Ko(),t.p8) -k=A.b5(a.x,b.x,c,A.aOo(),t.lF) -if(c<0.5)j=a.y -else j=b.y -return new A.Ce(s,r,q,p,o,n,m,l,k,j)}, -Ce:function Ce(a,b,c,d,e,f,g,h,i,j){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j}, -Yt:function Yt(){}, -aZz(a,b,c){var s,r,q,p,o,n,m,l,k -if(a===b)return a -s=A.a3(a.a,b.a,c) -r=A.E(a.b,b.b,c) -q=A.a3(a.c,b.c,c) -p=A.E(a.d,b.d,c) -o=A.E(a.e,b.e,c) -n=A.E(a.f,b.f,c) -m=A.dD(a.r,b.r,c) -l=a.w -l=A.alZ(l,l,c) -k=A.b5(a.x,b.x,c,A.Ko(),t.p8) -return new A.Cf(s,r,q,p,o,n,m,l,k,A.b5(a.y,b.y,c,A.aOo(),t.lF))}, -Cf:function Cf(a,b,c,d,e,f,g,h,i,j){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j}, -Yu:function Yu(){}, -aZA(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h -if(a===b)return a -s=A.E(a.a,b.a,c) -r=A.a3(a.b,b.b,c) -q=A.bp(a.c,b.c,c) -p=A.bp(a.d,b.d,c) -o=a.e -if(o==null)n=b.e==null -else n=!1 -if(n)o=null -else o=A.ma(o,b.e,c) -n=a.f -if(n==null)m=b.f==null -else m=!1 -if(m)n=null -else n=A.ma(n,b.f,c) -m=A.a3(a.r,b.r,c) -l=c<0.5 -if(l)k=a.w -else k=b.w -if(l)l=a.x -else l=b.x -j=A.E(a.y,b.y,c) -i=A.dD(a.z,b.z,c) -h=A.a3(a.Q,b.Q,c) -return new A.Cg(s,r,q,p,o,n,m,k,l,j,i,h,A.a3(a.as,b.as,c))}, -Cg:function Cg(a,b,c,d,e,f,g,h,i,j,k,l,m){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m}, -Yv:function Yv(){}, -aJM(a,b,c){var s=null -return new A.Q6(b,s,s,s,c,B.m,s,!1,s,!0,a,s)}, -aDO(a,b,c,d,e,f,g,h,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1){var s,r,q,p,o,n,m,l,k,j,i=null -if(e==null)s=i -else s=e -r=new A.HC(a1,s) -q=c==null -if(q&&d==null)p=i -else if(d==null){q=q?i:new A.bJ(c,t.Il) -p=q}else{q=new A.HC(c,d) -p=q}o=new A.YM(a1) -q=b0==null?i:new A.bJ(b0,t.XL) -n=a5==null?i:new A.bJ(a5,t.h9) -m=g==null?i:new A.bJ(g,t.QL) -l=a3==null?i:new A.bJ(a3,t.iL) -k=a2==null?i:new A.bJ(a2,t.iL) -j=a6==null?i:new A.bJ(a6,t.kU) -return A.u2(a,b,p,m,h,i,r,i,i,k,l,new A.YL(a0,f),o,new A.bJ(a4,t.Ak),n,j,new A.bJ(a7,t.e1),a8,i,a9,q,b1)}, -b4d(a){var s -A.a2(a) -s=A.ct(a,B.bQ) -s=s==null?null:s.c -if(s==null)s=1 -return A.a5q(new A.aF(16,0,16,0),new A.aF(8,0,8,0),new A.aF(4,0,4,0),s)}, -Q6:function Q6(a,b,c,d,e,f,g,h,i,j,k,l){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.w=f -_.x=g -_.y=h -_.z=i -_.Q=j -_.as=k -_.a=l}, -HC:function HC(a,b){this.a=a -this.b=b}, -YM:function YM(a){this.a=a}, -YL:function YL(a,b){this.a=a -this.b=b}, -a2d:function a2d(){}, -a2e:function a2e(){}, -a2f:function a2f(){}, -aZF(a,b,c){if(a===b)return a -return new A.Ct(A.nu(a.a,b.a,c))}, -Ct:function Ct(a){this.a=a}, -YN:function YN(){}, -oj:function oj(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r){var _=this -_.c1=a -_.bd=b -_.bS=c -_.fr=d -_.fx=e -_.fy=!1 -_.id=_.go=null -_.k1=f -_.k2=g -_.k3=h -_.k4=i -_.ok=$ -_.p1=null -_.p2=$ -_.kx$=j -_.oq$=k -_.y=l -_.z=null -_.Q=!1 -_.at=_.as=null -_.ax=m -_.CW=_.ch=null -_.e=n -_.a=null -_.b=o -_.c=p -_.d=q -_.$ti=r}, -Pg:function Pg(){}, -Hh:function Hh(){}, -aND(a,b,c){var s,r -a.e6() -if(b===1)return -a.f2(0,b,b) -s=c.a -r=c.b -a.aK(0,-((s*b-s)/2),-((r*b-r)/2))}, -aME(a,b,c,d){var s=new A.Ju(c,a,d,b,new A.b6(new Float64Array(16)),A.af(t.o0),A.af(t.bq),$.aO()),r=s.gcJ() -a.U(0,r) -a.fK(s.guf()) -d.a.U(0,r) -b.U(0,r) -return s}, -aMF(a,b,c,d){var s=new A.Jv(c,d,b,a,new A.b6(new Float64Array(16)),A.af(t.o0),A.af(t.bq),$.aO()),r=s.gcJ() -d.a.U(0,r) -b.U(0,r) -a.fK(s.guf()) -return s}, -a1N:function a1N(a,b,c,d,e,f){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.a=f}, -azs:function azs(a){this.a=a}, -azt:function azt(a){this.a=a}, -azu:function azu(a){this.a=a}, -azv:function azv(a){this.a=a}, -pv:function pv(a,b,c,d,e){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.a=e}, -a1L:function a1L(a,b,c,d){var _=this -_.d=$ -_.mM$=a -_.ly$=b -_.mN$=c -_.a=null -_.b=d -_.c=null}, -pw:function pw(a,b,c,d,e){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.a=e}, -a1M:function a1M(a,b,c,d){var _=this -_.d=$ -_.mM$=a -_.ly$=b -_.mN$=c -_.a=null -_.b=d -_.c=null}, -mp:function mp(){}, -Um:function Um(){}, -Mk:function Mk(){}, -Q8:function Q8(){}, -ahb:function ahb(a){this.a=a}, -yE:function yE(){}, -Ju:function Ju(a,b,c,d,e,f,g,h){var _=this -_.r=a -_.w=b -_.x=c -_.y=d -_.z=e -_.Q=f -_.as=g -_.aj$=0 -_.ag$=h -_.aU$=_.aB$=0 -_.aN$=!1}, -azq:function azq(a,b){this.a=a -this.b=b}, -Jv:function Jv(a,b,c,d,e,f,g,h){var _=this -_.r=a -_.w=b -_.x=c -_.y=d -_.z=e -_.Q=f -_.as=g -_.aj$=0 -_.ag$=h -_.aU$=_.aB$=0 -_.aN$=!1}, -azr:function azr(a,b){this.a=a -this.b=b}, -YR:function YR(){}, -K1:function K1(){}, -K2:function K2(){}, -aDV(a,b,c){return new A.CP(b,a,null,c.i("CP<0>"))}, -b6M(a,b,c,d,e,f,g,h,a0,a1,a2,a3){var s,r,q,p,o,n,m,l,k,j,i=null -switch(A.a2(d).r.a){case 2:case 4:s=i -break -case 0:case 1:case 3:case 5:A.h9(d,B.b_,t.R).toString -s="Popup menu" -break -default:s=i}r=A.jF(d,!1) -A.h9(d,B.b_,t.R).toString -q=r.c -q.toString -q=A.Ov(d,q) -p=A.aT(J.b4(g),i,!1,t.tW) -o=A.b([],t.Zt) -n=$.ai -m=A.oA(B.bS) -l=A.b([],t.wi) -k=A.eu(i,t.u) -j=$.ai -return r.n9(new A.HJ(h,g,p,f,e,a2,a0,s,a1,b,q,c,a,"Dismiss",i,B.kU,o,new A.bB(i,a3.i("bB>")),new A.bB(i,t.C),new A.rm(),i,0,new A.b3(new A.ae(n,a3.i("ae<0?>")),a3.i("b3<0?>")),m,l,B.hq,k,new A.b3(new A.ae(j,a3.i("ae<0?>")),a3.i("b3<0?>")),a3.i("HJ<0>")))}, -aM4(a){var s=null -return new A.avY(a,s,s,8,s,s,s,s,s,s,s)}, -oy:function oy(){}, -Ye:function Ye(a,b,c){this.e=a -this.c=b -this.a=c}, -ZZ:function ZZ(a,b,c){var _=this -_.v=a -_.C$=b -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=c -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -CP:function CP(a,b,c,d){var _=this -_.d=a -_.Q=b -_.a=c -_.$ti=d}, -w_:function w_(a,b){var _=this -_.a=null -_.b=a -_.c=null -_.$ti=b}, -HI:function HI(a,b,c,d,e,f){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.a=e -_.$ti=f}, -aw0:function aw0(a,b){this.a=a -this.b=b}, -aw1:function aw1(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f}, -avZ:function avZ(a,b,c,d,e,f){var _=this -_.b=a -_.c=b -_.d=c -_.e=d -_.f=e -_.r=f}, -HJ:function HJ(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9){var _=this -_.ah=a -_.fR=b -_.c1=c -_.b6=d -_.dq=e -_.dI=f -_.v=g -_.V=h -_.am=i -_.br=j -_.e1=k -_.dJ=l -_.eX=m -_.eb=n -_.fr=o -_.fx=p -_.fy=!1 -_.id=_.go=null -_.k1=q -_.k2=r -_.k3=s -_.k4=a0 -_.ok=$ -_.p1=null -_.p2=$ -_.kx$=a1 -_.oq$=a2 -_.y=a3 -_.z=null -_.Q=!1 -_.at=_.as=null -_.ax=a4 -_.CW=_.ch=null -_.e=a5 -_.a=null -_.b=a6 -_.c=a7 -_.d=a8 -_.$ti=a9}, -aw_:function aw_(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -vY:function vY(a,b,c,d,e,f){var _=this -_.c=a -_.f=b -_.at=c -_.ch=d -_.a=e -_.$ti=f}, -vZ:function vZ(a,b){var _=this -_.a=null -_.b=a -_.c=null -_.$ti=b}, -ahZ:function ahZ(a){this.a=a}, -WB:function WB(a,b){this.a=a -this.b=b}, -avY:function avY(a,b,c,d,e,f,g,h,i,j,k){var _=this -_.z=a -_.as=_.Q=$ -_.a=b -_.b=c -_.c=d -_.d=e -_.e=f -_.f=g -_.r=h -_.w=i -_.x=j -_.y=k}, -b_3(a,b,c){var s,r,q,p,o,n,m,l,k,j -if(a===b)return a -s=A.E(a.a,b.a,c) -r=A.dD(a.b,b.b,c) -q=A.a3(a.c,b.c,c) -p=A.E(a.d,b.d,c) -o=A.E(a.e,b.e,c) -n=A.bp(a.f,b.f,c) -m=A.b5(a.r,b.r,c,A.Ko(),t.p8) -l=c<0.5 -if(l)k=a.w -else k=b.w -if(l)j=a.x -else j=b.x -if(l)l=a.y -else l=b.y -return new A.w0(s,r,q,p,o,n,m,k,j,l)}, -ai_(a){var s -a.an(t.xF) -s=A.a2(a) -return s.aU}, -w0:function w0(a,b,c,d,e,f,g,h,i,j){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j}, -Zs:function Zs(){}, -aHy(a){var s=null -return new A.u9(a,s,s,s,s,s,s,s)}, -aqv:function aqv(a,b){this.a=a -this.b=b}, -R3:function R3(){}, -Vh:function Vh(a,b,c,d,e,f,g,h,i,j,k,l,m){var _=this -_.b=a -_.c=b -_.d=c -_.e=d -_.f=e -_.r=f -_.w=g -_.x=h -_.y=i -_.z=j -_.Q=k -_.as=l -_.a=m}, -u9:function u9(a,b,c,d,e,f,g,h){var _=this -_.z=a -_.c=b -_.d=c -_.e=d -_.f=e -_.r=f -_.w=g -_.a=h}, -Vi:function Vi(a,b,c){var _=this -_.d=$ -_.eV$=a -_.cb$=b -_.a=null -_.b=c -_.c=null}, -asj:function asj(a){this.a=a}, -asi:function asi(a,b,c,d,e,f){var _=this -_.f=a -_.r=$ -_.a=b -_.b=c -_.c=d -_.d=e -_.e=f}, -JC:function JC(){}, -b_e(a,b,c){var s,r,q,p -if(a===b)return a -s=A.E(a.a,b.a,c) -r=A.E(a.b,b.b,c) -q=A.a3(a.c,b.c,c) -p=A.E(a.d,b.d,c) -return new A.w6(s,r,q,p,A.E(a.e,b.e,c))}, -aKj(a){var s -a.an(t.C0) -s=A.a2(a) -return s.aN}, -w6:function w6(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -Zu:function Zu(){}, -b_g(a,b,c){var s,r,q,p,o,n -if(a===b&&!0)return a -s=c<0.5 -if(s)r=a.a -else r=b.a -q=t.m -p=A.b5(a.b,b.b,c,A.cg(),q) -if(s)o=a.e -else o=b.e -q=A.b5(a.c,b.c,c,A.cg(),q) -n=A.a3(a.d,b.d,c) -if(s)s=a.f -else s=b.f -return new A.CX(r,p,q,n,o,s)}, -CX:function CX(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f}, -Zy:function Zy(){}, -DB(a,b,c){return new A.DA(a,c,b,null)}, -DD(a){var s=a.vS(t.Np) -if(s!=null)return s -throw A.d(A.uU(A.b([A.nM("Scaffold.of() called with a context that does not contain a Scaffold."),A.bu("No Scaffold ancestor could be found starting from the context that was passed to Scaffold.of(). This usually happens when the context provided is from the same StatefulWidget as that whose build function actually creates the Scaffold widget being sought."),A.Nh('There are several ways to avoid this problem. The simplest is to use a Builder to get a context that is "under" the Scaffold. For an example of this, please see the documentation for Scaffold.of():\n https://api.flutter.dev/flutter/material/Scaffold/of.html'),A.Nh("A more efficient solution is to split your build function into several widgets. This introduces a new context from which you can obtain the Scaffold. In this solution, you would have an outer widget that creates the Scaffold populated by instances of your new inner widgets, and then in these inner widgets you would use Scaffold.of().\nA less elegant but more expedient solution is assign a GlobalKey to the Scaffold, then use the key.currentState property to obtain the ScaffoldState rather than using the Scaffold.of() function."),a.aob("The context used was")],t.E)))}, -i0:function i0(a,b){this.a=a -this.b=b}, -DC:function DC(a,b){this.c=a -this.a=b}, -S0:function S0(a,b,c,d,e,f){var _=this -_.d=a -_.e=b -_.r=c -_.y=_.x=null -_.d5$=d -_.aZ$=e -_.a=null -_.b=f -_.c=null}, -akc:function akc(a,b,c){this.a=a -this.b=b -this.c=c}, -Ic:function Ic(a,b,c){this.f=a -this.b=b -this.a=c}, -akd:function akd(a,b,c,d,e,f,g,h){var _=this -_.a=a -_.b=b -_.c=c -_.e=d -_.f=e -_.r=f -_.w=g -_.y=h}, -S_:function S_(a,b){this.a=a -this.b=b}, -a_q:function a_q(a,b,c){var _=this -_.a=a -_.b=null -_.c=b -_.aj$=0 -_.ag$=c -_.aU$=_.aB$=0 -_.aN$=!1}, -FJ:function FJ(a,b,c,d,e,f,g){var _=this -_.e=a -_.f=b -_.r=c -_.a=d -_.b=e -_.c=f -_.d=g}, -UX:function UX(a,b,c,d){var _=this -_.c=a -_.d=b -_.e=c -_.a=d}, -ax3:function ax3(a,b,c,d,e,f,g,h,i,j,k,l,m){var _=this -_.d=a -_.e=b -_.f=c -_.r=d -_.w=e -_.x=f -_.y=g -_.z=h -_.Q=i -_.as=j -_.at=k -_.ax=l -_.ay=m -_.c=_.b=null}, -GC:function GC(a,b,c,d,e,f){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.a=f}, -GD:function GD(a,b,c){var _=this -_.x=_.w=_.r=_.f=_.e=_.d=$ -_.y=null -_.d5$=a -_.aZ$=b -_.a=null -_.b=c -_.c=null}, -ats:function ats(a,b){this.a=a -this.b=b}, -DA:function DA(a,b,c,d){var _=this -_.e=a -_.f=b -_.ch=c -_.a=d}, -wn:function wn(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p){var _=this -_.d=a -_.e=b -_.f=c -_.r=null -_.w=d -_.x=e -_.Q=_.z=_.y=null -_.as=f -_.at=null -_.ax=g -_.ay=null -_.CW=_.ch=$ -_.cy=_.cx=null -_.dx=_.db=$ -_.dy=!1 -_.fr=h -_.bP$=i -_.fP$=j -_.qT$=k -_.eu$=l -_.fQ$=m -_.d5$=n -_.aZ$=o -_.a=null -_.b=p -_.c=null}, -akf:function akf(a,b){this.a=a -this.b=b}, -ake:function ake(a,b){this.a=a -this.b=b}, -akg:function akg(a,b,c,d,e,f,g){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g}, -Wg:function Wg(a,b){this.e=a -this.a=b -this.b=null}, -a_r:function a_r(a,b,c){this.f=a -this.b=b -this.a=c}, -ax4:function ax4(){}, -Id:function Id(){}, -Ie:function Ie(){}, -If:function If(){}, -JJ:function JJ(){}, -aE5(a,b,c){return new A.Sa(a,b,c,null)}, -Sa:function Sa(a,b,c,d){var _=this -_.c=a -_.d=b -_.e=c -_.a=d}, -y6:function y6(a,b,c,d,e,f,g,h,i,j,k,l,m,n){var _=this -_.fy=a -_.c=b -_.d=c -_.e=d -_.r=e -_.w=f -_.Q=g -_.ay=h -_.ch=i -_.CW=j -_.cx=k -_.cy=l -_.db=m -_.a=n}, -Y7:function Y7(a,b,c,d){var _=this -_.cy=$ -_.dx=_.db=!1 -_.fx=_.fr=_.dy=$ -_.w=_.r=_.f=_.e=_.d=null -_.y=_.x=$ -_.z=a -_.as=_.Q=!1 -_.at=$ -_.d5$=b -_.aZ$=c -_.a=null -_.b=d -_.c=null}, -avb:function avb(a){this.a=a}, -av8:function av8(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -ava:function ava(a,b,c){this.a=a -this.b=b -this.c=c}, -av9:function av9(a,b,c){this.a=a -this.b=b -this.c=c}, -av7:function av7(a){this.a=a}, -avh:function avh(a){this.a=a}, -avg:function avg(a){this.a=a}, -avf:function avf(a){this.a=a}, -avd:function avd(a){this.a=a}, -ave:function ave(a){this.a=a}, -avc:function avc(a){this.a=a}, -b_G(a,b,c){var s,r,q,p,o,n,m,l,k,j,i -if(a===b&&!0)return a -s=t.X7 -r=A.b5(a.a,b.a,c,A.aOZ(),s) -q=A.b5(a.b,b.b,c,A.Kr(),t.PM) -s=A.b5(a.c,b.c,c,A.aOZ(),s) -p=a.d -o=b.d -n=c<0.5 -p=n?p:o -o=a.e -m=b.e -o=n?o:m -n=A.CY(a.f,b.f,c) -m=t.m -l=A.b5(a.r,b.r,c,A.cg(),m) -k=A.b5(a.w,b.w,c,A.cg(),m) -m=A.b5(a.x,b.x,c,A.cg(),m) -j=A.a3(a.y,b.y,c) -i=A.a3(a.z,b.z,c) -return new A.DS(r,q,s,p,o,n,l,k,m,j,i,A.a3(a.Q,b.Q,c))}, -b40(a,b,c){return c<0.5?a:b}, -DS:function DS(a,b,c,d,e,f,g,h,i,j,k,l){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l}, -a_w:function a_w(){}, -b_I(a,b,c){var s,r,q,p,o,n,m,l,k,j -if(a===b)return a -s=A.b5(a.a,b.a,c,A.Kr(),t.PM) -r=t.m -q=A.b5(a.b,b.b,c,A.cg(),r) -p=A.b5(a.c,b.c,c,A.cg(),r) -o=A.b5(a.d,b.d,c,A.cg(),r) -r=A.b5(a.e,b.e,c,A.cg(),r) -n=A.b_H(a.f,b.f,c) -m=A.b5(a.r,b.r,c,A.aFj(),t.KX) -l=A.b5(a.w,b.w,c,A.aFr(),t.pc) -k=t.p8 -j=A.b5(a.x,b.x,c,A.Ko(),k) -k=A.b5(a.y,b.y,c,A.Ko(),k) -return new A.DT(s,q,p,o,r,n,m,l,j,k,A.nr(a.z,b.z,c))}, -b_H(a,b,c){if(a==b)return a -return new A.XR(a,b,c)}, -DT:function DT(a,b,c,d,e,f,g,h,i,j,k){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k}, -XR:function XR(a,b,c){this.a=a -this.b=b -this.c=c}, -a_x:function a_x(){}, -b_K(a,b,c){var s,r,q,p,o,n,m,l -if(a===b)return a -s=A.E(a.a,b.a,c) -r=A.a3(a.b,b.b,c) -q=A.E(a.c,b.c,c) -p=A.b_J(a.d,b.d,c) -o=A.aJL(a.e,b.e,c) -n=a.f -m=b.f -l=A.bp(n,m,c) -n=A.bp(n,m,c) -m=A.nr(a.w,b.w,c) -return new A.DU(s,r,q,p,o,l,n,m,A.E(a.x,b.x,c))}, -b_J(a,b,c){if(a==null||b==null)return null -if(a===b)return a -return A.aR(a,b,c)}, -DU:function DU(a,b,c,d,e,f,g,h,i){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i}, -a_y:function a_y(){}, -b_M(a,b,c){var s,r -if(a===b&&!0)return a -s=A.nu(a.a,b.a,c) -if(c<0.5)r=a.b -else r=b.b -return new A.DV(s,r)}, -DV:function DV(a,b){this.a=a -this.b=b}, -a_z:function a_z(){}, -aMh(a){var s=a.xc(!1) -return new A.a0R(a,new A.dg(s,B.eS,B.b7),$.aO())}, -aKB(a,b){var s=null -return new A.mF(a,s,s,s,b,s,s)}, -b_N(a,b){return A.aH9(b)}, -a0R:function a0R(a,b,c){var _=this -_.ax=a -_.a=b -_.aj$=0 -_.ag$=c -_.aU$=_.aB$=0 -_.aN$=!1}, -a_B:function a_B(a,b){var _=this -_.w=a -_.a=b -_.b=!0 -_.d=_.c=0 -_.f=_.e=null -_.r=!1}, -mF:function mF(a,b,c,d,e,f,g){var _=this -_.c=a -_.d=b -_.w=c -_.y=d -_.as=e -_.fx=f -_.a=g}, -Ip:function Ip(a,b){var _=this -_.d=$ -_.e=null -_.f=!1 -_.w=_.r=$ -_.x=a -_.a=null -_.b=b -_.c=null}, -axd:function axd(a,b){this.a=a -this.b=b}, -axc:function axc(a,b){this.a=a -this.b=b}, -axe:function axe(a){this.a=a}, -b06(b2,b3,b4){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1 -if(b2===b3)return b2 -s=A.a3(b2.a,b3.a,b4) -r=A.E(b2.b,b3.b,b4) -q=A.E(b2.c,b3.c,b4) -p=A.E(b2.d,b3.d,b4) -o=A.E(b2.e,b3.e,b4) -n=A.E(b2.r,b3.r,b4) -m=A.E(b2.f,b3.f,b4) -l=A.E(b2.w,b3.w,b4) -k=A.E(b2.x,b3.x,b4) -j=A.E(b2.y,b3.y,b4) -i=A.E(b2.z,b3.z,b4) -h=A.E(b2.Q,b3.Q,b4) -g=A.E(b2.as,b3.as,b4) -f=A.E(b2.at,b3.at,b4) -e=A.E(b2.ax,b3.ax,b4) -d=A.E(b2.ay,b3.ay,b4) -c=b4<0.5 -b=c?b2.ch:b3.ch -a=c?b2.CW:b3.CW -a0=c?b2.cx:b3.cx -a1=c?b2.cy:b3.cy -a2=c?b2.db:b3.db -a3=c?b2.dx:b3.dx -a4=c?b2.dy:b3.dy -a5=c?b2.fr:b3.fr -a6=c?b2.fx:b3.fx -a7=c?b2.fy:b3.fy -a8=A.bp(b2.go,b3.go,b4) -a9=A.a3(b2.id,b3.id,b4) -b0=c?b2.k1:b3.k1 -b1=c?b2.k2:b3.k2 -return new A.Ee(s,r,q,p,o,m,n,l,k,j,i,h,g,f,e,d,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,c?b2.k3:b3.k3)}, -Ee:function Ee(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0 -_.db=a1 -_.dx=a2 -_.dy=a3 -_.fr=a4 -_.fx=a5 -_.fy=a6 -_.go=a7 -_.id=a8 -_.k1=a9 -_.k2=b0 -_.k3=b1}, -a_V:function a_V(){}, -Eh:function Eh(a,b){this.a=a -this.b=b}, -b09(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h -if(a===b&&!0)return a -s=A.E(a.a,b.a,c) -r=A.E(a.b,b.b,c) -q=A.E(a.c,b.c,c) -p=A.bp(a.d,b.d,c) -o=A.a3(a.e,b.e,c) -n=A.dD(a.f,b.f,c) -if(c<0.5)m=a.r -else m=b.r -l=A.a3(a.w,b.w,c) -k=A.a7T(a.x,b.x,c) -j=A.E(a.z,b.z,c) -i=A.a3(a.Q,b.Q,c) -h=A.E(a.as,b.as,c) -return new A.Ei(s,r,q,p,o,n,m,l,k,j,i,h,A.E(a.at,b.at,c))}, -Ei:function Ei(a,b,c,d,e,f,g,h,i,j,k,l,m){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.z=j -_.Q=k -_.as=l -_.at=m}, -a00:function a00(){}, -axV:function axV(a,b){this.a=a -this.b=b}, -T4:function T4(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.w=f -_.x=g -_.y=h -_.z=i -_.Q=j -_.as=k -_.at=l -_.ax=m -_.ch=n -_.CW=o -_.cx=p -_.cy=q -_.db=r -_.dx=s -_.fx=a0 -_.fy=a1 -_.id=a2 -_.k1=a3 -_.a=a4}, -Hk:function Hk(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.w=f -_.x=g -_.y=h -_.z=i -_.Q=j -_.as=k -_.at=l -_.ax=m -_.ay=n -_.ch=o -_.cx=p -_.cy=q -_.db=r -_.dx=s -_.dy=a0 -_.fr=a1 -_.fx=a2 -_.fy=a3 -_.go=a4 -_.id=a5 -_.a=a6}, -Hl:function Hl(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p){var _=this -_.d=a -_.e=!1 -_.kA$=b -_.kB$=c -_.lA$=d -_.vN$=e -_.vO$=f -_.r_$=g -_.vP$=h -_.r0$=i -_.BL$=j -_.ot$=k -_.mO$=l -_.mP$=m -_.d5$=n -_.aZ$=o -_.a=null -_.b=p -_.c=null}, -avl:function avl(a){this.a=a}, -avm:function avm(a){this.a=a}, -avk:function avk(a){this.a=a}, -avn:function avn(a,b){this.a=a -this.b=b}, -IO:function IO(a){var _=this -_.al=_.bn=_.b_=_.y2=_.y1=_.xr=_.x2=_.x1=_.to=_.ry=_.rx=_.RG=_.R8=_.p4=_.p3=_.p2=_.p1=_.ok=_.k4=_.k3=_.k2=_.k1=_.id=_.go=_.fy=_.fx=_.fr=_.dy=_.dx=_.db=null -_.B=_.bk=_.bS=_.bd=_.aG=null -_.a1=_.R=!1 -_.at=_.as=_.Q=_.z=_.y=_.x=_.w=_.r=_.f=_.e=_.d=_.c=_.b=_.a=_.az=_.ar=null -_.aj$=0 -_.ag$=a -_.aU$=_.aB$=0 -_.aN$=!1}, -axU:function axU(a,b,c){this.a=a -this.b=b -this.c=c}, -axN:function axN(){}, -a0j:function a0j(){}, -axO:function axO(a,b,c,d,e,f,g,h,i,j,k){var _=this -_.y=a -_.z=b -_.a=c -_.b=d -_.c=e -_.d=f -_.e=g -_.f=h -_.r=i -_.w=j -_.x=k}, -axR:function axR(a,b){this.a=a -this.b=b}, -axS:function axS(a,b){this.a=a -this.b=b}, -axP:function axP(){}, -axQ:function axQ(a){this.a=a}, -JQ:function JQ(){}, -JR:function JR(){}, -a2G:function a2G(){}, -axT:function axT(a,b){this.a=a -this.b=b}, -T5:function T5(a,b,c,d){var _=this -_.c=a -_.d=b -_.fy=c -_.a=d}, -anH:function anH(a){this.a=a}, -b0n(a,b,c){var s,r,q,p,o,n,m,l,k -if(a===b&&!0)return a -s=t.m -r=A.b5(a.a,b.a,c,A.cg(),s) -q=A.b5(a.b,b.b,c,A.cg(),s) -p=A.b5(a.c,b.c,c,A.cg(),s) -o=A.b5(a.d,b.d,c,A.Kr(),t.PM) -n=c<0.5 -if(n)m=a.e -else m=b.e -if(n)l=a.f -else l=b.f -s=A.b5(a.r,b.r,c,A.cg(),s) -k=A.a3(a.w,b.w,c) -if(n)n=a.x -else n=b.x -return new A.wT(r,q,p,o,m,l,s,k,n)}, -aEc(a){var s -a.an(t.OJ) -s=A.a2(a) -return s.d8}, -wT:function wT(a,b,c,d,e,f,g,h,i){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i}, -a0k:function a0k(){}, -b0q(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h,g -if(a===b)return a -s=A.a6V(a.a,b.a,c) -r=A.E(a.b,b.b,c) -q=c<0.5 -p=q?a.c:b.c -o=A.E(a.d,b.d,c) -n=A.E(a.e,b.e,c) -m=A.ek(a.f,b.f,c) -l=A.bp(a.r,b.r,c) -k=A.E(a.w,b.w,c) -j=A.bp(a.x,b.x,c) -i=A.b5(a.y,b.y,c,A.cg(),t.m) -h=q?a.z:b.z -g=q?a.Q:b.Q -return new A.EC(s,r,p,o,n,m,l,k,j,i,h,g,q?a.as:b.as)}, -EC:function EC(a,b,c,d,e,f,g,h,i,j,k,l,m){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m}, -a0n:function a0n(){}, -aL4(a,b,c){var s=null -return new A.Tp(b,s,s,s,c,B.m,s,!1,s,!0,a,s)}, -aEf(a,b,c,d,e,f,g,h,i,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9){var s,r,q,p,o,n,m,l,k,j=null -if(e==null)s=j -else s=e -r=new A.IS(a0,s) -q=c==null -if(q&&d==null)p=j -else if(d==null){q=q?j:new A.bJ(c,t.Il) -p=q}else{q=new A.IS(c,d) -p=q}o=new A.a0D(a0) -q=a8==null?j:new A.bJ(a8,t.XL) -n=a4==null?j:new A.bJ(a4,t.h9) -m=g==null?j:new A.bJ(g,t.QL) -l=t.iL -k=a1==null?j:new A.bJ(a1,l) -return A.u2(a,b,p,m,h,j,r,j,j,k,new A.bJ(a2,l),new A.a0C(i,f),o,new A.bJ(a3,t.Ak),n,new A.bJ(a5,t.kU),j,a6,j,a7,q,a9)}, -b4e(a){var s -A.a2(a) -s=A.ct(a,B.bQ) -s=s==null?null:s.c -return A.a5q(B.ch,B.fv,B.Fm,s==null?1:s)}, -Tp:function Tp(a,b,c,d,e,f,g,h,i,j,k,l){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.w=f -_.x=g -_.y=h -_.z=i -_.Q=j -_.as=k -_.a=l}, -IS:function IS(a,b){this.a=a -this.b=b}, -a0D:function a0D(a){this.a=a}, -a0C:function a0C(a,b){this.a=a -this.b=b}, -a2I:function a2I(){}, -b0x(a,b,c){if(a===b)return a -return new A.EQ(A.nu(a.a,b.a,c))}, -EQ:function EQ(a){this.a=a}, -a0E:function a0E(){}, -aL7(a,b,c,d,e){var s=d===1?B.zw:B.kM -return new A.ET(a,c,b,s,B.za,B.zb,d,e,!0,null)}, -b0B(a,b){return A.aH9(b)}, -b0C(a){return B.eO}, -b42(a){return A.Hj(new A.aAn(a))}, -a0G:function a0G(a,b){var _=this -_.w=a -_.a=b -_.b=!0 -_.d=_.c=0 -_.f=_.e=null -_.r=!1}, -ET:function ET(a,b,c,d,e,f,g,h,i,j){var _=this -_.d=a -_.e=b -_.f=c -_.r=d -_.cx=e -_.cy=f -_.dx=g -_.k4=h -_.xr=i -_.a=j}, -IT:function IT(a,b,c,d,e,f,g){var _=this -_.e=_.d=null -_.r=_.f=!1 -_.x=_.w=$ -_.y=a -_.bP$=b -_.fP$=c -_.qT$=d -_.eu$=e -_.fQ$=f -_.a=null -_.b=g -_.c=null}, -ayn:function ayn(){}, -ayp:function ayp(a,b){this.a=a -this.b=b}, -ayo:function ayo(a,b){this.a=a -this.b=b}, -ayr:function ayr(a){this.a=a}, -ays:function ays(a){this.a=a}, -ayt:function ayt(a,b,c){this.a=a -this.b=b -this.c=c}, -ayv:function ayv(a){this.a=a}, -ayw:function ayw(a){this.a=a}, -ayu:function ayu(a,b){this.a=a -this.b=b}, -ayq:function ayq(a){this.a=a}, -aAn:function aAn(a){this.a=a}, -azA:function azA(){}, -K0:function K0(){}, -Pn:function Pn(){}, -afv:function afv(){}, -a0H:function a0H(a,b){this.b=a -this.a=b}, -Yb:function Yb(){}, -b0E(a,b,c){var s,r -if(a===b)return a -s=A.E(a.a,b.a,c) -r=A.E(a.b,b.b,c) -return new A.F3(s,r,A.E(a.c,b.c,c))}, -F3:function F3(a,b,c){this.a=a -this.b=b -this.c=c}, -a0J:function a0J(){}, -b0F(a,b,c){return new A.TB(a,b,c,null)}, -b0L(a,b){return new A.a0K(b,null)}, -TB:function TB(a,b,c,d){var _=this -_.c=a -_.d=b -_.e=c -_.a=d}, -IY:function IY(a,b,c,d){var _=this -_.c=a -_.d=b -_.e=c -_.a=d}, -a0O:function a0O(a,b,c,d){var _=this -_.d=!1 -_.e=a -_.d5$=b -_.aZ$=c -_.a=null -_.b=d -_.c=null}, -ayN:function ayN(a){this.a=a}, -ayM:function ayM(a){this.a=a}, -a0P:function a0P(a,b,c,d){var _=this -_.e=a -_.f=b -_.c=c -_.a=d}, -a0Q:function a0Q(a,b,c,d){var _=this -_.v=null -_.V=a -_.am=b -_.C$=c -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=d -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -ayO:function ayO(a,b,c){this.a=a -this.b=b -this.c=c}, -a0L:function a0L(a,b,c,d){var _=this -_.e=a -_.f=b -_.c=c -_.a=d}, -a0M:function a0M(a,b,c){var _=this -_.p1=$ -_.p2=a -_.d=_.c=_.b=_.a=_.CW=_.ay=null -_.e=$ -_.f=b -_.r=null -_.w=c -_.z=_.y=null -_.Q=!1 -_.as=!0 -_.ax=_.at=!1}, -a_9:function a_9(a,b,c,d,e,f){var _=this -_.B=-1 -_.R=a -_.a1=b -_.dG$=c -_.a3$=d -_.d7$=e -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=f -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -awx:function awx(a,b,c){this.a=a -this.b=b -this.c=c}, -awy:function awy(a,b,c){this.a=a -this.b=b -this.c=c}, -awA:function awA(a,b){this.a=a -this.b=b}, -awz:function awz(a,b,c){this.a=a -this.b=b -this.c=c}, -awB:function awB(a){this.a=a}, -a0K:function a0K(a,b){this.c=a -this.a=b}, -a0N:function a0N(a,b,c,d){var _=this -_.c=a -_.d=b -_.e=c -_.a=d}, -a2t:function a2t(){}, -a2J:function a2J(){}, -b0I(a){if(a===B.Ak||a===B.ls)return 14.5 -return 9.5}, -b0K(a){if(a===B.Al||a===B.ls)return 14.5 -return 9.5}, -b0J(a,b){if(a===0)return b===1?B.ls:B.Ak -if(a===b-1)return B.Al -return B.Xk}, -yz:function yz(a,b){this.a=a -this.b=b}, -TD:function TD(a,b,c,d,e){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.a=e}, -aLf(a,b,c,d,e,f,a0,a1,a2,a3,a4,a5,a6,a7,a8){var s=null,r=d==null?s:d,q=e==null?s:e,p=f==null?s:f,o=a1==null?s:a1,n=a2==null?s:a2,m=a6==null?s:a6,l=a7==null?s:a7,k=a8==null?s:a8,j=a==null?s:a,i=b==null?s:b,h=c==null?s:c,g=a3==null?s:a3 -return new A.eb(r,q,p,a0,o,n,m,l,k,j,i,h,g,a4,a5==null?s:a5)}, -x5(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h,g,f -if(a===b&&!0)return a -s=A.bp(a.a,b.a,c) -r=A.bp(a.b,b.b,c) -q=A.bp(a.c,b.c,c) -p=A.bp(a.d,b.d,c) -o=A.bp(a.e,b.e,c) -n=A.bp(a.f,b.f,c) -m=A.bp(a.r,b.r,c) -l=A.bp(a.w,b.w,c) -k=A.bp(a.x,b.x,c) -j=A.bp(a.y,b.y,c) -i=A.bp(a.z,b.z,c) -h=A.bp(a.Q,b.Q,c) -g=A.bp(a.as,b.as,c) -f=A.bp(a.at,b.at,c) -return A.aLf(j,i,h,s,r,q,p,o,n,g,f,A.bp(a.ax,b.ax,c),m,l,k)}, -eb:function eb(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o}, -a0T:function a0T(){}, -a2(a){var s,r=a.an(t.Nr),q=A.h9(a,B.b_,t.R)==null?null:B.yd -if(q==null)q=B.yd -s=r==null?null:r.w.c -if(s==null)s=$.aPW() -return A.b0Q(s,s.p4.a_P(q))}, -F5:function F5(a,b,c){this.c=a -this.d=b -this.a=c}, -GX:function GX(a,b,c){this.w=a -this.b=b -this.a=c}, -t8:function t8(a,b){this.a=a -this.b=b}, -za:function za(a,b,c,d,e,f){var _=this -_.r=a -_.w=b -_.c=c -_.d=d -_.e=e -_.a=f}, -UF:function UF(a,b,c){var _=this -_.CW=null -_.e=_.d=$ -_.eV$=a -_.cb$=b -_.a=null -_.b=c -_.c=null}, -aqY:function aqY(){}, -aLg(c5,c6,c7){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2=null,c3=A.b([],t.FO),c4=A.bA() -switch(c4.a){case 0:case 1:case 2:s=B.Lp -break -case 3:case 4:case 5:s=B.ub -break -default:s=c2}r=A.b19(c4) -if(c5==null)q=c2 -else q=c5 -if(q==null)q=B.an -p=q===B.Y -if(c6==null)c6=B.c_ -o=p?B.mx:c6 -n=A.TG(o) -if(p)m=B.mE -else{l=c6.b.h(0,100) -l.toString -m=l}if(p)k=B.k -else{l=c6.b.h(0,700) -l.toString -k=l}j=n===B.Y -if(p)i=B.mD -else if(null==null){l=c6.b.h(0,600) -l.toString -i=l}else i=c2 -h=p?A.ao(31,255,255,255):A.ao(31,0,0,0) -g=p?A.ao(10,255,255,255):A.ao(10,0,0,0) -f=p?B.iE:B.iJ -e=p?B.bT:B.j -d=p?B.Ed:B.bc -if(p)c=B.mD -else{l=c6.b.h(0,500) -l.toString -c=l}if(p)l=B.dQ -else{l=c6.b.h(0,200) -l.toString}b=A.TG(c6)===B.Y -a=A.TG(c) -a0=b?B.j:B.k -a=a===B.Y?B.j:B.k -a1=p?B.j:B.k -a2=b?B.j:B.k -a3=A.aCC(l,q,B.iH,c2,c2,c2,a2,p?B.k:B.j,c2,c2,a0,c2,a,c2,a1,c2,c2,c2,c2,c2,c6,c2,c2,c,c2,c2,e,c2,c2,c2,c2) -a4=p?B.E:B.O -if(p)a5=B.dQ -else{l=c6.b.h(0,50) -l.toString -a5=l}a6=p?B.bT:B.j -a7=a3.f -if(a7.j(0,o))a7=B.j -a8=p?B.Dr:A.ao(153,0,0,0) -if(p){l=c6.b.h(0,600) -l.toString}else l=B.fj -a9=A.aHv(!1,l,a3,c2,h,36,c2,g,B.BM,s,88,c2,c2,c2,B.BO) -b0=p?B.Dm:B.Dl -b1=p?B.mi:B.iC -b2=p?B.mi:B.Dn -b3=A.b0Z(c4) -b4=p?b3.b:b3.a -b5=j?b3.b:b3.a -b6=b4.b0(c2) -b7=b5.b0(c2) -b8=p?B.nD:B.Gd -b9=j?B.nD:B.Ge -if(p)c0=B.dQ -else{l=c6.b.h(0,200) -l.toString -c0=l}c1=p?B.bT:B.j -return A.aEh(c2,c2,B.Ay,!1,c0,B.AB,B.Lo,c1,B.AT,B.AW,B.AX,B.BN,a9,f,e,B.D5,B.D8,B.D9,a3,c2,B.ED,B.EE,a6,B.EP,b0,d,B.ES,B.EU,B.EV,B.Fq,B.iH,B.Fu,A.b0O(c3),B.FD,B.FG,h,b1,a8,g,B.FP,b8,a7,B.Cg,B.H6,s,B.Lt,B.Lu,B.Lv,B.LF,B.LG,B.LH,B.MJ,B.Cx,c4,B.Nv,o,k,m,b9,b7,B.Nx,B.Ny,f,B.O5,B.O6,B.O7,a5,B.O8,B.mI,B.k,B.Pr,B.Pt,b2,B.CY,B.Q6,B.Qc,B.Qe,B.Qw,b6,B.Us,B.Uu,i,B.Ux,b3,a4,!1,r)}, -aEh(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7,c8,c9,d0,d1,d2,d3,d4,d5,d6,d7,d8,d9,e0,e1,e2,e3,e4,e5,e6,e7,e8,e9,f0,f1,f2,f3,f4,f5,f6,f7,f8,f9,g0,g1,g2,g3,g4,g5,g6,g7){return new A.j1(d,a0,b3,c3,c5,d3,d4,e4,f4,!1,g7,h,n,o,s,a3,a5,a6,b6,b7,b8,b9,c2,d6,d7,d8,e3,e7,e9,f0,f3,g5,c1,d9,e0,f9,g4,a,c,f,g,i,j,k,l,m,p,q,r,a1,a2,a4,a7,a8,a9,b0,b2,b4,b5,c0,c4,c6,c7,c8,c9,d0,d1,d2,d5,e1,e2,e5,e6,e8,f1,f2,f5,f6,f7,f8,g0,g1,g3,b,b1,e,g2)}, -b0M(){return A.aLg(B.an,null,null)}, -b0Q(a,b){return $.aPV().bT(0,new A.xX(a,b),new A.api(a,b))}, -TG(a){var s=0.2126*A.aCD((a.gl(a)>>>16&255)/255)+0.7152*A.aCD((a.gl(a)>>>8&255)/255)+0.0722*A.aCD((a.gl(a)&255)/255)+0.05 -if(s*s>0.15)return B.an -return B.Y}, -b0N(a,b,c){var s=a.c,r=s.j7(s,new A.apg(b,c),t.K,t.Ag) -s=b.c -r.UR(r,s.gfl(s).iv(0,new A.aph(a))) -return r}, -b0O(a){var s,r,q=t.K,p=t.ZF,o=A.m(q,p) -for(s=0;!1;++s){r=a[s] -o.m(0,r.gDE(r),p.a(r))}return A.aCF(o,q,t.Ag)}, -b0P(h5,h6,h7){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7,c8,c9,d0,d1,d2,d3,d4,d5,d6,d7,d8,d9,e0,e1,e2,e3,e4,e5,e6,e7,e8,e9,f0,f1,f2,f3,f4,f5,f6,f7,f8,f9,g0,g1,g2,g3,g4,g5,g6,g7,g8,g9,h0,h1,h2,h3,h4 -if(h5===h6)return h5 -s=h7<0.5 -r=s?h5.a:h6.a -q=s?h5.b:h6.b -p=A.b0N(h5,h6,h7) -o=s?h5.d:h6.d -n=s?h5.e:h6.e -m=s?h5.f:h6.f -l=s?h5.r:h6.r -k=A.b_G(h5.w,h6.w,h7) -j=s?h5.x:h6.x -i=A.b1a(h5.z,h6.z,h7) -h=A.E(h5.as,h6.as,h7) -h.toString -g=A.E(h5.at,h6.at,h7) -g.toString -f=A.aWA(h5.ax,h6.ax,h7) -e=A.E(h5.ay,h6.ay,h7) -e.toString -d=A.E(h5.ch,h6.ch,h7) -d.toString -c=A.E(h5.CW,h6.CW,h7) -c.toString -b=A.E(h5.cx,h6.cx,h7) -b.toString -a=A.E(h5.cy,h6.cy,h7) -a.toString -a0=A.E(h5.db,h6.db,h7) -a0.toString -a1=A.E(h5.dx,h6.dx,h7) -a1.toString -a2=A.E(h5.dy,h6.dy,h7) -a2.toString -a3=A.E(h5.fr,h6.fr,h7) -a3.toString -a4=A.E(h5.fx,h6.fx,h7) -a4.toString -a5=A.E(h5.fy,h6.fy,h7) -a5.toString -a6=A.E(h5.go,h6.go,h7) -a6.toString -a7=A.E(h5.id,h6.id,h7) -a7.toString -a8=A.E(h5.k2,h6.k2,h7) -a8.toString -a9=A.E(h5.k3,h6.k3,h7) -a9.toString -b0=A.E(h5.k4,h6.k4,h7) -b0.toString -b1=A.ma(h5.ok,h6.ok,h7) -b2=A.ma(h5.p1,h6.p1,h7) -b3=A.x5(h5.p2,h6.p2,h7) -b4=A.x5(h5.p3,h6.p3,h7) -b5=A.b1_(h5.p4,h6.p4,h7) -b6=A.aVO(h5.R8,h6.R8,h7) -b7=A.aVV(h5.RG,h6.RG,h7) -b8=A.aVZ(h5.rx,h6.rx,h7) -b9=h5.ry -c0=h6.ry -c1=A.E(b9.a,c0.a,h7) -c2=A.E(b9.b,c0.b,h7) -c3=A.E(b9.c,c0.c,h7) -c4=A.E(b9.d,c0.d,h7) -c5=A.bp(b9.e,c0.e,h7) -c6=A.a3(b9.f,c0.f,h7) -c7=A.ek(b9.r,c0.r,h7) -b9=A.ek(b9.w,c0.w,h7) -c0=A.aW3(h5.to,h6.to,h7) -c8=A.aW4(h5.x1,h6.x1,h7) -c9=A.aW5(h5.x2,h6.x2,h7) -d0=A.aWa(h5.xr,h6.xr,h7) -d1=s?h5.y1:h6.y1 -d2=A.aWf(h5.y2,h6.y2,h7) -d3=A.aWl(h5.b_,h6.b_,h7) -d4=A.aWp(h5.bn,h6.bn,h7) -d5=A.aWR(h5.al,h6.al,h7) -d6=A.aWT(h5.aG,h6.aG,h7) -d7=A.aX6(h5.bd,h6.bd,h7) -d8=A.aXg(h5.bS,h6.bS,h7) -d9=A.aXG(h5.bk,h6.bk,h7) -e0=A.aXI(h5.B,h6.B,h7) -e1=A.aXS(h5.R,h6.R,h7) -e2=A.aY0(h5.a1,h6.a1,h7) -e3=A.aY2(h5.ar,h6.ar,h7) -e4=A.aYa(h5.az,h6.az,h7) -e5=A.aYA(h5.aJ,h6.aJ,h7) -e6=A.aZ5(h5.au,h6.au,h7) -e7=A.aZl(h5.aY,h6.aY,h7) -e8=A.aZm(h5.b9,h6.b9,h7) -e9=A.aZn(h5.c7,h6.c7,h7) -f0=A.aZy(h5.c0,h6.c0,h7) -f1=A.aZz(h5.aj,h6.aj,h7) -f2=A.aZA(h5.ag,h6.ag,h7) -f3=A.aZF(h5.aB,h6.aB,h7) -f4=A.b_3(h5.aU,h6.aU,h7) -f5=A.b_e(h5.aN,h6.aN,h7) -f6=A.b_g(h5.dH,h6.dH,h7) -f7=A.b_I(h5.dA,h6.dA,h7) -f8=A.b_K(h5.aA,h6.aA,h7) -f9=A.b_M(h5.eW,h6.eW,h7) -g0=A.b06(h5.fm,h6.fm,h7) -g1=A.b09(h5.c5,h6.c5,h7) -g2=A.b0n(h5.d8,h6.d8,h7) -g3=A.b0q(h5.h9,h6.h9,h7) -g4=A.b0x(h5.C,h6.C,h7) -g5=A.b0E(h5.ah,h6.ah,h7) -g6=A.b0R(h5.fR,h6.fR,h7) -g7=A.b0S(h5.c1,h6.c1,h7) -g8=A.b0U(h5.b6,h6.b6,h7) -s=s?h5.dq:h6.dq -g9=h5.V -g9.toString -h0=h6.V -h0.toString -h0=A.E(g9,h0,h7) -g9=h5.k1 -g9.toString -h1=h6.k1 -h1.toString -h1=A.E(g9,h1,h7) -g9=h5.dI -g9.toString -h2=h6.dI -h2.toString -h2=A.E(g9,h2,h7) -g9=h5.v -g9.toString -h3=h6.v -h3.toString -h3=A.E(g9,h3,h7) -g9=h5.Q -g9.toString -h4=h6.Q -h4.toString -return A.aEh(b6,s,b7,r,h3,b8,new A.BU(c1,c2,c3,c4,c5,c6,c7,b9),A.E(g9,h4,h7),c0,c8,c9,d0,d1,h,g,d2,d3,d4,f,q,d5,d6,e,d7,d,c,d8,d9,e0,e1,h2,e2,p,e3,e4,b,a,a0,a1,e5,b1,a2,o,e6,n,e7,e8,e9,f0,f1,f2,f3,m,l,f4,a3,a4,a5,b2,b3,f5,f6,a6,k,f7,f8,a7,f9,h1,a8,g0,g1,a9,j,g2,g3,g4,g5,b4,g6,g7,h0,g8,b5,b0,!1,i)}, -aZg(a,b){return new A.Pf(a,b,B.lb,b.a,b.b,b.c,b.d,b.e,b.f,b.r)}, -b19(a){switch(a.a){case 0:case 2:case 1:break -case 3:case 4:case 5:return B.W8}return B.zY}, -b1a(a,b,c){var s,r -if(a===b)return a -s=A.a3(a.a,b.a,c) -s.toString -r=A.a3(a.b,b.b,c) -r.toString -return new A.mR(s,r)}, -ra:function ra(a,b){this.a=a -this.b=b}, -j1:function j1(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7,c8,c9,d0,d1,d2,d3,d4,d5,d6,d7,d8,d9,e0,e1,e2,e3,e4,e5,e6,e7,e8,e9,f0,f1,f2,f3,f4,f5,f6,f7,f8,f9,g0,g1,g2,g3,g4,g5,g6,g7){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0 -_.db=a1 -_.dx=a2 -_.dy=a3 -_.fr=a4 -_.fx=a5 -_.fy=a6 -_.go=a7 -_.id=a8 -_.k1=a9 -_.k2=b0 -_.k3=b1 -_.k4=b2 -_.ok=b3 -_.p1=b4 -_.p2=b5 -_.p3=b6 -_.p4=b7 -_.R8=b8 -_.RG=b9 -_.rx=c0 -_.ry=c1 -_.to=c2 -_.x1=c3 -_.x2=c4 -_.xr=c5 -_.y1=c6 -_.y2=c7 -_.b_=c8 -_.bn=c9 -_.al=d0 -_.aG=d1 -_.bd=d2 -_.bS=d3 -_.bk=d4 -_.B=d5 -_.R=d6 -_.a1=d7 -_.ar=d8 -_.az=d9 -_.aJ=e0 -_.au=e1 -_.aY=e2 -_.b9=e3 -_.c7=e4 -_.c0=e5 -_.aj=e6 -_.ag=e7 -_.aB=e8 -_.aU=e9 -_.aN=f0 -_.dH=f1 -_.dA=f2 -_.aA=f3 -_.eW=f4 -_.fm=f5 -_.c5=f6 -_.d8=f7 -_.h9=f8 -_.C=f9 -_.ah=g0 -_.fR=g1 -_.c1=g2 -_.b6=g3 -_.dq=g4 -_.dI=g5 -_.v=g6 -_.V=g7}, -api:function api(a,b){this.a=a -this.b=b}, -apg:function apg(a,b){this.a=a -this.b=b}, -aph:function aph(a){this.a=a}, -Pf:function Pf(a,b,c,d,e,f,g,h,i,j){var _=this -_.ay=a -_.ch=b -_.w=c -_.a=d -_.b=e -_.c=f -_.d=g -_.e=h -_.f=i -_.r=j}, -xX:function xX(a,b){this.a=a -this.b=b}, -WM:function WM(a,b,c){this.a=a -this.b=b -this.$ti=c}, -mR:function mR(a,b){this.a=a -this.b=b}, -a0X:function a0X(){}, -a1F:function a1F(){}, -b0R(a2,a3,a4){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1 -if(a2===a3&&!0)return a2 -s=a2.d -if(s==null)r=a3.d==null -else r=!1 -if(r)s=null -else if(s==null)s=a3.d -else{r=a3.d -if(!(r==null)){s.toString -r.toString -s=A.aR(s,r,a4)}}r=A.E(a2.a,a3.a,a4) -q=A.nu(a2.b,a3.b,a4) -p=A.nu(a2.c,a3.c,a4) -o=A.E(a2.e,a3.e,a4) -n=t.KX.a(A.dD(a2.f,a3.f,a4)) -m=A.E(a2.r,a3.r,a4) -l=A.bp(a2.w,a3.w,a4) -k=A.E(a2.x,a3.x,a4) -j=A.E(a2.y,a3.y,a4) -i=A.E(a2.z,a3.z,a4) -h=A.bp(a2.Q,a3.Q,a4) -g=A.a3(a2.as,a3.as,a4) -f=A.E(a2.at,a3.at,a4) -e=A.bp(a2.ax,a3.ax,a4) -d=A.E(a2.ay,a3.ay,a4) -c=A.dD(a2.ch,a3.ch,a4) -b=A.E(a2.CW,a3.CW,a4) -a=A.bp(a2.cx,a3.cx,a4) -if(a4<0.5)a0=a2.cy -else a0=a3.cy -a1=A.ek(a2.db,a3.db,a4) -return new A.F9(r,q,p,s,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,A.dD(a2.dx,a3.dx,a4))}, -F9:function F9(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0 -_.db=a1 -_.dx=a2}, -a0Z:function a0Z(){}, -b0S(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h,g,f -if(a===b)return a -s=A.bp(a.a,b.a,c) -r=A.nr(a.b,b.b,c) -q=A.E(a.c,b.c,c) -p=A.E(a.d,b.d,c) -o=A.E(a.e,b.e,c) -n=A.E(a.f,b.f,c) -m=A.E(a.r,b.r,c) -l=A.E(a.w,b.w,c) -k=A.E(a.y,b.y,c) -j=A.E(a.x,b.x,c) -i=A.E(a.z,b.z,c) -h=A.E(a.Q,b.Q,c) -g=A.E(a.as,b.as,c) -f=A.nq(a.ax,b.ax,c) -return new A.Fa(s,r,q,p,o,n,m,l,j,k,i,h,g,A.a3(a.at,b.at,c),f)}, -Fa:function Fa(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o}, -a1_:function a1_(){}, -x8:function x8(){}, -app:function app(a,b){this.a=a -this.b=b}, -apq:function apq(a){this.a=a}, -apn:function apn(a,b){this.a=a -this.b=b}, -apo:function apo(a,b){this.a=a -this.b=b}, -x7:function x7(){}, -aLN(a,b,c){return new A.WK(b,null,c,B.bp,a,null)}, -apr(a,b){return new A.Fc(b,a,null)}, -b0V(){var s,r,q -if($.tb.length!==0){s=A.b($.tb.slice(0),A.W($.tb)) -for(r=s.length,q=0;q>>16&255,r.gl(r)>>>8&255,r.gl(r)&255) -break -default:p=null}switch(q.a){case 1:o=b.a -break -case 0:r=b.a -o=A.ao(0,r.gl(r)>>>16&255,r.gl(r)>>>8&255,r.gl(r)&255) -break -default:o=null}r=a.d -q=b.d -if(r!==q){n=A.E(p,o,c) -n.toString -q=A.a3(r,q,c) -q.toString -return new A.bk(n,s,B.I,q)}q=A.E(p,o,c) -q.toString -return new A.bk(q,s,B.I,r)}, -dD(a,b,c){var s,r -if(a==b)return a -s=b!=null?b.dP(a,c):null -if(s==null&&a!=null)s=a.dQ(b,c) -if(s==null)r=c<0.5?a:b -else r=s -return r}, -aJL(a,b,c){var s,r -if(a==b)return a -s=b!=null?b.dP(a,c):null -if(s==null&&a!=null)s=a.dQ(b,c) -if(s==null)r=c<0.5?a:b -else r=s -return r}, -aLK(a,b,c){var s,r,q,p,o,n,m=a instanceof A.j5?a.a:A.b([a],t.Fi),l=b instanceof A.j5?b.a:A.b([b],t.Fi),k=A.b([],t.N_),j=Math.max(m.length,l.length) -for(s=1-c,r=0;ro/m?new A.Q(o*p/m,p):new A.Q(q,m*q/o) -r=b -break -case 2:q=c.a -p=c.b -o=b.a -r=q/p>o/m?new A.Q(o,o*p/q):new A.Q(m*q/p,m) -s=c -break -case 3:q=c.a -p=c.b -o=b.a -if(q/p>o/m){r=new A.Q(o,o*p/q) -s=c}else{s=new A.Q(q,m*q/o) -r=b}break -case 4:q=c.a -p=c.b -o=b.a -if(q/p>o/m){s=new A.Q(o*p/m,p) -r=b}else{r=new A.Q(m*q/p,m) -s=c}break -case 5:r=new A.Q(Math.min(b.a,c.a),Math.min(m,c.b)) -s=r -break -case 6:n=b.a/m -q=c.b -s=m>q?new A.Q(q*n,q):b -m=c.a -if(s.a>m)s=new A.Q(m,m/n) -r=b -break -default:r=null -s=null}return new A.Ny(r,s)}, -a5b:function a5b(a,b){this.a=a -this.b=b}, -Ny:function Ny(a,b){this.a=a -this.b=b}, -aW9(a,b,c){var s,r,q,p,o -if(a===b)return a -s=A.E(a.a,b.a,c) -s.toString -r=A.kV(a.b,b.b,c) -r.toString -q=A.a3(a.c,b.c,c) -q.toString -p=A.a3(a.d,b.d,c) -p.toString -o=a.e -return new A.bv(p,o===B.y?b.e:o,s,r,q)}, -aCy(a,b,c){var s,r,q,p,o,n,m,l -if(a==null?b==null:a===b)return a -if(a==null)a=A.b([],t.V) -if(b==null)b=A.b([],t.V) -s=Math.min(a.length,b.length) -r=A.b([],t.V) -for(q=0;q>>16&255)/255,n=(p>>>8&255)/255,m=(p&255)/255,l=Math.max(o,Math.max(n,m)),k=Math.min(o,Math.min(n,m)),j=l-k,i=A.bg("hue") -if(l===0)i.b=0 -else if(l===o)i.b=60*B.d.cF((n-m)/j,6) -else if(l===n)i.b=60*((m-o)/j+2) -else if(l===m)i.b=60*((o-n)/j+4) -i.b=isNaN(i.aI())?0:i.aI() -s=i.aI() -r=(l+k)/2 -q=r===1?0:A.R(j/(1-Math.abs(2*r-1)),0,1) -return new A.B4((p>>>24&255)/255,s,q,r)}, -B4:function B4(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -nA:function nA(){}, -a6V(a,b,c){var s,r=null -if(a==b)return a -if(a==null){s=b.dP(r,c) -return s==null?b:s}if(b==null){s=a.dQ(r,c) -return s==null?a:s}if(c===0)return a -if(c===1)return b -s=b.dP(a,c) -if(s==null)s=a.dQ(b,c) -if(s==null)if(c<0.5){s=a.dQ(r,c*2) -if(s==null)s=a}else{s=b.dP(r,(c-0.5)*2) -if(s==null)s=b}return s}, -fv:function fv(){}, -ns:function ns(){}, -W5:function W5(){}, -aON(a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0 -if(b3.ga8(b3))return -s=b3.a -r=b3.c-s -q=b3.b -p=b3.d-q -o=new A.Q(r,p) -n=a9.gdg(a9) -m=a9.gce(a9) -if(a7==null)a7=B.Bc -l=A.b4y(a7,new A.Q(n,m).eB(0,b5),o) -k=l.a.a6(0,b5) -j=l.b -if(b4!==B.d9&&j.j(0,o))b4=B.d9 -i=$.ad().b1() -i.sCi(!1) -if(a4!=null)i.sVC(a4) -i.saf(0,A.aHC(0,0,0,b2)) -i.smR(a6) -i.sCf(b0) -h=j.a -g=(r-h)/2 -f=j.b -e=(p-f)/2 -p=a1.a -p=s+(g+(a8?-p:p)*g) -q+=e+a1.b*e -d=new A.y(p,q,p+h,q+f) -c=b4!==B.d9||a8 -if(c)a2.cQ(0) -q=b4===B.d9 -if(!q)a2.mw(b3) -if(a8){b=-(s+r/2) -a2.aK(0,-b,0) -a2.f2(0,-1,1) -a2.aK(0,b,0)}a=a1.aqX(k,new A.y(0,0,n,m)) -if(q)a2.lx(a9,a,d,i) -else for(s=A.b3w(b3,d,b4),r=s.length,a0=0;a00){n=-n -l=2*l -r=(n-Math.sqrt(j))/l -q=(n+Math.sqrt(j))/l -p=(c-r*b)/(q-r) -return new A.avH(r,q,b-p,p)}o=Math.sqrt(k-m)/(2*l) -s=-(n/2*l) -return new A.az7(o,s,b,(c-s*b)/o)}, -amr:function amr(a,b,c){this.a=a -this.b=b -this.c=c}, -En:function En(a,b){this.a=a -this.b=b}, -ST:function ST(){}, -rS:function rS(a,b,c){this.b=a -this.c=b -this.a=c}, -asv:function asv(a,b,c){this.a=a -this.b=b -this.c=c}, -avH:function avH(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -az7:function az7(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -TM:function TM(a,b){this.a=a -this.c=b}, -b_o(a,b,c,d,e,f,g){var s=null,r=new A.Rg(new A.Sv(s,s),B.ya,b,g,A.af(t.O5),a,f,s,A.af(t.T)) -r.aC() -r.saW(s) -r.a62(a,s,b,c,d,e,f,g) -return r}, -wc:function wc(a,b){this.a=a -this.b=b}, -Rg:function Rg(a,b,c,d,e,f,g,h,i){var _=this -_.cs=_.bV=$ -_.bG=a -_.ci=$ -_.dn=null -_.h7=b -_.jL=c -_.vI=d -_.X1=e -_.v=null -_.V=f -_.am=g -_.C$=h -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=i -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -aiK:function aiK(a){this.a=a}, -wk:function wk(){}, -ajK:function ajK(a){this.a=a}, -ajJ:function ajJ(a){this.a=a}, -FG:function FG(a,b){var _=this -_.a=a -_.aj$=0 -_.ag$=b -_.aU$=_.aB$=0 -_.aN$=!1}, -u0(a){var s=a.a,r=a.b -return new A.ar(s,s,r,r)}, -eR(a,b){var s,r,q=b==null,p=q?0:b -q=q?1/0:b -s=a==null -r=s?0:a -return new A.ar(p,q,r,s?1/0:a)}, -iF(a,b){var s,r,q=b!==1/0,p=q?b:0 -q=q?b:1/0 -s=a!==1/0 -r=s?a:0 -return new A.ar(p,q,r,s?a:1/0)}, -pX(a){return new A.ar(0,a.a,0,a.b)}, -nr(a,b,c){var s,r,q,p -if(a==b)return a -if(a==null)return b.a6(0,c) -if(b==null)return a.a6(0,1-c) -s=a.a -if(isFinite(s)){s=A.a3(s,b.a,c) -s.toString}else s=1/0 -r=a.b -if(isFinite(r)){r=A.a3(r,b.b,c) -r.toString}else r=1/0 -q=a.c -if(isFinite(q)){q=A.a3(q,b.c,c) -q.toString}else q=1/0 -p=a.d -if(isFinite(p)){p=A.a3(p,b.d,c) -p.toString}else p=1/0 -return new A.ar(s,r,q,p)}, -aHu(a){return new A.lM(a.a,a.b,a.c)}, -ar:function ar(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -a5a:function a5a(){}, -lM:function lM(a,b,c){this.a=a -this.b=b -this.c=c}, -pZ:function pZ(a,b){this.c=a -this.a=b -this.b=null}, -eS:function eS(a){this.a=a}, -A1:function A1(){}, -y_:function y_(a,b){this.a=a -this.b=b}, -H5:function H5(a,b){this.a=a -this.b=b}, -A:function A(){}, -aiM:function aiM(a,b){this.a=a -this.b=b}, -aiO:function aiO(a,b){this.a=a -this.b=b}, -aiN:function aiN(a,b){this.a=a -this.b=b}, -cU:function cU(){}, -aiL:function aiL(a,b,c){this.a=a -this.b=b -this.c=c}, -FZ:function FZ(){}, -iP:function iP(a,b,c){var _=this -_.e=null -_.cn$=a -_.ab$=b -_.a=c}, -agf:function agf(){}, -D9:function D9(a,b,c,d,e){var _=this -_.B=a -_.dG$=b -_.a3$=c -_.d7$=d -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=e -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -HP:function HP(){}, -ZQ:function ZQ(){}, -aKs(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=null,d={} -d.a=b -if(a==null)a=B.jB -s=J.X(a) -r=s.gp(a)-1 -q=A.aT(0,e,!1,t.LQ) -p=0<=r -while(!0){if(!!1)break -s.h(a,0) -o=b[0] -o.gwi(o) -break}while(!0){if(!!1)break -s.h(a,r) -n=b[-1] -n.gwi(n) -break}m=A.bg("oldKeyedChildren") -if(p){m.scM(A.m(t.D2,t.bu)) -for(l=m.a,k=0;k<=r;){j=s.h(a,k) -i=j.a -if(i!=null){h=m.b -if(h===m)A.U(A.fB(l)) -J.hv(h,i,j)}++k}p=!0}else k=0 -for(l=m.a,g=0;!1;){o=d.a[g] -if(p){f=o.gwi(o) -i=m.b -if(i===m)A.U(A.fB(l)) -j=J.aN(i,f) -if(j!=null){o.gwi(o) -j=e}}else j=e -q[g]=A.aKr(j,o);++g}s.gp(a) -while(!0){if(!!1)break -q[g]=A.aKr(s.h(a,k),d.a[g]);++g;++k}return new A.dI(q,A.W(q).i("dI<1,cL>"))}, -aKr(a,b){var s,r=a==null?A.DY(b.gwi(b),null):a,q=b.gZc(),p=A.l6() -q.ga1o() -p.k2=q.ga1o() -p.e=!0 -q.gamC(q) -s=q.gamC(q) -p.bc(B.hx,!0) -p.bc(B.yw,s) -q.gasd() -s=q.gasd() -p.bc(B.hx,!0) -p.bc(B.yy,s) -q.ga0t(q) -p.bc(B.yA,q.ga0t(q)) -q.gamo(q) -p.bc(B.yD,q.gamo(q)) -q.goI() -p.bc(B.ks,q.goI()) -q.gauj() -p.bc(B.yt,q.gauj()) -q.ga1l() -p.bc(B.Oq,q.ga1l()) -q.garu() -p.bc(B.On,q.garu()) -q.gLv(q) -p.bc(B.yr,q.gLv(q)) -q.gapc() -p.bc(B.yv,q.gapc()) -q.gapd(q) -p.bc(B.kr,q.gapd(q)) -q.gqN(q) -s=q.gqN(q) -p.bc(B.kt,!0) -p.bc(B.kp,s) -q.gaqD() -p.bc(B.Oo,q.gaqD()) -q.gwF() -p.bc(B.yq,q.gwF()) -q.gash(q) -p.bc(B.yC,q.gash(q)) -q.gaqn(q) -p.bc(B.hy,q.gaqn(q)) -q.gaql() -p.bc(B.yB,q.gaql()) -q.ga0q() -p.bc(B.yu,q.ga0q()) -q.gasj() -p.bc(B.yz,q.gasj()) -q.garK() -p.bc(B.yx,q.garK()) -q.gKQ() -p.sKQ(q.gKQ()) -q.gBa() -p.sBa(q.gBa()) -q.gauz() -s=q.gauz() -p.bc(B.ku,!0) -p.bc(B.kq,s) -q.gj5(q) -p.bc(B.ys,q.gj5(q)) -q.garv(q) -p.RG=new A.d0(q.garv(q),B.at) -p.e=!0 -q.gl(q) -p.rx=new A.d0(q.gl(q),B.at) -p.e=!0 -q.gaqM() -p.ry=new A.d0(q.gaqM(),B.at) -p.e=!0 -q.gao6() -p.to=new A.d0(q.gao6(),B.at) -p.e=!0 -q.gaqu(q) -p.x1=new A.d0(q.gaqu(q),B.at) -p.e=!0 -q.gbF() -p.b_=q.gbF() -p.e=!0 -q.glM() -p.slM(q.glM()) -q.gn4() -p.sn4(q.gn4()) -q.gCT() -p.sCT(q.gCT()) -q.gCU() -p.sCU(q.gCU()) -q.gCV() -p.sCV(q.gCV()) -q.gCS() -p.sCS(q.gCS()) -q.gL5() -p.sL5(q.gL5()) -q.gL_() -p.sL_(q.gL_()) -q.gCI(q) -p.sCI(0,q.gCI(q)) -q.gCJ(q) -p.sCJ(0,q.gCJ(q)) -q.gCR(q) -p.sCR(0,q.gCR(q)) -q.gCP() -p.sCP(q.gCP()) -q.gCN() -p.sCN(q.gCN()) -q.gCQ() -p.sCQ(q.gCQ()) -q.gCO() -p.sCO(q.gCO()) -q.gCX() -p.sCX(q.gCX()) -q.gCY() -p.sCY(q.gCY()) -q.gCK() -p.sCK(q.gCK()) -q.gL0() -p.sL0(q.gL0()) -q.gCL() -p.sCL(q.gCL()) -r.lV(0,B.jB,p) -r.sbl(0,b.gbl(b)) -r.sbL(0,b.gbL(b)) -r.dy=b.gavF() -return r}, -Mt:function Mt(){}, -Da:function Da(a,b,c,d,e,f,g){var _=this -_.v=a -_.V=b -_.am=c -_.br=d -_.e1=e -_.fS=_.eb=_.eX=_.dJ=null -_.C$=f -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=g -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -a6S:function a6S(){}, -aM6(a){var s=new A.ZR(a,A.af(t.T)) -s.aC() -return s}, -aMf(){return new A.IU($.ad().b1(),B.d0,B.c9,$.aO())}, -t6:function t6(a,b){this.a=a -this.b=b}, -aqf:function aqf(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=!0 -_.r=f}, -rF:function rF(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3){var _=this -_.ar=_.a1=_.R=_.B=null -_.az=$ -_.aJ=a -_.au=b -_.c0=_.c7=_.b9=_.aY=null -_.aj=c -_.ag=d -_.aB=e -_.aU=f -_.aN=g -_.dH=h -_.dA=i -_.aA=j -_.fm=_.eW=null -_.c5=k -_.d8=l -_.h9=m -_.C=n -_.ah=o -_.fR=p -_.c1=q -_.b6=r -_.dq=s -_.dI=a0 -_.v=a1 -_.V=a2 -_.am=a3 -_.br=a4 -_.dJ=!1 -_.eX=$ -_.eb=a5 -_.fS=0 -_.ha=a6 -_.hG=_.dr=_.f9=null -_.ou=_.mQ=$ -_.aoT=_.qS=_.eU=null -_.op=$ -_.JS=null -_.kw=a7 -_.JT=null -_.BE=_.BD=_.BC=_.JU=!1 -_.X_=null -_.X0=a8 -_.dG$=a9 -_.a3$=b0 -_.d7$=b1 -_.BG$=b2 -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=b3 -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -aiS:function aiS(a){this.a=a}, -aiR:function aiR(){}, -aiQ:function aiQ(a,b){this.a=a -this.b=b}, -aiT:function aiT(){}, -aiP:function aiP(){}, -ZR:function ZR(a,b){var _=this -_.B=a -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=b -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -oE:function oE(){}, -IU:function IU(a,b,c,d){var _=this -_.r=a -_.x=_.w=null -_.y=b -_.z=c -_.aj$=0 -_.ag$=d -_.aU$=_.aB$=0 -_.aN$=!1}, -FP:function FP(a,b,c){var _=this -_.r=!0 -_.w=!1 -_.x=a -_.y=$ -_.Q=_.z=null -_.as=b -_.ax=_.at=null -_.aj$=0 -_.ag$=c -_.aU$=_.aB$=0 -_.aN$=!1}, -xy:function xy(a,b){var _=this -_.r=a -_.aj$=0 -_.ag$=b -_.aU$=_.aB$=0 -_.aN$=!1}, -HR:function HR(){}, -HS:function HS(){}, -ZS:function ZS(){}, -Dc:function Dc(a,b){var _=this -_.B=a -_.R=$ -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=b -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -aNy(a,b,c){switch(a.a){case 0:switch(b){case B.p:return!0 -case B.a4:return!1 -case null:case void 0:return null}break -case 1:switch(c){case B.cT:return!0 -case B.l2:return!1 -case null:case void 0:return null}break}}, -NC:function NC(a,b){this.a=a -this.b=b}, -hD:function hD(a,b,c){var _=this -_.f=_.e=null -_.cn$=a -_.ab$=b -_.a=c}, -P8:function P8(a,b){this.a=a -this.b=b}, -r3:function r3(a,b){this.a=a -this.b=b}, -q9:function q9(a,b){this.a=a -this.b=b}, -Dd:function Dd(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){var _=this -_.B=a -_.R=b -_.a1=c -_.ar=d -_.az=e -_.aJ=f -_.au=g -_.aY=0 -_.b9=h -_.c7=i -_.aoY$=j -_.avt$=k -_.dG$=l -_.a3$=m -_.d7$=n -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=o -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -aiX:function aiX(){}, -aiV:function aiV(){}, -aiW:function aiW(){}, -aiU:function aiU(){}, -auQ:function auQ(a,b,c){this.a=a -this.b=b -this.c=c}, -ZU:function ZU(){}, -ZV:function ZV(){}, -HT:function HT(){}, -Df:function Df(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r){var _=this -_.R=_.B=null -_.a1=a -_.ar=b -_.az=c -_.aJ=d -_.au=e -_.aY=null -_.b9=f -_.c7=g -_.c0=h -_.aj=i -_.ag=j -_.aB=k -_.aU=l -_.aN=m -_.dH=n -_.dA=o -_.aA=p -_.eW=q -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=r -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -af(a){return new A.OS(a.i("OS<0>"))}, -aZK(a){return new A.QD(a,A.m(t.S,t.M),A.af(t.kd))}, -aZD(a){return new A.kU(a,A.m(t.S,t.M),A.af(t.kd))}, -aLn(a){return new A.te(a,B.e,A.m(t.S,t.M),A.af(t.kd))}, -aDN(){return new A.Cq(B.e,A.m(t.S,t.M),A.af(t.kd))}, -aHi(a){return new A.zs(a,B.cZ,A.m(t.S,t.M),A.af(t.kd))}, -aDu(a,b){return new A.Bz(a,b,A.m(t.S,t.M),A.af(t.kd))}, -aIL(a){var s,r,q=new A.b6(new Float64Array(16)) -q.e6() -for(s=a.length-1;s>0;--s){r=a[s] -if(r!=null)r.qh(a[s-1],q)}return q}, -aam(a,b,c,d){var s,r -if(a==null||b==null)return null -if(a===b)return a -s=a.z -r=b.z -if(sr){c.push(a.r) -return A.aam(a.r,b,c,d)}c.push(a.r) -d.push(b.r) -return A.aam(a.r,b.r,c,d)}, -zi:function zi(a,b,c){this.a=a -this.b=b -this.$ti=c}, -KP:function KP(a,b){this.a=a -this.$ti=b}, -em:function em(){}, -aeF:function aeF(a,b){this.a=a -this.b=b}, -aeG:function aeG(a,b){this.a=a -this.b=b}, -OS:function OS(a){this.a=null -this.$ti=a}, -QD:function QD(a,b,c){var _=this -_.ax=a -_.ay=null -_.CW=_.ch=!1 -_.a=b -_.b=0 -_.d=_.c=!1 -_.e=c -_.f=0 -_.r=null -_.w=!0 -_.y=_.x=null -_.z=0 -_.at=_.as=_.Q=null}, -eW:function eW(){}, -kU:function kU(a,b,c){var _=this -_.k3=a -_.ay=_.ax=null -_.a=b -_.b=0 -_.d=_.c=!1 -_.e=c -_.f=0 -_.r=null -_.w=!0 -_.y=_.x=null -_.z=0 -_.at=_.as=_.Q=null}, -ui:function ui(a,b,c){var _=this -_.k3=null -_.k4=a -_.ay=_.ax=null -_.a=b -_.b=0 -_.d=_.c=!1 -_.e=c -_.f=0 -_.r=null -_.w=!0 -_.y=_.x=null -_.z=0 -_.at=_.as=_.Q=null}, -ug:function ug(a,b,c){var _=this -_.k3=null -_.k4=a -_.ay=_.ax=null -_.a=b -_.b=0 -_.d=_.c=!1 -_.e=c -_.f=0 -_.r=null -_.w=!0 -_.y=_.x=null -_.z=0 -_.at=_.as=_.Q=null}, -uf:function uf(a,b,c){var _=this -_.k3=null -_.k4=a -_.ay=_.ax=null -_.a=b -_.b=0 -_.d=_.c=!1 -_.e=c -_.f=0 -_.r=null -_.w=!0 -_.y=_.x=null -_.z=0 -_.at=_.as=_.Q=null}, -te:function te(a,b,c,d){var _=this -_.b_=a -_.al=_.bn=null -_.aG=!0 -_.k3=b -_.ay=_.ax=null -_.a=c -_.b=0 -_.d=_.c=!1 -_.e=d -_.f=0 -_.r=null -_.w=!0 -_.y=_.x=null -_.z=0 -_.at=_.as=_.Q=null}, -Cq:function Cq(a,b,c){var _=this -_.b_=null -_.k3=a -_.ay=_.ax=null -_.a=b -_.b=0 -_.d=_.c=!1 -_.e=c -_.f=0 -_.r=null -_.w=!0 -_.y=_.x=null -_.z=0 -_.at=_.as=_.Q=null}, -E2:function E2(a,b){var _=this -_.ay=_.ax=_.ok=_.k4=_.k3=null -_.a=a -_.b=0 -_.d=_.c=!1 -_.e=b -_.f=0 -_.r=null -_.w=!0 -_.y=_.x=null -_.z=0 -_.at=_.as=_.Q=null}, -zs:function zs(a,b,c,d){var _=this -_.k3=a -_.k4=b -_.ay=_.ax=null -_.a=c -_.b=0 -_.d=_.c=!1 -_.e=d -_.f=0 -_.r=null -_.w=!0 -_.y=_.x=null -_.z=0 -_.at=_.as=_.Q=null}, -Bx:function Bx(){var _=this -_.b=_.a=null -_.c=!1 -_.d=null}, -Bz:function Bz(a,b,c,d){var _=this -_.k3=a -_.k4=b -_.ay=_.ax=null -_.a=c -_.b=0 -_.d=_.c=!1 -_.e=d -_.f=0 -_.r=null -_.w=!0 -_.y=_.x=null -_.z=0 -_.at=_.as=_.Q=null}, -AV:function AV(a,b,c,d,e,f){var _=this -_.k3=a -_.k4=b -_.ok=c -_.p1=d -_.p4=_.p3=_.p2=null -_.R8=!0 -_.ay=_.ax=null -_.a=e -_.b=0 -_.d=_.c=!1 -_.e=f -_.f=0 -_.r=null -_.w=!0 -_.y=_.x=null -_.z=0 -_.at=_.as=_.Q=null}, -zh:function zh(a,b,c,d,e,f){var _=this -_.k3=a -_.k4=b -_.ok=c -_.ay=_.ax=null -_.a=d -_.b=0 -_.d=_.c=!1 -_.e=e -_.f=0 -_.r=null -_.w=!0 -_.y=_.x=null -_.z=0 -_.at=_.as=_.Q=null -_.$ti=f}, -XJ:function XJ(){}, -kN:function kN(a,b,c){this.cn$=a -this.ab$=b -this.a=c}, -Di:function Di(a,b,c,d,e){var _=this -_.B=a -_.dG$=b -_.a3$=c -_.d7$=d -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=e -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -aj8:function aj8(a){this.a=a}, -aj9:function aj9(a){this.a=a}, -aj4:function aj4(a){this.a=a}, -aj5:function aj5(a){this.a=a}, -aj6:function aj6(a){this.a=a}, -aj7:function aj7(a){this.a=a}, -aj2:function aj2(a){this.a=a}, -aj3:function aj3(a){this.a=a}, -ZW:function ZW(){}, -ZX:function ZX(){}, -aZq(a,b){var s -if(a==null)return!0 -s=a.b -if(t.ks.b(b))return!1 -return t.ge.b(s)||t.PB.b(b)||!s.gbv(s).j(0,b.gbv(b))}, -aZp(a5){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4=a5.d -if(a4==null)a4=a5.c -s=a5.a -r=a5.b -q=a4.grO() -p=a4.gfV(a4) -o=a4.gbh() -n=a4.gcp(a4) -m=a4.giY(a4) -l=a4.gbv(a4) -k=a4.gqC() -j=a4.gdY(a4) -a4.gwF() -i=a4.gD9() -h=a4.gwS() -g=a4.gcB() -f=a4.gJD() -e=a4.gq(a4) -d=a4.gLr() -c=a4.gLu() -b=a4.gLt() -a=a4.gLs() -a0=a4.grr(a4) -a1=a4.gLQ() -s.N(0,new A.ag9(r,A.aZS(j,k,m,g,f,a4.gBo(),0,n,!1,a0,o,l,h,i,d,a,b,c,e,a4.gnE(),a1,p,q).bA(a4.gbL(a4)),s)) -q=A.p(r).i("bm<1>") -p=q.i("aL") -a2=A.a8(new A.aL(new A.bm(r,q),new A.aga(s),p),!0,p.i("q.E")) -p=a4.grO() -q=a4.gfV(a4) -a1=a4.gbh() -e=a4.gcp(a4) -c=a4.giY(a4) -b=a4.gbv(a4) -a=a4.gqC() -d=a4.gdY(a4) -a4.gwF() -i=a4.gD9() -h=a4.gwS() -l=a4.gcB() -o=a4.gJD() -a0=a4.gq(a4) -n=a4.gLr() -f=a4.gLu() -g=a4.gLt() -m=a4.gLs() -k=a4.grr(a4) -j=a4.gLQ() -a3=A.aZQ(d,a,c,l,o,a4.gBo(),0,e,!1,k,a1,b,h,i,n,m,g,f,a0,a4.gnE(),j,q,p).bA(a4.gbL(a4)) -for(q=A.W(a2).i("bN<1>"),p=new A.bN(a2,q),p=new A.bz(p,p.gp(p),q.i("bz")),q=q.i("am.E");p.u();){o=p.d -if(o==null)o=q.a(o) -if(o.gMb()&&o.gL1(o)!=null){n=o.gL1(o) -n.toString -n.$1(a3.bA(r.h(0,o)))}}}, -Yo:function Yo(a,b){this.a=a -this.b=b}, -Yp:function Yp(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -PF:function PF(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=!1 -_.aj$=0 -_.ag$=d -_.aU$=_.aB$=0 -_.aN$=!1}, -agb:function agb(){}, -age:function age(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -agd:function agd(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -agc:function agc(a){this.a=a}, -ag9:function ag9(a,b,c){this.a=a -this.b=b -this.c=c}, -aga:function aga(a){this.a=a}, -a28:function a28(){}, -aJQ(a,b,c){var s,r,q=a.ch,p=t.sH.a(q.a) -if(p==null){s=a.rN(null) -q.saw(0,s) -q=s}else{p.Lz() -a.rN(p) -q=p}a.db=!1 -r=new A.vM(q,a.gkP()) -b=r -a.Hb(b,B.e) -b.y0()}, -aZH(a){var s=a.ch.a -s.toString -a.rN(t.gY.a(s)) -a.db=!1}, -b_s(a){a.P0()}, -b_t(a){a.ahg()}, -aMb(a,b){if(a==null)return null -if(a.ga8(a)||b.Yq())return B.u -return A.aJq(b,a)}, -b25(a,b,c,d){var s,r,q=b.gba(b) -q.toString -for(s=q;s!==a;s=q,b=r){s.d4(b,c) -q=s.gba(s) -q.toString -r=b.gba(b) -r.toString}a.d4(b,c) -a.d4(b,d)}, -aMa(a,b){if(a==null)return b -if(b==null)return a -return a.ed(b)}, -cE:function cE(){}, -vM:function vM(a,b){var _=this -_.a=a -_.b=b -_.e=_.d=_.c=null}, -ahf:function ahf(a,b,c){this.a=a -this.b=b -this.c=c}, -ahe:function ahe(a,b,c){this.a=a -this.b=b -this.c=c}, -ahd:function ahd(a,b,c){this.a=a -this.b=b -this.c=c}, -a6u:function a6u(){}, -CM:function CM(a,b,c,d,e,f,g,h){var _=this -_.b=a -_.c=b -_.d=c -_.e=null -_.f=!1 -_.r=d -_.y=_.w=!1 -_.z=e -_.Q=f -_.as=!1 -_.at=null -_.ax=0 -_.ay=!1 -_.ch=g -_.CW=h -_.cx=null}, -ahB:function ahB(){}, -ahA:function ahA(){}, -ahC:function ahC(){}, -ahD:function ahD(){}, -t:function t(){}, -ajf:function ajf(a){this.a=a}, -aji:function aji(a,b,c){this.a=a -this.b=b -this.c=c}, -ajg:function ajg(a){this.a=a}, -ajh:function ajh(){}, -ajc:function ajc(a,b,c,d,e,f,g,h,i,j,k){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k}, -ajd:function ajd(a,b,c){this.a=a -this.b=b -this.c=c}, -aje:function aje(a,b){this.a=a -this.b=b}, -aD:function aD(){}, -dJ:function dJ(){}, -aj:function aj(){}, -wb:function wb(){}, -aiJ:function aiJ(a){this.a=a}, -axi:function axi(){}, -Vn:function Vn(a,b,c){this.b=a -this.c=b -this.a=c}, -hs:function hs(){}, -a_l:function a_l(a,b,c){var _=this -_.e=a -_.b=b -_.c=null -_.a=c}, -GU:function GU(a,b,c){var _=this -_.e=a -_.b=b -_.c=null -_.a=c}, -tF:function tF(a,b,c,d,e,f){var _=this -_.e=a -_.f=b -_.w=_.r=!1 -_.x=c -_.y=d -_.z=!1 -_.b=e -_.c=null -_.a=f}, -a_F:function a_F(){var _=this -_.b=_.a=null -_.d=_.c=$ -_.e=!1}, -a_0:function a_0(){}, -b_p(a,b,c){var s,r,q,p,o=a.b -o.toString -s=t.ot.a(o).b -if(s==null)o=B.Nq -else{o=c.$2(a,new A.ar(0,b,0,1/0)) -r=s.b -q=s.c -$label0$0:{if(B.hi===r||B.hj===r||B.cp===r||B.hl===r||B.hk===r){p=null -break $label0$0}if(B.hh===r){q.toString -p=a.no(q) -break $label0$0}p=null}q=new A.vV(o,r,p,q) -o=q}return o}, -aEF(a,b){var s=a.a,r=b.a -if(sr)return-1 -else{s=a.b -if(s===b.b)return 0 -else return s===B.aa?1:-1}}, -ms:function ms(a,b){this.b=a -this.a=b}, -j0:function j0(a,b){var _=this -_.b=_.a=null -_.cn$=a -_.ab$=b}, -Rt:function Rt(){}, -aj0:function aj0(a){this.a=a}, -Dm:function Dm(a,b,c,d,e,f,g,h,i){var _=this -_.B=a -_.az=_.ar=_.a1=_.R=null -_.aJ=b -_.au=c -_.aY=d -_.b9=null -_.c7=!1 -_.aB=_.ag=_.aj=_.c0=null -_.BG$=e -_.dG$=f -_.a3$=g -_.d7$=h -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=i -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -ajn:function ajn(){}, -ajo:function ajo(){}, -ajm:function ajm(){}, -ajl:function ajl(){}, -ajj:function ajj(){}, -ajk:function ajk(a,b){this.a=a -this.b=b}, -mZ:function mZ(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.r=_.f=_.e=_.d=null -_.w=$ -_.x=null -_.aj$=0 -_.ag$=d -_.aU$=_.aB$=0 -_.aN$=!1}, -I0:function I0(){}, -a_1:function a_1(){}, -a_2:function a_2(){}, -IW:function IW(){}, -a2w:function a2w(){}, -a2x:function a2x(){}, -aKq(a){var s=new A.we(a,null,A.af(t.T)) -s.aC() -s.saW(null) -return s}, -aj1(a,b){if(b==null)return a -return B.d.e9(a/b)*b}, -b_q(a,b,c,d,e,f){var s=b==null?B.aG:b -s=new A.Dj(!0,c,e,d,a,s,null,A.af(t.T)) -s.aC() -s.saW(null) -return s}, -RC:function RC(){}, -fj:function fj(){}, -B6:function B6(a,b){this.a=a -this.b=b}, -Dn:function Dn(){}, -we:function we(a,b,c){var _=this -_.v=a -_.C$=b -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=c -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -Rv:function Rv(a,b,c,d){var _=this -_.v=a -_.V=b -_.C$=c -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=d -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -Dh:function Dh(a,b,c,d){var _=this -_.v=a -_.V=b -_.C$=c -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=d -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -Rx:function Rx(a,b,c,d,e){var _=this -_.v=a -_.V=b -_.am=c -_.C$=d -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=e -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -D7:function D7(){}, -Rf:function Rf(a,b,c,d,e,f){var _=this -_.qU$=a -_.K_$=b -_.qV$=c -_.K0$=d -_.C$=e -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=f -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -RE:function RE(a,b,c,d){var _=this -_.v=a -_.V=b -_.C$=c -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=d -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -Rh:function Rh(a,b,c,d){var _=this -_.v=a -_.V=b -_.C$=c -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=d -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -A6:function A6(){}, -oQ:function oQ(a,b){this.b=a -this.c=b}, -yk:function yk(){}, -Rl:function Rl(a,b,c,d){var _=this -_.v=a -_.V=null -_.am=b -_.e1=_.br=null -_.C$=c -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=d -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -Rk:function Rk(a,b,c,d,e,f){var _=this -_.bG=a -_.ci=b -_.v=c -_.V=null -_.am=d -_.e1=_.br=null -_.C$=e -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=f -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -Rj:function Rj(a,b,c,d){var _=this -_.v=a -_.V=null -_.am=b -_.e1=_.br=null -_.C$=c -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=d -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -I1:function I1(){}, -Ry:function Ry(a,b,c,d,e,f,g,h,i){var _=this -_.JY=a -_.JZ=b -_.bG=c -_.ci=d -_.dn=e -_.v=f -_.V=null -_.am=g -_.e1=_.br=null -_.C$=h -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=i -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -ajp:function ajp(a,b){this.a=a -this.b=b}, -Rz:function Rz(a,b,c,d,e,f,g){var _=this -_.bG=a -_.ci=b -_.dn=c -_.v=d -_.V=null -_.am=e -_.e1=_.br=null -_.C$=f -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=g -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -ajq:function ajq(a,b){this.a=a -this.b=b}, -My:function My(a,b){this.a=a -this.b=b}, -Ro:function Ro(a,b,c,d,e){var _=this -_.v=null -_.V=a -_.am=b -_.br=c -_.C$=d -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=e -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -RI:function RI(a,b,c){var _=this -_.am=_.V=_.v=null -_.br=a -_.dJ=_.e1=null -_.C$=b -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=c -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -ajG:function ajG(a){this.a=a}, -Rr:function Rr(a,b,c,d){var _=this -_.v=a -_.V=b -_.C$=c -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=d -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -aiZ:function aiZ(a){this.a=a}, -RA:function RA(a,b,c,d,e,f,g,h,i,j,k,l){var _=this -_.cI=a -_.e_=b -_.bV=c -_.cs=d -_.bG=e -_.ci=f -_.dn=g -_.h7=h -_.jL=i -_.v=j -_.C$=k -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=l -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -Dj:function Dj(a,b,c,d,e,f,g,h){var _=this -_.cI=a -_.e_=b -_.bV=c -_.cs=d -_.bG=e -_.ci=!0 -_.v=f -_.C$=g -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=h -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -RD:function RD(a,b){var _=this -_.V=_.v=0 -_.C$=a -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=b -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -De:function De(a,b,c,d){var _=this -_.v=a -_.V=b -_.C$=c -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=d -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -Dk:function Dk(a,b,c){var _=this -_.v=a -_.C$=b -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=c -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -D5:function D5(a,b,c,d){var _=this -_.v=a -_.V=b -_.C$=c -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=d -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -mz:function mz(a,b,c){var _=this -_.bG=_.cs=_.bV=_.e_=_.cI=null -_.v=a -_.C$=b -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=c -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -Do:function Do(a,b,c,d,e,f,g,h){var _=this -_.v=a -_.V=b -_.am=c -_.br=d -_.e1=e -_.ha=_.fS=_.eb=_.eX=_.dJ=null -_.f9=f -_.C$=g -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=h -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -Ri:function Ri(a,b,c){var _=this -_.v=a -_.C$=b -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=c -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -Rw:function Rw(a,b){var _=this -_.C$=a -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=b -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -Rp:function Rp(a,b,c){var _=this -_.v=a -_.C$=b -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=c -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -Rs:function Rs(a,b,c){var _=this -_.v=a -_.C$=b -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=c -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -Ru:function Ru(a,b,c){var _=this -_.v=a -_.V=null -_.C$=b -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=c -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -Rq:function Rq(a,b,c,d,e,f,g){var _=this -_.v=a -_.V=b -_.am=c -_.br=d -_.e1=e -_.C$=f -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=g -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -aiY:function aiY(a){this.a=a}, -D8:function D8(a,b,c,d,e){var _=this -_.v=a -_.V=b -_.C$=c -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=d -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null -_.$ti=e}, -ZJ:function ZJ(){}, -I2:function I2(){}, -I3:function I3(){}, -aKD(a,b){var s -if(a.t(0,b))return B.aK -s=b.b -if(sa.d)return B.b5 -return b.a>=a.c?B.b5:B.b6}, -b_O(a,b,c){var s,r -if(a.t(0,b))return b -s=b.b -r=a.b -if(!(s<=r))s=s<=a.d&&b.a<=a.a -else s=!0 -if(s)return c===B.p?new A.k(a.a,r):new A.k(a.c,r) -else{s=a.d -return c===B.p?new A.k(a.c,s):new A.k(a.a,s)}}, -oN:function oN(a,b){this.a=a -this.b=b}, -eJ:function eJ(){}, -Sf:function Sf(){}, -DW:function DW(a,b){this.a=a -this.b=b}, -x2:function x2(a,b){this.a=a -this.b=b}, -akV:function akV(){}, -zV:function zV(a){this.a=a}, -rT:function rT(a,b){this.b=a -this.a=b}, -wv:function wv(a,b){this.a=a -this.b=b}, -DX:function DX(a,b){this.a=a -this.b=b}, -oM:function oM(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -rU:function rU(a,b,c){this.a=a -this.b=b -this.c=c}, -F2:function F2(a,b){this.a=a -this.b=b}, -rH:function rH(){}, -ajr:function ajr(a,b,c){this.a=a -this.b=b -this.c=c}, -Dl:function Dl(a,b,c,d){var _=this -_.v=null -_.V=a -_.am=b -_.C$=c -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=d -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -Re:function Re(){}, -RB:function RB(a,b,c,d,e,f){var _=this -_.bV=a -_.cs=b -_.v=null -_.V=c -_.am=d -_.C$=e -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=f -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -Rm:function Rm(a,b,c,d,e,f,g,h){var _=this -_.bV=a -_.cs=b -_.bG=c -_.ci=d -_.v=null -_.V=e -_.am=f -_.C$=g -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=h -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -alV:function alV(){}, -Db:function Db(a,b,c){var _=this -_.v=a -_.C$=b -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=c -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -I5:function I5(){}, -lD(a,b){switch(b.a){case 0:return a -case 1:return A.aO8(a)}}, -b4z(a,b){switch(b.a){case 0:return a -case 1:return A.b5G(a)}}, -t_(a,b,c,d,e,f,g,h,i){var s=d==null?f:d,r=c==null?f:c,q=a==null?d:a -if(q==null)q=f -return new A.SA(h,g,f,s,e,r,f>0,b,i,q)}, -O7:function O7(a,b){this.a=a -this.b=b}, -oR:function oR(a,b,c,d,e,f,g,h,i,j,k,l){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l}, -SA:function SA(a,b,c,d,e,f,g,h,i,j){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.r=f -_.w=g -_.x=h -_.y=i -_.z=j}, -wF:function wF(a,b,c){this.a=a -this.b=b -this.c=c}, -SB:function SB(a,b,c){var _=this -_.c=a -_.d=b -_.a=c -_.b=null}, -oS:function oS(){}, -mH:function mH(a,b){this.cn$=a -this.ab$=b -this.a=null}, -oT:function oT(a){this.a=a}, -mI:function mI(a,b,c){this.cn$=a -this.ab$=b -this.a=c}, -dn:function dn(){}, -ajs:function ajs(){}, -ajt:function ajt(a,b){this.a=a -this.b=b}, -a_W:function a_W(){}, -a_X:function a_X(){}, -a0_:function a0_(){}, -RG:function RG(a,b,c,d,e,f){var _=this -_.al=a -_.aG=b -_.bd=$ -_.bS=!0 -_.dG$=c -_.a3$=d -_.d7$=e -_.fx=null -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=f -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -aju:function aju(a,b,c){this.a=a -this.b=b -this.c=c}, -kL:function kL(){}, -ajy:function ajy(){}, -l9:function l9(a,b,c){var _=this -_.b=null -_.c=!1 -_.vQ$=a -_.cn$=b -_.ab$=c -_.a=null}, -wf:function wf(){}, -ajv:function ajv(a,b,c){this.a=a -this.b=b -this.c=c}, -ajx:function ajx(a,b){this.a=a -this.b=b}, -ajw:function ajw(){}, -I7:function I7(){}, -a_5:function a_5(){}, -a_6:function a_6(){}, -a_Y:function a_Y(){}, -a_Z:function a_Z(){}, -Dp:function Dp(){}, -RH:function RH(a,b,c,d){var _=this -_.c5=null -_.d8=a -_.h9=b -_.C$=c -_.fx=null -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=d -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -a_4:function a_4(){}, -b_m(a,b){return new A.Rd(a.a-b.a,a.b-b.b,b.c-a.c,b.d-a.d)}, -b_u(a,b,c,d,e){var s=new A.wg(a,e,d,c,A.af(t.O5),0,null,null,A.af(t.T)) -s.aC() -s.K(0,b) -return s}, -rI(a,b){var s,r,q,p -for(s=t.Q,r=a,q=0;r!=null;){p=r.b -p.toString -s.a(p) -if(!p.gCl())q=Math.max(q,A.lE(b.$1(r))) -r=p.ab$}return q}, -aKt(a,b,c,d){var s,r,q,p,o,n=b.w -if(n!=null&&b.f!=null){s=b.f -s.toString -n.toString -r=B.dF.xa(c.a-s-n)}else{n=b.x -r=n!=null?B.dF.xa(n):B.dF}n=b.e -if(n!=null&&b.r!=null){s=b.r -s.toString -n.toString -r=r.Dt(c.b-s-n)}else{n=b.y -if(n!=null)r=r.Dt(n)}a.bz(r,!0) -q=b.w -if(!(q!=null)){n=b.f -q=n!=null?c.a-n-a.gq(a).a:d.o_(t.EP.a(c.Z(0,a.gq(a)))).a}p=(q<0||q+a.gq(a).a>c.a)&&!0 -o=b.e -if(!(o!=null)){n=b.r -o=n!=null?c.b-n-a.gq(a).b:d.o_(t.EP.a(c.Z(0,a.gq(a)))).b}if(o<0||o+a.gq(a).b>c.b)p=!0 -b.a=new A.k(q,o) -return p}, -Rd:function Rd(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -e2:function e2(a,b,c){var _=this -_.y=_.x=_.w=_.r=_.f=_.e=null -_.cn$=a -_.ab$=b -_.a=c}, -Ep:function Ep(a,b){this.a=a -this.b=b}, -wg:function wg(a,b,c,d,e,f,g,h,i){var _=this -_.B=!1 -_.R=null -_.a1=a -_.ar=b -_.az=c -_.aJ=d -_.au=e -_.dG$=f -_.a3$=g -_.d7$=h -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=i -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -ajC:function ajC(a){this.a=a}, -ajA:function ajA(a){this.a=a}, -ajB:function ajB(a){this.a=a}, -ajz:function ajz(a){this.a=a}, -Dg:function Dg(a,b,c,d,e,f,g,h,i,j){var _=this -_.ha=a -_.B=!1 -_.R=null -_.a1=b -_.ar=c -_.az=d -_.aJ=e -_.au=f -_.dG$=g -_.a3$=h -_.d7$=i -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=j -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -aj_:function aj_(a,b,c){this.a=a -this.b=b -this.c=c}, -a_7:function a_7(){}, -a_8:function a_8(){}, -lg:function lg(a){this.b=null -this.a=a}, -EE:function EE(){}, -NB:function NB(){}, -Ta:function Ta(a,b){this.a=a -this.b=b}, -wh:function wh(a,b,c,d,e,f,g,h,i,j,k,l){var _=this -_.B=a -_.R=b -_.a1=c -_.ar=d -_.az=e -_.aJ=f -_.au=g -_.b9=_.aY=null -_.c7=h -_.c0=i -_.aj=j -_.ag=null -_.aB=k -_.aU=null -_.aN=$ -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=l -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -ajE:function ajE(){}, -ajF:function ajF(a,b,c){this.a=a -this.b=b -this.c=c}, -aL2(a,b){var s=new A.bk(a,b,B.I,-1) -return new A.T8(s,s,s,s,s,s,B.am)}, -T8:function T8(a,b,c,d,e,f,g){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g}, -nj:function nj(a,b){this.a=a -this.b=b}, -Ud:function Ud(a,b){this.a=a -this.b=b}, -RJ:function RJ(a,b,c,d,e){var _=this -_.fx=a -_.fy=b -_.go=c -_.k1=null -_.C$=d -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=e -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -a_a:function a_a(){}, -b_n(a){var s -for(s=t.NW;a!=null;){if(s.b(a))return a -a=a.gba(a)}return null}, -aKu(a,b,c,d,e,f){var s,r,q,p,o,n,m -if(b==null)return e -s=f.pc(b,0,e) -r=f.pc(b,1,e) -q=d.at -q.toString -p=s.a -o=r.a -if(pp)n=s -else{if(!(q0)return a>=1e5 -return!0}, -xP:function xP(a){this.a=a -this.b=null}, -rP:function rP(a,b){this.a=a -this.b=b}, -aho:function aho(a){this.a=a}, -f4:function f4(){}, -akq:function akq(a){this.a=a}, -aks:function aks(a){this.a=a}, -akt:function akt(a,b){this.a=a -this.b=b}, -aku:function aku(a,b){this.a=a -this.b=b}, -akp:function akp(a){this.a=a}, -akr:function akr(a){this.a=a}, -aEi(){var s=new A.t9(new A.b3(new A.ae($.ai,t.c),t.h)) -s.TJ() -return s}, -x6:function x6(a,b){var _=this -_.a=null -_.b=!1 -_.c=null -_.d=a -_.e=null -_.f=b -_.r=$}, -t9:function t9(a){this.a=a -this.c=this.b=null}, -apk:function apk(a){this.a=a}, -F8:function F8(a){this.a=a}, -Sg:function Sg(){}, -alc:function alc(a){this.a=a}, -aHQ(a){var s=$.aHO.h(0,a) -if(s==null){s=$.aHP -$.aHP=s+1 -$.aHO.m(0,a,s) -$.aHN.m(0,s,a)}return s}, -b_P(a,b){var s -if(a.length!==b.length)return!1 -for(s=0;s=0){q.S(r,0,p).split("\n") -q.bK(r,p+2) -n.push(new A.BA())}else n.push(new A.BA())}return n}, -b_S(a){switch(a){case"AppLifecycleState.resumed":return B.ik -case"AppLifecycleState.inactive":return B.lA -case"AppLifecycleState.hidden":return B.lB -case"AppLifecycleState.paused":return B.il -case"AppLifecycleState.detached":return B.f4}return null}, -wz:function wz(){}, -alt:function alt(a){this.a=a}, -als:function als(a){this.a=a}, -asR:function asR(){}, -asS:function asS(a){this.a=a}, -asT:function asT(a){this.a=a}, -a5g:function a5g(){}, -zY(a){var s=0,r=A.I(t.H) -var $async$zY=A.D(function(b,c){if(b===1)return A.F(c,r) -while(true)switch(s){case 0:s=2 -return A.K(B.b2.cZ("Clipboard.setData",A.l(["text",a.a],t.N,t.z),t.H),$async$zY) -case 2:return A.G(null,r)}}) -return A.H($async$zY,r)}, -a6j(a){var s=0,r=A.I(t.VD),q,p -var $async$a6j=A.D(function(b,c){if(b===1)return A.F(c,r) -while(true)switch(s){case 0:s=3 -return A.K(B.b2.cZ("Clipboard.getData",a,t.a),$async$a6j) -case 3:p=c -if(p==null){q=null -s=1 -break}q=new A.q3(A.aQ(J.aN(p,"text"))) -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$a6j,r)}, -a6k(){var s=0,r=A.I(t.y),q,p -var $async$a6k=A.D(function(a,b){if(a===1)return A.F(b,r) -while(true)switch(s){case 0:s=3 -return A.K(B.b2.cZ("Clipboard.hasStrings","text/plain",t.a),$async$a6k) -case 3:p=b -if(p==null){q=!1 -s=1 -break}q=A.fb(J.aN(p,"value")) -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$a6k,r)}, -q3:function q3(a){this.a=a}, -aI6(a,b,c){a.addEventListener(b,c)}, -aCY(a){var s=a.status -return s==null?null:B.d.ac(s)}, -aYT(a){var s,r,q=a.c,p=B.KT.h(0,q) -if(p==null)p=new A.r(q) -q=a.d -s=B.L7.h(0,q) -if(s==null)s=new A.i(q) -r=a.a -switch(a.b.a){case 0:return new A.qV(p,s,a.e,r,a.f) -case 1:return new A.o9(p,s,null,r,a.f) -case 2:return new A.Bw(p,s,a.e,r,!1)}}, -vm:function vm(a,b,c){this.c=a -this.a=b -this.b=c}, -o7:function o7(){}, -qV:function qV(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -o9:function o9(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -Bw:function Bw(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -abP:function abP(a,b,c){var _=this -_.a=a -_.b=b -_.c=c -_.d=!1 -_.e=null}, -OL:function OL(a,b){this.a=a -this.b=b}, -Bv:function Bv(a,b){this.a=a -this.b=b}, -OM:function OM(a,b,c,d){var _=this -_.a=null -_.b=a -_.c=b -_.d=null -_.e=c -_.f=d}, -XG:function XG(){}, -aeA:function aeA(a,b,c){this.a=a -this.b=b -this.c=c}, -aeB:function aeB(){}, -i:function i(a){this.a=a}, -r:function r(a){this.a=a}, -XH:function XH(){}, -e9(a,b,c,d){return new A.ov(a,c,b,d)}, -aDG(a){return new A.C0(a)}, -kQ:function kQ(a,b){this.a=a -this.b=b}, -ov:function ov(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -C0:function C0(a){this.a=a}, -amP:function amP(){}, -ae9:function ae9(){}, -aeb:function aeb(){}, -Er:function Er(){}, -amw:function amw(a,b){this.a=a -this.b=b}, -amy:function amy(){}, -b1v(a){var s,r,q -for(s=A.p(a),s=s.i("@<1>").a5(s.z[1]),r=new A.bP(J.as(a.a),a.b,s.i("bP<1,2>")),s=s.z[1];r.u();){q=r.a -if(q==null)q=s.a(q) -if(!q.j(0,B.bp))return q}return null}, -ag8:function ag8(a,b){this.a=a -this.b=b}, -C2:function C2(){}, -cT:function cT(){}, -W9:function W9(){}, -a0m:function a0m(a,b){this.a=a -this.b=b}, -oX:function oX(a){this.a=a}, -Yn:function Yn(){}, -hx:function hx(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.$ti=d}, -a4X:function a4X(a,b){this.a=a -this.b=b}, -jA:function jA(a,b,c){this.a=a -this.b=b -this.c=c}, -afW:function afW(a,b){this.a=a -this.b=b}, -jG:function jG(a,b,c){this.a=a -this.b=b -this.c=c}, -Nl:function Nl(a,b){this.a=a -this.b=b}, -a9f:function a9f(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -a9e:function a9e(a,b){this.a=a -this.b=b}, -a9g:function a9g(a,b,c){this.a=a -this.b=b -this.c=c}, -b_h(a){var s,r,q,p,o={} -o.a=null -s=new A.aii(o,a).$0() -r=$.aC6().d -q=A.p(r).i("bm<1>") -p=A.hJ(new A.bm(r,q),q.i("q.E")).t(0,s.gjY()) -q=J.aN(a,"type") -q.toString -A.aQ(q) -switch(q){case"keydown":return new A.l3(o.a,p,s) -case"keyup":return new A.w9(null,!1,s) -default:throw A.d(A.AS("Unknown key event type: "+q))}}, -qW:function qW(a,b){this.a=a -this.b=b}, -ig:function ig(a,b){this.a=a -this.b=b}, -D0:function D0(){}, -jK:function jK(){}, -aii:function aii(a,b){this.a=a -this.b=b}, -l3:function l3(a,b,c){this.a=a -this.b=b -this.c=c}, -w9:function w9(a,b,c){this.a=a -this.b=b -this.c=c}, -ain:function ain(a,b){this.a=a -this.d=b}, -dq:function dq(a,b){this.a=a -this.b=b}, -ZA:function ZA(){}, -Zz:function Zz(){}, -R9:function R9(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -Dv:function Dv(a,b){var _=this -_.b=_.a=null -_.f=_.e=_.d=_.c=!1 -_.r=a -_.aj$=0 -_.ag$=b -_.aU$=_.aB$=0 -_.aN$=!1}, -ajS:function ajS(a){this.a=a}, -ajT:function ajT(a){this.a=a}, -dO:function dO(a,b,c,d,e,f){var _=this -_.a=a -_.b=null -_.c=b -_.d=c -_.e=d -_.f=e -_.r=f -_.x=_.w=!1}, -ajP:function ajP(){}, -ajQ:function ajQ(){}, -ajO:function ajO(){}, -ajR:function ajR(){}, -aWY(a,b){var s,r,q,p,o=A.b([],t.bt),n=J.X(a),m=0,l=0 -while(!0){if(!(m1 -if(a1===0)m=0===a1 -else m=!1 -l=n&&a3a -q=!l -i=q&&!m&&sd||!q||k -if(c===o)return new A.x0(c,p,r) -else if((!h||i)&&s)return new A.Tq(new A.cb(!n?a-1:b,a),c,p,r) -else if((b===a||j)&&s)return new A.Tr(B.c.S(a0,d,d+(a1-d)),a,c,p,r) -else if(e)return new A.Ts(a0,new A.cb(b,a),c,p,r) -return new A.x0(c,p,r)}, -p_:function p_(){}, -Tr:function Tr(a,b,c,d,e){var _=this -_.d=a -_.e=b -_.a=c -_.b=d -_.c=e}, -Tq:function Tq(a,b,c,d){var _=this -_.d=a -_.a=b -_.b=c -_.c=d}, -Ts:function Ts(a,b,c,d,e){var _=this -_.d=a -_.e=b -_.a=c -_.b=d -_.c=e}, -x0:function x0(a,b,c){this.a=a -this.b=b -this.c=c}, -a0F:function a0F(){}, -Pp:function Pp(a,b){this.a=a -this.b=b}, -p0:function p0(){}, -Yr:function Yr(a,b){this.a=a -this.b=b}, -aym:function aym(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=!1}, -Ns:function Ns(a,b,c){this.a=a -this.b=b -this.c=c}, -a9u:function a9u(a,b,c){this.a=a -this.b=b -this.c=c}, -aL8(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){return new A.aoC(i,l,!1,!0,c,m,n,!0,f,h,o,j,!0,a,!1)}, -b4o(a){switch(a){case"TextAffinity.downstream":return B.l -case"TextAffinity.upstream":return B.aa}return null}, -aL6(a){var s,r,q,p,o=J.X(a),n=A.aQ(o.h(a,"text")),m=A.dz(o.h(a,"selectionBase")) -if(m==null)m=-1 -s=A.dz(o.h(a,"selectionExtent")) -if(s==null)s=-1 -r=A.b4o(A.au(o.h(a,"selectionAffinity"))) -if(r==null)r=B.l -q=A.lB(o.h(a,"selectionIsDirectional")) -p=A.cq(r,m,s,q===!0) -m=A.dz(o.h(a,"composingBase")) -if(m==null)m=-1 -o=A.dz(o.h(a,"composingExtent")) -return new A.dg(n,p,new A.cb(m,o==null?-1:o))}, -aL9(a){var s=A.b([],t.u1),r=$.aLa -$.aLa=r+1 -return new A.aoD(s,r,a)}, -b4q(a){switch(a){case"TextInputAction.none":return B.Qk -case"TextInputAction.unspecified":return B.Ql -case"TextInputAction.go":return B.Qo -case"TextInputAction.search":return B.Qp -case"TextInputAction.send":return B.Qq -case"TextInputAction.next":return B.Qr -case"TextInputAction.previous":return B.Qs -case"TextInputAction.continueAction":return B.Qt -case"TextInputAction.join":return B.Qu -case"TextInputAction.route":return B.Qm -case"TextInputAction.emergencyCall":return B.Qn -case"TextInputAction.done":return B.kL -case"TextInputAction.newline":return B.zv}throw A.d(A.uU(A.b([A.nM("Unknown text input action: "+a)],t.E)))}, -b4p(a){switch(a){case"FloatingCursorDragState.start":return B.nm -case"FloatingCursorDragState.update":return B.jf -case"FloatingCursorDragState.end":return B.jg}throw A.d(A.uU(A.b([A.nM("Unknown text cursor action: "+a)],t.E)))}, -ami:function ami(a,b){this.a=a -this.b=b}, -amj:function amj(a,b){this.a=a -this.b=b}, -EY:function EY(a,b,c){this.a=a -this.b=b -this.c=c}, -hl:function hl(a,b){this.a=a -this.b=b}, -aok:function aok(a,b){this.a=a -this.b=b}, -aoC:function aoC(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.z=j -_.Q=k -_.as=l -_.at=m -_.ax=n -_.ay=o}, -AP:function AP(a,b){this.a=a -this.b=b}, -aih:function aih(a,b){this.a=a -this.b=b}, -dg:function dg(a,b,c){this.a=a -this.b=b -this.c=c}, -aop:function aop(a,b){this.a=a -this.b=b}, -iU:function iU(a,b){this.a=a -this.b=b}, -apd:function apd(){}, -aoA:function aoA(){}, -rV:function rV(a,b,c){this.a=a -this.b=b -this.c=c}, -aoD:function aoD(a,b,c){var _=this -_.d=_.c=_.b=_.a=null -_.e=a -_.f=b -_.r=c}, -Tv:function Tv(a,b,c){var _=this -_.a=a -_.b=b -_.c=$ -_.d=null -_.e=$ -_.f=c -_.w=_.r=!1}, -aoT:function aoT(a){this.a=a}, -aoR:function aoR(){}, -aoQ:function aoQ(a,b){this.a=a -this.b=b}, -aoS:function aoS(a){this.a=a}, -aoU:function aoU(a){this.a=a}, -EX:function EX(){}, -YV:function YV(){}, -avO:function avO(){}, -a2g:function a2g(){}, -TX:function TX(a,b){this.a=a -this.b=b}, -TY:function TY(){this.a=$ -this.b=null}, -apW:function apW(){}, -b3F(a){var s=A.bg("parent") -a.je(new A.aA9(s)) -return s.aI()}, -pM(a,b){return new A.lJ(a,b,null)}, -KI(a,b){var s,r=t.L1,q=a.fv(r) -for(;s=q!=null,s;){if(b.$1(q))break -q=A.b3F(q).fv(r)}return s}, -aCo(a){var s={} -s.a=null -A.KI(a,new A.a3Y(s)) -return B.BS}, -aCq(a,b,c){var s={} -s.a=null -if((b==null?null:A.u(b))==null)A.cG(c) -A.KI(a,new A.a40(s,b,a,c)) -return s.a}, -aCp(a,b){var s={} -s.a=null -A.cG(b) -A.KI(a,new A.a3Z(s,null,b)) -return s.a}, -a3X(a,b,c){var s,r=b==null?null:A.u(b) -if(r==null)r=A.cG(c) -s=a.r.h(0,r) -if(c.i("br<0>?").b(s))return s -else return null}, -pN(a,b,c){var s={} -s.a=null -A.KI(a,new A.a4_(s,b,a,c)) -return s.a}, -aVP(a,b,c){var s={} -s.a=null -A.KI(a,new A.a41(s,b,a,c)) -return s.a}, -aIJ(a,b,c,d,e,f,g,h,i){return new A.qB(d,e,!1,a,h,i,g,f,c,null)}, -aI_(a){return new A.Ai(a,new A.b7(A.b([],t.g),t.d))}, -aA9:function aA9(a){this.a=a}, -bj:function bj(){}, -br:function br(){}, -dr:function dr(){}, -cH:function cH(a,b,c){var _=this -_.c=a -_.a=b -_.b=null -_.$ti=c}, -a3W:function a3W(){}, -lJ:function lJ(a,b,c){this.d=a -this.e=b -this.a=c}, -a3Y:function a3Y(a){this.a=a}, -a40:function a40(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -a3Z:function a3Z(a,b,c){this.a=a -this.b=b -this.c=c}, -a4_:function a4_(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -a41:function a41(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -Fz:function Fz(a,b,c){var _=this -_.d=a -_.e=b -_.a=null -_.b=c -_.c=null}, -aqu:function aqu(a){this.a=a}, -Fy:function Fy(a,b,c,d,e){var _=this -_.f=a -_.r=b -_.w=c -_.b=d -_.a=e}, -qB:function qB(a,b,c,d,e,f,g,h,i,j){var _=this -_.c=a -_.d=b -_.e=c -_.w=d -_.y=e -_.z=f -_.Q=g -_.as=h -_.ax=i -_.a=j}, -GH:function GH(a,b){var _=this -_.f=_.e=_.d=!1 -_.r=a -_.a=null -_.b=b -_.c=null}, -atF:function atF(a){this.a=a}, -atD:function atD(a){this.a=a}, -aty:function aty(a){this.a=a}, -atz:function atz(a){this.a=a}, -atx:function atx(a,b){this.a=a -this.b=b}, -atC:function atC(a){this.a=a}, -atA:function atA(a){this.a=a}, -atB:function atB(a,b){this.a=a -this.b=b}, -atE:function atE(a,b){this.a=a -this.b=b}, -Ui:function Ui(a){this.a=a -this.b=null}, -Ai:function Ai(a,b){this.c=a -this.a=b -this.b=null}, -ni:function ni(){}, -nt:function nt(){}, -hC:function hC(){}, -MQ:function MQ(){}, -mx:function mx(){}, -R2:function R2(a){var _=this -_.f=_.e=$ -_.a=a -_.b=null}, -yf:function yf(){}, -HD:function HD(a,b,c,d,e,f,g,h){var _=this -_.e=a -_.f=b -_.aoU$=c -_.aoV$=d -_.aoW$=e -_.aoX$=f -_.a=g -_.b=null -_.$ti=h}, -HE:function HE(a,b,c,d,e,f,g,h){var _=this -_.e=a -_.f=b -_.aoU$=c -_.aoV$=d -_.aoW$=e -_.aoX$=f -_.a=g -_.b=null -_.$ti=h}, -G_:function G_(a,b,c,d){var _=this -_.c=a -_.d=b -_.a=c -_.b=null -_.$ti=d}, -Ur:function Ur(){}, -Up:function Up(){}, -Xy:function Xy(){}, -JS:function JS(){}, -JT:function JT(){}, -aHc(a,b,c){return new A.z9(a,b,c,null)}, -z9:function z9(a,b,c,d){var _=this -_.c=a -_.e=b -_.f=c -_.a=d}, -UE:function UE(a,b,c){var _=this -_.eV$=a -_.cb$=b -_.a=null -_.b=c -_.c=null}, -UD:function UD(a,b,c,d,e,f,g,h){var _=this -_.e=a -_.f=b -_.r=c -_.w=d -_.x=e -_.y=f -_.c=g -_.a=h}, -a1P:function a1P(){}, -zg:function zg(a,b,c,d){var _=this -_.e=a -_.c=b -_.a=c -_.$ti=d}, -b4I(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c -if(a==null||a.length===0)return B.b.gM(b) -s=t.N -r=t.da -q=A.hG(s,r) -p=A.hG(s,r) -o=A.hG(s,r) -n=A.hG(s,r) -m=A.hG(t.u,r) -for(l=0;l<1;++l){k=b[l] -s=k.a -r=B.bI.h(0,s) -if(r==null)r=s -j=k.c -i=B.bZ.h(0,j) -if(i==null)i=j -i=r+"_null_"+A.j(i) -if(q.h(0,i)==null)q.m(0,i,k) -r=B.bI.h(0,s) -r=(r==null?s:r)+"_null" -if(o.h(0,r)==null)o.m(0,r,k) -r=B.bI.h(0,s) -if(r==null)r=s -i=B.bZ.h(0,j) -if(i==null)i=j -i=r+"_"+A.j(i) -if(p.h(0,i)==null)p.m(0,i,k) -r=B.bI.h(0,s) -s=r==null?s:r -if(n.h(0,s)==null)n.m(0,s,k) -s=B.bZ.h(0,j) -if(s==null)s=j -if(m.h(0,s)==null)m.m(0,s,k)}for(h=null,g=null,f=0;f"))}, -lc:function lc(){}, -IK:function IK(a,b){var _=this -_.d=null -_.e=$ -_.a=null -_.b=a -_.c=null -_.$ti=b}, -axE:function axE(a){this.a=a}, -axD:function axD(a,b){this.a=a -this.b=b}, -axG:function axG(a){this.a=a}, -axB:function axB(a,b,c){this.a=a -this.b=b -this.c=c}, -axF:function axF(a){this.a=a}, -axC:function axC(a){this.a=a}, -um:function um(a,b){this.a=a -this.b=b}, -dH:function dH(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.$ti=e}, -Eu:function Eu(a,b,c,d){var _=this -_.e=a -_.c=b -_.a=c -_.$ti=d}, -uZ:function uZ(a,b,c,d){var _=this -_.c=a -_.d=b -_.a=c -_.$ti=d}, -GK:function GK(a,b){var _=this -_.d=null -_.e=$ -_.a=null -_.b=a -_.c=null -_.$ti=b}, -atL:function atL(a,b){this.a=a -this.b=b}, -atK:function atK(a,b){this.a=a -this.b=b}, -atM:function atM(a,b){this.a=a -this.b=b}, -atJ:function atJ(a,b,c){this.a=a -this.b=b -this.c=c}, -tX:function tX(a,b){this.c=a -this.a=b}, -FD:function FD(a){var _=this -_.d=null -_.e=$ -_.f=!1 -_.a=null -_.b=a -_.c=null}, -arc:function arc(a){this.a=a}, -arh:function arh(a){this.a=a}, -arg:function arg(a,b,c){this.a=a -this.b=b -this.c=c}, -are:function are(a){this.a=a}, -arf:function arf(a){this.a=a}, -ard:function ard(a){this.a=a}, -vk:function vk(a){this.a=a}, -Bt:function Bt(a){var _=this -_.aj$=0 -_.ag$=a -_.aU$=_.aB$=0 -_.aN$=!1}, -pR:function pR(){}, -YE:function YE(a){this.a=a}, -aMi(a,b){a.b3(new A.az5(b)) -b.$1(a)}, -aHV(a,b){return new A.iG(b,a,null)}, -dd(a){var s=a.an(t.I) -return s==null?null:s.w}, -aDM(a,b){return new A.Q2(b,a,null)}, -aHh(a,b){return new A.Le(b,a,null)}, -kp(a,b,c,d,e){return new A.A8(d,b,e,a,c)}, -M_(a,b){return new A.uh(b,a,null)}, -a67(a,b,c){return new A.ue(c,b,a,null)}, -aWt(a,b){return new A.eT(new A.a69(b,B.cA,a),null)}, -TP(a,b,c,d){return new A.td(c,a,d,null,b,null)}, -aEm(a,b,c,d){return new A.td(A.b0W(b),a,!0,d,c,null)}, -b0W(a){var s,r,q -if(a===0){s=new A.b6(new Float64Array(16)) -s.e6() -return s}r=Math.sin(a) -if(r===1)return A.apL(1,0) -if(r===-1)return A.apL(-1,0) -q=Math.cos(a) -if(q===-1)return A.apL(0,-1) -return A.apL(r,q)}, -apL(a,b){var s=new Float64Array(16) -s[0]=b -s[1]=a -s[4]=-a -s[5]=b -s[10]=1 -s[15]=1 -return new A.b6(s)}, -aHD(a,b,c,d){return new A.M7(b,!1,c,a,null)}, -aIO(a,b,c){return new A.NR(c,b,a,null)}, -km(a,b,c){return new A.q1(B.a0,c,b,a,null)}, -aeI(a,b){return new A.By(b,a,new A.et(b,t.xc))}, -cz(a,b,c){return new A.e1(c,b,a,null)}, -am_(a,b){return new A.e1(b.a,b.b,a,null)}, -aB6(a,b,c){var s,r -switch(b.a){case 0:s=a.an(t.I) -s.toString -r=A.aFQ(s.w) -return c?A.aO8(r):r -case 1:return c?B.X:B.U}}, -lb(a,b,c,d,e){return new A.Eo(a,e,d,c,b,null)}, -w1(a,b,c,d,e,f,g,h){return new A.rB(e,g,f,a,h,c,b,d)}, -b_4(a,b,c,d,e,f,g,h){var s,r -switch(f.a){case 0:s=e -r=c -break -case 1:s=c -r=e -break -default:r=null -s=null}return A.w1(a,b,d,null,r,s,g,h)}, -e0(a,b,c,d,e){return new A.rN(B.aC,c,d,b,null,B.cT,e,a,null)}, -eV(a,b,c,d){return new A.M6(B.aq,c,d,b,null,B.cT,null,a,null)}, -iH(a,b){return new A.uM(b,B.e0,a,null)}, -aLH(a,b,c){return new A.Uk(a,c,b,null)}, -ajV(a,b,c,d,e,f,g,h,i,j,k,l,m,n){return new A.oJ(i,j,k,g,d,m,c,b,h,n,l,f,e,A.aLD(i,m),a)}, -vt(a,b,c,d,e,f,g,h){return new A.P2(e,h,d,f,g,a,b,c)}, -jB(a,b,c,d,e,f){return new A.vB(d,f,e,b,a,c)}, -v5(a,b,c){return new A.v4(b,a,c)}, -aW2(a){return new A.Lq(a,null)}, -a1s:function a1s(a,b,c){var _=this -_.al=a -_.d=_.c=_.b=_.a=_.ay=null -_.e=$ -_.f=b -_.r=null -_.w=c -_.z=_.y=null -_.Q=!1 -_.as=!0 -_.ax=_.at=!1}, -az6:function az6(a,b){this.a=a -this.b=b}, -az5:function az5(a){this.a=a}, -a1t:function a1t(){}, -iG:function iG(a,b,c){this.w=a -this.b=b -this.a=c}, -Q2:function Q2(a,b,c){this.e=a -this.c=b -this.a=c}, -wA:function wA(a,b,c){this.e=a -this.c=b -this.a=c}, -Le:function Le(a,b,c){this.e=a -this.c=b -this.a=c}, -A8:function A8(a,b,c,d,e){var _=this -_.e=a -_.f=b -_.r=c -_.c=d -_.a=e}, -uh:function uh(a,b,c){this.f=a -this.c=b -this.a=c}, -LY:function LY(a,b,c,d){var _=this -_.e=a -_.r=b -_.c=c -_.a=d}, -ue:function ue(a,b,c,d){var _=this -_.e=a -_.f=b -_.c=c -_.a=d}, -a69:function a69(a,b,c){this.a=a -this.b=b -this.c=c}, -QA:function QA(a,b,c,d,e,f,g,h){var _=this -_.e=a -_.f=b -_.r=c -_.w=d -_.x=e -_.y=f -_.c=g -_.a=h}, -QB:function QB(a,b,c,d,e,f,g){var _=this -_.e=a -_.f=b -_.r=c -_.w=d -_.x=e -_.c=f -_.a=g}, -td:function td(a,b,c,d,e,f){var _=this -_.e=a -_.r=b -_.w=c -_.x=d -_.c=e -_.a=f}, -uk:function uk(a,b,c){this.e=a -this.c=b -this.a=c}, -M7:function M7(a,b,c,d,e){var _=this -_.e=a -_.f=b -_.x=c -_.c=d -_.a=e}, -NR:function NR(a,b,c,d){var _=this -_.e=a -_.f=b -_.c=c -_.a=d}, -bY:function bY(a,b,c){this.e=a -this.c=b -this.a=c}, -fd:function fd(a,b,c,d,e){var _=this -_.e=a -_.f=b -_.r=c -_.c=d -_.a=e}, -q1:function q1(a,b,c,d,e){var _=this -_.e=a -_.f=b -_.r=c -_.c=d -_.a=e}, -i6:function i6(a,b,c){this.e=a -this.c=b -this.a=c}, -By:function By(a,b,c){this.f=a -this.b=b -this.a=c}, -A7:function A7(a,b,c){this.e=a -this.c=b -this.a=c}, -e1:function e1(a,b,c,d){var _=this -_.e=a -_.f=b -_.c=c -_.a=d}, -ft:function ft(a,b,c){this.e=a -this.c=b -this.a=c}, -OY:function OY(a,b,c,d){var _=this -_.e=a -_.f=b -_.c=c -_.a=d}, -Q7:function Q7(a,b,c,d,e,f,g){var _=this -_.e=a -_.f=b -_.r=c -_.w=d -_.x=e -_.c=f -_.a=g}, -vG:function vG(a,b,c){this.e=a -this.c=b -this.a=c}, -YK:function YK(a,b){var _=this -_.d=_.c=_.b=_.a=_.CW=_.ay=_.p1=null -_.e=$ -_.f=a -_.r=null -_.w=b -_.z=_.y=null -_.Q=!1 -_.as=!0 -_.ax=_.at=!1}, -OA:function OA(a,b,c){this.e=a -this.c=b -this.a=c}, -SD:function SD(a,b,c){this.e=a -this.c=b -this.a=c}, -P1:function P1(a,b){this.c=a -this.a=b}, -Eo:function Eo(a,b,c,d,e,f){var _=this -_.e=a -_.f=b -_.r=c -_.w=d -_.c=e -_.a=f}, -Ot:function Ot(a,b,c,d){var _=this -_.c=a -_.r=b -_.w=c -_.a=d}, -HK:function HK(a,b,c,d,e,f,g){var _=this -_.z=a -_.e=b -_.f=c -_.r=d -_.w=e -_.c=f -_.a=g}, -Xq:function Xq(a,b,c){var _=this -_.p1=$ -_.p2=a -_.d=_.c=_.b=_.a=_.CW=_.ay=null -_.e=$ -_.f=b -_.r=null -_.w=c -_.z=_.y=null -_.Q=!1 -_.as=!0 -_.ax=_.at=!1}, -rB:function rB(a,b,c,d,e,f,g,h){var _=this -_.f=a -_.r=b -_.w=c -_.x=d -_.y=e -_.z=f -_.b=g -_.a=h}, -QY:function QY(a,b,c,d,e,f){var _=this -_.c=a -_.d=b -_.f=c -_.r=d -_.x=e -_.a=f}, -NA:function NA(){}, -rN:function rN(a,b,c,d,e,f,g,h,i){var _=this -_.e=a -_.f=b -_.r=c -_.w=d -_.x=e -_.y=f -_.z=g -_.c=h -_.a=i}, -M6:function M6(a,b,c,d,e,f,g,h,i){var _=this -_.e=a -_.f=b -_.r=c -_.w=d -_.x=e -_.y=f -_.z=g -_.c=h -_.a=i}, -qx:function qx(a,b,c,d){var _=this -_.f=a -_.r=b -_.b=c -_.a=d}, -uM:function uM(a,b,c,d){var _=this -_.f=a -_.r=b -_.b=c -_.a=d}, -Uk:function Uk(a,b,c,d){var _=this -_.f=a -_.y=b -_.c=c -_.a=d}, -oJ:function oJ(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){var _=this -_.e=a -_.f=b -_.r=c -_.w=d -_.x=e -_.y=f -_.z=g -_.Q=h -_.as=i -_.at=j -_.ax=k -_.ay=l -_.ch=m -_.c=n -_.a=o}, -R8:function R8(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q){var _=this -_.d=a -_.e=b -_.f=c -_.r=d -_.w=e -_.x=f -_.y=g -_.z=h -_.Q=i -_.as=j -_.at=k -_.ax=l -_.ay=m -_.ch=n -_.CW=o -_.cx=p -_.a=q}, -P2:function P2(a,b,c,d,e,f,g,h){var _=this -_.e=a -_.r=b -_.x=c -_.y=d -_.as=e -_.at=f -_.c=g -_.a=h}, -vB:function vB(a,b,c,d,e,f){var _=this -_.e=a -_.f=b -_.r=c -_.w=d -_.c=e -_.a=f}, -ir:function ir(a,b){this.c=a -this.a=b}, -v4:function v4(a,b,c){this.e=a -this.c=b -this.a=c}, -KE:function KE(a,b,c){this.e=a -this.c=b -this.a=c}, -bL:function bL(a,b,c,d,e,f,g){var _=this -_.e=a -_.f=b -_.r=c -_.w=d -_.x=e -_.c=f -_.a=g}, -vA:function vA(a,b){this.c=a -this.a=b}, -Lq:function Lq(a,b){this.c=a -this.a=b}, -nN:function nN(a,b,c){this.e=a -this.c=b -this.a=c}, -Bb:function Bb(a,b,c){this.e=a -this.c=b -this.a=c}, -oa:function oa(a,b){this.c=a -this.a=b}, -eT:function eT(a,b){this.c=a -this.a=b}, -q4:function q4(a,b,c){this.e=a -this.c=b -this.a=c}, -HO:function HO(a,b,c,d){var _=this -_.cI=a -_.v=b -_.C$=c -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=d -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -b_r(a,b){return new A.oF(a,B.R,b.i("oF<0>"))}, -aLE(){var s=null,r=A.b([],t.GA),q=$.ai,p=A.b([],t.Jh),o=A.aT(7,s,!1,t.JI),n=t.S,m=t.j1 -n=new A.Uj(s,$,r,!0,new A.b3(new A.ae(q,t.c),t.h),!1,s,!1,$,!1,s,$,!1,0,!1,$,$,0,s,$,$,new A.a0l(A.aE(t.M)),$,$,$,$,s,p,s,A.b4L(),new A.O9(A.b4K(),o,t.G7),!1,0,A.m(n,t.h1),A.d5(n),A.b([],m),A.b([],m),s,!1,B.dr,!0,!1,s,B.q,B.q,s,0,s,!1,s,s,0,A.oh(s,t.qL),new A.ahS(A.m(n,t.rr),A.m(t.Ld,t.iD)),new A.aaU(A.m(n,t.cK)),new A.ahV(),A.m(n,t.YX),$,!1,B.F8) -n.a5R() -return n}, -azn:function azn(a){this.a=a}, -fO:function fO(){}, -Fv:function Fv(){}, -azm:function azm(a,b){this.a=a -this.b=b}, -aqk:function aqk(a,b){this.a=a -this.b=b}, -rG:function rG(a,b,c,d,e){var _=this -_.c=a -_.d=b -_.e=c -_.a=d -_.$ti=e}, -aja:function aja(a,b,c){this.a=a -this.b=b -this.c=c}, -ajb:function ajb(a){this.a=a}, -oF:function oF(a,b,c){var _=this -_.d=_.c=_.b=_.a=_.CW=_.ay=_.p2=_.p1=null -_.e=$ -_.f=a -_.r=null -_.w=b -_.z=_.y=null -_.Q=!1 -_.as=!0 -_.ax=_.at=!1 -_.$ti=c}, -Uj:function Uj(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7,c8,c9,d0,d1,d2,d3,d4,d5,d6,d7,d8,d9,e0){var _=this -_.ah$=a -_.fR$=b -_.c1$=c -_.b6$=d -_.dq$=e -_.dI$=f -_.v$=g -_.V$=h -_.ar$=i -_.az$=j -_.aJ$=k -_.au$=l -_.aY$=m -_.b9$=n -_.c7$=o -_.c0$=p -_.JV$=q -_.JW$=r -_.BF$=s -_.JX$=a0 -_.mI$=a1 -_.vK$=a2 -_.dA$=a3 -_.aA$=a4 -_.eW$=a5 -_.fm$=a6 -_.c5$=a7 -_.fx$=a8 -_.fy$=a9 -_.go$=b0 -_.id$=b1 -_.k1$=b2 -_.k2$=b3 -_.k3$=b4 -_.k4$=b5 -_.ok$=b6 -_.p1$=b7 -_.p2$=b8 -_.p3$=b9 -_.p4$=c0 -_.R8$=c1 -_.RG$=c2 -_.rx$=c3 -_.ry$=c4 -_.to$=c5 -_.x1$=c6 -_.x2$=c7 -_.xr$=c8 -_.y1$=c9 -_.y2$=d0 -_.b_$=d1 -_.bn$=d2 -_.al$=d3 -_.aG$=d4 -_.bd$=d5 -_.bS$=d6 -_.bk$=d7 -_.B$=d8 -_.R$=d9 -_.a1$=e0 -_.a=!1 -_.b=null -_.c=0}, -I_:function I_(){}, -Jn:function Jn(){}, -Jo:function Jo(){}, -Jp:function Jp(){}, -Jq:function Jq(){}, -Jr:function Jr(){}, -Js:function Js(){}, -Jt:function Jt(){}, -zy:function zy(a,b,c){this.a=a -this.b=b -this.c=c}, -kq(a,b,c){return new A.Mw(b,c,a,null)}, -cC(a,b,c,d,e,f,g,h,i,j,k,l,m){var s -if(m!=null||h!=null){s=e==null?null:e.LP(h,m) -if(s==null)s=A.eR(h,m)}else s=e -return new A.nC(b,a,j,d,f,g,s,i,k,l,c,null)}, -Mw:function Mw(a,b,c,d){var _=this -_.e=a -_.f=b -_.c=c -_.a=d}, -nC:function nC(a,b,c,d,e,f,g,h,i,j,k,l){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.w=f -_.x=g -_.y=h -_.z=i -_.Q=j -_.as=k -_.a=l}, -W4:function W4(a,b){this.b=a -this.c=b}, -q7:function q7(a,b){this.a=a -this.b=b}, -eD:function eD(a,b,c){this.a=a -this.b=b -this.c=c}, -aHF(){var s=$.uq -if(s!=null)s.ez(0) -$.uq=null -if($.lR!=null)$.lR=null}, -Ma:function Ma(){}, -a6w:function a6w(a,b){this.a=a -this.b=b}, -a6X(a,b,c,d,e){return new A.nF(b,e,d,a,c)}, -aWX(a,b){var s=null -return new A.eT(new A.a6Y(s,s,s,b,a),s)}, -nF:function nF(a,b,c,d,e){var _=this -_.w=a -_.x=b -_.y=c -_.b=d -_.a=e}, -a6Y:function a6Y(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -YF:function YF(a){this.a=a}, -aWZ(){switch(A.bA().a){case 0:return $.aFY() -case 1:return $.aPf() -case 2:return $.aPg() -case 3:return $.aPh() -case 4:return $.aFZ() -case 5:return $.aPj()}}, -MD:function MD(a,b){this.c=a -this.a=b}, -MI:function MI(a){this.b=a}, -aXe(a){var s=a.an(t.I) -s.toString -switch(s.w.a){case 0:return B.Mj -case 1:return B.e}}, -aHX(a){var s=a.ch,r=A.W(s) -return new A.eG(new A.aL(s,new A.a7s(),r.i("aL<1>")),new A.a7t(),r.i("eG<1,y>"))}, -aXd(a,b){var s,r,q,p,o=B.b.gM(a),n=A.aHW(b,o) -for(s=a.length,r=0;rr)return a.Z(0,new A.k(p,r)).gcB() -else return p-q}}else{p=b.c -if(q>p){s=a.b -r=b.b -if(sr)return a.Z(0,new A.k(p,r)).gcB() -else return q-p}}else{q=a.b -p=b.b -if(qp)return q-p -else return 0}}}}, -aHY(a,b){var s,r,q,p,o,n,m,l,k,j,i,h=t.AO,g=A.b([a],h) -for(s=b.ga9(b);s.u();g=q){r=s.gJ(s) -q=A.b([],h) -for(p=g.length,o=r.a,n=r.b,m=r.d,r=r.c,l=0;l=n&&k.d<=m){i=k.a -if(ir)q.push(new A.y(r,j,r+(i-r),j+(k.d-j)))}else{i=k.a -if(i>=o&&k.c<=r){if(jm)q.push(new A.y(i,m,i+(k.c-i),m+(j-m)))}else q.push(k)}}}return g}, -aXc(a,b){var s,r=a.a -if(r>=0)if(r<=b.a){s=a.b -s=s>=0&&s<=b.b}else s=!1 -else s=!1 -if(s)return a -else return new A.k(Math.min(Math.max(0,r),b.a),Math.min(Math.max(0,a.b),b.b))}, -MR:function MR(a,b,c){this.c=a -this.d=b -this.a=c}, -a7s:function a7s(){}, -a7t:function a7t(){}, -MS:function MS(a,b){this.a=a -this.$ti=b}, -uD:function uD(a,b,c,d,e){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.a=e}, -Gp:function Gp(a,b,c){var _=this -_.d=$ -_.e=a -_.f=b -_.a=null -_.b=c -_.c=null}, -aL5(a){var s=a==null?B.zt:new A.dg(a,B.eS,B.b7) -return new A.ES(s,$.aO())}, -aIp(a,b,c,d,e,f,g,h,i,j,k,l,m,n,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7,c8,c9,d0,d1,d2,d3,d4,d5,d6,d7,d8,d9,e0,e1,e2,e3,e4,e5,e6,e7,e8,e9,f0,f1,f2,f3){var s,r,q,p,o -if(e0==null)s=B.za -else s=e0 -if(e1==null)r=B.zb -else r=e1 -if(t.qY.b(d5)&&!0)q=B.zO -else q=c7?B.Uv:B.Uw -p=b2==null?A.aXM(d,b4):b2 -if(b4===1){o=A.b([$.aPr()],t.VS) -B.b.K(o,a9==null?B.C5:a9)}else o=a9 -return new A.uE(j,a7,b8,!1,e8,f1,c7,a8,q,d9,d8==null?!c7:d8,!0,s,r,!0,e4,f3,e3,e5,e7,e6,f0,k,b,f,b4,b5,!1,!1,d4,d5,p,e9,c0,c1,c4,b9,c2,c3,c5,o,b6,!0,a1,l,a0,n,m,c6,d6,d7,b1,d2,a4,a2,d1,d3,!0,d,c,g,c9,!0,h,i,e2,b3,b0)}, -aXM(a,b){return b===1?B.zw:B.kM}, -aXL(a){var s,r=a==null,q=r?null:a.a,p=r||a.j(0,B.eO) -r=q==null -if(r){$.av.toString -$.bi() -s=!1}else s=!0 -if(p||!s)return B.eO -if(r){r=new A.a6Z() -r.b=B.MH}else r=q -return a.anw(r)}, -pu(a,b,c,d,e,f,g){return new A.Je(a,e,f,d,b,c,new A.b7(A.b([],t.g),t.d),g.i("Je<0>"))}, -Vl:function Vl(a,b,c,d){var _=this -_.e=a -_.f=b -_.c=c -_.a=d}, -ZL:function ZL(a,b,c,d){var _=this -_.v=a -_.V=null -_.am=b -_.C$=c -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=d -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -ES:function ES(a,b){var _=this -_.a=a -_.aj$=0 -_.ag$=b -_.aU$=_.aB$=0 -_.aN$=!1}, -Fb:function Fb(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -hY:function hY(a,b){this.a=a -this.b=b}, -at6:function at6(a,b,c){var _=this -_.b=a -_.c=b -_.d=0 -_.a=c}, -uE:function uE(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7,c8,c9,d0,d1,d2,d3,d4,d5,d6,d7,d8,d9,e0,e1,e2,e3,e4,e5,e6,e7,e8){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.w=f -_.x=g -_.y=h -_.z=i -_.Q=j -_.as=k -_.at=l -_.ax=m -_.ay=n -_.ch=o -_.CW=p -_.cx=q -_.cy=r -_.db=s -_.dx=a0 -_.dy=a1 -_.fx=a2 -_.fy=a3 -_.go=a4 -_.id=a5 -_.k1=a6 -_.k2=a7 -_.k3=a8 -_.k4=a9 -_.ok=b0 -_.p1=b1 -_.p2=b2 -_.p3=b3 -_.p4=b4 -_.R8=b5 -_.RG=b6 -_.rx=b7 -_.ry=b8 -_.to=b9 -_.x1=c0 -_.x2=c1 -_.xr=c2 -_.y1=c3 -_.y2=c4 -_.b_=c5 -_.bn=c6 -_.al=c7 -_.aG=c8 -_.bd=c9 -_.bS=d0 -_.bk=d1 -_.B=d2 -_.R=d3 -_.a1=d4 -_.ar=d5 -_.az=d6 -_.aJ=d7 -_.au=d8 -_.aY=d9 -_.b9=e0 -_.c7=e1 -_.c0=e2 -_.ag=e3 -_.aB=e4 -_.aU=e5 -_.aN=e6 -_.dH=e7 -_.a=e8}, -nJ:function nJ(a,b,c,d,e,f,g,h,i,j,k){var _=this -_.e=_.d=null -_.f=$ -_.r=a -_.w=b -_.x=c -_.Q=_.z=null -_.as=d -_.at=null -_.ax=e -_.ay=f -_.ch=g -_.CW=!1 -_.cx=null -_.db=_.cy=$ -_.fr=_.dy=_.dx=null -_.fx=!0 -_.k2=_.k1=_.id=_.go=_.fy=null -_.k3=0 -_.p1=_.ok=_.k4=!1 -_.p2=$ -_.p3=0 -_.R8=_.p4=null -_.RG=$ -_.rx=-1 -_.ry=null -_.y1=_.xr=_.x2=_.x1=_.to=$ -_.d5$=h -_.aZ$=i -_.ib$=j -_.a=null -_.b=k -_.c=null}, -a81:function a81(){}, -a8n:function a8n(a){this.a=a}, -a8r:function a8r(a){this.a=a}, -a8e:function a8e(a){this.a=a}, -a8f:function a8f(a){this.a=a}, -a8g:function a8g(a){this.a=a}, -a8h:function a8h(a){this.a=a}, -a8i:function a8i(a){this.a=a}, -a8j:function a8j(a){this.a=a}, -a8k:function a8k(a){this.a=a}, -a8l:function a8l(a){this.a=a}, -a8m:function a8m(a){this.a=a}, -a8p:function a8p(a){this.a=a}, -a7Y:function a7Y(a,b){this.a=a -this.b=b}, -a85:function a85(a,b){this.a=a -this.b=b}, -a8o:function a8o(a){this.a=a}, -a8_:function a8_(a){this.a=a}, -a89:function a89(a){this.a=a}, -a82:function a82(){}, -a83:function a83(a){this.a=a}, -a84:function a84(a){this.a=a}, -a7Z:function a7Z(){}, -a80:function a80(a){this.a=a}, -a8u:function a8u(a){this.a=a}, -a8q:function a8q(a){this.a=a}, -a8s:function a8s(a){this.a=a}, -a8t:function a8t(a,b,c){this.a=a -this.b=b -this.c=c}, -a86:function a86(a,b){this.a=a -this.b=b}, -a87:function a87(a,b){this.a=a -this.b=b}, -a88:function a88(a,b){this.a=a -this.b=b}, -a7X:function a7X(a){this.a=a}, -a8c:function a8c(a){this.a=a}, -a8b:function a8b(a){this.a=a}, -a8d:function a8d(a,b){this.a=a -this.b=b}, -a8a:function a8a(a){this.a=a}, -Gq:function Gq(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0){var _=this -_.e=a -_.f=b -_.r=c -_.w=d -_.x=e -_.y=f -_.z=g -_.Q=h -_.as=i -_.at=j -_.ax=k -_.ay=l -_.ch=m -_.CW=n -_.cx=o -_.cy=p -_.db=q -_.dx=r -_.dy=s -_.fr=a0 -_.fx=a1 -_.fy=a2 -_.go=a3 -_.id=a4 -_.k1=a5 -_.k2=a6 -_.k3=a7 -_.k4=a8 -_.ok=a9 -_.p1=b0 -_.p2=b1 -_.p3=b2 -_.p4=b3 -_.R8=b4 -_.RG=b5 -_.rx=b6 -_.ry=b7 -_.to=b8 -_.c=b9 -_.a=c0}, -ax6:function ax6(a,b,c,d,e,f,g,h,i){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i}, -Ig:function Ig(a,b,c,d,e,f){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.a=f}, -a_s:function a_s(a,b){var _=this -_.d=a -_.a=null -_.b=b -_.c=null}, -ax7:function ax7(a){this.a=a}, -k8:function k8(a,b,c,d,e){var _=this -_.x=a -_.e=b -_.b=c -_.c=d -_.a=e}, -mU:function mU(a,b,c,d,e){var _=this -_.e=a -_.f=b -_.r=c -_.a=d -_.b=null -_.$ti=e}, -Je:function Je(a,b,c,d,e,f,g,h){var _=this -_.e=a -_.f=b -_.r=c -_.w=d -_.x=e -_.y=f -_.a=g -_.b=null -_.$ti=h}, -Jf:function Jf(a,b,c){var _=this -_.e=a -_.r=_.f=null -_.a=b -_.b=null -_.$ti=c}, -a_A:function a_A(a,b){this.e=a -this.a=b -this.b=null}, -VF:function VF(a,b){this.e=a -this.a=b -this.b=null}, -X8:function X8(a,b){this.a=a -this.b=b}, -Gr:function Gr(){}, -Wx:function Wx(){}, -Gs:function Gs(){}, -Wy:function Wy(){}, -Wz:function Wz(){}, -b4W(a){var s,r,q -for(s=a.length,r=!1,q=0;q>"),n=new A.a1(a,new A.aw4(),o) -for(s=new A.bz(n,n.gp(n),o.i("bz")),o=o.i("am.E"),r=null;s.u();){q=s.d -p=q==null?o.a(q):q -r=(r==null?p:r).wb(0,p)}if(r.ga8(r))return B.b.gM(a).a -return B.b.mT(B.b.gM(a).gWy(),r.ghB(r)).w}, -aM5(a,b){A.nf(a,new A.aw6(b),t.zP)}, -b1X(a,b){A.nf(a,new A.aw3(b),t.h7)}, -aE_(){return new A.aiA(A.m(t.l5,t.UJ),A.b5J())}, -aII(a,b){return new A.AU(b==null?A.aE_():b,a,null)}, -aaj(a){var s -for(;s=a.Q,s!=null;a=s){if(a.e==null)return null -if(a instanceof A.GG)return a}return null}, -uW(a){var s,r=A.aDd(a,!1,!0) -if(r==null)return null -s=A.aaj(r) -return s==null?null:s.dy}, -aA5:function aA5(a){this.a=a}, -xN:function xN(a,b){this.b=a -this.c=b}, -tf:function tf(a,b){this.a=a -this.b=b}, -TU:function TU(a,b){this.a=a -this.b=b}, -NK:function NK(){}, -aal:function aal(a,b){this.a=a -this.b=b}, -aak:function aak(){}, -xD:function xD(a,b){this.a=a -this.b=b}, -Wf:function Wf(a){this.a=a}, -a7a:function a7a(){}, -aw7:function aw7(a){this.a=a}, -a7i:function a7i(a,b){this.a=a -this.b=b}, -a7k:function a7k(a){this.a=a}, -a7j:function a7j(a){this.a=a}, -a7l:function a7l(a){this.a=a}, -a7m:function a7m(a){this.a=a}, -a7c:function a7c(a){this.a=a}, -a7d:function a7d(a){this.a=a}, -a7e:function a7e(){}, -a7f:function a7f(a){this.a=a}, -a7g:function a7g(a){this.a=a}, -a7h:function a7h(){}, -a7b:function a7b(a,b,c){this.a=a -this.b=b -this.c=c}, -a7n:function a7n(a){this.a=a}, -a7o:function a7o(a){this.a=a}, -a7p:function a7p(a){this.a=a}, -a7q:function a7q(a){this.a=a}, -ee:function ee(a,b,c){var _=this -_.a=a -_.b=b -_.c=c -_.d=null}, -aw4:function aw4(){}, -aw6:function aw6(a){this.a=a}, -aw5:function aw5(){}, -lu:function lu(a){this.a=a -this.b=null}, -aw2:function aw2(){}, -aw3:function aw3(a){this.a=a}, -aiA:function aiA(a,b){this.vJ$=a -this.a=b}, -aiB:function aiB(){}, -aiC:function aiC(){}, -aiD:function aiD(a){this.a=a}, -AU:function AU(a,b,c){this.c=a -this.f=b -this.a=c}, -GG:function GG(a,b,c,d,e,f,g,h,i){var _=this -_.dy=a -_.a=b -_.b=c -_.c=d -_.d=e -_.e=null -_.f=f -_.r=g -_.y=_.x=_.w=null -_.z=!1 -_.Q=null -_.as=h -_.ax=_.at=null -_.ay=!1 -_.aj$=0 -_.ag$=i -_.aU$=_.aB$=0 -_.aN$=!1}, -X0:function X0(a){var _=this -_.d=$ -_.a=null -_.b=a -_.c=null}, -RL:function RL(a){this.a=a -this.b=null}, -rj:function rj(){}, -PU:function PU(a){this.a=a -this.b=null}, -rC:function rC(){}, -QZ:function QZ(a){this.a=a -this.b=null}, -nH:function nH(a){this.a=a}, -Ah:function Ah(a,b){this.c=a -this.a=b -this.b=null}, -X1:function X1(){}, -ZC:function ZC(){}, -a2j:function a2j(){}, -a2k:function a2k(){}, -b1I(a){a.eH() -a.b3(A.aB1())}, -aXP(a,b){var s,r,q,p=a.e -p===$&&A.c() -s=b.e -s===$&&A.c() -r=p-s -if(r!==0)return r -q=b.as -if(a.as!==q)return q?-1:1 -return 0}, -aXQ(a,b){var s=A.W(b).i("a1<1,eY>") -return A.aX3(!0,A.a8(new A.a1(b,new A.a8A(),s),!0,s.i("am.E")),a,B.Iv,!0,B.EO,null)}, -aXO(a){a.bY() -a.b3(A.aOf())}, -AF(a){var s=a.a,r=s instanceof A.m5?s:null -return new A.Nj("",r,new A.mP())}, -b0e(a){var s=a.ae(),r=new A.hQ(s,a,B.R) -s.c=r -s.a=a -return r}, -aYF(a){return new A.fy(A.hG(t.v,t.X),a,B.R)}, -aZr(a){return new A.ih(A.d5(t.v),a,B.R)}, -aFc(a,b,c,d){var s=new A.bH(b,c,"widgets library",a,d,!1) -A.cY(s) -return s}, -kE:function kE(){}, -bB:function bB(a,b){this.a=a -this.$ti=b}, -m8:function m8(a,b){this.a=a -this.$ti=b}, -h:function h(){}, -ak:function ak(){}, -a5:function a5(){}, -axA:function axA(a,b){this.a=a -this.b=b}, -a9:function a9(){}, -aU:function aU(){}, -dZ:function dZ(){}, -bb:function bb(){}, -an:function an(){}, -OV:function OV(){}, -b2:function b2(){}, -eo:function eo(){}, -xK:function xK(a,b){this.a=a -this.b=b}, -Xp:function Xp(a){this.a=!1 -this.b=a}, -aug:function aug(a,b){this.a=a -this.b=b}, -a5m:function a5m(a,b,c,d){var _=this -_.a=null -_.b=a -_.c=b -_.d=!1 -_.e=null -_.f=c -_.r=0 -_.w=!1 -_.y=_.x=null -_.z=d}, -a5n:function a5n(a,b,c){this.a=a -this.b=b -this.c=c}, -Cl:function Cl(){}, -avG:function avG(a,b){this.a=a -this.b=b}, -ap:function ap(){}, -a8D:function a8D(a){this.a=a}, -a8B:function a8B(a){this.a=a}, -a8A:function a8A(){}, -a8F:function a8F(a){this.a=a}, -a8G:function a8G(a){this.a=a}, -a8H:function a8H(a){this.a=a}, -a8y:function a8y(a){this.a=a}, -a8C:function a8C(){}, -a8z:function a8z(a){this.a=a}, -Nj:function Nj(a,b,c){this.d=a -this.e=b -this.a=c}, -A_:function A_(){}, -a6n:function a6n(){}, -a6o:function a6o(){}, -wL:function wL(a,b){var _=this -_.d=_.c=_.b=_.a=_.ay=null -_.e=$ -_.f=a -_.r=null -_.w=b -_.z=_.y=null -_.Q=!1 -_.as=!0 -_.ax=_.at=!1}, -hQ:function hQ(a,b,c){var _=this -_.ok=a -_.p1=!1 -_.d=_.c=_.b=_.a=_.ay=null -_.e=$ -_.f=b -_.r=null -_.w=c -_.z=_.y=null -_.Q=!1 -_.as=!0 -_.ax=_.at=!1}, -CT:function CT(){}, -ro:function ro(a,b,c){var _=this -_.d=_.c=_.b=_.a=_.ay=null -_.e=$ -_.f=a -_.r=null -_.w=b -_.z=_.y=null -_.Q=!1 -_.as=!0 -_.ax=_.at=!1 -_.$ti=c}, -ahi:function ahi(a){this.a=a}, -fy:function fy(a,b,c){var _=this -_.al=a -_.d=_.c=_.b=_.a=_.ay=null -_.e=$ -_.f=b -_.r=null -_.w=c -_.z=_.y=null -_.Q=!1 -_.as=!0 -_.ax=_.at=!1}, -b9:function b9(){}, -ajW:function ajW(){}, -OU:function OU(a,b){var _=this -_.d=_.c=_.b=_.a=_.CW=_.ay=null -_.e=$ -_.f=a -_.r=null -_.w=b -_.z=_.y=null -_.Q=!1 -_.as=!0 -_.ax=_.at=!1}, -E8:function E8(a,b){var _=this -_.d=_.c=_.b=_.a=_.CW=_.ay=_.p1=null -_.e=$ -_.f=a -_.r=null -_.w=b -_.z=_.y=null -_.Q=!1 -_.as=!0 -_.ax=_.at=!1}, -ih:function ih(a,b,c){var _=this -_.p1=$ -_.p2=a -_.d=_.c=_.b=_.a=_.CW=_.ay=null -_.e=$ -_.f=b -_.r=null -_.w=c -_.z=_.y=null -_.Q=!1 -_.as=!0 -_.ax=_.at=!1}, -agg:function agg(a){this.a=a}, -o1:function o1(a,b,c){this.a=a -this.b=b -this.$ti=c}, -YB:function YB(a,b){var _=this -_.d=_.c=_.b=_.a=null -_.e=$ -_.f=a -_.r=null -_.w=b -_.z=_.y=null -_.Q=!1 -_.as=!0 -_.ax=_.at=!1}, -YG:function YG(a){this.a=a}, -a07:function a07(){}, -hF(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8){return new A.NW(b,a5,a6,a3,a4,s,a1,a2,a0,f,l,h,j,k,i,g,m,o,n,q,r,p,a,d,c,!1,a8,e)}, -qG:function qG(){}, -cx:function cx(a,b,c){this.a=a -this.b=b -this.$ti=c}, -NW:function NW(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.w=f -_.x=g -_.y=h -_.z=i -_.ay=j -_.cy=k -_.x2=l -_.xr=m -_.y1=n -_.y2=o -_.b_=p -_.bn=q -_.aG=r -_.bd=s -_.bk=a0 -_.B=a1 -_.R=a2 -_.au=a3 -_.aY=a4 -_.b9=a5 -_.c0=a6 -_.aj=a7 -_.a=a8}, -aaZ:function aaZ(a){this.a=a}, -ab_:function ab_(a,b){this.a=a -this.b=b}, -ab0:function ab0(a){this.a=a}, -ab6:function ab6(a,b){this.a=a -this.b=b}, -ab7:function ab7(a){this.a=a}, -ab8:function ab8(a,b){this.a=a -this.b=b}, -ab9:function ab9(a){this.a=a}, -aba:function aba(a,b){this.a=a -this.b=b}, -abb:function abb(a){this.a=a}, -abc:function abc(a,b){this.a=a -this.b=b}, -abd:function abd(a){this.a=a}, -ab1:function ab1(a,b){this.a=a -this.b=b}, -ab2:function ab2(a){this.a=a}, -ab3:function ab3(a,b){this.a=a -this.b=b}, -ab4:function ab4(a){this.a=a}, -ab5:function ab5(a,b){this.a=a -this.b=b}, -l2:function l2(a,b,c,d,e){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.a=e}, -w8:function w8(a,b){var _=this -_.d=a -_.a=_.e=null -_.b=b -_.c=null}, -X6:function X6(a,b,c,d){var _=this -_.e=a -_.f=b -_.c=c -_.a=d}, -alb:function alb(){}, -asW:function asW(a){this.a=a}, -at0:function at0(a){this.a=a}, -at_:function at_(a){this.a=a}, -asX:function asX(a){this.a=a}, -asY:function asY(a){this.a=a}, -asZ:function asZ(a,b){this.a=a -this.b=b}, -at1:function at1(a){this.a=a}, -at2:function at2(a){this.a=a}, -at3:function at3(a,b){this.a=a -this.b=b}, -aIW(a,b,c){var s=A.m(t.K,t.U3) -a.b3(new A.abY(c,new A.abX(s,b))) -return s}, -aLS(a,b){var s,r=a.ga_() -r.toString -t.x.a(r) -s=r.bt(0,b==null?null:b.ga_()) -r=r.gq(r) -return A.fD(s,new A.y(0,0,0+r.a,0+r.b))}, -v2:function v2(a,b){this.a=a -this.b=b}, -qJ:function qJ(a,b,c){this.c=a -this.e=b -this.a=c}, -abX:function abX(a,b){this.a=a -this.b=b}, -abY:function abY(a,b){this.a=a -this.b=b}, -xU:function xU(a,b){var _=this -_.d=a -_.e=null -_.f=!0 -_.a=null -_.b=b -_.c=null}, -au8:function au8(a,b){this.a=a -this.b=b}, -au7:function au7(){}, -au4:function au4(a,b,c,d,e,f,g,h,i,j,k){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.at=_.as=_.Q=$}, -mX:function mX(a,b){var _=this -_.a=a -_.b=$ -_.c=null -_.d=b -_.f=_.e=$ -_.r=null -_.x=_.w=!1}, -au5:function au5(a){this.a=a}, -au6:function au6(a,b){this.a=a -this.b=b}, -v1:function v1(a,b){this.a=a -this.b=b}, -abW:function abW(){}, -abV:function abV(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -abU:function abU(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f}, -qL:function qL(a,b,c){this.c=a -this.d=b -this.a=c}, -nW(a,b,c,d){return new A.dK(a,d,b,c,null)}, -dK:function dK(a,b,c,d,e){var _=this -_.c=a -_.d=b -_.x=c -_.z=d -_.a=e}, -cy:function cy(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -v3(a,b,c){return new A.qQ(b,a,c)}, -mb(a,b){return new A.eT(new A.adh(null,b,a),null)}, -adi(a){var s,r,q,p,o,n,m=A.aIZ(a).P(a),l=m.a,k=l==null -if(!k)if(m.b!=null)if(m.c!=null)if(m.d!=null)if(m.e!=null)if(m.f!=null){s=m.r -s=(s==null?null:A.R(s,0,1))!=null}else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -if(s)l=m -else{if(k)l=24 -k=m.b -if(k==null)k=0 -s=m.c -if(s==null)s=400 -r=m.d -if(r==null)r=0 -q=m.e -if(q==null)q=48 -p=m.f -if(p==null)p=B.k -o=m.r -o=o==null?null:A.R(o,0,1) -if(o==null)o=A.R(1,0,1) -n=m.w -l=m.vi(p,k,r,o,q,n==null?null:n,l,s)}return l}, -aIZ(a){var s=a.an(t.Oh),r=s==null?null:s.w -return r==null?B.Gc:r}, -qQ:function qQ(a,b,c){this.w=a -this.b=b -this.a=c}, -adh:function adh(a,b,c){this.a=a -this.b=b -this.c=c}, -ma(a,b,c){var s,r,q,p,o,n,m,l,k,j,i=null -if(a==b&&a!=null)return a -s=a==null -r=s?i:a.a -q=b==null -r=A.a3(r,q?i:b.a,c) -p=s?i:a.b -p=A.a3(p,q?i:b.b,c) -o=s?i:a.c -o=A.a3(o,q?i:b.c,c) -n=s?i:a.d -n=A.a3(n,q?i:b.d,c) -m=s?i:a.e -m=A.a3(m,q?i:b.e,c) -l=s?i:a.f -l=A.E(l,q?i:b.f,c) -if(s)k=i -else{k=a.r -k=k==null?i:A.R(k,0,1)}if(q)j=i -else{j=b.r -j=j==null?i:A.R(j,0,1)}j=A.a3(k,j,c) -s=s?i:a.w -return new A.d6(r,p,o,n,m,l,j,A.b_Y(s,q?i:b.w,c))}, -d6:function d6(a,b,c,d,e,f,g,h){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h}, -Xl:function Xl(){}, -tJ(a,b){var s,r -a.an(t.l4) -s=$.Ky() -r=A.ct(a,B.bP) -r=r==null?null:r.b -if(r==null)r=1 -return new A.v6(s,r,A.BN(a),A.dd(a),b,A.bA())}, -aDj(a,b,c){var s=null -return new A.nZ(A.aE1(s,s,new A.vF(a,1,s)),c,b,s)}, -Op(a,b,c){var s=null -return new A.nZ(A.aE1(s,s,new A.zo(a,s,s)),c,b,s)}, -nZ:function nZ(a,b,c,d){var _=this -_.c=a -_.r=b -_.w=c -_.a=d}, -GT:function GT(a){var _=this -_.f=_.e=_.d=null -_.r=!1 -_.w=$ -_.x=null -_.y=!1 -_.z=$ -_.a=_.ax=_.at=_.as=_.Q=null -_.b=a -_.c=null}, -auc:function auc(a,b,c){this.a=a -this.b=b -this.c=c}, -aud:function aud(a){this.a=a}, -aue:function aue(a){this.a=a}, -auf:function auf(a){this.a=a}, -a22:function a22(){}, -aWV(a,b){return new A.lT(a,b)}, -aHb(a,b,c,d,e){return new A.z8(a,d,e,b,c,null,null)}, -aVT(a,b,c,d){return new A.z5(a,d,b,c,null,null)}, -z3(a,b,c,d){return new A.z2(a,d,b,c,null,null)}, -pY:function pY(a,b){this.a=a -this.b=b}, -lT:function lT(a,b){this.a=a -this.b=b}, -At:function At(a,b){this.a=a -this.b=b}, -lX:function lX(a,b){this.a=a -this.b=b}, -pW:function pW(a,b){this.a=a -this.b=b}, -rc:function rc(a,b){this.a=a -this.b=b}, -t7:function t7(a,b){this.a=a -this.b=b}, -Os:function Os(){}, -vb:function vb(){}, -adB:function adB(a){this.a=a}, -adA:function adA(a){this.a=a}, -adz:function adz(a,b){this.a=a -this.b=b}, -tS:function tS(){}, -a4b:function a4b(){}, -z1:function z1(a,b,c,d,e,f,g,h){var _=this -_.r=a -_.y=b -_.z=c -_.Q=d -_.c=e -_.d=f -_.e=g -_.a=h}, -Ux:function Ux(a,b,c){var _=this -_.fx=_.fr=_.dy=_.dx=_.db=_.cy=_.cx=_.CW=null -_.e=_.d=$ -_.eV$=a -_.cb$=b -_.a=null -_.b=c -_.c=null}, -aqC:function aqC(){}, -aqD:function aqD(){}, -aqE:function aqE(){}, -aqF:function aqF(){}, -aqG:function aqG(){}, -aqH:function aqH(){}, -aqI:function aqI(){}, -aqJ:function aqJ(){}, -z6:function z6(a,b,c,d,e,f){var _=this -_.r=a -_.w=b -_.c=c -_.d=d -_.e=e -_.a=f}, -UA:function UA(a,b,c){var _=this -_.CW=null -_.e=_.d=$ -_.eV$=a -_.cb$=b -_.a=null -_.b=c -_.c=null}, -aqM:function aqM(){}, -z8:function z8(a,b,c,d,e,f,g){var _=this -_.r=a -_.w=b -_.x=c -_.c=d -_.d=e -_.e=f -_.a=g}, -UC:function UC(a,b,c){var _=this -_.dy=_.dx=_.db=_.cy=_.cx=_.CW=null -_.e=_.d=$ -_.eV$=a -_.cb$=b -_.a=null -_.b=c -_.c=null}, -aqR:function aqR(){}, -aqS:function aqS(){}, -aqT:function aqT(){}, -aqU:function aqU(){}, -aqV:function aqV(){}, -aqW:function aqW(){}, -z5:function z5(a,b,c,d,e,f){var _=this -_.r=a -_.w=b -_.c=c -_.d=d -_.e=e -_.a=f}, -Uz:function Uz(a,b,c){var _=this -_.z=null -_.e=_.d=_.Q=$ -_.eV$=a -_.cb$=b -_.a=null -_.b=c -_.c=null}, -aqL:function aqL(){}, -z2:function z2(a,b,c,d,e,f){var _=this -_.r=a -_.w=b -_.c=c -_.d=d -_.e=e -_.a=f}, -Uy:function Uy(a,b,c){var _=this -_.CW=null -_.e=_.d=$ -_.eV$=a -_.cb$=b -_.a=null -_.b=c -_.c=null}, -aqK:function aqK(){}, -z7:function z7(a,b,c,d,e,f,g,h,i,j,k){var _=this -_.r=a -_.w=b -_.x=c -_.z=d -_.Q=e -_.as=f -_.at=g -_.c=h -_.d=i -_.e=j -_.a=k}, -UB:function UB(a,b,c){var _=this -_.db=_.cy=_.cx=_.CW=null -_.e=_.d=$ -_.eV$=a -_.cb$=b -_.a=null -_.b=c -_.c=null}, -aqN:function aqN(){}, -aqO:function aqO(){}, -aqP:function aqP(){}, -aqQ:function aqQ(){}, -xY:function xY(){}, -aYG(a,b,c,d){var s=a.fv(d) -if(s==null)return -c.push(s) -d.a(s.gaF()) -return}, -bD(a,b,c){var s,r,q,p,o,n -if(b==null)return a.an(c) -s=A.b([],t.Fa) -A.aYG(a,b,s,c) -if(s.length===0)return null -r=B.b.gL(s) -for(q=s.length,p=0;pMath.abs(s.a))s=new A.k(n,s.b) -if(Math.abs(o)>Math.abs(s.b))s=new A.k(s.a,o)}return A.aFd(s)}, -aFd(a){return new A.k(A.a3f(B.d.ad(a.a,9)),A.a3f(B.d.ad(a.b,9)))}, -b3E(a,b){if(a.j(0,b))return null -return Math.abs(b.a-a.a)>Math.abs(b.b-a.b)?B.aC:B.aq}, -Bi:function Bi(a,b,c){this.x=a -this.y=b -this.a=c}, -H4:function H4(a,b,c,d,e){var _=this -_.d=null -_.e=a -_.f=b -_.w=_.r=null -_.z=_.y=_.x=$ -_.at=_.as=_.Q=null -_.ay=_.ax=0 -_.ch=null -_.d5$=c -_.aZ$=d -_.a=null -_.b=e -_.c=null}, -auC:function auC(){}, -Xz:function Xz(a,b,c,d,e,f,g){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.w=f -_.a=g}, -TS:function TS(a,b){var _=this -_.a=a -_.aj$=0 -_.ag$=b -_.aU$=_.aB$=0 -_.aN$=!1}, -GM:function GM(a,b){this.a=a -this.b=b}, -ahg:function ahg(a,b){this.a=a -this.b=b}, -JO:function JO(){}, -aNp(a,b,c,d){var s=new A.bH(b,c,"widgets library",a,d,!1) -A.cY(s) -return s}, -nB:function nB(){}, -y1:function y1(a,b,c){var _=this -_.d=_.c=_.b=_.a=_.CW=_.ay=_.p1=null -_.e=$ -_.f=a -_.r=null -_.w=b -_.z=_.y=null -_.Q=!1 -_.as=!0 -_.ax=_.at=!1 -_.$ti=c}, -auN:function auN(a,b){this.a=a -this.b=b}, -auO:function auO(){}, -auP:function auP(){}, -iq:function iq(){}, -ob:function ob(a,b){this.c=a -this.a=b}, -HX:function HX(a,b,c,d,e){var _=this -_.K1$=a -_.BI$=b -_.X3$=c -_.C$=d -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=e -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -a2p:function a2p(){}, -a2q:function a2q(){}, -b41(a,b){var s,r,q,p,o,n,m,l,k={},j=t.A,i=t.z,h=A.m(j,i) -k.a=null -s=A.aE(j) -r=A.b([],t.a9) -for(j=b.length,q=0;q>")),i).bQ(0,new A.aAm(k,h),t.e3)}, -BN(a){var s=a.an(t.Gk) -return s==null?null:s.r.f}, -h9(a,b,c){var s=a.an(t.Gk) -return s==null?null:c.i("0?").a(J.aN(s.r.e,b))}, -yg:function yg(a,b){this.a=a -this.b=b}, -aAk:function aAk(a){this.a=a}, -aAl:function aAl(){}, -aAm:function aAm(a,b){this.a=a -this.b=b}, -hK:function hK(){}, -a1J:function a1J(){}, -MF:function MF(){}, -Hd:function Hd(a,b,c,d){var _=this -_.r=a -_.w=b -_.b=c -_.a=d}, -BM:function BM(a,b,c,d){var _=this -_.c=a -_.d=b -_.e=c -_.a=d}, -Y_:function Y_(a,b,c){var _=this -_.d=a -_.e=b -_.a=_.f=null -_.b=c -_.c=null}, -auZ:function auZ(a){this.a=a}, -av_:function av_(a,b){this.a=a -this.b=b}, -auY:function auY(a,b,c){this.a=a -this.b=b -this.c=c}, -aZa(a,b){var s -a.an(t.bS) -s=A.aZc(a,b) -if(s==null)return null -a.y7(s,null) -return b.a(s.gaF())}, -aZc(a,b){var s,r,q,p=a.fv(b) -if(p==null)return null -s=a.fv(t.bS) -if(s!=null){r=s.e -r===$&&A.c() -q=p.e -q===$&&A.c() -q=r>q -r=q}else r=!1 -if(r)return null -return p}, -aZb(a,b){var s={} -s.a=null -a.je(new A.af7(s,b)) -s=s.a -if(s==null)s=null -else{s=s.ok -s.toString}return b.i("0?").a(s)}, -af8(a,b){var s={} -s.a=null -a.je(new A.af9(s,b)) -s=s.a -if(s==null)s=null -else{s=s.ok -s.toString}return b.i("0?").a(s)}, -aDx(a,b){var s={} -s.a=null -a.je(new A.af6(s,b)) -s=s.a -s=s==null?null:s.ga_() -return b.i("0?").a(s)}, -af7:function af7(a,b){this.a=a -this.b=b}, -af9:function af9(a,b){this.a=a -this.b=b}, -af6:function af6(a,b){this.a=a -this.b=b}, -aJg(a,b){var s,r=b.a,q=a.a -if(rq?B.e.Y(0,new A.k(q-r,0)):B.e}r=b.b -q=a.b -if(rq)s=s.Y(0,new A.k(0,q-r))}return b.cz(s)}, -aJh(a,b,c){return new A.BP(a,null,null,null,b,c)}, -kO:function kO(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -Tx:function Tx(a,b){this.a=a -this.b=b}, -aoV:function aoV(){}, -r2:function r2(){this.b=this.a=null}, -afa:function afa(a,b){this.a=a -this.b=b}, -BP:function BP(a,b,c,d,e,f){var _=this -_.f=a -_.a=b -_.b=c -_.c=d -_.d=e -_.e=f}, -D1:function D1(a,b,c,d,e,f){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.a=f}, -Y1:function Y1(a,b,c){this.c=a -this.d=b -this.a=c}, -Wq:function Wq(a,b){this.b=a -this.c=b}, -Y0:function Y0(a,b,c,d,e){var _=this -_.e=a -_.f=b -_.r=c -_.c=d -_.a=e}, -ZY:function ZY(a,b,c,d,e){var _=this -_.v=a -_.V=b -_.am=c -_.C$=d -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=e -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -kP(a,b,c){return new A.re(b,a,c)}, -aDD(a,b,c,d,e,f){return A.kP(a,A.bD(b,null,t.w).w.LB(c,!0,!0,f),null)}, -ct(a,b){var s=A.bD(a,b,t.w) -return s==null?null:s.w}, -Q4:function Q4(a,b){this.a=a -this.b=b}, -eP:function eP(a,b){this.a=a -this.b=b}, -BW:function BW(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q}, -afz:function afz(a){this.a=a}, -re:function re(a,b,c){this.w=a -this.b=b -this.a=c}, -agI:function agI(a,b){this.a=a -this.b=b}, -Ho:function Ho(a,b,c){this.c=a -this.e=b -this.a=c}, -Yc:function Yc(a){var _=this -_.a=_.e=_.d=null -_.b=a -_.c=null}, -avo:function avo(a,b){this.a=a -this.b=b}, -a26:function a26(){}, -aDH(a,b,c,d,e,f,g){return new A.PD(c,d,e,!0,f,b,g,null)}, -PD:function PD(a,b,c,d,e,f,g,h){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.w=f -_.x=g -_.a=h}, -ag4:function ag4(a,b){this.a=a -this.b=b}, -KN:function KN(a,b,c,d,e){var _=this -_.e=a -_.f=b -_.r=c -_.c=d -_.a=e}, -xs:function xs(a,b,c,d,e,f,g,h,i){var _=this -_.al=null -_.k3=_.k2=!1 -_.ok=_.k4=null -_.at=a -_.ay=b -_.ch=c -_.cx=_.CW=null -_.cy=!1 -_.db=null -_.f=d -_.r=e -_.a=f -_.b=null -_.c=g -_.d=h -_.e=i}, -UJ:function UJ(a){this.a=a}, -Yl:function Yl(a,b,c){this.c=a -this.d=b -this.a=c}, -PR:function PR(a,b,c,d,e,f){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.a=f}, -J3:function J3(a,b){this.a=a -this.b=b}, -ayS:function ayS(a,b,c){var _=this -_.d=a -_.e=b -_.f=c -_.c=_.b=null}, -aJD(a,b,c,d,e,f,g,h,i){return new A.Ch(b,f,g,d,i,e,h,a,c)}, -aJG(a){return A.jF(a,!1).as2(null)}, -jF(a,b){var s,r,q -if(a instanceof A.hQ){s=a.ok -s.toString -s=s instanceof A.jE}else s=!1 -if(s){s=a.ok -s.toString -t.uK.a(s) -r=s}else r=null -if(b){q=a.ap4(t.uK) -r=q==null?r:q -s=r}else{if(r==null)r=a.vS(t.uK) -s=r}s.toString -return s}, -aJF(a){var s,r=a.ok -r.toString -if(r instanceof A.jE)s=r -else s=null -if(s==null)s=a.vS(t.uK) -return s}, -aZB(a,b){var s,r,q,p,o,n,m=null,l=A.b([],t.ny) -if(B.c.bJ(b,"/")&&b.length>1){b=B.c.bK(b,1) -s=t.z -l.push(a.zH("/",!0,m,s)) -r=b.split("/") -if(b.length!==0)for(q=r.length,p=0,o="";p=3}, -b24(a){return a.gav4()}, -aEE(a){return new A.awU(a)}, -aJE(a,b){var s,r,q,p -for(s=a.a,r=s.gD_(),q=r.length,p=0;p2?s[2]:null,B.lk) -case 1:s=s.em(a,1)[1] -s.toString -t.pO.a(A.aZM(new A.a5y(A.ef(s)))) -return null}}, -wm:function wm(a,b){this.a=a -this.b=b}, -cK:function cK(){}, -ak_:function ak_(a){this.a=a}, -ajZ:function ajZ(a){this.a=a}, -jN:function jN(a,b){this.a=a -this.b=b}, -oo:function oo(){}, -qK:function qK(a,b,c){this.f=a -this.b=b -this.a=c}, -ajY:function ajY(){}, -TT:function TT(){}, -ME:function ME(a){this.$ti=a}, -Ch:function Ch(a,b,c,d,e,f,g,h,i){var _=this -_.f=a -_.r=b -_.w=c -_.x=d -_.y=e -_.Q=f -_.as=g -_.at=h -_.a=i}, -agM:function agM(){}, -fR:function fR(a,b){this.a=a -this.b=b}, -YA:function YA(a,b,c){var _=this -_.a=null -_.b=a -_.c=b -_.d=c}, -k7:function k7(a,b,c,d,e,f,g){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=null -_.x=!0 -_.y=!1}, -awT:function awT(a,b){this.a=a -this.b=b}, -awR:function awR(){}, -awS:function awS(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -awQ:function awQ(a,b){this.a=a -this.b=b}, -awU:function awU(a){this.a=a}, -pk:function pk(){}, -yb:function yb(a,b){this.a=a -this.b=b}, -ya:function ya(a,b){this.a=a -this.b=b}, -Hx:function Hx(a,b){this.a=a -this.b=b}, -Hy:function Hy(a,b){this.a=a -this.b=b}, -jE:function jE(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q){var _=this -_.d=$ -_.e=a -_.f=b -_.r=c -_.w=d -_.x=e -_.y=f -_.z=!1 -_.Q=null -_.as=$ -_.at=g -_.ax=null -_.ch=_.ay=!1 -_.CW=0 -_.cx=h -_.cy=i -_.bP$=j -_.fP$=k -_.qT$=l -_.eu$=m -_.fQ$=n -_.d5$=o -_.aZ$=p -_.a=null -_.b=q -_.c=null}, -agL:function agL(a){this.a=a}, -agK:function agK(){}, -agJ:function agJ(a){this.a=a}, -Ia:function Ia(a,b){this.a=a -this.b=b}, -a_g:function a_g(){}, -Ys:function Ys(a,b,c,d){var _=this -_.c=a -_.d=b -_.e=c -_.a=d -_.b=null}, -aEp:function aEp(a,b,c,d){var _=this -_.c=a -_.d=b -_.e=c -_.a=d -_.b=null}, -Xc:function Xc(a){var _=this -_.y=null -_.a=!1 -_.c=_.b=null -_.aj$=0 -_.ag$=a -_.aU$=_.aB$=0 -_.aN$=!1}, -aua:function aua(){}, -avD:function avD(){}, -Hz:function Hz(){}, -HA:function HA(){}, -PV:function PV(){}, -eH:function eH(a,b,c,d){var _=this -_.d=a -_.b=b -_.a=c -_.$ti=d}, -HB:function HB(a,b,c){var _=this -_.d=_.c=_.b=_.a=_.ay=null -_.e=$ -_.f=a -_.r=null -_.w=b -_.z=_.y=null -_.Q=!1 -_.as=!0 -_.ax=_.at=!1 -_.$ti=c}, -iL:function iL(){}, -a2c:function a2c(){}, -rl(a,b){return new A.mo(a,b,A.eu(null,t.An),new A.bB(null,t.af))}, -b20(a){return a.aa(0)}, -b2_(a,b){var s,r=a.an(t.Am) -if(r!=null)return r -s=A.b([A.nM("No Overlay widget found."),A.bu(A.u(a.gaF()).k(0)+" widgets require an Overlay widget ancestor.\nAn overlay lets widgets float on top of other widget children."),A.Nh("To introduce an Overlay widget, you can either directly include one, or use a widget that contains an Overlay itself, such as a Navigator, WidgetApp, MaterialApp, or CupertinoApp.")],t.E) -B.b.K(s,a.aoc(B.V7)) -throw A.d(A.uU(s))}, -mo:function mo(a,b,c,d){var _=this -_.a=a -_.b=!1 -_.c=b -_.d=c -_.e=null -_.f=d -_.r=!1}, -ah3:function ah3(a){this.a=a}, -mY:function mY(a,b,c,d){var _=this -_.c=a -_.d=b -_.e=c -_.a=d}, -yd:function yd(a){var _=this -_.d=$ -_.e=null -_.r=_.f=$ -_.a=null -_.b=a -_.c=null}, -avI:function avI(){}, -vH:function vH(a,b,c){this.c=a -this.d=b -this.a=c}, -vJ:function vJ(a,b,c,d){var _=this -_.d=a -_.d5$=b -_.aZ$=c -_.a=null -_.b=d -_.c=null}, -ah8:function ah8(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -ah7:function ah7(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -ah9:function ah9(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -ah6:function ah6(){}, -ah5:function ah5(){}, -J1:function J1(a,b,c,d){var _=this -_.e=a -_.f=b -_.c=c -_.a=d}, -a0W:function a0W(a,b,c){var _=this -_.p1=$ -_.p2=a -_.d=_.c=_.b=_.a=_.CW=_.ay=null -_.e=$ -_.f=b -_.r=null -_.w=c -_.z=_.y=null -_.Q=!1 -_.as=!0 -_.ax=_.at=!1}, -tC:function tC(){}, -awC:function awC(a){this.a=a}, -yA:function yA(a,b,c){var _=this -_.y=_.x=_.w=_.r=_.f=_.e=_.at=null -_.cn$=a -_.ab$=b -_.a=c}, -pr:function pr(a,b,c,d,e,f,g,h){var _=this -_.B=null -_.R=a -_.a1=b -_.ar=c -_.az=!1 -_.aJ=d -_.dG$=e -_.a3$=f -_.d7$=g -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=h -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -awG:function awG(a){this.a=a}, -awE:function awE(a){this.a=a}, -awF:function awF(a){this.a=a}, -awD:function awD(a){this.a=a}, -ah4:function ah4(){this.b=this.a=null}, -Cu:function Cu(a,b,c,d){var _=this -_.c=a -_.d=b -_.e=c -_.a=d}, -YP:function YP(a){var _=this -_.d=null -_.e=!0 -_.a=_.f=null -_.b=a -_.c=null}, -avJ:function avJ(a,b){this.a=a -this.b=b}, -avL:function avL(a,b){this.a=a -this.b=b}, -avK:function avK(a){this.a=a}, -pn:function pn(a,b,c){var _=this -_.a=a -_.b=b -_.c=c -_.j3$=_.j2$=_.j1$=_.e=_.d=null}, -tB:function tB(a,b,c,d){var _=this -_.f=a -_.r=b -_.b=c -_.a=d}, -ye:function ye(a,b,c,d){var _=this -_.c=a -_.d=b -_.e=c -_.a=d}, -YO:function YO(a,b){var _=this -_.d=_.c=_.b=_.a=_.CW=_.ay=_.p2=_.p1=null -_.e=$ -_.f=a -_.r=null -_.w=b -_.z=_.y=null -_.Q=!1 -_.as=!0 -_.ax=_.at=!1}, -W8:function W8(a,b){this.c=a -this.a=b}, -pq:function pq(a,b,c){var _=this -_.v=a -_.V=!1 -_.am=!0 -_.e1=_.br=!1 -_.j3$=_.j2$=_.j1$=null -_.C$=b -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=c -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -awm:function awm(a){this.a=a}, -awn:function awn(a){this.a=a}, -HY:function HY(a,b){var _=this -_.v=null -_.C$=a -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=b -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -YQ:function YQ(){}, -a2n:function a2n(){}, -a2o:function a2o(){}, -JW:function JW(){}, -a2u:function a2u(){}, -aIR(a,b,c){return new A.B2(a,c,b,null)}, -aLR(a,b,c){var s,r,q=null,p=t.Y,o=new A.ay(0,0,p),n=new A.ay(0,0,p),m=new A.GN(B.i_,o,n,b,a,$.aO()),l=A.bO(q,q,q,q,c) -l.bO() -s=l.d6$ -s.b=!0 -s.a.push(m.gFa()) -m.b!==$&&A.cQ() -m.b=l -r=A.ci(B.cc,l,q) -r.a.U(0,m.gcJ()) -t.o.a(r) -p=p.i("aX") -m.r!==$&&A.cQ() -m.r=new A.aX(r,o,p) -m.x!==$&&A.cQ() -m.x=new A.aX(r,n,p) -p=c.vm(m.gak4()) -m.y!==$&&A.cQ() -m.y=p -return m}, -b0g(a,b,c){return new A.Ew(a,c,b,null)}, -B2:function B2(a,b,c,d){var _=this -_.e=a -_.f=b -_.w=c -_.a=d}, -GO:function GO(a,b,c,d){var _=this -_.r=_.f=_.e=_.d=null -_.w=a -_.d5$=b -_.aZ$=c -_.a=null -_.b=d -_.c=null}, -xS:function xS(a,b){this.a=a -this.b=b}, -GN:function GN(a,b,c,d,e,f){var _=this -_.a=a -_.b=$ -_.c=null -_.e=_.d=0 -_.f=b -_.r=$ -_.w=c -_.y=_.x=$ -_.z=null -_.as=_.Q=0.5 -_.at=0 -_.ax=d -_.ay=e -_.aj$=0 -_.ag$=f -_.aU$=_.aB$=0 -_.aN$=!1}, -au_:function au_(a){this.a=a}, -X7:function X7(a,b,c,d){var _=this -_.b=a -_.c=b -_.d=c -_.a=d}, -a0a:function a0a(a,b){this.a=a -this.b=b}, -Ew:function Ew(a,b,c,d){var _=this -_.c=a -_.e=b -_.f=c -_.a=d}, -IN:function IN(a,b,c){var _=this -_.d=$ -_.f=_.e=null -_.r=0 -_.w=!0 -_.d5$=a -_.aZ$=b -_.a=null -_.b=c -_.c=null}, -axJ:function axJ(a,b,c){this.a=a -this.b=b -this.c=c}, -yu:function yu(a,b){this.a=a -this.b=b}, -IM:function IM(a,b,c,d){var _=this -_.b=_.a=$ -_.c=a -_.d=b -_.e=0 -_.f=c -_.aj$=0 -_.ag$=d -_.aU$=_.aB$=0 -_.aN$=!1}, -Cv:function Cv(a,b){this.a=a -this.hE$=b}, -HF:function HF(){}, -JK:function JK(){}, -K_:function K_(){}, -aJN(a,b){var s=a.gaF() -return!(s instanceof A.vK)}, -aJP(a){var s=a.X8(t.Mf) -return s==null?null:s.d}, -II:function II(a){this.a=a}, -rm:function rm(){this.a=null}, -aha:function aha(a){this.a=a}, -vK:function vK(a,b,c){this.c=a -this.d=b -this.a=c}, -kX:function kX(){}, -afE:function afE(){}, -ahI:function ahI(){}, -MC:function MC(a,b){this.a=a -this.d=b}, -aK4(a,b){return new A.w4(b,B.aq,B.Ow,a,null)}, -aK5(a){return new A.w4(null,null,B.OI,a,null)}, -aK6(a,b){var s,r=a.X8(t.bb) -if(r==null)return!1 -s=A.S4(a).l3(a) -if(r.w.t(0,s))return r.r===b -return!1}, -w5(a){var s=a.an(t.bb) -return s==null?null:s.f}, -w4:function w4(a,b,c,d,e){var _=this -_.f=a -_.r=b -_.w=c -_.b=d -_.a=e}, -oI(a){var s=a.an(t.lQ) -return s==null?null:s.f}, -U0(a,b){return new A.Fm(a,b,null)}, -oH:function oH(a,b,c){this.c=a -this.d=b -this.a=c}, -a_h:function a_h(a,b,c,d,e,f){var _=this -_.bP$=a -_.fP$=b -_.qT$=c -_.eu$=d -_.fQ$=e -_.a=null -_.b=f -_.c=null}, -Fm:function Fm(a,b,c){this.f=a -this.b=b -this.a=c}, -Dy:function Dy(a,b,c){this.c=a -this.d=b -this.a=c}, -I9:function I9(a){var _=this -_.d=null -_.e=!1 -_.r=_.f=null -_.w=!1 -_.a=null -_.b=a -_.c=null}, -awL:function awL(a){this.a=a}, -awK:function awK(a,b){this.a=a -this.b=b}, -dN:function dN(){}, -iR:function iR(){}, -ajU:function ajU(a,b){this.a=a -this.b=b}, -azy:function azy(){}, -a2v:function a2v(){}, -d7:function d7(){}, -k6:function k6(){}, -I8:function I8(){}, -Du:function Du(a,b,c){var _=this -_.cy=a -_.y=null -_.a=!1 -_.c=_.b=null -_.aj$=0 -_.ag$=b -_.aU$=_.aB$=0 -_.aN$=!1 -_.$ti=c}, -Dt:function Dt(a,b){var _=this -_.cy=a -_.y=null -_.a=!1 -_.c=_.b=null -_.aj$=0 -_.ag$=b -_.aU$=_.aB$=0 -_.aN$=!1}, -rJ:function rJ(){}, -wl:function wl(){}, -azz:function azz(){}, -rM:function rM(a,b){this.b=a -this.c=b}, -RS:function RS(a,b,c,d,e,f,g){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.a=f -_.$ti=g}, -RQ:function RQ(a,b){this.a=a -this.b=b}, -ym:function ym(a,b,c,d,e,f,g,h){var _=this -_.e=_.d=null -_.f=a -_.r=$ -_.w=!1 -_.bP$=b -_.fP$=c -_.qT$=d -_.eu$=e -_.fQ$=f -_.a=null -_.b=g -_.c=null -_.$ti=h}, -ax0:function ax0(a){this.a=a}, -ax1:function ax1(a){this.a=a}, -ax_:function ax_(a){this.a=a}, -awY:function awY(a,b,c){this.a=a -this.b=b -this.c=c}, -awV:function awV(a){this.a=a}, -awW:function awW(a,b){this.a=a -this.b=b}, -awZ:function awZ(){}, -awX:function awX(){}, -a_m:function a_m(a,b,c,d,e,f,g){var _=this -_.f=a -_.r=b -_.w=c -_.x=d -_.y=e -_.b=f -_.a=g}, -a_e:function a_e(a){var _=this -_.y=null -_.a=!1 -_.c=_.b=null -_.aj$=0 -_.ag$=a -_.aU$=_.aB$=0 -_.aN$=!1}, -yF:function yF(){}, -PE(a,b){var s=a.an(t.Fe),r=s==null?null:s.x -return b.i("dL<0>?").a(r)}, -vI:function vI(){}, -ec:function ec(){}, -apP:function apP(a,b,c){this.a=a -this.b=b -this.c=c}, -apN:function apN(a,b,c){this.a=a -this.b=b -this.c=c}, -apO:function apO(a,b,c){this.a=a -this.b=b -this.c=c}, -apM:function apM(a,b){this.a=a -this.b=b}, -P4:function P4(){}, -Wh:function Wh(a,b){this.e=a -this.a=b -this.b=null}, -Hr:function Hr(a,b,c,d,e,f){var _=this -_.f=a -_.r=b -_.w=c -_.x=d -_.b=e -_.a=f}, -y9:function y9(a,b,c){this.c=a -this.a=b -this.$ti=c}, -k4:function k4(a,b,c,d){var _=this -_.d=null -_.e=$ -_.f=a -_.r=b -_.a=null -_.b=c -_.c=null -_.$ti=d}, -avq:function avq(a){this.a=a}, -avu:function avu(a){this.a=a}, -avv:function avv(a){this.a=a}, -avt:function avt(a){this.a=a}, -avr:function avr(a){this.a=a}, -avs:function avs(a){this.a=a}, -dL:function dL(){}, -ag6:function ag6(a,b){this.a=a -this.b=b}, -ag5:function ag5(){}, -CQ:function CQ(){}, -D_:function D_(){}, -y8:function y8(){}, -RY(a,b,c,d){return new A.RX(d,a,c,b,null)}, -RX:function RX(a,b,c,d,e){var _=this -_.d=a -_.f=b -_.r=c -_.x=d -_.a=e}, -S2:function S2(){}, -nY:function nY(a){this.a=a}, -acI:function acI(a,b){this.b=a -this.a=b}, -akC:function akC(a,b,c,d,e,f,g,h,i){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i}, -a7N:function a7N(a,b){this.b=a -this.a=b}, -Lg:function Lg(a,b){this.b=$ -this.c=a -this.a=b}, -N1:function N1(a){this.c=this.b=$ -this.a=a}, -DI:function DI(a,b,c){this.a=a -this.b=b -this.$ti=c}, -aky:function aky(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -akx:function akx(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -aKA(a,b){return new A.DJ(a,b,null)}, -S4(a){var s=a.an(t.Cz),r=s==null?null:s.f -return r==null?B.CD:r}, -KL:function KL(a,b){this.a=a -this.b=b}, -S3:function S3(){}, -akz:function akz(){}, -akA:function akA(){}, -akB:function akB(){}, -azo:function azo(a,b,c,d,e,f,g,h){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h}, -DJ:function DJ(a,b,c){this.f=a -this.b=b -this.a=c}, -wq(a){return new A.DK(a,A.b([],t.ZP),$.aO())}, -DK:function DK(a,b,c){var _=this -_.a=a -_.f=b -_.aj$=0 -_.ag$=c -_.aU$=_.aB$=0 -_.aN$=!1}, -aF7(a,b){return b}, -amb:function amb(){}, -yn:function yn(a){this.a=a}, -ama:function ama(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.w=f}, -amc:function amc(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.f=d -_.r=e}, -yp:function yp(a,b){this.c=a -this.a=b}, -Is:function Is(a,b){var _=this -_.f=_.e=_.d=null -_.r=!1 -_.ib$=a -_.a=null -_.b=b -_.c=null}, -axh:function axh(a,b){this.a=a -this.b=b}, -a2z:function a2z(){}, -mB:function mB(){}, -Nz:function Nz(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f}, -WR:function WR(){}, -aE3(a,b,c,d,e){var s=new A.jP(c,e,d,a,0) -if(b!=null)s.hE$=b -return s}, -b5r(a){return a.hE$===0}, -hW:function hW(){}, -Ug:function Ug(){}, -he:function he(){}, -DP:function DP(a,b,c,d){var _=this -_.d=a -_.a=b -_.b=c -_.hE$=d}, -jP:function jP(a,b,c,d,e){var _=this -_.d=a -_.e=b -_.a=c -_.b=d -_.hE$=e}, -kW:function kW(a,b,c,d,e,f){var _=this -_.d=a -_.e=b -_.f=c -_.a=d -_.b=e -_.hE$=f}, -oL:function oL(a,b,c,d){var _=this -_.d=a -_.a=b -_.b=c -_.hE$=d}, -U7:function U7(a,b,c,d){var _=this -_.d=a -_.a=b -_.b=c -_.hE$=d}, -Ij:function Ij(){}, -Ii:function Ii(a,b,c){this.f=a -this.b=b -this.a=c}, -pi:function pi(a){var _=this -_.a=a -_.j3$=_.j2$=_.j1$=null}, -DM:function DM(a,b){this.c=a -this.a=b}, -DN:function DN(a,b){var _=this -_.d=a -_.a=null -_.b=b -_.c=null}, -akD:function akD(a){this.a=a}, -akE:function akE(a){this.a=a}, -akF:function akF(a){this.a=a}, -aW6(a,b,c){var s,r -if(a>0){s=a/c -if(b"))}, -aF4(a,b){var s=$.av.ah$.z.h(0,a).ga_() -s.toString -return t.x.a(s).hR(b)}, -DR:function DR(a,b){this.a=a -this.b=b}, -wt:function wt(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=null -_.f=e -_.r=f -_.w=g -_.x=h -_.y=i -_.z=j -_.Q=k -_.as=l -_.at=m -_.ax=n -_.ay=!1 -_.CW=_.ch=null -_.cy=_.cx=$ -_.dx=_.db=null -_.aj$=0 -_.ag$=o -_.aU$=_.aB$=0 -_.aN$=!1}, -akT:function akT(){}, -wa:function wa(a,b,c,d,e,f,g,h,i,j,k,l,m){var _=this -_.c=a -_.d=b -_.e=c -_.r=d -_.w=e -_.Q=f -_.ay=g -_.ch=h -_.CW=i -_.cx=j -_.cy=k -_.db=l -_.a=m}, -l4:function l4(a,b,c,d,e){var _=this -_.w=_.r=_.f=_.e=_.d=null -_.y=_.x=$ -_.z=a -_.as=_.Q=!1 -_.at=$ -_.d5$=b -_.aZ$=c -_.a=null -_.b=d -_.c=null -_.$ti=e}, -aix:function aix(a){this.a=a}, -ait:function ait(a){this.a=a}, -aiu:function aiu(a){this.a=a}, -aiq:function aiq(a){this.a=a}, -air:function air(a){this.a=a}, -ais:function ais(a){this.a=a}, -aiv:function aiv(a){this.a=a}, -aiw:function aiw(a){this.a=a}, -aiy:function aiy(a){this.a=a}, -aiz:function aiz(a){this.a=a}, -lx:function lx(a,b,c,d,e,f,g,h,i,j){var _=this -_.dH=a -_.k2=!1 -_.bk=_.bS=_.bd=_.aG=_.al=_.bn=_.b_=_.y2=_.y1=_.xr=_.x2=_.x1=_.to=_.ry=_.rx=_.RG=_.R8=_.p4=_.p3=_.p2=_.p1=_.ok=_.k4=_.k3=null -_.at=b -_.ay=c -_.ch=d -_.cx=_.CW=null -_.cy=!1 -_.db=null -_.f=e -_.r=f -_.a=g -_.b=null -_.c=h -_.d=i -_.e=j}, -ly:function ly(a,b,c,d,e,f,g,h,i,j){var _=this -_.fR=a -_.aJ=_.az=_.ar=_.a1=_.R=_.B=_.bk=_.bS=_.bd=_.aG=_.al=null -_.k3=_.k2=!1 -_.ok=_.k4=null -_.at=b -_.ay=c -_.ch=d -_.cx=_.CW=null -_.cy=!1 -_.db=null -_.f=e -_.r=f -_.a=g -_.b=null -_.c=h -_.d=i -_.e=j}, -yi:function yi(){}, -aZt(a,b){var s,r=a.b,q=b.b,p=r-q -if(!(p<1e-10&&a.d-b.d>-1e-10))s=q-r<1e-10&&b.d-a.d>-1e-10 -else s=!0 -if(s)return 0 -if(Math.abs(p)>1e-10)return r>q?1:-1 -return a.d>b.d?1:-1}, -aZs(a,b){var s=a.a,r=b.a,q=s-r -if(q<1e-10&&a.c-b.c>-1e-10){if(a.c-b.c>1e-10)return 1 -return-1}if(r-s<1e-10&&b.c-a.c>-1e-10){if(b.c-a.c>1e-10)return-1 -return 1}if(Math.abs(q)>1e-10)return s>r?1:-1 -return a.c>b.c?1:-1}, -vC:function vC(){}, -agw:function agw(a){this.a=a}, -agx:function agx(a,b,c){this.a=a -this.b=b -this.c=c}, -agy:function agy(){}, -agz:function agz(a,b){this.a=a -this.b=b}, -agA:function agA(a){this.a=a}, -Yq:function Yq(){}, -Sd(a){var s=a.an(t.Wu) -return s==null?null:s.f}, -aKC(a,b){return new A.ww(b,a,null)}, -wu:function wu(a,b,c,d){var _=this -_.c=a -_.d=b -_.e=c -_.a=d}, -a_C:function a_C(a,b,c,d){var _=this -_.d=a -_.qY$=b -_.or$=c -_.a=null -_.b=d -_.c=null}, -ww:function ww(a,b,c){this.f=a -this.b=b -this.a=c}, -Sc:function Sc(){}, -a2y:function a2y(){}, -JX:function JX(){}, -E4:function E4(a,b){this.c=a -this.a=b}, -a_J:function a_J(a){var _=this -_.d=$ -_.a=null -_.b=a -_.c=null}, -a_K:function a_K(a,b,c){this.x=a -this.b=b -this.a=c}, -eK(a,b,c,d,e){return new A.aS(a,c,e,b,d)}, -b0_(a){var s=A.m(t.y6,t.Xw) -a.N(0,new A.alH(s)) -return s}, -alK(a,b,c){return new A.rZ(null,c,a,b,null)}, -aS:function aS(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -ti:function ti(a,b){this.a=a -this.b=b}, -wD:function wD(a,b){var _=this -_.b=a -_.c=null -_.aj$=0 -_.ag$=b -_.aU$=_.aB$=0 -_.aN$=!1}, -alH:function alH(a){this.a=a}, -alG:function alG(){}, -alI:function alI(a){this.a=a}, -alJ:function alJ(a){this.a=a}, -rZ:function rZ(a,b,c,d,e){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.a=e}, -Ix:function Ix(a){var _=this -_.a=_.d=null -_.b=a -_.c=null}, -E6:function E6(a,b){var _=this -_.c=a -_.aj$=0 -_.ag$=b -_.aU$=_.aB$=0 -_.aN$=!1}, -E5:function E5(a,b){this.c=a -this.a=b}, -Iw:function Iw(a,b,c){var _=this -_.d=a -_.e=b -_.a=null -_.b=c -_.c=null}, -a_N:function a_N(a,b,c){this.f=a -this.b=b -this.a=c}, -a_L:function a_L(){}, -a_M:function a_M(){}, -a_O:function a_O(){}, -a_Q:function a_Q(){}, -a_R:function a_R(){}, -a1O:function a1O(){}, -Ss(a,b,c,d,e){return new A.Sr(e,d,c,b,a,null)}, -Sr:function Sr(a,b,c,d,e,f){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.x=e -_.a=f}, -alW:function alW(a,b,c){this.a=a -this.b=b -this.c=c}, -yr:function yr(a,b,c,d,e){var _=this -_.e=a -_.f=b -_.r=c -_.c=d -_.a=e}, -a_T:function a_T(a,b){var _=this -_.d=_.c=_.b=_.a=_.CW=_.ay=_.p1=null -_.e=$ -_.f=a -_.r=null -_.w=b -_.z=_.y=null -_.Q=!1 -_.as=!0 -_.ax=_.at=!1}, -I6:function I6(a,b,c,d,e,f){var _=this -_.B=a -_.R=b -_.a1=c -_.ar=d -_.C$=e -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=f -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -aww:function aww(a,b){this.a=a -this.b=b}, -awv:function awv(a,b){this.a=a -this.b=b}, -JV:function JV(){}, -a2A:function a2A(){}, -a2B:function a2B(){}, -aKR(a,b){return new A.wG(b,A.aE9(t.S,t.Dv),a,B.R)}, -b07(a,b,c,d,e){if(b===e-1)return d -return d+(d-c)/(b-a+1)*(e-b-1)}, -aYR(a,b){return new A.Bs(b,a,null)}, -SE:function SE(){}, -wH:function wH(){}, -SC:function SC(a,b){this.d=a -this.a=b}, -wG:function wG(a,b,c,d){var _=this -_.p1=a -_.p2=b -_.p4=_.p3=null -_.R8=!1 -_.d=_.c=_.b=_.a=_.CW=_.ay=null -_.e=$ -_.f=c -_.r=null -_.w=d -_.z=_.y=null -_.Q=!1 -_.as=!0 -_.ax=_.at=!1}, -amg:function amg(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -ame:function ame(){}, -amf:function amf(a,b){this.a=a -this.b=b}, -amd:function amd(a,b,c){this.a=a -this.b=b -this.c=c}, -amh:function amh(a,b){this.a=a -this.b=b}, -Bs:function Bs(a,b,c){this.f=a -this.b=b -this.a=c}, -Ef:function Ef(){}, -hP:function hP(){}, -la:function la(){}, -Eg:function Eg(a,b,c,d,e){var _=this -_.p1=a -_.p2=b -_.d=_.c=_.b=_.a=_.CW=_.ay=_.p3=null -_.e=$ -_.f=c -_.r=null -_.w=d -_.z=_.y=null -_.Q=!1 -_.as=!0 -_.ax=_.at=!1 -_.$ti=e}, -Iz:function Iz(){}, -aKS(a,b,c,d,e){return new A.SH(c,d,!0,e,b,null)}, -SF:function SF(a,b){this.a=a -this.b=b}, -Ej:function Ej(a){var _=this -_.a=!1 -_.aj$=0 -_.ag$=a -_.aU$=_.aB$=0 -_.aN$=!1}, -SH:function SH(a,b,c,d,e,f){var _=this -_.e=a -_.f=b -_.r=c -_.w=d -_.c=e -_.a=f}, -yl:function yl(a,b,c,d,e,f,g){var _=this -_.v=a -_.V=b -_.am=c -_.br=d -_.e1=e -_.eX=_.dJ=null -_.eb=!1 -_.fS=null -_.C$=f -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=g -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -SG:function SG(){}, -Gf:function Gf(){}, -SQ:function SQ(a){this.a=a}, -b37(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=A.b([],t.bt) -for(s=J.X(c),r=0,q=0,p=0;r=0){g=p+k -f=g+(n-m) -p=f+1 -q=g-m -e.push(new A.oU(new A.cb(g,f),o.b))}++r}return e}, -b4N(a,b,c,d,e){var s=null,r=e.b,q=e.a,p=a.a -if(q!==p)r=A.b37(p,q,r) -if(A.bA()===B.aY)return A.c8(A.b2I(r,a,c,d,b),s,s,c,s) -return A.c8(A.b2J(r,a,c,d,a.b.c),s,s,c,s)}, -b2J(a,b,c,d,e){var s,r,q,p,o=null,n=A.b([],t.Ne),m=b.a,l=c.b0(d),k=m.length,j=J.X(a),i=0,h=0 -while(!0){if(!(ii){r=r=e?c:l -n.push(A.c8(o,o,o,s,B.c.S(m,r,p)));++h -i=p}}j=m.length -if(ie){r=r=e&&g<=r&&f){o.push(A.c8(p,p,p,c,B.c.S(n,e,j))) -o.push(A.c8(p,p,p,l,B.c.S(n,j,g))) -o.push(A.c8(p,p,p,c,B.c.S(n,g,r)))}else o.push(A.c8(p,p,p,c,B.c.S(n,e,r))) -e=r}else{q=s.b -q=q=j&&q<=g&&f?l:k -o.push(A.c8(p,p,p,s,B.c.S(n,r,q)));++d -e=q}}j=n.length -if(e") -s=A.a8(new A.a1(b,new A.anN(),s),!1,s.i("am.E"))}else s=null -return new A.ED(b,c,a,d,s,null)}, -lh:function lh(a,b){this.b=a -this.c=b}, -i1:function i1(a,b){this.a=a -this.b=b}, -ED:function ED(a,b,c,d,e,f){var _=this -_.c=a -_.e=b -_.r=c -_.w=d -_.y=e -_.a=f}, -anM:function anM(){}, -anN:function anN(){}, -a0p:function a0p(a,b,c,d){var _=this -_.p1=a -_.p2=!1 -_.p3=b -_.d=_.c=_.b=_.a=_.CW=_.ay=null -_.e=$ -_.f=c -_.r=null -_.w=d -_.z=_.y=null -_.Q=!1 -_.as=!0 -_.ax=_.at=!1}, -ay3:function ay3(a,b){this.a=a -this.b=b}, -ay2:function ay2(a,b,c){this.a=a -this.b=b -this.c=c}, -ay4:function ay4(){}, -ay5:function ay5(a){this.a=a}, -ay1:function ay1(){}, -ay0:function ay0(){}, -ay6:function ay6(){}, -T9:function T9(a,b){this.b=a -this.a=b}, -yw:function yw(a,b){this.a=a -this.b=b}, -a2H:function a2H(){}, -Gm:function Gm(a,b){this.a=a -this.b=b}, -EG:function EG(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -EJ:function EJ(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -EI:function EI(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f}, -EK:function EK(a,b,c,d,e,f,g,h,i){var _=this -_.a=a -_.b=b -_.d=c -_.e=d -_.f=e -_.r=f -_.w=g -_.x=h -_.y=i}, -EH:function EH(a,b,c){this.b=a -this.c=b -this.d=c}, -IR:function IR(){}, -zu:function zu(){}, -a4V:function a4V(a){this.a=a}, -a4W:function a4W(a,b){this.a=a -this.b=b}, -a4T:function a4T(a,b){this.a=a -this.b=b}, -a4U:function a4U(a,b){this.a=a -this.b=b}, -a4R:function a4R(a,b){this.a=a -this.b=b}, -a4S:function a4S(a,b){this.a=a -this.b=b}, -a4Q:function a4Q(a,b){this.a=a -this.b=b}, -li:function li(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q){var _=this -_.at=a -_.dx=_.db=_.cy=_.cx=_.CW=_.ch=null -_.fx=_.fr=_.dy=!1 -_.go=_.fy=null -_.k1=b -_.k2=null -_.ok=_.k4=_.k3=$ -_.p3=_.p2=_.p1=null -_.p4=c -_.lz$=d -_.qZ$=e -_.kz$=f -_.BJ$=g -_.BK$=h -_.vL$=i -_.os$=j -_.vM$=k -_.f=l -_.r=m -_.a=n -_.b=null -_.c=o -_.d=p -_.e=q}, -lj:function lj(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q){var _=this -_.at=a -_.dx=_.db=_.cy=_.cx=_.CW=_.ch=null -_.fx=_.fr=_.dy=!1 -_.go=_.fy=null -_.k1=b -_.k2=null -_.ok=_.k4=_.k3=$ -_.p3=_.p2=_.p1=null -_.p4=c -_.lz$=d -_.qZ$=e -_.kz$=f -_.BJ$=g -_.BK$=h -_.vL$=i -_.os$=j -_.vM$=k -_.f=l -_.r=m -_.a=n -_.b=null -_.c=o -_.d=p -_.e=q}, -FF:function FF(){}, -a0r:function a0r(){}, -a0s:function a0s(){}, -a0t:function a0t(){}, -a0u:function a0u(){}, -a0v:function a0v(){}, -EU(a,b,c){return new A.Tt(!0,c,null,B.US,a,null)}, -Th:function Th(a,b){this.c=a -this.a=b}, -Dq:function Dq(a,b,c,d,e,f){var _=this -_.cI=a -_.e_=b -_.bV=c -_.v=d -_.C$=e -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=f -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -Tg:function Tg(){}, -wi:function wi(a,b,c,d,e,f,g,h){var _=this -_.cI=!1 -_.e_=a -_.bV=b -_.bG=c -_.ci=d -_.dn=e -_.v=f -_.C$=g -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=h -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -Tt:function Tt(a,b,c,d,e,f){var _=this -_.e=a -_.r=b -_.w=c -_.x=d -_.c=e -_.a=f}, -jr(a,b,c,d,e,f,g,h,i){return new A.nG(f,g,e,d,c,i,h,a,b)}, -aX0(a,b){var s=null -return new A.eT(new A.a73(s,b,s,s,s,s,s,a),s)}, -aCK(a){var s=a.an(t.uy) -return s==null?null:s.gDs()}, -dQ(a,b,c,d,e,f,g){return new A.dP(a,null,e,f,g,c,b,d,null)}, -nG:function nG(a,b,c,d,e,f,g,h,i){var _=this -_.w=a -_.x=b -_.y=c -_.z=d -_.Q=e -_.as=f -_.at=g -_.b=h -_.a=i}, -a73:function a73(a,b,c,d,e,f,g,h){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h}, -YH:function YH(a){this.a=a}, -dP:function dP(a,b,c,d,e,f,g,h,i){var _=this -_.c=a -_.d=b -_.e=c -_.r=d -_.w=e -_.z=f -_.as=g -_.at=h -_.a=i}, -Aj:function Aj(){}, -MP:function MP(){}, -qh:function qh(a){this.a=a}, -qj:function qj(a){this.a=a}, -qi:function qi(a){this.a=a}, -fw:function fw(){}, -m_:function m_(a,b,c,d){var _=this -_.b=a -_.c=b -_.d=c -_.a=d}, -m1:function m1(a,b,c,d){var _=this -_.b=a -_.c=b -_.d=c -_.a=d}, -qu:function qu(a,b,c,d){var _=this -_.b=a -_.c=b -_.d=c -_.a=d}, -qp:function qp(a,b,c,d){var _=this -_.b=a -_.c=b -_.d=c -_.a=d}, -qq:function qq(a,b,c,d){var _=this -_.b=a -_.c=b -_.d=c -_.a=d}, -i9:function i9(a,b,c,d){var _=this -_.b=a -_.c=b -_.d=c -_.a=d}, -nO:function nO(a,b,c,d){var _=this -_.b=a -_.c=b -_.d=c -_.a=d}, -m2:function m2(a,b,c,d){var _=this -_.b=a -_.c=b -_.d=c -_.a=d}, -qs:function qs(a,b,c,d){var _=this -_.b=a -_.c=b -_.d=c -_.a=d}, -qt:function qt(a,b,c,d){var _=this -_.b=a -_.c=b -_.d=c -_.a=d}, -m0:function m0(a,b,c,d){var _=this -_.b=a -_.c=b -_.d=c -_.a=d}, -mD:function mD(a){this.a=a}, -mE:function mE(){}, -ko:function ko(a){this.b=a}, -or:function or(){}, -oC:function oC(){}, -jL:function jL(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -p3:function p3(){}, -j2:function j2(a,b,c){this.a=a -this.b=b -this.c=c}, -p2:function p2(){}, -aM9(a,b,c,d,e,f,g,h,i,j){return new A.Iq(b,f,d,e,c,h,j,g,i,a,null)}, -yy(a){var s -switch(A.bA().a){case 0:case 1:case 3:if(a<=3)s=a -else{s=B.h.cF(a,3) -if(s===0)s=3}return s -case 2:case 4:return Math.min(a,3) -case 5:return a<2?a:2+B.h.cF(a,2)}}, -fL:function fL(a,b,c){var _=this -_.e=!1 -_.cn$=a -_.ab$=b -_.a=c}, -apc:function apc(){}, -TA:function TA(a,b,c,d,e,f,g,h,i){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=$ -_.f=e -_.r=f -_.w=g -_.x=h -_.y=i -_.z=!1 -_.ax=_.at=_.as=_.Q=$}, -Se:function Se(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=!1 -_.w=g -_.x=h -_.y=i -_.z=j -_.Q=k -_.as=l -_.at=!1 -_.ax=m -_.ay=n -_.ch=o -_.CW=p -_.cx=q -_.cy=r -_.db=s -_.dx=a0 -_.dy=a1 -_.fr=a2 -_.fx=a3 -_.fy=a4 -_.go=a5 -_.id=a6 -_.k1=a7 -_.k2=a8 -_.k4=_.k3=null -_.ok=a9 -_.p1=b0 -_.p2=!1}, -akY:function akY(a){this.a=a}, -al_:function al_(a,b,c){this.a=a -this.b=b -this.c=c}, -akZ:function akZ(a,b,c){this.a=a -this.b=b -this.c=c}, -akX:function akX(a){this.a=a}, -akW:function akW(a,b,c){this.a=a -this.b=b -this.c=c}, -n_:function n_(a,b,c,d,e){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.a=e}, -It:function It(a,b,c){var _=this -_.d=$ -_.eV$=a -_.cb$=b -_.a=null -_.b=c -_.c=null}, -Iq:function Iq(a,b,c,d,e,f,g,h,i,j,k){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.w=f -_.x=g -_.y=h -_.z=i -_.Q=j -_.a=k}, -Ir:function Ir(a,b,c){var _=this -_.d=$ -_.eV$=a -_.cb$=b -_.a=null -_.b=c -_.c=null}, -axf:function axf(a){this.a=a}, -axg:function axg(a){this.a=a}, -F1:function F1(){}, -F0:function F0(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.w=f -_.x=g -_.y=h -_.z=i -_.Q=j -_.as=k -_.at=l -_.ax=m -_.ay=n -_.ch=o -_.CW=p -_.cx=q -_.a=r}, -IX:function IX(a){this.a=null -this.b=a -this.c=null}, -ayC:function ayC(a){this.a=a}, -ayD:function ayD(a){this.a=a}, -ayE:function ayE(a){this.a=a}, -ayF:function ayF(a){this.a=a}, -ayG:function ayG(a){this.a=a}, -ayH:function ayH(a){this.a=a}, -ayI:function ayI(a){this.a=a}, -ayJ:function ayJ(a){this.a=a}, -ayK:function ayK(a){this.a=a}, -ayL:function ayL(a){this.a=a}, -zX:function zX(a,b){var _=this -_.w=!1 -_.a=a -_.aj$=0 -_.ag$=b -_.aU$=_.aB$=0 -_.aN$=!1}, -uj:function uj(a,b){this.a=a -this.b=b}, -jW:function jW(){}, -Vj:function Vj(){}, -JY:function JY(){}, -JZ:function JZ(){}, -b0G(a,b,c,d){var s,r,q,p,o=A.c5(b.bt(0,null),B.e),n=b.gq(b).uX(0,B.e),m=A.rD(o,A.c5(b.bt(0,null),n)) -o=m.a -if(isNaN(o)||isNaN(m.b)||isNaN(m.c)||isNaN(m.d))return B.Qx -s=B.b.gL(c).a.b-B.b.gM(c).a.b>a/2 -n=s?o:o+B.b.gM(c).a.a -r=m.b -q=B.b.gM(c) -o=s?m.c:o+B.b.gL(c).a.a -p=B.b.gL(c) -n+=(o-n)/2 -o=m.d -return new A.F4(new A.k(n,A.R(r+q.a.b-d,r,o)),new A.k(n,A.R(r+p.a.b,r,o)))}, -F4:function F4(a,b){this.a=a -this.b=b}, -b0H(a,b,c){var s=b/2,r=a-s -if(r<0)return 0 -if(a+s>c)return c-b -return r}, -TC:function TC(a,b,c){this.b=a -this.c=b -this.d=c}, -aEj(a){var s=a.an(t.l3),r=s==null?null:s.f -return r!==!1}, -aLh(a){var s=a.DS(t.l3),r=s==null?null:s.r -return r==null?B.CT:r}, -ta:function ta(a,b,c){this.c=a -this.d=b -this.a=c}, -a0Y:function a0Y(a,b){var _=this -_.d=!0 -_.e=a -_.a=null -_.b=b -_.c=null}, -Gt:function Gt(a,b,c,d){var _=this -_.f=a -_.r=b -_.b=c -_.a=d}, -hO:function hO(){}, -dE:function dE(){}, -a1I:function a1I(a,b,c){var _=this -_.w=a -_.a=null -_.b=!1 -_.c=null -_.d=b -_.e=null -_.f=c -_.r=$}, -FY:function FY(a){this.$ti=a}, -TK:function TK(a,b,c,d){var _=this -_.c=a -_.d=b -_.e=c -_.a=d}, -aKQ(a,b,c,d){return new A.Sz(c,d,a,b,null)}, -aKy(a,b){return new A.S1(a,b,null)}, -aKv(a,b){return new A.RP(a,b,null)}, -iI(a,b,c){return new A.qv(c,!1,b,null)}, -jn(a,b,c){return new A.KM(b,c,a,null)}, -zb:function zb(){}, -FA:function FA(a){this.a=null -this.b=a -this.c=null}, -aqX:function aqX(){}, -Sz:function Sz(a,b,c,d,e){var _=this -_.e=a -_.f=b -_.r=c -_.c=d -_.a=e}, -S1:function S1(a,b,c){this.r=a -this.c=b -this.a=c}, -RP:function RP(a,b,c){this.r=a -this.c=b -this.a=c}, -qv:function qv(a,b,c,d){var _=this -_.e=a -_.f=b -_.c=c -_.a=d}, -Mx:function Mx(a,b,c,d){var _=this -_.e=a -_.r=b -_.c=c -_.a=d}, -BG:function BG(){}, -KM:function KM(a,b,c,d){var _=this -_.e=a -_.f=b -_.c=c -_.a=d}, -b4m(a,b,c){var s={} -s.a=null -return new A.aAs(s,A.bg("arg"),a,b,c)}, -xc:function xc(a,b,c,d,e,f,g,h){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.w=f -_.a=g -_.$ti=h}, -xd:function xd(a,b,c){var _=this -_.d=a -_.e=$ -_.f=null -_.r=!1 -_.a=_.x=_.w=null -_.b=b -_.c=null -_.$ti=c}, -apV:function apV(a){this.a=a}, -xe:function xe(a,b){this.a=a -this.b=b}, -Fl:function Fl(a,b,c,d){var _=this -_.w=a -_.x=b -_.a=c -_.aj$=0 -_.ag$=d -_.aU$=_.aB$=0 -_.aN$=!1}, -a1u:function a1u(a,b){this.a=a -this.b=-1 -this.$ti=b}, -aAs:function aAs(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -aAr:function aAr(a,b,c){this.a=a -this.b=b -this.c=c}, -J7:function J7(){}, -aLz(a,b,c){return new A.xl(b,a,null,c.i("xl<0>"))}, -xl:function xl(a,b,c,d){var _=this -_.c=a -_.d=b -_.a=c -_.$ti=d}, -yD:function yD(a,b){var _=this -_.d=$ -_.a=null -_.b=a -_.c=null -_.$ti=b}, -azh:function azh(a){this.a=a}, -Fs(a){var s=A.aZa(a,t._l) -return s==null?null:s.f}, -Uc:function Uc(a,b,c){this.c=a -this.d=b -this.a=c}, -Jk:function Jk(a,b,c){this.f=a -this.b=b -this.a=c}, -aqg(a,b){var s -switch(b.a){case 0:s=a.an(t.I) -s.toString -return A.aFQ(s.w) -case 1:return B.U -case 2:s=a.an(t.I) -s.toString -return A.aFQ(s.w) -case 3:return B.U}}, -Ft:function Ft(a,b,c,d,e,f,g,h){var _=this -_.e=a -_.r=b -_.w=c -_.x=d -_.y=e -_.Q=f -_.c=g -_.a=h}, -a1D:function a1D(a,b,c){var _=this -_.bk=!1 -_.B=null -_.p1=$ -_.p2=a -_.d=_.c=_.b=_.a=_.CW=_.ay=null -_.e=$ -_.f=b -_.r=null -_.w=c -_.z=_.y=null -_.Q=!1 -_.as=!0 -_.ax=_.at=!1}, -So:function So(a,b,c,d,e){var _=this -_.e=a -_.r=b -_.w=c -_.c=d -_.a=e}, -a31:function a31(){}, -a32:function a32(){}, -aLC(a){var s,r,q,p={} -p.a=a -s=t.ps -r=a.fv(s) -q=!0 -while(!0){if(!(q&&r!=null))break -q=s.a(a.Bh(r)).f -r.je(new A.aqh(p)) -r=p.a.fv(s)}return q}, -Uh:function Uh(a,b,c){this.c=a -this.e=b -this.a=c}, -aqh:function aqh(a){this.a=a}, -Jl:function Jl(a,b,c){this.f=a -this.b=b -this.a=c}, -a1E:function a1E(a,b,c,d){var _=this -_.e=a -_.f=b -_.c=c -_.a=d}, -a_b:function a_b(a,b,c,d){var _=this -_.v=a -_.V=b -_.C$=c -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=d -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -aLD(a,b){var s={},r=A.b([],t.p) -s.a=0 -a.b3(new A.aqj(s,r,b)) -return r}, -xn:function xn(){}, -aqj:function aqj(a,b,c){this.a=a -this.b=b -this.c=c}, -a1H:function a1H(a,b,c){this.f=a -this.b=b -this.a=c}, -US:function US(a,b,c,d){var _=this -_.e=a -_.f=b -_.c=c -_.a=d}, -I4:function I4(a,b,c,d,e){var _=this -_.B=a -_.R=b -_.a1=c -_.C$=d -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=e -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -awu:function awu(a){this.a=a}, -awt:function awt(a){this.a=a}, -a2s:function a2s(){}, -Fx:function Fx(a,b,c){this.c=a -this.d=b -this.a=c}, -a1K:function a1K(a){var _=this -_.a=_.d=null -_.b=a -_.c=null}, -Oc:function Oc(a,b,c,d,e,f){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.a=f}, -abZ:function abZ(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -ac_:function ac_(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -b3H(a,b,c){var s=null,r=a.gqz(a),q=r.gas7(r) -if(B.c.bJ(q,"image/"))return new A.nZ(A.aE1(s,s,new A.ol(a.gqz(a).an7(),1)),b,c,s) -else if(B.c.bJ(q,"text/"))return A.dQ(a.gqz(a).an8(),s,s,s,s,s,s) -return B.hI}, -aBq:function aBq(){}, -aBr:function aBr(){}, -FH:function FH(a,b){this.a=a -this.b=b -this.c=0}, -a0q:function a0q(a){this.a=a}, -H0:function H0(a,b){this.b=a -this.c=b}, -afk:function afk(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.db=_.cy=null -_.dx=!1}, -afm:function afm(a){this.a=a}, -afn:function afn(a){this.a=a}, -afl:function afl(){}, -aDA(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7,c8,c9,d0,d1){return new A.r4(a,b8,b9,h,n,p,q,s,a0,a2,a3,a5,a6,a8,a9,b1,m,c0,l,c,b3,g,b,b6,b4,b5,c6,c1,c7,c2,c5,c4,c3,c8,f,e,k,j,b2,c9,o,r,a1,a4,a7,b0,d1,b7,d,i,d0,A.l(["a",a,"p",b8,"li",b8,"code",h,"pre",b8,"h1",n,"h2",q,"h3",a0,"h4",a3,"h5",a6,"h6",a9,"em",m,"strong",c0,"del",l,"blockquote",c,"img",b3,"table",b8,"th",c6,"tr",c1,"td",c1],t.N,t.p8))}, -aDB(a){var s,r,q,p,o,n,m,l,k=null,j=a.p3,i=j.z -i.toString -s=a.y2.b -r=s==null -q=r?a.at:s -p=i.r -p.toString -p=i.VY(q,"monospace",p*0.85) -q=j.y -o=i.cH(a.fr) -n=a.CW -m=A.aL2(n,1) -l=A.eC(2) -if(r)s=a.at -return A.aDA(B.Tn,8,i,B.Z,new A.bM(B.mG,k,k,l,k,k,B.D),B.ch,o,p,B.Z,new A.bM(s,k,k,A.eC(2),k,k,B.D),B.ch,B.R5,B.zA,j.f,B.Z,B.z,j.r,B.Z,B.z,j.w,B.Z,B.z,q,B.Z,B.z,q,B.Z,B.z,q,B.Z,B.z,new A.bM(k,k,new A.d1(new A.bk(n,5,B.I,-1),B.n,B.n,B.n),k,k,k,B.D),i,i,B.n1,24,B.Z,i,B.z,B.eT,i,m,B.B9,B.dY,B.m_,B.RK,B.bl,B.zg,B.Z,k,B.Z)}, -aJi(a6){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4=null,a5=a6.gcO().gcd() -a5=a5.cH(a6.gh2()===B.Y?B.Dz:B.ff) -s=a6.gcO().gcd() -r=a6.gcO().gcd() -q=a6.gh2()===B.Y?B.dP:B.fk -p=a6.gcO().gcd().r -p.toString -p=r.VY(q,"monospace",p*0.85) -q=a6.gcO().gcd() -r=a6.gcO().gcd().r -r.toString -r=q.vd(r+10,B.aF) -q=a6.gcO().gcd() -o=a6.gcO().gcd().r -o.toString -o=q.vd(o+8,B.aF) -q=a6.gcO().gcd() -n=a6.gcO().gcd().r -n.toString -n=q.vd(n+6,B.aF) -q=a6.gcO().gcd() -m=a6.gcO().gcd().r -m.toString -m=q.vd(m+4,B.aF) -q=a6.gcO().gcd() -l=a6.gcO().gcd().r -l.toString -l=q.vd(l+2,B.aF) -q=a6.gcO().gcd().J4(B.aF) -k=a6.gcO().gcd().anq(B.ji) -j=a6.gcO().gcd().J4(B.bs) -i=a6.gcO().gcd().ann(B.zs) -h=a6.gcO().gcd() -g=a6.gcO().gcd() -f=a6.gcO().gcd().cH(a6.gey()) -e=a6.gcO().gcd() -d=a6.gcO().gcd().J4(B.fE) -c=a6.gcO().gcd() -b=A.aL2(B.Eu,0) -a=a6.gh2()===B.Y?B.dP:B.fk -a0=a6.gh2()===B.Y?B.dP:B.fk -a1=a6.gh2()===B.Y?B.mB:B.mH -a2=a6.gh2()===B.Y?B.dP:B.fk -a3=a6.gh2()===B.Y?B.mB:B.mH -return A.aDA(a5,8,h,B.Z,new A.bM(a0,a4,new A.d1(B.n,B.n,B.n,new A.bk(a1,4,B.I,-1)),a4,a4,a4,B.D),B.j3,f,p,B.Z,new A.bM(a2,a4,a4,a4,a4,a4,B.D),B.ch,i,k,r,B.Z,B.z,o,B.Z,B.z,n,B.Z,B.z,m,B.Z,B.z,l,B.Z,B.z,q,B.Z,B.z,new A.bM(a4,a4,new A.d1(new A.bk(a3,1,B.I,-1),B.n,B.n,B.n),a4,a4,a4,B.D),g,e,B.n1,24,B.Z,s,B.z,j,c,b,new A.bM(a,a4,a4,a4,a4,a4,B.D),B.dY,B.m_,d,B.bl,B.zg,B.Z,a4,B.Z)}, -r4:function r4(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7,c8,c9,d0,d1,d2){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0 -_.db=a1 -_.dx=a2 -_.dy=a3 -_.fr=a4 -_.fx=a5 -_.fy=a6 -_.go=a7 -_.id=a8 -_.k1=a9 -_.k2=b0 -_.k3=b1 -_.k4=b2 -_.ok=b3 -_.p1=b4 -_.p2=b5 -_.p3=b6 -_.p4=b7 -_.R8=b8 -_.RG=b9 -_.rx=c0 -_.ry=c1 -_.to=c2 -_.x1=c3 -_.x2=c4 -_.xr=c5 -_.y1=c6 -_.y2=c7 -_.b_=c8 -_.bn=c9 -_.al=d0 -_.aG=d1 -_.bd=d2}, -r5:function r5(a,b){this.a=a -this.b=b}, -Pe:function Pe(a,b){this.a=a -this.b=b}, -BR:function BR(){}, -Y3:function Y3(a,b){var _=this -_.d=null -_.e=a -_.a=null -_.b=b -_.c=null}, -av0:function av0(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -Pd:function Pd(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0){var _=this -_.fy=a -_.c=b -_.d=c -_.e=d -_.f=e -_.r=f -_.w=g -_.x=h -_.y=i -_.z=j -_.Q=k -_.as=l -_.at=m -_.ax=n -_.ay=o -_.ch=p -_.CW=q -_.cy=r -_.db=s -_.a=a0}, -Rc:function Rc(){}, -aiI:function aiI(a){this.a=a}, -ahN:function ahN(a){this.a=a}, -NI(a,b,c,d,e,f,g,h,i){var s=0,r=A.I(t.X7),q,p,o,n -var $async$NI=A.D(function(j,k){if(j===1)return A.F(k,r) -while(true)switch(s){case 0:n=g===B.kT?"long":"short" -if(c===B.kS)p="top" -else p=c===B.Ut?"center":"bottom" -o=e.a -s=3 -return A.K(B.Ly.hY("showToast",A.l(["msg",d,"length",n,"time",f,"gravity",p,"bgcolor",a.a,"iosBgcolor",a.a,"textcolor",o,"iosTextcolor",o,"fontSize",b,"webShowClose",!1,"webBgColor",h,"webPosition",i],t.N,t.z),!1,t.y),$async$NI) -case 3:q=k -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$NI,r)}, -apm:function apm(a,b){this.a=a -this.b=b}, -TL:function TL(a,b){this.a=a -this.b=b}, -NH:function NH(){}, -b6o(){var s,r,q,p,o,n,m,l="gis-dart",k=new A.ae($.ai,t.c) -self.onGoogleLibraryLoad=A.bd(new A.aBs(new A.b3(k,t.h))) -s=null -if(self.trustedTypes!=null){self.console.debug.$2("TrustedTypes available. Creating policy:",l) -o=self.trustedTypes -o.toString -r=o -try{q=r.createPolicy(l,t.e.a({createScriptURL:A.bd(new A.aBt())})) -s=q.createScriptURL("https://accounts.google.com/gsi/client")}catch(n){p=A.a6(n) -k=J.di(p) -throw A.d(new A.TV(k))}}m=self.document.createElement("script") -o=s -if(o==null)o="https://accounts.google.com/gsi/client" -m.src=o -m.async=!0 -m.defer=!0 -o=self.document -o=o.head -o.appendChild(m) -return k}, -aBs:function aBs(a){this.a=a}, -aBt:function aBt(){}, -TV:function TV(a){this.a=a}, -aIT(a,b){return new A.h6(b.a,b.b,b.c,b.d,b.f,b.e,a)}, -aIS(a){var s=new A.O2(a,new A.dG(null,null,t.io)) -s.yH() -return s}, -aYt(a){var s=new A.ae($.ai,t.c),r=new A.b3(s,t.h) -a.fY(r.gan_(r)).kq(new A.abt()) -return s}, -O3:function O3(a){this.a=a}, -h6:function h6(a,b,c,d,e,f,g){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g}, -O2:function O2(a,b){var _=this -_.d=a -_.r=b -_.y=_.x=_.w=null}, -abs:function abs(a){this.a=a}, -abr:function abr(a){this.a=a}, -abt:function abt(){}, -abq:function abq(a,b,c){this.a=a -this.b=b -this.c=c}, -abv:function abv(){}, -abu:function abu(){}, -abo:function abo(){}, -Pw:function Pw(){}, -afO:function afO(){}, -alT:function alT(a,b){this.a=a -this.b=b}, -alS:function alS(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f}, -f2:function f2(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f}, -nU:function nU(a,b,c){this.a=a -this.b=b -this.c=c}, -O4:function O4(a){var _=this -_.a=$ -_.b=null -_.c=a -_.d=null -_.e=$}, -abp:function abp(){}, -NZ:function NZ(a,b,c){var _=this -_.a=a -_.b=b -_.e=_.d=_.c=$ -_.r=_.f=null -_.w=c -_.x=null}, -abf:function abf(a){this.a=a}, -abg:function abg(a){this.a=a}, -abh:function abh(a){this.a=a}, -abi:function abi(a){this.a=a}, -b1B(a,b){var s=A.b([],t.p) -B.b.N(a.a,new A.au0(b,s)) -return s}, -a46:function a46(){}, -O6:function O6(a,b,c){this.a=a -this.b=b -this.c=c}, -abA:function abA(a){this.a=a}, -abH:function abH(a){this.a=a}, -abI:function abI(a){this.a=a}, -aby:function aby(a,b){this.a=a -this.b=b}, -abz:function abz(a){this.a=a}, -abG:function abG(a,b){this.a=a -this.b=b}, -abB:function abB(a,b){this.a=a -this.b=b}, -abJ:function abJ(){}, -abF:function abF(){}, -abD:function abD(a){this.a=a}, -abC:function abC(a){this.a=a}, -abE:function abE(){}, -abK:function abK(){}, -abL:function abL(){}, -bT:function bT(a,b){this.a=null -this.c=a -this.d=b}, -f_:function f_(a,b,c){this.a=a -this.b=b -this.d=c}, -B3:function B3(a,b,c,d,e){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.a=e}, -Xa:function Xa(a){this.a=null -this.b=a -this.c=null}, -X9:function X9(a,b,c,d,e){var _=this -_.e=a -_.f=b -_.r=c -_.c=d -_.a=e}, -au0:function au0(a,b){this.a=a -this.b=b}, -Rn:function Rn(a,b,c,d){var _=this -_.a1=_.R=_.B=$ -_.dG$=a -_.a3$=b -_.d7$=c -_.fy=_.fx=null -_.go=!1 -_.k1=_.id=null -_.k2=0 -_.a=!1 -_.b=null -_.c=0 -_.e=_.d=null -_.r=_.f=!1 -_.w=null -_.x=!1 -_.y=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ax=!1 -_.ay=$ -_.ch=d -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=null -_.dy=!0 -_.fr=null}, -kS:function kS(a,b,c){this.cn$=a -this.ab$=b -this.a=c}, -a4p:function a4p(){}, -a7U:function a7U(){}, -amT:function amT(a,b,c,d,e,f,g){var _=this -_.b=a -_.c=b -_.d=c -_.e=d -_.f=e -_.r=f -_.w=$ -_.x=g -_.y=null -_.z=1 -_.a=null}, -an2:function an2(a){this.a=a}, -ant:function ant(a,b){this.a=a -this.b=b}, -ans:function ans(a,b){this.a=a -this.b=b}, -anf:function anf(a){this.a=a}, -ang:function ang(a){this.a=a}, -an8:function an8(a){this.a=a}, -an9:function an9(a,b){this.a=a -this.b=b}, -anh:function anh(a,b){this.a=a -this.b=b}, -anb:function anb(a){this.a=a}, -anc:function anc(a){this.a=a}, -and:function and(a){this.a=a}, -ano:function ano(a){this.a=a}, -ank:function ank(a,b,c){this.a=a -this.b=b -this.c=c}, -anj:function anj(a,b){this.a=a -this.b=b}, -anl:function anl(a){this.a=a}, -anm:function anm(a,b,c){this.a=a -this.b=b -this.c=c}, -ani:function ani(a,b){this.a=a -this.b=b}, -ann:function ann(a){this.a=a}, -anu:function anu(){}, -an7:function an7(a){this.a=a}, -an6:function an6(a,b,c){this.a=a -this.b=b -this.c=c}, -an4:function an4(a,b){this.a=a -this.b=b}, -an5:function an5(a){this.a=a}, -an3:function an3(a,b){this.a=a -this.b=b}, -amU:function amU(a,b,c,d,e,f,g){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g}, -amV:function amV(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -amX:function amX(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -amY:function amY(a,b,c){this.a=a -this.b=b -this.c=c}, -amZ:function amZ(a,b,c){this.a=a -this.b=b -this.c=c}, -an_:function an_(a,b,c){this.a=a -this.b=b -this.c=c}, -an0:function an0(a,b){this.a=a -this.b=b}, -an1:function an1(a){this.a=a}, -anp:function anp(a){this.a=a}, -ane:function ane(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -amW:function amW(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -anr:function anr(a){this.a=a}, -anq:function anq(a,b){this.a=a -this.b=b}, -ana:function ana(a,b){this.a=a -this.b=b}, -anv:function anv(a){this.c=1 -this.e=a}, -a6A:function a6A(a,b){this.a=a -this.b=b}, -a4Z:function a4Z(){}, -alF:function alF(){}, -Mr:function Mr(a){this.a=a}, -oV:function oV(a){this.a=a}, -anw:function anw(a,b,c,d,e){var _=this -_.b=a -_.c=b -_.d=c -_.e=d -_.a=e}, -anx:function anx(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -Ez:function Ez(a,b,c){var _=this -_.a=a -_.b=!1 -_.e=_.d=_.c=-1 -_.f=b -_.r=c}, -ZO:function ZO(){}, -ZP:function ZP(){}, -Ob:function Ob(a,b){this.a=a -this.b=b -this.c=null}, -ac8:function ac8(a,b){this.a=a -this.b=b}, -ac1:function ac1(a,b){this.a=a -this.b=b}, -ac2:function ac2(a,b){this.a=a -this.b=b}, -ac3:function ac3(a){this.a=a}, -ac4:function ac4(a,b,c){this.a=a -this.b=b -this.c=c}, -ac5:function ac5(a,b){this.a=a -this.b=b}, -ac6:function ac6(){}, -ac7:function ac7(){}, -ac0:function ac0(a){this.a=a}, -acb:function acb(a){this.a=a}, -acc:function acc(a,b,c){this.a=a -this.b=b -this.c=c}, -aca:function aca(a,b){this.a=a -this.b=b}, -aci:function aci(a,b,c){this.a=a -this.b=b -this.c=c}, -ace:function ace(a,b,c){this.a=a -this.b=b -this.c=c}, -acf:function acf(){}, -ach:function ach(a,b,c){this.a=a -this.b=b -this.c=c}, -acd:function acd(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -acg:function acg(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f}, -acj:function acj(){}, -ack:function ack(a,b){this.a=a -this.b=b}, -ac9:function ac9(a,b,c){this.a=a -this.b=b -this.c=c}, -a(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6){return new A.cS(q,r,a,o,n,d,f,a6,a4,e,b,c,h,p,i,j,k,s,a5,l,m,a3,a0,a1,a2,g)}, -aDI(a,b){var s,r,q=null -if(b==null)b=A.a(q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q) -s=A.a(q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q) -r=b.c -s.c=r==null?a.c:r -r=b.d -s.d=r==null?a.d:r -r=b.e -s.e=r==null?a.e:r -r=b.f -s.f=r==null?a.f:r -r=b.r -s.r=r==null?a.r:r -r=b.w -s.w=r==null?a.w:r -r=b.x -s.x=r==null?a.x:r -r=b.y -s.y=r==null?a.y:r -r=b.z -s.z=r==null?a.z:r -r=b.Q -s.Q=r==null?a.Q:r -r=b.as -s.as=r==null?a.as:r -r=b.at -s.at=r==null?a.at:r -r=b.ax -s.ax=r==null?a.ax:r -r=b.ay -s.ay=r==null?a.ay:r -r=b.ch -s.ch=r==null?a.ch:r -r=b.CW -s.CW=r==null?a.CW:r -r=b.cx -s.cx=r==null?a.cx:r -r=b.cy -s.cy=r==null?a.cy:r -r=b.db -s.db=r==null?a.db:r -r=b.dx -s.dx=r==null?a.dx:r -r=b.dy -s.dy=r==null?a.dy:r -r=b.fr -s.fr=r==null?a.fr:r -r=b.fx -s.fx=r==null?a.fx:r -r=b.fy -s.fy=r==null?a.fy:r -r=b.go -s.go=r==null?a.go:r -r=b.id -s.id=r==null?a.id:r -r=b.k1 -s.k1=r==null?a.k1:r -r=b.k2 -s.k2=r==null?a.k2:r -r=b.k3 -s.k3=r==null?a.k3:r -r=b.k4 -s.k4=r==null?a.k4:r -r=b.ok -s.ok=r==null?a.ok:r -return s}, -cS:function cS(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0 -_.db=a1 -_.dx=a2 -_.dy=a3 -_.fr=a4 -_.ok=_.k4=_.k3=_.k2=_.k1=_.id=_.go=_.fy=_.fx=null -_.p1=a5 -_.p2=a6}, -dw:function dw(a,b,c){this.a=a -this.b=b -this.c=c}, -Dw:function Dw(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -aOh(a,b){return A.a3c(new A.aB8(a,b),t.Wd)}, -b6D(a,b,c){return A.a3c(new A.aBM(a,c,b,null),t.Wd)}, -a3c(a,b){return A.b4w(a,b,b)}, -b4w(a,b,c){var s=0,r=A.I(c),q,p=2,o,n=[],m,l -var $async$a3c=A.D(function(d,e){if(d===1){o=e -s=p}while(true)switch(s){case 0:A.aP6() -m=new A.zC(A.aE(t.Gf)) -p=3 -s=6 -return A.K(a.$1(m),$async$a3c) -case 6:l=e -q=l -n=[1] -s=4 -break -n.push(5) -s=4 -break -case 3:n=[2] -case 4:p=2 -J.a3K(m) -s=n.pop() -break -case 5:case 1:return A.G(q,r) -case 2:return A.F(o,r)}}) -return A.H($async$a3c,r)}, -aB8:function aB8(a,b){this.a=a -this.b=b}, -aBM:function aBM(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -Lk:function Lk(){}, -Ll:function Ll(){}, -a4N:function a4N(){}, -a4O:function a4O(){}, -a4P:function a4P(){}, -zC:function zC(a){this.a=a -this.c=!1}, -a5e:function a5e(a,b,c){this.a=a -this.b=b -this.c=c}, -a5f:function a5f(a,b){this.a=a -this.b=b}, -u4:function u4(a){this.a=a}, -a5s:function a5s(a){this.a=a}, -aHA(a,b){return new A.zW(a,b)}, -zW:function zW(a,b){this.a=a -this.b=b}, -b_v(a,b){var s=new Uint8Array(0),r=$.aP9() -if(!r.b.test(a))A.U(A.dW(a,"method","Not a valid method")) -r=t.N -return new A.ajM(B.A,s,a,b,A.kM(new A.a4N(),new A.a4O(),r,r))}, -ajM:function ajM(a,b,c,d,e){var _=this -_.x=a -_.y=b -_.a=c -_.b=d -_.r=e -_.w=!1}, -ajN(a){var s=0,r=A.I(t.Wd),q,p,o,n,m,l,k,j -var $async$ajN=A.D(function(b,c){if(b===1)return A.F(c,r) -while(true)switch(s){case 0:s=3 -return A.K(a.w.a_8(),$async$ajN) -case 3:p=c -o=a.b -n=a.a -m=a.e -l=a.c -k=A.aP4(p) -j=p.length -k=new A.oG(k,n,o,l,j,m,!1,!0) -k.Ob(o,j,m,!1,!0,l,n) -q=k -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$ajN,r)}, -azR(a){var s=a.h(0,"content-type") -if(s!=null)return A.aJr(s) -return A.afA("application","octet-stream",null)}, -oG:function oG(a,b,c,d,e,f,g,h){var _=this -_.w=a -_.a=b -_.b=c -_.c=d -_.d=e -_.e=f -_.f=g -_.r=h}, -wN:function wN(a,b,c,d,e,f,g,h){var _=this -_.w=a -_.a=b -_.b=c -_.c=d -_.d=e -_.e=f -_.f=g -_.r=h}, -aWg(a,b){var s=new A.zH(new A.a5L(),A.m(t.N,b.i("aY")),b.i("zH<0>")) -s.K(0,a) -return s}, -zH:function zH(a,b,c){this.a=a -this.c=b -this.$ti=c}, -a5L:function a5L(){}, -aJr(a){return A.b7f("media type",a,new A.afB(a))}, -afA(a,b,c){var s=t.N -s=c==null?A.m(s,s):A.aWg(c,s) -return new A.BX(a.toLowerCase(),b.toLowerCase(),new A.mQ(s,t.G5))}, -BX:function BX(a,b,c){this.a=a -this.b=b -this.c=c}, -afB:function afB(a){this.a=a}, -afD:function afD(a){this.a=a}, -afC:function afC(){}, -b5z(a){var s -a.WX($.aRb(),"quoted string") -s=a.gKH().h(0,0) -return A.Km(B.c.S(s,1,s.length-1),$.aRa(),new A.aAV(),null)}, -aAV:function aAV(){}, -bt:function bt(a,b,c){var _=this -_.a=a -_.b=b -_.c=c -_.e=null}, -a8E:function a8E(){}, -cA:function cA(a){this.a=a}, -p4:function p4(a){this.a=a}, -a54(a,b){var s=t.vA,r=A.b([],s) -s=A.b([B.C2,B.Cf,B.CG,B.Cd,B.BW,B.BV,B.Ce,B.CQ,B.Cu,B.Co,B.Cz],s) -B.b.K(r,b.x) -B.b.K(r,s) -return new A.a53(a,b,r,s)}, -a53:function a53(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.e=_.d=0 -_.f=!1 -_.r=d -_.w=null -_.x=!1 -_.z=_.y=null}, -aCv(a){if(a.d>=a.a.length)return!0 -return B.b.dN(a.c,new A.a55(a))}, -dk:function dk(){}, -a55:function a55(a){this.a=a}, -Lr:function Lr(){}, -a57:function a57(a){this.a=a}, -zZ:function zZ(){}, -a6l:function a6l(){}, -AA:function AA(){}, -aLO(a){var s,r,q,p,o="backtick" -if(a.oN(o)!=null){s=a.oN(o) -s.toString -r=a.oN("backtickInfo") -r.toString -q=r -p=s}else{s=a.oN("tilde") -s.toString -r=a.oN("tildeInfo") -r.toString -q=r -p=s}return new A.atp(a.b[1].length,p,B.c.jd(q))}, -Nn:function Nn(){}, -a9q:function a9q(){}, -atp:function atp(a,b,c){this.a=a -this.b=b -this.c=c}, -aYk(a,b){return J.aUX(a,new A.aay(b))}, -NP:function NP(){}, -aaA:function aaA(a){this.a=a}, -aaz:function aaz(){}, -aay:function aay(a){this.a=a}, -O8:function O8(){}, -Oe:function Oe(){}, -Og:function Og(){}, -acK:function acK(){}, -BC:function BC(){}, -aeN:function aeN(){}, -aeO:function aeO(a,b){this.a=a -this.b=b}, -vq:function vq(a,b){this.a=a -this.b=b}, -Tj:function Tj(a,b){this.a=a -this.b=b}, -r1:function r1(){}, -aeR:function aeR(a,b){this.a=a -this.b=b}, -aeS:function aeS(a,b){this.a=a -this.b=b}, -aeT:function aeT(a){this.a=a}, -aeU:function aeU(a,b){this.a=a -this.b=b}, -Cr:function Cr(){}, -Cs:function Cs(){}, -vN:function vN(){}, -E1:function E1(){}, -alv:function alv(){}, -Td:function Td(){}, -Fn:function Fn(){}, -Fo:function Fo(){}, -a7u:function a7u(a,b,c,d,e,f,g){var _=this -_.a=a -_.b=b -_.c=c -_.f=d -_.x=e -_.y=f -_.z=g}, -a7v:function a7v(a){this.a=a}, -vo:function vo(a,b){this.b=a -this.c=b}, -aY1(a,b){return new A.a9k(a,b)}, -a9k:function a9k(a,b){this.a=a -this.b=b}, -adI:function adI(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.e=_.d=0 -_.f=d -_.r=e}, -adR:function adR(a){this.a=a}, -adJ:function adJ(){}, -adK:function adK(){}, -adL:function adL(a){this.a=a}, -adM:function adM(a,b,c){this.a=a -this.b=b -this.c=c}, -adN:function adN(a){this.a=a}, -adO:function adO(a,b){this.a=a -this.b=b}, -adP:function adP(a,b){this.a=a -this.b=b}, -adQ:function adQ(a,b,c){this.a=a -this.b=b -this.c=c}, -L9:function L9(a,b){this.a=a -this.b=b}, -La:function La(a,b){this.a=a -this.b=b}, -M4:function M4(a,b){this.a=a -this.b=b}, -Mv:function Mv(a,b){this.a=a -this.b=b}, -aCL(a,b){return new A.kr(a,b)}, -aX1(a,b,c,d,e,f,g){var s,r,q,p,o,n,m,l,k,j,i,h=" \t\n\f\r\xa0\u1680\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000" -if(b===0){s=!0 -r=!1}else{q=B.c.S(a.a,b-1,b) -s=B.c.t(h,q) -if(!s){p=$.aG_() -r=p.b.test(q)}else r=!1}p=a.a -if(c===p.length){o=!0 -n=!1}else{m=B.c.S(p,c,c+1) -o=B.c.t(h,m) -if(!o){l=$.aG_() -n=l.b.test(m)}else n=!1}l=!o -if(l)k=!n||s||r -else k=!1 -if(!s)j=!r||!l||n -else j=!1 -B.b.dX(g,new A.a74()) -if(k)l=!j||d||r -else l=!1 -if(j)i=!k||d||n -else i=!1 -return new A.uw(e,p.charCodeAt(b),f,l,i,g)}, -MG:function MG(){}, -kr:function kr(a,b){this.a=a -this.b=b}, -E7:function E7(a,b,c,d,e,f,g){var _=this -_.a=a -_.b=b -_.c=c -_.d=!0 -_.e=d -_.f=e -_.r=f -_.w=g}, -uw:function uw(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.d=c -_.f=d -_.r=e -_.w=f}, -a74:function a74(){}, -N3:function N3(a,b){this.a=a -this.b=b}, -Az:function Az(a,b,c,d,e){var _=this -_.c=a -_.d=b -_.e=c -_.a=d -_.b=e}, -Nk:function Nk(a,b){this.a=a -this.b=b}, -aYl(a){if(a.length===0||a.charCodeAt(0)!==94)return null -a=B.c.jd(B.c.bK(a,1)).toLowerCase() -if(a.length===0)return null -return a}, -aYm(a,b,c){var s,r,q,p,o,n,m,l,k,j=A.aYl(b),i=a.a.b,h=i.b,g=new A.bm(h,A.p(h).i("bm<1>")).K3(0,new A.aaB(j),new A.aaC()),f=h.h(0,g) -if(j==null||f==null)return null -s=t.D -r=A.b([],s) -if(a.b.b===33)r.push(new A.cA("!"));++f -h.m(0,g,f) -q=i.c -p=B.b.d9(q,j) -if(p<0){p=q.length -q.push(j)}o=a.c.$0() -if(c===!0){r.push(new A.cA("[")) -B.b.K(r,o) -r.push(new A.cA("]"))}n=A.lA(B.jC,g,B.A,!1) -m=f>1?"-"+f:"" -i=A.b([new A.cA(""+(p+1))],s) -l=t.N -k=A.m(l,l) -k.m(0,"href","#fn-"+n) -k.m(0,"id","fnref-"+n+m) -s=A.b([new A.bt("a",i,k)],s) -l=A.m(l,l) -l.m(0,"class","footnote-ref") -r.push(new A.bt("sup",s,l)) -return r}, -aaB:function aaB(a){this.a=a}, -aaC:function aaC(){}, -aYD(a){return new A.Or(new A.P0(),!1,!1,null,A.aG("!\\[",!0,!1,!0,!1),33)}, -Or:function Or(a,b,c,d,e,f){var _=this -_.w=a -_.c=b -_.d=c -_.e=d -_.a=e -_.b=f}, -ady:function ady(){}, -aYJ(){return new A.Ox(A.aG("(?:<[a-z][a-z0-9-]*(?:\\s+[a-z_:][a-z0-9._:-]*(?:\\s*=\\s*(?:[^\\s\"'=<>`]+?|'[^']*?'|\"[^\"]*?\"))?)*\\s*/?>|)||<\\?.*?\\?>|()|()",!1,!1,!0,!1),60)}, -Ox:function Ox(a,b){this.a=a -this.b=b}, -dY:function dY(){}, -OZ:function OZ(a,b){this.a=a -this.b=b}, -aYY(a,b,c){return new A.qX(new A.P0(),!1,!1,null,A.aG(b,!0,!1,!0,!1),c)}, -aeL:function aeL(a,b,c){this.a=a -this.b=b -this.c=c}, -qX:function qX(a,b,c,d,e,f){var _=this -_.w=a -_.c=b -_.d=c -_.e=d -_.a=e -_.b=f}, -P0:function P0(){}, -ve:function ve(a,b){this.a=a -this.b=b}, -SI:function SI(a,b){this.a=a -this.b=b}, -SY:function SY(a,b,c,d,e){var _=this -_.c=a -_.d=b -_.e=c -_.a=d -_.b=e}, -x4:function x4(a,b){this.a=a -this.b=b}, -aJc(a,b){var s=$.jl() -return new A.fg(a,b,s.b.test(a))}, -fg:function fg(a,b,c){this.a=a -this.b=b -this.c=c}, -aeM:function aeM(a){var _=this -_.c=!1 -_.f=_.e=_.d=null -_.r=0 -_.a=a -_.b=0}, -Tz:function Tz(a){this.a=a -this.b=0}, -aOK(a){var s,r,q,p=B.c.jd(a),o=$.aR9(),n=A.e4(p,o," ") -for(s=0;p=n.length,s1?A.dT(B.h.jc(o,16),16):65533)}else if(q!=null){n=A.dT(q,16) -return A.bQ(n>1114111||n===0?65533:n)}return m}, -aFs(a){var s,r,q,p,o,n -for(s=a.length,r=0,q="";r?@[\\]^_`{|}~",o,0) -else n=!1 -if(n)r=p}q+=a[r]}return q.charCodeAt(0)==0?q:q}, -b0i(a){var s,r,q,p -for(s=new A.eU(a),r=t.Hz,s=new A.bz(s,s.gp(s),r.i("bz")),r=r.i("a_.E"),q=0;s.u();){p=s.d -if(p==null)p=r.a(p) -if(p!==32&&p!==9)break -q+=p===9?4-B.h.cF(q,4):1}return q}, -aKX(a,b){var s,r,q,p,o,n=A.aG("^[ \t]{0,"+b+"}",!0,!1,!1,!1).ev(a),m=n==null?null:n.b[0] -if(m!=null)for(s=m.length,r=null,q=0,p=0;q=b){if(r!=null)r=p-b -if(p===b||o)++q -break}if(r!=null)r=0}else{r=null -q=0}return new A.a6W(B.c.bK(a,q),r)}, -a6W:function a6W(a,b){this.a=a -this.b=b}, -b00(a){return new A.E9(null,a,B.R)}, -vE:function vE(){}, -Yw:function Yw(a,b,c,d){var _=this -_.al=a -_.lB$=b -_.d=_.c=_.b=_.a=_.ay=null -_.e=$ -_.f=c -_.r=null -_.w=d -_.z=_.y=null -_.Q=!1 -_.as=!0 -_.ax=_.at=!1}, -pl:function pl(a,b,c,d){var _=this -_.c=a -_.d=b -_.e=c -_.a=d}, -pm:function pm(a,b){var _=this -_.d=_.c=_.b=_.a=_.ay=_.aG=_.al=null -_.e=$ -_.f=a -_.r=null -_.w=b -_.z=_.y=null -_.Q=!1 -_.as=!0 -_.ax=_.at=!1}, -avE:function avE(){}, -St:function St(){}, -axu:function axu(a){this.a=a}, -azx:function azx(a){this.a=a}, -fI:function fI(){}, -E9:function E9(a,b,c){var _=this -_.lB$=a -_.d=_.c=_.b=_.a=_.ay=null -_.e=$ -_.f=b -_.r=null -_.w=c -_.z=_.y=null -_.Q=!1 -_.as=!0 -_.ax=_.at=!1}, -a_S:function a_S(){}, -a2b:function a2b(){}, -aNl(a){if(t.Xu.b(a))return a -throw A.d(A.dW(a,"uri","Value must be a String or a Uri"))}, -aNE(a,b){var s,r,q,p,o,n,m,l -for(s=b.length,r=1;r=1;s=q){q=s-1 -if(b[q]!=null)break}p=new A.cf("") -o=""+(a+"(") -p.a=o -n=A.W(b) -m=n.i("hk<1>") -l=new A.hk(b,0,s,m) -l.tC(b,0,s,n.c) -m=o+new A.a1(l,new A.aAu(),m.i("a1")).bH(0,", ") -p.a=m -p.a=m+("): part "+(r-1)+" was null, but part "+r+" was not.") -throw A.d(A.bF(p.k(0),null))}}, -a6v:function a6v(a,b){this.a=a -this.b=b}, -a6y:function a6y(){}, -a6z:function a6z(){}, -aAu:function aAu(){}, -adZ:function adZ(){}, -Qt(a,b){var s,r,q,p,o,n=b.a0e(a) -b.n0(a) -if(n!=null)a=B.c.bK(a,n.length) -s=t.s -r=A.b([],s) -q=A.b([],s) -s=a.length -if(s!==0&&b.lI(a.charCodeAt(0))){q.push(a[0]) -p=1}else{q.push("") -p=0}for(o=p;o")),s,s,s,s,b.i("zI<0>"))}, -aWh(a,b){if(b!=null)b.n()}, -aWi(a,b,c,d,e){var s=null -return new A.zJ(new A.hX(a,new A.af0(b,e,c,d),s,s,A.aOw(),A.aNN(),e.i("hX<0>")),s,s,s,s,c.i("@<0>").a5(d).a5(e).i("zJ<1,2,3>"))}, -zI:function zI(a,b,c,d,e,f){var _=this -_.e=a -_.f=b -_.r=c -_.c=d -_.a=e -_.$ti=f}, -zJ:function zJ(a,b,c,d,e,f){var _=this -_.e=a -_.f=b -_.r=c -_.c=d -_.a=e -_.$ti=f}, -aHE(a,b){return new A.q6(a,null,null,b.i("q6<0>"))}, -q6:function q6(a,b,c,d){var _=this -_.e=a -_.c=b -_.a=c -_.$ti=d}, -aZ8(a,b){if(b!=null)b.U(0,a.gYA()) -return new A.af_(b,a)}, -BH:function BH(){}, -af_:function af_(a,b){this.a=a -this.b=b}, -BI:function BI(){}, -BJ:function BJ(){}, -af0:function af0(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -aJw(a,b){return new A.PJ(b,a,null)}, -aKl(a,b){var s=null -return new A.CR(new A.hX(a,s,s,s,s,s,b.i("hX<0>")),s,s,s,s,b.i("CR<0>"))}, -ce(a,b,c){var s,r=c.i("tv<0?>?").a(a.fv(c.i("ev<0?>"))),q=r==null -if(q&&!c.b(null))A.U(new A.R4(A.cG(c),A.u(a.gaF()))) -if(b)a.an(c.i("ev<0?>")) -if(q)s=null -else{q=r.gtT() -s=q.gl(q)}if($.aQM()){if(!c.b(s))throw A.d(new A.R5(A.cG(c),A.u(a.gaF()))) -return s}return s==null?c.a(s):s}, -el:function el(){}, -GW:function GW(a,b,c,d){var _=this -_.lB$=a -_.d=_.c=_.b=_.a=_.ay=null -_.e=$ -_.f=b -_.r=null -_.w=c -_.z=_.y=null -_.Q=!1 -_.as=!0 -_.ax=_.at=!1 -_.$ti=d}, -ev:function ev(a,b,c,d){var _=this -_.f=a -_.b=b -_.a=c -_.$ti=d}, -tv:function tv(a,b,c,d){var _=this -_.aU=_.aB=!1 -_.aN=!0 -_.dA=_.dH=!1 -_.aA=$ -_.al=a -_.d=_.c=_.b=_.a=_.ay=null -_.e=$ -_.f=b -_.r=null -_.w=c -_.z=_.y=null -_.Q=!1 -_.as=!0 -_.ax=_.at=!1 -_.$ti=d}, -auh:function auh(a,b){this.a=a -this.b=b}, -Wb:function Wb(){}, -ix:function ix(){}, -hX:function hX(a,b,c,d,e,f,g){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.$ti=g}, -G0:function G0(a){var _=this -_.b=null -_.c=!1 -_.a=_.f=_.e=_.d=null -_.$ti=a}, -PJ:function PJ(a,b,c){this.c=a -this.d=b -this.a=c}, -CR:function CR(a,b,c,d,e,f){var _=this -_.e=a -_.f=b -_.r=c -_.c=d -_.a=e -_.$ti=f}, -R5:function R5(a,b){this.a=a -this.b=b}, -R4:function R4(a,b){this.a=a -this.b=b}, -aDY(a,b,c){var s=null -return new A.CU(new A.hX(s,new A.aic(a,c,b),s,s,s,s,c.i("hX<0>")),s,s,s,s,b.i("@<0>").a5(c).i("CU<1,2>"))}, -b_f(a,b,c,d){var s=null -return new A.CW(new A.hX(s,new A.aib(a,d,b,c),s,s,s,s,d.i("hX<0>")),s,s,s,s,b.i("@<0>").a5(c).a5(d).i("CW<1,2,3>"))}, -CV:function CV(){}, -CU:function CU(a,b,c,d,e,f){var _=this -_.e=a -_.f=b -_.r=c -_.c=d -_.a=e -_.$ti=f}, -aic:function aic(a,b,c){this.a=a -this.b=b -this.c=c}, -CW:function CW(a,b,c,d,e,f){var _=this -_.e=a -_.f=b -_.r=c -_.c=d -_.a=e -_.$ti=f}, -aib:function aib(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -b5X(a){return A.aN_(B.b.vT(a,0,new A.aB9()))}, -azN(a,b){a=a+b&536870911 -a=a+((a&524287)<<10)&536870911 -return a^a>>>6}, -aN_(a){a=a+((a&67108863)<<3)&536870911 -a^=a>>>11 -return a+((a&16383)<<15)&536870911}, -aB9:function aB9(){}, -alE(){var s=0,r=A.I(t.cZ),q,p=2,o,n,m,l,k,j,i -var $async$alE=A.D(function(a,b){if(a===1){o=b -s=p}while(true)switch(s){case 0:s=$.alC==null?3:4 -break -case 3:n=new A.b3(new A.ae($.ai,t.Gl),t.Iy) -$.alC=n -p=6 -s=9 -return A.K(A.alD(),$async$alE) -case 9:m=b -J.aV_(n,new A.wB(m)) -p=2 -s=8 -break -case 6:p=5 -i=o -l=A.a6(i) -n.lr(l) -k=n.a -$.alC=null -q=k -s=1 -break -s=8 -break -case 5:s=2 -break -case 8:case 4:q=$.alC.a -s=1 -break -case 1:return A.G(q,r) -case 2:return A.F(o,r)}}) -return A.H($async$alE,r)}, -alD(){var s=0,r=A.I(t.nf),q,p,o,n,m,l,k,j -var $async$alD=A.D(function(a,b){if(a===1)return A.F(b,r) -while(true)switch(s){case 0:n=t.N -m=t.K -l=A.m(n,m) -k=J -j=l -s=3 -return A.K($.aG8().nm(0),$async$alD) -case 3:k.KA(j,b) -p=A.m(n,m) -for(n=l,n=A.fh(n,n.r,A.by(n).c);n.u();){m=n.d -o=B.c.bK(m,8) -m=J.aN(l,m) -m.toString -p.m(0,o,m)}q=p -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$alD,r)}, -wB:function wB(a){this.a=a}, -afR:function afR(){}, -alB:function alB(){}, -ai1:function ai1(a,b){this.a=a -this.b=b}, -abe:function abe(a){this.a=a}, -alz:function alz(){}, -alA:function alA(a,b){this.a=a -this.b=b}, -aD6(a,b){if(b<0)A.U(A.f3("Offset may not be negative, was "+b+".")) -else if(b>a.c.length)A.U(A.f3("Offset "+b+u.D+a.gp(a)+".")) -return new A.Np(a,b)}, -amk:function amk(a,b,c){var _=this -_.a=a -_.b=b -_.c=c -_.d=null}, -Np:function Np(a,b){this.a=a -this.b=b}, -xL:function xL(a,b,c){this.a=a -this.b=b -this.c=c}, -aYv(a,b){var s=A.aYw(A.b([A.b1C(a,!0)],t._Y)),r=new A.acF(b).$0(),q=B.h.k(B.b.gL(s).b+1),p=A.aYx(s)?0:3,o=A.W(s) -return new A.acl(s,r,null,1+Math.max(q.length,p),new A.a1(s,new A.acn(),o.i("a1<1,o>")).kV(0,B.BQ),!A.b6d(new A.a1(s,new A.aco(),o.i("a1<1,O?>"))),new A.cf(""))}, -aYx(a){var s,r,q -for(s=0;s").a5(r.z[1]),s=new A.bP(J.as(s.a),s.b,r.i("bP<1,2>")),r=r.z[1];s.u();){q=s.a -if(q==null)q=r.a(q) -J.KD(q,new A.acr())}s=p.gfl(p) -r=A.p(s).i("i8") -return A.a8(new A.i8(s,new A.acs(),r),!0,r.i("q.E"))}, -b1C(a,b){var s=new A.au9(a).$0() -return new A.fP(s,!0,null)}, -b1E(a){var s,r,q,p,o,n,m=a.gcW(a) -if(!B.c.t(m,"\r\n"))return a -s=a.gbg(a) -r=s.gct(s) -for(s=m.length-1,q=0;q>>6)+(a&63),r=s&1,q=u.I.charCodeAt(s>>>1) -return q>>>4&-r|q&15&r-1}, -lF(a,b){var s=(a&1023)<<10|b&1023,r=u.ba.charCodeAt(1024+(s>>>9))+(s&511),q=r&1,p=u.I.charCodeAt(r>>>1) -return p>>>4&-q|p&15&q-1}, -b5V(a,b,c,d){var s,r,q,p,o,n=A.m(d,c.i("B<0>")) -for(s=c.i("w<0>"),r=0;r<1;++r){q=a[r] -p=b.$1(q) -o=n.h(0,p) -if(o==null){o=A.b([],s) -n.m(0,p,o) -p=o}else p=o -J.dV(p,q)}return n}, -OB(a,b){var s,r -for(s=J.as(a);s.u();){r=s.gJ(s) -if(b.$1(r))return r}return null}, -ae5(a,b){return new A.iy(A.aYN(a,b),b.i("iy<0>"))}, -aYN(a,b){return function(){var s=a,r=b -var q=0,p=1,o,n,m -return function $async$ae5(c,d,e){if(d===1){o=e -q=p}while(true)switch(q){case 0:n=J.as(s) -case 2:if(!n.u()){q=3 -break}m=n.gJ(n) -q=m!=null?4:5 -break -case 4:q=6 -return c.b=m,1 -case 6:case 5:q=2 -break -case 3:return 0 -case 1:return c.c=o,3}}}}, -aAK(a,b,c){if(!(a instanceof A.ov))A.a9c(a,b) -A.a9c(A.b6B(a,!0),b)}, -b6B(a,b){var s,r=null,q=A.e4(a.a,"ERROR_",""),p=A.e4(q.toLowerCase(),"_","-") -q=a.b -s=A.b3B(a.c,q) -if(s!=null)p=s -if(p.length!==0)if(p==="second-factor-required")return A.b6A(a) -return A.AM(p,r,r,q==null?r:B.b.gL(q.split(": ")),r,r)}, -b3B(a,b){var s,r,q,p,o,n=null,m=["INVALID_LOGIN_CREDENTIALS","BLOCKING_FUNCTION_ERROR_RESPONSE"] -for(s=a==null,r=b==null,q=0;q<2;++q){p=m[q] -if(!J.e(s?n:J.aN(a,"message"),p)){if(r)o=n -else{o=b.length -o=A.a3o(b,p,0)}o=o===!0}else o=!0 -if(o)return p}return n}, -b6A(a){var s,r,q,p,o,n=null,m="Can't parse multi factor error",l="second-factor-required",k=a.b,j=t.J1.a(a.c) -if(j==null)throw A.d(A.AM(m,n,n,k,n,n)) -s=J.X(j) -r=t.wh.a(s.h(j,"multiFactorHints")) -if(r==null)r=[] -r=A.ae5(r,t.K) -r=A.iN(r,A.b6t(),r.$ti.i("q.E"),t.YS) -A.b6u(A.a8(r,!0,A.p(r).i("q.E"))) -if($.afM.h(0,s.h(j,"appName"))==null)throw A.d(A.AM(l,n,n,k,n,n)) -q=A.au(s.h(j,"multiFactorSessionId")) -p=A.au(s.h(j,"multiFactorResolverId")) -if(q==null||p==null)throw A.d(A.AM(m,n,n,k,n,n)) -s=$.aG6() -o=new A.afQ(new A.agi()) -$.eQ().m(0,o,s) -return A.aIB(l,n,k,n,o,n)}, -b66(a,b,c,d,e,f,g,h,i){return A.a4n(firebase_core.initializeApp({apiKey:a,authDomain:c,databaseURL:d,projectId:h,storageBucket:i,messagingSenderId:f,measurementId:e,appId:b},"[DEFAULT]"))}, -b5n(a){var s,r,q -if("toDateString" in a)try{s=a -r=A.Ab(s.DY(),!1) -return r}catch(q){if(t.We.b(A.a6(q)))return null -else throw q}return null}, -aWI(a){return B.eO}, -aAI(a,b,c,d,e){return A.b4Y(a,b,c,d,e,e)}, -b4Y(a,b,c,d,e,f){var s=0,r=A.I(f),q -var $async$aAI=A.D(function(g,h){if(g===1)return A.F(h,r) -while(true)switch(s){case 0:s=3 -return A.K(null,$async$aAI) -case 3:q=a.$1(b) -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$aAI,r)}, -Kl(a,b){var s -if(a==null)return b==null -if(b==null||a.gp(a)!==b.gp(b))return!1 -if(a===b)return!0 -for(s=a.ga9(a);s.u();)if(!b.t(0,s.gJ(s)))return!1 -return!0}, -d_(a,b){var s,r,q -if(a==null)return b==null -if(b==null||J.b4(a)!==J.b4(b))return!1 -if(a===b)return!0 -for(s=J.X(a),r=J.X(b),q=0;qc)return c -if(isNaN(a))return c -return a}, -aO0(a,b){var s=t.s,r=A.b(a.split("\n"),s) -$.a3A().K(0,r) -if(!$.aEW)A.aMT()}, -aMT(){var s,r=$.aEW=!1,q=$.aGm() -if(A.d2(q.gWO(),0,0).a>1e6){if(q.b==null)q.b=$.R1.$0() -q.fc(0) -$.a34=0}while(!0){if($.a34<12288){q=$.a3A() -q=!q.ga8(q)}else q=r -if(!q)break -s=$.a3A().wZ() -$.a34=$.a34+s.length -A.aFI(s)}r=$.a3A() -if(!r.ga8(r)){$.aEW=!0 -$.a34=0 -A.cM(B.fs,A.b6G()) -if($.aA_==null)$.aA_=new A.b3(new A.ae($.ai,t.c),t.h)}else{$.aGm().tl(0) -r=$.aA_ -if(r!=null)r.fN(0) -$.aA_=null}}, -aIu(a,b,c){var s,r=A.a2(a) -if(c>0)if(r.a){s=r.ax -if(s.a===B.Y){s=s.cy.a -s=A.ao(255,b.gl(b)>>>16&255,b.gl(b)>>>8&255,b.gl(b)&255).j(0,A.ao(255,s>>>16&255,s>>>8&255,s&255))}else s=!1}else s=!1 -else s=!1 -if(s){s=r.ax.db.a -return A.a6m(A.ao(B.d.bE(255*((4.5*Math.log(c+1)+2)/100)),s>>>16&255,s>>>8&255,s&255),b)}return b}, -aD5(a){var s=0,r=A.I(t.H),q -var $async$aD5=A.D(function(b,c){if(b===1)return A.F(c,r) -while(true)$async$outer:switch(s){case 0:a.ga_().xL(B.zi) -switch(A.a2(a).r.a){case 0:case 1:q=A.T7(B.Q8) -s=1 -break $async$outer -case 2:case 3:case 4:case 5:q=A.dt(null,t.H) -s=1 -break $async$outer}case 1:return A.G(q,r)}}) -return A.H($async$aD5,r)}, -aD4(a){a.ga_().xL(B.KN) -switch(A.a2(a).r.a){case 0:case 1:return A.abO() -case 2:case 3:case 4:case 5:return A.dt(null,t.H)}}, -b6C(a,b,c,d,e){var s,r,q=d.b,p=q+e,o=a.b,n=c.b-10,m=p+o<=n -o=q-e-o -s=(o>=10===m?b:m)?Math.min(p,n):Math.max(o,10) -q=a.a -r=c.a-q -return new A.k(r<=20?r/2:A.R(d.a-q/2,10,r-10),s)}, -afy(a){var s=a.a -if(s[0]===1&&s[1]===0&&s[2]===0&&s[3]===0&&s[4]===0&&s[5]===1&&s[6]===0&&s[7]===0&&s[8]===0&&s[9]===0&&s[10]===1&&s[11]===0&&s[14]===0&&s[15]===1)return new A.k(s[12],s[13]) -return null}, -aDC(a,b){var s,r,q -if(a==b)return!0 -if(a==null){b.toString -return A.Po(b)}if(b==null)return A.Po(a) -s=a.a -r=s[0] -q=b.a -return r===q[0]&&s[1]===q[1]&&s[2]===q[2]&&s[3]===q[3]&&s[4]===q[4]&&s[5]===q[5]&&s[6]===q[6]&&s[7]===q[7]&&s[8]===q[8]&&s[9]===q[9]&&s[10]===q[10]&&s[11]===q[11]&&s[12]===q[12]&&s[13]===q[13]&&s[14]===q[14]&&s[15]===q[15]}, -Po(a){var s=a.a -return s[0]===1&&s[1]===0&&s[2]===0&&s[3]===0&&s[4]===0&&s[5]===1&&s[6]===0&&s[7]===0&&s[8]===0&&s[9]===0&&s[10]===1&&s[11]===0&&s[12]===0&&s[13]===0&&s[14]===0&&s[15]===1}, -c5(a,b){var s=a.a,r=b.a,q=b.b,p=s[0]*r+s[4]*q+s[12],o=s[1]*r+s[5]*q+s[13],n=s[3]*r+s[7]*q+s[15] -if(n===1)return new A.k(p,o) -else return new A.k(p/n,o/n)}, -afx(a,b,c,d,e){var s,r=e?1:1/(a[3]*b+a[7]*c+a[15]),q=(a[0]*b+a[4]*c+a[12])*r,p=(a[1]*b+a[5]*c+a[13])*r -if(d){s=$.aC5() -s[2]=q -s[0]=q -s[3]=p -s[1]=p}else{s=$.aC5() -if(qs[2])s[2]=q -if(p>s[3])s[3]=p}}, -fD(b1,b2){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4=b1.a,a5=b2.a,a6=b2.b,a7=b2.c,a8=a7-a5,a9=b2.d,b0=a9-a6 -if(!isFinite(a8)||!isFinite(b0)){s=a4[3]===0&&a4[7]===0&&a4[15]===1 -A.afx(a4,a5,a6,!0,s) -A.afx(a4,a7,a6,!1,s) -A.afx(a4,a5,a9,!1,s) -A.afx(a4,a7,a9,!1,s) -a7=$.aC5() -return new A.y(a7[0],a7[1],a7[2],a7[3])}a7=a4[0] -r=a7*a8 -a9=a4[4] -q=a9*b0 -p=a7*a5+a9*a6+a4[12] -a9=a4[1] -o=a9*a8 -a7=a4[5] -n=a7*b0 -m=a9*a5+a7*a6+a4[13] -a7=a4[3] -if(a7===0&&a4[7]===0&&a4[15]===1){l=p+r -if(r<0)k=p -else{k=l -l=p}if(q<0)l+=q -else k+=q -j=m+o -if(o<0)i=m -else{i=j -j=m}if(n<0)j+=n -else i+=n -return new A.y(l,j,k,i)}else{a9=a4[7] -h=a9*b0 -g=a7*a5+a9*a6+a4[15] -f=p/g -e=m/g -a9=p+r -a7=g+a7*a8 -d=a9/a7 -c=m+o -b=c/a7 -a=g+h -a0=(p+q)/a -a1=(m+n)/a -a7+=h -a2=(a9+q)/a7 -a3=(c+n)/a7 -return new A.y(A.aJo(f,d,a0,a2),A.aJo(e,b,a1,a3),A.aJn(f,d,a0,a2),A.aJn(e,b,a1,a3))}}, -aJo(a,b,c,d){var s=ab?a:b,r=c>d?c:d -return s>r?s:r}, -aJq(a,b){var s -if(A.Po(a))return b -s=new A.b6(new Float64Array(16)) -s.aS(a) -s.h4(s) -return A.fD(s,b)}, -aJp(a){var s,r=new A.b6(new Float64Array(16)) -r.e6() -s=new A.jZ(new Float64Array(4)) -s.xT(0,0,0,a.a) -r.Ec(0,s) -s=new A.jZ(new Float64Array(4)) -s.xT(0,0,0,a.b) -r.Ec(1,s) -return r}, -Kj(a,b,c){if(a==null||!1)return a===b -return a>b-c&&ac){s=c -c=b -b=s}if(b<0||b>a.length)b=0 -return B.c.S(a,b,c<0||c>a.length?a.length:c)}, -aAU(a){var s -if(a==null)return B.bb -s=A.aD0(a) -return s==null?B.bb:s}, -aP4(a){if(t.H3.b(a))return a -if(t.e2.b(a))return A.dm(a.buffer,0,null) -return new Uint8Array(A.jg(a))}, -b76(a){return a}, -b7f(a,b,c){var s,r,q,p -try{q=c.$0() -return q}catch(p){q=A.a6(p) -if(q instanceof A.wI){s=q -throw A.d(A.b0a("Invalid "+a+": "+s.a,s.b,J.aGW(s)))}else if(t.bE.b(q)){r=q -throw A.d(A.bW("Invalid "+a+' "'+b+'": '+J.aV9(r),J.aGW(r),J.aVa(r)))}else throw p}}, -aFp(){var s,r,q,p,o=null -try{o=A.U3()}catch(s){if(t.VI.b(A.a6(s))){r=$.azZ -if(r!=null)return r -throw s}else throw s}if(J.e(o,$.aMS)){r=$.azZ -r.toString -return r}$.aMS=o -if($.aGa()===$.Ku())r=$.azZ=o.P(".").k(0) -else{q=o.LR() -p=q.length-1 -r=$.azZ=p===0?q:B.c.S(q,0,p)}return r}, -b6j(a,b){var s=null -return $.aCe().Yr(0,a,b,s,s,s,s,s,s,s,s,s,s,s,s,s,s)}, -aOq(a){var s -if(!(a>=65&&a<=90))s=a>=97&&a<=122 -else s=!0 -return s}, -aOs(a,b){var s=a.length,r=b+2 -if(s")),q=q.i("am.E");r.u();){p=r.d -if(!J.e(p==null?q.a(p):p,s))return!1}return!0}, -b6J(a,b){var s=B.b.d9(a,null) -if(s<0)throw A.d(A.bF(A.j(a)+" contains no null elements.",null)) -a[s]=b}, -aOX(a,b){var s=B.b.d9(a,b) -if(s<0)throw A.d(A.bF(A.j(a)+" contains no elements matching "+b.k(0)+".",null)) -a[s]=null}, -b5d(a,b){var s,r,q,p -for(s=new A.eU(a),r=t.Hz,s=new A.bz(s,s.gp(s),r.i("bz")),r=r.i("a_.E"),q=0;s.u();){p=s.d -if((p==null?r.a(p):p)===b)++q}return q}, -aB_(a,b,c){var s,r,q -if(b.length===0)for(s=0;!0;){r=B.c.hd(a,"\n",s) -if(r===-1)return a.length-s>=c?s:null -if(r-s>=c)return s -s=r+1}r=B.c.d9(a,b) -for(;r!==-1;){q=r===0?0:B.c.Cn(a,"\n",r-1)+1 -if(c===r-q)return q -r=B.c.hd(a,b,r+1)}return null}, -b53(a){switch(a.a){case 0:return B.y0 -case 1:return B.y1 -case 2:return B.Nw -case 3:return B.y2}}, -aFD(a){var s=0,r=A.I(t.y),q,p,o,n,m,l -var $async$aFD=A.D(function(b,c){if(b===1)return A.F(c,r) -while(true)switch(s){case 0:o=$.aGd() -n=a.k(0) -m=A.b53(B.H3) -l=B.c.bJ(n,"http:")||B.c.bJ(n,"https:") -if(m!==B.y1)p=l&&m===B.y0 -else p=!0 -q=o.Cp(n,!0,!0,B.Lc,m===B.y2,p,p,null) -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$aFD,r)}, -aFk(a){var s=0,r=A.I(t.y),q -var $async$aFk=A.D(function(b,c){if(b===1)return A.F(c,r) -while(true)switch(s){case 0:q=$.aGd().Vq(a.k(0)) -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$aFk,r)}},J={ -aFE(a,b,c,d){return{i:a,p:b,e:c,x:d}}, -a3l(a){var s,r,q,p,o,n=a[v.dispatchPropertyName] -if(n==null)if($.aFz==null){A.b64() -n=a[v.dispatchPropertyName]}if(n!=null){s=n.p -if(!1===s)return n.i -if(!0===s)return a -r=Object.getPrototypeOf(a) -if(s===r)return n.i -if(n.e===r)throw A.d(A.cu("Return interceptor for "+A.j(s(a,n))))}q=a.constructor -if(q==null)p=null -else{o=$.auE -if(o==null)o=$.auE=v.getIsolateTag("_$dart_js") -p=q[o]}if(p!=null)return p -p=A.b6p(a) -if(p!=null)return p -if(typeof a=="function")return B.GU -s=Object.getPrototypeOf(a) -if(s==null)return B.xZ -if(s===Object.prototype)return B.xZ -if(typeof q=="function"){o=$.auE -if(o==null)o=$.auE=v.getIsolateTag("_$dart_js") -Object.defineProperty(q,o,{value:B.l1,enumerable:false,writable:true,configurable:true}) -return B.l1}return B.l1}, -OC(a,b){if(a<0||a>4294967295)throw A.d(A.bZ(a,0,4294967295,"length",null)) -return J.o5(new Array(a),b)}, -Bk(a,b){if(a<0)throw A.d(A.bF("Length must be a non-negative integer: "+a,null)) -return A.b(new Array(a),b.i("w<0>"))}, -ae6(a,b){if(a<0)throw A.d(A.bF("Length must be a non-negative integer: "+a,null)) -return A.b(new Array(a),b.i("w<0>"))}, -o5(a,b){return J.ae7(A.b(a,b.i("w<0>")))}, -ae7(a){a.fixed$length=Array -return a}, -aJ4(a){a.fixed$length=Array -a.immutable$list=Array -return a}, -aYP(a,b){return J.yT(a,b)}, -aJ5(a){if(a<256)switch(a){case 9:case 10:case 11:case 12:case 13:case 32:case 133:case 160:return!0 -default:return!1}switch(a){case 5760:case 8192:case 8193:case 8194:case 8195:case 8196:case 8197:case 8198:case 8199:case 8200:case 8201:case 8202:case 8232:case 8233:case 8239:case 8287:case 12288:case 65279:return!0 -default:return!1}}, -aDm(a,b){var s,r -for(s=a.length;b0;b=s){s=b-1 -r=a.charCodeAt(s) -if(r!==32&&r!==13&&!J.aJ5(r))break}return b}, -kd(a){if(typeof a=="number"){if(Math.floor(a)==a)return J.vj.prototype -return J.Bo.prototype}if(typeof a=="string")return J.mf.prototype -if(a==null)return J.Bn.prototype -if(typeof a=="boolean")return J.Bl.prototype -if(Array.isArray(a))return J.w.prototype -if(typeof a!="object"){if(typeof a=="function")return J.kK.prototype -return a}if(a instanceof A.O)return a -return J.a3l(a)}, -b5Q(a){if(typeof a=="number")return J.o6.prototype -if(typeof a=="string")return J.mf.prototype -if(a==null)return a -if(Array.isArray(a))return J.w.prototype -if(typeof a!="object"){if(typeof a=="function")return J.kK.prototype -return a}if(a instanceof A.O)return a -return J.a3l(a)}, -X(a){if(typeof a=="string")return J.mf.prototype -if(a==null)return a -if(Array.isArray(a))return J.w.prototype -if(typeof a!="object"){if(typeof a=="function")return J.kK.prototype -return a}if(a instanceof A.O)return a -return J.a3l(a)}, -bR(a){if(a==null)return a -if(Array.isArray(a))return J.w.prototype -if(typeof a!="object"){if(typeof a=="function")return J.kK.prototype -return a}if(a instanceof A.O)return a -return J.a3l(a)}, -b5R(a){if(typeof a=="number"){if(Math.floor(a)==a)return J.vj.prototype -return J.Bo.prototype}if(a==null)return a -if(!(a instanceof A.O))return J.lm.prototype -return a}, -a3k(a){if(typeof a=="number")return J.o6.prototype -if(a==null)return a -if(!(a instanceof A.O))return J.lm.prototype -return a}, -aOj(a){if(typeof a=="number")return J.o6.prototype -if(typeof a=="string")return J.mf.prototype -if(a==null)return a -if(!(a instanceof A.O))return J.lm.prototype -return a}, -nc(a){if(typeof a=="string")return J.mf.prototype -if(a==null)return a -if(!(a instanceof A.O))return J.lm.prototype -return a}, -bh(a){if(a==null)return a -if(typeof a!="object"){if(typeof a=="function")return J.kK.prototype -return a}if(a instanceof A.O)return a -return J.a3l(a)}, -ex(a){if(a==null)return a -if(!(a instanceof A.O))return J.lm.prototype -return a}, -aUP(a,b){if(typeof a=="number"&&typeof b=="number")return a+b -return J.b5Q(a).Y(a,b)}, -e(a,b){if(a==null)return b==null -if(typeof a!="object")return b!=null&&a===b -return J.kd(a).j(a,b)}, -aUQ(a,b){if(typeof a=="number"&&typeof b=="number")return a*b -return J.aOj(a).a6(a,b)}, -aUR(a,b){if(typeof a=="number"&&typeof b=="number")return a-b -return J.a3k(a).Z(a,b)}, -aN(a,b){if(typeof b==="number")if(Array.isArray(a)||typeof a=="string"||A.aOu(a,a[v.dispatchPropertyName]))if(b>>>0===b&&b>>0===b&&b0?1:a<0?-1:a -return J.b5R(a).gEj(a)}, -aGV(a){return J.bh(a).gq(a)}, -aGW(a){return J.ex(a).gEk(a)}, -aVe(a){return J.bh(a).gb4(a)}, -aVf(a){return J.bh(a).gtp(a)}, -aGX(a){return J.ex(a).gNi(a)}, -aCl(a){return J.bh(a).gk6(a)}, -jm(a){return J.bh(a).gl(a)}, -aVg(a){return J.bh(a).gaR(a)}, -aVh(a,b,c){return J.bR(a).xz(a,b,c)}, -aCm(a,b){return J.ex(a).bt(a,b)}, -aGY(a,b,c){return J.bR(a).eY(a,b,c)}, -aVi(a,b,c){return J.bR(a).fn(a,b,c)}, -aGZ(a,b,c){return J.bh(a).aqY(a,b,c)}, -aVj(a){return J.ex(a).wg(a)}, -aH_(a){return J.bR(a).oF(a)}, -aVk(a,b){return J.bR(a).bH(a,b)}, -aVl(a,b){return J.ex(a).arI(a,b)}, -aH0(a,b){return J.bR(a).hf(a,b)}, -ei(a,b,c){return J.bR(a).ew(a,b,c)}, -aVm(a,b,c,d){return J.bR(a).j7(a,b,c,d)}, -aVn(a,b,c){return J.nc(a).jV(a,b,c)}, -aVo(a,b){return J.kd(a).D(a,b)}, -aH1(a,b,c){return J.bh(a).CH(a,b,c)}, -aVp(a,b,c){return J.bh(a).CM(a,b,c)}, -aVq(a,b,c,d){return J.bh(a).asX(a,b,c,d)}, -aVr(a,b){return J.ex(a).ip(a,b)}, -aVs(a,b,c,d,e){return J.ex(a).kT(a,b,c,d,e)}, -KB(a,b,c){return J.bh(a).bT(a,b,c)}, -tQ(a){return J.bR(a).ez(a)}, -pL(a,b){return J.bR(a).F(a,b)}, -aVt(a,b){return J.bR(a).ck(a,b)}, -aH2(a){return J.bR(a).dT(a)}, -aVu(a,b){return J.bh(a).H(a,b)}, -aVv(a,b,c){return J.bR(a).eL(a,b,c)}, -aH3(a,b,c){return J.nc(a).Dm(a,b,c)}, -aVw(a,b){return J.bh(a).atV(a,b)}, -aH4(a,b){return J.ex(a).bw(a,b)}, -aVx(a,b){return J.bh(a).eN(a,b)}, -aVy(a,b){return J.X(a).sp(a,b)}, -aVz(a,b,c){return J.bR(a).fA(a,b,c)}, -aVA(a,b){return J.bh(a).xN(a,b)}, -aVB(a,b,c,d,e){return J.bR(a).bx(a,b,c,d,e)}, -aVC(a){return J.bh(a).d1(a)}, -KC(a,b){return J.bR(a).iy(a,b)}, -KD(a,b){return J.bR(a).dX(a,b)}, -aH5(a,b){return J.nc(a).nB(a,b)}, -aVD(a,b){return J.nc(a).bJ(a,b)}, -aVE(a){return J.ex(a).Nk(a)}, -aH6(a,b){return J.bR(a).kY(a,b)}, -aCn(a,b,c){return J.ex(a).bQ(a,b,c)}, -aVF(a,b,c,d){return J.ex(a).hj(a,b,c,d)}, -aVG(a){return J.a3k(a).Du(a)}, -aVH(a){return J.a3k(a).ac(a)}, -aVI(a){return J.bh(a).nh(a)}, -lI(a){return J.bR(a).eM(a)}, -aVJ(a){return J.nc(a).rK(a)}, -aVK(a,b){return J.a3k(a).jc(a,b)}, -aVL(a){return J.bR(a).it(a)}, -di(a){return J.kd(a).k(a)}, -aVM(a){return J.nc(a).auK(a)}, -aH7(a,b){return J.ex(a).a_u(a,b)}, -a3M(a,b){return J.bR(a).iv(a,b)}, -vh:function vh(){}, -Bl:function Bl(){}, -Bn:function Bn(){}, -f:function f(){}, -bl:function bl(){}, -QT:function QT(){}, -lm:function lm(){}, -kK:function kK(){}, -w:function w(a){this.$ti=a}, -aec:function aec(a){this.$ti=a}, -dj:function dj(a,b,c){var _=this -_.a=a -_.b=b -_.c=0 -_.d=null -_.$ti=c}, -o6:function o6(){}, -vj:function vj(){}, -Bo:function Bo(){}, -mf:function mf(){}},B={} -var w=[A,J,B] -var $={} -A.yZ.prototype={ -sJh(a){var s,r,q,p=this -if(J.e(a,p.c))return -if(a==null){p.F8() -p.c=null -return}s=p.a.$0() -r=a.a -q=s.a -if(rr){p.F8() -p.b=A.cM(A.d2(0,r-q,0),p.gHS())}p.c=a}, -F8(){var s=this.b -if(s!=null)s.bb(0) -this.b=null}, -ak7(){var s=this,r=s.a.$0(),q=s.c,p=r.a -q=q.a -if(p>=q){s.b=null -q=s.d -if(q!=null)q.$0()}else s.b=A.cM(A.d2(0,q-p,0),s.gHS())}} -A.a4g.prototype={ -qm(){var s=0,r=A.I(t.H),q=this -var $async$qm=A.D(function(a,b){if(a===1)return A.F(b,r) -while(true)switch(s){case 0:s=2 -return A.K(q.a.$0(),$async$qm) -case 2:s=3 -return A.K(q.b.$0(),$async$qm) -case 3:return A.G(null,r)}}) -return A.H($async$qm,r)}, -atl(){var s=A.bd(new A.a4l(this)) -return{initializeEngine:A.bd(new A.a4m(this)),autoStart:s}}, -ahd(){return{runApp:A.bd(new A.a4i(this))}}} -A.a4l.prototype={ -$0(){return A.aOg(new A.a4k(this.a).$0(),t.e)}, -$S:84} -A.a4k.prototype={ -$0(){var s=0,r=A.I(t.e),q,p=this -var $async$$0=A.D(function(a,b){if(a===1)return A.F(b,r) -while(true)switch(s){case 0:s=3 -return A.K(p.a.qm(),$async$$0) -case 3:q={} -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$$0,r)}, -$S:192} -A.a4m.prototype={ -$1(a){return A.aOg(new A.a4j(this.a,a).$0(),t.e)}, -$0(){return this.$1(null)}, -$C:"$1", -$R:0, -$D(){return[null]}, -$S:151} -A.a4j.prototype={ -$0(){var s=0,r=A.I(t.e),q,p=this,o -var $async$$0=A.D(function(a,b){if(a===1)return A.F(b,r) -while(true)switch(s){case 0:o=p.a -s=3 -return A.K(o.a.$1(p.b),$async$$0) -case 3:q=o.ahd() -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$$0,r)}, -$S:192} -A.a4i.prototype={ -$1(a){return new globalThis.Promise(A.bd(new A.a4h(this.a)))}, -$0(){return this.$1(null)}, -$C:"$1", -$R:0, -$D(){return[null]}, -$S:151} -A.a4h.prototype={ -$2(a,b){return this.a_F(a,b)}, -a_F(a,b){var s=0,r=A.I(t.H),q=this -var $async$$2=A.D(function(c,d){if(c===1)return A.F(d,r) -while(true)switch(s){case 0:s=2 -return A.K(q.a.b.$0(),$async$$2) -case 2:A.aKk(a,{}) -return A.G(null,r)}}) -return A.H($async$$2,r)}, -$S:599} -A.zD.prototype={ -I(){return"BrowserEngine."+this.b}} -A.mn.prototype={ -I(){return"OperatingSystem."+this.b}} -A.a5K.prototype={ -gb5(a){var s=this.d -if(s==null){this.FC() -s=this.d}s.toString -return s}, -gcS(){if(this.y==null)this.FC() -var s=this.e -s.toString -return s}, -FC(){var s,r,q,p,o,n,m,l,k=this,j=!1,i=null,h=k.y -if(h!=null){A.uB(h,0) -h=k.y -h.toString -A.uA(h,0) -k.y=null}h=k.x -if(h!=null&&h.length!==0){h.toString -s=B.b.ck(h,0) -k.y=s -i=s -j=!0 -r=!0}else{h=k.f -q=self.window.devicePixelRatio -if(q===0)q=1 -p=k.r -o=self.window.devicePixelRatio -if(o===0)o=1 -i=k.Oy(h,p) -n=i -k.y=n -if(n==null){A.aOV() -i=k.Oy(h,p)}n=i.style -A.x(n,"position","absolute") -A.x(n,"width",A.j(h/q)+"px") -A.x(n,"height",A.j(p/o)+"px") -r=!1}if(!J.e(k.z.lastChild,i))k.z.append(i) -try{if(j)i.style.removeProperty("z-index") -h=A.lV(i,"2d",null) -h.toString -k.d=t.e.a(h)}catch(m){}h=k.d -if(h==null){A.aOV() -h=A.lV(i,"2d",null) -h.toString -h=k.d=t.e.a(h)}q=k.as -k.e=new A.a6x(h,k,q,B.cZ,B.cu,B.hJ) -l=k.gb5(k) -l.save();++k.Q -A.aI2(l,1,0,0,1,0,0) -if(r)l.clearRect(0,0,k.f*q,k.r*q) -h=self.window.devicePixelRatio -if(h===0)h=1 -p=self.window.devicePixelRatio -if(p===0)p=1 -l.scale(h*q,p*q) -k.ahJ()}, -Oy(a,b){var s=this.as -return A.b7c(B.d.e9(a*s),B.d.e9(b*s))}, -a0(a){var s,r,q,p,o,n=this -n.a4z(0) -if(n.y!=null){s=n.d -if(s!=null)try{s.font=""}catch(q){r=A.a6(q) -if(!J.e(r.name,"NS_ERROR_FAILURE"))throw q}}if(n.y!=null){n.Hw() -n.e.fc(0) -p=n.w -if(p==null)p=n.w=A.b([],t.J) -o=n.y -o.toString -p.push(o) -n.e=n.d=null}n.x=n.w -n.e=n.d=n.y=n.w=null}, -So(a,b,c,d){var s,r,q,p,o,n,m,l,k,j,i=this,h=i.gb5(i) -if(d!=null)for(s=d.length,r=i.as,q=t.Ci;a>>16&255,p>>>8&255,p&255).a)) -s.translate(-5e4,0) -l=new Float32Array(2) -p=$.cX().x -if(p==null){p=self.window.devicePixelRatio -if(p===0)p=1}l[0]=5e4*p -p=i.b -p.c.a_h(l) -k=l[0] -j=l[1] -l[1]=0 -l[0]=0 -p.c.a_h(l) -A.aCS(s,k-l[0]) -A.aCT(s,j-l[1])}}, -lR(){var s=this,r=s.z -if((r==null?null:r.x)!=null){r=$.cr() -r=r===B.M||!1}else r=!1 -if(r)s.a.restore() -r=s.Q -if(r!=null){s.a.translate(-r.a,-r.b) -s.Q=null}}, -hJ(a){var s=this.a -if(a===B.Q)s.stroke() -else A.a7y(s,null)}, -fc(a){var s,r=this,q=r.a -A.a7z(q,"") -s=q.fillStyle -r.r=s==null?null:s -A.a7A(q,"") -s=q.strokeStyle -r.w=s==null?null:s -q.shadowBlur=0 -A.aCR(q,"none") -A.aCS(q,0) -A.aCT(q,0) -q.globalCompositeOperation="source-over" -r.d=B.cZ -A.aI3(q,1) -r.x=1 -q.lineCap="butt" -r.e=B.cu -q.lineJoin="miter" -r.f=B.hJ -r.Q=null}} -A.a_p.prototype={ -a0(a){B.b.a0(this.a) -this.b=null -this.c=A.en()}, -cQ(a){var s=this.c,r=new A.cm(new Float32Array(16)) -r.aS(s) -s=this.b -s=s==null?null:A.cZ(s,!0,t.Sv) -this.a.push(new A.RZ(r,s))}, -cl(a){var s,r=this.a -if(r.length===0)return -s=r.pop() -this.c=s.a -this.b=s.b}, -aK(a,b,c){this.c.aK(0,b,c)}, -f2(a,b,c){this.c.f2(0,b,c)}, -ne(a,b){this.c.a_1(0,B.y9,b)}, -a7(a,b){this.c.da(0,new A.cm(b))}, -mw(a){var s,r,q=this.b -if(q==null)q=this.b=A.b([],t.CK) -s=this.c -r=new A.cm(new Float32Array(16)) -r.aS(s) -q.push(new A.rO(a,null,null,r))}, -o7(a){var s,r,q=this.b -if(q==null)q=this.b=A.b([],t.CK) -s=this.c -r=new A.cm(new Float32Array(16)) -r.aS(s) -q.push(new A.rO(null,a,null,r))}, -i8(a,b){var s,r,q=this.b -if(q==null)q=this.b=A.b([],t.CK) -s=this.c -r=new A.cm(new Float32Array(16)) -r.aS(s) -q.push(new A.rO(null,null,b,r))}} -A.i5.prototype={ -lx(a,b,c,d){var s,r,q,p,o=d.ay,n=this.a,m=a.b -if(o===B.je){m===$&&A.c() -m=m.a -m===$&&A.c() -m=m.a -m.toString -A.bq(n,"drawImageRectCubic",[m,A.fV(b),A.fV(c),0.3333333333333333,0.3333333333333333,d.a])}else{m===$&&A.c() -m=m.a -m===$&&A.c() -m=m.a -m.toString -s=A.fV(b) -r=A.fV(c) -q=A.b79(o) -p=o===B.nk?$.bU.bR().MipmapMode.Linear:$.bU.bR().MipmapMode.None -A.bq(n,"drawImageRectOptions",[m,s,r,q,p,d.a])}}, -jj(a,b){var s=b==null?null:b.a -A.aKI(this.a,s,A.fV(a),null,null)}, -E1(a,b,c){t.p1.a(b) -b.XP(new A.a5X(this,c,a))}} -A.a5X.prototype={ -$1(a){A.aKI(this.a.a,this.b.a,A.fV(this.c),a,0)}, -$S:2} -A.azK.prototype={ -$1(a){var s=$.cP -s=(s==null?$.cP=A.h3(self.window.flutterConfiguration):s).b -if(s==null)s=null -else{s=s.canvasKitBaseUrl -if(s==null)s=null}return(s==null?"https://www.gstatic.com/flutter-canvaskit/b20183e04096094bcc37d9cde2a4b96f5cc684cf/":s)+a}, -$S:31} -A.aA2.prototype={ -$1(a){this.a.remove() -this.b.dm(0,!0)}, -$S:2} -A.aA1.prototype={ -$1(a){this.a.remove() -this.b.dm(0,!1)}, -$S:2} -A.a5G.prototype={ -cQ(a){B.d.ac(this.a.a.save())}, -jj(a,b){this.a.jj(a,t.qo.a(b))}, -cl(a){this.a.a.restore()}, -aK(a,b,c){this.a.a.translate(b,c)}, -f2(a,b,c){var s=c==null?b:c -this.a.a.scale(b,s) -return null}, -ne(a,b){this.a.a.rotate(b*180/3.141592653589793,0,0)}, -a7(a,b){this.a.a.concat(A.aP2(A.a3p(b)))}, -v5(a,b,c){this.a.a.clipRect(A.fV(a),$.aGu()[b.a],c)}, -mw(a){return this.v5(a,B.d3,!0)}, -VA(a,b){return this.v5(a,B.d3,b)}, -AU(a,b){this.a.a.clipRRect(A.Kp(a),$.a3z(),b)}, -o7(a){return this.AU(a,!0)}, -AT(a,b,c){var s=t.E_.a(b).a -s===$&&A.c() -s=s.a -s.toString -this.a.a.clipPath(s,$.a3z(),c)}, -i8(a,b){return this.AT(a,b,!0)}, -hD(a,b,c){A.bq(this.a.a,"drawLine",[a.a,a.b,b.a,b.b,t.qo.a(c).a])}, -qL(a){this.a.a.drawPaint(t.qo.a(a).a)}, -cT(a,b){t.qo.a(b) -this.a.a.drawRect(A.fV(a),b.a)}, -cC(a,b){t.qo.a(b) -this.a.a.drawRRect(A.Kp(a),b.a)}, -oj(a,b,c){t.qo.a(c) -this.a.a.drawDRRect(A.Kp(a),A.Kp(b),c.a)}, -qK(a,b){t.qo.a(b) -this.a.a.drawOval(A.fV(a),b.a)}, -iZ(a,b,c){this.a.a.drawCircle(a.a,a.b,b,t.qo.a(c).a)}, -JH(a,b,c,d,e){t.qo.a(e) -A.bq(this.a.a,"drawArc",[A.fV(a),b*57.29577951308232,c*57.29577951308232,!1,e.a])}, -cY(a,b){var s -t.E_.a(a) -t.qo.a(b) -s=a.a -s===$&&A.c() -s=s.a -s.toString -this.a.a.drawPath(s,b.a)}, -lx(a,b,c,d){this.a.lx(t.XY.a(a),b,c,t.qo.a(d))}, -mE(a,b){var s=t.z7.a(a).a -s===$&&A.c() -s=s.a -s.toString -this.a.a.drawParagraph(s,b.a,b.b)}, -qM(a,b,c,d){var s,r,q,p,o,n,m,l,k -t.E_.a(a) -s=$.cX().x -if(s==null){s=self.window.devicePixelRatio -if(s===0)s=1}r=d?5:4 -q=A.ao(B.d.bE((b.gl(b)>>>24&255)*0.039),b.gl(b)>>>16&255,b.gl(b)>>>8&255,b.gl(b)&255) -p=A.ao(B.d.bE((b.gl(b)>>>24&255)*0.25),b.gl(b)>>>16&255,b.gl(b)>>>8&255,b.gl(b)&255) -o=t.e.a({ambient:A.yO(q),spot:A.yO(p)}) -n=$.bU.bR().computeTonalColors(o) -m=a.a -m===$&&A.c() -m=m.a -m.toString -l=new Float32Array(3) -l[2]=s*c -k=new Float32Array(3) -k[0]=0 -k[1]=-450 -k[2]=s*600 -A.bq(this.a.a,"drawShadow",[m,l,k,s*1.1,n.ambient,n.spot,r])}} -A.Pa.prototype={ -gA(a){var s=this.a -return s.gA(s)}, -j(a,b){if(b==null)return!1 -if(A.u(this)!==J.Y(b))return!1 -return b instanceof A.Pa&&b.a.j(0,this.a)}, -k(a){return this.a.k(0)}} -A.LM.prototype={$inx:1} -A.zO.prototype={ -Gy(){return A.b5l(this.a,this.b)}, -gA(a){return A.T(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -j(a,b){if(b==null)return!1 -if(A.u(this)!==J.Y(b))return!1 -b instanceof A.zO -return!1}, -k(a){return"ColorFilter.mode("+A.j(this.a)+", "+this.b.k(0)+")"}} -A.zQ.prototype={ -gafe(){var s,r,q=new Float32Array(20) -for(s=this.a,r=0;r<20;++r)if(B.b.t(B.Hz,r))q[r]=s[r]/255 -else q[r]=s[r] -return q}, -Gy(){return $.bU.bR().ColorFilter.MakeMatrix(this.gafe())}, -gA(a){return A.cn(this.a)}, -j(a,b){if(b==null)return!1 -return A.u(this)===J.Y(b)&&b instanceof A.zQ&&A.pF(this.a,b.a)}, -k(a){return"ColorFilter.matrix("+A.j(this.a)+")"}} -A.ua.prototype={ -Gy(){var s,r=$.bU.bR().ColorFilter,q=this.a.b -q===$&&A.c() -q=q.a -q.toString -s=this.b.b -s===$&&A.c() -s=s.a -s.toString -return r.MakeCompose(q,s)}, -j(a,b){if(b==null)return!1 -if(!(b instanceof A.ua))return!1 -return b.a.j(0,this.a)&&b.b.j(0,this.b)}, -gA(a){return A.T(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){return"ColorFilter.compose("+this.a.k(0)+", "+this.b.k(0)+")"}} -A.Oj.prototype={ -a05(){var s=this.b.a -return new A.a1(s,new A.ad_(),A.W(s).i("a1<1,i5>"))}, -a7S(a){var s,r,q,p,o,n,m=this.Q -if(m.ak(0,a)){s=null.querySelector("#sk_path_defs") -s.toString -r=A.b([],t.J) -q=m.h(0,a) -q.toString -for(p=t.qr,p=A.c3(new A.eO(s.children,p),p.i("q.E"),t.e),s=J.as(p.a),p=A.p(p),p=p.i("@<1>").a5(p.z[1]).z[1];s.u();){o=p.a(s.gJ(s)) -if(q.t(0,o.id))r.push(o)}for(s=r.length,n=0;n") -a1.WE(A.hJ(new A.aL(m,new A.ad0(a3),l),l.i("q.E"))) -B.b.K(a2,s) -i.ZD(s) -a2=a3.c -if(a2){m=a3.d -m.toString -m=a1.d.h(0,m) -h=m.gDp(m)}else h=null -for(m=a3.b,l=m.length,g=a1.d,f=$.e6.a,k=0;k") -q=A.a8(new A.a1(s,new A.acX(),r),!0,r.i("am.E")) -if(q.length>A.le().b-1)B.b.dT(q) -r=m.gadY() -p=m.e -if(l){l=A.le() -o=l.d -B.b.K(l.e,o) -B.b.a0(o) -p.a0(0) -B.b.N(q,r)}else{l=A.p(p).i("bm<1>") -n=A.a8(new A.bm(p,l),!0,l.i("q.E")) -new A.aL(n,new A.acY(q),A.W(n).i("aL<1>")).N(0,m.gahv()) -new A.aL(q,new A.acZ(m),A.W(q).i("aL<1>")).N(0,r)}}, -a06(a){var s,r,q,p,o,n,m,l,k=A.le().b-1 -if(k===0)return B.IG -s=A.b([],t.jT) -r=t.t -q=new A.op(A.b([],r),!1) -for(p=0;p") -s=new A.bN(s,r) -return new A.bz(s,s.gp(s),r.i("bz"))}} -A.N4.prototype={} -A.lp.prototype={} -A.aAS.prototype={ -$1(a){var s,r,q,p,o=null -for(s=this.a,r=this.b,q=0;p=q+a,p=0;++q){if(!J.e(r[p],s[s.length-1-q]))return o -if(q===s.length-1){s=r.length -if(a===s-1)return new A.lp(B.b.bX(r,0,s-q-1),B.ec,!1,o) -else if(a===q)return new A.lp(B.b.em(r,a+1),B.ec,!1,o) -else return o}}return new A.lp(B.b.em(r,a+1),B.b.bX(s,0,s.length-1-a),!0,B.b.gM(r))}, -$S:204} -A.Sw.prototype={ -gK5(){var s,r,q=this.b -if(q===$){s=$.cP -s=(s==null?$.cP=A.h3(self.window.flutterConfiguration):s).b -if(s==null)s=null -else{s=s.useColorEmoji -if(s==null)s=null}s=s===!0 -r=A.b([new A.a0("Noto Sans","notosans/v28/o-0IIpQlx3QUlC5A4PNb4j5Ba_2c7A.ttf","w|2m;4g|k7;oq|5;p0|6;p8|;pa|j;pv|1q;s0|8v;1s0|3j;59s|g;5mo|8;5ow|12;5q0|1;5q8|6x;5x7|7u;654|5;65c|11;66g|5;66o|7;66x|;66z|;671|;673|u;680|1g;69i|e;69y|d;6ae|5;6al|i;6b6|2;6ba|8;6bk|2s;6ee|b;6es|q;6fk|c;6g0|v;6i8|;6io|2n;6mc|;6mh|;6qa|;6qd|;7gs|;8rk|v;928|36;wu8|2n;wzk|5b;x4y|8;x6d|a;x80|9;xcw|v;xf2|;xtc|1n;1dkw|6;1e68|;1e74|f;1edb|;1ekc|1;")],t.Qg) -if(s)r.push(new A.a0("Noto Color Emoji","notocoloremoji/v24/Yq6P-KqIXTD0t4D9z1ESnKM3-HpFab5s79iz64w.ttf","w|;z|;16|;1c|9;4p|;4u|;6bx|;6d8|;6dl|;6hv|;6jm|;6k9|;6ms|5;6nd|1;6xm|1;6y0|;72n|;73d|a;73s|2;79e|;7fu|1;7g6|;7gg|;7i3|3;7i8|4;7im|;7ip|;7is|1;7iw|;7j1|;7j4|;7j6|1;7ja|;7je|;7ji|1;7js|2;7k0|;7k2|;7k8|b;7kv|1;7kz|;7l1|1;7l4|;7ln|;7lq|1;7ma|5;7mh|;7mj|1;7mo|1;7mv|;7my|1;7n4|1;7nh|1;7no|1;7ns|;7ny|1;7o1|;7o3|1;7op|1;7ow|5;7p3|3;7p9|;7pe|;7ph|;7pk|5;7pr|;7pu|;7pw|;7py|;7q5|;7q9|;7qg|;7qr|1;7r8|;7rb|;7rg|;7ri|;7rn|2;7rr|;7s3|1;7th|2;7tt|;7u8|;7un|;850|1;8hx|2;8ij|1;8k0|;8k5|;9io|;9j1|;9zr|;9zt|;2pz8|;2q4v|;2q9c|1;2q9q|1;2qa6|;2qa9|9;2qcm|p;2qdd|1;2qe2|;2qen|;2qeq|8;2qfk|1;2qkg|x;2qlg|33;2qom|1;2qop|2;2qou|2a;2qr7|2;2qrb|7a;2qyn|1q;2r0p|5;2r0w|n;2r1r|1;2r1v|7;2r2f|;2r2i|3;2r2o|;2r2t|1;2r38|1;2r3c|;2r3l|1;2r3w|;2r42|2;2r4h|2;2r4s|2;2r4x|;2r4z|;2r54|;2r5b|;2r5f|;2r5m|2d;2r9c|1x;2rbf|7;2rbp|2;2rbw|9;2rc9|;2rcb|1;2rcg|;2rcj|9;2rj4|b;2rjk|;2rrg|1a;2rss|9;2rt3|54;2s1c|c;2s1s|8;2s28|19;2s3j|6;2s3y|d;2s4g|8;2s4w|8;jnzk|9;jo0x|p;jo1r|;mbqd|9;mcdo|;mcdq|9;")) -if(!s)r.push(new A.a0("Noto Emoji","notoemoji/v39/bMrnmSyK7YY-MEu6aWjPDs-ar6uWaGWuob-r0jwvS-FGJCMY.ttf","w|;z|;16|;1c|9;4p|;4u|;6bx|;6d8|;6dl|;6hv|;6jm|;6k9|;6ms|5;6nd|1;6xm|1;6y0|;72n|;73d|a;73s|2;79e|;7fu|1;7g6|;7gg|;7i3|3;7i8|4;7im|;7ip|;7is|1;7iw|;7j1|;7j4|;7j6|1;7ja|;7je|;7ji|1;7js|2;7k0|;7k2|;7k8|b;7kv|1;7kz|;7l1|1;7l4|;7ln|;7lq|1;7ma|5;7mh|;7mj|1;7mo|1;7mv|;7my|1;7n4|1;7nh|1;7no|1;7ns|;7ny|1;7o1|;7o3|1;7op|1;7ow|5;7p3|3;7p9|;7pe|;7ph|;7pk|5;7pr|;7pu|;7pw|;7py|;7q5|;7q9|;7qg|;7qr|1;7r8|;7rb|;7rg|;7ri|;7rn|2;7rr|;7s3|1;7th|2;7tt|;7u8|;7un|;850|1;8hx|2;8ij|1;8k0|;8k5|;9io|;9j1|;9zr|;9zt|;1e6m|1;2pz8|;2q4v|;2q9c|1;2q9q|1;2qa6|;2qa9|9;2qcm|p;2qdd|1;2qe2|;2qen|;2qeq|8;2qfk|1;2qkg|x;2qlg|33;2qom|1;2qop|2;2qou|2a;2qr7|2;2qrb|7a;2qyn|1q;2r0p|5;2r0w|n;2r1r|1;2r1v|7;2r2f|;2r2i|3;2r2o|;2r2t|1;2r38|1;2r3c|;2r3l|1;2r3w|;2r42|2;2r4h|2;2r4s|2;2r4x|;2r4z|;2r54|;2r5b|;2r5f|;2r5m|2d;2r9c|1x;2rbf|7;2rbp|2;2rbw|9;2rc9|;2rcb|1;2rcg|;2rcj|9;2rj4|b;2rjk|;2rrg|1a;2rss|9;2rt3|54;2s1c|c;2s1s|8;2s28|19;2s3j|6;2s3y|d;2s4g|8;2s4w|8;jnzk|9;jo0x|p;jo1r|;mbqd|9;mcdo|;mcdq|9;")) -r.push(new A.a0("Noto Sans Symbols","notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gfQ8gavVFRkzrbQ.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;60w|5;61q|;642|1;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6hp|3;6hu|2;6jm|;6lc|z;6md|3;6mi|1;6mo|9;6qa|;6ww|f;6xd|4;6xj|;6xo|3;6xu|1;6y1|1;6y4|9;70c|;70g|k;712|4;71r|;726|f;72o|b;736|6;76o|4f;7gs|;7ii|3;7ir|;7j8|b;7js|3;7jx|m;7l5|l;7m8|d;7mq|7;7n1|f;7ny|;7oi|t;7q5|4;7sm|t;84h|1;2q68|c;2q6o|2k;2q9c|w;2qaj|h;2r0m|3;2r0v|;2r68|;2rcw|37;")) -r.push(new A.a0("Noto Sans Symbols 2","notosanssymbols2/v17/I_uyMoGduATTei9eI8daxVHDyfisHr71ypPqfX71-AI.ttf","w|2n;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;60w|5;61q|;642|1;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6hu|1;6jm|;6nj|;6p2|a;6pf|;6qa|;6qg|1;6u1|;6v8|2;6xi|;6xk|;6xm|1;6xw|4;6y3|;70b|;70d|2;710|;72m|1;73d|1;73h|2;73l|1h;75s|a;7fk|2x;7im|4;7is|f;7jk|7;7jw|;7kk|k;7lr|g;7mm|3;7my|2;7nh|g;7nz|i;7pc|4;7pi|3;7pn|h;7qa|5;7qh|y;7rh|;7rj|4;7rq|v;7tg|;7tk|n;7u9|d;7wg|73;875|;88v|;8a3|;8hs|d;8ia|t;8jx|12;8l2|v;8lz|2u;8ov|;fcw|1r;1ek9|2;1etc|26;1evk|c;1ew0|;1exc|19;1f4w|r;1heo|u;2k80|j;2k8w|2e;2kbk|o;2pz4|17;2q0g|2r;2q3k|e;2q41|e;2q4h|e;2q4x|10;2qkt|2;2ql1|;2ql8|;2qld|b;2qly|;2qns|;2qnx|;2qoj|c;2qp3|;2qp8|2;2qpu|;2qpw|;2qpy|;2qq2|4;2qqc|c;2qr1|;2qr5|2;2qr9|2;2qrs|;2qs5|;2qsf|;2qsm|;2qtb|;2qtd|1;2qti|3;2qto|2;2qtv|;2qui|;2qv1|;2qw3|;2qwg|;2qwj|;2qwp|;2qwr|;2qwv|;2qx4|3;2qxm|;2qxr|;2qxw|2;2qy2|3;2qyf|;2qyh|2;2qyl|1;2qyr|;2qyv|3;2qz1|;2qz6|1;2r0e|7;2r0q|;2r0w|15;2r23|p;2r2v|c;2r39|2d;2r80|1b;2r9j|;2r9p|;2r9t|;2r9w|;2ra0|;2ral|;2raq|;2rax|1;2rb0|;2rba|5;2rbh|2;2rbn|4;2rc0|a;2rcg|3;2rcn|5;2rgg|2g;2rj4|b;2rk0|b;2rkg|1j;2rm8|9;2rmo|13;2ro0|t;2row|1;2rsr|;2rt2|;2ry8|2b;2s0w|d;2s1c|4;2s1k|2;2s1s|6;2s28|o;2s34|6;2s3k|2;2s40|6;2s5c|42;2s9g|1i;2sc0|9;")) -r.push(new A.a0("Noto Sans Adlam","notosansadlam/v21/neIczCCpqp0s5pPusPamd81eMfjPonvqdbYxxpgufnv0TGnBZLwhuvk.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;17j|;18g|;60w|5;61q|;642|1;6c3|2;6c8|6;6cg|2;6cm|;6cw|;6d5|1;6dg|;6dr|;6gc|;6jm|;6qa|;7gs|;948|1;94x|;2olc|23;2onk|9;2ony|1;")) -r.push(new A.a0("Noto Sans Anatolian Hieroglyphs","notosansanatolianhieroglyphs/v14/ijw9s4roRME5LLRxjsRb8A0gKPSWq4BbDmHHu6j2pEtUJzZWXybIymc5QYo.ttf","w|;4g|;6bv|;1s00|g6;")) -r.push(new A.a0("Noto Sans Arabic","notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfyGyvu3CBFQLaig.ttf","w|1;18|2;1c|a;4g|;4r|;57|;nj|;16o|s;17i|69;1g0|1b;1pc|k;1py|8;1qr|18;6bv|6;6dr|;7gs|;94x|;1dn4|35;1dqr|a4;1e1c|1r;1e36|1h;1e5s|d;1e9c|4;1e9i|3q;")) -r.push(new A.a0("Noto Sans Armenian","notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLorxb60iYy6zF3Eg.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;10x|11;121|1d;13h|2;60w|5;61q|;642|1;6c0|;6c3|1;6c8|2;6cc|2;6ci|;6ck|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;1dlf|4;")) -r.push(new A.a0("Noto Sans Avestan","notosansavestan/v20/bWti7ejKfBziStx7lIzKOLQZKhIJkyu9SASLji8U.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;60w|5;61q|;642|1;6bw|1;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;94g|1;1gqo|1h;1gs9|6;")) -r.push(new A.a0("Noto Sans Balinese","notosansbalinese/v24/NaPwcYvSBuhTirw6IaFn6UrRDaqje-lpbbRtYf-Fwu2Ov7fdhE5Vd222PPY.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;5c0|23;5e8|18;60w|5;61q|;642|1;6bv|2;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;")) -r.push(new A.a0("Noto Sans Bamum","notosansbamum/v26/uk-0EGK3o6EruUbnwovcbBTkkklK_Ya_PBHfNGTPEddO-_gLykxEkxA.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;60w|5;61q|;642|1;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;www|2f;1z40|fs;")) -r.push(new A.a0("Noto Sans Bassa Vah","notosansbassavah/v17/PN_bRee-r3f7LnqsD5sax12gjZn7mBpL5YwUpA2MBdcFn4MaAc6p34gH-GD7.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;60w|5;61q|;642|1;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;1zo0|t;1zow|5;")) -r.push(new A.a0("Noto Sans Batak","notosansbatak/v16/gok2H6TwAEdtF9N8-mdTCQvT-Zdgo4_PHuk74A.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;5hc|1f;5j0|3;60w|5;61q|;642|1;6bv|2;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;")) -r.push(new A.a0("Noto Sans Bengali","notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsolLudCk8izI0lc.ttf","w|2m;4g|3;4l|;4n|4;4t|3;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jg|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;1u9|1;1us|1;1vk|3;1vp|7;1vz|1;1w3|l;1wq|6;1wy|;1x2|3;1x8|8;1xj|1;1xn|3;1xz|;1y4|1;1y7|4;1ye|o;5ow|;5oy|;5p1|1;5p4|;5pd|;5pm|;5pp|;5pu|;5px|2;60w|5;61q|;642|1;6bv|2;6c0|;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6gp|;6jm|;6qa|;7gs|;xdd|;")) -r.push(new A.a0("Noto Sans Bhaiksuki","notosansbhaiksuki/v15/UcC63EosKniBH4iELXATsSBWdvUHXxhj8rLUdU4wh9U.ttf","w|;4g|;6bv|;7gs|;1k3k|8;1k3u|18;1k54|d;1k5s|s;")) -r.push(new A.a0("Noto Sans Brahmi","notosansbrahmi/v15/vEFK2-VODB8RrNDvZSUmQQIIByV18tK1W77HtMo.ttf","w|;4g|;6bv|2;7gs|;1hq8|25;1hsi|t;1htr|;")) -r.push(new A.a0("Noto Sans Buginese","notosansbuginese/v18/esDM30ldNv-KYGGJpKGk18phe_7Da6_gtfuEXLmNtw.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;54w|r;55q|1;60w|5;61q|;642|1;6bv|2;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;xjj|;")) -r.push(new A.a0("Noto Sans Buhid","notosansbuhid/v18/Dxxy8jiXMW75w3OmoDXVWJD7YwzAe6tgnaFoGA.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;4l1|1;4lc|j;60w|5;61q|;642|1;6bv|2;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;")) -r.push(new A.a0("Noto Sans Canadian Aboriginal","notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzigWLn_yAsg0q0uhQ.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;3y8|hr;4vk|1x;60w|5;61q|;642|1;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;1ju8|f;")) -r.push(new A.a0("Noto Sans Carian","notosanscarian/v15/LDIpaoiONgYwA9Yc6f0gUILeMIOgs7ob9yGLmfI.ttf","w|;4g|;1f34|1c;")) -r.push(new A.a0("Noto Sans Caucasian Albanian","notosanscaucasianalbanian/v16/nKKA-HM_FYFRJvXzVXaANsU0VzsAc46QGOkWytlTs-TXrYDmoVmRSZo.ttf","w|;4g|;lg|;mp|;7gs|;1e74|f;1flc|1f;1fn3|;")) -r.push(new A.a0("Noto Sans Chakma","notosanschakma/v17/Y4GQYbJ8VTEp4t3MKJSMjg5OIzhi4JjTQhYBeYo.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;1ye|9;37k|9;60w|5;61q|;642|1;6bw|1;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;1hxc|1g;1hyu|h;")) -r.push(new A.a0("Noto Sans Cham","notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfcERwcv7GykboaLg.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;60w|5;61q|;642|1;6bw|1;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;xkw|1i;xmo|d;xn4|9;xng|3;")) -r.push(new A.a0("Noto Sans Cherokee","notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWi5PDkm5rAffjl0.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;mb|1;me|2;mo|1;3vk|2d;3y0|5;60w|5;61q|;642|1;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;xv4|27;")) -r.push(new A.a0("Noto Sans Coptic","notosanscoptic/v17/iJWfBWmUZi_OHPqn4wq6kgqumOEd78u_VG0xR4Y.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jd|;jq|1;jt|;k8|5;lc|8;lm|2;lt|1;mb|;me|2;n3|;ny|;o1|;ok|1;rm|d;16t|;5vx|;60w|5;61q|;642|1;6c0|;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6dv|;6dy|;6e0|1;6gc|;6jm|;6qa|;7gs|;8sg|37;8vt|6;93r|;94j|1;1e78|2;1f4w|r;")) -r.push(new A.a0("Noto Sans Cuneiform","notosanscuneiform/v15/bMrrmTWK7YY-MF22aHGGd7H8PhJtvBDWgb9JlRQueeQ.ttf","w|;4g|;1kw0|pl;1log|32;1lrk|4;1ls0|5f;")) -r.push(new A.a0("Noto Sans Cypriot","notosanscypriot/v15/8AtzGta9PYqQDjyp79a6f8Cj-3a3cxIsK5MPpahF.ttf","w|;4g|;1g5c|5;1g5k|;1g5m|17;1g6v|1;1g70|;1g73|;")) -r.push(new A.a0("Noto Sans Deseret","notosansdeseret/v15/MwQsbgPp1eKH6QsAVuFb9AZM6MMr2Vq9ZnJSZtQG.ttf","w|;4g|;1fcw|27;")) -r.push(new A.a0("Noto Sans Devanagari","notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlXQly-AzoFoW4Ow.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ew|3;fr|;jg|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;1s0|3j;5ow|12;5q0|1;60w|5;61q|;642|1;6bv|2;6c0|;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6gp|;6i8|;6jm|;6qa|;7gs|;x80|9;xcw|v;")) -r.push(new A.a0("Noto Sans Duployan","notosansduployan/v16/gokzH7nwAEdtF9N8-mdTDx_X9JM5wsvrFsIn6WYDvA.ttf","w|;4g|;6bw|1;7gs|;2fpc|2y;2fsg|c;2fsw|8;2ftc|9;2fto|7;")) -r.push(new A.a0("Noto Sans Egyptian Hieroglyphs","notosansegyptianhieroglyphs/v26/vEF42-tODB8RrNDvZSUmRhcQHzx1s7y_F9-j3qSzEcbEYindSVK8xRg7iw.ttf","w|;4g|;6bw|1;7gs|;1o1s|tq;")) -r.push(new A.a0("Noto Sans Elbasan","notosanselbasan/v15/-F6rfiZqLzI2JPCgQBnw400qp1trvHdlre4dFcFh.ttf","w|;4g|;53|;lh|;pd|g;pv|6;re|;rg|;ri|;7gs|;1fk0|13;")) -r.push(new A.a0("Noto Sans Elymaic","notosanselymaic/v15/UqyKK9YTJW5liNMhTMqe9vUFP65ZD4AjWOT0zi2V.ttf","w|;4g|;1hpc|m;")) -r.push(new A.a0("Noto Sans Georgian","notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdpvnzFj-f5WK0OQV.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;13d|;3a8|11;3bb|;3bh|;3bk|1b;5n4|16;5od|2;60w|5;61q|;642|1;6c0|;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6gu|;6jm|;6qa|;8w0|11;8x3|;8x9|;")) -r.push(new A.a0("Noto Sans Glagolitic","notosansglagolitic/v15/1q2ZY4-BBFBst88SU_tOj4J-4yuNF_HI4ERK4Amu7nM1.ttf","w|;4g|;lf|;lh|;w4|;w7|;8ow|1a;8q8|1a;wvj|;2mtc|6;2mtk|g;2mu3|6;2mub|1;2mue|4;")) -r.push(new A.a0("Noto Sans Gothic","notosansgothic/v15/TuGKUUVzXI5FBtUq5a8bj6wRbzxTFMX40kFQRx0.ttf","w|;4g|;lg|1;lk|;mp|;1f74|q;")) -r.push(new A.a0("Noto Sans Grantha","notosansgrantha/v17/3y976akwcCjmsU8NDyrKo3IQfQ4o-r8cFeulHc6N.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;1u9|1;1us|1;2ay|;2b9|;2cm|c;5ow|;5oy|1;5pu|2;5q0|1;60w|5;61q|;642|1;6bw|1;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6i8|;6jm|;6qa|;7gs|;1ibk|3;1ibp|7;1ibz|1;1ic3|l;1icq|6;1icy|1;1id1|4;1id7|9;1idj|1;1idn|2;1ids|;1idz|;1ie5|6;1iee|6;1ieo|4;")) -r.push(new A.a0("Noto Sans Gujarati","notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_ypFwPM_OdiEH0s.ttf","w|2m;4g|3;4l|;4n|4;4t|3;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;1u9|1;1us|1;22p|2;22t|8;233|2;237|l;23u|6;242|1;245|4;24c|9;24n|2;24r|2;24w|;25c|3;25i|b;261|6;60w|5;61q|;642|1;6bv|2;6c0|;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6gp|;6jm|;6qa|;7gs|;x80|9;")) -r.push(new A.a0("Noto Sans Gunjala Gondi","notosansgunjalagondi/v15/bWto7e7KfBziStx7lIzKPrcSMwcEnCv6DW7n5hcVXYMTK4q1.ttf","w|1;11|;13|8;1m|;1o|3;4g|;5z|;6v|;6bw|1;6c8|1;6cc|1;6cm|;6qa|;7gs|;1kdc|5;1kdj|1;1kdm|10;1keo|1;1ker|5;1kf4|9;")) -r.push(new A.a0("Noto Sans Gurmukhi","notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG1OenbxZ_trdp7h.ttf","w|2m;4g|3;4l|;4n|4;4t|3;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ew|3;fr|;jg|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;1u9|1;1us|1;1z5|2;1z9|5;1zj|1;1zn|l;20a|6;20i|1;20l|1;20o|1;20s|;20u|4;213|1;217|2;21d|;21l|3;21q|;21y|g;60w|5;61q|;642|1;6bv|2;6c0|;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6gp|;6jm|;6qa|;7gs|;7jg|;x80|9;")) -r.push(new A.a0("Noto Sans HK","notosanshk/v21/nKKQ-GM_FYFRJvXzVXaAPe9hMnB3Eu7mOQ.otf","w|2m;4g|2r;7k|3;7u|1;88|3;8z|1;93|1;98|3;9e|1;a0|5;b6|;bk|1;bz|1;ct|f;e0|1;gh|;gx|;jf|;jr|;jt|2;k9|;kq|1;lc|1;lg|;lj|;lo|;pd|g;pv|6;q9|o;sh|;sw|1r;up|;5z2|1;61s|2h;6bm|1;6c0|6;6c8|2;6cc|2;6cg|2;6cl|2;6cw|;6cy|1;6d1|;6d5|3;6de|;6dj|2;6dt|;6es|;6g9|;6gb|1;6hp|1;6io|;6ir|;6it|;6ix|1;6j3|;6j7|;6ja|;6jl|1;6jq|1;6jv|;6jy|;6k5|;6kb|;6lc|b;6ls|b;6mo|9;6ns|1;6o4|2;6ob|1;6og|;6oi|;6ok|;6p2|3;6ph|;6ps|;6pu|1;6px|6;6q7|;6q9|2;6qd|;6qi|;6ql|3;6qr|;6qt|9;6r8|3;6rh|;6rn|;6rp|;6rs|;6rw|;6s2|;6sg|2;6sk|3;6sq|1;6su|1;6sy|1;6t2|1;6te|5;6tm|1;6tx|4;6u8|;6ud|;6v3|;6vu|1;6wf|;6x1|2;6xe|;6xk|;6y1|1;71s|1;726|e;72m|;72y|1;74z|;76o|97;7g1|2;7g6|1;7gc|1;7gg|1;7gm|6;7gu|5;7he|4;7hr|;7i8|3;7id|1;7ih|;7im|1;7iu|1;7j0|3;7jj|;7k0|2;7kw|f;7le|b;7mo|;7nh|1;7pe|;7pv|;7q2|;7r1|;7r3|1;7rq|;7sm|t;7tt|;850|1;88v|;8ai|1;8hx|2;8ii|;8lx|;94q|1;96o|p;97f|2g;9a8|5x;9gw|b;9hc|1r;9j5|2d;9ll|2u;9ol|16;9pt|1e;9r9|15;9sg|17;9ts|z;9v4|1a;9wg|7f;a3x|5u;ab9|;abk|;abu|;abw|;ack|;acz|;ad6|;ad9|1;adv|;ady|;aed|;aen|;af0|;af5|;afc|;afz|;ag4|;ag6|;agr|;ah2|;aim|;aj5|;aj7|;ajd|;ajl|;ajx|;ak0|;ak2|;ak7|1;akk|;al3|1;ald|;alh|;alp|;am7|;am9|;amd|;amf|;ami|;amm|;amq|;amu|;amz|;an1|;anl|2;anv|;any|;ao9|;aoo|;aoq|;aoz|;ap1|;ap9|;aph|;apl|;apq|;apz|2;aq6|;aqn|;aqp|;are|;arl|;asa|;asl|;asq|;ass|;asw|1;at1|;at5|;at8|;atd|;atf|2;atj|1;atv|1;aty|;au5|;au9|1;aud|1;aut|;av5|;av7|;avc|;ave|;avh|;avw|;aw2|1;aw5|;awc|1;awg|;awi|1;awq|;aww|;awz|;axu|;ay7|;azb|;azk|;b09|;b0e|;b12|;b1u|;b20|;b23|;b2n|;b2x|;b34|;b3h|;b3q|;b3s|;b4z|;b5h|;b6o|;b7n|;b7w|;b81|;b84|;b96|;b9k|;b9w|;baf|;baq|;bb3|;bbh|;bc3|;bco|;bcw|;bd5|1;bde|;bdl|;bdn|;bdt|;bdw|;beg|;bfg|;bfm|;bfp|;bfw|;bg8|;bgb|;bge|;bgh|;bgj|;bgm|;bh3|1;bhl|1;bhw|;bij|;biq|;biv|;bj0|;bj2|;bja|1;bkn|;bl7|;blp|;bmm|;bmo|;bn4|;bn6|;bn9|;bnf|;bny|;bo9|;boi|;bor|;bp5|;bpe|;bq0|;bq8|;bqp|1;bqz|1;br4|;brp|1;brt|;bs1|;bss|;bsu|;bsy|;bt0|;btj|;btp|;bu4|;bua|2;bv1|;bv5|;bv9|;bvc|;bx0|;byj|;c0b|;c0d|;c0h|;c0m|;c0s|;c17|;c1b|;c2a|1;c2l|;c36|;c3f|;c3q|;c3w|;c3y|;c41|;c4f|;c4i|;c4p|1;c4v|;c51|;c59|;c5h|;c5k|;c5m|;c5r|;c5t|;c6d|;c6l|;c6s|;c73|;c7a|1;c7d|;c7g|1;c7n|;c7v|;c87|1;c8b|;c8j|1;c8n|;c8s|1;c92|;cao|;car|;caw|;cb9|;cc4|;cdk|2;cdp|;cdt|;ce0|;ce7|;cea|;cef|;cei|;cek|;ceo|1;ceu|1;cey|1;cf2|;cf5|1;cfb|;cfd|;cff|1;cfk|;cfn|1;cfu|;cfw|;cfz|1;cg4|;cg6|1;cge|;cib|;cig|1;cir|;cjg|;ck3|;clc|;clk|;clz|;cm4|;cmd|;cml|;cmx|1;cn8|;cnd|;cnx|;cop|;cp1|;cpf|;cpj|;cpu|;cpx|;cq2|;cq7|;cq9|;crs|;cs4|;csb|;csf|;cso|;ct4|;ctb|;cu0|;cu2|;cua|2;cuh|;cum|;cvl|1;cx3|;cx8|;cxa|;cxo|;cxr|;cxt|;cy8|;cz6|;czo|;czu|;czz|;d0b|;d0t|;d0v|;d15|;d1t|;d2b|;d34|;d40|;d4a|;d4m|;d4q|;d58|;d5g|;d5u|;d6d|;d6h|;d6k|;d84|;d8b|1;d8q|;d9n|;dbi|;dcn|;dcq|;ddm|;ddt|;deh|;den|;df1|;df4|;df6|;dfl|1;dg3|;dgl|;dgt|;diy|;djj|;djl|;djz|1;dk2|;dkg|;dkn|;dkt|;dkw|;dkz|;dl1|;dla|;dlp|2;dlt|;dlw|;dm1|3;dmc|;dmr|1;dmx|;dmz|;dna|;dnf|;dnh|;dnr|;dny|;do3|;do6|;dob|;dod|;dof|;doj|;dox|1;dp1|;dp4|;dp8|;dpd|1;dpm|;dpp|;dpz|1;dqd|;dra|;drn|;dsq|;dt5|1;dtv|;dty|;du7|;dud|;duf|;dwb|;dx6|;dxc|;dy9|;dym|;dyz|;dzj|1;e0l|;e0n|;e1f|;e1k|;e2e|;e2s|;e32|1;e4c|;e54|;e5i|;e6t|;e7h|;e7o|;e80|;e8b|;e9j|;eal|;eb5|;ecb|;ect|1;eds|;ee5|;eel|;eer|;eey|;efa|;efl|;efy|;eg5|;ega|;egd|;egf|1;egl|;egs|;egu|;eh1|;ehd|;ehf|;ehx|;ei2|;eia|;eix|;ejl|;ejr|;elb|;elh|;elj|;emn|;en1|;en8|;enp|;eqe|;eqs|;er8|;erc|;es1|;esk|;etb|;ets|;eu1|;eu8|;euk|;euv|;ewf|1;ewi|;ewr|;ewu|;exa|;exc|;exf|;exi|1;exp|;eyl|1;eyo|;f0k|;f0n|;f0u|;f1u|;f23|;f26|;f28|;f2f|;f2v|;f2z|;f3h|;f3r|;f3v|;f3x|;f41|;f45|;f50|;f5a|;f5c|;f5j|;f65|;f6p|1;f71|;f7r|;f7t|;f80|;f90|;fau|1;fbd|;fbl|;fbw|;feo|1;fer|1;fev|a;ff8|2;ffc|2;ffg|;ffi|1;ffl|1;ffo|;ffq|;ffs|;ffu|9;fg6|3;fgb|2;fgf|;fgi|1;fgl|;fgn|2;fgr|;fgt|2;fgy|1;fh2|;fh4|7;fhl|1;fhv|;fi0|;fi6|b;fij|3;fip|4;fiw|3;fj2|8;fjc|;fjf|3;fjn|;fjq|1;fjt|3;fjz|5;fk6|5;fkd|1;fkk|6;fks|3;fkx|;fkz|2;fl4|3;fla|;flc|8;fln|;flp|;flr|6;fm0|3;fm5|8;fmf|3;fml|;fmq|;fmw|1;fn0|1;fn3|1;fn6|2;fna|9;fnl|2;fnp|4;fnv|p;fon|;fop|3;fou|2;foy|p;fpp|;fpr|3;fpw|4;fq2|4;fqa|;fqg|;fqj|;fqm|2;fqq|5;fqx|2;fr1|;fr3|6;frb|a;frn|1;frq|b;fs4|1;fsc|;fse|c;fst|1;fsw|;fsz|;ft1|4;ft7|4;ftd|b;ftq|5;ftx|c;fub|2;fuf|;fuj|1;fuo|1;fur|;fut|a;fv5|;fv7|;fv9|3;fve|c;fvs|8;fw2|5;fwa|;fwd|;fwg|3;fwl|;fwn|1;fwr|3;fww|2;fx0|2;fx4|6;fxe|1;fxi|;fxo|c;fy2|5;fy9|1;fyc|7;fyl|4;fyr|4;fyx|2;fz1|;fz3|2;fz7|7;fzg|5;fzn|3;fzs|1;fzv|j;g0g|5;g0n|1;g0q|;g0s|;g0v|3;g10|2;g15|2;g19|1;g1c|5;g1j|6;g1r|2;g1v|6;g23|2;g29|1;g2c|3;g2h|a;g2t|;g2v|7;g35|;g38|5;g3g|;g3k|;g3m|;g3q|4;g3x|;g3z|;g41|7;g4a|;g4c|;g4e|;g4g|;g4i|;g4k|1;g4n|1;g4q|2;g4u|;g4w|9;g58|2;g5f|h;g5z|1;g63|7;g6c|;g6l|;g6o|1;g6r|3;g6w|2;g70|2;g74|3;g79|7;g7i|;g7k|3;g7q|1;g7w|5;g84|6;g8e|;g8g|8;g8q|2;g8x|;g8z|1;g92|1;g95|6;g9e|;g9g|3;g9l|9;ga0|7;gaa|3;gaf|6;gan|5;gav|6;gb3|2;gb7|1;gba|5;gbj|2;gbn|1;gbq|;gbs|6;gc5|;gc9|;gcb|1;gce|;gcg|3;gcl|;gcn|;gcp|;gcs|1;gcw|3;gd1|4;gd7|;gd9|7;gdi|;gdl|;gdn|;gdr|2;gdv|2;gdz|5;ge6|1;ge9|;ged|1;geg|3;gel|5;get|2;gex|1;gf0|1;gf3|5;gfb|;gfe|;gfg|1;gfj|5;gfr|2;gfv|a;gg7|3;ggc|2;ggh|3;ggn|;ggq|;ggs|5;ggz|1;gh2|1;gh5|;gh8|9;ghj|2;ghn|4;ghu|;ghw|;gi2|;gi6|1;gia|2;gie|4;gik|4;giq|;gis|a;gj4|;gj6|;gj8|;gja|;gjd|;gjf|;gjl|2;gjp|;gjs|5;gk0|2;gk4|;gk6|5;gkf|7;gko|b;gl1|3;gl7|1;gla|;gld|;glf|1;gli|e;gly|;gm0|9;gmb|m;gmz|8;gn9|3;gne|5;gno|;go0|d;gof|9;goq|8;gp0|4;gp7|d;gpm|;gpo|;gpq|;gps|k;gqe|j;gqz|5;gra|;gre|;gri|;grk|b;grx|2;gs1|2;gs7|1;gsa|3;gsf|;gsh|j;gt3|1;gt6|;gta|;gtf|;gth|3;gtm|f;gu3|1;gu6|3;gub|8;gul|6;gut|2;gv0|3;gv5|5;gvd|2;gvl|2;gvp|2;gvt|;gvv|9;gw6|f;gwo|2;gws|1;gwv|;gwx|d;gxc|5;gxl|3;gxr|w;gyp|9;gz0|;gz2|4;gz9|2;gzd|9;gzo|2;gzs|1;gzw|b;h0b|8;h0l|;h0n|;h0p|1;h0s|4;h0y|9;h19|6;h1h|1;h1k|2;h1o|4;h1u|2;h1z|3;h25|1;h28|6;h2g|c;h2u|6;h32|9;h3d|7;h3m|1;h3p|;h3r|3;h3w|3;h41|;h44|4;h4a|5;h4h|6;h4p|;h4s|7;h51|1;h54|5;h5d|;h5f|1;h5i|1;h5m|1;h5p|5;h5w|1;h5z|;h62|1;h65|4;h6f|;h6h|2;h6l|;h6n|5;h6v|6;h76|4;h7c|;h7e|6;h7m|1;h7s|2;h7w|4;h82|2;h8b|;h8d|6;h8l|2;h8p|9;h90|;h93|;h97|;h9b|;h9d|1;h9g|;h9i|5;h9p|;h9r|8;ha2|6;haa|1;hag|;hai|3;han|1;har|2;hav|e;hbb|;hbe|;hbi|;hbn|3;hbs|7;hc1|3;hc6|2;hcb|1;hce|2;hci|;hck|1;hcn|;hcs|b;hd5|;hd8|i;hds|e;he8|;hea|;hec|;heg|1;hej|3;heo|a;hf0|f;hfh|;hfj|1;hfo|;hfr|8;hg1|4;hg7|8;hgi|3;hgo|1;hgr|2;hgv|;hgx|5;hh5|a;hhh|6;hhq|6;hhy|;hi0|2;hi4|5;hib|;hid|7;him|3;hir|;hit|1;hiy|5;hj5|1;hj9|4;hjf|;hji|8;hjs|8;hk2|2;hk7|2;hkb|1;hkf|1;hki|2;hkp|6;hky|5;hl6|;hl8|3;hld|1;hlg|3;hll|1;hlo|1;hlr|1;hlu|;hlw|1;hlz|;hm1|6;hm9|1;hmc|;hmf|1;hmk|;hmm|;hmo|;hms|1;hmv|3;hn2|3;hn7|2;hnb|1;hne|;hng|;hnk|2;hnp|;hnr|;hnt|5;ho0|9;hob|a;hop|1;hot|3;hoy|2;hp2|4;hp9|b;hpo|;hpq|j;hqb|h;hqu|;hqw|6;hr4|1;hr7|3;hrc|r;hs9|4;hsf|;hsh|2;hsl|7;hsu|3;hsz|2;ht3|;ht5|5;htf|;hth|4;hto|2;hts|a;hu4|1;hu8|u;hv4|1;hvb|8;hvl|3;hvq|;hvs|;hvu|2;hvy|9;hw9|9;hwk|3;hwp|3;hwu|m;hxi|9;hxt|;hxv|;hxx|h;hyg|6;hyo|;hyq|9;hz1|2;hz5|2;hz9|;hzb|2;hzf|2;hzj|2;hzn|4;hzt|2;hzx|4;i03|5;i0a|6;i0i|;i0k|;i0o|;i0s|5;i0z|5;i16|7;i1f|5;i1m|3;i1r|;i1u|4;i20|1;i23|3;i28|8;i2i|3;i2n|6;i2v|2;i2z|1;i32|2;i36|1;i39|a;i3m|6;i3u|;i3w|2;i40|;i43|6;i4f|8;i4q|4;i4w|9;i57|;i5a|e;i5q|5;i5x|1;i60|;i62|;i67|;i69|;i6b|2;i6f|f;i6y|;i70|;i72|2;i76|3;i7c|;i7e|;i7g|;i7k|1;i7n|;i7r|5;i7y|3;i84|d;i8j|3;i8o|1;i8s|2;i8w|;i8y|3;i93|3;i98|3;i9d|;i9f|1;i9k|4;i9q|;i9v|;i9x|1;ia0|5;ia7|6;iah|1;iak|l;ib7|;ib9|3;ibe|;ibl|1;ibq|6;iby|d;ice|1;icl|;ico|2;ics|5;id0|5;id7|2;idb|2;idi|1;idn|7;idw|7;ie5|3;iea|7;iek|;iem|c;if0|7;if9|7;ifi|;ifk|2;ifp|2;ift|;ifv|;ify|;ig2|1;ig5|;ig7|2;igb|1;igf|3;igk|;ign|b;ih0|7;ih9|1;ihe|3;ihj|;ihl|1;iho|6;ihw|;ihz|b;iic|6;iik|1;iio|3;iiu|1;iix|;iiz|;ij1|;ij3|;ij5|1;ij8|4;ijf|;ijh|5;ijp|3;ijv|;ijy|;ik0|5;ik7|;ik9|;ikd|2;iki|2;ikm|;ikp|3;iku|;ikx|1;il0|7;il9|;ilb|6;ilk|1;iln|;ilp|1;ilv|1;ily|2;im5|1;im8|5;img|;imi|5;imr|2;imv|2;imz|8;ina|a;inm|4;ins|8;io2|2;io6|7;iof|;ioi|;iol|2;iop|3;iow|;ioy|6;ip6|4;ipc|9;ipp|1;ipt|1;ipw|a;iq8|j;iqt|4;ir0|;ir2|1;ir5|3;ira|6;iri|1;irl|1;iro|1;irr|1;iru|5;is2|3;is7|1;isa|1;isd|;isf|;isi|7;ist|1;isw|1;isz|;it1|3;it6|2;itc|;itf|3;itk|9;itw|;ity|3;iu4|2;iu9|4;iuf|;iuh|4;iun|5;iuu|3;iuz|8;iv9|7;ivk|2;ivq|3;ivv|1;ivy|3;iw4|b;iwh|1;iwl|2;iwp|c;ix5|;ix8|1;ixb|3;ixg|5;ixn|;ixp|4;ixv|2;iy0|;iy2|1;iy5|2;iy9|;iyb|2;iyf|1;iyi|1;iyl|;iyn|1;iyx|e;izd|5;izk|f;j01|4;j07|;j09|;j0b|;j0g|7;j0p|4;j0w|;j0y|3;j14|3;j19|2;j1e|e;j1u|;j1x|;j1z|;j26|3;j2b|7;j2k|2;j2o|;j2q|;j2s|3;j2y|6;j36|2;j3a|2;j3k|h;j43|c;j4h|;j4j|2;j4n|d;j52|3;j5c|h;j5v|d;j6a|4;j6g|5;j6n|1;j6q|1;j6v|2;j6z|1;j72|2;j76|;j78|;j7a|1;j7f|;j7h|5;j7o|c;j82|4;j88|g;j8q|2;j8u|9;j95|1;j98|2;j9c|3;j9j|;j9l|5;j9s|6;ja0|5;ja7|;ja9|1;jac|;jaf|j;jb0|;jb2|5;jb9|8;jbj|1;jbn|;jbq|;jbs|;jbu|;jby|2;jc2|9;jcd|1;jcg|2;jcl|c;jcz|1;jd3|3;jd8|2;jdc|2;jdg|2;jdl|2;jdr|6;jdz|;je1|5;je8|;jea|2;jee|1;jeh|1;jel|6;jeu|8;jf4|4;jfc|4;jfi|;jfk|6;jfs|;jfx|7;jg6|1;jg9|h;jgs|;jgu|a;jh9|;jhg|;jhi|;jhk|9;jhv|3;ji0|1;ji3|4;ji9|r;jj3|;jj9|;jjf|o;jk7|2;jkb|6;jkj|3;jko|;jl4|7;jld|d;jls|h;jmc|6;jml|;jms|1;jmv|2;jmz|7;jn9|8;jnj|6;jnr|b;jo4|;jo6|3;job|a;jon|a;jp5|;jp9|1;jpc|j;jpx|m;jql|9;jqw|1;jqz|1;jr2|;jra|1;jrd|7;jrm|6;jru|2;jry|a;jsa|6;jsi|9;jst|4;jsz|;jt7|;jt9|1;jtc|4;jtk|9;jtx|4;ju3|i;jun|;juq|;jut|;juv|6;jv3|4;jv9|5;jvg|4;jvm|4;jvt|;jvv|9;jw6|;jwb|a;jwn|;jwp|2;jwt|3;jwy|2;jx2|5;jx9|;jxc|d;jxr|5;jxz|1;jy2|7;jyb|1;jye|1;jyh|1;jyk|5;jyr|6;jyz|b;jzd|7;jzm|7;jzv|;jzx|2;k01|;k03|;k05|1;k08|2;k0d|;k0f|;k0h|;k0j|7;k0s|3;k0y|6;k16|3;k1b|;k1e|a;k1r|a;k23|1;k28|2;k2c|3;k2h|;k2j|7;k2s|1;k2v|1;k2y|2;k32|2;k36|1;k39|4;k3f|4;k3l|5;k3v|9;k46|1;k4a|1;k4d|6;k4l|1;k4o|1;k4s|9;k56|3;k5b|1;k5e|j;k60|;k64|c;k6j|;k6l|9;k6x|1;k75|4;k7b|6;k7j|;k7l|2;k7r|;k7t|f;k8a|2;k8e|6;k8m|8;k8w|;k90|a;k9c|2;k9g|6;k9p|;k9r|3;k9w|;ka0|3;ka5|e;kal|3;kas|;kau|9;kb6|;kba|;kbc|6;kbk|;kbn|1;kbq|3;kbv|3;kc0|4;kc6|3;kcc|;kce|7;kco|8;kcy|7;kd7|;kd9|6;kdh|3;kdm|4;kdt|;kdv|3;ke0|7;kec|5;kej|6;ker|;ket|2;kex|1;kf0|6;kfb|;kfe|l;kg1|6;kg9|;kgb|a;kgn|3;kgs|1;kgv|1;kh0|;kh8|;kha|d;khr|7;ki0|c;kie|9;kiq|5;kix|h;kjg|;kji|6;kjx|;kk0|;kk2|2;kk6|2;kka|8;kkl|1;kko|3;kkt|2;kkx|d;klc|h;klv|3;km5|;kmd|;kmj|;kml|2;kmp|1;kms|5;kmz|h;knj|5;knq|2;knv|2;knz|5;ko6|g;kop|;kot|;kox|;koz|b;kpc|8;kpm|;kpo|5;kpv|1;kpy|6;kq6|f;kqo|l;krb|4;krp|;kru|;krw|;krz|1;ks2|7;ksb|b;kso|4;ksu|1;ksx|16;ku8|;kua|1;kud|1;kui|;kul|1;kuo|1;kur|9;kv2|p;kvt|;kvv|9;kw6|;kw9|8;kwj|3;kwp|;kwx|1;kx0|5;kx7|3;kxd|3;kxi|n;ky7|;ky9|;kyb|e;kyr|;kyt|4;kyz|2;kz6|3;kzc|9;kzn|6;kzv|g;l0d|e;l0t|;l0v|;l0x|;l10|;l12|;l16|;l1a|7;l1j|;l1l|1;l1o|b;l21|f;l2j|4;l2p|a;l31|1;l36|1;l39|8;l3j|2;l3n|1;l3s|9;l45|;l47|1;l4a|2;l4e|3;l4j|;l4m|;l4o|4;l4w|;l4y|3;l54|3;l5b|4;l5i|4;l5p|1;l5s|1;l5v|;l5x|;l60|;l64|1;l67|;l69|e;l6p|2;l6t|9;l74|2;l78|3;l7d|;l7f|1;l7i|9;l7u|;l7x|;l7z|;l82|;l84|;l86|5;l8e|6;l8m|;l8o|2;l8s|3;l8x|;l90|5;l97|;l9a|2;l9e|5;l9m|1;l9p|3;l9u|1;l9x|2;la2|;la4|1;la7|2;lab|a;lan|1;laq|2;lau|2;lay|2;lb2|;lb4|4;lba|2;lbe|2;lbj|1;lbm|1;lbr|f;lc8|1;lcb|2;lcf|2;lcj|3;lco|5;lcv|2;lcz|5;ld6|2;lda|d;ldp|6;ldy|;le1|7;lea|;lec|1;lef|a;let|6;lf1|9;lfc|3;lfh|j;lg2|4;lg8|5;lgf|;lgi|;lgq|a;lh2|h;lhl|e;li1|a;lid|;lif|c;lit|;lix|;lj3|j;ljq|5;ljx|3;lk2|;lk4|u;lla|;llj|5;llq|c;lm4|6;lmc|10;lne|;lno|1;lnu|2;lny|1;lo1|4;lo7|9;loi|;lok|9;lov|n;lpk|f;lq1|5;lq8|;lqa|3;lqi|;lqn|;lqt|;lqw|5;lr3|n;lrs|9;ls3|4;ls9|2;lsd|s;lt7|;lta|1;ltd|3;lti|3;lto|;lty|;lu0|1;lu3|;lu5|3;lua|2;lue|h;luy|1;lv2|14;lw8|5;lwi|;lwo|1;lwr|4;lwx|1;lx0|r;lxu|8;ly4|;ly6|9;lyh|o;lz7|1;lzi|a;lzu|a;m06|1;m09|7;m0i|2;m0m|c;m10|a;m1c|;m1e|5;m1p|p;m2g|c;m2u|9;m37|2;m3c|c;m3q|3;m3v|7;m44|;m46|2;m4a|2;m4e|3;m4j|4;m4p|6;m4x|;m50|g;m5i|6;m5r|6;m5z|5;m66|8;m6g|5;m6o|2;m6s|4;m6y|i;m7i|3;m7o|6;m7w|3;m81|5;m89|2;m8e|1;m8h|5;m8o|2;m8v|2;m8z|4;m95|;m97|6;m9f|2;m9j|7;m9s|;m9w|4;ma2|g;mak|6;mas|;mb3|2;mb7|d;mbm|;mbo|2;mbt|5;mc0|;mc3|;mc7|;mc9|a;mcl|1;mco|1;mcr|1;mcu|8;md6|1;mda|;mdc|7;mdl|b;mdy|4;me4|g;mem|;meo|8;mey|4;mf4|2;mf8|6;mfg|;mfi|4;mfo|;mfq|f;mg7|3;mgc|1;mgf|6;mgn|3;mgs|f;mha|4;mhg|2;mhk|5;mhr|3;mhw|4;mi3|3;mi8|2;mic|2;mig|1;mij|8;mit|2;mix|1;mj0|4;mj7|4;mjd|2;mjh|2;mjm|c;mk0|;mk5|1;mk8|3;mkd|5;mkk|;mkm|6;mkv|1;mky|1;ml1|e;mli|1;mll|1;mlo|;mlq|2;mlu|2;mly|3;mm3|7;mmc|5;mmj|d;mmy|1;mn1|2;mn5|9;mng|4;mnm|;mno|1;mnu|;mnx|;mnz|7;mo9|5;mog|2;mok|;mom|4;mos|;mov|5;mp2|;mp4|3;mpf|1;mpi|c;mpw|;mpz|1;mq2|2;mq7|4;mqe|3;mqj|3;mqq|1;mqt|9;mr4|c;mri|7;mrs|2;mrw|6;ms7|4;msd|5;msl|7;msu|a;mt6|i;mtq|1;mtu|6;mu4|6;muc|9;muq|a;mv2|2;mv6|e;mvm|c;mw0|b;mwd|2;mwj|q;mxd|1;mxg|3;mxl|d;my0|i;myk|;myn|o;mzd|c;mzr|f;n09|1;n0c|7;n0l|8;n0w|;n0y|;n10|1;n13|a;n1f|8;n1p|;n1r|3;n1w|7;n25|6;n2d|1;n2g|;n2i|2;n2n|1;n2r|m;n3g|;n3i|;n3k|2;n3o|4;n3v|;n3x|3;n42|3;n47|1;n4b|f;n4s|3;n4x|1;n51|1;n54|d;n5j|4;n5p|3;n5u|;n5y|2;n62|5;n69|;n6b|2;n6h|4;n6n|1;n6q|5;n6y|6;n76|;n7a|4;n7h|3;n7n|1;n7q|1;n7u|8;n84|1;n88|2;n8d|1;n8i|3;n8n|;n8q|1;n8w|6;n94|d;n9j|1;n9m|8;n9w|1;n9z|d;nae|1;nal|;nan|k;nbb|6;nbj|2;nbn|3;nbt|g;ncc|1;ncf|6;nco|;ncq|3;ncw|;ncy|1;nd2|3;nd8|8;ndi|4;ndo|;ndr|3;ndw|3;ne1|1;ne4|a;neg|7;nep|1;nes|;neu|5;nf2|2;nf6|1;nf9|1;nfd|5;nfl|;nfo|2;nfu|1;nfx|3;ng4|1;ng7|1;nga|1;ngd|2;ngi|4;ngo|2;ngs|2;ngy|2;nh2|;nh5|6;nhd|;nhf|4;nhl|1;nho|9;nhz|5;ni6|;ni9|;nib|2;nif|5;nim|5;nit|;nix|2;nj1|3;nj6|7;njf|;njh|;njj|;njl|d;nk0|;nk3|4;nka|5;nki|;nkk|2;nko|4;nku|5;nl1|a;nle|;nlj|e;nlz|2;nm3|4;nm9|;nmb|;nmd|;nmf|c;nmt|;nmv|1;nmy|3;nn3|8;nnd|6;nnm|3;nnr|;nnt|7;no3|2;no7|7;nog|;noi|1;nol|4;nos|8;np3|7;npe|1;nph|1;npk|1;npo|8;nq0|;nq4|7;nqd|g;nqv|2;nr0|1;nr6|3;nrb|7;nrk|4;nrw|2;ns0|;ns2|;ns4|2;ns8|9;nsp|3;nsu|3;nsz|6;nt8|3;ntd|;ntf|7;ntq|7;ntz|6;nu7|5;nue|;nug|4;num|;nup|;nur|2;nuv|e;nvb|1;nve|1;nvh|8;nvr|3;nvw|9;nw7|;nw9|6;nwh|1;nwk|2;nwp|;nws|;nwu|;nww|4;nx3|;nx5|;nx7|3;nxd|;nxf|c;nxt|5;ny0|a;nyc|8;nyn|m;nzb|4;nzh|;nzk|4;nzt|1;nzw|7;o06|2;o0a|1;o0d|g;o0v|3;o10|a;o1c|4;o1i|5;o1p|4;o1w|2;o20|a;o2c|2;o2g|;o2k|4;o2q|2;o2u|1;o2x|5;o35|;o38|;o3a|2;o3e|1;o3k|;o3m|4;o3s|;o3u|4;o40|5;o47|5;o4e|2;o4i|;o4m|;o4o|;o4q|8;o53|;o55|7;o5f|b;o5w|;o5y|2;o62|2;o67|3;o6d|;o6f|2;o6j|3;o6o|2;o6s|2;o6w|3;o71|4;o77|9;o7j|a;o7y|2;o82|1;o88|4;o8e|a;o8q|2;o8u|7;o93|4;o9b|;o9d|;o9f|;o9k|5;o9r|1;o9u|5;oa1|2;oa5|2;oae|1;oah|8;oas|2;oaw|4;ob2|6;obc|3;obh|3;obm|j;oc8|1;ocb|;ocg|;oci|g;od0|2;od4|;odc|7;odl|;odo|c;oe3|;oea|;oec|1;oef|1;oei|8;oes|9;of4|4;ofg|3;ofl|1;ofo|1;ofr|2;ofy|;og0|1;og4|3;og9|3;oge|2;ogk|1;ogo|k;ohc|4;ohj|c;ohx|2;oi1|9;oid|;oih|;oij|8;oit|8;oj4|;oj7|;oj9|;ojb|2;ojf|5;ojm|3;ojr|3;ojw|1;ok0|1;ok3|1;ok6|1;ok9|4;okf|1;okj|4;okp|7;oky|3;ol4|9;olf|3;olk|2;olo|2;olt|1;olw|4;om4|;om6|1;om9|2;omd|3;omk|;omm|1;omp|4;omw|7;on6|1;on9|;onb|7;onk|7;ont|1;onw|4;oo2|;oo6|2;ooa|;ooc|d;oor|3;oow|y;opx|;oq0|1;oq3|1;oq6|5;oqd|1;oqg|f;oqy|;or1|9;orc|;ore|5;orl|2;orq|5;orx|6;os9|4;osf|2;osj|3;oso|1;osr|4;osx|6;ot8|8;oti|f;otz|b;ouc|3;ouh|7;ouq|2;ouv|a;ov7|7;ovg|;ovi|9;ovt|5;ow3|;ow7|g;owq|b;ox3|;ox5|2;ox9|s;oy4|;oy8|c;oym|5;oyt|;oyv|9;oz6|g;ozq|2;ozu|5;p01|b;p0f|;p0k|;p0s|;p16|;p1j|;p1r|;p27|;p3a|;p4m|4;p4t|4;p4z|2;p53|e;p5k|;p5n|6;p5v|;p5x|9;p68|3;p6d|a;p6r|;p6t|a;p75|6;p7e|4;p7k|9;p7w|n;p8l|;p8n|;p8p|9;p90|1;p93|;p97|8;p9h|g;p9z|h;paj|7;pas|5;paz|6;pb8|2;pbc|2;pbg|;pbi|3;pbn|4;pbt|;pbv|4;pc3|;pc6|2;pca|;pcf|3;pck|;pcm|;pco|;pcq|4;pcx|3;pd2|1;pd8|;pdb|4;pdh|4;pdp|3;pdu|;pdw|3;pe1|3;pe7|1;pea|1;ped|1;peg|5;pen|;pep|2;pet|;pev|;pex|2;pf1|2;pf5|1;pf8|4;pfe|;pfg|1;pfm|8;pfw|5;pg4|a;pgg|1;pgj|3;pgp|;pgs|1;pgv|7;ph4|6;phc|3;phh|5;pho|;phq|;phu|;phw|7;pi5|2;pi9|4;pif|;pih|4;pin|3;pis|;piv|;pix|1;pj1|1;pj6|2;pja|2;pje|c;pjt|3;pjy|;pk0|2;pk4|3;pk9|;pkb|9;pkm|4;pks|1;pkv|1;pky|2;pl2|7;plb|;plf|;plh|;plj|9;plu|1;plx|7;pm6|;pm8|7;pmh|h;pn0|1;pn3|3;pn9|;pnb|4;pnh|d;pnw|3;po2|2;po6|6;poe|4;pok|1;pon|6;pow|2;pp0|2;pp4|;pp6|8;pph|1;ppk|5;ppr|;ppu|8;pq4|4;pqa|;pqc|1;pqf|;pqh|;pqj|;pqm|e;pr2|1;pr5|5;prc|1;prf|4;prl|1;pro|c;ps3|2;ps7|;psa|1;psd|7;pso|3;pst|k;ptf|d;ptu|2;pu2|;pu7|a;puj|1;pum|a;puy|v;pvv|2;pw6|8;pwg|;pwi|;pwk|9;pwv|;pwx|c;pxb|6;pxj|d;pxy|1;pya|1;pye|;pyn|;pyr|5;pyy|5;pz5|;pz7|;pz9|p;q00|;q02|a;q0e|2;q0p|;q0t|i;q1d|;q1f|6;q1n|a;q1z|f;q2g|7;q2p|;q2r|4;q2x|b;q3a|;q3c|;q3f|1;q3k|1;q3n|1;q3q|;q3t|;q3v|l;q4i|c;q4w|p;q5n|f;q65|3;q6a|;q6c|;q6e|;q6g|;q6l|7;q6u|e;q7b|b;q7o|;q7q|;q7s|a;q84|3;q89|b;q8m|1;q8q|1;q8u|;q8x|1;q90|1;q93|5;q9a|6;q9i|a;q9u|o;qak|5;qar|e;qb7|1;qbc|;qbf|;qbh|1;qbk|e;qc1|a;qcd|k;qcz|;qd1|7;qda|;qdc|h;qdv|h;qee|4;qen|2;qer|7;qf1|c;qff|;qfh|5;qfp|5;qfw|a;qg8|a;qgk|;qgm|c;qh0|3;qh5|4;qhb|2;qhf|1;qhi|6;qhq|c;qi4|3;qi9|5;qig|4;qim|2;qiq|1;qit|3;qiz|3;qj4|;qj6|4;qjd|;qjf|1;qji|1;qjl|4;qjr|d;qk7|;qk9|3;qke|;qkl|2;qkq|4;qkw|a;ql8|2;qlc|5;qlj|3;qlp|;qlr|q;qmj|1;qmo|1;qmr|1;qmu|9;qn6|2;qna|;qnc|5;qnj|;qnp|6;qny|;qo0|e;qoh|2;qol|;qoo|4;qou|;qow|a;qp8|2;qpc|5;qpj|1;qpm|2;qpq|5;qpy|;qq4|11;qr7|8;qrh|;qrl|8;qrv|2;qrz|5;qs6|2;qsa|5;qsi|3;qsp|t;qtk|4;qtq|;qtt|3;qty|i;qui|5;quq|5;qux|3;qv2|8;qvc|5;qvj|2;qvn|6;qvv|2;qvz|k;qwl|4;qwr|b;qx4|;qx6|5;qxe|1;qxh|2;qxl|2;qxp|1;qxs|5;qxz|4;qy5|5;qyc|3;qyh|;qyk|8;qyv|2;qyz|8;qz9|d;qzo|;qzr|1;qzu|2;qzy|;r01|1;r04|6;r0c|6;r0l|;r0n|;r0p|7;r0y|;r10|b;r1d|;r1i|2;r1n|1;r1q|k;r2d|2;r2h|3;r2m|;r2o|a;r32|1;r35|6;r3d|a;r3p|3;r3v|3;r41|3;r46|1;r49|;r4b|2;r4f|5;r4m|g;r55|6;r5d|3;r5i|1;r5l|3;r5q|5;r5x|6;r67|;r69|;r6b|5;r6j|4;r6p|6;r6x|1;r70|3;r76|;r7a|1;r7d|1;r7g|5;r7q|;r82|4;r89|4;r8f|a;r8r|2;r8w|4;r92|2;r96|2;r9a|2;r9e|2;r9j|1;r9m|;r9o|;r9q|5;r9x|3;ra3|4;raa|1;rad|;raf|;rah|4;rao|1;ras|;rau|;raw|9;rb8|2;rbc|2;rbg|6;rbo|5;rbv|;rby|;rc0|3;rc6|3;rcb|3;rcg|7;rcp|3;rcu|1;rcx|6;rd7|2;rdb|7;rdk|2;rdo|;rdq|;rds|1;rdv|9;re7|1;rea|;rec|;ree|;reg|8;req|7;rez|2;rf3|;rf5|h;rfo|;rfq|2;rfu|1;rfx|f;rge|4;rgk|4;rgq|m;rhe|6;rhm|7;rhv|;rhx|2;ri1|a;rid|l;rj0|4;rj6|1;rj9|8;rjj|1;rjo|;rjr|4;rjx|9;rk8|;rka|2;rke|2;rki|4;rko|4;rku|2;rlq|;rmq|;rp3|;rp5|;rp7|4;rpd|2;rph|c;rpw|3;rq2|;rq4|1;rq7|;rq9|1;rqc|2;rqg|5;rqn|4;rqt|6;rr1|;rr4|2;rr8|2;rrd|1;rrg|1;rrj|6;rrr|e;rs7|6;rsf|1;rsi|j;rt3|1;rt6|;rt8|1;rtb|;rtd|6;rtl|l;ru8|5;ruf|7;ruo|;ruq|b;rv3|a;rvf|2;rxg|;rxi|3;rxn|5;rxu|2;rxy|5;ry5|;ry8|2;ryc|1;ryh|1;ryk|a;ryx|;ryz|1;rz3|2;rz7|;rz9|a;rzm|5;rzt|1;rzw|;rzy|5;s05|3;s0b|6;s0j|a;s0v|5;s12|6;s1a|6;s1m|;s1o|b;s21|1;s25|u;s31|1;s34|1;s37|3;s3c|2;s3g|6;s3o|c;s43|4;s49|h;s4s|1;s4v|;s4x|7;s56|2;s5a|;s5c|2;s5g|a;s5s|8;s62|;s65|4;s6b|a;s6o|;s6q|;s6u|;s6x|1;s70|1;s74|;s76|1;s7d|6;s7l|3;s7r|1;s7u|8;s84|5;s8b|4;s8h|1;s8k|8;s8u|5;s91|6;s99|1;s9c|g;s9v|3;sa1|1;sa4|4;saa|7;saj|1;sam|d;sb1|n;sbq|1;sby|;scz|;sd7|1;sdb|1;sdf|;sdh|3;sdp|f;se6|1;se9|1;sec|2;seh|e;sey|;sf4|6;sfc|;sfe|1;sfh|1;sfk|;sfo|i;sg8|;sgb|2;sgf|3;sgk|3;sgp|b;sh9|2;shd|7;sho|3;sht|1;shw|;shy|1;si1|d;sig|1;sij|3;sio|4;siv|2;siz|5;sj6|m;sju|1;sjx|;sjz|2;sk4|1;sk7|2;skb|;ske|5;skl|3;skq|;sku|8;sl4|;sl7|;sl9|2;sld|;slf|2;slj|1;slm|1;slq|;slw|9;sm7|6;smg|5;smn|6;smx|g;snf|;snh|5;sno|;snq|e;so6|g;soo|3;sou|3;soz|g;sph|5;spo|;spq|7;spz|3;sq4|;sq6|2;sqa|8;sqk|;sqo|7;sqx|a;sra|;srd|a;srp|;srr|g;ss9|5;ssg|7;ssp|;ssr|6;ssz|7;st8|1;stb|;ste|c;stt|;stv|7;su5|d;suk|e;sv0|;sv2|;sv5|;sv7|5;sve|1;svh|1;svk|a;svw|5;sw4|2;sw8|g;swq|1;swt|a;sx7|5;sxe|;sxi|p;sy9|;syb|a;syo|c;sz2|;sz5|6;szd|3;szi|n;t07|2;t0b|;t0d|4;t0j|h;t12|e;t1i|3;t1n|5;t1u|4;t20|3;t25|k;t2r|3;t2w|1;t30|;t34|i;t3o|8;t3y|g;t4g|1;t4j|b;t4w|a;t58|6;t5g|m;t64|9;t6f|1;t6j|;t6l|;t6n|1;t6q|2;t6u|2;t6y|q;t7q|2;t7w|;t7y|;t80|1;t83|e;t8j|1;t8m|j;t97|;t99|;t9c|;t9g|f;t9x|b;taa|b;tan|3;tas|1;tav|1;taz|;tb1|1;tb4|;tb6|3;tbb|i;tbv|8;tc5|;tcv|;tcy|;tdt|;tdv|;tek|;tfa|;tgt|;thj|;tiv|1;tiy|3;tj3|1;tj6|1;tj9|1;tjc|1;tjf|9;tjq|3;tjv|1;tjy|g;tkg|2;tkl|2;tkp|7;tkz|;tl1|8;tlc|6;tlm|2;tlq|7;tm0|;tmc|;tng|2;tnk|4;tns|;tnu|;tnw|7;to8|5;tof|6;toq|7;toz|1;tp2|;tp4|;tp7|4;tpd|3;tpl|4;tpr|9;tq3|3;tq8|1;tqb|8;tql|2;tqp|8;tqz|1;tr2|;tr5|4;trb|3;trg|;tri|;trk|1;trn|1;trq|;trs|1;trv|2;trz|f;tsi|d;tsx|2;tt1|;tt4|2;ttb|3;ttg|7;ttp|;ttr|1;ttu|7;tu3|;tu5|6;tue|;tug|1;tuj|h;tv2|4;tv8|2;tvc|2;tvh|7;tvq|5;tw1|1;tw5|3;twa|8;twm|;two|2;tws|2;tww|4;tx2|2;tx6|b;txj|4;txp|2;txw|;txz|f;tyg|;tyi|4;typ|3;tyu|5;tz1|c;tzf|5;tzm|7;tzw|5;u03|;u05|1;u0d|1;u0g|3;u0l|1;u0o|3;u0t|b;u16|;u18|c;u1n|6;u1v|1;u1y|3;u23|;u25|3;u2a|3;u2f|2;u2j|;u2p|;u2r|g;u3a|3;u3f|5;u3m|a;u3z|6;u5k|1;u5o|3;u5t|3;u5y|e;u6e|6;u6m|;u6z|1;u72|5;u79|2;u7d|4;u7j|;u7l|1;u7o|2;u7t|1;u7w|2;u80|;u82|1;u85|;u87|3;u8c|;u8e|;u8g|c;u8u|1;u8x|;u90|1;u93|c;u9h|;u9j|c;u9x|;u9z|7;ua8|9;uaj|4;uap|2;uc6|3;ucb|3;uch|;ucj|5;ucq|b;ud4|5;udd|4;udj|;udl|;udn|i;ue7|8;ueh|1;uek|2;ueo|1;ues|b;uf5|6;ufd|8;ufo|2;uft|e;ug9|9;ugk|i;uh4|2;uh8|4;uhe|a;uhq|2;uhu|a;uj3|;ujs|;ujv|;ujx|;ujz|5;uk6|c;ukm|1;ukq|;ukt|;ukv|9;ul8|;ulb|4;uli|1;uln|4;ult|3;uly|1;um1|6;um9|5;umg|a;ums|6;un2|2;un6|3;unb|4;unh|2;unl|4;unr|;unt|3;uny|8;uo8|;uoa|8;uok|2;uoo|3;uov|2;up0|;up2|3;up8|;upb|2;upg|3;upm|9;upx|3;uq3|;uq5|6;uqd|;uqf|;uqi|1;uql|5;uqs|2;uqw|;uqy|1;ur1|3;ur9|1;urc|1;urh|;urj|2;urn|1;urq|4;urz|;us3|4;us9|5;usg|2;usk|9;usw|1;ut0|;ut3|1;ut9|;utb|;ute|;uth|9;uts|;utu|3;utz|;uu3|2;uu7|2;uub|3;uug|1;uuj|2;uun|;uup|6;uux|8;uv8|c;uvm|7;uvx|3;uw2|1;uw6|2;uwd|1;uwh|4;uwn|5;uzp|2;uzt|1;uzx|;v01|6;v09|4;v0f|1;v0i|7;v0s|;v0w|;v0y|;v10|5;v17|;v19|6;v1h|1;v1k|1;v1p|4;v1v|1;v1y|3;v23|;v25|8;v2h|3;v2m|6;v2u|b;v3b|e;v3r|2;v3v|h;v4g|;v4i|2;v4m|n;v5b|;v5d|k;v5z|o;v6p|5;v6w|1;v6z|5;v76|l;v7t|c;v87|8;vat|;vax|4;vb3|f;vbk|i;vc4|d;vck|3;vcr|9;vd2|2;vd8|5;vdf|3;vdk|;vdm|6;vdu|;vdw|4;ve3|;ve5|l;veu|4;vf2|2;vf6|1;vf9|7;vfi|;vfk|;vfm|n;vgb|;vgd|1;vgg|g;vgy|l;vhl|3;vhq|4;vhw|7;vi6|1;vil|1;vio|2;vis|5;vj0|;vj3|1;vj6|;vj8|f;vk7|4;vkg|;1d6o|8;1d6z|2;1d79|;1d7b|;1d7e|;1d7m|;1d7x|;1d84|;1d87|;1d8a|;1d8j|;1d8n|1;1d8q|;1d8y|;1d9a|;1d9e|;1d9h|;1d9j|;1d9p|;1d9u|;1d9y|;1da0|1;1da3|;1da6|;1da8|;1dae|;1dai|;1dam|;1dat|;1db0|1;1db3|;1dbp|;1dbv|;1dbx|1;1dc5|1;1dc8|;1dcg|;1dco|1;1dcs|2;1dcw|;1dcy|2;1dd3|;1dd5|;1ddg|1;1ddm|;1ddp|;1ddr|;1ddu|;1ddx|3;1de2|;1de4|1;1df7|2;1dfe|;1dft|;1dfv|;1dgd|1;1dkw|4;1e6o|9;1e7k|y;1e8k|i;1e94|3;1edd|4e;1eht|t;1eiq|5;1eiy|5;1ej6|5;1eje|2;1ejk|6;1ejs|6;2q68|c;2q6o|2k;2q9c|1o;2qdc|2;2qds|17;2qf4|8;2qfk|1;2t5t|;2t6m|;2t6u|;2t72|;2t7s|;2t8m|1;2t8q|;2t90|;2tai|3;2tap|;2tbi|;2tcc|;2tce|;2tco|;2tgk|;2tgp|;2tgr|;2thd|;2thw|;2tiq|;2tj8|;2tjg|;2tjo|;2tkp|;2tln|;2tmc|1;2tnd|;2tni|;2tnk|;2to7|;2tof|1;2tph|;2tqi|;2tr9|;2ts1|;2ts5|2;2ttq|2;2tuo|;2tuv|;2tv9|;2tvt|;2tvv|;2tx1|;2tx8|;2txv|1;2ty7|;2u05|;2u13|;2u1a|;2u1d|1;2u1v|;2u3b|;2u4c|;2u4e|;2u6f|;2u8e|;2u91|;2u9f|;2u9v|;2ua2|;2ua8|;2uad|;2uan|1;2uaz|;2uc1|;2uc5|;2uc9|1;2uco|;2ucw|;2udy|;2ueu|;2uj2|;2uk1|;2um1|;2ur0|;2usz|;2uvp|;2uxi|;2uxv|;2uz8|;2v09|;2v3b|;2v4h|;2v68|;2v73|;2v7u|;2v90|;2v9e|;2v9p|;2vbh|;2vf3|;2vfj|;2vfs|1;2vgf|;2vgm|;2vgr|;2vhe|;2vhn|;2vi3|;2vi7|;2vij|;2vil|;2vj4|;2vjo|;2vju|1;2vk1|2;2vkj|;2vl1|;2vlj|1;2vlo|;2vm5|;2vme|;2vmk|;2vn9|;2vnc|;2vnz|;2vo3|3;2vod|;2vot|;2vpb|;2vpx|;2vqg|;2vqp|1;2vra|3;2vrg|2;2vsf|;2vsh|;2vsk|;2vss|;2vsu|1;2vti|;2vto|;2vtz|;2vua|;2vuw|;2vwk|;2vwp|1;2vwt|4;2vx2|;2vx9|;2vyk|;2vzh|;2vzn|;2vzp|6;2w0c|;2w0m|;2w0o|;2w0t|;2w0y|;2w16|2;2w1i|;2w2f|1;2w2l|;2w3c|3;2w4d|;2w4m|;2w4t|1;2w4w|1;2w57|;2w5o|;2w6c|;2w7h|;2w7k|;2w8d|;2w8k|2;2w8s|;2w9r|;2wa2|3;2wb8|;2wbh|1;2wcv|;2wd8|;2wdr|;2wdx|3;2we3|;2weg|;2weu|;2wf1|;2wfo|;2wfz|2;2wg7|2;2wgf|;2wgj|;2wh0|;2whg|2;2wj3|;2wjf|;2wjh|;2wjp|;2wjs|;2wjz|;2wlc|;2wlj|;2wnt|;2wqk|;2wr3|;2wsc|;2wtk|1;2wts|;2wv7|;2wvy|;2ww2|3;2wxi|;2wxm|;2wz9|1;2wzy|;2x08|;2x0c|;2x1h|1;2x2l|;2x32|;2x3n|;2x3q|;2x44|;2x4v|;2x5e|;2x5g|1;2x6y|;2x7b|;2x86|;2x9k|;2xa5|;2xdj|;2xdu|;2xee|;2xhm|;2xhv|;2xi1|;2xj2|;2xk1|;2xle|;2xmg|;2xmi|;2xmo|2;2xn7|;2xn9|;2xnj|;2xnq|2;2xoa|2;2xoe|;2xot|;2xow|;2xpi|;2xq2|2;2xqv|;2xrg|5;2xrn|1;2xt7|;2xtc|5;2xtv|;2xtz|;2xuh|3;2xun|;2xv3|;2xv9|1;2xvc|4;2xwg|;2xwo|2;2xwt|;2xx5|2;2xxc|;2xxh|;2xxu|;2xy6|;2xy9|3;2xyv|;2xyz|;2xz7|2;2xzy|4;2y0u|1;2y1d|;2y1i|3;2y2i|;2y2r|2;2y34|2;2y39|;2y3g|;2y3m|;2y3r|;2y4b|;2y4k|;2y54|;2y5m|;2y64|;2y68|;2y6b|;2y6g|;2y6u|;2y8r|;2y9f|;2yb1|;2yb8|;2ybp|;2ybv|;2ycj|;2yis|;2ym9|1;2yp6|;2yr4|;2ysi|;2ysl|;2yss|;2yx2|;2yxf|;2yxq|;2yz4|;2z06|;2z0a|;2z0q|;2z0x|;2z1n|;2z21|;2z30|;2z37|;2z3r|;2z3x|;2z61|;2z6s|;2z6w|;2z7s|;2z85|;2z9r|;2z9x|;2zca|;2zdq|;2zdt|;2zfs|;2zid|;2zih|;2zjy|;2zkq|;2zlz|;2zng|;2zoq|;2zq3|;2zqr|;2zqy|;2zs1|;2zsx|;2zsz|;2zuw|;2zy4|;302p|;302t|;3071|;307k|;307r|;308q|;30bp|;30c1|;30cr|;30cx|;30ds|;30e4|;30e9|;30eh|;30ek|;30fh|;30gj|;30gr|;30hc|;30ic|;30jx|;30kv|;30la|;30nv|1;30ob|;30q0|;30qi|;30ra|;30rc|;30tw|2;30uq|;30us|;30uz|;30v3|;30ve|;30xh|;30xt|;30ye|;30z8|1;30zx|;311f|;313z|1;314h|;3165|;316p|;3187|;319i|;31a1|;31an|;31bb|;31bf|;31c0|;31cj|;31ie|;31lb|;31lh|;31ly|;31m0|;31n2|;31nm|;31of|;31oj|;31pm|;31sa|;31se|;31uu|1;31vc|;31vw|;31w1|;31w5|;31wi|;31xk|;31y3|;31y9|;31yh|;31yq|;31yv|;31z6|;31za|;31zd|;3213|1;321e|;322s|;3230|;323r|;324t|;3251|;325c|;325f|1;325z|;327i|;328d|;329i|;329u|;32bc|;32bv|;32cz|;32en|;32ic|;32ks|;32lf|;32nn|;32o4|;32ob|;32p2|;32pp|1;32q6|;32rb|;32rg|;32sa|;32tf|;32v1|;32wt|;32wy|;32xw|1;32yb|;32yw|1;32zu|;3307|2;330v|;331h|;331r|;331t|3;332u|;3332|;3336|;3341|;3349|1;3357|2;336a|;336o|1;337k|;337u|;338f|;33ck|;33d8|;33dq|;33dy|;33ec|1;33eh|1;33em|;33eo|;33gf|;33gw|;33hr|;33hu|;33l1|;33mh|;33n4|;33o1|;33oa|;33on|;33px|;33q1|;33q4|;33qz|;33rh|2;33sj|;33sw|;33tj|;33tm|;33uk|;33uo|;33vd|;33vj|;33w7|;33wu|;33xa|;33xi|;33xp|;33y2|;33z3|;33zi|;3403|;340m|;340w|;3419|;341b|;341r|;342u|;343l|;344i|;3458|;345e|;345x|2;348q|;34jm|;34pz|;34rf|;34ry|;34sa|;34t6|;34uy|;352b|;353t|2;354l|;354n|;3553|2;356k|3;358g|;3597|;35a6|;35an|;35bq|7;35cz|;35dk|;35dy|;35e9|;35f0|5;35fd|;35hk|3;35ix|;35j3|;35jr|;35kn|5;35md|;35mp|;35my|;35nl|;35of|3;35ov|;35pw|;35pz|;35q8|;35qd|;35rf|5;35sh|;35tl|4;35uf|;35vp|;35vv|2;35w1|;35xl|;35y9|;35yk|;35z8|;35zj|;35zt|;360v|1;3610|;361a|;361h|2;361o|;361r|;361t|;362f|;362i|;363n|2;363w|;3645|;364t|;365e|;3664|;366z|;368b|;368m|;368p|;369i|2;369w|;36ab|;36ad|;36at|;36bj|;36bl|;36bt|1;36cu|;36d6|;36dp|;36e2|;36es|;36fc|;36g2|3;36h8|;36hi|;36ho|;36il|;36ip|;36jt|1;36k2|;36k8|;36kk|;36lx|1;36my|1;36nn|;36o7|1;36pl|;36po|;36q6|;36qb|;36qe|;36rp|;36sh|;36uw|;36x4|;36zc|;36zu|;371h|;371w|;372v|;374k|;375y|;376t|;3773|;379r|;37c0|;37de|;37dv|;37gi|;37jd|;37jk|3;37jv|;37jz|2;37kc|;37km|1;37kp|;37lb|;37lf|1;37lq|5;37mq|1;37n8|2;37nf|;37nj|;37nm|;37ns|7;37o4|;37ok|;37on|;37op|;37or|2;37p3|4;37ph|;37ps|;37q2|;37q6|1;37qb|;37qd|;37qk|1;37qu|3;37qz|;37ri|;37rm|1;37rp|;37s1|9;37su|;37sy|;37t1|;37t6|;37ta|3;37tp|;37tx|2;37u9|;37uf|3;37v0|;37v7|3;37vo|3;37w1|2;37wa|2;37wg|;37wn|;37wq|;37wx|;37xb|;37xe|;37xl|;37yn|;381a|;3851|;385l|;389q|1;38ax|;38bd|;38cm|;38cz|;38hk|;38iy|1;38l7|;38ls|;38o5|;38o7|;38r2|;38t8|;38ua|;38ue|;38uv|;38uy|;38vd|;38vs|;38w2|;38z0|;3902|;3925|;3963|;396w|;398d|1;39al|;39b7|;39ba|1;39cw|1;39e8|;39g9|;39hj|;39i0|;39ji|;39jl|;39jn|;39qx|;39r9|;39rj|1;39s6|;39t8|;39ta|;39ui|;39yp|;39yt|;39z3|;39zv|3;3a02|;3a05|1;3a0x|;3a10|;3a1b|;3a2h|;3a39|;3a3f|;3a3k|;3a4l|;3a5x|;3a6p|;3a83|;3a8l|;3aar|;3aba|;3abq|;3acd|;3acl|;3ad9|;3aeq|;3ah3|;3ahr|2;3al3|;3al9|;3alu|;3ao8|;3aou|;3aox|;3apv|;3arq|;3as6|;3auk|;3avg|;3az8|;3b11|;3b18|;3b1q|1;3b2v|;3b3d|;3b78|;3b7t|;3b8z|1;3b9i|;3bac|;3bag|;3bb5|;3bba|;3bc1|;3bd6|;3bdx|;3bf5|;3bfo|;3bgg|1;3bi6|;3bj4|;3bjk|;3bk3|;3bmh|;3bnd|;3bpq|;3brd|;3bsx|2;3bty|;3buk|;3bvb|1;3bx6|;3byj|;3c2p|1;3c4h|;3c4p|;3c5k|;3c6c|;3c77|;3c7r|;3c84|1;3caq|;3cbl|;3cd5|3;3cfh|1;3cfm|;3cgt|;3ck8|;3ckh|;3ckq|1;3cnk|;3cqd|;3cqz|1;3cr5|;3cu6|;3cvp|;3cvs|;3cw2|;3cwg|2;3cy2|;3cyx|;3czo|;3czs|1;3czx|;3d08|;3d3m|;3d6a|;3d7k|;3d7x|;3d8f|;3daq|;3dba|;3df3|;3df5|;3df9|;3dga|;3dgo|;3dh8|;3dhy|;3dj5|;3dll|;3dmb|1;3dn0|;3dp8|;3dqe|;3dr2|;3dri|;3ds8|;3dsa|;3dsj|;3dtz|;3dvy|;3dw1|;3dwm|;3dx5|;3dxt|;3e08|;3e0l|;3e2a|;3e2i|;3e3x|1;3e44|;3e4i|;3e4x|1;3e9x|;3ea2|;3eab|;3ead|;3ear|;3eaw|;3ec0|3;3ecb|;3ed1|;3ede|;3edy|1;3ee5|;3eer|;3ef4|;3egn|;3eht|;3eio|1;3eiu|;3eke|4;3elg|;3elz|1;3em5|;3em8|;3emb|;3emp|;3eoy|8;3eq9|;3er8|;3esg|7;3esu|;3eu4|;3eui|1;3euo|;3ev4|;3ev9|;3evb|;3evm|;3ewy|3;3ey6|;3eya|;3eyf|;3eys|;3eyw|;3eyz|;3ezd|;3f0w|7;3f3a|;3f5f|1;3f6n|;3f6p|;3f7i|;3f8e|1;3f9q|;3fbf|;3fbm|1;3fd4|;3fe5|2;3ff1|;3ff6|;3fg0|;3fg8|;3fgp|;3fgs|1;3fhi|1;3fj8|1;3fjp|;3fm5|;3fob|;3fqf|;3fr4|;3fr9|;3frf|;3fsi|;3fsm|;3fty|;3fwy|;3fyy|;3g1r|;3g2q|;3g40|;3g5g|;3g5i|;3gc4|;3gdf|;3gf4|;3gf8|;3gfx|1;3gg7|;3ggc|;3ghe|;3ghl|;3gid|2;3gk4|;3gnj|;3gol|1;3gox|;3gpq|;3gqs|1;3gss|;3gwo|;3gxc|;3gyl|;3gz6|;3gzs|;3h2c|;3h47|;3h4q|;3h5s|;3h7h|;3h8d|;3h8q|;3h8u|;3ha6|;3har|;3hax|;3hbt|;3hc4|;3hdp|1;3hf8|;3hfq|;3hfv|;3hg8|;3hh4|2;3hhk|;3hid|;3hm7|;3hmc|;3hn6|;3hpo|;3hrl|;3hs5|;3hv3|;3hw3|1;3hwm|;3hwz|;3hxg|;3hxr|;3hy0|;3hz1|;3hzw|;3i31|;3i33|;3i9a|;3id3|;3iex|;3if6|;3ifd|;3ify|;3ig3|1;3ih4|;3iir|;3ij4|;3ikd|1;3ilk|1;3ilw|;3ini|;3iof|;3iot|;3ipb|;3iq1|;3ir3|;3irg|;3itj|;3iu0|;3iu2|;3ivq|;3iws|;3ixn|;3iz1|;3izm|;3j0m|;3j14|;3j1r|;3j22|;3j39|;3j3h|;3j3x|;3j4a|;3j82|;3jag|;3jak|;3jar|;3jb6|;3jep|;3jgc|1;3jho|;3jl4|;3jlg|;3jls|;3jm3|;3jmt|;3jnf|;3jqi|1;3jqq|;3jr0|;3jrs|;3js6|;3jtb|;3jtf|;3k04|;3k17|;3k7h|;3k8j|;3k94|1;3k9i|;3k9w|;3ka0|;3ka4|1;3kam|;3kax|;3kbs|;3kbu|1;3kc8|;3kcc|;3kcg|;3kd8|;3kda|;3kdd|;3kdf|1;3kdj|1;3ke1|3;3ken|;3keu|;3kf9|;3kfd|;3kfm|;3kfq|;3kg4|7;3kgp|1;3kht|2;3kii|2;3kjk|;3kjq|;3kjv|1;3kjy|;3kke|5;3kkl|;3kkq|;3kl8|;3klo|;3klv|;3km9|1;3kmj|2;3kmn|;3kna|;3kng|;3kni|;3knk|;3ko3|3;3koc|;3kpb|;3kpl|;3kpo|1;3kqh|;3kqq|;3kqt|;3kr8|;3krb|;3krd|1;3krr|5;3ks5|;3ksf|;3ksj|;3ksp|;3kt8|1;3ktf|;3kti|;3ktn|;3kts|;3ku1|;3ku3|;3ky2|;3ky5|;3kya|;3l10|;3l3t|;3l4p|;3l73|;3l86|;3l89|;3l9h|1;3lav|;3lbg|;3lbm|1;3lcp|;3ld3|;3lj9|;3lo9|;3loo|;3lor|;3loz|;3lpr|2;3lq8|;3lr8|1;3lrg|1;3lsd|;3lsg|;3lto|;3lu5|;3luj|;3lum|;3lv4|;3lwc|;3lwo|;3lxx|;3lyj|;3me5|;3me8|;3mer|;3mf3|;3mfc|;3mj4|;3mjd|1;3mjp|;3mjr|;3mou|;3mpc|;3mpk|;3mqf|;3mqx|;3mr8|;3mv3|;3mzk|;3n02|;3n4k|;3n68|;3n87|;3nac|;3nbl|;3nca|;3nch|;3ncq|;3ncz|;3nd1|;3ne7|;3net|;3nev|2;3nfh|;3nfu|;3nh9|;3nib|;3nih|;3nl4|;3nm5|;3nr9|;3nri|;3nx1|;3o1f|;3o31|;3o72|;3o7u|;3o8s|;3o9k|;3o9n|;3oc6|;3ocm|;3odp|;3ofc|;3oh8|;3ohc|;3ohv|;3ojc|;3okj|;3okw|;3oon|;3opq|;3or8|;3ouf|;3ovt|;3owx|;3ox9|;3oxf|;3oxk|;3oxq|;3oxz|;3oyr|;3oz7|1;3p00|;3p1u|1;3p2j|;3p2s|1;3p3z|;3p4l|;3p5s|;3p6b|;3p8z|;3p9b|;3p9u|;3p9w|;3p9y|;3pa2|;3pa5|;3pb3|;3pbz|;3pe9|;3pgp|;3pil|;3pkk|;3pln|;3pvq|;3pvv|;3pxd|;3pyq|;3pze|;3pzv|;3q21|;3ri7|;3z9g|;465h|;4663|;4668|;467s|;468k|;4692|;46a5|;46aj|;46fo|;46gi|;46gs|;46hg|;4an2|;4ay4|;")) -r.push(new A.a0("Noto Sans Hanunoo","notosanshanunoo/v17/f0Xs0fCv8dxkDWlZSoXOj6CphMloFsEsEpgL_ix2.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;4kg|m;60w|5;61q|;642|1;6bv|2;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;")) -r.push(new A.a0("Noto Sans Hatran","notosanshatran/v15/A2BBn4Ne0RgnVF3Lnko-0sOBIfL_mM83r1nwzDs.ttf","w|;4g|;6bw|;1gbk|i;1gc4|1;1gcb|4;")) -r.push(new A.a0("Noto Sans Hebrew","notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXd4qtoiJltutR2g.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;nj|;13l|1i;15c|q;168|4;60w|5;61q|;642|1;6bw|4;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6ga|;6gc|;6jm|;6qa|;7gs|;1dlp|p;1dmg|4;1dmm|;1dmo|1;1dmr|1;1dmu|9;")) -r.push(new A.a0("Noto Sans Imperial Aramaic","notosansimperialaramaic/v15/a8IMNpjwKmHXpgXbMIsbTc_kvks91LlLetBr5itQrtdml3YfPNno.ttf","w|;4g|;1g74|l;1g7r|8;")) -r.push(new A.a0("Noto Sans Indic Siyaq Numbers","notosansindicsiyaqnumbers/v15/6xK5dTJFKcWIu4bpRBjRZRpsIYHabOeZ8UZLubTzpXNHKx2WPOpVd5Iu.ttf","w|;4g|;17r|;19c|9;1dc|9;2p9t|1v;")) -r.push(new A.a0("Noto Sans Inscriptional Pahlavi","notosansinscriptionalpahlavi/v15/ll8UK3GaVDuxR-TEqFPIbsR79Xxz9WEKbwsjpz7VklYlC7FCVtqVOAYK0QA.ttf","w|;4g|;1gtc|i;1gu0|7;")) -r.push(new A.a0("Noto Sans Inscriptional Parthian","notosansinscriptionalparthian/v15/k3k7o-IMPvpLmixcA63oYi-yStDkgXuXncL7dzfW3P4TAJ2yklBJ2jNkLlLr.ttf","w|;4g|;1gsg|l;1gt4|7;")) -r.push(new A.a0("Noto Sans JP","notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFBEj75vY0rw-oME.ttf","w|2m;4g|2r;7k|3;7u|1;88|3;8z|1;93|1;98|3;9e|1;a0|5;b6|;bk|1;bz|1;ct|f;e0|1;gh|;gx|;jf|;jr|;jt|2;k9|;kq|1;lc|1;lg|;lj|;lo|;pd|g;pv|6;q9|o;sh|;sw|1r;up|;5z2|1;61s|2h;6bm|1;6c0|6;6c8|2;6cc|2;6cg|2;6cl|2;6cw|;6cy|1;6d1|;6d5|3;6de|;6dj|2;6dt|;6es|;6g9|;6gb|1;6hp|1;6io|;6ir|;6it|;6ix|1;6j3|;6j7|;6ja|;6jl|1;6jq|1;6jv|;6jy|;6k5|;6kb|;6lc|b;6ls|b;6mo|9;6ns|1;6o4|2;6ob|1;6og|;6oi|;6ok|;6p2|3;6ph|;6ps|;6pu|1;6px|6;6q7|;6q9|2;6qd|;6qi|;6ql|3;6qr|;6qt|9;6r8|3;6rh|;6rn|;6rp|;6rs|;6rw|;6sg|2;6sk|3;6sq|1;6su|1;6sy|1;6t2|1;6te|5;6tm|1;6tx|4;6u8|;6ud|;6v3|;6vu|1;6wf|;6x1|2;6xe|;6xk|;6y1|1;71s|1;726|e;72m|;72y|1;74z|;76o|97;7g1|2;7g6|1;7gc|1;7gg|1;7gm|1;7gp|3;7gu|5;7he|4;7hr|;7i8|3;7id|1;7ih|;7im|1;7iu|1;7j0|3;7jj|;7k0|2;7kw|f;7le|b;7mo|;7nh|1;7pe|;7pv|;7q2|;7r1|;7r3|1;7rq|;7sm|t;7tt|;850|1;88v|;8ai|1;8hx|2;8ii|;8lx|;94q|1;96o|p;97f|2g;9a8|5x;9gw|b;9hc|1r;9j5|2d;9ll|2u;9ol|16;9pt|1e;9r9|15;9sg|17;9ts|z;9v4|1a;9wg|7f;a3x|5u;a9u|;a9x|1;aav|;ab0|;ab2|;aco|;acq|;adk|;adu|;aet|;af0|;af5|;afb|;afv|;ahr|;aim|;ajh|1;ajn|;ajy|;ali|;alk|;amd|;amy|;an2|;ano|;ao5|;aok|;aq2|;as1|;as6|;as9|;atr|;axt|1;ay3|1;ayd|;az1|;b0h|;b1e|;b1k|;b1w|;b25|;b28|;b3j|;b3q|;b40|;b4s|;b4x|;b6p|;b71|;b96|;b9z|;ba2|;bcf|;bdw|;beg|;bj0|;bji|;bjn|;bk5|;blw|;bm3|;bme|1;bmy|;bn7|;bny|;boa|;boc|;boi|;bp1|;bql|;bqv|;brb|1;brh|;bs4|;bsm|;bsz|;bt9|;bu8|;bub|;bv3|;bvq|;c03|;c0i|;c29|;c2m|;c35|;c3y|;c4k|;c62|;c74|;c7g|;c7o|;c91|;can|1;cbk|;cbq|;cbs|;ccj|;ccq|;cd0|;cey|;cif|;cj6|;cj9|;cjb|;cku|;ckx|;cll|;clz|;cm4|;cop|;cpk|;cr7|;cub|;cud|;cw8|;cwf|;cwz|;cz8|;czj|;d0m|;d0u|;d0z|;d1j|;d1q|;d44|;d5f|;d6u|;d7a|;d7h|;d8i|;d9n|;dab|;df2|;df4|;dfs|;dfw|;dg7|;dgc|;dgi|;dhv|;di3|;diu|;diy|;djl|;dkj|;dku|;dlg|;dmw|;dn1|;dnp|;doj|;dq2|;dr1|;drs|;dry|;dt1|;dt6|;du7|1;dvl|;dwl|;dy9|;dym|1;e18|;e1r|;e3o|;e7a|;e7x|;e8m|;e8u|;e9w|;ea6|;ed1|;ek0|;elj|;em2|;emc|;end|;erg|;euw|;euz|;ewu|;eyq|;eyy|;ez6|;ezs|;f13|;f1c|;f20|;f5w|;f69|;f6p|;f7r|;fav|;feo|5;fev|b;ff8|5;ffi|1;ffl|;ffn|1;ffq|;ffs|a;fg5|4;fgb|1;fgf|6;fgn|1;fgr|;fgt|2;fgx|;fh1|a;fhe|1;fhk|1;fht|;fhv|2;fi1|;fi6|2;fia|;fid|1;fig|6;fip|1;fis|5;fiz|7;fj8|2;fjc|;fjf|5;fjn|;fjq|;fjt|3;fk0|4;fk6|2;fka|1;fkd|3;fkk|7;fkt|8;fl4|;fl7|;fl9|6;flh|2;fln|8;fm0|a;fmd|2;fmh|1;fmk|1;fmz|;fn2|3;fn7|b;fnk|;fnm|1;fnq|3;fnv|l;foj|1;fop|1;fos|;fou|3;foz|;fp1|a;fpd|5;fpk|c;fpy|5;fq5|4;fqj|;fql|2;fqq|;fqt|2;fqx|;fqz|b;frc|c;frr|1;fru|3;frz|7;fse|5;fsl|1;fso|;fsq|;fss|6;ft0|3;ft5|b;fti|9;ftt|d;fu8|;fua|1;fud|1;fuh|;fuj|;fuo|3;fut|5;fv0|;fv2|5;fv9|2;fvd|1;fvg|;fvj|1;fvm|1;fvp|2;fvu|;fvw|1;fw0|2;fw4|4;fwd|;fwg|1;fwj|3;fwo|;fwq|;fwt|9;fx4|4;fxa|5;fxm|;fxo|1;fxr|6;fxz|;fy1|2;fy5|1;fy8|;fya|3;fyf|;fyh|1;fyk|5;fyr|3;fyw|2;fz0|3;fz5|8;fzh|9;fzt|2;fzy|;g00|4;g06|3;g0b|3;g0g|;g0i|;g0k|b;g0x|;g0z|;g13|1;g16|;g18|1;g1b|;g1d|4;g1j|5;g1r|h;g2a|3;g2f|1;g2i|;g2k|;g2n|1;g2q|;g2s|a;g35|;g37|6;g3f|1;g3i|;g3k|;g3m|4;g3t|a;g45|4;g4d|;g4g|6;g4o|5;g4w|8;g56|;g58|3;g5e|4;g5k|5;g5r|;g5t|5;g60|;g63|7;g6d|2;g6h|1;g6k|2;g6o|a;g71|1;g74|8;g7e|1;g7i|;g7l|7;g7x|;g82|;g84|7;g8e|;g8g|3;g8l|7;g8z|2;g93|;g95|4;g9b|;g9g|4;g9m|7;g9v|3;ga1|1;ga4|;ga6|7;gaf|2;gal|;gan|1;gaq|3;gav|3;gb0|1;gb5|7;gbe|2;gbj|1;gbn|4;gbt|4;gbz|2;gc4|a;gcg|1;gcj|7;gcs|1;gcv|3;gd0|5;gd7|f;gdo|;gds|b;ge6|5;ged|3;gei|3;gen|2;ger|;get|c;gf7|2;gfb|6;gfj|4;gfp|;gfs|b;gg5|8;ggh|3;ggn|5;ggu|;ggw|1;ggz|4;gh5|;gh8|9;ghj|4;ghp|2;ghu|2;ghz|2;gi6|;gib|1;gie|;gig|2;gil|;gin|2;gis|2;giw|3;gj1|3;gj6|6;gje|1;gjh|;gjk|5;gjs|7;gk2|5;gk9|2;gkd|r;gl6|;gld|3;glk|b;gm2|1;gm5|4;gmc|;gme|9;gmp|;gmr|3;gmw|1;gmz|5;gn6|2;gna|4;gng|3;gnl|;gnp|;gny|1;go2|;go4|;go6|8;gog|1;goj|4;gor|2;gov|2;goz|3;gp4|a;gph|1;gpo|;gpr|3;gpw|b;gq9|2;gqf|d;gqu|4;gr1|1;grc|;grk|2;grp|1;grs|2;grw|3;gs1|2;gs6|;gsa|;gsc|5;gsk|5;gss|4;gt0|2;gtj|;gtm|1;gtq|1;gtt|2;gtx|1;gu0|1;gu3|3;gu8|1;guc|3;guh|1;guk|1;gun|2;gur|;guu|2;guy|4;gv4|1;gv7|1;gva|;gvv|9;gw6|5;gwe|1;gwh|3;gwn|3;gws|3;gwz|1;gx3|7;gxc|;gxe|;gxi|;gxr|;gxt|;gxv|4;gy1|;gy3|1;gy6|;gy9|3;gyf|1;gyi|5;gyq|2;gyx|;gz0|;gz2|;gz5|;gza|3;gzh|2;gzp|5;gzx|5;h04|;h06|3;h0b|;h0g|;h0o|1;h0s|;h0v|a;h17|2;h1b|5;h1i|1;h1l|;h1n|5;h1v|1;h23|;h26|;h28|4;h2e|;h2g|5;h2n|;h2p|1;h2s|2;h2w|;h2y|;h34|;h38|4;h3e|2;h3j|;h3o|1;h3t|1;h3x|3;h42|;h45|4;h4b|3;h4h|3;h4m|1;h4s|;h4u|;h4w|3;h51|;h54|9;h5f|;h5j|a;h5v|5;h63|;h65|1;h68|3;h6e|1;h6h|1;h6l|;h6n|5;h6v|6;h73|;h75|2;h79|1;h7c|;h7e|3;h7j|b;h7w|4;h83|1;h87|1;h8b|;h8d|3;h8i|;h8l|2;h8q|;h8s|6;h95|;h9b|;h9d|1;h9g|7;h9p|4;h9v|2;h9z|;ha1|3;ha6|1;ha9|2;hag|1;haj|1;har|2;hav|;hax|1;hb0|8;hbb|3;hbg|;hbi|;hbk|;hbn|;hbs|;hbx|;hc0|;hc3|;hc6|2;hcb|1;hce|1;hci|5;hcs|5;hcz|1;hd2|1;hd5|;hd9|;hdc|;hdg|c;hdu|4;he0|5;hed|;heh|;hej|;hel|4;hes|;heu|1;hey|;hf1|;hf3|3;hf8|1;hfd|1;hfh|;hfj|2;hft|4;hfz|3;hg4|1;hg7|3;hge|1;hgh|1;hgk|;hgn|2;hgr|;hgt|;hgw|;hgy|;hh1|;hh4|1;hh8|;hha|3;hhf|;hhh|;hhj|6;hhr|1;hhv|1;hhy|2;hi4|6;hie|;hig|3;him|;hip|2;hiw|4;hj2|;hj5|4;hjb|1;hje|;hjg|2;hjk|a;hjw|6;hk4|1;hk9|;hkb|1;hke|6;hkn|;hkp|4;hky|;hl1|1;hl5|4;hlb|1;hle|4;hlk|5;hlr|;hlt|4;hlz|c;hmd|4;hml|2;hmr|1;hmu|3;hn2|7;hnb|4;hnh|6;hnp|;hnr|8;ho2|4;ho8|1;hob|2;hoh|3;hoq|4;hoy|1;hp1|2;hp5|;hp7|;hp9|;hpb|;hpf|2;hpj|1;hpo|4;hpu|1;hpz|;hq1|3;hq6|;hq9|;hqb|1;hqe|;hqg|3;hql|;hqo|4;hqx|1;hr0|3;hr7|5;hre|2;hri|1;hrl|1;hro|;hrq|2;hrv|;hrz|2;hs3|1;hs9|;hsc|2;hsh|2;hsn|1;hsq|2;hsu|2;hsz|2;ht3|3;ht9|;htb|1;hth|1;hto|;hts|1;htw|5;hu4|;hu8|;hud|;hui|;hum|;huq|1;hut|2;huy|;hv0|1;hvb|;hve|1;hvi|1;hvo|;hvv|;hw0|;hw2|1;hw6|;hw9|3;hwe|2;hwi|;hwn|;hws|;hwx|2;hx1|;hx4|;hx6|5;hxd|1;hxg|;hxi|;hxk|1;hxn|1;hxr|1;hxy|1;hy2|;hy4|;hy8|1;hyb|;hyd|1;hyh|1;hym|;hyo|;hyt|1;hyy|1;hz1|;hz4|1;hzc|1;hzf|1;hzq|1;hzt|;hzv|;hzx|;i01|1;i05|;i0a|;i0c|1;i0g|;i0i|;i0k|;i0m|;i0o|;i0u|;i0w|1;i0z|;i11|;i17|1;i1c|2;i1g|4;i1m|5;i1v|3;i20|1;i23|;i26|3;i2b|;i2d|1;i2g|;i2i|;i2k|l;i37|a;i3j|;i3m|4;i3s|1;i3w|e;i4c|;i4f|8;i4p|;i4s|4;i4y|2;i52|5;i59|5;i5g|5;i5n|1;i5q|3;i5v|3;i60|;i62|;i65|2;i69|e;i6p|3;i6u|1;i6x|1;i72|2;i76|2;i7a|;i7c|6;i7k|2;i7p|1;i7s|9;i85|1;i88|;i8a|1;i8d|4;i8j|;i8l|;i8p|3;i8u|7;i93|2;i98|5;i9g|2;i9l|4;i9z|1;ia2|;ia4|;ia7|3;iac|;ial|;ian|4;iau|7;ib5|7;ibe|2;ibi|;ibp|;ibr|;ibt|;ibv|;ic0|;ic2|;ic7|;ic9|;icd|;icg|1;icm|;ico|2;ict|5;id0|2;id6|1;id9|;idd|;idi|1;idn|;idp|1;ids|2;idw|7;ie5|;ie7|1;iea|2;iee|1;ieh|;iej|;iep|;ies|;iex|;if1|;if3|;if6|1;ifa|2;ife|2;ifi|;ifk|3;ifp|;ift|;ifw|;ifz|3;ig4|;ig9|1;igc|1;igf|1;igj|;igm|;igp|1;igu|1;igx|3;ih3|1;ih6|2;ihc|;ihe|3;ihj|;ihl|;ihn|;ihp|;ihr|1;ihu|;ihw|;ihz|;ii3|1;ii6|;ii8|;iia|;iic|;iif|3;iik|1;iir|;iiv|;iix|;iiz|3;ij4|3;ija|3;ijf|;ijh|1;ijk|9;ijv|;ijy|;ik1|4;ik7|2;ikb|;ikd|3;iki|1;ikm|1;ikr|2;ikx|1;il0|2;il4|3;il9|;ilb|1;ilh|;ilk|;iln|;ilp|3;ilu|1;ilx|3;im5|1;im8|;imb|2;imf|;imh|;imj|1;imm|;imo|1;ims|4;imz|1;in2|1;in5|3;inc|;ine|4;ink|;inm|f;io3|1;io7|;ioa|1;ioe|1;iol|2;iop|1;ios|;iow|;ioy|;ip0|4;ip6|3;ipd|;ipf|;iph|4;ipp|2;ipt|2;ipy|;iq0|4;iq6|8;iqh|a;iqt|;iqw|1;iqz|1;ir4|1;ir7|1;ira|e;irq|b;is3|6;isb|4;ish|8;isr|6;it0|4;it6|7;itg|1;itj|1;itm|;ito|2;its|1;itv|1;ity|3;iu3|2;iu8|7;iuh|4;iun|6;iuv|3;iv0|9;ivb|6;ivj|4;ivq|3;ivw|2;iw0|2;iw4|;iw7|a;iwj|2;iwn|2;iws|1;iwz|2;ix3|2;ix7|2;ixc|4;ixi|3;ixo|2;ixs|2;ixw|;iy0|b;iyd|1;iyg|;iyi|3;iyn|;iyv|;iyy|;iz1|3;iz6|b;izj|3;izo|7;izx|;izz|;j01|;j03|;j05|;j0a|;j0g|3;j0m|7;j0w|2;j10|3;j15|1;j19|;j1b|6;j1j|6;j1r|2;j1x|;j1z|;j26|1;j29|5;j2g|6;j2p|7;j2y|1;j31|3;j36|8;j3k|8;j3v|3;j42|;j44|7;j4e|1;j4h|;j4j|2;j4o|b;j51|;j53|1;j5a|;j5c|d;j5s|3;j5y|4;j64|b;j6h|3;j6m|4;j6v|1;j6y|2;j74|1;j78|3;j7d|1;j7g|3;j7l|1;j7o|a;j83|;j85|;j88|2;j8d|3;j8i|3;j8n|1;j8r|1;j8u|a;j97|9;j9j|;j9m|1;j9p|1;j9s|4;j9y|4;ja4|1;ja7|1;jac|1;jaf|7;jaq|;jau|;jaw|2;jb0|;jb2|;jb4|3;jba|a;jbp|;jbw|3;jc1|2;jc5|4;jcc|1;jcf|;jci|;jck|4;jcq|;jcs|5;jcz|1;jd3|3;jd8|2;jdc|6;jdm|9;jdy|1;je1|2;je6|6;jee|;jeg|1;jej|;jel|7;jeu|3;jez|3;jf4|6;jfc|;jfe|2;jfi|;jfk|1;jfn|1;jfs|;jfx|2;jg1|;jg3|;jg6|;jg9|7;jgi|3;jgp|1;jgt|c;jh7|1;jha|;jhi|;jhk|;jhn|1;jht|;jhv|;jhx|2;ji1|6;jia|;jic|6;jik|h;jj4|1;jje|;jjg|3;jjl|6;jjw|3;jk1|3;jk7|6;jkg|1;jkj|;jkm|;jko|1;jkr|;jkv|;jl3|4;jl9|;jlb|;jle|;jlh|1;jll|6;jlt|3;jly|;jm1|7;jma|3;jmf|2;jmj|1;jmt|4;jmz|3;jn5|1;jn8|4;jne|3;jnj|1;jnm|2;jnr|3;jnw|;jny|2;jo2|;jo4|2;jo8|3;joe|h;joy|;jp0|1;jp7|;jp9|1;jpc|1;jpf|3;jpk|1;jpq|8;jq2|2;jq8|1;jqb|;jqd|;jqh|5;jqq|8;jra|;jrd|1;jrh|;jrj|1;jrm|2;jrq|2;jrw|;jry|;js0|;js2|;js4|2;js8|2;jsc|1;jsf|1;jsk|2;jsq|;jst|2;jsy|;jt7|;jta|1;jtd|3;jtk|;jtm|3;jtr|2;jtv|;jtz|;ju1|;ju5|;ju7|;jub|1;jue|;jug|3;jul|;jur|;jut|;juv|1;jv3|4;jv9|;jvc|3;jvh|2;jvl|;jvn|3;jvs|1;jvv|3;jw0|;jw2|1;jw9|;jwb|4;jwh|1;jwk|1;jwn|;jwp|5;jww|2;jx0|1;jx3|1;jx6|;jxc|7;jxl|1;jxo|1;jxr|3;jxw|3;jy2|1;jy5|4;jyc|1;jyg|2;jyn|;jyr|1;jyu|;jyw|1;jyz|4;jz6|2;jza|;jzd|3;jzi|1;jzl|1;jzo|b;k03|2;k07|2;k0d|5;k0k|5;k0t|3;k0y|1;k12|1;k17|1;k1c|;k1e|;k1g|1;k1j|1;k1m|;k1p|;k1t|4;k1z|3;k24|;k26|;k28|2;k2d|;k2f|2;k2j|2;k2n|2;k2r|4;k2z|5;k36|3;k3b|2;k3g|3;k3l|5;k3s|1;k3v|1;k3y|2;k42|;k44|;k46|3;k4b|;k4f|4;k4l|4;k4s|1;k4w|2;k50|1;k55|3;k5a|2;k5e|2;k5i|4;k5o|3;k5t|5;k64|l;k6r|4;k6x|3;k73|7;k7c|4;k7i|1;k7l|1;k7r|p;k8j|9;k8u|3;k8z|1;k93|2;k97|3;k9c|2;k9i|7;k9r|1;k9u|;k9w|;k9y|;ka3|;ka5|1;ka9|4;kag|1;kaj|1;kam|6;kau|3;kb0|;kb2|1;kb8|;kba|;kbd|4;kbj|1;kbq|;kbs|1;kbv|1;kby|;kc0|;kc2|3;kc7|a;kcj|;kcl|;kcn|2;kcr|5;kcy|5;kd5|;kd7|5;kde|;kdh|3;kdm|4;kdt|;kdv|5;ke2|;ke5|2;ke9|;keb|;ked|4;kek|5;ker|3;kex|;kf0|a;kfe|;kfg|b;kfv|1;kfy|3;kg4|1;kg7|;kg9|;kgb|1;kge|5;kgl|8;kgw|2;kh0|;kh2|;kh5|;khb|a;khn|3;khs|6;ki0|2;ki6|6;kif|7;kip|1;kis|;kiu|1;kix|;kj0|;kj2|9;kjd|3;kji|1;kjl|4;kk0|;kk3|1;kk6|3;kkd|2;kkh|1;kkn|6;kkv|5;kl4|1;kl7|b;klk|2;klo|2;kls|5;klz|2;km3|2;km7|;kmb|;kmf|;kmj|;kmm|4;kms|3;kmx|3;kn2|1;kn5|5;knc|;knh|3;knn|1;knq|7;knz|4;ko5|6;kod|9;kop|3;koz|3;kp4|5;kpb|b;kpo|1;kpr|2;kpv|2;kpz|1;kq2|8;kqd|2;kqh|4;kqo|1;kqr|g;kra|1;krd|3;krl|2;krp|1;krs|;kru|;ks0|1;ks3|3;ks8|1;ksb|;ksd|;ksf|;ksi|;ksl|1;ksp|1;ksu|;ksz|2;kt3|;kt5|5;ktc|6;ktk|d;ktz|b;kue|;kui|;kul|1;kup|1;kus|2;kuw|;kuz|1;kv4|1;kv9|3;kvf|;kvh|5;kvo|;kvr|1;kvu|2;kvy|3;kw3|;kw5|;kw7|1;kwa|7;kwj|;kwm|3;kwt|1;kwy|1;kx1|;kx3|4;kx9|2;kxd|5;kxl|;kxn|;kxp|6;kxx|;ky2|2;ky7|;ky9|4;kyf|;kyh|2;kyl|7;kyw|3;kz2|;kz4|;kz6|9;kzh|2;kzo|7;kzy|;l00|2;l04|2;l08|1;l0b|;l0f|;l0h|1;l0k|;l0m|1;l0q|1;l0x|2;l14|;l16|;l1a|3;l1f|1;l1i|1;l1l|;l1n|;l1p|1;l1s|1;l1w|;l1z|;l23|8;l2d|;l2i|2;l2m|3;l2r|1;l2w|;l2z|;l31|2;l35|2;l3a|;l3c|1;l3g|;l3k|1;l3n|3;l3u|5;l42|;l44|;l47|1;l4a|;l4c|;l4g|3;l4o|;l4q|3;l4y|5;l55|2;l5b|3;l5i|1;l5n|;l5p|4;l5v|1;l5z|1;l63|1;l67|;l6a|;l6d|6;l6l|2;l6r|;l6u|1;l6x|1;l70|2;l74|;l76|2;l7a|;l7c|1;l7f|;l7h|;l7j|8;l7t|3;l7y|2;l82|3;l87|4;l8d|9;l8p|2;l8t|;l91|3;l97|;l9a|2;l9e|2;l9k|d;l9z|9;lab|6;laj|4;laq|2;lau|2;lay|1;lb3|;lb5|;lb7|;lba|1;lbf|1;lbi|1;lbl|;lbn|;lbr|;lbt|;lbz|;lc2|;lc4|1;lc8|2;lcd|7;lcn|;lcp|;lcr|;lcv|;lcz|1;ld2|2;ld8|;lda|;ldf|5;ldm|1;ldq|4;le2|1;le5|3;lea|;lec|1;lef|;leh|7;leq|;lev|1;ley|1;lf1|;lf3|1;lf6|2;lfa|;lfc|3;lfh|1;lfl|8;lfw|1;lg0|;lg2|a;lgf|;lgh|1;lgq|4;lgw|4;lh4|7;lhd|1;lhg|2;lhl|1;lho|1;lhr|8;li1|4;li8|3;lid|;lif|d;liz|;lj4|1;lj8|;ljb|;lje|2;lji|1;ljl|2;ljr|;ljt|2;ljy|1;lk4|7;lke|1;lkh|5;lko|1;lkr|4;lkx|;ll0|1;llj|5;llq|3;llv|4;lm1|1;lm4|;lm6|2;lmc|;lmf|2;lmk|;lmo|2;lmt|;lmv|3;ln0|2;ln5|8;lnf|1;lnu|2;lny|1;lo2|;lo4|1;lo7|2;loc|1;lof|1;loi|;lok|4;loq|2;lou|4;lp1|1;lp4|3;lp9|5;lpg|2;lpk|4;lpq|e;lq8|;lqc|1;lqf|4;lqr|;lqt|;lqv|;lqx|2;lr1|a;lrd|;lrf|4;lrm|;lro|;lrq|;lrs|4;lry|;ls2|3;ls8|7;lsh|3;lsm|2;lsr|4;lsy|1;lt3|1;lt7|;lta|1;lte|1;lti|;ltn|;ltp|3;ltu|;lu1|;lu4|1;lu7|1;lub|;lue|;lug|1;luk|1;lun|1;luq|;lut|;luv|;luy|1;lv1|2;lv5|3;lva|1;lve|3;lvj|6;lvr|8;lw1|;lw3|2;lw9|2;lwd|1;lwm|;lwr|4;lwy|;lx0|;lx3|2;lx7|;lx9|2;lxd|1;lxg|;lxi|;lxk|2;lxo|1;lxr|2;lxv|3;ly0|;ly2|1;ly8|;lya|1;lyd|1;lyh|4;lyn|4;lyt|1;lyw|;lyz|1;lz2|1;lz5|;lz9|;lzj|;lzl|3;lzr|b;m04|;m06|;m08|;m0c|4;m0k|;m0o|;m0q|;m0s|2;m0w|4;m12|2;m17|3;m1c|4;m1i|2;m1m|;m1p|;m1r|2;m1v|5;m22|;m26|3;m2b|;m2d|2;m2h|;m2k|;m2m|;m2o|3;m2t|5;m38|1;m3c|;m3e|1;m3i|3;m3o|;m3s|1;m3v|1;m3y|3;m43|;m45|1;m49|1;m4c|2;m4g|1;m4l|2;m4p|2;m4t|;m4v|;m4x|;m51|;m53|1;m56|1;m59|3;m5f|;m5i|2;m5o|;m5r|1;m5u|;m5w|;m5z|;m61|1;m64|;m66|;m6b|1;m6f|5;m6m|;m6p|;m6s|1;m6w|;m71|1;m77|2;m7d|;m7f|1;m7i|2;m7p|1;m7s|;m7w|2;m81|;m85|1;m89|1;m8e|;m8i|;m8k|5;m8r|;m8v|;m90|;m97|6;m9f|1;m9j|4;ma0|;ma2|1;ma7|;ma9|;mab|3;mag|1;mak|1;man|;mas|;mb0|;mb5|;mbd|1;mbh|;mbn|6;mbv|1;mbz|;mc4|;mc9|1;mcc|;mce|;mcg|1;mcm|;mcr|;mct|4;md2|;md4|;md8|;mdd|;mdh|2;mdl|3;mdq|;mds|3;mdx|2;me1|1;me4|;me6|;me8|;mea|;mec|5;mek|;mem|;mex|;mf1|;mf4|;mf8|1;mfb|1;mfe|;mfg|;mfj|;mfm|;mfo|2;mft|2;mfz|1;mg2|;mg8|;mgc|;mge|5;mgp|1;mgu|3;mgz|1;mh4|1;mh7|1;mha|;mhc|;mhe|5;mhl|1;mho|;mhr|1;mhx|2;mi4|2;mic|1;mig|1;mij|1;mim|2;miu|3;mj1|;mj4|;mj7|;mj9|;mjb|;mje|1;mjh|;mjj|;mjo|;mjs|;mju|3;mjz|1;mk2|;mk4|2;mk8|b;mkl|3;mkr|1;mku|2;mky|1;ml1|e;mlj|2;mln|;mlq|1;mlt|1;mlw|;mlz|2;mm3|7;mmc|;mmf|;mmh|;mml|1;mmq|1;mmu|;mmz|;mn4|;mn6|;mnb|1;mng|6;mno|;mnq|;mnt|;mny|;mo0|4;mo6|1;mo9|;moc|;moe|;mog|;moi|;mol|4;mor|;mov|3;mp1|;mp5|;mp8|1;mpf|1;mpj|7;mpu|;mpw|1;mpz|;mq2|1;mq5|;mqa|1;mqe|3;mqj|4;mqq|;mqs|1;mqv|5;mr2|1;mr5|6;mrd|2;mrh|2;mrn|2;mrx|3;ms2|;ms6|2;msd|3;msj|;msm|6;msu|4;mt1|;mt3|5;mtc|1;mtf|4;mtl|2;mtq|;mts|;mtv|5;mu4|;mu6|2;mua|;mud|1;mug|3;mul|;muq|1;mut|;muv|;mux|4;mv3|1;mv6|;mv9|1;mvc|7;mvm|1;mvq|;mvt|;mvx|1;mw0|1;mw3|4;mw9|1;mwd|1;mwh|;mwk|1;mwn|4;mwt|4;mwz|4;mx5|1;mxd|;mxf|;mxm|1;mxt|1;mxw|2;my0|e;myh|1;myn|2;myr|1;myu|1;myz|;mz1|;mz5|2;mz9|;mzb|;mzd|7;mzm|2;mzq|5;mzx|6;n06|;n0e|;n0g|1;n0j|;n0l|4;n0r|;n0v|3;n13|3;n18|;n1a|5;n1h|6;n1q|4;n1x|;n21|2;n25|;n27|;n2g|2;n2k|;n2n|1;n2r|1;n2u|;n2w|;n2y|2;n32|2;n36|2;n3a|5;n3i|4;n3o|;n3q|2;n3u|2;n3z|;n41|;n43|3;n4c|2;n4h|2;n4l|3;n4q|;n4s|;n4u|e;n5b|4;n5i|a;n5v|1;n5y|c;n6c|;n6f|;n6h|9;n6s|3;n6x|4;n73|g;n7l|1;n7p|2;n7t|3;n7y|7;n89|1;n8c|1;n8i|3;n8r|;n8w|5;n93|3;n98|b;n9m|;n9o|3;n9u|3;n9z|2;na3|9;naf|;nah|;nak|;nam|6;nax|1;nb0|;nb2|6;nbb|6;nbj|;nbm|1;nbp|1;nbs|1;nbv|e;ncd|;ncg|;nci|3;nco|4;ncw|c;nda|;nde|;ndh|1;ndk|1;ndo|;ndr|;ndt|1;ndw|1;ndz|3;ne4|6;nec|;nee|;neg|;nei|4;neo|8;nez|3;nf4|;nf7|;nf9|1;nfd|f;nfu|;nfx|3;ng4|;ng6|4;ngd|;ngf|;ngh|2;ngl|1;ngo|6;ngy|;nh0|;nh2|1;nh5|;nh7|1;nha|3;nhf|5;nhm|2;nhq|;nhs|2;nhw|;nhy|;ni0|1;ni3|1;ni6|;ni8|1;nic|;nie|6;nim|;niq|;nis|1;niv|;nix|3;nj2|2;nj6|;nj8|2;njc|1;njh|2;njo|6;njw|2;nk0|;nk2|;nk5|2;nka|;nkd|2;nki|;nkm|2;nkq|2;nku|a;nl6|2;nlc|;nle|2;nll|1;nlo|4;nlw|;nm3|3;nm9|;nmc|2;nmi|;nmm|2;nmq|;nms|1;nmv|;nmx|1;nn0|5;nn7|;nn9|2;nnd|;nnf|4;nnn|;nnr|;nnt|;nnx|;no1|1;no5|;no7|;no9|3;noe|2;noi|5;nop|1;nos|5;noz|1;np4|;np7|1;npe|;nph|1;npl|;npo|2;npt|1;npw|1;nq1|;nq5|;nq8|3;nqd|2;nqk|2;nqo|;nqq|;nqs|1;nqv|;nqy|;nr3|;nr7|2;nrb|1;nrg|;nri|1;nrl|1;nrw|2;ns0|1;ns3|1;ns8|;nsa|2;nse|1;nsi|;nsk|;nsq|;nss|;nsu|;nsx|;nt2|1;nt6|;nt8|3;ntd|;ntf|2;ntj|1;ntm|;ntp|2;ntt|;ntv|1;ntz|3;nu4|1;nu7|4;nud|;nui|5;nup|;nut|7;nv2|;nv4|6;nve|1;nvj|2;nvo|;nvq|2;nvu|;nvw|;nvz|;nw2|2;nw6|1;nw9|2;nwd|4;nwm|1;nws|;nwu|;nww|2;nx5|3;nxa|2;nxh|9;nxs|1;nxw|1;ny2|8;nyc|7;nyn|2;nyr|5;nyy|6;nz6|;nz9|;nzb|2;nzf|;nzh|;nzm|;nzr|;nzt|3;nzy|3;o04|1;o0a|5;o0h|;o0j|3;o0o|;o0r|2;o0x|;o12|5;o1a|3;o1f|1;o1k|3;o1p|5;o1w|;o1z|6;o27|;o29|1;o2c|2;o2g|;o2i|;o2l|a;o2x|4;o34|1;o3c|;o3f|1;o3k|;o3m|1;o3p|;o3r|7;o41|;o44|1;o47|5;o4e|3;o4n|;o4r|;o4t|5;o50|1;o53|9;o5e|7;o5o|4;o5x|2;o61|;o64|1;o67|4;o6d|;o6f|;o6h|2;o6l|;o6o|;o6s|2;o6w|2;o71|9;o7c|;o7e|1;o7k|8;o7y|2;o83|;o89|1;o8c|;o8e|2;o8j|;o8l|1;o8p|6;o8z|c;o9d|2;o9h|;o9l|4;o9r|4;o9x|8;oa7|2;oac|;oae|;oag|3;oal|2;oaq|;oas|;oau|2;oay|1;ob3|;ob5|1;ob8|;obc|1;obf|;obi|2;obn|;obp|c;oc3|3;oc9|;ocb|;ocd|;ocf|2;ocl|4;ocr|b;od9|;odc|;odg|3;odl|1;odo|9;odz|;oe1|1;oe7|;oec|;oee|1;oeh|;oej|;oel|5;oes|d;of9|;ofe|;ofg|1;ofj|3;ofo|2;ofs|;ofu|3;og0|2;og4|8;ogf|;ogk|;ogm|1;ogp|2;ogt|;ogw|;oh0|2;oh4|2;oh9|;ohc|;ohe|8;oho|;ohq|;ohs|4;ohy|1;oi1|;oi3|4;oi9|3;oif|;oih|;oij|;oim|3;oir|;oit|3;oiy|2;oj3|;oj5|;oj7|1;oja|4;ojh|3;ojm|1;ojp|1;oju|;ojw|1;ojz|i;okj|2;okn|;okp|;oks|4;oky|1;ol1|;ol5|;ol7|3;old|2;oli|1;oll|;oln|;olp|;olr|1;olu|;olw|1;olz|1;om3|;om6|4;omc|4;omj|;oml|1;omo|3;omu|1;omx|7;on6|;on8|1;onb|3;onh|2;onm|8;onw|4;oo2|;oo6|1;oo9|;oob|;oof|;ooi|;ook|2;ooo|3;oou|;oow|;ooy|9;op9|;opb|f;ops|3;opy|;oq2|9;oqd|;oqh|1;oqk|c;oqz|6;or7|;or9|2;ord|5;orl|2;orp|3;oru|;ory|;os0|3;os5|1;os8|3;osd|;osf|;osh|2;osl|1;oso|1;osr|2;osv|;osx|;osz|;ot2|1;ot5|7;ote|1;oti|1;otm|h;ou5|3;oua|5;oui|8;out|5;ov0|2;ov4|6;ovc|5;ovj|;ovl|1;ovo|2;ovt|2;ow0|1;ow4|1;ow8|3;owg|2;owl|;own|;owr|8;ox2|2;ox7|4;oxd|2;oxh|2;oxl|2;oxp|2;oxt|;oxv|5;oy2|1;oy5|1;oy8|;oya|;oyc|2;oyg|2;oyl|2;oyp|1;oyt|2;oyx|2;oz1|3;oz7|;oz9|;ozc|1;ozf|4;ozl|2;ozq|4;ozw|a;p08|;p0a|5;p4m|;p4o|;p4q|5;p4z|2;p53|;p58|9;p5k|;p5n|2;p5r|2;p5v|8;p65|1;p68|2;p6d|;p6f|2;p6l|3;p6q|1;p6t|3;p6y|7;p78|;p7a|1;p7e|;p7g|2;p7l|3;p7q|;p7s|2;p7x|2;p82|;p84|;p86|;p88|1;p8c|1;p8f|2;p8j|;p8l|1;p8o|;p8q|;p8s|;p8u|1;p8y|;p90|1;p97|;p9b|2;p9f|;p9h|1;p9k|1;p9n|1;p9q|2;p9u|1;pa1|f;pai|f;pb0|5;pb8|;pba|;pbc|;pbg|;pbi|;pbk|;pbn|4;pbt|7;pc3|1;pc6|;pca|;pci|;pcm|;pco|;pcq|;pcu|4;pd0|;pd2|;pd4|;pd9|;pdb|8;pdl|;pdn|;pdp|4;pdw|5;pe3|1;pe6|;peb|;pee|;peg|6;pep|1;pes|3;pex|4;pf3|;pf5|1;pf8|;pfc|2;pfn|3;pfs|;pfu|;pfw|3;pg2|;pg4|7;pgd|1;pgg|1;pgk|2;pgt|h;phd|2;phh|6;php|;phy|2;pi2|2;pi6|;pi8|;pib|1;pif|;pih|;pij|1;pin|2;pir|;pit|;pix|1;pj0|2;pj5|;pj9|2;pje|2;pji|;pjk|5;pjr|;pjz|2;pk5|4;pkb|;pkd|4;pkj|1;pkn|3;pkv|7;pl4|;pl6|1;pla|2;plf|;plh|1;plk|;plm|4;pls|;plu|2;pm0|1;pm6|;pm8|;pma|3;pmg|;pmi|1;pml|6;pmt|1;pmw|3;pn1|2;pn5|;pn7|;pn9|6;pnh|4;pnn|2;pnr|1;pnu|3;pnz|7;po8|d;pon|9;poy|2;pp2|9;ppd|1;ppk|4;ppq|;ppu|8;pq4|;pq8|;pqb|4;pqh|;pqj|;pqm|1;pqp|;pqu|4;pr0|1;pr3|1;pr6|2;pra|2;pre|1;prh|2;prl|1;pro|;prq|3;prv|;prx|4;ps3|1;ps7|;ps9|2;psd|1;psh|3;psm|;pso|3;pst|;psv|2;psz|h;ptj|8;ptx|1;pu8|5;puf|;puh|3;pum|a;puy|1;pv1|;pv3|;pv5|;pv7|1;pva|1;pvd|2;pvh|1;pvk|c;pvy|;pw6|2;pwb|4;pwh|2;pwo|;pwr|f;px8|1;pxc|;pxe|5;pxl|1;pxp|b;py2|;pya|1;pyo|;pyr|;pyt|;pyv|1;pyz|2;pz3|1;pz6|;pz8|3;pzd|1;pzh|1;pzm|4;pzs|8;q02|;q06|7;q0h|;q0l|;q0t|4;q11|;q13|;q15|1;q18|;q1a|3;q1f|1;q1i|;q1k|;q1o|1;q1r|2;q1x|;q20|3;q27|3;q2c|;q2e|3;q2j|2;q2p|;q2r|1;q2u|1;q2y|5;q35|;q37|;q39|;q3b|;q3d|;q3k|;q3m|;q3t|1;q3w|;q3z|;q41|;q45|;q48|1;q4c|1;q4l|5;q4t|2;q4x|1;q52|6;q5b|8;q5l|8;q5v|7;q64|1;q69|1;q6c|1;q6j|;q6o|;q6q|3;q6v|;q6x|;q70|;q72|1;q75|;q7a|;q7c|2;q7h|;q7j|;q7l|1;q7o|;q7s|a;q84|;q86|b;q8j|;q8m|;q8p|1;q8s|;q93|;q96|;q98|;q9a|4;q9g|;q9j|;q9m|3;q9r|1;q9u|1;q9y|1;qa4|;qa6|;qa8|1;qab|2;qaf|1;qai|2;qam|1;qap|6;qay|3;qb3|;qb6|4;qbh|4;qbn|;qbq|;qbs|3;qby|5;qc5|5;qcc|8;qco|3;qct|;qcv|;qd3|;qd5|2;qd9|4;qdg|8;qdr|2;qdv|1;qdz|2;qe3|2;qe7|1;qea|;qec|c;qes|;qeu|4;qf0|3;qf5|1;qfb|;qfd|2;qfh|3;qfp|;qfs|2;qfw|1;qfz|2;qg4|2;qg8|2;qgd|;qgj|1;qgm|1;qgp|3;qgu|2;qgy|;qh0|3;qh6|1;qh9|1;qhc|3;qhi|5;qhq|;qht|1;qhw|;qhz|;qi1|;qi5|;qi7|1;qie|;qig|2;qik|1;qin|3;qiu|;qj1|1;qj4|;qj6|i;qjr|;qjt|;qjv|1;qjz|;qk1|;qk5|2;qk9|2;qkd|;qkn|6;qkx|;qkz|;ql1|1;ql4|;ql6|;ql8|1;qld|;qlf|1;qli|5;qlp|;qlr|2;qlv|6;qm7|2;qmb|4;qmh|;qmj|;qml|1;qmp|1;qms|1;qmv|;qmx|3;qn2|2;qn7|4;qnd|;qng|3;qns|6;qo0|;qo2|9;qod|7;qoo|2;qos|;qou|1;qox|2;qp1|;qp4|1;qpa|1;qpd|1;qpg|;qpj|;qpl|7;qpv|;qpx|;qq1|;qq3|3;qq9|;qqb|;qqd|;qqf|2;qql|;qqn|2;qqr|3;qqw|;qqy|;qr2|1;qr5|1;qr8|;qra|;qrc|;qrf|1;qrj|;qrm|7;qrv|3;qs0|;qs3|;qs5|;qs7|2;qse|2;qsi|1;qsn|;qsr|4;qsx|;qsz|;qt1|;qt6|1;qt9|4;qtg|;qti|5;qtq|;qts|;qtu|;qtx|1;qu1|1;qu4|;qu7|1;qua|4;qui|3;qun|;qup|2;qut|6;qv2|1;qv5|;qv7|;qv9|2;qvd|2;qvh|9;qvs|4;qvy|1;qw1|2;qw7|1;qwd|1;qwg|2;qwl|1;qwp|3;qww|6;qx4|6;qxd|2;qxh|f;qy0|1;qy3|;qy6|4;qyd|;qyf|;qyh|;qyj|;qyl|5;qyw|;qyz|;qz1|;qz6|;qza|6;qzi|2;qzm|;qzo|;qzs|;qzu|1;qzy|;r00|1;r04|1;r07|;r0a|;r0c|a;r0q|5;r0x|4;r14|1;r17|6;r1j|1;r1r|6;r1z|2;r24|2;r29|1;r2c|;r2e|1;r2i|;r2k|4;r2q|1;r2t|1;r2w|2;r30|2;r34|;r39|3;r3e|1;r3k|2;r3p|6;r3y|;r40|6;r49|;r4c|1;r4f|;r4i|;r4m|1;r4q|2;r4u|6;r52|;r56|1;r59|3;r5e|3;r5j|;r5m|7;r5v|;r5y|5;r65|;r67|1;r6b|5;r6i|2;r6n|2;r6t|2;r6x|1;r70|;r73|1;r76|5;r7e|;r7g|1;r7j|2;r82|;r84|4;r8a|;r8c|1;r8j|;r8l|2;r8p|;r8r|;r8t|;r8x|;r8z|1;r92|;r94|1;r99|;r9b|6;r9j|1;r9m|;r9o|;r9q|a;ra3|;ra5|9;rai|3;ran|;rap|;rar|4;ray|4;rb4|1;rb7|;rb9|4;rbh|1;rbk|8;rbv|3;rc0|3;rc5|2;rc9|;rcb|3;rcg|3;rcl|2;rcp|3;rcu|2;rcy|5;rd5|;rd7|2;rdb|4;rdh|5;rdq|3;rdv|7;re4|4;rea|1;ree|1;reh|;rej|1;rem|1;req|2;reu|7;rf3|8;rfe|8;rfo|;rfq|1;rfv|3;rg0|1;rg3|5;rga|;rgc|;rge|4;rgk|3;rgq|7;rh0|;rh2|1;rh5|8;rhi|;rhk|;rhn|2;rhs|;rhv|;rhz|;ri1|;ri4|;ri6|;ri9|5;rig|1;rik|3;rip|3;riu|;riw|4;rj2|1;rj7|;rja|;rjd|;rjf|2;rjj|3;rjo|;rjq|3;rjw|5;rk3|2;rka|6;rki|4;rkp|1;rks|4;rp3|3;rp9|2;rpd|;rph|7;rpq|3;rpv|2;rpz|4;rq5|;rq9|3;rqe|;rqg|5;rqr|;rqt|1;rqw|4;rr2|;rr6|;rr9|2;rrd|5;rrk|;rrm|2;rrs|1;rrv|7;rs4|;rs7|9;rsi|2;rsm|7;rsv|c;rt9|2;rtd|2;rth|1;rtl|5;rts|4;rty|;ru0|;ru2|;ru4|1;ru7|3;ruc|1;ruf|1;rui|5;rup|;rur|2;ruv|4;rv1|3;rv6|2;rva|1;rvf|2;rxg|3;rxl|;rxn|3;rxs|1;rxv|1;rxy|1;ry7|;ry9|1;ryc|1;ryg|;ryi|;ryl|;ryo|1;ryt|;ryx|;rz2|2;rz7|;rza|;rzc|;rzf|1;rzj|;rzm|1;rzp|;rzr|;rzt|3;rzy|;s00|;s02|;s05|3;s0a|2;s0e|1;s0h|;s0k|3;s0p|2;s0t|;s0v|;s0x|;s0z|2;s13|1;s16|2;s1b|6;s1o|1;s1r|;s1t|;s1w|2;s20|4;s27|2;s2c|;s2e|;s2l|6;s2u|1;s2y|;s34|1;s37|6;s3h|;s3k|2;s3o|;s3r|9;s44|1;s49|;s4b|9;s4p|;s4s|1;s4v|3;s50|3;s55|3;s5d|4;s5j|;s5l|2;s5p|;s5s|5;s60|3;s65|1;s69|1;s6f|;s6h|8;s6r|;s6t|1;s6y|1;s72|;s74|1;s77|5;s7e|3;s7j|;s7l|1;s7o|;s7v|1;s7z|;s82|1;s88|;s8b|;s8d|1;s8g|1;s8n|7;s8w|;s8y|1;s91|;s93|3;s98|;s9b|1;s9e|7;s9n|6;s9v|;s9x|a;sab|8;sam|9;sax|1;sb0|3;sb5|4;sbb|1;sbg|3;sbl|5;sd7|d;sdp|5;sdw|4;se2|2;se6|4;sec|2;seg|;sei|1;sel|1;seo|5;sey|;sf4|;sf6|4;sfc|3;sfh|4;sfo|7;sfx|1;sg0|6;sg8|;sgb|6;sgj|8;sgt|6;sh3|3;sh8|3;shd|8;sho|;shq|1;sht|4;shz|;si1|d;sig|1;sij|3;sio|3;sit|4;sj0|4;sj6|;sj8|6;sjg|1;sjj|6;sjr|5;sjy|3;sk5|;sk7|2;skb|;skg|3;skl|1;sko|;skq|;skv|7;sl4|;sl9|1;sld|;slf|2;slj|3;slo|;slq|;slu|;slx|;slz|2;sm3|4;sm9|1;smc|1;smg|;smj|;sml|;smn|1;smq|;sms|3;sn1|3;sn6|;sn8|2;snc|;snh|;snk|;snm|;sno|6;snw|;sny|;so0|;so2|1;so5|;so7|;so9|;sod|5;sok|;som|1;sop|1;sos|1;soz|;sp2|9;spe|2;spi|5;spt|4;spz|;sq1|1;sq4|1;sqa|3;sqf|4;sqp|2;sqt|2;sqx|2;sr1|1;sr4|5;srb|1;srg|;sri|;srl|1;sro|;srq|;srs|;sru|c;ss8|;ssa|3;ssf|a;ssr|6;ssz|1;st2|9;std|;stf|4;stl|1;sto|5;stx|2;su1|;su3|2;su7|2;suc|3;suh|1;suk|2;suo|8;sv0|2;sv7|3;svc|1;svg|;svi|2;svn|7;svw|;svy|2;sw2|9;swd|4;swm|8;sww|2;sx0|5;sxa|3;sxh|4;sxn|5;sxv|;sxx|;sy0|2;sy5|1;sy9|2;syd|7;syn|1;sys|1;syv|1;syz|;sz1|;sz3|;sz6|1;sza|7;szj|4;szp|3;szv|5;t02|1;t05|;t07|2;t0c|1;t0f|2;t0j|2;t0n|3;t0s|2;t0w|;t0y|1;t13|5;t1b|1;t1e|;t1g|;t1i|;t1k|;t1p|;t1r|2;t1w|1;t20|2;t24|g;t2m|1;t2q|5;t2y|1;t38|;t3b|4;t3h|;t3k|2;t3o|4;t3u|2;t3y|;t40|;t44|1;t47|;t49|8;t4j|3;t4q|;t4s|6;t54|;t56|3;t5b|;t5e|;t5g|4;t5m|1;t5q|;t5t|;t5v|1;t5y|3;t63|3;t68|;t6c|2;t6h|2;t6p|;t6r|a;t74|1;t77|;t7a|3;t7g|3;t7l|1;t7o|4;t81|;t85|;t87|4;t8d|;t8h|3;t8n|2;t8t|3;t8z|7;t9b|;t9d|;t9n|;t9q|1;t9t|5;ta0|;ta2|1;ta5|;ta7|;ta9|;tab|2;tag|;tai|;tak|;tap|2;tat|;tax|3;tb2|5;tbc|;tbe|1;tbh|5;tbp|;tbr|;tbw|3;tc1|;tc3|2;tiv|2;tj2|2;tj6|2;tja|9;tjl|3;tjq|;tjs|1;tjx|c;tkb|2;tkh|1;tkk|;tkm|;tkp|6;tkz|;tl2|7;tlc|6;tlk|2;tlo|6;tlw|2;tm0|;tng|2;tnl|1;tno|2;tns|;tnu|;tnw|;tny|1;to1|3;to7|6;tof|3;tok|;tor|2;tov|1;toy|;tp0|;tp2|2;tp7|4;tpd|5;tpm|;tpo|;tpq|;tps|;tpu|6;tq2|5;tq9|5;tqg|3;tql|2;tqp|;tqs|9;tr3|1;tr7|7;tri|6;trq|7;ts0|1;ts4|3;ts9|5;tsh|1;tsl|1;tso|7;tsy|1;tt4|3;ttb|3;tti|1;ttl|2;tts|;ttu|8;tu5|2;tu9|;tub|1;tue|;tuh|5;tup|3;tuv|1;tuy|;tv4|3;tva|;tvc|1;tvf|;tvh|1;tvl|3;tvq|4;tvx|2;tw1|1;tw5|7;twe|;twg|4;twm|5;twt|1;twx|;twz|1;tx2|7;txb|2;txg|2;txl|;txn|;txp|;txr|1;txx|5;ty4|;ty6|2;tya|1;tye|;tyg|;tyj|3;typ|5;tyw|2;tz0|;tz2|1;tz5|;tz7|b;tzk|1;tzn|1;tzr|2;tzv|3;u00|1;u04|;u06|;u0d|2;u0h|7;u0q|1;u0v|;u0x|7;u16|;u18|8;u1i|4;u1o|;u1q|;u1s|1;u1v|3;u23|5;u2a|3;u2f|2;u2j|3;u2s|;u2u|1;u2y|5;u35|a;u3i|;u3m|1;u3p|2;u3u|2;u3z|2;u43|2;u5k|;u5m|1;u5p|4;u5w|;u5y|2;u62|2;u67|;u6a|6;u6j|1;u6m|;u6z|1;u72|5;u79|2;u7d|2;u7h|7;u7q|;u7w|2;u82|1;u85|;u87|3;u8c|;u8g|8;u8q|8;u90|;u92|2;u97|1;u9a|;u9d|4;u9l|5;u9s|2;u9x|4;ua3|3;ua8|2;uac|1;uaf|2;uaj|1;uam|2;uar|;uc6|3;ucb|;ucd|2;ucj|;ucl|1;uco|;ucs|2;ucw|5;ud5|1;ud8|1;udb|;udd|;udf|3;udk|1;uds|5;ue0|7;ue9|1;uef|;uei|4;ueo|2;ues|1;uew|1;uez|4;uf5|4;ufc|;ufe|2;ufi|5;ufq|;uft|1;ufy|;ug0|;ug2|2;ug7|1;ugb|;ugd|1;ugg|1;ugj|;ugl|3;ugu|;ugw|5;uh3|;uh6|4;uhd|1;uhg|4;uhm|1;uhp|;uhr|;uhu|;uhw|1;ui1|3;ujs|;uju|;ujw|4;uk2|;uk4|5;ukb|6;ukj|1;ukm|;uko|;uku|b;ul7|1;ula|2;ule|5;ull|6;ult|4;ulz|;um1|2;um5|;um7|7;umg|1;umj|3;umo|;umq|;umu|;umw|5;un3|1;un6|1;un9|a;unl|4;unr|;unt|4;uo1|4;uo8|;uob|4;uoh|;uok|4;uoq|1;uou|;uox|;uoz|;up1|1;up4|;up6|5;upe|7;upr|1;upv|4;uq1|2;uq5|7;uqe|1;uqi|;uql|3;uqu|8;ur4|2;ur8|;urb|2;urf|1;uri|3;urq|4;ury|4;us4|;us6|2;usb|;usd|;usf|;ush|4;usn|1;usq|1;usu|5;ut1|;ut3|3;ut9|;utb|1;ute|;utg|;uti|;utk|5;utr|7;uu0|6;uu9|9;uul|5;uut|2;uux|2;uv1|1;uv5|;uv7|7;uvi|2;uvm|2;uvq|2;uvu|7;uw3|;uw5|;uw7|4;uwd|1;uwg|;uwi|;uwl|3;uwq|2;uzp|2;uzt|;uzv|1;v00|;v02|2;v06|1;v09|;v0i|1;v0m|3;v0r|;v0u|;v0x|1;v11|;v13|1;v17|4;v1f|;v1i|;v1k|;v1m|2;v1r|1;v1u|2;v22|5;v29|7;v2i|;v2o|4;v2x|;v30|9;v3d|3;v3j|1;v3m|1;v3q|1;v3u|2;v3y|;v43|1;v46|1;v49|1;v4d|2;v4i|1;v4l|5;v4x|;v50|;v55|3;v5a|1;v5d|1;v5g|1;v5k|5;v5r|5;v5y|1;v61|1;v67|;v6b|4;v6h|1;v6m|2;v6r|;v6t|2;v6x|;v6z|;v71|3;v76|2;v7c|2;v7h|1;v7m|;v7r|;v7u|;v7x|1;v80|2;v85|1;v89|6;vat|;vaw|5;vb3|6;vbb|1;vbf|1;vbi|1;vbl|2;vbp|3;vbv|;vbx|2;vc4|2;vc8|2;vcc|4;vcj|2;vco|7;vcz|1;vd2|;vd4|;vd7|7;vdg|1;vdk|1;vdn|5;vdw|1;vdz|1;ve4|6;vec|5;vej|4;veq|1;vev|2;vf2|9;vfd|2;vfj|3;vfq|;vfu|2;vfz|;vg1|1;vg4|;vg7|;vg9|6;vgh|;vgj|4;vgq|1;vgu|2;vgy|6;vh6|;vh9|6;vhi|4;vho|7;vhx|2;vi2|;vi5|;vi7|;vil|;vin|3;vis|3;vix|;vj0|7;vj9|;vjo|;vjw|6;vk4|;vk6|;vkc|;1d6o|2h;1d97|47;1ddg|n;1de6|2n;1dkw|4;1e6o|9;1e7k|y;1e8k|i;1e94|3;1edd|4e;1eht|t;1eiq|5;1eiy|5;1ej6|5;1eje|2;1ejk|6;1ejs|6;2q68|c;2q6o|2k;2q9c|1o;2qdc|2;2qds|17;2qf4|8;2qfk|1;2t57|;2t8p|1;2t9e|;2t9g|;2t9s|;2tbp|;2teg|;2tgi|;2tjn|;2trf|;2ttd|;2ttt|;2tx5|;2tze|;2u4p|;2u67|;2u9d|;2uae|;2uc1|;2uco|;2ui4|;2ukv|;2uo8|;2upz|;2ure|;2uux|;2uxa|;2v0c|;2v0k|;2v19|;2v6s|;2v9v|;2vbx|;2vfj|;2vg7|;2vr9|;2vrs|;2vvl|;2vz8|;2vzh|;2w0l|;2w67|;2wox|;2wql|;2wr9|;2ws4|;2wsb|;2wuv|;2wv8|;2wvx|;2wwr|;2wxi|;2wxw|;2x1g|;2x65|1;2xg7|;2xjb|;2xmc|;2xom|;2xqa|;2y0t|;2y83|;2yai|;2yqe|;2ywd|;2yx1|;2yxu|;2yyg|;2yz6|;2yzg|;2yzl|;2z07|;2z1c|;2z3n|1;2za6|;2zcm|;2zga|;2zqz|;2zvc|;302m|;306l|;30nd|;30tv|;313v|;3163|;31cf|;31ko|;31om|;31ov|1;31ra|;31ul|;31us|;3275|;329u|;32ln|;32ye|;32yr|1;3305|;33aq|;33d8|;33dc|;33de|1;33dh|;33dm|;33dr|;33dw|;33em|;33gq|1;33gx|;33hh|;33l0|;33oa|;33pw|;33r8|;33ug|2;33uv|;340c|;340s|;341r|;342r|1;346f|;346p|;3473|;3484|;348t|;34pk|;3533|;354u|;356m|;356o|;3572|;358g|;35cj|;35dl|1;35oe|;35u3|;35w6|;35z7|;364m|;3666|;36cu|;36ik|;36j4|;36zt|;3739|;37ch|;37h2|;37jd|;37t9|;380m|;381b|;385y|;38d0|;38jo|;38jy|;38l3|;38mi|;38nf|;38xe|;38zu|;3905|;395u|;399l|;39al|;39b9|;39cu|;39e4|;39ri|;39u6|;39w9|;39xq|;3a1z|;3a7z|;3aep|;3ag9|;3agk|;3alw|;3av8|;3avg|;3avo|;3b2v|;3b37|1;3b3l|;3b8y|;3bd7|;3bdw|;3bmp|;3bqm|;3brq|;3bs2|;3bs5|;3buq|;3bvc|;3bvs|;3bxf|;3bz0|;3c2c|;3c2o|;3c3f|;3c3w|;3c47|;3c68|;3ca5|;3ciq|;3ckq|;3ckw|;3cli|;3cr0|;3cw2|;3ddq|;3df4|;3di5|;3dul|;3duy|;3dxt|;3dyn|;3dzt|;3e1p|;3e3i|;3e54|;3e6k|;3e7r|;3e9r|;3ei1|;3ek3|;3ela|;3en1|;3eww|;3exx|;3f6c|;3f92|2;3fg4|;3fgt|;3fi1|;3g0q|1;3g1q|;3g28|;3g3t|;3ggk|1;3ghd|;3gjo|;3gk3|;3gni|;3go3|;3gpe|;3gz6|;3h51|;3h6c|;3hc4|;3hkj|;3hku|;3hl3|;3hoc|;3hrs|;3hwz|;3hy8|;3i1c|;3i5r|;3id3|;3iiy|;3ikb|;3iwn|;3iwy|;3j03|;3j65|;3j7w|;3j9x|;3jdo|;3jhn|;3jk8|1;3jrr|;3jsq|;3k92|;3k95|;3ka3|;3kav|1;3kca|1;3kf2|;3kfd|;3kg3|;3khd|;3kih|;3kjx|;3kkd|;3kkk|;3kqp|;3krz|;3kyl|;3l00|;3l2p|;3l6j|;3l73|;3l7b|;3l7j|;3l86|;3lah|;3ld7|;3ldi|;3lf6|;3lko|;3m3k|;3m41|;3mhc|;3mq7|;3mv3|;3my8|;3mzd|;3n0w|;3n68|;3nba|;3nn6|;3o7f|;3obf|;3od1|;3oe5|;3oeh|;3oga|;3ohw|;3oij|;3oix|;3opa|;3opj|;3ore|;3orz|;3oua|;3oxl|;3p1s|;3p9u|;3pfw|;3pkn|;3pwx|;3pxe|;3py2|;3q2a|;3qp2|;3tc6|;3tch|;3tcj|;3tcq|;3tcs|;3td1|;3tdi|1;3tdo|;3tdu|;3te1|;3te3|;3te6|;3tec|;3tf0|;3tf3|;3tfh|;3tft|;3tfz|;3tg2|;3tg8|;3tgw|;3thp|;3thz|;3ti2|;3z9g|;41vc|;42g9|;42qy|;464k|;464v|;4651|;4654|;4656|;465e|;465k|;465o|;465v|;4667|;466e|;466q|;4676|;467h|;467n|;467r|;4684|;468p|1;4692|;4698|;469e|;469i|;46ab|;46aj|1;46ap|;46at|;46ay|;46b1|;46bg|;46bn|;46bv|;46bz|;46ca|;46cg|1;46dh|;46dj|;46ek|;46fp|;46hc|;46hq|1;46ic|;4an2|;4ay4|;")) -r.push(new A.a0("Noto Sans Javanese","notosansjavanese/v21/2V01KJkDAIA6Hp4zoSScDjV0Y-eoHAHT-Z3MngEefiidxJnkFFliZYWj4O8.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;60w|5;61q|;642|1;6bv|2;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;xhc|25;xjj|a;xjy|1;")) -r.push(new A.a0("Noto Sans KR","notosanskr/v27/PbykFmXiEBPT4ITbgNA5Cgm20HTs4JMMuA.otf","w|2m;4g|2r;7k|3;7u|1;88|3;8z|1;93|1;98|3;9e|1;a0|5;b6|;bk|1;bz|1;ct|f;e0|1;gh|;gx|;jf|;jr|;jt|2;k9|;kq|1;lc|1;lg|;lj|;lo|;pd|g;pv|6;q9|o;sh|;sw|1r;up|;3cw|73;5z2|1;61s|2h;6bm|1;6c0|6;6c8|2;6cc|2;6cg|2;6cl|2;6cw|;6cy|1;6d1|;6d5|3;6de|;6dj|2;6dt|;6es|;6g9|;6gb|1;6hp|1;6io|;6ir|;6it|;6ix|1;6j3|;6j7|;6ja|;6jl|1;6jq|1;6jv|;6jy|;6k5|;6kb|;6lc|b;6ls|b;6mo|9;6ns|1;6o4|2;6ob|1;6og|;6oi|;6ok|;6p2|3;6ph|;6ps|;6pu|1;6px|6;6q7|;6q9|2;6qd|;6qi|;6ql|3;6qr|;6qt|9;6r8|3;6rh|;6rn|;6rp|;6rs|;6rw|;6s2|;6sg|2;6sk|3;6sq|1;6su|1;6sy|1;6t2|1;6te|5;6tm|1;6tx|4;6u8|;6ud|;6v3|;6vu|1;6wf|;6x1|2;6xe|;6xk|;6y1|1;71s|1;726|e;72m|;72y|1;74z|;76o|97;7g1|2;7g6|1;7gc|1;7gg|1;7gm|6;7gu|5;7he|4;7hr|;7i8|3;7id|1;7ih|;7im|1;7iu|1;7j0|3;7jj|;7k0|2;7kw|f;7le|b;7mo|;7nh|1;7pe|;7pv|;7q2|;7r1|;7r3|1;7rq|;7sm|t;7tt|;850|1;88v|;8ai|1;8hx|2;8ii|;8lx|;94q|1;96o|p;97f|2g;9a8|5x;9gw|b;9hc|1r;9j5|2d;9ll|2u;9ol|16;9pt|2l;9sg|17;9ts|z;9v4|1a;9wg|7f;a3x|5u;ae2|;afr|;ahh|;aht|;aim|;anz|;ar3|;atf|2;aue|;aw3|;awf|;awq|;b0c|;b2k|;b2w|;b5v|;b7e|;b8n|;b99|;bc0|;bc5|;bcz|;bdc|;bdx|;bee|;bi1|;bl0|;bmk|;bna|;bnn|;boj|;bqx|;bub|;bv8|;bvo|;bvx|;bzx|1;c1o|;c2f|;c4f|;c70|;c76|;cec|;cfh|;cfx|;cg4|;cof|;cok|;cpu|;crt|;csp|;cvr|;cz0|;d3t|;ddn|;ddz|;dev|;dey|;dhs|;dn6|;dte|;dug|;dyv|;dz2|;dzo|;dzs|;dzx|;e25|;e3w|;e4d|;e5b|;ear|;ebn|;ec6|;ecm|;eg5|;eji|;ejp|;ekr|;emq|;enh|;erc|;esf|;eso|;et7|;evn|;ewh|;f6n|1;f8b|;feo|1;fer|;fev|4;ff1|1;ff5|;ff8|2;ffc|1;ffi|1;ffo|;ffq|;ffs|;ffv|2;fg0|2;fg6|;fg8|1;fgb|;fgf|;fgi|1;fgl|;fgr|;fgt|2;fh2|5;fh9|2;fhj|;fhn|2;fht|;fhv|;fhy|1;fi2|2;fi6|;fi8|;fia|;fid|1;fig|1;fij|1;fim|4;fis|1;fiw|1;fiz|1;fj2|4;fj8|2;fjc|;fjf|3;fjk|;fjn|1;fjq|;fjt|2;fk0|1;fk4|;fk6|1;fka|1;fkd|;fkk|5;fkt|2;fkx|;fkz|2;fla|;flc|;fle|1;flh|2;fln|;flp|;flr|2;fm1|2;fm5|4;fmi|;fml|;fn3|1;fn8|;fna|;fnc|;fne|;fng|2;fnm|1;fnq|3;fnv|;fnx|4;fo3|4;fo9|6;fop|1;fov|1;foz|1;fp2|;fp4|9;fpf|1;fpi|;fpk|3;fpp|5;fpw|;fpy|2;fq2|3;fqm|1;fqq|;fqt|1;fqx|;fqz|;fr3|;fr5|4;frd|1;frg|8;frr|4;frx|4;fs3|;fse|3;fsj|3;fso|;fsq|;fsu|;fsw|;fsy|;ft1|2;ft5|;ft7|;ft9|;ftb|;ftd|3;fti|;ftk|2;fto|;ftq|1;ftt|d;fu8|;fuj|;fur|1;fuv|3;fv2|1;fv7|;fv9|1;fvc|2;fvg|;fvk|;fvm|;fvp|1;fvu|;fw0|;fw2|;fw4|2;fw8|;fwg|;fwj|;fwl|;fwr|;fwt|;fwx|1;fx0|;fx2|;fx4|3;fx9|1;fxe|;fxo|2;fxu|3;fxz|;fy5|2;fya|;fyc|1;fyh|1;fyn|;fyp|;fys|2;fyy|1;fz2|;fz6|;fz9|2;fzd|;fzg|2;fzp|;fzt|;fzv|;fzy|6;g06|1;g09|;g0b|1;g0g|;g0i|3;g0n|1;g0q|2;g0v|;g0x|1;g10|1;g13|;g16|1;g1d|2;g1h|;g1j|5;g1r|2;g1v|6;g23|3;g28|;g2a|;g2c|3;g2i|;g2k|;g2q|;g2t|;g2v|7;g35|;g39|3;g3g|;g3k|;g3m|;g3q|;g3t|1;g3w|1;g3z|;g41|2;g45|4;g4e|;g4g|;g4i|3;g4q|2;g4w|2;g52|1;g59|1;g5g|2;g5l|4;g5u|;g5w|;g5y|;g63|3;g68|1;g6h|;g6l|;g6o|1;g6r|3;g6w|2;g71|;g74|3;g7a|2;g7e|;g7i|;g7l|;g7n|;g7q|1;g7x|;g84|3;g89|1;g8e|;g8g|3;g8m|5;g8z|1;g92|1;g95|4;g9g|3;g9m|1;g9p|2;g9t|;ga1|1;ga7|;gaa|;gac|1;gaf|;gai|;gal|;gan|;gaq|1;gav|2;gb1|;gb5|2;gbb|1;gbf|;gbj|1;gbn|1;gbr|;gbt|5;gc9|;gce|;gch|;gcj|;gcl|;gcn|;gcp|;gcs|1;gcy|;gd1|1;gd4|1;gd7|;gd9|7;gdi|;gdp|;gdu|1;gdx|;ge0|3;ge6|5;ged|;geg|;gei|;gek|1;gen|1;get|2;gex|1;gf4|1;gf7|;gfb|;gfe|;gfj|;gfl|;gfq|;gfs|3;gfx|4;gg3|2;gg7|3;ggd|;ggh|3;ggn|;ggq|;ggs|;ggu|;ggw|1;gh0|;gh2|;gh4|1;gh8|;gha|7;ghj|4;ghp|2;ghu|;ghw|;gi6|;gib|;gie|;gig|;gii|;gil|;gin|1;git|1;giy|;gj1|1;gj6|1;gja|;gjd|;gjf|;gjm|1;gjp|;gjs|5;gk4|;gk6|1;gk9|;gkb|;gkf|;gkh|5;gko|g;gld|;glf|1;glk|9;gm3|;gm5|;gm7|1;gme|;gmh|;gmj|1;gmm|;gmp|;gmr|;gmu|;gmw|1;gmz|3;gn4|;gn6|;gna|;gnc|;gne|;gni|;gnl|;gnx|;gnz|;go2|;go4|;go6|;go8|;goa|1;gog|1;goj|;gol|1;gor|2;gov|1;gp0|;gp2|1;gp7|5;gpi|;gps|;gpu|;gpw|1;gq0|;gq3|1;gq7|;gqa|1;gqg|;gqj|2;gqn|5;gqu|3;grl|;grp|1;grs|1;grx|1;gs1|1;gsa|;gsd|;gsf|;gsk|;gsm|1;gsp|;gsu|2;gt0|;gt8|;gtn|;gtq|1;gtt|;gtv|;gtx|;gu1|;gu4|;gu6|;gu8|;gua|;guc|;gue|;gui|;gun|;gur|;guu|1;gv0|;gv2|;gv7|;gvv|6;gw3|1;gw6|1;gw9|2;gwh|;gwj|1;gwo|2;gws|3;gwz|1;gx3|5;gxa|;gxc|;gxv|;gxx|;gxz|;gy1|;gy9|;gyc|;gyi|2;gyn|1;gyq|2;gzb|;gzh|2;gzo|;gzq|;gzs|1;gzw|4;h02|;h04|;h06|1;h0p|;h0s|;h0v|;h0y|;h10|;h12|3;h17|;h1b|;h1d|1;h1l|;h1n|;h1p|2;h1v|;h2c|1;h2g|5;h2n|;h2q|;h2s|;h2u|;h2w|;h2y|;h34|;h38|;h3a|1;h3j|;h3t|1;h45|;h47|;h4c|;h4e|;h4j|1;h4m|;h4s|;h4w|3;h54|2;h59|;h5d|;h5j|;h5m|1;h5q|2;h5v|;h5y|1;h63|;h65|1;h68|;h6b|;h6f|;h6h|1;h6l|;h6n|;h6p|3;h6v|4;h71|;h76|1;h7a|;h7c|;h7g|;h7j|;h7p|;h7s|2;h7w|2;h80|;h8b|;h8e|;h8g|2;h8n|;h8q|;h8s|5;h9d|;h9g|;h9i|4;h9q|3;h9v|;h9x|;h9z|1;ha3|1;haa|;hag|;haj|1;har|;hat|;hb2|;hb4|;hb6|2;hbs|;hbx|;hc3|;hc6|3;hcb|;hce|1;hch|1;hcs|;hcv|1;hd0|;hd5|;hd9|1;hdc|;hdf|1;hdi|1;hdl|4;hds|;hdu|4;he0|3;hef|;heh|;hel|1;heo|1;her|1;heu|1;hey|;hf1|;hf3|2;hf8|1;hfe|;hfk|;hft|4;hfz|3;hg4|;hg7|3;hge|;hgh|1;hgk|;hgp|;hh1|;hh5|;hh8|2;hhc|1;hhf|;hhh|;hhl|1;hho|1;hhs|;hhv|;hi4|3;hi9|;hib|;hig|1;hij|;him|;hio|1;hir|;hiy|1;hj2|;hj5|;hj7|;hj9|;hjb|;hji|;hjl|;hjn|2;hjs|2;hjw|3;hk1|;hk4|;hkb|1;hke|2;hki|;hkp|2;hkt|;hky|;hl2|;hl4|;hl6|;hlb|1;hlg|2;hll|3;hlu|;hlw|1;hlz|;hm1|6;hm9|1;hmf|1;hml|1;hms|;hmv|2;hn0|;hn2|3;hn7|2;hnb|1;hne|;hng|;hnk|;hnm|;hnr|;hnt|5;ho2|2;ho6|;ho8|;hod|;hoi|2;hoq|;hos|1;hox|2;hp2|1;hp5|;hp9|;hpf|2;hpj|1;hpo|;hpr|;hpu|;hpx|1;hq0|1;hq3|;hq6|1;hq9|;hqb|;hqe|;hqg|3;hql|;hqo|4;hqx|1;hr0|2;hr6|4;hrc|;hre|2;hri|;hrk|;hrm|;hrr|5;hrz|;hs1|;hs3|;hs9|1;hsd|;hsh|;hsj|;hso|1;hsr|1;hsv|1;hsz|;ht1|;ht3|;ht5|;ht7|;ht9|;hth|1;hto|;htr|2;hty|1;hu1|;hu3|1;hu8|1;hui|;huo|;huq|1;huu|1;hux|1;hv1|;hv6|;hvb|;hvj|;hvo|;hvx|;hw0|;hw2|1;hw5|;hwa|1;hwe|1;hwi|;hwk|;hwn|;hwq|;hwz|;hx1|;hx6|5;hxd|1;hxg|;hxk|1;hxn|1;hxx|2;hy1|2;hy5|;hy8|6;hyh|;hyj|;hyl|2;hyu|;hyy|1;hz1|;hz4|;hz9|;hzc|1;hzf|1;hzq|;hzt|;hzv|;i05|;i08|;i0a|;i0d|;i0g|;i0i|;i0k|;i0u|2;i0z|;i11|;i18|;i1c|1;i1g|4;i1m|3;i1r|;i1t|;i1v|3;i21|;i23|;i28|1;i2d|1;i2g|;i2i|;i2k|;i2n|3;i2t|;i2v|5;i33|;i37|;i39|8;i3j|;i3m|4;i3w|;i3y|;i40|;i43|3;i48|1;i4f|1;i4i|5;i4s|;i4w|;i4y|2;i52|2;i57|;i5a|1;i5d|1;i5g|5;i5n|5;i5x|1;i60|2;i67|;i69|;i6c|b;i6p|;i6s|;i6u|;i6x|;i73|1;i76|2;i7c|;i7f|;i7l|;i7s|9;i85|3;i8b|;i8d|1;i8g|1;i8l|;i8r|;i8w|;i8y|;i90|1;i94|;i98|;i9b|;i9d|;i9f|;i9l|1;ia0|;ia2|;ia4|;ia7|3;iac|;ial|;iap|;iar|;iat|8;ib5|;ib7|;ib9|;ibb|1;ibe|;ibi|;ibk|;ibv|;ic2|;ic9|;icg|;ico|1;ict|;icv|2;id0|;id2|;id7|;id9|;idi|1;idp|1;ids|1;idw|5;ie3|;ie7|;iea|;iec|;iee|1;ieh|;ies|;if1|;if5|1;if8|;iff|1;ifi|;ifk|;ifn|1;ig9|;igc|;igf|;igh|;igx|1;ih0|;ih2|1;ih7|;ihe|;ihg|1;ihl|;ihp|;ihs|;ihu|;ihz|;ii2|1;ii6|;ii8|;iif|1;iii|;iik|2;iix|;iiz|;ij1|;ij5|2;ija|;ije|1;ijh|1;ijk|2;ijp|3;ijv|;ijy|;ik1|4;ik7|2;ikb|;ikd|1;iki|1;ikm|;ikp|;iks|;ikx|;il1|1;il5|2;il9|;ilc|;ilh|;ilk|;iln|;ilp|;ilv|;ily|2;im5|;im7|1;imb|2;imf|;imk|;imm|;ims|1;imw|;in2|1;in5|2;inc|;ine|2;ink|4;inq|a;io3|1;io7|;ioa|1;iof|;iol|2;ioq|;ios|;iow|;ip1|3;ip7|;ip9|;ipf|;iph|3;ipp|1;ipt|1;iq0|3;iq7|2;iqb|;iqd|1;iqh|2;iql|6;iqt|;iqv|2;ir0|;ir5|;ir7|1;ira|1;ire|1;iri|1;irl|;irn|1;irr|1;iru|1;irz|;is1|4;is7|1;isb|;isf|;isi|;isl|2;isp|;ist|;isx|;it0|1;it3|;it6|;it8|;ita|;itc|;iti|;itk|;itm|;ito|;itq|;its|1;itv|1;ity|3;iu3|;iu5|;iu9|1;iuc|3;iuh|4;iuo|1;iur|;iuv|;iux|;iv0|;iv3|3;iv9|;ivb|5;ivk|2;ivr|2;ivw|;ivy|;iw0|1;iw3|;iw7|3;iwc|3;iwj|;iwl|;iwn|;iwp|;iws|1;iwz|2;ix4|1;ix8|2;ixc|;ixe|1;ixh|4;ixo|5;ixw|;iy0|;iy3|;iy5|2;iy9|;iyd|;iyg|;iyj|2;iyn|;iyy|;iz1|;iz3|;iz6|;iz8|3;izd|;izf|2;izk|1;izp|5;izz|1;j03|;j0h|2;j0m|2;j0q|1;j0t|;j0w|;j0y|;j11|;j15|1;j19|;j1b|1;j1e|3;j1k|5;j1r|1;j1x|;j29|;j2b|3;j2h|4;j2n|;j2q|;j2s|3;j2y|1;j33|1;j36|2;j3b|;j3e|;j3k|6;j3s|;j3v|3;j44|3;j49|;j4b|;j4f|;j4h|;j4j|;j4l|;j4n|b;j5c|4;j5i|6;j5s|1;j5v|;j5y|;j60|1;j65|2;j6c|1;j6i|2;j6m|1;j6q|;j6v|1;j6z|2;j74|;j78|;j7b|;j7g|;j7i|1;j7m|;j7o|;j7q|2;j7u|3;j7z|;j82|3;j88|2;j8c|1;j8f|5;j8n|1;j8q|1;j8u|;j8w|1;j8z|4;j96|;j98|2;j9d|2;j9m|;j9p|1;j9s|4;j9y|;ja0|2;jac|;jaf|2;jaj|1;jam|1;jaq|;jau|;jaw|;jay|4;jb7|;jba|6;jbj|;jbp|;jbr|;jby|1;jc3|;jc6|;jci|;jcm|2;jcq|;jcs|4;jd3|1;jd6|;jd8|2;jdc|2;jdg|2;jdk|;jdm|;jdq|1;jdt|1;jdy|1;je1|1;je5|1;je8|6;jeh|;jem|3;jer|;jev|7;jf5|2;jfb|1;jff|1;jfi|;jfn|;jfs|;jfy|;jg1|;jg3|;jg6|;jg9|1;jgc|;jge|2;jgj|1;jgm|;jgp|1;jgv|;jgx|1;jh0|4;jh7|;jhi|;jhk|;jhn|1;jhq|;jht|1;jhx|;ji1|;ji4|1;jia|;jic|9;jin|a;jiz|1;jj5|;jjg|3;jjl|;jjn|;jjp|2;jjx|2;jk1|1;jk7|;jk9|;jkc|;jkg|2;jl4|;jl6|1;jlb|;jll|2;jlp|1;jlu|2;jly|;jm1|;jm4|4;jmb|;jmd|;jmf|;jmi|;jmv|2;jmz|;jn2|;jn5|1;jna|1;jne|1;jnj|1;jnn|1;jnr|3;jnw|;jny|1;jo2|;jo6|;jo8|;job|1;jof|3;jol|;jon|3;jos|;jpa|;jpc|;jpf|1;jpi|;jpl|;jpr|1;jpu|;jpy|;jq2|1;jq7|2;jqb|;jqh|;jqj|;jql|1;jqq|;jqs|3;jra|;jrd|;jrh|;jrj|;jrm|;jro|;jrq|2;jrw|;js0|;js2|;js4|1;js8|;jsa|3;jsf|1;jsk|;jsm|;jsq|;jsu|;jtk|;jtn|;jtq|;jts|;jtz|;ju1|;ju5|;ju7|;jub|;jug|3;jul|;jut|;juw|;jv4|3;jv9|;jvd|2;jvh|2;jvo|1;jvt|;jvv|;jvx|1;jw0|;jw2|;jwb|1;jwe|1;jwh|;jwk|1;jwn|;jwp|1;jwt|1;jww|;jwy|;jx0|1;jx3|1;jx6|;jxc|3;jxh|2;jxo|1;jxr|;jxt|1;jxw|;jy2|;jy6|;jy8|;jya|;jyc|;jyf|;jyi|;jyn|;jys|;jyw|1;jz1|;jz6|2;jze|2;jzj|;jzm|;jzo|5;jzv|;jzx|2;k03|;k05|;k08|1;k0d|2;k0h|1;k0k|5;k0t|1;k0y|1;k12|;k18|1;k1e|;k1g|1;k1j|1;k1q|;k1t|2;k1x|;k1z|;k21|;k24|;k28|1;k2f|;k2h|;k2j|2;k2n|;k2p|;k2s|1;k2v|;k2z|2;k33|3;k3b|;k3d|;k3g|1;k3j|;k3l|5;k3u|2;k3z|;k42|;k47|;k4g|1;k4j|;k4l|1;k4o|1;k4s|1;k4x|1;k50|;k56|3;k5b|1;k5e|1;k5i|1;k5l|1;k5o|5;k5v|2;k63|1;k66|3;k6b|2;k6f|1;k6j|;k6l|;k6n|2;k6s|3;k6y|1;k75|3;k7c|1;k7f|1;k7i|3;k7t|2;k7x|5;k84|5;k8b|5;k8j|1;k8m|5;k8t|;k8v|;k90|;k93|2;k97|1;k9a|;k9c|1;k9i|2;k9m|;k9p|1;k9s|;k9u|1;ka3|1;ka6|;ka9|4;kag|3;kam|3;kas|5;kb7|1;kba|;kbc|6;kbk|;kbn|;kbq|;kbs|2;kbw|;kby|2;kc2|2;kc7|3;kcc|;kce|2;kcj|2;kco|5;kcw|;kd0|1;kd3|;kd7|;kd9|3;kde|1;kdi|2;kdm|4;kdt|;kdv|1;kdy|;ke2|;ke5|1;ked|1;keh|;kej|1;kem|3;ker|;keu|;kf0|4;kf9|;kfe|;kfg|1;kfj|4;kfp|;kfr|;kfv|1;kfy|1;kg3|;kg7|;kg9|;kgb|1;kgf|1;kgi|1;kgl|;kgn|3;kgs|1;khb|1;khe|1;khi|2;khq|;kht|;khw|1;ki2|;ki7|5;kie|4;kil|2;kiq|;kix|;kj0|;kj3|2;kj7|3;kjd|;kjf|;kji|1;kjn|1;kk0|;kk2|1;kk6|1;kkd|1;kkh|1;kkq|;kku|1;kkx|1;kl0|;kl4|1;kl7|2;klc|4;kli|;klk|1;klq|;kls|1;klv|1;kml|;kmn|;kms|;kmu|1;kn2|1;kn5|;kn7|;kn9|1;knj|;knn|1;knr|;knv|;knx|;knz|4;ko7|1;kod|;kof|2;koj|;kol|1;kp0|1;kp5|4;kpc|;kpe|;kph|3;kpm|;kpr|1;kpv|;kpz|1;kq4|;kq6|;kqa|;kqh|4;kqo|1;kqs|2;kqz|;kr1|2;kr5|1;krd|;krg|;krr|;ks0|;ks4|;ks6|;ks9|;ksd|;ksf|;ksi|;ksq|;ksv|;ksz|2;kt3|;kt5|1;kt9|1;ktc|3;kth|;ktk|;ktm|5;ktv|;ktx|;ktz|2;ku3|;ku5|;kum|;kup|;kus|1;kuw|;kuz|1;kv3|;kv8|3;kvh|1;kvk|2;kvo|;kvr|;kvu|2;kvy|3;kw3|;kw7|;kwa|6;kwj|;kwm|;kwy|;kx1|5;kx9|;kxe|;kxl|;kxn|;kxp|;kxr|1;kxu|;kxx|;ky2|1;ky9|3;kyf|;kyh|;kyj|;kym|1;kyp|;kyr|;kyx|;kyz|;kz9|;kzc|3;kzh|;kzn|2;kzr|6;l00|;l02|1;l08|2;l0f|;l0h|1;l0k|;l0m|;l0r|;l0y|;l11|;l1b|1;l1f|1;l1l|;l1p|1;l1s|;l1w|;l1z|;l24|1;l27|1;l2a|1;l2m|;l2r|;l2u|;l2z|1;l33|;l36|1;l3n|;l3u|5;l48|;l4a|;l4c|;l4m|;l4r|1;l4y|2;l56|;l58|;l5d|1;l5i|;l5q|;l5s|1;l5v|;l64|;l6a|;l6f|4;l6l|2;l6r|;l6u|1;l6x|1;l70|;l72|;l74|;l78|;l7d|2;l7j|8;l7t|1;l7z|;l82|;l87|4;l8f|1;l8i|2;l8m|;l8p|1;l8t|;l8x|;l92|;l94|;l9a|;l9e|;l9g|;l9n|;l9p|2;l9u|1;l9x|;l9z|;la2|;la4|1;la7|2;lac|2;laj|;lal|;lan|;laq|2;lau|2;lay|1;lbf|1;lbj|;lbn|;lbs|;lbz|;lc5|;lc8|;lcf|2;lcj|1;lcn|;lcr|;lcz|1;ldf|5;ldq|5;le3|;le6|2;lea|3;lef|;leh|7;leu|;lew|2;lf1|;lf4|;lf6|;lf8|;lfa|;lfe|;lfh|1;lfl|8;lfw|1;lg0|;lg2|4;lg8|3;lgi|;lgr|1;lgu|;lgw|1;lgz|;lh2|;lh4|1;lh7|4;lhd|1;lhg|2;lhl|1;lho|;lhs|1;lhv|2;lhz|;li1|4;li8|3;lid|;lig|;lij|;lim|3;lir|;lj3|;lj8|;ljb|;lje|2;ljl|1;ljo|;ljr|;ljt|;ljv|;ljy|1;lk3|;lk5|;lk7|5;lke|;lki|;lkl|1;lko|6;lkx|;lll|1;llo|;llt|;llv|4;lm1|1;lm4|;lm6|1;lma|;lmc|;lmf|2;lmn|;lmq|;lmt|;lmv|2;ln0|3;ln5|;ln7|4;lnu|2;lnz|;lo2|;lo4|1;lo7|1;loc|;lof|1;loj|5;lor|1;lov|3;lp2|;lp4|2;lp9|1;lpc|6;lpk|;lpm|2;lpq|;lpt|;lpv|;lpx|7;lqd|;lqg|;lqi|;lqv|;lqx|2;lr1|;lr3|7;lrc|;lrf|2;lrj|;lrm|;lro|;lrq|2;lru|;lrw|2;ls0|;ls3|2;lsa|;lsd|1;lsh|;lsj|3;lso|;lsr|1;lsu|1;lsz|;lt3|;lt7|;lta|1;lte|1;lth|;ltm|;lu7|1;lud|1;lug|;luk|1;lun|;luq|;lut|;luv|1;luy|1;lv3|;lv5|1;lv9|2;lve|;lvh|;lvm|3;lvs|1;lvv|1;lvy|;lw1|;lw3|2;lw9|;lws|1;lwv|;lwy|;lx0|1;lx3|1;lx8|;lxa|1;lxd|1;lxg|;lxi|;lxl|;lxo|;lxr|;lxt|;lxv|2;ly1|1;ly8|;lya|2;lye|2;lyi|3;lyo|3;lyw|;lz0|;lz2|1;lz5|;lzj|;lzl|1;lzo|;lzr|8;m01|3;m06|;m0d|4;m0k|;m0o|;m0q|;m0s|2;m0x|1;m10|;m12|3;m17|3;m1c|;m1e|;m1g|4;m1r|;m1t|;m1v|2;m1z|1;m22|;m26|1;m29|;m2b|;m2e|;m2h|;m2m|;m2o|3;m2u|1;m2x|1;m38|1;m3c|;m3e|1;m3i|3;m3o|2;m3t|;m3v|1;m3y|1;m41|;m43|1;m46|;m4a|;m4e|;m4h|;m4l|2;m4p|;m4r|;m4v|;m4x|2;m51|;m54|;m56|5;m5f|;m5i|2;m5r|1;m5u|;m5z|1;m64|;m66|;m6c|;m6e|;m6k|;m6m|;m6o|1;m6r|;m6w|;m71|1;m77|;m7a|;m7d|;m7f|1;m7j|1;m7s|;m7w|2;m81|;m85|1;m8a|;m8e|;m8i|;m8l|;m8o|3;m8x|;m90|;m92|;m97|5;m9f|;m9j|3;ma0|;ma2|1;ma7|;mab|1;mag|1;mak|1;man|;mb3|;mb5|;mbd|1;mbh|;mbn|1;mbq|;mbt|;mbw|;mc9|1;mcc|;mce|;mcg|1;mcm|;mct|4;md2|;mdf|;mdi|1;mdl|1;mdo|;mdq|;mds|;mdu|1;mdx|2;me1|;me4|2;mea|;mec|5;mek|;mem|;mf1|;mf4|;mf8|1;mfb|3;mfj|;mfm|;mfo|;mft|;mfv|;mfz|3;mg4|;mg8|1;mgc|;mgf|;mgh|1;mgp|1;mgu|;mgx|;mgz|;mh4|1;mh7|;mha|2;mhe|;mhg|2;mhl|;mhn|;mhr|1;mhx|2;mi4|2;mih|;mij|6;miu|1;miz|2;mj4|;mj8|;mjb|;mje|1;mjj|;mjp|;mjs|;mju|;mjw|1;mk0|;mk2|;mk5|1;mk8|3;mkd|3;mki|;mkm|2;mkr|1;mky|2;ml2|;ml4|3;ml9|;mlb|;mld|2;mlj|;mll|;mlr|;mlu|;mlw|;mm0|1;mm5|;mm8|2;mmf|;mml|;mmq|;mmu|;mn6|;mnb|;mng|1;mnj|;mnn|2;mo0|;mo2|;mo4|;mo9|;moe|;mog|;moi|;mon|;mop|;mox|1;mp1|;mp4|1;mp8|;mpg|;mpj|6;mq1|1;mqb|;mqe|3;mqj|2;mqq|;mqt|;mqv|4;mr5|;mr8|;mra|1;mri|1;mrn|2;mry|;ms0|;ms2|;ms7|1;msc|;msg|;mso|4;msv|1;msy|;mt1|;mt3|1;mt6|2;mtd|;mtg|;mti|3;mtn|;mtq|;mtu|;mtw|4;mu6|2;mue|1;muh|2;mul|;muq|2;muv|;mux|;muz|2;mv3|1;mv6|;mva|;mvc|2;mvg|1;mvj|;mvm|;mvq|3;mvx|1;mw0|;mw2|4;mw9|2;mwd|1;mwl|;mwn|2;mwt|1;mwx|;mwz|4;mx5|;mxf|;mxj|1;mxn|;mxp|;mxr|3;mxw|2;my0|;my2|2;my6|8;myg|;myi|;myn|7;myw|1;myz|1;mz2|;mz9|;mzb|;mzd|7;mzm|3;mzs|2;mzx|6;n0d|1;n0g|;n0i|5;n0p|3;n0w|;n14|;n18|3;n1d|;n1f|;n1h|;n1j|1;n1m|1;n1s|2;n1x|1;n20|1;n24|1;n27|1;n2e|;n2i|;n2l|;n2n|1;n2r|1;n2w|;n2y|2;n34|;n36|1;n3a|;n3d|;n3i|;n3m|1;n3r|;n41|;n43|1;n4c|2;n4h|;n4j|;n4l|;n4o|;n4q|2;n4u|1;n4y|4;n54|;n57|1;n5c|3;n5j|1;n5m|1;n5r|;n5v|;n5z|;n62|2;n66|1;n69|;n6b|1;n6h|4;n6o|;n6q|;n6s|3;n6y|1;n73|1;n79|1;n7c|;n7e|;n7j|;n7q|2;n7u|1;n7y|1;n81|1;n84|;n89|1;n8d|;n8j|;n8l|;n8p|;n8r|;n8x|4;n94|1;n98|2;n9c|;n9e|1;n9h|;n9j|;n9m|;n9p|1;n9u|3;na0|1;na3|;na6|;naa|2;naf|;nao|;naq|2;nax|1;nb0|;nb3|2;nbb|2;nbf|;nbh|;nbk|;nbp|;nbt|;nbz|3;nc4|;nc6|1;ncf|2;ncj|1;ncr|;ncy|1;nd2|3;nd8|;nda|;nde|;ndh|1;ndk|;ndo|;ndt|1;ndw|1;ndz|2;ne4|6;nee|;neg|;nei|4;neo|1;ner|1;neu|1;nez|;nf2|;nf4|;nf6|1;nfa|1;nfe|2;nfi|;nfo|;nfw|;nfy|;ng4|;ng6|;ng8|;nga|;ngf|;ngi|1;ngm|;ngo|;ngq|;ngs|2;ngy|2;nh2|;nh5|;nh7|1;nha|1;nhd|;nhf|2;nhj|;nhm|;nho|;nhq|;nht|1;nhw|;ni0|1;ni3|1;ni6|4;nic|;nif|5;nio|;niy|1;nj2|2;nj9|1;njc|1;njo|;njr|5;njy|;nk0|;nk3|;nk6|1;nkd|;nki|;nkq|1;nkv|4;nl1|1;nl4|;nl7|1;nlj|;nll|;nlp|2;nm3|;nm5|1;nm9|;nme|;nmh|;nmm|;nmo|;nmq|;nmt|;nmy|;nn0|2;nn4|;nn7|;nnd|;nnf|2;nnj|;nnr|;nnt|;nnx|;no7|;no9|3;noe|;noh|2;nol|;non|;nop|;not|3;noz|;np4|;np6|3;npe|;npj|;npo|;npr|;npt|1;npw|;nqa|;nqd|2;nqk|1;nqo|;nqq|;nqs|;nr7|;nr9|;nrj|;nrw|1;ns0|;ns7|1;nsa|2;nse|1;nss|;nsx|;nt0|;nt3|;nt8|3;ntd|;ntf|;ntj|;ntr|;ntv|1;ntz|2;nu4|1;nui|2;num|;nup|;nut|;nuw|;nuy|1;nv2|3;nv8|1;nve|;nvk|;nvr|1;nvu|;nvw|;nvz|;nw4|1;nw7|;nwa|3;nwh|;nws|;nwu|1;nwx|1;nx2|;nx5|;nxj|;nxm|3;nxt|;ny2|2;ny6|;ny8|1;nyc|6;nyo|;nyr|5;nyy|6;nz6|;nz9|;nzb|1;nzh|;nzt|1;nzw|;nzz|2;o0a|1;o0d|2;o0h|;o0k|;o0r|;o0t|;o12|2;o16|1;o1a|;o1c|1;o1f|1;o1k|9;o1w|;o1y|;o21|2;o29|1;o2d|;o2g|;o2m|1;o2q|2;o2u|1;o2x|3;o39|;o3c|;o3f|;o3k|2;o3p|;o3s|;o3u|3;o44|;o47|3;o4c|;o4e|2;o4i|;o4n|;o4u|;o4w|1;o4z|;o52|1;o55|;o57|2;o5b|1;o5e|;o5h|1;o5l|;o5o|2;o5z|;o68|2;o6e|;o6h|;o6j|;o6o|;o6s|2;o6x|1;o71|9;o7c|;o7e|;o7m|1;o7p|4;o7v|;o7z|1;o83|;o89|1;o8c|;o8e|1;o8j|;o8m|;o8p|2;o8u|1;o90|1;o93|1;o96|1;o9j|;o9l|;o9o|1;o9r|1;o9u|1;o9x|1;oa2|;oa5|;oa7|;oac|;oae|;oag|2;oal|;oan|;oau|;oaw|;oay|;ob0|;ob2|1;ob5|1;obc|1;obf|;obi|;obk|;obp|3;obw|1;obz|;oc3|;oc5|;oc9|;ocl|1;oco|1;ocr|2;ocv|5;od2|;odb|1;odh|2;odl|;odo|;odq|;odt|;odv|;odx|;oe5|;oef|;oej|;oel|2;oeq|;oes|1;oev|;oex|1;of0|1;of4|1;ofh|;ofl|;ofo|;ofs|;ofy|;og0|1;og4|;og6|1;og9|3;ogi|;ogk|;ogp|;ogr|;ogt|;ogw|1;oh0|;oh2|;oh5|1;ohf|;ohj|;ohq|;ohs|;ohz|;oi1|;oi3|;oi7|;oia|;oim|3;oiv|;oiy|1;ojb|1;ojh|2;ojn|;ojw|1;ok0|;ok2|;ok4|;okb|1;okf|1;okk|1;okn|;okp|;oks|;oky|1;ola|;old|;olf|;oll|;olp|;olu|;olx|;olz|1;om7|;oma|;omc|4;omm|;omp|2;omx|;on0|2;on9|1;one|;onp|2;ont|1;onw|4;oo2|;oo5|;oo7|;oof|;ooh|1;ook|2;ooo|3;oou|;oow|;ooy|6;op6|1;op9|;opc|;opf|2;opj|5;ops|2;oq3|1;oq6|5;oqd|;oqg|2;oqp|5;oqx|;or0|1;or4|1;or9|1;ord|;orf|1;ori|;orl|2;orq|;ors|2;ory|;os0|3;os5|1;os9|1;osf|;osj|;osm|;osu|1;osz|;ot4|;ot6|;ot8|;otc|;ote|1;oth|2;otl|;otn|3;ots|2;otw|1;ou0|;ou2|1;ou5|2;ouc|;ouf|;oui|3;oun|;ouu|2;ouy|;ov0|2;ov4|1;ov7|;ova|;ovc|1;ovg|;ovj|;ovo|;ovq|;ovt|;ovv|;ow3|;ow8|3;owg|1;owl|;own|1;owr|;owt|6;ox7|;oxa|1;oxd|2;oxh|;oxj|;oxl|;oxn|;oxp|1;oxt|;oxv|5;oy8|;oya|;oyc|3;oyh|1;oym|;oyp|1;oyx|2;oz1|;oz3|1;oza|;ozd|;ozg|2;ozl|1;ozr|1;ozu|;ozw|1;ozz|;p03|1;p06|;p08|;p0b|1;p0f|;p4m|2;p4q|;p4u|1;p4z|2;p53|;p57|3;p5c|5;p5k|;p5p|;p5r|2;p5v|;p5y|;p60|;p62|1;p66|;p68|;p6a|;p6d|;p6f|2;p6k|2;p6q|;p6t|3;p6y|;p70|;p72|;p78|;p7a|2;p7e|;p7h|1;p7l|;p7o|;p7s|1;p7v|;p7z|;p82|;p86|;p88|1;p8d|;p8f|;p8h|;p8l|;p8q|;p8s|;p8u|;p8y|;p90|2;p97|;p9b|2;p9f|1;p9i|;p9l|;p9n|1;p9q|;p9s|;p9v|;pa1|3;pa6|;pa8|9;pak|;pao|2;pas|5;pb2|;pb5|;pba|;pbc|;pbg|1;pbk|;pbn|;pbq|;pbx|;pbz|;pc3|;pc6|;pc8|;pca|;pci|;pcl|1;pco|;pcq|;pcu|;pcx|;pdb|4;pdh|2;pdp|3;pdw|3;pe1|;pe3|1;peb|;pee|;peg|;pei|1;pel|;pep|1;pet|1;pex|2;pf1|;pf3|;pf5|1;pf8|1;pfe|;pfn|1;pfq|;pfu|;pfw|;pfy|;pg5|1;pg9|3;pge|;pgg|1;pgk|1;pgv|;pgx|;ph0|;ph3|1;ph9|1;phe|;phh|5;phy|2;pi2|1;pib|1;pif|;pih|;pij|;pin|1;pix|1;pj2|;pj5|;pja|;pje|1;pji|;pjk|5;pk0|;pk4|2;pkb|;pkd|;pkg|1;pkk|;pkm|4;pkv|1;pky|2;pl2|;pl4|;pl6|1;plb|;plm|;plo|2;pls|;plv|;pm0|1;pm8|;pmb|2;pmg|2;pml|3;pmq|;pmu|;pmy|;pn1|;pn3|;pn5|;pnc|2;pnh|;pnj|1;pnn|;pnp|;pnr|1;pnu|;pnw|1;po3|1;po6|;poa|2;poe|;poh|2;pol|;pon|1;poq|;pos|1;pow|;poy|;pp2|;pp4|;pp7|1;ppa|1;ppd|;ppm|2;ppv|;ppx|4;pq5|;pq8|;pqd|;pqf|;pqp|;pqw|2;pr3|;pr8|;pra|;prc|;pre|1;pri|1;prl|1;pro|;prq|3;prx|1;ps3|;psa|1;psd|1;psg|;psi|;psk|;pso|2;pst|;psv|;psx|2;pt1|c;ptf|;ptj|2;ptn|4;ptx|;pu9|4;puf|;puj|1;pum|3;pur|;put|2;pux|;puz|;pv5|;pv7|1;pvd|2;pvh|8;pvs|1;pw7|;pwb|2;pwj|2;pwo|;pwq|1;pwv|;pwx|5;px4|1;px8|;pxc|;pxf|;pxj|;pxl|1;pxr|3;pyb|;pyr|;pyv|;pyy|1;pz6|;pz9|;pzd|1;pzi|;pzm|1;pzq|;pzs|;pzu|1;pzx|3;q02|;q08|3;q0t|5;q11|;q15|1;q18|;q1d|;q1f|1;q1i|;q1k|;q1o|;q1r|2;q21|;q23|;q27|3;q2c|;q2e|;q2h|;q2j|;q2l|;q2r|1;q2u|1;q2y|4;q3t|;q3w|;q41|;q45|;q48|1;q4c|1;q4m|;q4p|1;q4x|;q53|;q56|1;q5d|;q5f|;q5i|;q5l|4;q5r|2;q5v|;q5x|;q5z|;q62|;q6a|;q6o|1;q6s|;q6x|;q70|;q73|;q75|;q7c|;q7h|;q7j|;q7m|;q7o|;q7s|5;q7z|3;q84|;q86|;q89|2;q8d|;q8f|2;q8j|;q8m|;q8q|;q98|3;q9d|;q9g|;q9m|;q9o|1;q9s|;q9y|;qa6|;qa9|;qab|2;qaf|1;qai|;qam|1;qap|;qar|;qat|1;qay|;qb0|1;qb3|1;qbh|;qbj|;qbl|;qbn|;qbq|;qbt|2;qby|;qc3|;qc5|4;qce|;qch|;qcj|1;qco|3;qct|;qd4|;qd6|;qda|;qdc|;qdg|;qdi|1;qdl|1;qdo|;qdr|;qdt|;qdw|;qdz|;qe1|;qe3|;qe5|;qec|2;qeg|3;qen|1;qey|;qf5|;qfb|;qfd|;qfh|3;qfp|;qfw|1;qg4|1;qg9|1;qgn|;qgp|2;qgt|;qgv|1;qgy|;qh0|;qh2|1;qh6|1;qhi|2;qhm|;qhr|;qhu|;qhz|;qi1|1;qi5|;qi7|;qik|;qin|;qip|;qj1|1;qj4|;qj7|2;qjf|1;qji|1;qjr|;qjv|1;qjz|;qk1|;qk8|3;qkq|3;qkz|;ql1|;qlf|1;qlk|2;qlr|2;qlw|;qm8|;qmd|2;qmh|;qmj|;qms|;qmx|;qmz|;qn2|1;qn7|1;qnd|;qng|1;qns|1;qnv|;qny|;qo0|;qo2|1;qo6|;qo8|3;qoh|;qoo|;qoq|;qos|1;qox|;qp1|;qp4|1;qpg|1;qpj|;qpm|1;qpr|1;qq4|;qq6|;qqd|;qqf|;qqh|;qqn|1;qqs|2;qqw|;qr2|;qr8|;qra|;qrc|;qrm|1;qrw|1;qs8|;qse|1;qsi|1;qst|;qsz|1;qt6|1;qt9|;qtc|;qtg|;qtj|;qtm|1;qtu|;qu2|1;qu8|;qub|;quk|;qun|;quq|;quv|;qux|;quz|;qv2|;qv9|;qvh|;qvl|;qvp|;qvz|;qw1|2;qwh|1;qwm|;qwp|;qwr|;qww|;qx0|;qx2|;qx6|;qx8|2;qxe|1;qxj|;qxl|;qxn|;qxp|1;qxt|3;qy0|;qy3|;qy6|;qy8|;qya|;qyf|;qyl|2;qyp|1;qyw|;qyz|;qz1|;qz6|;qza|1;qzf|;qzh|1;qzm|;qzu|1;r04|;r0g|2;r0l|;r0q|;r0t|;r0v|;r0y|;r10|1;r14|1;r18|1;r1b|;r1d|;r1k|;r1r|;r1t|;r1v|2;r20|1;r25|1;r2c|;r2f|;r2i|;r2k|;r2o|3;r2t|;r2w|2;r39|;r3b|;r3e|1;r3j|1;r3q|;r3s|;r3u|1;r41|;r44|;r4d|;r4i|;r4m|;r4o|;r4s|;r4u|2;r50|;r56|;r59|;r5b|;r5e|;r5g|;r5q|3;r5v|;r5y|3;r63|;r67|;r6b|;r6e|2;r6i|;r6o|1;r6w|2;r70|;r73|;r76|1;r7a|1;r7e|;r7h|;r7j|2;r82|;r84|;r86|1;r8a|;r8c|1;r8j|;r8l|2;r8w|1;r8z|1;r92|;r94|;r9c|;r9e|1;r9j|3;r9o|;r9q|;r9s|8;ra3|;ra5|;ra7|;raa|1;rad|;rai|;ral|;rap|;rar|1;rau|;ray|2;rb2|;rb5|;rba|;rbf|;rbk|1;rbo|4;rbv|;rby|;rc0|3;rc6|;rc9|;rcb|3;rcg|3;rcl|;rcp|;rcs|;rcv|;rcy|;rd0|3;rd8|1;rdd|;rdf|;rdh|;rdk|;rdm|;rdq|;rds|8;re2|;re8|;rea|;reh|;rek|;rem|1;req|;res|;rev|;rex|;rez|;rf1|;rf3|;rf6|;rfa|1;rff|6;rfo|;rfq|1;rfu|1;rfx|1;rg0|4;rg6|2;rga|;rgc|;rge|;rgg|2;rgk|;rgn|;rgs|;rgu|;rgw|1;rh0|;rh2|1;rh5|4;rhc|;rhf|;rhi|;rhk|;rhn|1;rhv|;rhz|;ri1|;ri4|;ri6|;ri9|;rib|;rie|;rih|;rik|;rim|1;rir|1;riu|;riw|2;rj0|;rj2|1;rja|;rjf|1;rjj|2;rjo|;rjr|;rjx|;rjz|1;rk3|;rk9|1;rkc|;rke|;rkg|;rki|1;rkm|;rkq|;rks|;rku|;rkw|;rp3|;rpb|;rpd|;rpi|4;rpo|;rpq|;rps|;rpx|1;rq2|;rq9|1;rqg|;rqi|2;rqr|;rqw|2;rr6|1;rre|;rrg|1;rrn|1;rrs|;rrx|5;rs7|5;rsf|1;rsi|2;rsm|7;rsv|5;rt2|2;rt6|;rtd|;rtf|;rtl|3;rtq|;rts|6;ru2|;ru4|1;ru8|1;rub|1;ruj|2;rus|1;ruv|1;ruy|1;rv1|;rv3|1;rv7|1;rva|;rvf|;rvh|;rxg|;rxi|1;rxn|;rxp|1;rxs|;rxv|1;rxy|1;ry9|;ryd|;ryi|;rym|;ryo|;ryx|;rz4|;rz7|;rzc|;rzf|;rzm|1;rzu|;rzy|;s02|;s06|;s0b|1;s0e|1;s0l|2;s0r|;s0t|;s0v|;s0x|;s0z|;s14|;s16|3;s1b|;s1d|;s1f|;s1o|;s1y|;s20|2;s27|1;s2c|;s2l|2;s2y|;s34|;s38|2;s3e|;s3h|;s3k|;s3m|;s3o|;s3r|3;s3w|;s3z|;s45|;s49|;s4c|;s4f|1;s4j|1;s4y|;s50|;s52|;s57|;s5d|;s5h|;s5j|;s5l|2;s5p|;s5s|1;s5v|1;s61|;s66|;s69|;s6h|3;s6p|;s6r|;s72|;s74|;s7a|;s7e|3;s7m|;s7y|1;s82|;s88|;s8b|;s8o|4;s8u|;s8z|;s91|;s93|2;s9e|3;s9n|4;s9y|4;sa5|;sa7|1;sab|;sag|1;saj|;sam|2;saq|;sas|2;sax|;sb1|1;sb6|;sb8|;sbb|1;sbh|2;sbl|3;sbq|;sd7|1;sdb|;sde|1;sdi|;sdk|;sdp|5;sdx|1;se3|;se7|1;sea|3;sel|1;seo|1;ser|2;sf6|;sf8|2;sfc|;sfe|3;sfk|;sfm|;sfo|;sfr|3;sfw|1;sfz|4;sg5|1;sg8|;sgb|6;sgk|3;sgp|1;sgt|6;sha|;shd|1;shg|2;shk|;sho|;shq|;sht|1;shz|;si1|2;si5|8;sig|1;sij|3;sio|1;sir|;siw|1;sj0|3;sj6|;sj9|3;sje|;sjg|9;sjr|1;sju|;sjw|1;sjz|2;sk5|;sk7|2;skg|;ski|1;skm|;sko|;skq|;skv|2;skz|;sl1|;sl4|;sl9|1;sld|;slf|2;slm|;slq|;sm4|2;sm9|1;smg|;smi|1;sml|;smn|;smr|2;sn1|;sn6|;snm|;snp|2;snt|;sny|;so2|1;so7|;sod|;sog|2;sok|;sot|;sp4|6;spe|;spi|1;spu|3;sq1|1;sq4|;sqa|;sqc|5;sqr|;sqv|;sqx|;sqz|;sr1|;sr4|;sr6|;srg|;sri|;srm|;sru|2;sry|1;ss1|1;ss4|1;ssc|;ssg|1;ssj|;ssl|2;ssp|;ssr|6;st3|1;st8|1;stf|4;stl|1;stp|;stx|;su7|;suf|;sul|;suo|2;sus|1;suv|;sv0|;sv2|1;sva|;svl|;svo|1;svr|1;svu|;svz|2;sw4|1;sw9|;swb|;swd|5;swn|;swr|;swu|;swy|;sx0|2;sxj|1;sxo|;sxq|;sxs|;sxv|;sxx|;sy3|;sy9|;syb|;syd|1;syg|4;sz7|1;sza|1;szd|;szq|;szw|;szz|;t01|1;t05|;t07|;t0f|;t0k|1;t0q|;t0y|;t14|2;t18|2;t1c|;t1g|;t1i|;t1r|1;t1x|;t20|2;t26|6;t2e|2;t2i|2;t2m|1;t3c|3;t3h|;t3l|;t3o|;t3r|;t3v|2;t44|1;t4b|1;t4e|;t4g|;t4i|;t4l|;t4s|;t4u|;t56|;t58|;t5g|;t5i|1;t5m|1;t5r|2;t5v|1;t5z|;t64|1;t68|;t6j|;t6r|;t6v|1;t6y|2;t75|;t7a|2;t7g|3;t7l|1;t7o|;t7q|;t7s|;t86|;t88|1;t8b|;t8j|1;t8v|1;t8z|1;t94|1;t9h|;t9m|1;t9x|1;ta0|;ta2|;taa|;tac|;tai|;tak|;tap|1;tat|;taz|;tb2|;tb4|;tb6|1;tbe|1;tbk|2;tbp|;tbr|;tbw|3;tc5|;tiv|1;tj3|1;tj7|;tjc|3;tji|1;tjl|3;tjs|;tjw|;tjz|1;tk2|3;tk8|1;tkb|2;tkh|;tkm|;tkp|;tkr|3;tkz|;tl3|1;tl6|3;tlf|3;tlm|;tlo|;tlq|;tls|2;tlx|;tm0|;tng|1;tnl|;tno|;tnr|3;tnx|2;to2|;tob|;tof|1;toi|;tok|;tor|2;tow|;tp0|;tp2|;tp4|;tp7|4;tpd|3;tpm|;tpo|;tps|;tpu|7;tq4|1;tqc|2;tqi|1;tql|2;tqp|;tqs|1;tqv|1;tqz|1;tr7|1;trb|3;trk|1;trn|1;trq|3;trv|1;ts0|1;ts4|3;ts9|;tsb|3;tsl|1;tsp|5;tsy|1;tt4|2;ttb|1;tte|;tti|1;ttl|2;tts|;ttw|5;tu4|3;tu9|;tub|1;tue|;tuh|;tuk|;tum|;tur|;tuu|1;tuy|;tv4|;tv6|;tvc|1;tvh|;tvm|;tvo|;tvq|;tvs|1;tvw|;tw1|1;tw5|1;tw8|6;twg|2;twm|;two|1;twt|;twz|2;tx3|;tx6|;tx8|;txc|1;txg|1;txn|;txp|;txr|;ty0|;ty8|;tyb|;tye|;tyg|;tyj|2;typ|;tys|;tyw|1;tz5|;tz7|;tza|;tzf|2;tzk|;tzn|;tzt|;tzw|2;u00|1;u06|;u0d|1;u0h|2;u0l|1;u0q|1;u0u|5;u11|1;u14|;u16|;u18|7;u1i|2;u1q|;u1t|;u1v|1;u1y|;u23|;u25|1;u28|;u2a|;u2f|2;u2j|1;u2n|;u2q|;u2u|2;u2z|3;u36|3;u3c|2;u3g|;u3i|;u3p|2;u3v|;u3z|2;u43|2;u5k|;u5p|;u5r|;u5t|1;u5y|;u62|;u64|;u67|;u6a|;u6c|;u6e|1;u6h|;u6j|;u6m|;u6z|1;u72|4;u7a|1;u7e|1;u7h|2;u7l|;u7o|;u7v|3;u83|;u89|1;u8c|;u8g|;u8i|3;u8o|;u8q|;u8u|;u8w|;u92|2;u96|;u98|;u9a|;u9c|1;u9f|;u9l|;u9o|1;u9u|;u9x|;ua0|1;ua3|2;ua8|2;uac|1;uaf|;uak|;uam|;uar|;uc6|3;ucc|1;ucf|;uch|;ucj|;ucl|;ucn|1;ucq|;ucs|2;ucw|1;ucz|1;ud2|;ud5|;udd|;udg|1;udk|1;udr|3;udx|;ue0|1;ue3|4;uea|;ueg|;uei|;uel|1;uep|;uew|;uey|1;uf1|;uf3|;uf5|4;ufc|;uff|;ufh|2;ufl|;ufq|;ufs|1;ufv|;ugb|;ugd|;ugg|;ugl|3;ugu|;ugw|5;uh6|;uh8|3;uhe|;uhh|;uhj|1;uhm|1;uhr|;uhu|;uhw|1;ui1|1;ui4|;ujs|;uju|;uk0|;uk8|1;ukc|;ukf|1;ukm|;ukv|;ukx|;ukz|1;ul2|2;ulb|;uld|;ulf|;ulh|1;uln|;ulp|1;uls|;ulu|;ulw|;um1|2;um5|;uma|;umd|1;umi|1;uml|;umo|;umq|;umu|;umw|2;un3|;un6|1;un9|;unb|3;uni|1;unl|1;unu|;unw|;uo1|4;uo8|;uob|;uod|2;uoh|;uok|;uoo|;uoq|;up2|;upb|;upg|;ups|;upv|;uq6|;uq8|3;uqf|;uqn|;uqv|1;uqy|1;ur1|1;urd|;url|;urq|;urt|1;us4|;us6|;usb|;usi|;usk|;uso|;ut3|;utk|;utm|;uto|1;uts|;utu|1;utx|;uuc|1;uul|2;uup|1;uut|;uux|2;uv2|;uvb|;uvd|;uvj|;uvm|1;uvr|;uw0|;uw3|;uw7|;uwo|;uwr|1;uzp|2;uzt|;v03|1;v06|;v0j|;v0m|3;v0s|;v0y|;v11|;v14|1;v17|;v1a|1;v1f|;v1h|1;v1k|;v1r|1;v1y|;v23|;v29|1;v2c|;v2p|;v2r|1;v31|1;v34|1;v3a|;v3d|;v3g|;v3j|1;v3m|;v3r|;v3v|;v3y|;v44|;v49|1;v4m|;v4q|;v4x|;v50|;v55|;v58|;v5b|;v5g|1;v5k|1;v5n|;v5r|;v5t|1;v5w|;v5z|;v6b|;v6e|1;v6h|;v6u|;v6x|2;v74|3;v7c|2;v7h|;v7j|;v7r|;v7z|;v85|;v8a|5;vat|;vav|;vax|2;vb1|;vb3|1;vb6|;vb8|;vbf|1;vbj|;vbl|2;vbr|1;vbx|2;vc4|2;vc9|1;vcf|;vck|1;vcr|;vct|2;vcz|2;vd8|5;vdg|;vdi|;vdk|;vdm|4;vds|;vdx|;ve0|;ve6|1;vea|;vec|3;veh|7;veq|;ves|;vev|3;vf2|;vf4|;vf7|1;vfb|;vfd|;vfk|;vfm|;vfv|1;vfz|;vg4|;vg8|1;vgb|;vge|;vgq|1;vgu|;vgw|;vgy|;vh0|1;vh3|;vhb|2;vhi|1;vhl|3;vhu|;vhy|1;vi7|;vil|1;vio|2;vis|1;vix|;vj0|1;vj3|1;vj6|;vj9|;xgg|s;xz4|8mb;16ls|m;16mj|1c;1d6o|2m;1d9c|21;1dbf|2o;1dea|;1ded|2;1deh|5;1deq|;1deu|;1dey|2;1df2|3;1df7|a;1dfj|;1dfl|;1dfn|i;1dg7|;1dg9|f;1dgq|;1dkw|4;1e6o|9;1e7k|y;1e8k|i;1e94|3;1edd|59;1eiq|5;1eiy|5;1ej6|5;1eje|2;1ejk|6;1ejs|6;2q68|c;2q6o|2k;2q9c|1o;2qdc|2;2qds|17;2qf4|8;2qfk|1;2tav|;2td8|;2ua2|;2uco|;2v0k|;2wk5|;2wst|;2xec|;2xpj|;2zbw|;30ds|;30fh|;31an|;31wv|;32e8|;32t9|;339f|;33uj|;34rd|;36cx|;36hp|;37jd|;37jk|;37r5|;37rm|;3905|;39ku|;39o5|;39q6|;3ak2|;3aka|;3alw|;3at4|;3b2v|;3b87|;3br8|;3c5z|;3d7o|;3dnc|;3dxt|;3fic|;3gfz|;3gh1|;3gz6|;3hap|;3hfm|;3htb|;3i4d|;3i8r|;3id3|;3j7a|;3jdo|;3l3e|;3l41|;3l73|;3lxx|;3lyb|;3mji|;3mkp|;3mv3|;3n68|;3n7f|;3p9p|;3pow|;3q04|;3v9x|;3wlv|;3z9g|;42g9|;4651|;4654|;4656|;465o|;465v|;466q|;4676|;467r|;4684|;469e|;46b1|;46bg|;46cg|;46ek|;46hc|;46hr|;4949|;4an2|;")) -r.push(new A.a0("Noto Sans Kaithi","notosanskaithi/v16/buEtppS9f8_vkXadMBJJu0tWjLwjQi0KdoZIKlo.ttf","w|;19|;4g|;1uu|9;6bv|2;6c0|;7gs|;x80|9;1hts|1t;1hvx|;")) -r.push(new A.a0("Noto Sans Kannada","notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrDvNzSIMLsPKrkY.ttf","w|2m;4g|3;4l|;4n|4;4t|3;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;1u9|1;1us|1;2gw|c;2ha|2;2he|m;2i2|9;2id|4;2ik|8;2iu|2;2iy|3;2j9|1;2ji|;2jk|3;2jq|9;2k1|1;5ow|;5oy|;5p6|;5pu|;5pw|1;60w|5;61q|;642|1;6bv|2;6c0|;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6gp|;6jm|;6qa|;7gs|;x80|5;")) -r.push(new A.a0("Noto Sans Kayah Li","notosanskayahli/v20/B50nF61OpWTRcGrhOVJJwOMXdca6Yecki3E06x2jVTX3WCc3CZH4EXLuKVM.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;60w|5;61q|;642|1;6bw|1;6c0|;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;xds|1b;")) -r.push(new A.a0("Noto Sans Kharoshthi","notosanskharoshthi/v16/Fh4qPiLjKS30-P4-pGMMXCCfvkc5Vd7KE5z4rFyx5mR1.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;60w|5;61q|;642|1;6bv|2;6c0|;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;1gjk|3;1gjp|1;1gjw|7;1gk5|2;1gk9|s;1gl4|2;1glb|9;1gls|8;")) -r.push(new A.a0("Noto Sans Khmer","notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYuNAJz4kAbrddiA.ttf","w|2m;4g|3;4l|;4n|4;4t|3;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;4n4|2l;4ps|9;4q8|9;540|v;60w|5;61q|;642|1;6bv|2;6c0|;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;")) -r.push(new A.a0("Noto Sans Khojki","notosanskhojki/v16/-nFnOHM29Oofr2wohFbTuPPKVWpmK_d709jy92k.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;25i|9;60w|5;61q|;642|1;6bw|1;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;x80|9;1i4g|h;1i4z|17;")) -r.push(new A.a0("Noto Sans Khudawadi","notosanskhudawadi/v16/fdNi9t6ZsWBZ2k5ltHN73zZ5hc8HANlHIjRnVVXz9MY.ttf","w|;4g|;1us|1;6bw|1;6c3|1;7gs|;x80|9;1i9c|1m;1ib4|9;")) -r.push(new A.a0("Noto Sans Lao","notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4ccbdf5MK3riB2w.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;2v5|1;2v8|;2vb|1;2ve|;2vh|;2vo|3;2vt|6;2w1|2;2w5|;2w7|;2wa|1;2wd|c;2wr|2;2ww|4;2x2|;2x4|5;2xc|9;2xo|3;60w|5;61q|;642|1;6bv|2;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|1;6jm|;6qa|;7gs|;")) -r.push(new A.a0("Noto Sans Lepcha","notosanslepcha/v16/0QI7MWlB_JWgA166SKhu05TekNS32AJstqBXgd4.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;5j4|1j;5kr|e;5l9|2;60w|5;61q|;642|1;6bv|2;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;")) -r.push(new A.a0("Noto Sans Limbu","notosanslimbu/v22/3JnlSDv90Gmq2mrzckOBBRRoNJVj0MF3OHRDnA.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;1us|1;4xs|u;4yo|b;4z4|b;4zk|;4zo|b;60w|5;61q|;642|1;6bv|2;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;")) -r.push(new A.a0("Noto Sans Linear A","notosanslineara/v16/oPWS_l16kP4jCuhpgEGmwJOiA18FZj22zmHQAGQicw.ttf","w|;4g|;1fr4|8m;1g00|l;1g0w|7;")) -r.push(new A.a0("Noto Sans Linear B","notosanslinearb/v15/HhyJU4wt9vSgfHoORYOiXOckKNB737IV3BkFTq4EPw.ttf","w|;4g|;1ekg|b;1ekt|p;1elk|i;1em4|1;1em7|e;1emo|d;1eo0|3e;1erk|2;1err|18;1et3|8;")) -r.push(new A.a0("Noto Sans Lisu","notosanslisu/v25/uk-3EGO3o6EruUbnwovcYhz6kh57_nqbcTdjJnHP2Vwt29IlxkVdig.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jg|;jq|1;jt|;jx|;k8|5;lc|4;li|2;lm|2;lu|;me|2;60w|5;61q|;642|1;6c0|;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;9hm|1;wk0|1b;1kts|;")) -r.push(new A.a0("Noto Sans Lycian","notosanslycian/v15/QldVNSNMqAsHtsJ7UmqxBQA9r8wA5_naCJwn00E.ttf","w|;4g|;1f28|s;")) -r.push(new A.a0("Noto Sans Lydian","notosanslydian/v15/c4m71mVzGN7s8FmIukZJ1v4ZlcPReUPXMoIjEQI.ttf","w|;4g|;1gdc|p;1ge7|;")) -r.push(new A.a0("Noto Sans Mahajani","notosansmahajani/v15/-F6sfiVqLzI2JPCgQBnw60Agp0JrvD5Fh8ARHNh4zg.ttf","w|;4g|;1us|b;6bw|1;7gs|;x80|9;1hzk|12;")) -r.push(new A.a0("Noto Sans Malayalam","notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_RuD9BFzEr6HxEA.ttf","w|2m;4g|3;4l|;4n|4;4t|3;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;mb|;me|2;1u9|1;1us|1;2kg|c;2ku|2;2ky|1e;2me|2;2mi|5;2ms|f;2na|p;5p6|;60w|5;61q|;642|1;6bv|2;6c0|;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6gp|;6jm|;6qa|;7gs|;x80|2;")) -r.push(new A.a0("Noto Sans Mandaic","notosansmandaic/v15/cIfnMbdWt1w_HgCcilqhKQBo_OsMI5_A_gMk0izH.ttf","w|;4g|;18g|;1mo|r;1ni|;6bw|1;7gs|;")) -r.push(new A.a0("Noto Sans Manichaean","notosansmanichaean/v15/taiVGntiC4--qtsfi4Jp9-_GkPZZCcrfekqCNTtFCtdX.ttf","w|;4g|;18g|;6bw|1;7gs|;1e68|;1gow|12;1gq3|b;")) -r.push(new A.a0("Noto Sans Marchen","notosansmarchen/v17/aFTO7OZ_Y282EP-WyG6QTOX_C8WZMHhPk652ZaHk.ttf","w|;4g|;7gs|;1k6o|v;1k7m|l;1k89|d;")) -r.push(new A.a0("Noto Sans Masaram Gondi","notosansmasaramgondi/v17/6xK_dThFKcWIu4bpRBjRYRV7KZCbUq6n_1kPnuGe7RI9WSWX.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;1us|1;60w|5;61q|;642|1;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;1kao|6;1kaw|1;1kaz|17;1kca|;1kcc|1;1kcf|8;1kcw|9;")) -r.push(new A.a0("Noto Sans Math","notosansmath/v15/7Aump_cpkSecTWaHRlH2hyV5UHkG-V048PW0.ttf","w|2m;4g|;4n|;4s|;4x|;5z|;6v|;le|1;lh|;lj|1;mo|;pd|g;pv|6;q9|o;r5|;r9|1;s0|1;s4|1;6cy|5;6dz|;6hc|c;6ht|;6hx|a;6iq|;6iy|4;6j4|2;6j9|;6jd|4;6jo|;6js|;6jw|1;6jz|2;6k3|5;6kc|4;6kl|4;6mo|u;6nk|1h;6pd|1;6pg|7f;6x4|3;6xc|;6xl|;6xo|5;6ye|1w;70c|;711|;717|r;72o|;730|5;778|1;7fz|;7g3|;7g7|;7gd|;7gh|;7gq|;7gs|;7i3|;7l9|2;7uo|1r;83k|e7;8i6|3;8j4|s;8ou|;1efv|;1efx|;2kg0|2c;2kie|1y;2kke|1;2kki|;2kkl|1;2kkp|3;2kku|b;2kl7|;2kl9|6;2klh|1s;2knb|3;2knh|7;2knq|6;2kny|r;2kor|3;2kow|4;2kp2|;2kp6|6;2kpe|9f;2kyw|83;2l72|1d;2pkw|3;2pl1|q;2plt|1;2plw|;2plz|;2pm1|9;2pmc|3;2pmh|;2pmj|;2pmq|;2pmv|;2pmx|;2pmz|;2pn1|2;2pn5|1;2pn8|;2pnb|;2pnd|;2pnf|;2pnh|;2pnj|;2pnl|1;2pno|;2pnr|3;2pnw|6;2po4|3;2po9|3;2poe|;2pog|9;2por|g;2ppd|2;2pph|4;2ppn|g;2prk|1;")) -r.push(new A.a0("Noto Sans Mayan Numerals","notosansmayannumerals/v15/PlIuFk25O6RzLfvNNVSivR09_KqYMwvvDKYjfIiE68oo6eepYQ.ttf","w|;4g|;2k80|j;")) -r.push(new A.a0("Noto Sans Medefaidrin","notosansmedefaidrin/v22/WwkzxOq6Dk-wranENynkfeVsNbRZtbOIdLb1exeM4ZeuabBfmErWlT318e5A3rw.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;60w|5;61q|;642|1;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;20cg|2i;")) -r.push(new A.a0("Noto Sans Meetei Mayek","notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1TJ_vTW5PgeFYVa.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;60w|5;61q|;642|1;6bv|2;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6gp|;6jm|;6qa|;7gs|;xr4|m;xxc|19;xyo|9;")) -r.push(new A.a0("Noto Sans Meroitic","notosansmeroitic/v16/IFS5HfRJndhE3P4b5jnZ3ITPvC6i00UDgDhTiKY9KQ.ttf","w|;1m|;4g|;6cm|;6e5|;1gg0|1j;1gho|j;1gia|19;")) -r.push(new A.a0("Noto Sans Miao","notosansmiao/v17/Dxxz8jmXMW75w3OmoDXVV4zyZUjgUYVslLhx.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;60w|5;61q|;642|1;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;20hs|22;20jz|1k;20lr|g;")) -r.push(new A.a0("Noto Sans Modi","notosansmodi/v20/pe03MIySN5pO62Z5YkFyT7jeav5qWVAgVol-.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;1tp|;60w|5;61q|;642|1;6bw|1;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;x80|9;1iww|1w;1iz4|9;")) -r.push(new A.a0("Noto Sans Mongolian","notosansmongolian/v17/VdGCAYADGIwE0EopZx8xQfHlgEAMsrToxLsg6-av1x0.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;4qo|e;4r4|9;4rk|2g;4u8|16;60w|5;61q|;642|1;6bw|1;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6cv|;6d5|1;6dk|1;6gc|;6jm|;6qa|;76o|j;7gs|;9hd|1;9hm|5;1e7x|1;1e81|3;1izk|c;")) -r.push(new A.a0("Noto Sans Mro","notosansmro/v18/qWcsB6--pZv9TqnUQMhe9b39WDzRtjkho4M.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;60w|5;61q|;642|1;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;1zk0|u;1zkw|9;1zla|1;")) -r.push(new A.a0("Noto Sans Multani","notosansmultani/v20/9Bty3ClF38_RfOpe1gCaZ8p30BOFO1A0pfCs5Kos.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;1us|1;21y|9;60w|5;61q|;642|1;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;1i80|6;1i88|;1i8a|3;1i8f|e;1i8v|a;")) -r.push(new A.a0("Noto Sans Myanmar","notosansmyanmar/v20/AlZq_y1ZtY3ymOryg38hOCSdOnFq0En23OU4o1AC.ttf","w|;1r|;4g|;35s|4f;6bv|2;6c8|1;6cc|1;6cm|;7gs|;xf2|;xk0|u;xnk|v;1e68|;")) -r.push(new A.a0("Noto Sans NKo","notosansnko/v2/esDX31ZdNv-KYGGJpKGk2_RpMpCMHMLBrdA.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;170|;17f|;17j|;19m|;1j4|1m;1kt|2;60w|5;61q|;642|1;6bw|3;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;93w|1;1e0u|1;")) -r.push(new A.a0("Noto Sans Nabataean","notosansnabataean/v15/IFS4HfVJndhE3P4b5jnZ34DfsjO330dNoBJ9hK8kMK4.ttf","w|;4g|;1g8w|u;1g9z|8;")) -r.push(new A.a0("Noto Sans New Tai Lue","notosansnewtailue/v20/H4cKBW-Pl9DZ0Xe_nHUapt7PovLXAhAnY7wqaLy-OJgU3p_pdeXAYUbghFPKzeY.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;51c|17;52o|p;53k|1;53n|7;53y|1;60w|5;61q|;642|1;6bw|1;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;9hc|2;9hk|3;1edd|;1edk|1;1edo|;1edq|;1ee2|1;1ee7|;1eg1|;1eg4|;")) -r.push(new A.a0("Noto Sans Newa","notosansnewa/v16/7r3fqXp6utEsO9pI4f8ok8sWg8n_qN4R5lNU.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;5x7|;60w|5;61q|;642|1;6bw|1;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;1iio|2j;1il9|4;")) -r.push(new A.a0("Noto Sans Nushu","notosansnushu/v19/rnCw-xRQ3B7652emAbAe_Ai1IYaFWFAMArZKqQ.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;60w|5;61q|;642|1;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;20o1|;2dm8|az;")) -r.push(new A.a0("Noto Sans Ogham","notosansogham/v15/kmKlZqk1GBDGN0mY6k5lmEmww4hrt5laQxcoCA.ttf","w|;4g|;4g0|s;")) -r.push(new A.a0("Noto Sans Ol Chiki","notosansolchiki/v21/N0b92TJNOPt-eHmFZCdQbrL32r-4CvhzDzRwlxOQYuVALWk267I6gVrz5gQ.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;5lc|1b;60w|5;61q|;642|1;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6gp|;6jm|;6qa|;")) -r.push(new A.a0("Noto Sans Old Hungarian","notosansoldhungarian/v15/E213_cD6hP3GwCJPEUssHEM0KqLaHJXg2PiIgRfjbg5nCYXt.ttf","w|;4g|;6bx|;1h1c|1e;1h34|1e;1h4q|5;")) -r.push(new A.a0("Noto Sans Old Italic","notosansolditalic/v15/TuGOUUFzXI5FBtUq5a8bh68BJxxEVam7tWlRdRhtCC4d.ttf","w|;4g|;1f5s|z;1f71|2;")) -r.push(new A.a0("Noto Sans Old North Arabian","notosansoldnortharabian/v15/esDF30BdNv-KYGGJpKGk2tNiMt7Jar6olZDyNdr81zBQmUo_xw4ABw.ttf","w|;4g|;1gn4|v;")) -r.push(new A.a0("Noto Sans Old Permic","notosansoldpermic/v16/snf1s1q1-dF8pli1TesqcbUY4Mr-ElrwKLdXgv_dKYB5.ttf","w|;4g|;lc|;li|2;lv|;w3|;6hn|;7gs|;1f80|16;")) -r.push(new A.a0("Noto Sans Old Persian","notosansoldpersian/v15/wEOjEAbNnc5caQTFG18FHrZr9Bp6-8CmIJ_tqOlQfx9CjA.ttf","w|;4g|;1fa8|z;1fbc|d;")) -r.push(new A.a0("Noto Sans Old Sogdian","notosansoldsogdian/v15/3JnjSCH90Gmq2mrzckOBBhFhdrMst48aURt7neIqM-9uyg.ttf","w|;4g|;1hj4|13;")) -r.push(new A.a0("Noto Sans Old South Arabian","notosansoldsoutharabian/v15/3qT5oiOhnSyU8TNFIdhZTice3hB_HWKsEnF--0XCHiKx1OtDT9HwTA.ttf","w|;4g|;1gm8|v;")) -r.push(new A.a0("Noto Sans Old Turkic","notosansoldturkic/v15/yMJNMJVya43H0SUF_WmcGEQVqoEMKDKbsE2RjEw-Vyws.ttf","w|;4g|;1gxs|20;")) -r.push(new A.a0("Noto Sans Oriya","notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5Ivj0f6_c6LhHBRe-.ttf","w|c;1a|28;4g|3;4l|;4n|4;4t|3;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jg|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;nu|;1us|1;269|2;26d|7;26n|1;26r|l;27e|6;27m|1;27p|4;27w|8;287|1;28b|2;28m|1;28s|1;28v|4;292|h;60w|5;61q|;642|1;6bv|2;6c0|;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6gp|;6jm|;6qa|;7gs|;")) -r.push(new A.a0("Noto Sans Osage","notosansosage/v18/oPWX_kB6kP4jCuhpgEGmw4mtAVtXRlaSxkrMCQ.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;ns|;60w|5;61q|;642|1;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;1fhs|z;1fiw|z;")) -r.push(new A.a0("Noto Sans Osmanya","notosansosmanya/v18/8vIS7xs32H97qzQKnzfeWzUyUpOJmz6kR47NCV5Z.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;60w|5;61q|;642|1;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;1fgg|t;1fhc|9;")) -r.push(new A.a0("Noto Sans Pahawh Hmong","notosanspahawhhmong/v18/bWtp7e_KfBziStx7lIzKKaMUOBEA3UPQDW7krzc_c48aMpM.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;60w|5;61q|;642|1;6bw|1;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;1zpc|1x;1zrk|9;1zrv|6;1zs3|k;1zst|i;")) -r.push(new A.a0("Noto Sans Palmyrene","notosanspalmyrene/v15/ZgNPjOdKPa7CHqq0h37c_ASCWvH93SFCPnK5ZpdNtcA.ttf","w|;4g|;1g80|v;")) -r.push(new A.a0("Noto Sans Pau Cin Hau","notosanspaucinhau/v20/x3d-cl3IZKmUqiMg_9wBLLtzl22EayN7ehIdjEWqKMxsKw.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;60w|5;61q|;642|1;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;1juo|1k;")) -r.push(new A.a0("Noto Sans Phags Pa","notosansphagspa/v15/pxiZyoo6v8ZYyWh5WuPeJzMkd4SrGChkqkSsrvNXiA.ttf","w|;4g|;4qp|2;4qt|;6bv|4;6cl|1;7gs|;9hd|1;9hj|a;9hw|7;x8g|1j;1e68|;")) -r.push(new A.a0("Noto Sans Phoenician","notosansphoenician/v15/jizFRF9Ksm4Bt9PvcTaEkIHiTVtxmFtS5X7Jot-p5561.ttf","w|;4g|;1gcg|r;1gdb|;")) -r.push(new A.a0("Noto Sans Psalter Pahlavi","notosanspsalterpahlavi/v15/rP2Vp3K65FkAtHfwd-eISGznYihzggmsicPfud3w1G3KsUQBct4.ttf","w|;4g|;18g|;6bw|1;7gs|;1gu8|h;1gux|3;1gvd|6;")) -r.push(new A.a0("Noto Sans Rejang","notosansrejang/v18/Ktk2AKuMeZjqPnXgyqrib7DIogqwN4O3WYZB_sU.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;60w|5;61q|;642|1;6bv|2;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;xf4|z;xgf|;")) -r.push(new A.a0("Noto Sans Runic","notosansrunic/v15/H4c_BXWPl9DZ0Xe_nHUaus7W68WWaxpvHtgIYg.ttf","w|;4g|;4gw|2g;")) -r.push(new A.a0("Noto Sans SC","notosanssc/v26/k3kXo84MPvpLmixcA63oeALhL4iJ-Q7m8w.otf","w|2m;4g|2r;7k|3;7u|1;88|3;8z|1;93|1;98|3;9e|1;a0|5;b6|;bk|1;bz|1;ct|f;e0|1;gh|;gx|;jf|;jr|;jt|2;k9|;kq|1;lc|1;lg|;lj|;lo|;pd|g;pv|6;q9|o;sh|;sw|1r;up|;5z2|1;61s|2h;6bm|1;6c0|6;6c8|2;6cc|2;6cg|2;6cl|2;6cw|;6cy|1;6d1|;6d5|3;6de|;6dj|2;6dt|;6es|;6g9|;6gb|1;6hp|1;6io|;6ir|;6it|;6ix|1;6j3|;6j7|;6ja|;6jl|1;6jq|1;6jv|;6jy|;6k5|;6kb|;6lc|b;6ls|b;6mo|9;6ns|1;6o4|2;6ob|1;6og|;6oi|;6ok|;6p2|3;6ph|;6ps|;6pu|1;6px|6;6q7|;6q9|2;6qd|;6qi|;6ql|3;6qr|;6qt|9;6r8|3;6rh|;6rn|;6rp|;6rs|;6rw|;6s2|;6sg|2;6sk|3;6sq|1;6su|1;6sy|1;6t2|1;6te|5;6tm|1;6tx|4;6u8|;6ud|;6v3|;6vu|1;6wf|;6x1|2;6xe|;6xk|;6y1|1;71s|1;726|e;72m|;72y|1;74z|;76o|97;7g1|2;7g6|1;7gc|1;7gg|1;7gm|6;7gu|5;7he|4;7hr|;7i8|3;7id|1;7ih|;7im|1;7iu|1;7j0|3;7jj|;7k0|2;7kw|f;7le|b;7mo|;7nh|1;7pe|;7pv|;7q2|;7r1|;7r3|1;7rq|;7sm|t;7tt|;850|1;88v|;8ai|1;8hx|2;8ii|;8lx|;94q|1;96o|p;97f|2g;9a8|5x;9gw|b;9hc|1r;9j5|2d;9ll|2u;9ol|16;9pt|1e;9r9|15;9sg|17;9ts|z;9v4|1a;9wg|7f;a3x|58o;feo|g6n;1d6o|3;1d6t|1;1d6z|1;1d79|;1d7b|3;1d7l|;1d7w|1;1d7z|;1d81|4;1d87|3;1d8j|;1d8n|3;1d8u|;1d8y|1;1d9a|;1d9e|5;1d9q|;1d9u|;1d9w|;1d9y|;1da1|2;1da6|2;1dac|1;1dai|2;1dam|;1dar|;1dat|;1daw|;1dbi|;1dbn|;1dbr|;1dbv|;1dbx|1;1dc0|;1dc5|1;1dcg|;1dco|1;1dcs|4;1dcy|2;1dd3|;1dd5|;1ddd|;1ddg|1;1ddm|;1ddp|;1ddr|;1ddu|;1ddx|3;1de2|;1de4|3;1de9|;1deb|1;1deg|;1den|2;1der|1;1dev|2;1df3|;1df7|2;1dfb|1;1dfe|;1dfr|;1dft|;1dfv|;1dgd|1;1dkw|4;1e6o|9;1e7k|y;1e8k|i;1e94|3;1edd|4e;1eht|t;1eiq|5;1eiy|5;1ej6|5;1eje|2;1ejk|6;1ejs|6;2q68|c;2q6o|2k;2q9c|1o;2qdc|2;2qds|17;2qf4|8;2qfk|1;2t8n|;2t8p|;2tak|;2tes|;2uco|;2ueu|;2vo0|;2x0a|;2x3n|;2xg7|;31cf|;33rf|;353r|1;35er|;3666|;366m|;37jd|;37q3|;37r5|;37ul|;37wp|;39yq|;3a02|;3a20|;3b2v|;3bvb|;3cip|;3czx|;3ddi|;3dks|;3dxt|;3ecc|;3eht|;3gz6|;3i5r|;3id3|;3iex|;3j7s|;3jp4|;3jpx|;3jz4|;3knd|;3kuf|;3kun|;3kup|;3kus|;3l73|;3lax|;3mv3|;3n68|;3on2|;3on7|;3ong|;3qal|;3qij|;3qjb|;3qr4|;3qra|;3qs8|;3rtu|;3s4n|1;3s53|1;3sa5|;3shs|;3skj|;3skv|;3sky|;3sl9|;3sp0|;3spc|;3spf|;3srl|;3svb|;3svj|;3svq|;3svt|;3swd|1;3sxi|;3t0u|1;3t0z|;3t2f|;3t2s|;3t3w|1;3t46|2;3t4a|;3t4c|;3t79|1;3t7x|;3t9p|;3tex|;3tfp|;3tgm|;3th5|;3th8|;3thi|;3thm|;3ti4|;3tmg|;3u13|;3u5b|;3u5e|;3u64|;3u6b|;3uaj|;3uk7|;3ukn|;3unr|;3up5|;3v3d|1;3v6x|;3v7u|;3vf9|;3vfd|;3vg9|;3vjw|;3vk8|;3vl0|;3vo7|;3vq3|;3vq9|;3vqc|;3vyg|;3vys|;3vyv|;3w3m|;3w9f|;3w9k|;3w9t|;3wa1|;3wa3|2;3wa7|;3waq|;3way|1;3wh8|;3whb|;3wkf|;3wld|;3wn1|;3wt5|;3wta|;3wtd|;3wtv|;3wuf|;3wui|;3wv1|;3x1e|;3x1q|;3x4t|;3x61|;3x9l|;3x9p|1;3x9t|;3xa0|1;3xa3|;3xa7|;3xa9|;3xai|;3xam|;3xay|1;3xb8|;3xbd|;3xbg|;3xbj|;3xbn|;3xbq|;3xbs|;3xbw|;3xdd|;3xdr|1;3xe6|;3xhy|;3xi7|;3xmd|1;3xml|;3xmn|;3xmq|1;3xmy|;3xqj|;3xql|;3xqn|1;3xr3|1;3xrc|;3xrh|1;3xsl|;3xug|;3xui|;3xur|;3xuu|;3xuy|;3xx8|;3xxk|;3xxv|;3z9g|;4684|;469i|;4an1|1;4ay4|;")) -r.push(new A.a0("Noto Sans Saurashtra","notosanssaurashtra/v19/ea8GacQ0Wfz_XKWXe6OtoA8w8zvmYwTef9ndjhPTSIx9.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;60w|5;61q|;642|1;6bv|2;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;xa8|1x;xce|b;")) -r.push(new A.a0("Noto Sans Sharada","notosanssharada/v16/gok0H7rwAEdtF9N8-mdTGALG6p0kwoXLPOwr4H8a.ttf","w|10;1y|2;22|4;28|4;2e|14;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;1u9|1;5p3|;5p5|;5p8|1;5pc|;60w|5;61q|;642|1;6bw|1;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;1i0w|2n;")) -r.push(new A.a0("Noto Sans Shavian","notosansshavian/v15/CHy5V_HZE0jxJBQlqAeCKjJvQBNF4EFQSplv2Cwg.ttf","w|;4g|;1ff4|1b;")) -r.push(new A.a0("Noto Sans Siddham","notosanssiddham/v17/OZpZg-FwqiNLe9PELUikxTWDoCCeGqndk3Ic92ZH.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;60w|5;61q|;642|1;6bw|1;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;1itc|1h;1iuw|11;")) -r.push(new A.a0("Noto Sans Sinhala","notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwg2a5lgLpJwbQRM.ttf","w|2m;4g|3;4l|;4n|4;4t|3;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;1us|1;2o1|2;2o5|h;2oq|n;2pf|8;2pp|;2ps|6;2q2|;2q7|5;2qe|;2qg|7;2qu|9;2r6|2;60w|5;61q|;642|1;6bv|2;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;1i3l|j;")) -r.push(new A.a0("Noto Sans Sogdian","notosanssogdian/v15/taiQGn5iC4--qtsfi4Jp6eHPnfxQBo--Pm6KHidM.ttf","w|;4g|;18g|;6bw|;7gs|;1hkg|15;")) -r.push(new A.a0("Noto Sans Sora Sompeng","notosanssorasompeng/v24/PlIRFkO5O6RzLfvNNVSioxM2_OTrEhPyDLolKvCsHzCxWuGkYHR818DpZXJQd4Mu.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;60w|5;61q|;642|1;6c0|;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;1hw0|o;1hww|9;")) -r.push(new A.a0("Noto Sans Soyombo","notosanssoyombo/v15/RWmSoL-Y6-8q5LTtXs6MF6q7xsxgY0FrIFOcK25W.ttf","w|;4g|;7gs|;1jrk|2a;")) -r.push(new A.a0("Noto Sans Sundanese","notosanssundanese/v24/FwZw7_84xUkosG2xJo2gm7nFwSLQkdymq2mkz3Gz1_b6ctxpNNHCizv7fQES.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;5fk|1r;5og|7;60w|5;61q|;642|1;6bv|2;6c0|;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;")) -r.push(new A.a0("Noto Sans Syloti Nagri","notosanssylotinagri/v20/uU9eCAQZ75uhfF9UoWDRiY3q7Sf_VFV3m4dGFVfxN87gsj0.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;1us|1;1ye|9;60w|5;61q|;642|1;6bv|2;6c0|1;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6dx|;6gc|;6jm|;6qa|;7gs|;x6o|18;")) -r.push(new A.a0("Noto Sans Syriac","notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-VD9MaJyZfUL_FC.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;m8|;mb|5;ml|1;mo|1;170|;17f|;17j|;17l|;18g|;18r|a;19c|c;19s|;1ds|d;1e7|1n;1fx|2;60w|5;61q|;642|1;6bw|3;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6dg|;6gc|;6jm|;6qa|;7gs|;7lc|1;")) -r.push(new A.a0("Noto Sans TC","notosanstc/v26/-nF7OG829Oofr2wohFbTp9iFOSsLA_ZJ1g.otf","w|2m;4g|2r;7k|3;7u|1;88|3;8z|1;93|1;98|3;9e|1;a0|5;b6|;bk|1;bz|1;ct|f;e0|1;gh|;gx|;jf|;jr|;jt|2;k9|;kq|1;lc|1;lg|;lj|;lo|;pd|g;pv|6;q9|o;sh|;sw|1r;up|;5z2|1;61s|2h;6bm|1;6c0|6;6c8|2;6cc|2;6cg|2;6cl|2;6cw|;6cy|1;6d1|;6d5|3;6de|;6dj|2;6dt|;6es|;6g9|;6gb|1;6hp|1;6io|;6ir|;6it|;6ix|1;6j3|;6j7|;6ja|;6jl|1;6jq|1;6jv|;6jy|;6k5|;6kb|;6lc|b;6ls|b;6mo|9;6ns|1;6o4|2;6ob|1;6og|;6oi|;6ok|;6p2|3;6ph|;6ps|;6pu|1;6px|6;6q7|;6q9|2;6qd|;6qi|;6ql|3;6qr|;6qt|9;6r8|3;6rh|;6rn|;6rp|;6rs|;6rw|;6s2|;6sg|2;6sk|3;6sq|1;6su|1;6sy|1;6t2|1;6te|5;6tm|1;6tx|4;6u8|;6ud|;6v3|;6vu|1;6wf|;6x1|2;6xe|;6xk|;6y1|1;71s|1;726|e;72m|;72y|1;74z|;76o|97;7g1|2;7g6|1;7gc|1;7gg|1;7gm|6;7gu|5;7he|4;7hr|;7i8|3;7id|1;7ih|;7im|1;7iu|1;7j0|3;7jj|;7k0|2;7kw|f;7le|b;7mo|;7nh|1;7pe|;7pv|;7q2|;7r1|;7r3|1;7rq|;7sm|t;7tt|;850|1;88v|;8ai|1;8hx|2;8ii|;8lx|;94q|1;96o|p;97f|2g;9a8|5x;9gw|b;9hc|1r;9j5|2d;9ll|2u;9ol|16;9pt|1e;9r9|15;9sg|17;9ts|z;9v4|1a;9wg|7f;a3x|5u;ab9|;abk|;abu|;abw|;ack|;acz|;ad6|;ad9|1;adv|;ady|;aed|;aen|;af0|;af5|;afc|;afz|;ag4|;ag6|;agr|;ah2|;aim|;aj5|;aj7|;ajd|;ajl|;ajx|;ak0|;ak2|;ak7|1;akk|;al3|1;ald|;alh|;alp|;am7|;am9|;amd|;amf|;ami|;amm|;amq|;amu|;amz|;an1|;anl|2;anv|;any|;ao9|;aoo|;aoq|;aoz|;ap1|;ap9|;aph|;apl|;apq|;apz|2;aq6|;aqn|;aqp|;are|;arl|;asa|;asl|;asq|;ass|;asw|1;at1|;at5|;at8|;atd|;atf|2;atj|1;atv|1;aty|;au5|;au9|1;aud|1;aut|;av5|;av7|;avc|;ave|;avh|;avw|;aw2|1;aw5|;awc|1;awg|;awi|1;awq|;aww|;awz|;axu|;ay7|;azb|;azk|;b09|;b0e|;b12|;b1u|;b20|;b23|;b2n|;b2x|;b34|;b3h|;b3q|;b3s|;b4z|;b5h|;b6o|;b7n|;b7w|;b81|;b84|;b96|;b9k|;b9w|;baf|;baq|;bb3|;bbh|;bc3|;bco|;bcw|;bd5|1;bde|;bdl|;bdn|;bdt|;bdw|;beg|;bfg|;bfm|;bfp|;bfw|;bg8|;bgb|;bge|;bgh|;bgj|;bgm|;bh3|1;bhl|1;bhw|;bij|;biq|;biv|;bj0|;bj2|;bja|1;bkn|;bl7|;blp|;bmi|;bmm|;bmo|;bn4|;bn6|;bn9|;bnf|;bny|;bo9|;boi|;bor|;bp5|;bpe|;bq0|;bq8|;bqp|1;bqz|1;br4|;brp|1;brt|;bs1|;bss|;bsu|;bsy|;bt0|;btj|;btp|;bu4|;bua|2;bv1|;bv5|;bv9|;bvc|;bx0|;byj|;c0b|;c0d|;c0h|;c0m|;c0s|;c17|;c1b|;c2a|1;c2l|;c36|;c3f|;c3q|;c3w|;c3y|;c41|;c4f|;c4i|;c4p|1;c4v|;c51|;c59|;c5h|;c5k|;c5m|;c5r|;c5t|;c6d|;c6l|;c6s|;c73|;c7a|1;c7d|;c7g|1;c7n|;c7v|;c87|1;c8b|;c8j|1;c8n|;c8s|1;c92|;cao|;car|;caw|;cb9|;cc4|;cdk|2;cdp|;cdt|;ce0|;ce7|;cea|;cef|;cei|;cek|;ceo|1;ceu|1;cey|1;cf2|;cf5|1;cfb|;cfd|;cff|1;cfk|;cfn|1;cfu|;cfw|;cfz|1;cg4|;cg6|1;cge|;cib|;cig|1;cir|;cjg|;ck3|;clc|;clk|;clz|;cm4|;cmd|;cml|;cmx|1;cn8|;cnd|;cnx|;cop|;cp1|;cpf|;cpj|;cpu|;cpx|;cq2|;cq7|;cq9|;crs|;cs4|;csb|;csf|;cso|;ct4|;ctb|;cu0|;cu2|;cua|2;cuh|;cum|;cvl|1;cx3|;cx8|;cxa|;cxo|;cxr|;cxt|;cy8|;cz6|;czo|;czu|;czz|;d0b|;d0t|;d0v|;d15|;d1t|;d2b|;d34|;d40|;d4a|;d4m|;d4q|;d58|;d5g|;d5u|;d6d|;d6h|;d6k|;d84|;d8b|1;d8q|;d9n|;dbi|;dcn|;dcq|;ddm|;ddt|;deh|;den|;df1|;df4|;df6|;dfl|1;dg3|;dgl|;dgt|;diy|;djj|;djl|;djz|1;dk2|;dkg|;dkn|;dkt|;dkw|;dkz|;dl1|;dla|;dlp|2;dlt|;dlw|;dm1|3;dmc|;dmr|1;dmx|;dmz|;dna|;dnf|;dnh|;dnr|;dny|;do3|;do6|;dob|;dod|;dof|;doj|;dox|1;dp1|;dp4|;dp8|;dpd|1;dpm|;dpp|;dpz|1;dqd|;dra|;drn|;dsq|;dt5|1;dtv|;dty|;du7|;dud|;duf|;dwb|;dx6|;dxc|;dy9|;dym|;dyz|;dzj|1;e0l|;e0n|;e1f|;e1k|;e2e|;e2s|;e32|1;e4c|;e54|;e5i|;e6t|;e7h|;e7o|;e80|;e8b|;e9j|;eal|;eb5|;ecb|;ect|1;eds|;ee5|;eel|;eer|;eey|;efa|;efl|;efy|;eg5|;ega|;egd|;egf|1;egl|;egs|;egu|;eh1|;ehd|;ehf|;ehx|;ei2|;eia|;eix|;ejl|;ejr|;elb|;elh|;elj|;emn|;en1|;en8|;enp|;eqe|;eqs|;er8|;erc|;es1|;esk|;etb|;ets|;eu1|;eu8|;euk|;euv|;ewf|1;ewi|;ewr|;ewu|;exa|;exc|;exf|;exi|1;exp|;eyl|1;eyo|;f0k|;f0n|;f0u|;f1u|;f23|;f26|;f28|;f2f|;f2v|;f2z|;f3h|;f3r|;f3v|;f3x|;f41|;f45|;f50|;f5a|;f5c|;f5j|;f65|;f6p|1;f71|;f7r|;f7t|;f80|;f90|;fau|1;fbd|;fbl|;fbw|;feo|1;fer|1;fev|a;ff8|2;ffc|2;ffg|;ffi|1;ffl|1;ffo|;ffq|;ffs|;ffu|9;fg6|3;fgb|2;fgf|;fgi|1;fgl|;fgn|2;fgr|;fgt|2;fgy|1;fh2|;fh4|7;fhl|1;fhv|;fi0|;fi6|b;fij|3;fip|4;fiw|3;fj2|8;fjc|;fjf|3;fjn|;fjq|1;fjt|3;fjz|5;fk6|5;fkd|1;fkk|6;fks|3;fkx|;fkz|2;fl4|3;fla|;flc|8;fln|;flp|;flr|6;fm0|3;fm5|8;fmf|3;fml|;fmq|;fmw|1;fn0|1;fn3|1;fn6|2;fna|9;fnl|2;fnp|4;fnv|p;fon|;fop|3;fou|2;foy|p;fpp|;fpr|3;fpw|4;fq2|4;fqa|;fqg|;fqj|;fqm|2;fqq|5;fqx|2;fr1|;fr3|6;frb|a;frn|1;frq|b;fs4|1;fsc|;fse|c;fst|1;fsw|;fsz|;ft1|4;ft7|4;ftd|b;ftq|5;ftx|c;fub|2;fuf|;fuj|1;fuo|1;fur|;fut|a;fv5|;fv7|;fv9|3;fve|c;fvs|8;fw2|5;fwa|;fwd|;fwg|3;fwl|;fwn|1;fwr|3;fww|2;fx0|2;fx4|6;fxe|1;fxi|;fxo|c;fy2|5;fy9|1;fyc|7;fyl|4;fyr|4;fyx|2;fz1|;fz3|2;fz7|7;fzg|5;fzn|3;fzs|1;fzv|j;g0g|5;g0n|1;g0q|;g0s|;g0v|3;g10|2;g15|2;g19|1;g1c|5;g1j|6;g1r|2;g1v|6;g23|2;g29|1;g2c|3;g2h|a;g2t|;g2v|7;g35|;g38|5;g3g|;g3k|;g3m|;g3q|4;g3x|;g3z|;g41|7;g4a|;g4c|;g4e|;g4g|;g4i|;g4k|1;g4n|1;g4q|2;g4u|;g4w|9;g58|2;g5f|h;g5z|1;g63|7;g6c|;g6l|;g6o|1;g6r|3;g6w|2;g70|2;g74|3;g79|7;g7i|;g7k|3;g7q|1;g7w|5;g84|6;g8e|;g8g|8;g8q|2;g8x|;g8z|1;g92|1;g95|6;g9e|;g9g|3;g9l|9;ga0|7;gaa|3;gaf|6;gan|5;gav|6;gb3|2;gb7|1;gba|5;gbj|2;gbn|1;gbq|;gbs|6;gc5|;gc9|;gcb|1;gce|;gcg|3;gcl|;gcn|;gcp|;gcs|1;gcw|3;gd1|4;gd7|;gd9|7;gdi|;gdl|;gdn|;gdr|2;gdv|2;gdz|5;ge6|1;ge9|;ged|1;geg|3;gel|5;get|2;gex|1;gf0|1;gf3|5;gfb|;gfe|;gfg|1;gfj|5;gfr|2;gfv|a;gg7|3;ggc|2;ggh|3;ggn|;ggq|;ggs|5;ggz|1;gh2|1;gh5|;gh8|9;ghj|2;ghn|4;ghu|;ghw|;gi2|;gi6|1;gia|2;gie|4;gik|4;giq|;gis|a;gj4|;gj6|;gj8|;gja|;gjd|;gjf|;gjl|2;gjp|;gjs|5;gk0|2;gk4|;gk6|5;gkf|7;gko|b;gl1|3;gl7|1;gla|;gld|;glf|1;gli|e;gly|;gm0|9;gmb|m;gmz|8;gn9|3;gne|5;gno|;go0|d;gof|9;goq|8;gp0|4;gp7|d;gpm|;gpo|;gpq|;gps|k;gqe|j;gqz|5;gra|;gre|;gri|;grk|b;grx|2;gs1|2;gs7|1;gsa|3;gsf|;gsh|j;gt3|1;gt6|;gta|;gtf|;gth|3;gtm|f;gu3|1;gu6|3;gub|8;gul|6;gut|2;gv0|3;gv5|5;gvd|2;gvl|2;gvp|2;gvt|;gvv|9;gw6|f;gwo|2;gws|1;gwv|;gwx|d;gxc|5;gxl|3;gxr|w;gyp|9;gz0|;gz2|4;gz9|2;gzd|9;gzo|2;gzs|1;gzw|b;h0b|8;h0l|;h0n|;h0p|1;h0s|4;h0y|9;h19|6;h1h|1;h1k|2;h1o|4;h1u|2;h1z|3;h25|1;h28|6;h2g|c;h2u|6;h32|9;h3d|7;h3m|1;h3p|;h3r|3;h3w|3;h41|;h44|4;h4a|5;h4h|6;h4p|;h4s|7;h51|1;h54|5;h5d|;h5f|1;h5i|1;h5m|1;h5p|5;h5w|1;h5z|;h62|1;h65|4;h6f|;h6h|2;h6l|;h6n|5;h6v|6;h76|4;h7c|;h7e|6;h7m|1;h7s|2;h7w|4;h82|2;h8b|;h8d|6;h8l|2;h8p|9;h90|;h93|;h97|;h9b|;h9d|1;h9g|;h9i|5;h9p|;h9r|8;ha2|6;haa|1;hag|;hai|3;han|1;har|2;hav|e;hbb|;hbe|;hbi|;hbn|3;hbs|7;hc1|3;hc6|2;hcb|1;hce|2;hci|;hck|1;hcn|;hcs|b;hd5|;hd8|i;hds|e;he8|;hea|;hec|;heg|1;hej|3;heo|a;hf0|f;hfh|;hfj|1;hfo|;hfr|8;hg1|4;hg7|8;hgi|3;hgo|1;hgr|2;hgv|;hgx|5;hh5|a;hhh|6;hhq|6;hhy|;hi0|2;hi4|5;hib|;hid|7;him|3;hir|;hit|1;hiy|5;hj5|1;hj9|4;hjf|;hji|8;hjs|8;hk2|2;hk7|2;hkb|1;hkf|1;hki|2;hkp|6;hky|5;hl6|;hl8|3;hld|1;hlg|3;hll|1;hlo|1;hlr|1;hlu|;hlw|1;hlz|;hm1|6;hm9|1;hmc|;hmf|1;hmk|;hmm|;hmo|;hms|1;hmv|3;hn2|3;hn7|2;hnb|1;hne|;hng|;hnk|2;hnp|;hnr|;hnt|5;ho0|9;hob|a;hop|1;hot|3;hoy|2;hp2|4;hp9|b;hpo|;hpq|j;hqb|h;hqu|;hqw|6;hr4|1;hr7|3;hrc|r;hs9|4;hsf|;hsh|2;hsl|7;hsu|3;hsz|2;ht3|;ht5|5;htf|;hth|4;hto|2;hts|a;hu4|1;hu8|u;hv4|1;hvb|8;hvl|3;hvq|;hvs|;hvu|2;hvy|9;hw9|9;hwk|3;hwp|3;hwu|m;hxi|9;hxt|;hxv|;hxx|h;hyg|6;hyo|;hyq|9;hz1|2;hz5|2;hz9|;hzb|2;hzf|2;hzj|2;hzn|4;hzt|2;hzx|4;i03|5;i0a|6;i0i|;i0k|;i0o|;i0s|5;i0z|5;i16|7;i1f|5;i1m|3;i1r|;i1u|4;i20|1;i23|3;i28|8;i2i|3;i2n|6;i2v|2;i2z|1;i32|2;i36|1;i39|a;i3m|6;i3u|;i3w|2;i40|;i43|6;i4f|8;i4q|4;i4w|9;i57|;i5a|e;i5q|5;i5x|1;i60|;i62|;i67|;i69|;i6b|2;i6f|f;i6y|;i70|;i72|2;i76|3;i7c|;i7e|;i7g|;i7k|1;i7n|;i7r|5;i7y|3;i84|d;i8j|3;i8o|1;i8s|2;i8w|;i8y|3;i93|3;i98|3;i9d|;i9f|1;i9k|4;i9q|;i9x|1;ia0|5;ia7|6;iah|1;iak|l;ib7|;ib9|3;ibe|;ibl|1;ibq|6;iby|d;ice|1;icl|;ico|2;ics|5;id0|5;id7|2;idb|2;idi|1;idn|7;idw|7;ie5|3;iea|7;iek|;iem|c;if0|7;if9|7;ifi|;ifk|2;ifp|2;ift|;ifv|;ify|;ig2|1;ig5|;ig7|2;igb|1;igf|3;igk|;ign|b;ih0|7;ih9|1;ihe|3;ihj|;ihl|1;iho|6;ihw|;ihz|b;iic|6;iik|1;iio|3;iiu|1;iix|;iiz|;ij1|;ij3|;ij5|1;ij8|4;ijf|;ijh|5;ijp|3;ijv|;ijy|;ik0|5;ik7|;ik9|;ikd|2;iki|2;ikm|;ikp|3;iku|;ikx|1;il0|7;il9|;ilb|6;ilk|1;iln|;ilp|1;ilv|1;ily|2;im5|1;im8|5;img|;imi|5;imr|2;imv|2;imz|8;ina|a;inm|4;ins|8;io2|2;io6|7;iof|;ioi|;iol|2;iop|3;iow|;ioy|6;ip6|4;ipc|9;ipp|1;ipt|1;ipw|a;iq8|j;iqt|4;ir0|;ir2|1;ir5|3;ira|6;iri|1;irl|1;iro|1;irr|1;iru|5;is2|3;is7|1;isa|1;isd|;isf|;isi|7;ist|1;isw|1;isz|;it1|3;it6|2;itc|;itf|3;itk|9;itw|;ity|3;iu4|2;iu9|4;iuf|;iuh|4;iun|5;iuu|3;iuz|8;iv9|7;ivk|2;ivq|3;ivv|1;ivy|3;iw4|b;iwh|1;iwl|2;iwp|c;ix5|;ix8|1;ixb|3;ixg|5;ixn|;ixp|4;ixv|2;iy0|;iy2|1;iy5|2;iy9|;iyb|2;iyf|1;iyi|1;iyl|;iyn|1;iyx|e;izd|5;izk|f;j01|4;j07|;j09|;j0b|;j0g|7;j0p|4;j0w|;j0y|3;j14|3;j19|2;j1e|e;j1u|;j1x|;j1z|;j26|3;j2b|7;j2k|2;j2o|;j2q|;j2s|3;j2y|6;j36|2;j3a|2;j3k|h;j43|c;j4h|;j4j|2;j4n|d;j52|3;j5c|h;j5v|d;j6a|4;j6g|5;j6n|1;j6q|1;j6v|2;j6z|1;j72|2;j76|;j78|;j7a|1;j7f|;j7h|5;j7o|c;j82|4;j88|g;j8q|2;j8u|9;j95|1;j98|2;j9c|3;j9j|;j9l|5;j9s|6;ja0|5;ja7|;ja9|1;jac|;jaf|j;jb0|;jb2|5;jb9|8;jbj|1;jbn|;jbq|;jbs|;jbu|;jby|2;jc2|9;jcd|1;jcg|2;jcl|c;jcz|1;jd3|3;jd8|2;jdc|2;jdg|2;jdl|2;jdr|6;jdz|;je1|5;je8|;jea|2;jee|1;jeh|1;jel|6;jeu|8;jf4|4;jfc|4;jfi|;jfk|6;jfs|;jfx|7;jg6|1;jg9|h;jgs|;jgu|a;jh9|;jhg|;jhi|;jhk|9;jhv|3;ji0|1;ji3|4;ji9|r;jj3|;jj9|;jjf|o;jk7|2;jkb|6;jkj|3;jko|;jl4|7;jld|d;jls|h;jmc|6;jml|;jms|1;jmv|2;jmz|7;jn9|8;jnj|6;jnr|b;jo4|;jo6|3;job|a;jon|a;jp5|;jp9|1;jpc|j;jpx|m;jql|9;jqw|1;jqz|1;jr2|;jra|1;jrd|7;jrm|6;jru|2;jry|a;jsa|6;jsi|9;jst|4;jsz|;jt7|;jt9|1;jtc|4;jtk|9;jtx|4;ju3|i;jun|;juq|;jut|;juv|6;jv3|4;jv9|5;jvg|4;jvm|4;jvt|;jvv|9;jw6|;jwb|a;jwn|;jwp|2;jwt|3;jwy|2;jx2|5;jx9|;jxc|d;jxr|5;jxz|1;jy2|7;jyb|1;jye|1;jyh|1;jyk|5;jyr|6;jyz|b;jzd|7;jzm|7;jzv|;jzx|2;k01|;k03|;k05|1;k08|2;k0d|;k0f|;k0h|;k0j|7;k0s|3;k0y|6;k16|3;k1b|;k1e|a;k1r|a;k23|1;k28|2;k2c|3;k2h|;k2j|7;k2s|1;k2v|1;k2y|2;k32|2;k36|1;k39|4;k3f|4;k3l|5;k3v|9;k46|1;k4a|1;k4d|6;k4l|1;k4o|1;k4s|9;k56|3;k5b|1;k5e|j;k60|;k64|c;k6j|;k6l|9;k6x|1;k75|4;k7b|6;k7j|;k7l|2;k7r|;k7t|f;k8a|2;k8e|6;k8m|8;k8w|;k90|a;k9c|2;k9g|6;k9p|;k9r|3;k9w|;ka0|3;ka5|e;kal|3;kas|;kau|9;kb6|;kba|;kbc|6;kbk|;kbn|1;kbq|3;kbv|3;kc0|4;kc6|3;kcc|;kce|7;kco|8;kcy|7;kd7|;kd9|6;kdh|3;kdm|4;kdt|;kdv|3;ke0|7;kec|5;kej|6;ker|;ket|2;kex|1;kf0|6;kfb|;kfe|l;kg1|6;kg9|;kgb|a;kgn|3;kgs|1;kgv|1;kh0|;kh8|;kha|d;khr|7;ki0|c;kie|9;kiq|5;kix|h;kjg|;kji|6;kjx|;kk0|;kk2|2;kk6|2;kka|8;kkl|1;kko|3;kkt|2;kkx|d;klc|h;klv|3;km5|;kmd|;kmj|;kml|2;kmp|1;kms|5;kmz|h;knj|5;knq|2;knv|2;knz|5;ko6|g;kop|;kot|;kox|;koz|b;kpc|8;kpm|;kpo|5;kpv|1;kpy|6;kq6|f;kqo|l;krb|4;krp|;kru|;krw|;krz|1;ks2|7;ksb|b;kso|4;ksu|1;ksx|16;ku8|;kua|1;kud|1;kui|;kul|1;kuo|1;kur|9;kv2|p;kvt|;kvv|9;kw6|;kw9|8;kwj|3;kwp|;kwx|1;kx0|5;kx7|3;kxd|3;kxi|n;ky7|;ky9|;kyb|e;kyr|;kyt|4;kyz|2;kz6|3;kzc|9;kzn|6;kzv|g;l0d|e;l0t|;l0v|;l0x|;l10|;l12|;l16|;l1a|7;l1j|;l1l|1;l1o|b;l21|f;l2j|4;l2p|a;l31|1;l36|1;l39|8;l3j|2;l3n|1;l3s|9;l45|;l47|1;l4a|2;l4e|3;l4j|;l4m|;l4o|4;l4w|;l4y|3;l54|3;l5b|4;l5i|4;l5p|1;l5s|1;l5v|;l5x|;l60|;l64|1;l67|;l69|e;l6p|2;l6t|9;l74|2;l78|3;l7d|;l7f|1;l7i|9;l7u|;l7x|;l7z|;l82|;l84|;l86|5;l8e|6;l8m|;l8o|2;l8s|3;l8x|;l90|5;l97|;l9a|2;l9e|5;l9m|1;l9p|3;l9u|1;l9x|2;la2|;la4|1;la7|2;lab|a;lan|1;laq|2;lau|2;lay|2;lb2|;lb4|4;lba|2;lbe|2;lbj|1;lbm|1;lbr|f;lc8|1;lcb|2;lcf|2;lcj|3;lco|5;lcv|2;lcz|5;ld6|2;lda|d;ldp|6;ldy|;le1|7;lea|;lec|1;lef|a;let|6;lf1|9;lfc|3;lfh|j;lg2|4;lg8|5;lgf|;lgi|;lgq|a;lh2|h;lhl|e;li1|a;lid|;lif|c;lit|;lix|;lj3|j;ljq|5;ljx|3;lk2|;lk4|u;lla|;llj|5;llq|c;lm4|6;lmc|10;lne|;lno|1;lnu|2;lny|1;lo1|4;lo7|9;loi|;lok|9;lov|n;lpk|f;lq1|5;lq8|;lqa|3;lqi|;lqn|;lqt|;lqw|5;lr3|n;lrs|9;ls3|4;ls9|2;lsd|s;lt7|;lta|1;ltd|3;lti|3;lto|;lty|;lu0|1;lu3|;lu5|3;lua|2;lue|h;luy|1;lv2|14;lw8|5;lwi|;lwo|1;lwr|4;lwx|1;lx0|r;lxu|8;ly4|;ly6|9;lyh|o;lz7|1;lzi|a;lzu|a;m06|1;m09|7;m0i|2;m0m|c;m10|a;m1c|;m1e|5;m1p|p;m2g|c;m2u|9;m37|2;m3c|c;m3q|3;m3v|7;m44|;m46|2;m4a|2;m4e|3;m4j|4;m4p|6;m4x|;m50|g;m5i|6;m5r|6;m5z|5;m66|8;m6g|5;m6o|2;m6s|4;m6y|i;m7i|3;m7o|6;m7w|3;m81|5;m89|2;m8e|1;m8h|5;m8o|2;m8v|2;m8z|4;m95|;m97|6;m9f|2;m9j|7;m9s|;m9w|4;ma2|g;mak|6;mas|;mb3|2;mb7|d;mbm|;mbo|2;mbt|5;mc0|;mc3|;mc7|;mc9|a;mcl|1;mco|1;mcr|1;mcu|8;md6|1;mda|;mdc|7;mdl|b;mdy|4;me4|g;mem|;meo|8;mey|4;mf4|2;mf8|6;mfg|;mfi|4;mfo|;mfq|f;mg7|3;mgc|1;mgf|6;mgn|3;mgs|f;mha|4;mhg|2;mhk|5;mhr|3;mhw|4;mi3|3;mi8|2;mic|2;mig|1;mij|8;mit|2;mix|1;mj0|4;mj7|4;mjd|2;mjh|2;mjm|c;mk0|;mk5|1;mk8|3;mkd|5;mkk|;mkm|6;mkv|1;mky|1;ml1|e;mli|1;mll|1;mlo|;mlq|2;mlu|2;mly|3;mm3|7;mmc|5;mmj|d;mmy|1;mn1|2;mn5|9;mng|4;mnm|;mno|1;mnu|;mnx|;mnz|7;mo9|5;mog|2;mok|;mom|4;mos|;mov|5;mp2|;mp4|3;mpf|1;mpi|c;mpw|;mpz|1;mq2|2;mq7|4;mqe|3;mqj|3;mqq|1;mqt|9;mr4|c;mri|7;mrs|2;mrw|6;ms7|4;msd|5;msl|7;msu|a;mt6|i;mtq|1;mtu|6;mu4|6;muc|9;muq|a;mv2|2;mv6|e;mvm|c;mw0|b;mwd|2;mwj|q;mxd|1;mxg|3;mxl|d;my0|i;myk|;myn|o;mzd|c;mzr|f;n09|1;n0c|7;n0l|8;n0w|;n0y|;n10|1;n13|a;n1f|8;n1p|;n1r|3;n1w|7;n25|6;n2d|1;n2g|;n2i|2;n2n|1;n2r|m;n3g|;n3i|;n3k|2;n3o|4;n3v|;n3x|3;n42|3;n47|1;n4b|f;n4s|3;n4x|1;n51|1;n54|d;n5j|4;n5p|3;n5u|;n5y|2;n62|5;n69|;n6b|2;n6h|4;n6n|1;n6q|5;n6y|6;n76|;n7a|4;n7h|3;n7n|1;n7q|1;n7u|8;n84|1;n88|2;n8d|1;n8i|3;n8n|;n8q|1;n8w|6;n94|d;n9j|1;n9m|8;n9w|1;n9z|d;nae|1;nal|;nan|k;nbb|6;nbj|2;nbn|3;nbt|g;ncc|1;ncf|6;nco|;ncq|3;ncw|;ncy|1;nd2|3;nd8|8;ndi|4;ndo|;ndr|3;ndw|3;ne1|1;ne4|a;neg|7;nep|1;nes|;neu|5;nf2|2;nf6|1;nf9|1;nfd|5;nfl|;nfo|2;nfu|1;nfx|3;ng4|1;ng7|1;nga|1;ngd|2;ngi|4;ngo|2;ngs|2;ngy|2;nh2|;nh5|6;nhd|;nhf|4;nhl|1;nho|9;nhz|5;ni6|;ni9|;nib|2;nif|5;nim|5;nit|;nix|2;nj1|3;nj6|7;njf|;njh|;njj|;njl|d;nk0|;nk3|4;nka|5;nki|;nkk|2;nko|4;nku|5;nl1|a;nle|;nlj|e;nlz|2;nm3|4;nm9|;nmb|;nmd|;nmf|c;nmt|;nmv|1;nmy|3;nn3|8;nnd|6;nnm|3;nnr|;nnt|7;no3|2;no7|7;nog|;noi|1;nol|4;nos|8;np3|7;npe|1;nph|1;npk|1;npo|8;nq0|;nq4|7;nqd|g;nqv|2;nr0|1;nr6|3;nrb|7;nrk|4;nrw|2;ns0|;ns2|;ns4|2;ns8|9;nsp|3;nsu|3;nsz|6;nt8|3;ntd|;ntf|7;ntq|7;ntz|6;nu7|5;nue|;nug|4;num|;nup|;nur|2;nuv|e;nvb|1;nve|1;nvh|8;nvr|3;nvw|9;nw7|;nw9|6;nwh|1;nwk|2;nwp|;nws|;nwu|;nww|4;nx3|;nx5|;nx7|3;nxd|;nxf|c;nxt|5;ny0|a;nyc|8;nyn|m;nzb|4;nzh|;nzk|4;nzt|1;nzw|7;o06|2;o0a|1;o0d|g;o0v|3;o10|a;o1c|4;o1i|5;o1p|4;o1w|2;o20|a;o2c|2;o2g|;o2k|4;o2q|2;o2u|1;o2x|5;o35|;o38|;o3a|2;o3e|1;o3k|;o3m|4;o3s|;o3u|4;o40|5;o47|5;o4e|2;o4i|;o4m|;o4o|;o4q|8;o53|;o55|7;o5f|b;o5w|;o5y|2;o62|2;o67|3;o6d|;o6f|2;o6j|3;o6o|2;o6s|2;o6w|3;o71|4;o77|9;o7j|a;o7y|2;o82|1;o88|4;o8e|a;o8q|2;o8u|7;o93|4;o9b|;o9d|;o9f|;o9k|5;o9r|1;o9u|5;oa1|2;oa5|2;oae|1;oah|8;oas|2;oaw|4;ob2|6;obc|3;obh|3;obm|j;oc8|1;ocb|;ocg|;oci|g;od0|2;od4|;odc|7;odl|;odo|c;oe3|;oea|;oec|1;oef|1;oei|8;oes|9;of4|4;ofg|3;ofl|1;ofo|1;ofr|2;ofy|;og0|1;og4|3;og9|3;oge|2;ogk|1;ogo|k;ohc|4;ohj|c;ohx|2;oi1|9;oid|;oih|;oij|8;oit|8;oj4|;oj7|;oj9|;ojb|2;ojf|5;ojm|3;ojr|3;ojw|1;ok0|1;ok3|1;ok6|1;ok9|4;okf|1;okj|4;okp|7;oky|3;ol4|9;olf|3;olk|2;olo|2;olt|1;olw|4;om4|;om6|1;om9|2;omd|3;omk|;omm|1;omp|4;omw|7;on6|1;on9|;onb|7;onk|7;ont|1;onw|4;oo2|;oo6|2;ooa|;ooc|d;oor|3;oow|y;opx|;oq0|1;oq3|1;oq6|5;oqd|1;oqg|f;oqy|;or1|9;orc|;ore|5;orl|2;orq|5;orx|6;os9|4;osf|2;osj|3;oso|1;osr|4;osx|6;ot8|8;oti|f;otz|b;ouc|3;ouh|7;ouq|2;ouv|a;ov7|7;ovg|;ovi|9;ovt|5;ow3|;ow7|g;owq|b;ox3|;ox5|2;ox9|s;oy4|;oy8|c;oym|5;oyt|;oyv|9;oz6|g;ozq|2;ozu|5;p01|b;p0f|;p0k|;p0s|;p16|;p1j|;p1r|;p27|;p3a|;p4m|4;p4t|4;p4z|2;p53|e;p5k|;p5n|6;p5v|;p5x|9;p68|3;p6d|a;p6r|;p6t|a;p75|6;p7e|4;p7k|9;p7w|n;p8l|;p8n|;p8p|9;p90|1;p93|;p97|8;p9h|g;p9z|h;paj|7;pas|5;paz|6;pb8|2;pbc|2;pbg|;pbi|3;pbn|4;pbt|;pbv|4;pc3|;pc6|2;pca|;pcf|3;pck|;pcm|;pco|;pcq|4;pcx|3;pd2|1;pd8|;pdb|4;pdh|4;pdp|3;pdu|;pdw|3;pe1|3;pe7|1;pea|1;ped|1;peg|5;pen|;pep|2;pet|;pev|;pex|2;pf1|2;pf5|1;pf8|4;pfe|;pfg|1;pfm|8;pfw|5;pg4|a;pgg|1;pgj|3;pgp|;pgs|1;pgv|7;ph4|6;phc|3;phh|5;pho|;phq|;phu|;phw|7;pi5|2;pi9|4;pif|;pih|4;pin|3;pis|;piv|;pix|1;pj1|1;pj6|2;pja|2;pje|c;pjt|3;pjy|;pk0|2;pk4|3;pk9|;pkb|9;pkm|4;pks|1;pkv|1;pky|2;pl2|7;plb|;plf|;plh|;plj|9;plu|1;plx|7;pm6|;pm8|7;pmh|h;pn0|1;pn3|3;pn9|;pnb|4;pnh|d;pnw|3;po2|2;po6|6;poe|4;pok|1;pon|6;pow|2;pp0|2;pp4|;pp6|8;pph|1;ppk|5;ppr|;ppu|8;pq4|4;pqa|;pqc|1;pqf|;pqh|;pqj|;pqm|e;pr2|1;pr5|5;prc|1;prf|4;prl|1;pro|c;ps3|2;ps7|;psa|1;psd|7;pso|3;pst|k;ptf|d;ptu|2;pu2|;pu7|a;puj|1;pum|a;puy|v;pvv|2;pw6|8;pwg|;pwi|;pwk|9;pwv|;pwx|c;pxb|6;pxj|d;pxy|1;pya|1;pye|;pyn|;pyr|5;pyy|5;pz5|;pz7|;pz9|p;q00|;q02|a;q0e|2;q0p|;q0t|i;q1d|;q1f|6;q1n|a;q1z|f;q2g|7;q2p|;q2r|4;q2x|b;q3a|;q3c|;q3f|1;q3k|1;q3n|1;q3q|;q3t|;q3v|l;q4i|c;q4w|p;q5n|f;q65|3;q6a|;q6c|;q6e|;q6g|;q6l|7;q6u|e;q7b|b;q7o|;q7q|;q7s|a;q84|3;q89|b;q8m|1;q8q|1;q8u|;q8x|1;q90|1;q93|5;q9a|6;q9i|a;q9u|o;qak|5;qar|e;qb7|1;qbc|;qbf|;qbh|1;qbk|e;qc1|a;qcd|k;qcz|;qd1|7;qda|;qdc|h;qdv|h;qee|4;qen|2;qer|7;qf1|c;qff|;qfh|5;qfp|5;qfw|a;qg8|a;qgk|;qgm|c;qh0|3;qh5|4;qhb|2;qhf|1;qhi|6;qhq|c;qi4|3;qi9|5;qig|4;qim|2;qiq|1;qit|3;qiz|3;qj4|;qj6|4;qjd|;qjf|1;qji|1;qjl|4;qjr|d;qk7|;qk9|3;qke|;qkl|2;qkq|4;qkw|a;ql8|2;qlc|5;qlj|3;qlp|;qlr|q;qmj|1;qmo|1;qmr|1;qmu|9;qn6|2;qna|;qnc|5;qnj|;qnp|6;qny|;qo0|e;qoh|2;qol|;qoo|4;qou|;qow|a;qp8|2;qpc|5;qpj|1;qpm|2;qpq|5;qpy|;qq4|11;qr7|8;qrh|;qrl|8;qrv|2;qrz|5;qs6|2;qsa|5;qsi|3;qsp|t;qtk|4;qtq|;qtt|3;qty|i;qui|5;quq|5;qux|3;qv2|8;qvc|5;qvj|2;qvn|6;qvv|2;qvz|k;qwl|4;qwr|b;qx4|;qx6|5;qxe|1;qxh|2;qxl|2;qxp|1;qxs|5;qxz|4;qy5|5;qyc|3;qyh|;qyk|8;qyv|2;qyz|8;qz9|d;qzo|;qzr|1;qzu|2;qzy|;r01|1;r04|6;r0c|6;r0l|;r0n|;r0p|7;r0y|;r10|b;r1d|;r1i|2;r1n|1;r1q|k;r2d|2;r2h|3;r2m|;r2o|a;r32|1;r35|6;r3d|a;r3p|3;r3v|3;r41|3;r46|1;r49|;r4b|2;r4f|5;r4m|g;r55|6;r5d|3;r5i|1;r5l|3;r5q|5;r5x|6;r67|;r69|;r6b|5;r6j|4;r6p|6;r6x|1;r70|3;r76|;r7a|1;r7d|1;r7g|5;r7q|;r82|4;r89|4;r8f|a;r8r|2;r8w|4;r92|2;r96|2;r9a|2;r9e|2;r9j|1;r9m|;r9o|;r9q|5;r9x|3;ra3|4;raa|1;rad|;raf|;rah|4;rao|1;ras|;rau|;raw|9;rb8|2;rbc|2;rbg|6;rbo|5;rbv|;rby|;rc0|3;rc6|3;rcb|3;rcg|7;rcp|3;rcu|1;rcx|6;rd7|2;rdb|7;rdk|2;rdo|;rdq|;rds|1;rdv|9;re7|1;rea|;rec|;ree|;reg|8;req|7;rez|2;rf3|;rf5|h;rfo|;rfq|2;rfu|1;rfx|f;rge|4;rgk|4;rgq|m;rhe|6;rhm|7;rhv|;rhx|2;ri1|a;rid|l;rj0|4;rj6|1;rj9|8;rjj|1;rjo|;rjr|4;rjx|9;rk8|;rka|2;rke|2;rki|4;rko|4;rku|2;rlq|;rmq|;rp3|;rp5|;rp7|4;rpd|2;rph|c;rpw|3;rq2|;rq4|1;rq7|;rq9|1;rqc|2;rqg|5;rqn|4;rqt|6;rr1|;rr4|2;rr8|2;rrd|1;rrg|1;rrj|6;rrr|e;rs7|6;rsf|1;rsi|j;rt3|1;rt6|;rt8|1;rtb|;rtd|6;rtl|l;ru8|5;ruf|7;ruo|;ruq|b;rv3|a;rvf|2;rxg|;rxi|3;rxn|5;rxu|2;rxy|5;ry5|;ry8|2;ryc|1;ryh|1;ryk|a;ryx|;ryz|1;rz3|2;rz7|;rz9|a;rzm|5;rzt|1;rzw|;rzy|5;s05|3;s0b|6;s0j|a;s0v|5;s12|6;s1a|6;s1m|;s1o|b;s21|1;s25|u;s31|1;s34|1;s37|3;s3c|2;s3g|6;s3o|c;s43|4;s49|h;s4s|1;s4v|;s4x|7;s56|2;s5a|;s5c|2;s5g|a;s5s|8;s62|;s65|4;s6b|a;s6o|;s6q|;s6u|;s6x|1;s70|1;s74|;s76|1;s7d|6;s7l|3;s7r|1;s7u|8;s84|5;s8b|4;s8h|1;s8k|8;s8u|5;s91|6;s99|1;s9c|g;s9v|3;sa1|1;sa4|4;saa|7;saj|1;sam|d;sb1|n;sbq|1;sby|;scz|;sd7|1;sdb|1;sdf|;sdh|3;sdp|f;se6|1;se9|1;sec|2;seh|e;sey|;sf4|6;sfc|;sfe|1;sfh|1;sfk|;sfo|i;sg8|;sgb|2;sgf|3;sgk|3;sgp|b;sh9|2;shd|7;sho|3;sht|1;shw|;shy|1;si1|d;sig|1;sij|3;sio|4;siv|2;siz|5;sj6|m;sju|1;sjx|;sjz|2;sk4|1;sk7|2;skb|;ske|5;skl|3;skq|;sku|8;sl4|;sl7|;sl9|2;sld|;slf|2;slj|1;slm|1;slq|;slw|9;sm7|6;smg|5;smn|6;smx|g;snf|;snh|5;sno|;snq|e;so6|g;soo|3;sou|3;soz|g;sph|5;spo|;spq|7;spz|3;sq4|;sq6|2;sqa|8;sqk|;sqo|7;sqx|a;sra|;srd|a;srp|;srr|g;ss9|5;ssg|7;ssp|;ssr|6;ssz|7;st8|1;stb|;ste|c;stt|;stv|7;su5|d;suk|e;sv0|;sv2|;sv5|;sv7|5;sve|1;svh|1;svk|a;svw|5;sw4|2;sw8|g;swq|1;swt|a;sx7|5;sxe|;sxi|p;sy9|;syb|a;syo|c;sz2|;sz5|6;szd|3;szi|n;t07|2;t0b|;t0d|4;t0j|h;t12|e;t1i|3;t1n|5;t1u|4;t20|3;t25|k;t2r|3;t2w|1;t30|;t34|i;t3o|8;t3y|g;t4g|1;t4j|b;t4w|a;t58|6;t5g|m;t64|9;t6f|1;t6j|;t6l|;t6n|1;t6q|2;t6u|2;t6y|q;t7q|2;t7w|;t7y|;t80|1;t83|e;t8j|1;t8m|j;t97|;t99|;t9c|;t9g|f;t9x|b;taa|b;tan|3;tas|1;tav|1;taz|;tb1|1;tb4|;tb6|3;tbb|i;tbv|8;tc5|;tcv|;tcy|;tdt|;tdv|;tek|;tfa|;tgt|;thj|;tiv|1;tiy|3;tj3|1;tj6|1;tj9|1;tjc|1;tjf|9;tjq|3;tjv|1;tjy|g;tkg|2;tkl|2;tkp|7;tkz|;tl1|8;tlc|6;tlm|2;tlq|7;tm0|;tmc|;tng|2;tnk|4;tns|;tnu|;tnw|7;to8|5;tof|6;toq|7;toz|1;tp2|;tp4|;tp7|4;tpd|3;tpl|4;tpr|9;tq3|3;tq8|1;tqb|8;tql|2;tqp|8;tqz|1;tr2|;tr5|4;trb|3;trg|;tri|;trk|1;trn|1;trq|;trs|1;trv|2;trz|f;tsi|d;tsx|2;tt1|;tt4|2;ttb|3;ttg|7;ttp|;ttr|1;ttu|7;tu3|;tu5|6;tue|;tug|1;tuj|h;tv2|4;tv8|2;tvc|2;tvh|7;tvq|5;tw1|1;tw5|3;twa|8;twm|;two|2;tws|2;tww|4;tx2|2;tx6|b;txj|4;txp|2;txw|;txz|f;tyg|;tyi|4;typ|3;tyu|5;tz1|c;tzf|5;tzm|7;tzw|5;u03|;u05|1;u0d|1;u0g|3;u0l|1;u0o|3;u0t|b;u16|;u18|c;u1n|6;u1v|1;u1y|3;u23|;u25|3;u2a|3;u2f|2;u2j|;u2p|;u2r|g;u3a|3;u3f|5;u3m|a;u3z|6;u5k|1;u5o|3;u5t|3;u5y|e;u6e|6;u6m|;u6z|1;u72|5;u79|2;u7d|4;u7j|;u7l|1;u7o|2;u7t|1;u7w|2;u80|;u82|1;u85|;u87|3;u8c|;u8e|;u8g|c;u8u|1;u8x|;u90|1;u93|c;u9h|;u9j|c;u9x|;u9z|7;ua8|9;uaj|4;uap|2;uc6|3;ucb|3;uch|;ucj|5;ucq|b;ud4|5;udd|4;udj|;udl|;udn|i;ue7|8;ueh|1;uek|2;ueo|1;ues|b;uf5|6;ufd|8;ufo|2;uft|e;ug9|9;ugk|i;uh4|2;uh8|4;uhe|a;uhq|2;uhu|a;uj3|;ujs|;ujv|;ujx|;ujz|5;uk6|c;ukm|1;ukq|;ukt|;ukv|9;ul8|;ulb|4;uli|1;uln|4;ult|3;uly|1;um1|6;um9|5;umg|a;ums|6;un2|2;un6|3;unb|4;unh|2;unl|4;unr|;unt|3;uny|8;uo8|;uoa|8;uok|2;uoo|3;uov|2;up0|;up2|3;up8|;upb|2;upg|3;upm|9;upx|3;uq3|;uq5|6;uqd|;uqf|;uqi|1;uql|5;uqs|2;uqw|;uqy|1;ur1|3;ur9|1;urc|1;urh|;urj|2;urn|1;urq|4;urz|;us3|4;us9|5;usg|2;usk|9;usw|1;ut0|;ut3|1;ut9|;utb|;ute|;uth|9;uts|;utu|3;utz|;uu3|2;uu7|2;uub|3;uug|1;uuj|2;uun|;uup|6;uux|8;uv8|c;uvm|7;uvx|3;uw2|1;uw6|2;uwd|1;uwh|4;uwn|5;uzp|2;uzt|1;uzx|;v01|6;v09|4;v0f|1;v0i|7;v0s|;v0w|;v0y|;v10|5;v17|;v19|6;v1h|1;v1k|1;v1p|4;v1v|1;v1y|3;v23|;v25|8;v2h|3;v2m|6;v2u|b;v3b|e;v3r|2;v3v|h;v4g|;v4i|2;v4m|n;v5b|;v5d|k;v5z|o;v6p|5;v6w|1;v6z|5;v76|l;v7t|c;v87|8;vat|;vax|4;vb3|f;vbk|i;vc4|d;vck|3;vcr|9;vd2|2;vd8|5;vdf|3;vdk|;vdm|6;vdu|;vdw|4;ve3|;ve5|l;veu|4;vf2|2;vf6|1;vf9|7;vfi|;vfk|;vfm|n;vgb|;vgd|1;vgg|g;vgy|l;vhl|3;vhq|4;vhw|7;vi6|1;vil|1;vio|2;vis|5;vj0|;vj3|1;vj6|;vj8|f;vk7|4;vkg|;1d6o|3;1d6t|2;1d6z|;1d71|;1d79|;1d7b|;1d7e|;1d7m|;1d7x|;1d81|;1d87|;1d89|1;1d8j|;1d8n|1;1d8q|;1d8y|;1d9a|;1d9e|;1d9h|;1d9j|;1d9u|;1d9y|;1da0|1;1da6|;1da8|;1dae|;1dai|;1dam|;1dat|;1db0|;1db3|;1dbp|;1dbv|;1dbx|;1dc5|1;1dc8|;1dco|;1dcs|2;1dcw|;1dd0|;1dd3|;1dd5|;1ddg|1;1ddm|;1ddp|;1ddr|;1ddu|;1ddx|3;1de2|;1de4|1;1df7|2;1dfe|;1dft|;1dfv|;1dgd|1;1dkw|4;1e6o|9;1e7k|y;1e8k|i;1e94|3;1edd|4e;1eht|t;1eiq|5;1eiy|5;1ej6|5;1eje|2;1ejk|6;1ejs|6;2q68|c;2q6o|2k;2q9c|1o;2qdc|2;2qds|17;2qf4|8;2qfk|1;2t5t|;2t6m|;2t6u|;2t72|;2t7s|;2t8m|1;2t8q|;2t90|;2tai|3;2tap|;2tbi|;2tcc|;2tce|;2tco|;2tgk|;2tgp|;2tgr|;2thd|;2thw|;2tiq|;2tj8|;2tjg|;2tjo|;2tkp|;2tln|;2tmc|1;2tnd|;2tni|;2tnk|;2to7|;2tof|1;2tph|;2tqi|;2tr9|;2ts1|;2ts5|2;2ttq|2;2tuo|;2tuv|;2tv9|;2tvt|;2tvv|;2tx1|;2tx8|;2txv|1;2ty7|;2u05|;2u13|;2u1a|;2u1d|1;2u1v|;2u3b|;2u4c|;2u4e|;2u6f|;2u8e|;2u91|;2u9f|;2u9v|;2ua2|;2ua8|;2uad|;2uan|1;2uaz|;2uc1|;2uc5|;2uc9|1;2uco|;2ucw|;2udy|;2ueu|;2uj2|;2uk1|;2um1|;2ur0|;2usz|;2uvp|;2uxi|;2uxv|;2uz8|;2v09|;2v3b|;2v4h|;2v68|;2v73|;2v7u|;2v90|;2v9e|;2v9p|;2vbh|;2vf3|;2vfj|;2vfs|1;2vgf|;2vgm|;2vgr|;2vhe|;2vhn|;2vi3|;2vi7|;2vij|;2vil|;2vj4|;2vjo|;2vju|1;2vk1|2;2vkj|;2vl1|;2vlj|1;2vlo|;2vm5|;2vme|;2vmk|;2vn9|;2vnc|;2vnz|;2vo3|3;2vod|;2vot|;2vpb|;2vpx|;2vqg|;2vqp|1;2vra|3;2vrg|2;2vsf|;2vsh|;2vsk|;2vss|;2vsu|1;2vti|;2vto|;2vtz|;2vua|;2vuw|;2vwk|;2vwp|1;2vwt|4;2vx2|;2vx9|;2vyk|;2vzh|;2vzn|;2vzp|6;2w0c|;2w0m|;2w0o|;2w0t|;2w0y|;2w16|2;2w1i|;2w2f|1;2w2l|;2w3c|3;2w4d|;2w4m|;2w4t|1;2w4w|1;2w57|;2w5o|;2w6c|;2w7h|;2w7k|;2w8d|;2w8k|2;2w8s|;2w9r|;2wa2|3;2wb8|;2wbh|1;2wcv|;2wd8|;2wdr|;2wdx|3;2we3|;2weg|;2weu|;2wf1|;2wfo|;2wfz|2;2wg7|2;2wgf|;2wgj|;2wh0|;2whg|2;2wj3|;2wjf|;2wjh|;2wjp|;2wjs|;2wjz|;2wlc|;2wlj|;2wnt|;2wqk|;2wr3|;2wsc|;2wtk|1;2wts|;2wv7|;2wvy|;2ww2|3;2wxi|;2wxm|;2wz9|1;2wzy|;2x08|;2x0c|;2x1h|1;2x2l|;2x32|;2x3n|;2x3q|;2x44|;2x4v|;2x5e|;2x5g|1;2x6y|;2x7b|;2x86|;2x9k|;2xa5|;2xdj|;2xdu|;2xee|;2xhm|;2xhv|;2xi1|;2xj2|;2xk1|;2xle|;2xmg|;2xmi|;2xmo|2;2xn7|;2xn9|;2xnj|;2xnq|2;2xoa|2;2xoe|;2xot|;2xow|;2xpi|;2xq2|2;2xqv|;2xrg|5;2xrn|1;2xt7|;2xtc|5;2xtv|;2xtz|;2xuh|3;2xun|;2xv3|;2xv9|1;2xvc|4;2xwg|;2xwo|2;2xwt|;2xx5|2;2xxc|;2xxh|;2xxu|;2xy6|;2xy9|3;2xyv|;2xyz|;2xz7|2;2xzy|4;2y0u|1;2y1d|;2y1i|3;2y2i|;2y2r|2;2y34|2;2y39|;2y3g|;2y3m|;2y3r|;2y4b|;2y4k|;2y54|;2y5m|;2y64|;2y68|;2y6b|;2y6g|;2y6u|;2y8r|;2y9f|;2yb1|;2yb8|;2ybp|;2ybv|;2ycj|;2yis|;2ym9|1;2yp6|;2yr4|;2ysi|;2ysl|;2yss|;2yx2|;2yxf|;2yxq|;2yz4|;2z06|;2z0a|;2z0q|;2z0x|;2z1n|;2z21|;2z30|;2z37|;2z3r|;2z3x|;2z61|;2z6s|;2z6w|;2z7s|;2z85|;2z9r|;2z9x|;2zca|;2zdq|;2zdt|;2zfs|;2zid|;2zih|;2zjy|;2zkq|;2zlz|;2zng|;2zoq|;2zq3|;2zqr|;2zqy|;2zs1|;2zsx|;2zsz|;2zuw|;2zy4|;302p|;302t|;3071|;307k|;307r|;308q|;30bp|;30c1|;30cr|;30cx|;30ds|;30e4|;30e9|;30eh|;30ek|;30fh|;30gj|;30gr|;30hc|;30ic|;30jx|;30kv|;30la|;30nv|1;30ob|;30q0|;30qi|;30ra|;30rc|;30tw|2;30uq|;30us|;30uz|;30v3|;30ve|;30xh|;30xt|;30ye|;30z8|1;30zx|;311f|;313z|1;314h|;3165|;316p|;3187|;319i|;31a1|;31an|;31bb|;31bf|;31c0|;31cj|;31ie|;31lb|;31lh|;31ly|;31m0|;31n2|;31nm|;31of|;31oj|;31pm|;31sa|;31se|;31uu|1;31vc|;31vw|;31w1|;31w5|;31wi|;31xk|;31y3|;31y9|;31yh|;31yq|;31yv|;31z6|;31za|;31zd|;3213|1;321e|;322s|;3230|;323r|;324t|;3251|;325c|;325f|1;325z|;327i|;328d|;329i|;329u|;32bc|;32bv|;32cz|;32en|;32ic|;32ks|;32lf|;32nn|;32o4|;32ob|;32p2|;32pp|1;32q6|;32rb|;32rg|;32sa|;32tf|;32v1|;32wt|;32wy|;32xw|1;32yb|;32yw|1;32zu|;3307|2;330v|;331h|;331r|;331t|3;332u|;3332|;3336|;3341|;3349|1;3357|2;336a|;336o|1;337k|;337u|;338f|;33ck|;33d8|;33dq|;33dy|;33ec|1;33eh|1;33em|;33eo|;33gf|;33gw|;33hr|;33hu|;33l1|;33mh|;33n4|;33o1|;33oa|;33on|;33px|;33q1|;33q4|;33qz|;33rh|2;33sj|;33sw|;33tj|;33tm|;33uk|;33uo|;33vd|;33vj|;33w7|;33wu|;33xa|;33xi|;33xp|;33y2|;33z3|;33zi|;3403|;340m|;340w|;3419|;341b|;341r|;342u|;343l|;344i|;3458|;345e|;345x|2;348q|;34jm|;34pz|;34rf|;34ry|;34sa|;34t6|;34uy|;352b|;353t|2;354l|;354n|;3553|2;356k|3;358g|;3597|;35a6|;35an|;35bq|7;35cz|;35dk|;35dy|;35e9|;35f0|5;35fd|;35hk|3;35ix|;35j3|;35jr|;35kn|5;35md|;35mp|;35my|;35nl|;35of|3;35ov|;35pw|;35pz|;35q8|;35qd|;35rf|5;35sh|;35tl|4;35uf|;35vp|;35vv|2;35w1|;35xl|;35y9|;35yk|;35z8|;35zj|;35zt|;360v|1;3610|;361a|;361h|2;361o|;361r|;361t|;362f|;362i|;363n|2;363w|;3645|;364t|;365e|;3664|;366z|;368b|;368m|;368p|;369i|2;369w|;36ab|;36ad|;36at|;36bj|;36bl|;36bt|1;36cu|;36d6|;36dp|;36e2|;36es|;36fc|;36g2|3;36h8|;36hi|;36ho|;36il|;36ip|;36jt|1;36k2|;36k8|;36kk|;36lx|1;36my|1;36nn|;36o7|1;36pl|;36po|;36q6|;36qb|;36qe|;36rp|;36sh|;36uw|;36x4|;36zc|;36zu|;371h|;371w|;372v|;374k|;375y|;376t|;3773|;379r|;37c0|;37de|;37dv|;37gi|;37jd|;37jk|3;37jv|;37jz|2;37kc|;37km|1;37kp|;37lb|;37lf|1;37lq|5;37mq|1;37n8|2;37nf|;37nj|;37nm|;37ns|7;37o4|;37ok|;37on|;37op|;37or|2;37p3|4;37ph|;37ps|;37q2|;37q6|1;37qb|;37qd|;37qk|1;37qu|3;37qz|;37ri|;37rm|1;37rp|;37s1|9;37su|;37sy|;37t1|;37t6|;37ta|3;37tp|;37tx|2;37u9|;37uf|3;37v0|;37v7|3;37vo|3;37w1|2;37wa|2;37wg|;37wn|;37wq|;37wx|;37xb|;37xe|;37xl|;37yn|;381a|;3851|;385l|;389q|1;38ax|;38bd|;38cm|;38cz|;38hk|;38iy|1;38l7|;38ls|;38o5|;38o7|;38r2|;38t8|;38ua|;38ue|;38uv|;38uy|;38vd|;38vs|;38w2|;38z0|;3902|;3925|;3963|;396w|;398d|1;39al|;39b7|;39ba|1;39cw|1;39e8|;39g9|;39hj|;39i0|;39ji|;39jl|;39jn|;39qx|;39r9|;39rj|1;39s6|;39t8|;39ta|;39ui|;39yp|;39yt|;39z3|;39zv|3;3a02|;3a05|1;3a0x|;3a10|;3a1b|;3a2h|;3a39|;3a3f|;3a3k|;3a4l|;3a5x|;3a6p|;3a83|;3a8l|;3aar|;3aba|;3abq|;3acd|;3acl|;3ad9|;3aeq|;3ah3|;3ahr|2;3al3|;3al9|;3alu|;3ao8|;3aou|;3aox|;3apv|;3arq|;3as6|;3auk|;3avg|;3az8|;3b11|;3b18|;3b1q|1;3b2v|;3b3d|;3b78|;3b7t|;3b8z|1;3b9i|;3bac|;3bag|;3bb5|;3bba|;3bc1|;3bd6|;3bdx|;3bf5|;3bfo|;3bgg|1;3bi6|;3bj4|;3bjk|;3bk3|;3bmh|;3bnd|;3bpq|;3brd|;3bsx|2;3bty|;3buk|;3bvb|1;3bx6|;3byj|;3c2p|1;3c4h|;3c4p|;3c5k|;3c6c|;3c77|;3c7r|;3c84|1;3caq|;3cbl|;3cd5|3;3cfh|1;3cfm|;3cgt|;3ck8|;3ckh|;3ckq|1;3cnk|;3cqd|;3cqz|1;3cr5|;3cu6|;3cvp|;3cvs|;3cw2|;3cwg|2;3cy2|;3cyx|;3czo|;3czs|1;3czx|;3d08|;3d3m|;3d6a|;3d7k|;3d7x|;3d8f|;3daq|;3dba|;3df3|;3df5|;3df9|;3dga|;3dgo|;3dh8|;3dhy|;3dj5|;3dll|;3dmb|1;3dn0|;3dp8|;3dqe|;3dr2|;3dri|;3ds8|;3dsa|;3dsj|;3dtz|;3dvy|;3dw1|;3dwm|;3dx5|;3dxt|;3e08|;3e0l|;3e2a|;3e2i|;3e3x|1;3e44|;3e4i|;3e4x|1;3e9x|;3ea2|;3eab|;3ead|;3ear|;3eaw|;3ec0|3;3ecb|;3ed1|;3ede|;3edy|1;3ee5|;3eer|;3ef4|;3egn|;3eht|;3eio|1;3eiu|;3eke|4;3elg|;3elz|1;3em5|;3em8|;3emb|;3emp|;3eoy|8;3eq9|;3er8|;3esg|7;3esu|;3eu4|;3eui|1;3euo|;3ev4|;3ev9|;3evb|;3evm|;3ewy|3;3ey6|;3eya|;3eyf|;3eys|;3eyw|;3eyz|;3ezd|;3f0w|7;3f3a|;3f5f|1;3f6n|;3f6p|;3f7i|;3f8e|1;3f9q|;3fbf|;3fbm|1;3fd4|;3fe5|2;3ff1|;3ff6|;3fg0|;3fg8|;3fgp|;3fgs|1;3fhi|1;3fj8|1;3fjp|;3fm5|;3fob|;3fqf|;3fr4|;3fr9|;3frf|;3fsi|;3fsm|;3fty|;3fwy|;3fyy|;3g1r|;3g2q|;3g40|;3g5g|;3g5i|;3gc4|;3gdf|;3gf4|;3gf8|;3gfx|1;3gg7|;3ggc|;3ghe|;3ghl|;3gid|2;3gk4|;3gnj|;3gol|1;3gox|;3gpq|;3gqs|1;3gss|;3gwo|;3gxc|;3gyl|;3gz6|;3gzs|;3h2c|;3h47|;3h4q|;3h5s|;3h7h|;3h8d|;3h8q|;3h8u|;3ha6|;3har|;3hax|;3hbt|;3hc4|;3hdp|1;3hf8|;3hfq|;3hfv|;3hg8|;3hh4|2;3hhk|;3hid|;3hm7|;3hmc|;3hn6|;3hpo|;3hrl|;3hs5|;3hv3|;3hw3|1;3hwm|;3hwz|;3hxg|;3hxr|;3hy0|;3hz1|;3hzw|;3i31|;3i33|;3i9a|;3id3|;3iex|;3if6|;3ifd|;3ify|;3ig3|1;3ih4|;3iir|;3ij4|;3ikd|1;3ilk|1;3ilw|;3ini|;3iof|;3iot|;3ipb|;3iq1|;3ir3|;3irg|;3itj|;3iu0|;3iu2|;3ivq|;3iws|;3ixn|;3iz1|;3izm|;3j0m|;3j14|;3j1r|;3j22|;3j39|;3j3h|;3j3x|;3j4a|;3j82|;3jag|;3jak|;3jar|;3jb6|;3jep|;3jgc|1;3jho|;3jl4|;3jlg|;3jls|;3jm3|;3jmt|;3jnf|;3jqi|1;3jqq|;3jr0|;3jrs|;3js6|;3jtb|;3jtf|;3k04|;3k17|;3k7h|;3k8j|;3k94|1;3k9i|;3k9w|;3ka0|;3ka4|1;3kam|;3kax|;3kbs|;3kbu|1;3kc8|;3kcc|;3kcg|;3kd8|;3kda|;3kdd|;3kdf|1;3kdj|1;3ke1|3;3ken|;3keu|;3kf9|;3kfd|;3kfm|;3kfq|;3kg4|7;3kgp|1;3kht|2;3kii|2;3kjk|;3kjq|;3kjv|1;3kjy|;3kke|5;3kkl|;3kkq|;3kl8|;3klo|;3klv|;3km9|1;3kmj|2;3kmn|;3kna|;3kng|;3kni|;3knk|;3ko3|3;3koc|;3kpb|;3kpl|;3kpo|1;3kqh|;3kqq|;3kqt|;3kr8|;3krb|;3krd|1;3krr|5;3ks5|;3ksf|;3ksj|;3ksp|;3kt8|1;3ktf|;3kti|;3ktn|;3kts|;3ku1|;3ku3|;3ky2|;3ky5|;3kya|;3l10|;3l3t|;3l4p|;3l73|;3l86|;3l89|;3l9h|1;3lav|;3lbg|;3lbm|1;3lcp|;3ld3|;3lj9|;3lo9|;3loo|;3lor|;3loz|;3lpr|2;3lq8|;3lr8|1;3lrg|1;3lsd|;3lsg|;3lto|;3lu5|;3luj|;3lum|;3lv4|;3lwc|;3lwo|;3lxx|;3lyj|;3me5|;3me8|;3mer|;3mf3|;3mfc|;3mj4|;3mjd|1;3mjp|;3mjr|;3mou|;3mpc|;3mpk|;3mqf|;3mqx|;3mr8|;3mv3|;3mzk|;3n02|;3n4k|;3n68|;3n87|;3nac|;3nbl|;3nca|;3nch|;3ncq|;3ncz|;3nd1|;3ne7|;3net|;3nev|2;3nfh|;3nfu|;3nh9|;3nib|;3nih|;3nl4|;3nm5|;3nr9|;3nri|;3nx1|;3o1f|;3o31|;3o72|;3o7u|;3o8s|;3o9k|;3o9n|;3oc6|;3ocm|;3odp|;3ofc|;3oh8|;3ohc|;3ohv|;3ojc|;3okj|;3okw|;3oon|;3opq|;3or8|;3ouf|;3ovt|;3owx|;3ox9|;3oxf|;3oxk|;3oxq|;3oxz|;3oyr|;3oz7|1;3p00|;3p1u|1;3p2j|;3p2s|1;3p3z|;3p4l|;3p5s|;3p6b|;3p8z|;3p9b|;3p9u|;3p9w|;3p9y|;3pa2|;3pa5|;3pb3|;3pbz|;3pe9|;3pgp|;3pil|;3pkk|;3pln|;3pvq|;3pvv|;3pxd|;3pyq|;3pze|;3pzv|;3q21|;3ri7|;3z9g|;465h|;4663|;4668|;467s|;468k|;4692|;46a5|;46aj|;46fo|;46gi|;46gs|;46hg|;4an1|1;4ay4|;")) -r.push(new A.a0("Noto Sans Tagalog","notosanstagalog/v18/J7aFnoNzCnFcV9ZI-sUYuvote1R0wwEAA8jHexnL.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;4jk|l;4kf|;4l1|1;60w|5;61q|;642|1;6bv|2;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;")) -r.push(new A.a0("Noto Sans Tagbanwa","notosanstagbanwa/v18/Y4GWYbB8VTEp4t3MKJSMmQdIKjRtt_nZRjQEaYpGoQ.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;4l1|1;4m8|c;4mm|2;4mq|1;60w|5;61q|;642|1;6bv|2;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;")) -r.push(new A.a0("Noto Sans Tai Le","notosanstaile/v17/vEFK2-VODB8RrNDvZSUmVxEATwR58tK1W77HtMo.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;37k|9;500|t;50w|4;60w|5;61q|;642|1;6bv|2;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;9hd|1;9hk|3;")) -r.push(new A.a0("Noto Sans Tai Tham","notosanstaitham/v19/kJEbBv0U4hgtwxDUw2x9q7tbjLIfbPGHBoaVSAZ3MdLJBCUbPgquyaRGKMw.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;55s|1q;57k|s;58f|a;58w|9;59c|d;60w|5;61q|;642|1;6bv|2;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;6qh|;")) -r.push(new A.a0("Noto Sans Tai Viet","notosanstaiviet/v16/8QIUdj3HhN_lv4jf9vsE-9GMOLsaSPZr644fWsRO9w.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;60w|5;61q|;642|1;6bv|2;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;x3f|1;xog|1u;xqz|4;")) -r.push(new A.a0("Noto Sans Takri","notosanstakri/v21/TuGJUVpzXI5FBtUq5a8bnKIOdTwQNO_W3khJXg.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;1us|1;60w|5;61q|;642|1;6bw|1;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;x80|9;1j0g|1k;1j28|9;")) -r.push(new A.a0("Noto Sans Tamil","notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7vGo70RqKDt_EvT.ttf","w|2m;4g|3;4l|;4n|4;4t|3;4y|2;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;1u9|1;1us|1;29u|1;29x|5;2a6|2;2aa|3;2ah|1;2ak|;2am|1;2ar|1;2aw|2;2b2|b;2bi|4;2bq|2;2bu|3;2c0|;2c7|;2cm|k;5p6|;60w|5;61q|;642|1;6bv|2;6c0|;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6es|;6f6|2;6gc|;6gp|;6jm|;6qa|;7gs|;xdf|;1ibl|;1ibn|;1id7|1;")) -r.push(new A.a0("Noto Sans Tamil Supplement","notosanstamilsupplement/v19/DdTz78kEtnooLS5rXF1DaruiCd_bFp_Ph4sGcn7ax_vsAeMkeq1x.ttf","1ku8|1d;1kvz|;")) -r.push(new A.a0("Noto Sans Telugu","notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntezbqQUbf-3v37w.ttf","w|2m;4g|3;4l|;4n|4;4t|3;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;1u9|1;1us|1;2dc|c;2dq|2;2du|m;2ei|f;2f1|7;2fa|2;2fe|3;2fp|1;2fs|2;2g0|3;2g6|9;2gn|8;5p6|;5pu|;60w|5;61q|;642|1;6bv|2;6c0|;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6gp|;6jm|;6qa|;7gs|;")) -r.push(new A.a0("Noto Sans Thaana","notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4XrbhLhnu4-tbNu.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;170|;17f|;17j|;19c|c;1hc|1d;60w|5;61q|;642|1;6bv|4;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;1e5u|;1e65|;")) -r.push(new A.a0("Noto Sans Thai","notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU5RtpzF-QRvzzXg.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jg|;jq|1;jt|;k7|6;lc|4;li|2;lm|2;lu|;me|2;mp|;2rl|1l;2tb|s;60w|5;61q|;642|1;6bv|2;6c0|;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;")) -r.push(new A.a0("Noto Sans Tifinagh","notosanstifinagh/v17/I_uzMoCduATTei9eI8dawkHIwvmhCvbn6rnEcXfs4Q.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|6;lu|;mb|;me|2;mp|;60w|5;61q|;642|1;6bw|1;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6cu|;6d5|1;6gc|;6jm|;6qa|;7gs|;8xc|1j;8z3|1;8zj|;")) -r.push(new A.a0("Noto Sans Tirhuta","notosanstirhuta/v15/t5t6IQYRNJ6TWjahPR6X-M-apUyby7uGUBsTrn5P.ttf","w|;4g|;1u9|1;1us|1;1ys|3;5pu|;6bw|1;7gs|;x80|9;1im8|1z;1iog|9;")) -r.push(new A.a0("Noto Sans Ugaritic","notosansugaritic/v15/3qTwoiqhnSyU8TNFIdhZVCwbjCpkAXXkMhoIkiazfg.ttf","w|;4g|;1f9c|t;1fa7|;")) -r.push(new A.a0("Noto Sans Vai","notosansvai/v17/NaPecZTSBuhTirw6IaFn_UrURMTsDIRSfr0.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;60w|5;61q|;642|1;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;wlc|8b;")) -r.push(new A.a0("Noto Sans Wancho","notosanswancho/v17/zrf-0GXXyfn6Fs0lH9P4cUubP0GBqAPopiRfKp8.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;60w|5;61q|;642|1;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;2ncw|1l;2nen|;")) -r.push(new A.a0("Noto Sans Warang Citi","notosanswarangciti/v17/EYqtmb9SzL1YtsZSScyKDXIeOv3w-zgsNvKRpeVCCXzdgA.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;60w|5;61q|;642|1;6bw|1;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;1jfk|2a;1ji7|;")) -r.push(new A.a0("Noto Sans Yi","notosansyi/v19/sJoD3LFXjsSdcnzn071rO3apxVDJNVgSNg.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ct|1;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;60w|5;61q|;642|1;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;9hd|1;9hk|9;9hw|7;9ob|;vls|wc;wi8|1i;1edd|;1edo|;1ee2|1;1ee7|;1eg1|4;")) -r.push(new A.a0("Noto Sans Zanabazar Square","notosanszanabazarsquare/v16/Cn-jJsuGWQxOjaGwMQ6fOicyxLBEMRfDtkzl4uagQtJxOCEgN0Gc.ttf","w|2m;4g|3;4l|;4n|4;4u|2;50|;52|2;56|1;5b|20;7e|9;7q|5;7y|5;86|1;8a|1;8e|5;8m|1;8p|5;8x|7;96|3;9c|b;9q|3;9w|1;a2|k;ew|3;fr|;jq|1;jt|;k8|5;lc|4;li|2;lm|2;lu|;me|2;60w|5;61q|;642|1;6c3|1;6c8|2;6cc|2;6ci|;6cm|;6d5|1;6gc|;6jm|;6qa|;7gs|;1jpc|1z;")) -q=this.b=A.aYi(new A.am1(this),r)}return q}, -aht(){var s,r,q,p,o,n=this,m=n.r -if(m!=null){m.delete() -n.r=null -m=n.w -if(m!=null)m.delete() -n.w=null}n.r=$.bU.bR().TypefaceFontProvider.Make() -m=$.bU.bR().FontCollection.Make() -n.w=m -m.enableFontFallback() -n.w.setDefaultFontManager(n.r) -m=n.f -m.a0(0) -for(s=n.d,r=s.length,q=0;q"),s=new A.bN(s,r),s=new A.bz(s,s.gp(s),r.i("bz")),r=r.i("am.E"),q=B.ey;s.u();){p=s.d -if(p==null)p=r.a(p) -switch(p.a.a){case 0:p=p.b -p.toString -o=p -break -case 1:p=p.c -o=new A.y(p.a,p.b,p.c,p.d) -break -case 2:p=p.d.a -p===$&&A.c() -p=p.a.getBounds() -o=new A.y(p[0],p[1],p[2],p[3]) -break -default:continue $label0$1}q=q.ed(o)}return q}} -A.ahc.prototype={} -A.up.prototype={ -lO(a,b){this.b=this.oZ(a,b)}, -oZ(a,b){var s,r,q,p,o,n -for(s=this.c,r=s.length,q=B.u,p=0;p=q.c||q.b>=q.d)q=o.b -else{n=o.b -if(!(n.a>=n.c||n.b>=n.d))q=q.jK(n)}}return q}, -lN(a){var s,r,q,p,o -for(s=this.c,r=s.length,q=0;q=o.c||o.b>=o.d))p.hJ(a)}}} -A.RN.prototype={ -hJ(a){this.lN(a)}} -A.Lf.prototype={ -lO(a,b){this.b=this.oZ(a,b).jK(a.ganX())}, -hJ(a){var s,r,q=this,p=A.LR() -p.smu(q.r) -s=a.a -s.E1(q.b,q.f,p) -r=p.b -r===$&&A.c() -r.n() -q.lN(a) -s.cl(0)}, -$ia4M:1} -A.LX.prototype={ -lO(a,b){var s,r,q=null,p=this.f,o=a.c.a -o.push(new A.jD(B.LC,q,q,p,q,q)) -s=this.oZ(a,b) -p=p.a -p===$&&A.c() -r=A.b5N(p.a.getBounds()) -if(s.wJ(r))this.b=s.ed(r) -o.pop()}, -hJ(a){var s,r=this,q=a.a -q.cQ(0) -s=r.r -q.amL(0,r.f,s!==B.S) -s=s===B.d4 -if(s)q.jj(r.b,null) -r.lN(a) -if(s)q.cl(0) -q.cl(0)}, -$ia68:1} -A.M0.prototype={ -lO(a,b){var s,r=null,q=this.f,p=a.c.a -p.push(new A.jD(B.LA,q,r,r,r,r)) -s=this.oZ(a,b) -if(s.wJ(q))this.b=s.ed(q) -p.pop()}, -hJ(a){var s,r,q=a.a -q.cQ(0) -s=this.f -r=this.r -q.amP(s,B.d3,r!==B.S) -r=r===B.d4 -if(r)q.jj(s,null) -this.lN(a) -if(r)q.cl(0) -q.cl(0)}, -$ia6b:1} -A.LZ.prototype={ -lO(a,b){var s,r,q,p,o=null,n=this.f,m=a.c.a -m.push(new A.jD(B.LB,o,n,o,o,o)) -s=this.oZ(a,b) -r=n.a -q=n.b -p=n.c -n=n.d -if(s.wJ(new A.y(r,q,p,n)))this.b=s.ed(new A.y(r,q,p,n)) -m.pop()}, -hJ(a){var s,r=this,q=a.a -q.cQ(0) -s=r.r -q.amN(r.f,s!==B.S) -s=s===B.d4 -if(s)q.jj(r.b,null) -r.lN(a) -if(s)q.cl(0) -q.cl(0)}, -$ia6a:1} -A.Q3.prototype={ -lO(a,b){var s,r,q,p,o=this,n=null,m=new A.cm(new Float32Array(16)) -m.aS(b) -s=o.r -r=s.a -s=s.b -m.aK(0,r,s) -q=A.en() -q.nx(r,s,0) -p=a.c.a -p.push(A.aJx(q)) -p.push(new A.jD(B.LE,n,n,n,n,o.f)) -o.a1V(a,m) -p.pop() -p.pop() -o.b=o.b.aK(0,r,s)}, -hJ(a){var s,r,q,p=this,o=A.LR() -o.saf(0,A.ao(p.f,0,0,0)) -s=a.a -s.cQ(0) -r=p.r -q=r.a -r=r.b -s.aK(0,q,r) -s.jj(p.b.cz(new A.k(-q,-r)),o) -r=o.b -r===$&&A.c() -r.n() -p.lN(a) -s.cl(0) -s.cl(0)}, -$iah2:1} -A.Fg.prototype={ -lO(a,b){var s=this.f,r=b.CE(s),q=a.c.a -q.push(A.aJx(s)) -this.b=A.aBZ(s,this.oZ(a,r)) -q.pop()}, -hJ(a){var s=a.a -s.cQ(0) -s.a7(0,this.f.a) -this.lN(a) -s.cl(0)}, -$iTQ:1} -A.Q1.prototype={$iah1:1} -A.Sn.prototype={ -hJ(a){var s,r,q,p,o,n=this,m=a.a -m.jj(n.b,null) -n.lN(a) -s=A.LR() -s.sEe(n.f) -s.smu(n.w) -s.smR(n.x) -r=a.b.a -B.d.ac(r.save()) -q=n.r -p=q.a -o=q.b -r.translate(p,o) -r.drawRect(A.fV(new A.y(0,0,0+(q.c-p),0+(q.d-o))),s.a) -o=s.b -o===$&&A.c() -o.n() -r.restore() -m.cl(0)}, -$ialw:1} -A.QC.prototype={ -lO(a,b){this.b=this.c.b.cz(this.d)}, -hJ(a){var s,r=a.b.a -B.d.ac(r.save()) -s=this.d -r.translate(s.a,s.b) -s=this.c.a -s===$&&A.c() -s=s.a -s.toString -r.drawPicture(s) -r.restore()}} -A.OT.prototype={ -n(){}} -A.aeD.prototype={ -UV(a,b,c,d){var s,r=this.b -r===$&&A.c() -s=new A.QC(t.Bn.a(b),a,B.u) -s.a=r -r.c.push(s)}, -UY(a){var s=this.b -s===$&&A.c() -t.L6.a(a) -a.a=s -s.c.push(a)}, -bq(){return new A.OT(new A.aeE(this.a,$.cX().giq()))}, -ex(){var s=this.b -s===$&&A.c() -if(s===this.a)return -s=s.a -s.toString -this.b=s}, -Zf(a,b,c){return this.na(new A.Lf(a,b,A.b([],t.k5),B.u))}, -Zg(a,b,c){return this.na(new A.LX(t.E_.a(a),b,A.b([],t.k5),B.u))}, -Zh(a,b,c){return this.na(new A.LZ(a,b,A.b([],t.k5),B.u))}, -Zi(a,b,c){return this.na(new A.M0(a,b,A.b([],t.k5),B.u))}, -Lq(a,b,c){var s=A.en() -s.nx(a,b,0) -return this.na(new A.Q1(s,A.b([],t.k5),B.u))}, -Zj(a,b,c){return this.na(new A.Q3(a,b,A.b([],t.k5),B.u))}, -Zl(a,b,c,d){return this.na(new A.Sn(a,b,c,B.fC,A.b([],t.k5),B.u))}, -wT(a,b){return this.na(new A.Fg(new A.cm(A.a3p(a)),A.b([],t.k5),B.u))}, -atr(a){var s=this.b -s===$&&A.c() -a.a=s -s.c.push(a) -return this.b=a}, -na(a){return this.atr(a,t.vn)}} -A.aeE.prototype={} -A.aaG.prototype={ -att(a,b){A.aBX("preroll_frame",new A.aaH(this,a,!0)) -A.aBX("apply_frame",new A.aaI(this,a,!0)) -return!0}} -A.aaH.prototype={ -$0(){var s=this.b.a -s.b=s.oZ(new A.ai2(new A.C6(A.b([],t.YE))),A.en())}, -$S:0} -A.aaI.prototype={ -$0(){var s=this.a,r=A.b([],t.iW),q=new A.LQ(r),p=s.a -r.push(p) -s.c.a05().N(0,q.galC()) -q.amK(0,B.C) -s=this.b.a -r=s.b -if(!r.ga8(r))s.lN(new A.ahc(q,p))}, -$S:0} -A.a6p.prototype={} -A.a5Z.prototype={} -A.LQ.prototype={ -alD(a){this.a.push(a)}, -cQ(a){var s,r,q -for(s=this.a,r=0,q=0;q0))p.ax=null -else{r=a.a -q=new A.a5Z(r,s) -s=$.bU.bR().MaskFilter.MakeBlur($.aRd()[r.a],s,!0) -s.toString -r=new A.fn(o,t.gA) -r.jp(q,s,o,t.e) -q.c!==$&&A.cQ() -q.c=r -p.ax=q}s=p.ax -if(s==null)s=null -else{s=s.c -s===$&&A.c() -s=s.a -s.toString}p.a.setMaskFilter(s)}, -smR(a){var s,r=this -if(r.ay===a)return -r.ay=a -s=r.as -s=s==null?null:s.Mv(a) -r.a.setShader(s)}, -sVC(a){var s,r=this -if(r.ch===a)return -r.ch=a -r.Q=null -s=A.b5e(a) -s.toString -s=r.CW=A.afh(s) -if(r.z){r.Q=s -s=r.CW=A.afh(new A.ua($.aCb(),s))}s=s.b -s===$&&A.c() -s=s.a -s.toString -r.a.setColorFilter(s)}, -$ivL:1} -A.zR.prototype={ -gr1(){return this.b}, -sr1(a){var s -if(this.b===a)return -this.b=a -s=this.a -s===$&&A.c() -s=s.a -s.toString -s.setFillType($.a3C()[a.a])}, -nX(a){var s=this.a -s===$&&A.c() -s=s.a -s.toString -s.addOval(A.fV(a),!1,1)}, -Ir(a,b,c){var s,r,q=A.en() -q.nx(c.a,c.b,0) -s=A.aFS(q.a) -t.E_.a(b) -q=this.a -q===$&&A.c() -q=q.a -q.toString -r=b.a -r===$&&A.c() -r=r.a -r.toString -A.bq(q,"addPath",[r,s[0],s[1],s[2],s[3],s[4],s[5],s[6],s[7],s[8],!1])}, -eG(a){var s=this.a -s===$&&A.c() -s=s.a -s.toString -s.addRRect(A.Kp(a),!1)}, -jv(a){var s=this.a -s===$&&A.c() -s=s.a -s.toString -s.addRect(A.fV(a))}, -qj(a,b,c,d,e){var s=this.a -s===$&&A.c() -s=s.a -s.toString -s.arcToOval(A.fV(b),c*57.29577951308232,d*57.29577951308232,e)}, -Va(a,b){var s=this.a -s===$&&A.c() -s=s.a -s.toString -A.bq(s,"arcToRotated",[b.a,b.b,0,!0,!1,a.a,a.b])}, -aL(a){var s=this.a -s===$&&A.c() -s.a.close()}, -t(a,b){var s=this.a -s===$&&A.c() -return s.a.contains(b.a,b.b)}, -hm(a){var s=this.a -s===$&&A.c() -s=s.a.getBounds() -return new A.y(s[0],s[1],s[2],s[3])}, -cc(a,b,c){var s=this.a -s===$&&A.c() -s.a.lineTo(b,c)}, -eh(a,b,c){var s=this.a -s===$&&A.c() -s.a.moveTo(b,c)}, -Zo(a,b,c,d){var s=this.a -s===$&&A.c() -s.a.quadTo(a,b,c,d)}, -fc(a){var s -this.b=B.bK -s=this.a -s===$&&A.c() -s.a.reset()}, -cz(a){var s,r=this.a -r===$&&A.c() -s=r.a.copy() -A.bq(s,"transform",[1,0,a.a,0,1,a.b,0,0,1]) -r=this.b -s.setFillType($.a3C()[r.a]) -return A.aCz(s,r)}, -$ivO:1} -A.LU.prototype={ -n(){this.c=!0 -var s=this.a -s===$&&A.c() -s.n()}, -auq(a,b){var s,r,q,p,o=A.le(),n=o.c -if(n===$){s=A.bo(self.document,"flt-canvas-container") -o.c!==$&&A.aW() -n=o.c=new A.ld(s)}o=n.Jc(new A.Q(a,b)).a -s=o.getCanvas() -s.clear(A.aF9($.aCd(),B.C)) -r=this.a -r===$&&A.c() -r=r.a -r.toString -s.drawPicture(r) -q=o.makeImageSnapshot() -o=$.bU.bR().AlphaType.Premul -r=$.bU.bR().ColorType.RGBA_8888 -p=A.b02(o,self.window.flutterCanvasKit.ColorSpace.SRGB,r,b,a) -r=q.readPixels(0,0,p) -r=$.bU.bR().MakeImage(p,r,4*a) -if(r==null)throw A.d(A.a4("Unable to convert image pixels into SkImage.")) -return A.a5Y(r,null)}} -A.ny.prototype={ -uV(a){var s -this.a=a -s=new globalThis.window.flutterCanvasKit.PictureRecorder() -this.b=s -return this.c=new A.i5(s.beginRecording(A.fV(a)))}, -vB(){var s,r,q,p=this.b -if(p==null)throw A.d(A.a4("PictureRecorder is not recording")) -s=p.finishRecordingAsPicture() -p.delete() -this.b=null -r=new A.LU(this.a) -q=new A.fn("Picture",t.gA) -q.jp(r,s,"Picture",t.e) -r.a!==$&&A.cQ() -r.a=q -return r}, -gYi(){return this.b!=null}} -A.aig.prototype={ -aor(a){var s,r,q,p -try{p=a.b -if(p.ga8(p))return -s=A.le().a.UO(p) -$.aC4().x=p -r=new A.i5(s.a.a.getCanvas()) -q=new A.aaG(r,null,$.aC4()) -q.att(a,!0) -p=A.le().a -if(!p.ax)$.e6.bR().c.prepend(p.x) -p.ax=!0 -J.aVE(s) -$.aC4().a1A(0)}finally{this.ai5()}}, -ai5(){var s,r -for(s=this.b,r=0;!1;++r)s[r].$0() -for(s=$.ji,r=0;rq.a||a.b>q.b -else r=!1 -if(r){p=a.a6(0,1.4) -r=j.a -if(r!=null)r.n() -j.a=null -r=j.y -r.toString -o=p.a -A.uB(r,o) -r=j.y -r.toString -n=p.b -A.uA(r,n) -j.ay=p -j.z=B.d.e9(o) -j.Q=B.d.e9(n) -j.A8()}}if(j.b||j.ay==null){r=j.a -if(r!=null)r.n() -j.a=null -j.ax=!1 -r=j.f -if(r!=null)r.releaseResourcesAndAbandonContext() -r=j.f -if(r!=null)r.delete() -j.f=null -r=j.y -if(r!=null){A.eZ(r,i,j.e,!1) -r=j.y -r.toString -A.eZ(r,h,j.d,!1) -j.y.remove() -j.d=j.e=null}j.z=B.d.e9(a.a) -r=B.d.e9(a.b) -j.Q=r -m=j.y=A.Kc(r,j.z) -r=A.ax("true") -if(r==null)r=t.K.a(r) -m.setAttribute("aria-hidden",r) -A.x(m.style,"position","absolute") -j.A8() -r=t.e -j.e=r.a(A.bd(j.ga8m())) -o=r.a(A.bd(j.ga8k())) -j.d=o -A.cI(m,h,o,!1) -A.cI(m,i,j.e,!1) -j.c=j.b=!1 -o=$.iA -if((o==null?$.iA=A.yH():o)!==-1){o=$.cP -o=!(o==null?$.cP=A.h3(self.window.flutterConfiguration):o).gVt()}else o=!1 -if(o){o=$.bU.bR() -n=$.iA -if(n==null)n=$.iA=A.yH() -l=j.r=B.d.ac(o.GetWebGLContext(m,r.a({antialias:0,majorVersion:n}))) -if(l!==0){j.f=$.bU.bR().MakeGrContext(l) -if(j.as===-1||j.at===-1){r=j.y -r.toString -o=$.iA -k=A.aXq(r,o==null?$.iA=A.yH():o) -j.as=B.d.ac(k.getParameter(B.d.ac(k.SAMPLES))) -j.at=B.d.ac(k.getParameter(B.d.ac(k.STENCIL_BITS)))}j.Tp()}}j.x.append(m) -j.ay=a}else{r=$.cX().x -if(r==null){r=self.window.devicePixelRatio -if(r===0)r=1}if(r!==j.CW)j.A8()}r=$.cX().x -if(r==null){r=self.window.devicePixelRatio -if(r===0)r=1}j.CW=r -j.ch=a -j.TR() -r=j.a -if(r!=null)r.n() -return j.a=j.a8B(a)}, -A8(){var s,r,q=this.z,p=$.cX(),o=p.x -if(o==null){o=self.window.devicePixelRatio -if(o===0)o=1}s=this.Q -p=p.x -if(p==null){p=self.window.devicePixelRatio -if(p===0)p=1}r=this.y.style -A.x(r,"width",A.j(q/o)+"px") -A.x(r,"height",A.j(s/p)+"px")}, -TR(){var s=B.d.e9(this.ch.b),r=this.Q,q=$.cX().x -if(q==null){q=self.window.devicePixelRatio -if(q===0)q=1}A.x(this.y.style,"transform","translate(0, -"+A.j((r-s)/q)+"px)")}, -a8n(a){this.c=!1 -$.bi().Kw() -a.stopPropagation() -a.preventDefault()}, -a8l(a){var s=this,r=A.le() -s.c=!0 -if(r.arl(s)){s.b=!0 -a.preventDefault()}else s.n()}, -a8B(a){var s,r=this,q=$.iA -if((q==null?$.iA=A.yH():q)===-1){q=r.y -q.toString -return r.za(q,"WebGL support not detected")}else{q=$.cP -if((q==null?$.cP=A.h3(self.window.flutterConfiguration):q).gVt()){q=r.y -q.toString -return r.za(q,"CPU rendering forced by application")}else if(r.r===0){q=r.y -q.toString -return r.za(q,"Failed to initialize WebGL context")}else{q=$.bU.bR() -s=r.f -s.toString -s=A.bq(q,"MakeOnScreenGLSurface",[s,B.d.LI(a.a),B.d.LI(a.b),self.window.flutterCanvasKit.ColorSpace.SRGB,r.as,r.at]) -if(s==null){q=r.y -q.toString -return r.za(q,"Failed to initialize WebGL surface")}return new A.LV(s,r.r)}}}, -za(a,b){if(!$.aKZ){$.eh().$1("WARNING: Falling back to CPU-only rendering. "+b+".") -$.aKZ=!0}return new A.LV($.bU.bR().MakeSWCanvasSurface(a),null)}, -n(){var s=this,r=s.y -if(r!=null)A.eZ(r,"webglcontextlost",s.d,!1) -r=s.y -if(r!=null)A.eZ(r,"webglcontextrestored",s.e,!1) -s.e=s.d=null -s.x.remove() -r=s.a -if(r!=null)r.n()}} -A.anE.prototype={ -$2(a,b){this.a.a.a.flush() -return!0}, -$S:447} -A.LV.prototype={ -n(){if(this.c)return -this.a.dispose() -this.c=!0}} -A.T2.prototype={ -a0k(){var s,r=this,q=r.e,p=q.length -if(p!==0){s=q.pop() -r.d.push(s) -return s}else{q=r.d -if(q.length+p+1>>0 -if((s|2)===s)r=(r|B.d.ac($.bU.bR().OverlineDecoration))>>>0 -if((s|4)===s)r=(r|B.d.ac($.bU.bR().LineThroughDecoration))>>>0 -b3.decoration=r}if(a1!=null)b3.decorationThickness=a1 -if(a!=null){s=A.yO(a) -b3.decorationColor=s}if(a0!=null)b3.decorationStyle=$.aRo()[a0.a] -if(a4!=null)b3.textBaseline=$.aGv()[a4.a] -if(a5!=null)A.aKN(b3,a5) -if(a6!=null)b3.letterSpacing=a6 -if(a7!=null)b3.wordSpacing=a7 -if(a8!=null)A.aKP(b3,a8) -switch(d.ax){case null:case void 0:break -case B.zx:A.aKO(b3,!0) -break -case B.kN:A.aKO(b3,!1) -break}q=d.dx -if(q===$){p=A.aF2(d.x,d.y) -d.dx!==$&&A.aW() -d.dx=p -q=p}A.aKM(b3,q) -if(a2!=null||a3!=null)b3.fontStyle=A.aFR(a2,a3) -if(b0!=null){s=A.yO(new A.L(b0.y)) -b3.foregroundColor=s}if(b1!=null){o=A.b([],t.J) -for(s=b1.length,n=0;n")),r=r.i("a_.E");p.u();){q=p.d -if(q==null)q=r.a(q) -if(s>=q.startIndex&&s<=q.endIndex)return new A.cb(B.d.ac(q.startIndex),B.d.ac(q.endIndex))}return B.b7}, -qs(){var s,r,q,p=this.a -p===$&&A.c() -p=J.fW(p.a.getLineMetrics(),t.e) -s=A.b([],t.ER) -for(r=p.$ti,p=new A.bz(p,p.gp(p),r.i("bz")),r=r.i("a_.E");p.u();){q=p.d -s.push(new A.LP(q==null?r.a(q):q))}return s}, -n(){var s=this.a -s===$&&A.c() -s.n() -this.as=!0}} -A.LP.prototype={ -gVf(){return this.a.ascent}, -gJn(){return this.a.descent}, -ga_j(){return this.a.ascent}, -gXD(){return this.a.isHardBreak}, -gko(){return this.a.baseline}, -gce(a){var s=this.a -return B.d.bE(s.ascent+s.descent)}, -gj6(a){return this.a.left}, -gdg(a){return this.a.width}, -gKJ(a){return B.d.ac(this.a.lineNumber)}, -$iof:1} -A.a6_.prototype={ -uK(a,b,c,d,e,f){var s;++this.c -this.d.push(f) -s=e==null?b:e -A.bq(this.a,"addPlaceholder",[a*f,b*f,$.aRi()[c.a],$.aGv()[0],s*f])}, -UX(a,b,c,d,e){return this.uK(a,b,c,d,e,1)}, -UW(a,b,c,d){return this.uK(a,b,c,null,null,d)}, -uN(a){var s=A.b([],t.s),r=B.b.gL(this.e),q=r.x -if(q!=null)s.push(q) -q=r.y -if(q!=null)B.b.K(s,q) -$.ad().gvU().gK5().aoB(a,s) -this.a.addText(a)}, -bq(){var s,r,q,p,o,n,m,l,k,j="Paragraph" -if($.aQE()){s=this.a -r=B.A.ea(0,new A.eU(s.getText())) -q=A.b_L($.aUb(),r) -p=q==null -o=p?null:q.h(0,r) -if(o!=null)n=o -else{m=A.aOb(r,B.nI) -l=A.aOb(r,B.nH) -n=new A.ZH(A.b5K(r),l,m)}if(!p){p=q.c -k=p.h(0,r) -if(k==null)q.Oc(0,r,n) -else{m=k.d -if(!J.e(m.b,n)){k.ez(0) -q.Oc(0,r,n)}else{k.ez(0) -l=q.b -l.As(m) -l=l.a.b.yn() -l.toString -p.m(0,r,l)}}}s.setWordsUtf16(n.c) -s.setGraphemeBreaksUtf16(n.b) -s.setLineBreaksUtf16(n.a)}s=this.a -n=s.build() -s.delete() -s=new A.LS(this.b) -r=new A.fn(j,t.gA) -r.jp(s,n,j,t.e) -s.a!==$&&A.cQ() -s.a=r -return s}, -gZ3(){return this.c}, -ex(){var s=this.e -if(s.length<=1)return -s.pop() -this.a.pop()}, -rD(a6){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4=this.e,a5=B.b.gL(a4) -t.BQ.a(a6) -s=a6.a -if(s==null)s=a5.a -r=a6.b -if(r==null)r=a5.b -q=a6.c -if(q==null)q=a5.c -p=a6.d -if(p==null)p=a5.d -o=a6.e -if(o==null)o=a5.e -n=a6.f -if(n==null)n=a5.f -m=a6.r -if(m==null)m=a5.r -l=a6.w -if(l==null)l=a5.w -k=a6.x -if(k==null)k=a5.x -j=a6.y -if(j==null)j=a5.y -i=a6.z -if(i==null)i=a5.z -h=a6.Q -if(h==null)h=a5.Q -g=a6.as -if(g==null)g=a5.as -f=a6.at -if(f==null)f=a5.at -e=a6.ax -if(e==null)e=a5.ax -d=a6.ch -if(d==null)d=a5.ch -c=a6.CW -if(c==null)c=a5.CW -b=a6.cx -if(b==null)b=a5.cx -a=a6.cy -if(a==null)a=a5.cy -a0=a6.db -if(a0==null)a0=a5.db -a1=A.aCB(d,s,r,q,p,o,k,j,a,i,m,a0,n,c,f,e,h,a5.ay,b,l,g) -a4.push(a1) -a4=a1.CW -s=a4==null -if(!s||a1.ch!=null){a2=s?null:a4.a -if(a2==null){a2=$.aPc() -a4=a1.a -a4=a4==null?null:a4.gl(a4) -if(a4==null)a4=4278190080 -a2.setColorInt(a4)}a4=a1.ch -a3=a4==null?null:a4.a -if(a3==null)a3=$.aPb() -this.a.pushPaintStyle(a1.gNd(),a2,a3)}else this.a.pushStyle(a1.gNd())}} -A.aA8.prototype={ -$1(a){return this.a===a}, -$S:23} -A.Bj.prototype={ -I(){return"IntlSegmenterGranularity."+this.b}} -A.LB.prototype={ -k(a){return"CanvasKitError: "+this.a}} -A.M1.prototype={ -a0I(a,b){var s={} -s.a=!1 -this.a.t8(0,A.au(J.aN(a.b,"text"))).bQ(0,new A.a6h(s,b),t.P).kq(new A.a6i(s,b))}, -a_W(a){this.b.xv(0).bQ(0,new A.a6f(a),t.P).kq(new A.a6g(this,a))}} -A.a6h.prototype={ -$1(a){var s=this.b -if(a){s.toString -s.$1(B.a9.cD([!0]))}else{s.toString -s.$1(B.a9.cD(["copy_fail","Clipboard.setData failed",null])) -this.a.a=!0}}, -$S:117} -A.a6i.prototype={ -$1(a){var s -if(!this.a.a){s=this.b -s.toString -s.$1(B.a9.cD(["copy_fail","Clipboard.setData failed",null]))}}, -$S:21} -A.a6f.prototype={ -$1(a){var s=A.l(["text",a],t.N,t.z),r=this.a -r.toString -r.$1(B.a9.cD([s]))}, -$S:57} -A.a6g.prototype={ -$1(a){var s -if(a instanceof A.xf){A.NU(B.q,null,t.H).bQ(0,new A.a6e(this.b),t.P) -return}s=this.b -A.c_("Could not get text from clipboard: "+A.j(a)) -s.toString -s.$1(B.a9.cD(["paste_fail","Clipboard.getData failed",null]))}, -$S:21} -A.a6e.prototype={ -$1(a){var s=this.a -if(s!=null)s.$1(null)}, -$S:27} -A.a6c.prototype={ -t8(a,b){return this.a0H(0,b)}, -a0H(a,b){var s=0,r=A.I(t.y),q,p=2,o,n,m,l,k -var $async$t8=A.D(function(c,d){if(c===1){o=d -s=p}while(true)switch(s){case 0:p=4 -m=self.window.navigator.clipboard -m.toString -b.toString -s=7 -return A.K(A.i3(m.writeText(b),t.z),$async$t8) -case 7:p=2 -s=6 -break -case 4:p=3 -k=o -n=A.a6(k) -A.c_("copy is not successful "+A.j(n)) -m=A.dt(!1,t.y) -q=m -s=1 -break -s=6 -break -case 3:s=2 -break -case 6:q=A.dt(!0,t.y) -s=1 -break -case 1:return A.G(q,r) -case 2:return A.F(o,r)}}) -return A.H($async$t8,r)}} -A.a6d.prototype={ -xv(a){var s=0,r=A.I(t.N),q -var $async$xv=A.D(function(b,c){if(b===1)return A.F(c,r) -while(true)switch(s){case 0:q=A.i3(self.window.navigator.clipboard.readText(),t.N) -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$xv,r)}} -A.a9h.prototype={ -t8(a,b){return A.dt(this.aiP(b),t.y)}, -aiP(a){var s,r,q,p,o="-99999px",n="transparent",m=A.bo(self.document,"textarea"),l=m.style -A.x(l,"position","absolute") -A.x(l,"top",o) -A.x(l,"left",o) -A.x(l,"opacity","0") -A.x(l,"color",n) -A.x(l,"background-color",n) -A.x(l,"background",n) -self.document.body.append(m) -s=m -A.aIb(s,a) -s.focus() -s.select() -r=!1 -try{r=self.document.execCommand("copy") -if(!r)A.c_("copy is not successful")}catch(p){q=A.a6(p) -A.c_("copy is not successful "+A.j(q))}finally{s.remove()}return r}} -A.a9i.prototype={ -xv(a){return A.aDf(new A.xf("Paste is not implemented for this browser."),null,t.N)}} -A.aa7.prototype={ -gVt(){var s=this.b -if(s==null)s=null -else{s=s.canvasKitForceCpuOnly -if(s==null)s=null}return s===!0}, -gao4(){var s=this.b -if(s==null)s=null -else{s=s.debugShowSemanticsNodes -if(s==null)s=null}return s===!0}, -gZU(){var s=this.b -if(s==null)s=null -else{s=s.renderer -if(s==null)s=null}if(s==null){s=self.window.flutterWebRenderer -if(s==null)s=null}return s}} -A.a7B.prototype={ -$1(a){return this.a.warn(a)}, -$S:6} -A.a7D.prototype={ -$1(a){a.toString -return A.aQ(a)}, -$S:281} -A.Om.prototype={ -gb4(a){return B.d.ac(this.b.status)}, -gan9(){var s=this.b.headers,r=s.get("Content-Length") -if(r==null)r=null -if(r==null)return null -return A.aDW(r,null)}, -gC4(){var s=this.b,r=B.d.ac(s.status)>=200&&B.d.ac(s.status)<300,q=B.d.ac(s.status),p=B.d.ac(s.status),o=B.d.ac(s.status)>307&&B.d.ac(s.status)<400 -return r||q===0||p===304||o}, -grv(){var s=this -if(!s.gC4())throw A.d(new A.Ol(s.a,s.gb4(s))) -return new A.ad6(s.b)}, -$iaIY:1} -A.ad6.prototype={ -wW(a,b,c){var s=0,r=A.I(t.H),q=this,p,o,n -var $async$wW=A.D(function(d,e){if(d===1)return A.F(e,r) -while(true)switch(s){case 0:n=q.a.body.getReader() -p=t.e -case 2:if(!!0){s=3 -break}s=4 -return A.K(A.i3(n.read(),p),$async$wW) -case 4:o=e -if(o.done){s=3 -break}b.$1(c.a(o.value)) -s=2 -break -case 3:return A.G(null,r)}}) -return A.H($async$wW,r)}, -o2(){var s=0,r=A.I(t.pI),q,p=this,o -var $async$o2=A.D(function(a,b){if(a===1)return A.F(b,r) -while(true)switch(s){case 0:s=3 -return A.K(A.i3(p.a.arrayBuffer(),t.X),$async$o2) -case 3:o=b -o.toString -q=t.pI.a(o) -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$o2,r)}} -A.Ol.prototype={ -k(a){return'Flutter Web engine failed to fetch "'+this.a+'". HTTP request succeeded, but the server responded with HTTP status '+this.b+"."}, -$ibV:1} -A.B8.prototype={ -k(a){return'Flutter Web engine failed to complete HTTP request to fetch "'+this.a+'": '+A.j(this.b)}, -$ibV:1} -A.MX.prototype={} -A.Al.prototype={} -A.aAM.prototype={ -$2(a,b){this.a.$2(J.fW(a,t.e),b)}, -$S:312} -A.aAt.prototype={ -$1(a){var s=A.fo(a,0,null) -if(B.OF.t(0,B.b.gL(s.gru())))return s.k(0) -self.window.console.error("URL rejected by TrustedTypes policy flutter-engine: "+a+"(download prevented)") -return null}, -$S:381} -A.Wk.prototype={ -u(){var s=++this.b,r=this.a -if(s>r.length)throw A.d(A.a4("Iterator out of bounds")) -return s"))}, -gp(a){return B.d.ac(this.a.length)}} -A.Wp.prototype={ -u(){var s=++this.b,r=this.a -if(s>r.length)throw A.d(A.a4("Iterator out of bounds")) -return s"))}, -gp(a){return B.d.ac(this.a.length)}} -A.MV.prototype={ -gJ(a){var s=this.b -s===$&&A.c() -return s}, -u(){var s=this.a.next() -if(s.done)return!1 -this.b=this.$ti.c.a(s.value) -return!0}} -A.NG.prototype={ -V_(a){var s,r=this -if(!J.e(a,r.e)){s=r.e -if(s!=null)s.remove() -r.e=a -s=r.b -s.toString -a.toString -s.append(a)}}, -gaaG(){var s=this.w -s===$&&A.c() -return s}, -a_r(){var s=this.d.style,r=$.cX().x -if(r==null){r=self.window.devicePixelRatio -if(r===0)r=1}A.x(s,"transform","scale("+A.j(1/r)+")")}, -aeZ(a){var s -this.a_r() -s=$.e5() -if(!B.kv.t(0,s)&&!$.cX().aro()&&$.a3J().c){$.cX().VJ(!0) -$.bi().Kw()}else{s=$.cX() -s.qt() -s.VJ(!1) -$.bi().Kw()}}, -a0Q(a){var s,r,q,p,o,n=self.window.screen -if(n!=null){s=n.orientation -if(s!=null){p=J.X(a) -if(p.ga8(a)){s.unlock() -return A.dt(!0,t.y)}else{r=A.aYg(A.au(p.gM(a))) -if(r!=null){q=new A.b3(new A.ae($.ai,t.tq),t.VY) -try{A.i3(s.lock(r),t.z).bQ(0,new A.aac(q),t.P).kq(new A.aad(q))}catch(o){p=A.dt(!1,t.y) -return p}return q.a}}}}return A.dt(!1,t.y)}, -alM(a){var s,r=this,q=$.cr(),p=r.c -if(p==null){s=A.bo(self.document,"flt-svg-filters") -A.x(s.style,"visibility","hidden") -if(q===B.M){q=r.f -q===$&&A.c() -r.a.Vh(s,q)}else{q=r.w -q===$&&A.c() -q.insertBefore(s,q.firstChild)}r.c=s -q=s}else q=p -q.append(a)}, -Dk(a){if(a==null)return -a.remove()}} -A.aac.prototype={ -$1(a){this.a.dm(0,!0)}, -$S:21} -A.aad.prototype={ -$1(a){this.a.dm(0,!1)}, -$S:21} -A.a8S.prototype={} -A.RZ.prototype={} -A.rO.prototype={} -A.a_o.prototype={} -A.akb.prototype={ -cQ(a){var s,r,q=this,p=q.vR$ -p=p.length===0?q.a:B.b.gL(p) -s=q.lC$ -r=new A.cm(new Float32Array(16)) -r.aS(s) -q.X4$.push(new A.a_o(p,r))}, -cl(a){var s,r,q,p=this,o=p.X4$ -if(o.length===0)return -s=o.pop() -p.lC$=s.b -o=p.vR$ -r=s.a -q=p.a -while(!0){if(!!J.e(o.length===0?q:B.b.gL(o),r))break -o.pop()}}, -aK(a,b,c){this.lC$.aK(0,b,c)}, -f2(a,b,c){this.lC$.f2(0,b,c)}, -ne(a,b){this.lC$.a_1(0,B.y9,b)}, -a7(a,b){this.lC$.da(0,new A.cm(b))}} -A.aBU.prototype={ -$1(a){$.aF_=!1 -$.bi().jQ("flutter/system",$.aQH(),new A.aBT())}, -$S:159} -A.aBT.prototype={ -$1(a){}, -$S:28} -A.aan.prototype={ -aoB(a,b){var s,r,q,p,o,n=this,m=A.aE(t.S) -for(s=new A.ak3(a),r=n.d,q=n.c;s.u();){p=s.d -if(!(p<160||r.t(0,p)||q.t(0,p)))m.E(0,p)}if(m.a===0)return -o=A.a8(m,!0,m.$ti.c) -if(n.a.a00(o,b).length!==0)n.alJ(o)}, -alJ(a){var s=this -s.ax.K(0,a) -if(!s.ay){s.ay=!0 -s.as=A.NU(B.q,new A.aau(s),t.H)}}, -a9s(){var s,r -this.ay=!1 -s=this.ax -if(s.a===0)return -r=A.a8(s,!0,A.p(s).c) -s.a0(0) -this.ap2(r)}, -ap2(a){var s,r,q,p,o,n,m,l=this,k=A.aE(t.Te),j=t.S,i=A.aE(j),h=A.aE(j) -for(s=a.length,r=l.f,q=r.$ti.i("w<1>"),r=r.a,p=0;p"),q=A.p(b1),p=q.i("jb<1>"),q=q.c,s=s.c,o=a7.r,n=a7.Q,m=b0==="ko",l=b0==="ja",k=b0==="zh-HK",j=b0!=="zh-Hant",i=b0!=="zh-Hans",h=b0!=="zh-CN",g=b0!=="zh-SG",f=b0==="zh-MY",e=b0!=="zh-TW",b0=b0==="zh-MO",d=a7.z,c=a7.y,b=a7.x,a=a7.w;b1.a!==0;){a0={} -B.b.a0(a9) -for(a1=new A.jb(b2,b2.r,r),a1.c=b2.e,a2=0;a1.u();){a3=a1.d -if(a3==null)a3=s.a(a3) -for(a4=new A.jb(b1,b1.r,p),a4.c=b1.e,a5=0;a4.u();){a6=a4.d -if(a3.t(0,a6==null?q.a(a6):a6))++a5}if(a5>a2){B.b.a0(a9) -a9.push(a3) -a2=a5}else if(a5===a2)a9.push(a3)}if(a2===0)break -a0.a=B.b.gM(a9) -if(a9.length>1)if(B.b.JP(a9,new A.aaw(a7))){if(!i||!h||!g||f){if(B.b.t(a9,o))a0.a=o}else if(!j||!e||b0){if(B.b.t(a9,a))a0.a=a}else if(k){if(B.b.t(a9,b))a0.a=b}else if(l){if(B.b.t(a9,c))a0.a=c}else if(m){if(B.b.t(a9,d))a0.a=d}else if(B.b.t(a9,o))a0.a=o}else if(B.b.t(a9,n))a0.a=n -else if(B.b.t(a9,o))a0.a=o -b1.PW(new A.aax(a0),!0) -a8.E(0,a0.a)}return a8}} -A.aao.prototype={ -$1(a){return a.a==="Noto Sans SC"}, -$S:45} -A.aap.prototype={ -$1(a){return a.a==="Noto Sans TC"}, -$S:45} -A.aaq.prototype={ -$1(a){return a.a==="Noto Sans HK"}, -$S:45} -A.aar.prototype={ -$1(a){return a.a==="Noto Sans JP"}, -$S:45} -A.aas.prototype={ -$1(a){return a.a==="Noto Sans KR"}, -$S:45} -A.aat.prototype={ -$1(a){return a.a==="Noto Sans Symbols"}, -$S:45} -A.aav.prototype={ -$0(){return A.b([],t.oR)}, -$S:559} -A.aau.prototype={ -$0(){var s=0,r=A.I(t.H),q=this,p -var $async$$0=A.D(function(a,b){if(a===1)return A.F(b,r) -while(true)switch(s){case 0:p=q.a -p.a9s() -p.ay=!1 -p=p.b -p===$&&A.c() -s=2 -return A.K(p.av1(),$async$$0) -case 2:return A.G(null,r)}}) -return A.H($async$$0,r)}, -$S:15} -A.aaw.prototype={ -$1(a){var s=this.a -return a===s.r||a===s.w||a===s.x||a===s.y||a===s.z}, -$S:45} -A.aax.prototype={ -$1(a){return this.a.a.t(0,a)}, -$S:35} -A.Nm.prototype={ -av1(){var s=this.f -if(s==null)return A.dt(null,t.H) -else return s.a}, -E(a,b){var s,r,q=this -if(q.c.t(0,b)||q.d.ak(0,b.b))return -s=q.d -r=s.a -s.m(0,b.b,b) -if(q.f==null)q.f=new A.b3(new A.ae($.ai,t.c),t.h) -if(r===0)A.cM(B.q,q.ga1t())}, -pq(){var s=0,r=A.I(t.H),q=this,p,o,n,m,l,k,j,i -var $async$pq=A.D(function(a,b){if(a===1)return A.F(b,r) -while(true)switch(s){case 0:j=A.m(t.N,t.uz) -i=A.b([],t.s) -for(p=q.d,o=p.gaR(p),n=A.p(o),n=n.i("@<1>").a5(n.z[1]),o=new A.bP(J.as(o.a),o.b,n.i("bP<1,2>")),m=t.H,n=n.z[1];o.u();){l=o.a -if(l==null)l=n.a(l) -j.m(0,l.b,A.aYp(new A.a9o(q,l,i),m))}s=2 -return A.K(A.kD(j.gaR(j),m),$async$pq) -case 2:B.b.jl(i) -for(o=i.length,n=q.a,m=n.at,k=0;k").a5(s.z[1]),o=new A.bP(J.as(o.a),o.b,s.i("bP<1,2>")),s=s.z[1];o.u();){r=o.a -for(r=J.as(r==null?s.a(r):r);r.u();){q=r.gJ(r) -q.b.$1(q.a)}}p.b=p.a -p.a=null}, -Op(a,b){var s,r=this,q=r.a -if(q==null)q=r.a=A.m(t.N,r.$ti.i("B>")) -s=q.h(0,a) -if(s==null){s=A.b([],r.$ti.i("w>")) -q.m(0,a,s) -q=s}else q=s -q.push(b)}, -au2(a){var s,r,q=this.b -if(q==null)return null -s=q.h(0,a) -if(s==null||s.length===0)return null -r=(s&&B.b).ck(s,0) -this.Op(a,r) -return r.a}} -A.xA.prototype={} -A.CA.prototype={ -ghA(){return this.cx}, -qc(a){var s=this -s.y9(a) -s.cx=a.cx -s.cy=a.cy -s.db=a.db -a.cx=null}, -bN(a){var s,r=this,q="transform-origin",p=r.oc("flt-backdrop") -A.x(p.style,q,"0 0 0") -s=A.bo(self.document,"flt-backdrop-interior") -r.cx=s -A.x(s.style,"position","absolute") -s=r.oc("flt-backdrop-filter") -r.cy=s -A.x(s.style,q,"0 0 0") -s=r.cy -s.toString -p.append(s) -s=r.cx -s.toString -p.append(s) -return p}, -jE(){var s=this -s.tx() -$.ew.Dk(s.db) -s.cy=s.cx=s.db=null}, -eR(){var s,r,q,p,o,n,m,l,k,j,i,h,g=this,f=t.m1.a(g.CW) -$.ew.Dk(g.db) -g.db=null -s=g.fr -r=g.f -if(s!=r){r.toString -q=new A.cm(new Float32Array(16)) -if(q.h4(r)===0)A.U(A.dW(r,"other","Matrix cannot be inverted")) -g.dy=q -g.fr=g.f}s=$.cX() -p=s.x -if(p==null){r=self.window.devicePixelRatio -p=r===0?1:r}r=g.dy -r===$&&A.c() -o=A.aBZ(r,new A.y(0,0,s.giq().a*p,s.giq().b*p)) -n=o.a -m=o.b -l=o.c-n -k=o.d-m -j=g.e -for(;j!=null;){if(j.gwe()){i=g.dx=j.w -n=i.a -m=i.b -l=i.c-n -k=i.d-m -break}j=j.e}h=g.cy.style -A.x(h,"position","absolute") -A.x(h,"left",A.j(n)+"px") -A.x(h,"top",A.j(m)+"px") -A.x(h,"width",A.j(l)+"px") -A.x(h,"height",A.j(k)+"px") -s=$.cr() -if(s===B.bz){A.x(h,"background-color","#000") -A.x(h,"opacity","0.2")}else{if(s===B.M){s=g.cy -s.toString -A.ez(s,"-webkit-backdrop-filter",f.gK2())}s=g.cy -s.toString -A.ez(s,"backdrop-filter",f.gK2())}}, -bB(a,b){var s=this -s.m4(0,b) -if(!s.CW.j(0,b.CW))s.eR() -else s.OR()}, -OR(){var s=this.e -for(;s!=null;){if(s.gwe()){if(!J.e(s.w,this.dx))this.eR() -break}s=s.e}}, -kX(){this.a2N() -this.OR()}, -$ia4M:1} -A.lK.prototype={ -sln(a,b){var s,r,q=this -q.a=b -s=B.d.ec(b.a)-1 -r=B.d.ec(q.a.b)-1 -if(q.z!==s||q.Q!==r){q.z=s -q.Q=r -q.Ul()}}, -Ul(){A.x(this.c.style,"transform","translate("+this.z+"px, "+this.Q+"px)")}, -T7(){var s=this,r=s.a,q=r.a -r=r.b -s.d.aK(0,-q+(q-1-s.z)+1,-r+(r-1-s.Q)+1)}, -WF(a,b){return this.r>=A.a52(a.c-a.a)&&this.w>=A.a51(a.d-a.b)&&this.ay===b}, -a0(a){var s,r,q,p,o,n=this -n.at=!1 -n.d.a0(0) -s=n.f -r=s.length -for(q=n.c,p=0;po){l=o -o=p -p=l}if(n>m){l=m -m=n -n=l}k=Math.abs(a2.r) -j=Math.abs(a2.e) -i=Math.abs(a2.w) -h=Math.abs(a2.f) -g=Math.abs(a2.z) -f=Math.abs(a2.x) -e=Math.abs(a2.Q) -d=Math.abs(a2.y) -b.beginPath() -b.moveTo(p+k,n) -a=o-k -b.lineTo(a,n) -A.Kd(b,a,n+i,k,i,0,4.71238898038469,6.283185307179586,!1) -a=m-d -b.lineTo(o,a) -A.Kd(b,o-f,a,f,d,0,0,1.5707963267948966,!1) -a=p+g -b.lineTo(a,m) -A.Kd(b,a,m-e,g,e,0,1.5707963267948966,3.141592653589793,!1) -a=n+h -b.lineTo(p,a) -A.Kd(b,p+j,a,j,h,0,3.141592653589793,4.71238898038469,!1) -a1.gcS().hJ(c) -a1.gcS().lR()}}, -qK(a,b){var s,r,q,p,o,n,m=this.d -if(this.Ae(b)){a=A.Ka(a,b) -s=A.Kb(a,b,"draw-oval",m.c) -m=a.a -r=a.b -this.tU(s,new A.k(m,r),b) -A.x(s.style,"border-radius",A.j((a.c-m)/2)+"px / "+A.j((a.d-r)/2)+"px")}else{m.gcS().l8(b,a) -r=b.b -m.gb5(m).beginPath() -q=m.gcS().Q -p=q==null -o=p?a.gaT().a:a.gaT().a-q.a -n=p?a.gaT().b:a.gaT().b-q.b -A.Kd(m.gb5(m),o,n,(a.c-a.a)/2,(a.d-a.b)/2,0,0,6.283185307179586,!1) -m.gcS().hJ(r) -m.gcS().lR()}}, -iZ(a,b,c){var s,r,q,p,o,n,m,l,k=this -if(k.Ia(c)){s=A.Ka(A.l5(a,b),c) -r=A.Kb(s,c,"draw-circle",k.d.c) -k.tU(r,new A.k(s.a,s.b),c) -A.x(r.style,"border-radius","50%")}else{q=c.w!=null?A.l5(a,b):null -p=k.d -p.gcS().l8(c,q) -q=c.b -p.gb5(p).beginPath() -o=p.gcS().Q -n=o==null -m=a.a -m=n?m:m-o.a -l=a.b -l=n?l:l-o.b -A.Kd(p.gb5(p),m,l,b,b,0,0,6.283185307179586,!1) -p.gcS().hJ(q) -p.gcS().lR()}}, -cY(a,b){var s,r,q,p,o,n,m,l,k,j,i,h=this -if(h.Ae(b)){s=h.d -r=s.c -t.Ci.a(a) -q=a.a.Mt() -if(q!=null){h.cT(q,b) -return}p=a.a -o=p.ax?p.Qk():null -if(o!=null){h.cC(o,b) -return}n=A.aNX() -p=A.ax("visible") -if(p==null)p=t.K.a(p) -n.setAttribute("overflow",p) -p=self.document.createElementNS("http://www.w3.org/2000/svg","path") -n.append(p) -m=b.b -if(m!==B.Q)if(m!==B.aX){m=b.c -m=m!==0&&m!=null}else m=!1 -else m=!0 -l=b.r -if(m){m=A.ax(A.dA(l)) -if(m==null)m=t.K.a(m) -p.setAttribute("stroke",m) -m=b.c -m=A.ax(A.j(m==null?1:m)) -if(m==null)m=t.K.a(m) -p.setAttribute("stroke-width",m) -m=b.d -if(m!=null){m=A.ax(A.j(A.aP0(m))) -if(m==null)m=t.K.a(m) -p.setAttribute("stroke-linecap",m)}m=A.ax("none") -if(m==null)m=t.K.a(m) -p.setAttribute("fill",m)}else{m=A.ax(A.dA(l)) -if(m==null)m=t.K.a(m) -p.setAttribute("fill",m)}if(a.b===B.dg){m=A.ax("evenodd") -if(m==null)m=t.K.a(m) -p.setAttribute("fill-rule",m)}m=A.ax(A.aOR(a.a,0,0)) -if(m==null)m=t.K.a(m) -p.setAttribute("d",m) -if(s.b==null){k=n.style -A.x(k,"position","absolute") -if(!r.wg(0)){A.x(k,"transform",A.kc(r.a)) -A.x(k,"transform-origin","0 0 0")}}if(b.x!=null){s=b.b -j=A.dA(b.r) -i=b.x.b -p=$.cr() -if(p===B.M&&s!==B.Q)A.x(n.style,"box-shadow","0px 0px "+A.j(i*2)+"px "+j) -else A.x(n.style,"filter","blur("+A.j(i)+"px)")}h.tU(n,B.e,b)}else{s=b.w!=null?a.hm(0):null -p=h.d -p.gcS().l8(b,s) -s=b.b -if(s==null&&b.c!=null)p.cY(a,B.Q) -else p.cY(a,s) -p.gcS().lR()}}, -qM(a,b,c,d){var s,r,q,p,o,n=this.d,m=A.b50(a.hm(0),c) -if(m!=null){s=(B.d.bE(0.3*(b.gl(b)>>>24&255))&255)<<24|b.gl(b)&16777215 -r=A.b4V(s>>>16&255,s>>>8&255,s&255,255) -n.gb5(n).save() -q=n.gb5(n) -q.globalAlpha=(s>>>24&255)/255 -if(d){s=$.cr() -s=s!==B.M}else s=!1 -q=m.b -p=m.a -o=q.a -q=q.b -if(s){n.gb5(n).translate(o,q) -A.aCQ(n.gb5(n),A.aOC(new A.r6(B.y,p))) -A.a7A(n.gb5(n),"") -A.a7z(n.gb5(n),r)}else{A.aCQ(n.gb5(n),"none") -A.a7A(n.gb5(n),"") -A.a7z(n.gb5(n),r) -n.gb5(n).shadowBlur=p -A.aCR(n.gb5(n),r) -A.aCS(n.gb5(n),o) -A.aCT(n.gb5(n),q)}n.q_(n.gb5(n),a) -A.a7y(n.gb5(n),null) -n.gb5(n).restore()}}, -Hx(a){var s,r,q,p=a.a,o=A.aCU(p) -o.toString -s=this.b -if(s!=null){r=s.au2(o) -if(r!=null)return r}if(!a.b){a.b=!0 -A.x(p.style,"position","absolute")}q=A.a7E(p,!0) -p=this.b -if(p!=null)p.Op(o,new A.xA(q,A.b3h(),p.$ti.i("xA<1>"))) -return q}, -PJ(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h=this -t.gc.a(a) -s=c.a -r=A.b5i(c.z) -if(r instanceof A.C1)q=h.a8A(a,r.b,r.c,c) -else if(r instanceof A.afw){p=A.b6V(r.b) -o=p.b -h.c.append(o) -h.f.push(o) -q=h.Hx(a) -A.x(q.style,"filter","url(#"+p.a+")")}else q=h.Hx(a) -o=q.style -n=A.aAA(s) -A.x(o,"mix-blend-mode",n==null?"":n) -if(h.ax&&!0){o=h.d -o.gcS().l8(c,null) -o.gb5(o).drawImage(q,b.a,b.b) -o.gcS().lR()}else{o=h.d -if(o.b!=null){n=q.style -n.removeProperty("width") -n.removeProperty("height") -n=o.b -n.toString -m=A.aET(n,q,b,o.c) -for(o=m.length,n=h.c,l=h.f,k=0;k1){s=q.a -s.y=s.r.pop() -r=s.w.pop() -if(r!=null){s.Q=r.a -s.as=r.b -s.at=r.c -s.ax=r.d -s.z=!0}else if(s.z)s.z=!1}s=q.c -if(s.length!==0&&B.b.gL(s) instanceof A.Cw)s.pop() -else s.push(B.Cy);--q.r}, -aK(a,b,c){var s=this.a,r=s.a -if(b!==0||c!==0)r.x=!1 -r.y.aK(0,b,c) -s.c.push(new A.Qr(b,c))}, -f2(a,b,c){var s=c==null?b:c,r=this.a,q=r.a -if(b!==1||s!==1)q.x=!1 -q.y.m0(0,b,s,1) -r.c.push(new A.Qp(b,s)) -return null}, -ne(a,b){var s,r,q,p,o,n,m,l,k,j,i,h=this.a,g=h.a -if(b!==0)g.x=!1 -g=g.y -s=Math.cos(b) -r=Math.sin(b) -g=g.a -q=g[0] -p=g[4] -o=g[1] -n=g[5] -m=g[2] -l=g[6] -k=g[3] -j=g[7] -i=-r -g[0]=q*s+p*r -g[1]=o*s+n*r -g[2]=m*s+l*r -g[3]=k*s+j*r -g[4]=q*i+p*s -g[5]=o*i+n*s -g[6]=m*i+l*s -g[7]=k*i+j*s -h.c.push(new A.Qo(b))}, -a7(a,b){var s=A.a3p(b),r=this.a,q=r.a -q.y.da(0,new A.cm(s)) -q.x=q.y.wg(0) -r.c.push(new A.Qq(s))}, -v5(a,b,c){this.a.lq(a,b)}, -mw(a){return this.v5(a,B.d3,!0)}, -VA(a,b){return this.v5(a,B.d3,b)}, -AU(a,b){var s=this.a,r=new A.Qa(a) -s.a.lq(new A.y(a.a,a.b,a.c,a.d),r) -s.d.c=!0 -s.c.push(r)}, -o7(a){return this.AU(a,!0)}, -AT(a,b,c){var s,r=this.a -t.Ci.a(b) -s=new A.Q9(b) -r.a.lq(b.hm(0),s) -r.d.c=!0 -r.c.push(s)}, -i8(a,b){return this.AT(a,b,!0)}, -hD(a,b,c){var s,r,q,p,o,n,m=this.a -t.Vh.a(c) -s=Math.max(A.yI(c),1) -c.b=!0 -r=new A.Qf(a,b,c.a) -q=a.a -p=b.a -o=a.b -n=b.b -m.a.ph(Math.min(q,p)-s,Math.min(o,n)-s,Math.max(q,p)+s,Math.max(o,n)+s,r) -m.e=m.d.c=!0 -m.c.push(r)}, -qL(a){var s,r,q=this.a -t.Vh.a(a) -a.b=q.e=q.d.c=!0 -s=new A.Qh(a.a) -r=q.a -r.lZ(r.a,s) -q.c.push(s)}, -cT(a,b){this.a.cT(a,t.Vh.a(b))}, -cC(a,b){this.a.cC(a,t.Vh.a(b))}, -oj(a,b,c){this.a.oj(a,b,t.Vh.a(c))}, -qK(a,b){var s,r,q,p=this.a -t.Vh.a(b) -p.e=p.d.c=!0 -s=A.yI(b) -b.b=!0 -r=new A.Qg(a,b.a) -q=p.a -if(s!==0)q.lZ(a.cV(s),r) -else q.lZ(a,r) -p.c.push(r)}, -iZ(a,b,c){var s,r,q,p,o,n=this.a -t.Vh.a(c) -n.e=n.d.c=!0 -s=A.yI(c) -c.b=!0 -r=new A.Qc(a,b,c.a) -q=b+s -p=a.a -o=a.b -n.a.ph(p-q,o-q,p+q,o+q,r) -n.c.push(r)}, -JH(a,b,c,d,e){var s,r=$.ad().c_() -if(c<=-6.283185307179586){r.qj(0,a,b,-3.141592653589793,!0) -b-=3.141592653589793 -r.qj(0,a,b,-3.141592653589793,!1) -b-=3.141592653589793 -c+=6.283185307179586 -s=!1}else s=!0 -for(;c>=6.283185307179586;s=!1){r.qj(0,a,b,3.141592653589793,s) -b+=3.141592653589793 -r.qj(0,a,b,3.141592653589793,!1) -b+=3.141592653589793 -c-=6.283185307179586}r.qj(0,a,b,c,s) -this.a.cY(r,t.Vh.a(e))}, -cY(a,b){this.a.cY(a,t.Vh.a(b))}, -lx(a,b,c,d){var s,r,q=this.a -t.Vh.a(d) -s=q.d -d.b=q.e=s.a=s.c=!0 -r=new A.Qe(a,b,c,d.a) -q.a.lZ(c,r) -q.c.push(r)}, -mE(a,b){this.a.mE(a,b)}, -qM(a,b,c,d){var s,r,q=this.a -q.e=q.d.c=!0 -s=A.b4Z(a.hm(0),c) -r=new A.Qm(t.Ci.a(a),b,c,d) -q.a.lZ(s,r) -q.c.push(r)}} -A.Gg.prototype={ -ghA(){return this.hF$}, -bN(a){var s=this.oc("flt-clip"),r=A.bo(self.document,"flt-clip-interior") -this.hF$=r -A.x(r.style,"position","absolute") -r=this.hF$ -r.toString -s.append(r) -return s}, -V8(a,b){var s -if(b!==B.m){s=a.style -A.x(s,"overflow","hidden") -A.x(s,"z-index","0")}}} -A.CC.prototype={ -k_(){var s=this -s.f=s.e.f -if(s.CW!==B.m)s.w=s.cx -else s.w=null -s.r=null}, -bN(a){var s=this.O4(0),r=A.ax("rect") -if(r==null)r=t.K.a(r) -s.setAttribute("clip-type",r) -return s}, -eR(){var s,r=this,q=r.d.style,p=r.cx,o=p.a -A.x(q,"left",A.j(o)+"px") -s=p.b -A.x(q,"top",A.j(s)+"px") -A.x(q,"width",A.j(p.c-o)+"px") -A.x(q,"height",A.j(p.d-s)+"px") -p=r.d -p.toString -r.V8(p,r.CW) -p=r.hF$.style -A.x(p,"left",A.j(-o)+"px") -A.x(p,"top",A.j(-s)+"px")}, -bB(a,b){var s=this -s.m4(0,b) -if(!s.cx.j(0,b.cx)||s.CW!==b.CW){s.w=null -s.eR()}}, -gwe(){return!0}, -$ia6b:1} -A.Qw.prototype={ -k_(){var s,r=this -r.f=r.e.f -if(r.cx!==B.m){s=r.CW -r.w=new A.y(s.a,s.b,s.c,s.d)}else r.w=null -r.r=null}, -bN(a){var s=this.O4(0),r=A.ax("rrect") -if(r==null)r=t.K.a(r) -s.setAttribute("clip-type",r) -return s}, -eR(){var s,r=this,q=r.d.style,p=r.CW,o=p.a -A.x(q,"left",A.j(o)+"px") -s=p.b -A.x(q,"top",A.j(s)+"px") -A.x(q,"width",A.j(p.c-o)+"px") -A.x(q,"height",A.j(p.d-s)+"px") -A.x(q,"border-top-left-radius",A.j(p.e)+"px") -A.x(q,"border-top-right-radius",A.j(p.r)+"px") -A.x(q,"border-bottom-right-radius",A.j(p.x)+"px") -A.x(q,"border-bottom-left-radius",A.j(p.z)+"px") -p=r.d -p.toString -r.V8(p,r.cx) -p=r.hF$.style -A.x(p,"left",A.j(-o)+"px") -A.x(p,"top",A.j(-s)+"px")}, -bB(a,b){var s=this -s.m4(0,b) -if(!s.CW.j(0,b.CW)||s.cx!==b.cx){s.w=null -s.eR()}}, -gwe(){return!0}, -$ia6a:1} -A.CB.prototype={ -bN(a){return this.oc("flt-clippath")}, -k_(){var s=this -s.a2M() -if(s.cx!==B.m){if(s.w==null)s.w=s.CW.hm(0)}else s.w=null}, -eR(){var s=this,r=s.cy -if(r!=null)r.remove() -r=s.d -r.toString -r=A.aNY(r,s.CW) -s.cy=r -s.d.append(r)}, -bB(a,b){var s,r=this -r.m4(0,b) -if(b.CW!==r.CW){r.w=null -s=b.cy -if(s!=null)s.remove() -r.eR()}else r.cy=b.cy -b.cy=null}, -jE(){var s=this.cy -if(s!=null)s.remove() -this.cy=null -this.tx()}, -gwe(){return!0}, -$ia68:1} -A.anG.prototype={ -xP(a,b){var s,r,q,p,o=self.document.createElementNS("http://www.w3.org/2000/svg","feColorMatrix"),n=o.type -n.toString -A.ak5(n,1) -n=o.result -n.toString -A.oK(n,b) -n=o.values.baseVal -n.toString -for(s=this.b,r=0;r<20;++r){q=s.createSVGNumber() -p=a[r] -q.value=p -n.appendItem(q)}this.c.append(o)}, -pk(a,b,c){var s=self.document.createElementNS("http://www.w3.org/2000/svg","feFlood"),r=A.ax(a) -if(r==null)r=t.K.a(r) -s.setAttribute("flood-color",r) -r=A.ax(b) -if(r==null)r=t.K.a(r) -s.setAttribute("flood-opacity",r) -r=s.result -r.toString -A.oK(r,c) -this.c.append(s)}, -xO(a,b,c){var s=self.document.createElementNS("http://www.w3.org/2000/svg","feBlend"),r=s.in1 -r.toString -A.oK(r,a) -r=s.in2 -r.toString -A.oK(r,b) -r=s.mode -r.toString -A.ak5(r,c) -this.c.append(s)}, -nu(a,b,c,d,e,f,g,h){var s=self.document.createElementNS("http://www.w3.org/2000/svg","feComposite"),r=s.in1 -r.toString -A.oK(r,a) -r=s.in2 -r.toString -A.oK(r,b) -r=s.operator -r.toString -A.ak5(r,g) -if(c!=null){r=s.k1 -r.toString -A.ak6(r,c)}if(d!=null){r=s.k2 -r.toString -A.ak6(r,d)}if(e!=null){r=s.k3 -r.toString -A.ak6(r,e)}if(f!=null){r=s.k4 -r.toString -A.ak6(r,f)}r=s.result -r.toString -A.oK(r,h) -this.c.append(s)}, -t9(a,b,c,d){return this.nu(a,b,null,null,null,null,c,d)}, -nv(a,b,c,d){var s=self.document.createElementNS("http://www.w3.org/2000/svg","feImage"),r=s.href -r.toString -A.oK(r,b) -r=s.result -r.toString -A.oK(r,c) -r=$.cr() -if(r!==B.M){s.x.baseVal.newValueSpecifiedUnits(1,0) -s.y.baseVal.newValueSpecifiedUnits(1,0) -s.width.baseVal.newValueSpecifiedUnits(1,d) -s.height.baseVal.newValueSpecifiedUnits(1,a)}this.c.append(s)}, -bq(){var s=this.b -s.append(this.c) -return new A.anF(this.a,s)}} -A.anF.prototype={} -A.a7w.prototype={ -lq(a,b){throw A.d(A.cu(null))}, -o7(a){throw A.d(A.cu(null))}, -i8(a,b){throw A.d(A.cu(null))}, -hD(a,b,c){throw A.d(A.cu(null))}, -qL(a){throw A.d(A.cu(null))}, -cT(a,b){var s -a=A.Ka(a,b) -s=this.vR$ -s=s.length===0?this.a:B.b.gL(s) -s.append(A.Kb(a,b,"draw-rect",this.lC$))}, -cC(a,b){var s,r=A.Kb(A.Ka(new A.y(a.a,a.b,a.c,a.d),b),b,"draw-rrect",this.lC$) -A.aNI(r.style,a) -s=this.vR$ -s=s.length===0?this.a:B.b.gL(s) -s.append(r)}, -qK(a,b){throw A.d(A.cu(null))}, -iZ(a,b,c){throw A.d(A.cu(null))}, -cY(a,b){throw A.d(A.cu(null))}, -qM(a,b,c,d){throw A.d(A.cu(null))}, -lx(a,b,c,d){throw A.d(A.cu(null))}, -mE(a,b){var s=A.aO2(a,b,this.lC$),r=this.vR$ -r=r.length===0?this.a:B.b.gL(r) -r.append(s)}, -qP(){}} -A.CD.prototype={ -k_(){var s,r,q=this,p=q.e.f -q.f=p -s=q.CW -if(s!==0||q.cx!==0){p.toString -r=new A.cm(new Float32Array(16)) -r.aS(p) -q.f=r -r.aK(0,s,q.cx)}q.r=null}, -gwo(){var s=this,r=s.cy -if(r==null){r=A.en() -r.nx(-s.CW,-s.cx,0) -s.cy=r}return r}, -bN(a){var s=A.bo(self.document,"flt-offset") -A.ez(s,"position","absolute") -A.ez(s,"transform-origin","0 0 0") -return s}, -eR(){A.x(this.d.style,"transform","translate("+A.j(this.CW)+"px, "+A.j(this.cx)+"px)")}, -bB(a,b){var s=this -s.m4(0,b) -if(b.CW!==s.CW||b.cx!==s.cx)s.eR()}, -$iah1:1} -A.CE.prototype={ -k_(){var s,r,q,p=this,o=p.e.f -p.f=o -s=p.cx -r=s.a -q=s.b -if(r!==0||q!==0){o.toString -s=new A.cm(new Float32Array(16)) -s.aS(o) -p.f=s -s.aK(0,r,q)}p.r=null}, -gwo(){var s,r=this.cy -if(r==null){r=this.cx -s=A.en() -s.nx(-r.a,-r.b,0) -this.cy=s -r=s}return r}, -bN(a){var s=A.bo(self.document,"flt-opacity") -A.ez(s,"position","absolute") -A.ez(s,"transform-origin","0 0 0") -return s}, -eR(){var s,r=this.d -r.toString -A.ez(r,"opacity",A.j(this.CW/255)) -s=this.cx -A.x(r.style,"transform","translate("+A.j(s.a)+"px, "+A.j(s.b)+"px)")}, -bB(a,b){var s=this -s.m4(0,b) -if(s.CW!==b.CW||!s.cx.j(0,b.cx))s.eR()}, -$iah2:1} -A.wR.prototype={ -smu(a){var s=this -if(s.b){s.a=s.a.er(0) -s.b=!1}s.a.a=a}, -gbC(a){var s=this.a.b -return s==null?B.aX:s}, -sbC(a,b){var s=this -if(s.b){s.a=s.a.er(0) -s.b=!1}s.a.b=b}, -geP(){var s=this.a.c -return s==null?0:s}, -seP(a){var s=this -if(s.b){s.a=s.a.er(0) -s.b=!1}s.a.c=a}, -stq(a){var s=this -if(s.b){s.a=s.a.er(0) -s.b=!1}s.a.d=a}, -sEo(a){var s=this -if(s.b){s.a=s.a.er(0) -s.b=!1}s.a.e=a}, -sCi(a){var s=this -if(s.b){s.a=s.a.er(0) -s.b=!1}s.a.f=!1}, -gaf(a){return new A.L(this.a.r)}, -saf(a,b){var s=this -if(s.b){s.a=s.a.er(0) -s.b=!1}s.a.r=b.gl(b)}, -sCf(a){}, -sEe(a){var s=this -if(s.b){s.a=s.a.er(0) -s.b=!1}s.a.w=a}, -sCw(a){var s=this -if(s.b){s.a=s.a.er(0) -s.b=!1}s.a.x=a}, -smR(a){var s=this -if(s.b){s.a=s.a.er(0) -s.b=!1}s.a.y=a}, -sVC(a){var s=this -if(s.b){s.a=s.a.er(0) -s.b=!1}s.a.z=a}, -k(a){var s,r,q=""+"Paint(",p=this.a.b,o=p==null -if((o?B.aX:p)===B.Q){q+=(o?B.aX:p).k(0) -p=this.a -o=p.c -s=o==null -if((s?0:o)!==0)q+=" "+A.j(s?0:o) -else q+=" hairline" -p=p.d -o=p==null -if((o?B.cu:p)!==B.cu)q+=" "+(o?B.cu:p).k(0) -r="; "}else r="" -p=this.a -if(!p.f){q+=r+"antialias off" -r="; "}p=p.r -q=(p!==4278190080?q+(r+new A.L(p).k(0)):q)+")" -return q.charCodeAt(0)==0?q:q}, -$ivL:1} -A.T3.prototype={ -er(a){var s=this,r=new A.T3() -r.a=s.a -r.y=s.y -r.x=s.x -r.w=s.w -r.f=s.f -r.r=s.r -r.z=s.z -r.c=s.c -r.b=s.b -r.e=s.e -r.d=s.d -return r}, -k(a){return this.cu(0)}} -A.hz.prototype={ -LU(){var s,r,q,p,o,n,m,l,k,j=this,i=A.b([],t.yv),h=j.a8f(0.25),g=B.h.aj_(1,h) -i.push(new A.k(j.a,j.b)) -if(h===5){s=new A.Vm() -j.OZ(s) -r=s.a -r.toString -q=s.b -q.toString -p=r.c -if(p===r.e&&r.d===r.f&&q.a===q.c&&q.b===q.d){o=new A.k(p,r.d) -i.push(o) -i.push(o) -i.push(o) -i.push(new A.k(q.e,q.f)) -g=2 -n=!0}else n=!1}else n=!1 -if(!n)A.aCE(j,h,i) -m=2*g+1 -k=0 -while(!0){if(!(k=0)s.c=-r -s.e=s.d=-1}, -jv(a){this.Aw(a,0,0)}, -z2(){var s,r=this.a,q=r.w -for(r=r.r,s=0;s359){j=c4<0?-0.001953125:0.001953125 -i=p -do{i-=j -m=Math.cos(i) -l=Math.sin(i)}while(o===m&&n===l)}}h=c4>0?0:1 -g=c0/2 -f=(c2.d-c2.b)/2 -e=c2.gaT().a+g*Math.cos(p) -d=c2.gaT().b+f*Math.sin(p) -if(o===m&&n===l){if(c5)b9.eh(0,e,d) -else b9.GK(e,d) -return}c=o*m+n*l -b=o*l-n*m -if(Math.abs(b)<=0.000244140625)if(c>0)if(!(b>=0&&h===0))c0=b<=0&&h===1 -else c0=!0 -else c0=!1 -else c0=!1 -if(c0){if(c5)b9.eh(0,e,d) -else b9.GK(e,d) -return}c0=h===1 -if(c0)b=-b -if(0===b)a=2 -else if(0===c)a=b>0?1:3 -else{r=b<0 -a=r?2:0 -if(c<0!==r)++a}a0=A.b([],t.td) -for(a1=0;a11){d=Math.sqrt(d) -l*=d -k*=d}c=(q*h+p*g)/l -b=(p*h-q*g)/k -a=(n*h+m*g)/l -a0=(m*h-n*g)/k -a1=a-c -a2=a0-b -a3=Math.sqrt(Math.max(1/(a1*a1+a2*a2)-0.25,0)) -a4=(c+a)/2-a2*a3 -a5=(b+a0)/2+a1*a3 -a6=Math.atan2(b-a5,c-a4) -a7=Math.atan2(a0-a5,a-a4)-a6 -if(a7<0)a7+=6.283185307179586 -if(Math.abs(a7)<0.0000031415926535897933){c2.cc(0,n,m) -return}a8=B.d.e9(Math.abs(a7/2.0943951023931953)) -a9=a7/a8 -b0=Math.tan(a9/2) -if(!isFinite(b0))return -b1=Math.sqrt(0.5+Math.cos(a9)*0.5) -b2=Math.abs(1.5707963267948966-Math.abs(a9)-0)<0.000244140625&&B.d.ec(l)===l&&B.d.ec(k)===k&&B.d.ec(n)===n&&B.d.ec(m)===m -for(b3=a6,b4=0;b4=c||d>=b)g.Aw(a,0,3) -else if(A.b6h(a1))g.Ol(a,0,3) -else{r=c-e -q=b-d -p=Math.max(0,a0) -o=Math.max(0,a1.r) -n=Math.max(0,a1.z) -m=Math.max(0,a1.x) -l=Math.max(0,a1.f) -k=Math.max(0,a1.w) -j=Math.max(0,a1.Q) -i=Math.max(0,a1.y) -h=A.azP(j,i,q,A.azP(l,k,q,A.azP(n,m,r,A.azP(p,o,r,1)))) -a0=b-h*j -g.eh(0,e,a0) -g.cc(0,e,d+h*l) -g.h3(e,d,e+h*p,d,0.707106781) -g.cc(0,c-h*o,d) -g.h3(c,d,c,d+h*k,0.707106781) -g.cc(0,c,b-h*i) -g.h3(c,b,c-h*m,b,0.707106781) -g.cc(0,e+h*n,b) -g.h3(e,b,e,a0,0.707106781) -g.aL(0) -g.e=f?0:-1 -e=g.a -e.ax=f -e.ch=!1 -e.CW=6}}, -Ir(a,b,c){this.alL(b,c.a,c.b,null,0)}, -alL(b4,b5,b6,b7,b8){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3=this -t.Ci.a(b4) -s=b4.a -if(s.w===0)return -if(s.j(0,b3.a)){s=A.aDT() -r=b3.a -q=r.w -p=r.d -o=r.z -s.Q=!0 -s.cx=0 -s.El() -s.Ht(p) -s.Hu(q) -s.Hs(o) -B.P.fA(s.r,0,r.r) -B.er.fA(s.f,0,r.f) -n=r.y -if(n==null)s.y=null -else{m=s.y -m.toString -B.er.fA(m,0,n)}n=r.Q -s.Q=n -if(!n){s.a=r.a -s.b=r.b -s.as=r.as}s.cx=r.cx -s.at=r.at -s.ax=r.ax -s.ay=r.ay -s.ch=r.ch -s.CW=r.CW -l=new A.oW(s,B.bK) -l.FA(b3)}else l=b4 -s=b3.a -k=s.d -if(b8===0)if(b7!=null)r=b7[15]===1&&b7[14]===0&&b7[11]===0&&b7[10]===1&&b7[9]===0&&b7[8]===0&&b7[7]===0&&b7[6]===0&&b7[3]===0&&b7[2]===0 -else r=!0 -else r=!1 -n=l.a -if(r)s.AF(0,n) -else{j=new A.os(n) -j.pB(n) -i=new Float32Array(8) -for(s=b7==null,h=2*(k-1),g=h+1,r=k===0,f=!0;e=j.lL(0,i),e!==6;f=!1)switch(e){case 0:if(s){m=i[0] -d=m+b5}else{m=b7[0] -c=i[0] -d=m*(c+b5)+b7[4]*(i[1]+b6)+b7[12] -m=c}if(s){c=i[1] -b=c+b6}else{c=b7[1] -a=b7[5] -a0=i[1] -b=c*(m+b5)+a*(a0+b6)+b7[13]+b6 -c=a0}if(f&&b3.a.w!==0){b3.pR() -if(r){a1=0 -a2=0}else{m=b3.a.f -a1=m[h] -a2=m[g]}if(b3.c<=0||!r||a1!==d||a2!==b)b3.cc(0,i[0],i[1])}else{a3=b3.a.hS(0,0) -b3.c=a3+1 -a4=a3*2 -a=b3.a.f -a[a4]=m -a[a4+1]=c -b3.e=b3.d=-1}break -case 1:b3.cc(0,i[2],i[3]) -break -case 2:m=i[2] -c=i[3] -a=i[4] -a0=i[5] -a3=b3.a.hS(2,0) -a4=a3*2 -a5=b3.a.f -a5[a4]=m -a5[a4+1]=c -a4=(a3+1)*2 -a5[a4]=a -a5[a4+1]=a0 -b3.e=b3.d=-1 -break -case 3:b3.h3(i[2],i[3],i[4],i[5],n.y[j.b]) -break -case 4:m=i[2] -c=i[3] -a=i[4] -a0=i[5] -a5=i[6] -a6=i[7] -b3.pR() -a3=b3.a.hS(4,0) -a4=a3*2 -a7=b3.a.f -a7[a4]=m -a7[a4+1]=c -a4=(a3+1)*2 -a7[a4]=a -a7[a4+1]=a0 -a4=(a3+2)*2 -a7[a4]=a5 -a7[a4+1]=a6 -b3.e=b3.d=-1 -break -case 5:b3.aL(0) -break}}s=l.c -if(s>=0)b3.c=k+s -s=b3.a -a8=s.d -a9=s.f -for(b0=k*2,s=a8*2,r=b7==null;b0s.c||q>s.d)return!1 -p=a3.a -o=new A.ahm(p,r,q,new Float32Array(18)) -o.alf() -n=B.dg===a3.b -m=o.d -if((n?m&1:m)!==0)return!0 -l=o.e -if(l<=1)return l!==0 -p=(l&1)===0 -if(!p||n)return!p -k=A.aJU(a3.a,!0) -j=new Float32Array(18) -i=A.b([],t.yv) -p=k.a -h=!1 -do{g=i.length -switch(k.lL(0,j)){case 0:case 5:break -case 1:A.b6Z(j,r,q,i) -break -case 2:A.b7_(j,r,q,i) -break -case 3:f=k.f -A.b6X(j,r,q,p.y[f],i) -break -case 4:A.b6Y(j,r,q,i) -break -case 6:h=!0 -break}f=i.length -if(f>g){e=f-1 -d=i[e] -c=d.a -b=d.b -if(Math.abs(c*c+b*b-0)<0.000244140625)B.b.ck(i,e) -else for(a=0;a0?1:0 -if(f<=0){f=b*a1 -if(f<0)f=-1 -else f=f>0?1:0 -f=f<=0}else f=!1}else f=!1 -if(f){a2=B.b.ck(i,e) -if(a!==i.length)i[a]=a2 -break}}}}while(!h) -return i.length!==0}, -cz(a){var s,r=a.a,q=a.b,p=this.a,o=A.aZI(p,r,q),n=p.e,m=new Uint8Array(n) -B.P.fA(m,0,p.r) -o=new A.vP(o,m) -n=p.x -o.x=n -o.z=p.z -s=p.y -if(s!=null){n=new Float32Array(n) -o.y=n -B.er.fA(n,0,s)}o.e=p.e -o.w=p.w -o.c=p.c -o.d=p.d -n=p.Q -o.Q=n -if(!n){o.a=p.a.aK(0,r,q) -n=p.b -o.b=n==null?null:n.aK(0,r,q) -o.as=p.as}o.cx=p.cx -o.at=p.at -o.ax=p.ax -o.ay=p.ay -o.ch=p.ch -o.CW=p.CW -r=new A.oW(o,B.bK) -r.FA(this) -return r}, -hm(e2){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7,c8,c9,d0,d1,d2,d3,d4,d5,d6,d7,d8,d9,e0=this,e1=e0.a -if((e1.ax?e1.CW:-1)===-1)s=(e1.at?e1.CW:-1)!==-1 -else s=!0 -if(s)return e1.hm(0) -if(!e1.Q&&e1.b!=null){e1=e1.b -e1.toString -return e1}r=new A.os(e1) -r.pB(e1) -q=e0.a.f -for(p=!1,o=0,n=0,m=0,l=0,k=0,j=0,i=0,h=0,g=null,f=null,e=null;d=r.ask(),d!==6;){c=r.e -switch(d){case 0:j=q[c] -h=q[c+1] -i=h -k=j -break -case 1:j=q[c+2] -h=q[c+3] -i=h -k=j -break -case 2:if(f==null)f=new A.aid() -b=c+1 -a=q[c] -a0=b+1 -a1=q[b] -b=a0+1 -a2=q[a0] -a0=b+1 -a3=q[b] -a4=q[a0] -a5=q[a0+1] -s=f.a=Math.min(a,a4) -a6=f.b=Math.min(a1,a5) -a7=f.c=Math.max(a,a4) -a8=f.d=Math.max(a1,a5) -a9=a-2*a2+a4 -if(Math.abs(a9)>0.000244140625){b0=(a-a2)/a9 -if(b0>=0&&b0<=1){b1=1-b0 -b2=b1*b1 -b3=2*b0*b1 -b0*=b0 -b4=b2*a+b3*a2+b0*a4 -b5=b2*a1+b3*a3+b0*a5 -s=Math.min(s,b4) -f.a=s -a7=Math.max(a7,b4) -f.c=a7 -a6=Math.min(a6,b5) -f.b=a6 -a8=Math.max(a8,b5) -f.d=a8}}a9=a1-2*a3+a5 -if(Math.abs(a9)>0.000244140625){b6=(a1-a3)/a9 -if(b6>=0&&b6<=1){b7=1-b6 -b2=b7*b7 -b3=2*b6*b7 -b6*=b6 -b8=b2*a+b3*a2+b6*a4 -b9=b2*a1+b3*a3+b6*a5 -s=Math.min(s,b8) -f.a=s -a7=Math.max(a7,b8) -f.c=a7 -a6=Math.min(a6,b9) -f.b=a6 -a8=Math.max(a8,b9) -f.d=a8}h=a8 -j=a7 -i=a6 -k=s}else{h=a8 -j=a7 -i=a6 -k=s}break -case 3:if(e==null)e=new A.a6s() -s=e1.y[r.b] -b=c+1 -a=q[c] -a0=b+1 -a1=q[b] -b=a0+1 -a2=q[a0] -a0=b+1 -a3=q[b] -a4=q[a0] -a5=q[a0+1] -e.a=Math.min(a,a4) -e.b=Math.min(a1,a5) -e.c=Math.max(a,a4) -e.d=Math.max(a1,a5) -c0=new A.my() -c1=a4-a -c2=s*(a2-a) -if(c0.mS(s*c1-c1,c1-2*c2,c2)!==0){a6=c0.a -a6.toString -if(a6>=0&&a6<=1){c3=2*(s-1) -a9=(-c3*a6+c3)*a6+1 -c4=a2*s -b4=(((a4-2*c4+a)*a6+2*(c4-a))*a6+a)/a9 -c4=a3*s -b5=(((a5-2*c4+a1)*a6+2*(c4-a1))*a6+a1)/a9 -e.a=Math.min(e.a,b4) -e.c=Math.max(e.c,b4) -e.b=Math.min(e.b,b5) -e.d=Math.max(e.d,b5)}}c5=a5-a1 -c6=s*(a3-a1) -if(c0.mS(s*c5-c5,c5-2*c6,c6)!==0){a6=c0.a -a6.toString -if(a6>=0&&a6<=1){c3=2*(s-1) -a9=(-c3*a6+c3)*a6+1 -c4=a2*s -b8=(((a4-2*c4+a)*a6+2*(c4-a))*a6+a)/a9 -c4=a3*s -b9=(((a5-2*c4+a1)*a6+2*(c4-a1))*a6+a1)/a9 -e.a=Math.min(e.a,b8) -e.c=Math.max(e.c,b8) -e.b=Math.min(e.b,b9) -e.d=Math.max(e.d,b9)}}k=e.a -i=e.b -j=e.c -h=e.d -break -case 4:if(g==null)g=new A.a6C() -b=c+1 -c7=q[c] -a0=b+1 -c8=q[b] -b=a0+1 -c9=q[a0] -a0=b+1 -d0=q[b] -b=a0+1 -d1=q[a0] -a0=b+1 -d2=q[b] -d3=q[a0] -d4=q[a0+1] -s=Math.min(c7,d3) -g.a=s -g.c=Math.min(c8,d4) -a6=Math.max(c7,d3) -g.b=a6 -g.d=Math.max(c8,d4) -if(!(c7c9&&c9>d1&&d1>d3 -else a7=!0 -if(!a7){a7=-c7 -d5=a7+3*(c9-d1)+d3 -d6=2*(c7-2*c9+d1) -d7=d6*d6-4*d5*(a7+c9) -if(d7>=0&&Math.abs(d5)>0.000244140625){a7=-d6 -a8=2*d5 -if(d7===0){d8=a7/a8 -b1=1-d8 -if(d8>=0&&d8<=1){a7=3*b1 -b4=b1*b1*b1*c7+a7*b1*d8*c9+a7*d8*d8*d1+d8*d8*d8*d3 -g.a=Math.min(b4,s) -g.b=Math.max(b4,a6)}}else{d7=Math.sqrt(d7) -d8=(a7-d7)/a8 -b1=1-d8 -if(d8>=0&&d8<=1){s=3*b1 -b4=b1*b1*b1*c7+s*b1*d8*c9+s*d8*d8*d1+d8*d8*d8*d3 -g.a=Math.min(b4,g.a) -g.b=Math.max(b4,g.b)}d8=(a7+d7)/a8 -b1=1-d8 -if(d8>=0&&d8<=1){s=3*b1 -b4=b1*b1*b1*c7+s*b1*d8*c9+s*d8*d8*d1+d8*d8*d8*d3 -g.a=Math.min(b4,g.a) -g.b=Math.max(b4,g.b)}}}}if(!(c8d0&&d0>d2&&d2>d4 -else s=!0 -if(!s){s=-c8 -d5=s+3*(d0-d2)+d4 -d6=2*(c8-2*d0+d2) -d7=d6*d6-4*d5*(s+d0) -if(d7>=0&&Math.abs(d5)>0.000244140625){s=-d6 -a6=2*d5 -if(d7===0){d8=s/a6 -b1=1-d8 -if(d8>=0&&d8<=1){s=3*b1 -b5=b1*b1*b1*c8+s*b1*d8*d0+s*d8*d8*d2+d8*d8*d8*d4 -g.c=Math.min(b5,g.c) -g.d=Math.max(b5,g.d)}}else{d7=Math.sqrt(d7) -d8=(s-d7)/a6 -b1=1-d8 -if(d8>=0&&d8<=1){a7=3*b1 -b5=b1*b1*b1*c8+a7*b1*d8*d0+a7*d8*d8*d2+d8*d8*d8*d4 -g.c=Math.min(b5,g.c) -g.d=Math.max(b5,g.d)}s=(s+d7)/a6 -b7=1-s -if(s>=0&&s<=1){a6=3*b7 -b5=b7*b7*b7*c8+a6*b7*s*d0+a6*s*s*d2+s*s*s*d4 -g.c=Math.min(b5,g.c) -g.d=Math.max(b5,g.d)}}}}k=g.a -i=g.c -j=g.b -h=g.d -break}if(!p){l=h -m=j -n=i -o=k -p=!0}else{o=Math.min(o,k) -m=Math.max(m,j) -n=Math.min(n,i) -l=Math.max(l,h)}}d9=p?new A.y(o,n,m,l):B.u -e0.a.hm(0) -return e0.a.b=d9}, -k(a){return this.cu(0)}, -$ivO:1} -A.ahk.prototype={ -F3(a){var s=this,r=s.r,q=s.x -if(r!==q||s.w!==s.y){if(isNaN(r)||isNaN(s.w)||isNaN(q)||isNaN(s.y))return 5 -a[0]=r -a[1]=s.w -a[2]=q -r=s.y -a[3]=r -s.r=q -s.w=r -return 1}else{a[0]=q -a[1]=s.y -return 5}}, -yw(){var s,r,q=this -if(q.e===1){q.e=2 -return new A.k(q.x,q.y)}s=q.a.f -r=q.Q -return new A.k(s[r-2],s[r-1])}, -lL(a,b){var s,r,q,p,o,n,m=this,l=m.z,k=m.a -if(l===k.w){if(m.d&&m.e===2){if(1===m.F3(b))return 1 -m.d=!1 -return 5}return 6}s=m.z=l+1 -r=k.r[l] -switch(r){case 0:if(m.d){m.z=s-1 -q=m.F3(b) -if(q===5)m.d=!1 -return q}if(s===m.c)return 6 -l=k.f -k=m.Q -s=m.Q=k+1 -p=l[k] -m.Q=s+1 -o=l[s] -m.x=p -m.y=o -b[0]=p -b[1]=o -m.e=1 -m.r=p -m.w=o -m.d=!0 -break -case 1:n=m.yw() -l=k.f -k=m.Q -s=m.Q=k+1 -p=l[k] -m.Q=s+1 -o=l[s] -b[0]=n.a -b[1]=n.b -b[2]=p -b[3]=o -m.r=p -m.w=o -break -case 3:++m.f -n=m.yw() -b[0]=n.a -b[1]=n.b -l=k.f -k=m.Q -s=m.Q=k+1 -b[2]=l[k] -k=m.Q=s+1 -b[3]=l[s] -s=m.Q=k+1 -k=l[k] -b[4]=k -m.r=k -m.Q=s+1 -s=l[s] -b[5]=s -m.w=s -break -case 2:n=m.yw() -b[0]=n.a -b[1]=n.b -l=k.f -k=m.Q -s=m.Q=k+1 -b[2]=l[k] -k=m.Q=s+1 -b[3]=l[s] -s=m.Q=k+1 -k=l[k] -b[4]=k -m.r=k -m.Q=s+1 -s=l[s] -b[5]=s -m.w=s -break -case 4:n=m.yw() -b[0]=n.a -b[1]=n.b -l=k.f -k=m.Q -s=m.Q=k+1 -b[2]=l[k] -k=m.Q=s+1 -b[3]=l[s] -s=m.Q=k+1 -b[4]=l[k] -k=m.Q=s+1 -b[5]=l[s] -s=m.Q=k+1 -k=l[k] -b[6]=k -m.r=k -m.Q=s+1 -s=l[s] -b[7]=s -m.w=s -break -case 5:r=m.F3(b) -if(r===1)--m.z -else{m.d=!1 -m.e=0}m.r=m.x -m.w=m.y -break -case 6:break -default:throw A.d(A.bW("Unsupport Path verb "+r,null,null))}return r}} -A.vP.prototype={ -hn(a,b,c){var s=a*2,r=this.f -r[s]=b -r[s+1]=c}, -i6(a){var s=this.f,r=a*2 -return new A.k(s[r],s[r+1])}, -Mt(){var s=this -if(s.ay)return new A.y(s.i6(0).a,s.i6(0).b,s.i6(1).a,s.i6(2).b) -else return s.w===4?s.a8N():null}, -hm(a){var s -if(this.Q)this.Ft() -s=this.a -s.toString -return s}, -a8N(){var s,r,q,p,o,n,m,l,k=this,j=null,i=k.i6(0).a,h=k.i6(0).b,g=k.i6(1).a,f=k.i6(1).b -if(k.r[1]!==1||f!==h)return j -s=g-i -r=k.i6(2).a -q=k.i6(2).b -if(k.r[2]!==1||r!==g)return j -p=q-f -o=k.i6(3) -n=k.i6(3).b -if(k.r[3]!==1||n!==q)return j -if(r-o.a!==s||n-h!==p)return j -m=Math.min(i,g) -l=Math.min(h,q) -return new A.y(m,l,m+Math.abs(s),l+Math.abs(p))}, -a0h(){var s,r,q,p,o -if(this.w===2){s=this.r -s=s[0]!==0||s[1]!==1}else s=!0 -if(s)return null -s=this.f -r=s[0] -q=s[1] -p=s[2] -o=s[3] -if(q===o||r===p)return new A.y(r,q,p,o) -return null}, -Qk(){var s,r,q,p,o,n,m,l,k,j,i,h={},g=this.hm(0),f=A.b([],t.kG),e=new A.os(this) -e.pB(this) -s=new Float32Array(8) -h.a=e.lL(0,s) -h.b=0 -for(;r=h.a=e.lL(0,s),r!==6;)if(3===r){q=s[2] -p=s[3] -o=q-s[0] -n=p-s[1] -m=s[4] -l=s[5] -if(o!==0){k=Math.abs(o) -j=Math.abs(l-p)}else{j=Math.abs(n) -k=n!==0?Math.abs(m-q):Math.abs(o)}f.push(new A.bc(k,j));++h.b}m=f[0] -l=f[1] -i=f[2] -return A.aie(g,f[3],i,m,l)}, -j(a,b){if(b==null)return!1 -if(this===b)return!0 -if(J.Y(b)!==A.u(this))return!1 -return b instanceof A.vP&&this.aoE(b)}, -gA(a){var s=this -return A.T(s.cx,s.f,s.y,s.r,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -aoE(a){var s,r,q,p,o,n,m,l=this -if(l.cx!==a.cx)return!1 -s=l.d -if(s!==a.d)return!1 -r=s*2 -for(q=l.f,p=a.f,o=0;oq.c){s=a+10 -q.c=s -r=new Float32Array(s*2) -B.er.fA(r,0,q.f) -q.f=r}q.d=a}, -Hu(a){var s,r,q=this -if(a>q.e){s=a+8 -q.e=s -r=new Uint8Array(s) -B.P.fA(r,0,q.r) -q.r=r}q.w=a}, -Hs(a){var s,r,q=this -if(a>q.x){s=a+4 -q.x=s -r=new Float32Array(s) -s=q.y -if(s!=null)B.er.fA(r,0,s) -q.y=r}q.z=a}, -AF(a,b){var s,r,q,p,o,n,m,l,k,j,i=this,h=b.d,g=i.d+h -i.El() -i.Ht(g) -s=b.f -for(r=h*2-1,q=g*2-1,p=i.f;r>=0;--r,--q)p[q]=s[r] -o=i.w -n=b.w -i.Hu(o+n) -for(p=i.r,m=b.r,l=0;lm){l.a=m -l.b=s}else if(s===m)return 1}return o}} -A.am0.prototype={ -WV(a){return(this.a*a+this.c)*a+this.e}, -WW(a){return(this.b*a+this.d)*a+this.f}} -A.ahm.prototype={ -alf(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=this,d=e.a,c=A.aJU(d,!0) -for(s=e.f,r=t.td;q=c.lL(0,s),q!==6;)switch(q){case 0:case 5:break -case 1:e.a8b() -break -case 2:p=!A.aJV(s)?A.aZJ(s):0 -o=e.Ph(s[0],s[1],s[2],s[3],s[4],s[5]) -e.d+=p>0?o+e.Ph(s[4],s[5],s[6],s[7],s[8],s[9]):o -break -case 3:n=d.y[c.f] -m=s[0] -l=s[1] -k=s[2] -j=s[3] -i=s[4] -h=s[5] -g=A.aJV(s) -f=A.b([],r) -new A.hz(m,l,k,j,i,h,n).amH(f) -e.Pg(f[0]) -if(!g&&f.length===2)e.Pg(f[1]) -break -case 4:e.a88() -break}}, -a8b(){var s,r,q,p,o,n=this,m=n.f,l=m[0],k=m[1],j=m[2],i=m[3] -if(k>i){s=k -r=i -q=-1}else{s=i -r=k -q=1}m=n.c -if(ms)return -p=n.b -if(A.ahn(p,m,l,k,j,i)){++n.e -return}if(m===s)return -o=(j-l)*(m-k)-(i-k)*(p-l) -if(o===0){if(p!==j||m!==i)++n.e -q=0}else if(A.b_x(o)===q)q=0 -n.d+=q}, -Ph(a,b,c,d,e,f){var s,r,q,p,o,n,m,l,k=this -if(b>f){s=b -r=f -q=-1}else{s=f -r=b -q=1}p=k.c -if(ps)return 0 -o=k.b -if(A.ahn(o,p,a,b,e,f)){++k.e -return 0}if(p===s)return 0 -n=new A.my() -if(0===n.mS(b-2*d+f,2*(d-b),b-p))m=q===1?a:e -else{l=n.a -l.toString -m=((e-2*c+a)*l+2*(c-a))*l+a}if(Math.abs(m-o)<0.000244140625)if(o!==e||p!==f){++k.e -return 0}return mg){s=h -r=g -q=-1}else{s=g -r=h -q=1}p=i.c -if(ps)return -o=i.b -if(A.ahn(o,p,a.a,h,a.e,g)){++i.e -return}if(p===s)return -n=a.r -m=a.d*n-p*n+p -l=new A.my() -if(0===l.mS(g+(h-2*m),2*(m-h),h-p))k=q===1?a.a:a.e -else{j=l.a -j.toString -k=A.aWE(a.a,a.c,a.e,n,j)/A.aWD(n,j)}if(Math.abs(k-o)<0.000244140625)if(o!==a.e||p!==a.f){++i.e -return}p=i.d -i.d=p+(kq){p=b -o=q -n=-1}else{p=q -o=b -n=1}m=g.c -if(mp)return -l=g.b -if(A.ahn(l,m,d,b,r,q)){++g.e -return}if(m===p)return -k=Math.min(d,Math.min(a,Math.min(s,r))) -j=Math.max(d,Math.max(a,Math.max(s,r))) -if(lj){g.d+=n -return}i=A.aNP(f,a0,m) -if(i==null)return -h=A.aO5(d,a,s,r,i) -if(Math.abs(h-l)<0.000244140625)if(l!==r||m!==q){++g.e -return}f=g.d -g.d=f+(h1,o=null,n=1/0,m=0;m<$.na.length;++m){l=$.na[m] -k=self.window.devicePixelRatio -if(k===0)k=1 -if(l.y!==k)continue -k=l.a -j=k.c-k.a -k=k.d-k.b -i=j*k -h=c.dy -g=self.window.devicePixelRatio -if(l.r>=B.d.e9(s*(g===0?1:g))+2){g=self.window.devicePixelRatio -f=l.w>=B.d.e9(r*(g===0?1:g))+2&&l.ay===h}else f=!1 -e=i4)){if(j===b&&k===a){o=l -break}n=i -o=l}}if(o!=null){B.b.F($.na,o) -o.sln(0,a0) -o.b=c.fx -return o}d=A.aW_(a0,c.cy.b.d,c.dy) -d.b=c.fx -return d}, -OC(){A.x(this.d.style,"transform","translate("+A.j(this.CW)+"px, "+A.j(this.cx)+"px)")}, -eR(){this.OC() -this.ym(null)}, -bq(){this.Fw(null) -this.fr=!0 -this.NI()}, -bB(a,b){var s,r,q=this -q.NM(0,b) -q.fx=b.fx -if(b!==q)b.fx=null -if(q.CW!==b.CW||q.cx!==b.cx)q.OC() -q.Fw(b) -if(q.cy===b.cy){s=q.ch -r=s instanceof A.lK&&q.dy!==s.ay -if(q.fr||r)q.ym(b) -else q.ch=b.ch}else q.ym(b)}, -kX(){var s=this -s.NL() -s.Fw(s) -if(s.fr)s.ym(s)}, -jE(){A.a39(this.ch) -this.ch=null -this.NJ()}} -A.ahq.prototype={ -$0(){var s,r=this.a,q=r.fy -q.toString -s=r.ch=r.a9T(q) -s.b=r.fx -q=r.d -q.toString -A.aFL(q) -r.d.append(s.c) -s.a0(0) -q=r.cy.b -q.toString -r=r.fy -r.toString -q.IA(s,r) -s.qP()}, -$S:0} -A.aiH.prototype={ -IA(a,b){var s,r,q,p,o,n,m,l,k,j -try{m=this.b -m.toString -m=A.aOU(b,m) -l=this.c -k=l.length -if(m){s=k -for(r=0;rq*q+p*p||g*g+f*f>o*o+n*n||e*e+d*d>m*m+l*l||c*c+b*b>k*k+j*j)return -a3.e=a3.d.c=!0 -a=A.yI(b2) -b2.b=!0 -a0=new A.Qd(b0,b1,b2.a) -q=$.ad().c_() -q.sr1(B.dg) -q.eG(b0) -q.eG(b1) -q.aL(0) -a0.x=q -a1=Math.min(a5,a7) -a2=Math.max(a5,a7) -a3.a.ph(a1-a,Math.min(a6,a8)-a,a2+a,Math.max(a6,a8)+a,a0) -a3.c.push(a0)}, -cY(a,a0){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b=this -if(a0.a.w==null){t.Ci.a(a) -s=a.a.Mt() -if(s!=null){b.cT(s,a0) -return}r=a.a -q=r.ax?r.Qk():null -if(q!=null){b.cC(q,a0) -return}p=a.a.a0h() -if(p!=null){r=a0.a.c -r=(r==null?0:r)===0}else r=!1 -if(r){r=p.a -o=p.c -n=Math.min(r,o) -m=p.b -l=p.d -k=Math.min(m,l) -r=o-r -j=Math.abs(r) -m=l-m -i=Math.abs(m) -h=m===0?1:i -g=r===0?1:j -a0.sbC(0,B.aX) -b.cT(new A.y(n,k,n+g,k+h),a0) -return}}t.Ci.a(a) -if(a.a.w!==0){b.e=b.d.c=!0 -f=a.hm(0) -e=A.yI(a0) -if(e!==0)f=f.cV(e) -r=a.a -o=new A.vP(r.f,r.r) -o.e=r.e -o.w=r.w -o.c=r.c -o.d=r.d -o.x=r.x -o.z=r.z -o.y=r.y -m=r.Q -o.Q=m -if(!m){o.a=r.a -o.b=r.b -o.as=r.as}o.cx=r.cx -o.at=r.at -o.ax=r.ax -o.ay=r.ay -o.ch=r.ch -o.CW=r.CW -d=new A.oW(o,B.bK) -d.FA(a) -a0.b=!0 -c=new A.Qj(d,a0.a) -b.a.lZ(f,c) -d.b=a.b -b.c.push(c)}}, -mE(a,b){var s,r,q,p,o=this -t.zI.a(a) -if(!a.e)return -o.e=!0 -s=o.d -s.c=!0 -s.b=!0 -r=new A.Qi(a,b) -q=a.gfE().z -s=b.a -p=b.b -o.a.ph(s+q.a,p+q.b,s+q.c,p+q.d,r) -o.c.push(r)}} -A.dx.prototype={} -A.Aq.prototype={ -ark(a){var s=this -if(s.a)return!0 -return s.ea.d||s.da.c}} -A.Cw.prototype={ -eq(a){a.cQ(0)}, -k(a){return this.cu(0)}} -A.Qn.prototype={ -eq(a){a.cl(0)}, -k(a){return this.cu(0)}} -A.Qr.prototype={ -eq(a){a.aK(0,this.a,this.b)}, -k(a){return this.cu(0)}} -A.Qp.prototype={ -eq(a){a.f2(0,this.a,this.b)}, -k(a){return this.cu(0)}} -A.Qo.prototype={ -eq(a){a.ne(0,this.a)}, -k(a){return this.cu(0)}} -A.Qq.prototype={ -eq(a){a.a7(0,this.a)}, -k(a){return this.cu(0)}} -A.Qb.prototype={ -eq(a){a.lq(this.f,this.r)}, -k(a){return this.cu(0)}} -A.Qa.prototype={ -eq(a){a.o7(this.f)}, -k(a){return this.cu(0)}} -A.Q9.prototype={ -eq(a){a.i8(0,this.f)}, -k(a){return this.cu(0)}} -A.Qf.prototype={ -eq(a){a.hD(this.f,this.r,this.w)}, -k(a){return this.cu(0)}} -A.Qh.prototype={ -eq(a){a.qL(this.f)}, -k(a){return this.cu(0)}} -A.Ql.prototype={ -eq(a){a.cT(this.f,this.r)}, -k(a){return this.cu(0)}} -A.Qk.prototype={ -eq(a){a.cC(this.f,this.r)}, -k(a){return this.cu(0)}} -A.Qd.prototype={ -eq(a){var s=this.w -if(s.b==null)s.b=B.aX -a.cY(this.x,s)}, -k(a){return this.cu(0)}} -A.Qg.prototype={ -eq(a){a.qK(this.f,this.r)}, -k(a){return this.cu(0)}} -A.Qc.prototype={ -eq(a){a.iZ(this.f,this.r,this.w)}, -k(a){return this.cu(0)}} -A.Qj.prototype={ -eq(a){a.cY(this.f,this.r)}, -k(a){return this.cu(0)}} -A.Qm.prototype={ -eq(a){var s=this -a.qM(s.f,s.r,s.w,s.x)}, -k(a){return this.cu(0)}} -A.Qe.prototype={ -eq(a){var s=this -a.lx(s.f,s.r,s.w,s.x)}, -k(a){return this.cu(0)}} -A.Qi.prototype={ -eq(a){a.mE(this.f,this.r)}, -k(a){return this.cu(0)}} -A.avM.prototype={ -lq(a,b){var s,r,q,p,o=this,n=a.a,m=a.b,l=a.c,k=a.d -if(!o.x){s=$.aGj() -s[0]=n -s[1]=m -s[2]=l -s[3]=k -A.aFT(o.y,s) -n=s[0] -m=s[1] -l=s[2] -k=s[3]}if(!o.z){o.Q=n -o.as=m -o.at=l -o.ax=k -o.z=!0 -r=k -q=l -p=m -s=n}else{s=o.Q -if(n>s){o.Q=n -s=n}p=o.as -if(m>p){o.as=m -p=m}q=o.at -if(l=q||p>=r)b.a=!0 -else{b.b=s -b.c=p -b.d=q -b.e=r}}, -lZ(a,b){this.ph(a.a,a.b,a.c,a.d,b)}, -ph(a,b,c,d,e){var s,r,q,p,o,n,m,l,k,j=this -if(a===c||b===d){e.a=!0 -return}if(!j.x){s=$.aGj() -s[0]=a -s[1]=b -s[2]=c -s[3]=d -A.aFT(j.y,s) -r=s[0] -q=s[1] -p=s[2] -o=s[3]}else{o=d -p=c -q=b -r=a}if(j.z){n=j.at -if(r>=n){e.a=!0 -return}m=j.Q -if(p<=m){e.a=!0 -return}l=j.ax -if(q>=l){e.a=!0 -return}k=j.as -if(o<=k){e.a=!0 -return}if(rn)p=n -if(ql)o=l}e.b=r -e.c=q -e.d=p -e.e=o -if(j.b){j.c=Math.min(Math.min(j.c,r),p) -j.e=Math.max(Math.max(j.e,r),p) -j.d=Math.min(Math.min(j.d,q),o) -j.f=Math.max(Math.max(j.f,q),o)}else{j.c=Math.min(r,p) -j.e=Math.max(r,p) -j.d=Math.min(q,o) -j.f=Math.max(q,o)}j.b=!0}, -MG(){var s=this,r=s.y,q=new A.cm(new Float32Array(16)) -q.aS(r) -s.r.push(q) -r=s.z?new A.y(s.Q,s.as,s.at,s.ax):null -s.w.push(r)}, -an1(){var s,r,q,p,o,n,m,l,k,j,i=this -if(!i.b)return B.u -s=i.a -r=s.a -if(isNaN(r))r=-1/0 -q=s.c -if(isNaN(q))q=1/0 -p=s.b -if(isNaN(p))p=-1/0 -o=s.d -if(isNaN(o))o=1/0 -s=i.c -n=i.e -m=Math.min(s,n) -l=Math.max(s,n) -n=i.d -s=i.f -k=Math.min(n,s) -j=Math.max(n,s) -if(l1;)s.pop() -t.on.a(B.b.gM(s)).oY(new A.ai3())}, -$S:0} -A.anC.prototype={ -$0(){var s,r,q=t.on,p=this.a.a -if($.anA==null)q.a(B.b.gM(p)).bq() -else{s=q.a(B.b.gM(p)) -r=$.anA -r.toString -s.bB(0,r)}A.b4X(q.a(B.b.gM(p))) -$.anA=q.a(B.b.gM(p)) -return new A.wS(q.a(B.b.gM(p)).d)}, -$S:645} -A.CG.prototype={ -qc(a){this.y9(a) -this.CW=a.CW -this.dy=a.dy -a.dy=a.CW=null}, -ghA(){return this.CW}, -jE(){var s=this -s.tx() -$.ew.Dk(s.dy) -s.CW=s.dy=null}, -oY(a){++a.b -this.a2L(a);--a.b}, -bN(a){var s=this.oc("flt-shader-mask"),r=A.bo(self.document,"flt-mask-interior") -A.x(r.style,"position","absolute") -this.CW=r -s.append(r) -return s}, -eR(){var s,r,q,p,o,n=this -$.ew.Dk(n.dy) -n.dy=null -if(t.R1.b(n.cx)){s=n.d.style -r=n.cy -q=r.a -A.x(s,"left",A.j(q)+"px") -p=r.b -A.x(s,"top",A.j(p)+"px") -o=r.c-q -A.x(s,"width",A.j(o)+"px") -r=r.d-p -A.x(s,"height",A.j(r)+"px") -s=n.CW.style -A.x(s,"left",A.j(-q)+"px") -A.x(s,"top",A.j(-p)+"px") -if(o>0&&r>0)n.a6P() -return}throw A.d(A.ck("Shader type not supported for ShaderMask"))}, -a6P(){var s,r,q,p,o,n,m,l=this,k="filter",j=l.cx -if(j instanceof A.qI){s=l.cy -r=s.a -q=s.b -p=A.aQ(j.Ja(s.aK(0,-r,-q),1,!0)) -o=l.db -switch(o.a){case 0:case 8:case 7:j=l.CW -if(j!=null)A.x(j.style,"visibility","hidden") -return -case 2:case 6:A.x(l.d.style,k,"") -return -case 3:o=B.AH -break -case 1:case 4:case 5:case 9:case 10:case 11:case 12:case 13:case 14:case 15:case 16:case 17:case 18:case 19:case 20:case 21:case 22:case 23:case 24:case 25:case 26:case 27:case 28:break}n=A.b6W(p,o,s.c-r,s.d-q) -l.dy=n.b -j="url(#"+n.a -if(l.fr)A.x(l.CW.style,k,j+")") -else A.x(l.d.style,k,j+")") -m=$.ew -m.toString -j=l.dy -j.toString -m.alM(j)}}, -bB(a,b){var s=this -s.m4(0,b) -if(s.cx!==b.cx||!s.cy.j(0,b.cy)||s.db!==b.db)s.eR()}, -$ialw:1} -A.agW.prototype={ -a0Y(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g,f=this -for(s=f.d,r=f.c,q=a.a,p=f.b,o=b.a,n=0;n>>24&255)<1}, -$S:646} -A.aly.prototype={} -A.Na.prototype={$iO5:1} -A.qI.prototype={ -anT(a,b,c){var s,r,q,p,o,n,m,l,k,j,i=this,h=i.f -if(h===B.cv||h===B.zN){s=i.r -r=b.a -q=b.b -p=i.b -o=i.c -n=p.a -m=o.a -p=p.b -o=o.b -if(s!=null){l=(n+m)/2-r -k=(p+o)/2-q -s.a_g(0,n-l,p-k) -p=s.b -n=s.c -s.a_g(0,m-l,o-k) -j=a.createLinearGradient(p+l-r,n+k-q,s.b+l-r,s.c+k-q)}else j=a.createLinearGradient(n-r,p-q,m-r,o-q) -A.b2A(j,i.d,i.e,h===B.zN) -return j}else{h=a.createPattern(i.Ja(b,c,!1),"no-repeat") -h.toString -return h}}, -Ja(c5,c6,c7){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8=this,b9="premultipliedAlpha",c0="u_resolution",c1="m_gradient",c2="attachShader",c3=c5.c,c4=c5.a -c3-=c4 -s=B.d.e9(c3) -r=c5.d -q=c5.b -r-=q -p=B.d.e9(r) -if($.aFy==null)$.aFy=new A.azi() -o=$.aGs() -o.b=!0 -n=o.a -if(n==null){n=new A.ah0(s,p) -if(A.aJK())n.a=new globalThis.OffscreenCanvas(s,p) -else{m=n.b=A.Kc(p,s) -m.className="gl-canvas" -n.U0(m)}o.a=n}else if(s!==n.c&&p!==n.d){n.c=s -n.d=p -m=n.a -if(m!=null){m.width=s -n=n.a -n.toString -n.height=p}else{m=n.b -if(m!=null){A.uB(m,s) -m=n.b -m.toString -A.uA(m,p) -m=n.b -m.toString -n.U0(m)}}}o=o.a -o.toString -if(A.aJK()){o=o.a -o.toString -n=t.N -m=A.aXy(o,"webgl2",A.l([b9,!1],n,t.z)) -m.toString -l=new A.O_(m) -$.abk.b=A.m(n,t.eS) -l.dy=o -o=$.abk}else{o=o.b -o.toString -n=$.iA -n=(n==null?$.iA=A.yH():n)===1?"webgl":"webgl2" -m=t.N -n=A.lV(o,n,A.l([b9,!1],m,t.z)) -n.toString -l=new A.O_(n) -$.abk.b=A.m(m,t.eS) -l.dy=o -o=$.abk}l.fr=s -l.fx=p -k=A.aZC(b8.d,b8.e) -n=$.aLA -if(n==null){n=$.iA -if(n==null)n=$.iA=A.yH() -m=A.b([],t.zz) -j=A.b([],t.fe) -i=new A.Sm(m,j,n===2,!1,new A.cf("")) -i.Iq(11,"position") -i.Iq(11,"color") -i.mr(14,"u_ctransform") -i.mr(11,"u_scale") -i.mr(11,"u_shift") -m.push(new A.rX("v_color",11,3)) -n=A.b([],t.s) -j.push(new A.E3("main",n)) -n.push("gl_Position = ((u_ctransform * position) * u_scale) + u_shift;") -n.push("v_color = color.zyxw;") -n=$.aLA=i.bq()}m=b8.f -j=$.iA -if(j==null)j=$.iA=A.yH() -h=A.b([],t.zz) -g=A.b([],t.fe) -j=j===2 -i=new A.Sm(h,g,j,!0,new A.cf("")) -i.e=1 -i.Iq(11,"v_color") -i.mr(9,c0) -i.mr(14,c1) -f=i.Q -if(f==null)f=i.Q=new A.rX(j?"gFragColor":"gl_FragColor",11,3) -j=A.b([],t.s) -e=new A.E3("main",j) -g.push(e) -j.push("vec4 localCoord = m_gradient * vec4(gl_FragCoord.x, u_resolution.y - gl_FragCoord.y, 0, 1);") -j.push("float st = localCoord.x;") -j.push(f.a+" = "+A.b4x(i,e,k,m)+" * scale + bias;") -d=i.bq() -c=n+"||"+d -b=J.aN(o.bR(),c) -if(b==null){a=l.VE(0,"VERTEX_SHADER",n) -a0=l.VE(0,"FRAGMENT_SHADER",d) -n=l.a -j=n.createProgram() -A.bq(n,c2,[j,a]) -A.bq(n,c2,[j,a0]) -A.bq(n,"linkProgram",[j]) -h=l.ay -if(!A.bq(n,"getProgramParameter",[j,h==null?l.ay=n.LINK_STATUS:h]))A.U(A.ck(A.bq(n,"getProgramInfoLog",[j]))) -b=new A.O0(j) -J.hv(o.bR(),c,b)}o=l.a -n=b.a -A.bq(o,"useProgram",[n]) -j=b8.b -a1=j.a -a2=j.b -j=b8.c -a3=j.a -a4=j.b -a5=a3-a1 -a6=a4-a2 -a7=Math.sqrt(a5*a5+a6*a6) -j=a7<11920929e-14 -a8=j?0:-a6/a7 -a9=j?1:a5/a7 -b0=m!==B.cv -b1=b0?c3/2:(a1+a3)/2-c4 -b2=b0?r/2:(a2+a4)/2-q -b3=A.en() -b3.nx(-b1,-b2,0) -b4=A.en() -b5=b4.a -b5[0]=a9 -b5[1]=a8 -b5[4]=-a8 -b5[5]=a9 -b6=A.en() -b6.auG(0,0.5) -if(a7>11920929e-14)b6.bw(0,1/a7) -c3=b8.r -if(c3!=null){c3=c3.a -b6.f2(0,1,-1) -b6.aK(0,-c5.gaT().a,-c5.gaT().b) -b6.da(0,new A.cm(c3)) -b6.aK(0,c5.gaT().a,c5.gaT().b) -b6.f2(0,1,-1)}b6.da(0,b4) -b6.da(0,b3) -k.a0Y(l,b) -A.bq(o,"uniformMatrix4fv",[l.pg(0,n,c1),!1,b6.a]) -A.bq(o,"uniform2f",[l.pg(0,n,c0),s,p]) -b7=new A.abx(c7,c5,l,b,k,s,p).$0() -$.aGs().b=!1 -return b7}} -A.abx.prototype={ -$0(){var s,r,q,p=this,o="bindBuffer",n=$.aFy,m=p.b,l=p.c,k=p.d,j=p.e,i=p.f,h=p.r,g=m.c,f=m.a,e=m.d -m=m.b -s=l.a -if(p.a){n.WJ(new A.y(0,0,0+(g-f),0+(e-m)),l,k,j,i,h) -n=l.fr -r=A.Kc(l.fx,n) -n=A.lV(r,"2d",null) -n.toString -l.WI(0,t.e.a(n),0,0) -n=r.toDataURL("image/png") -A.uB(r,0) -A.uA(r,0) -A.bq(s,o,[l.grd(),null]) -A.bq(s,o,[l.gCm(),null]) -return n}else{n.WJ(new A.y(0,0,0+(g-f),0+(e-m)),l,k,j,i,h) -q=l.atx(j.e) -A.bq(s,o,[l.grd(),null]) -A.bq(s,o,[l.gCm(),null]) -q.toString -return q}}, -$S:227} -A.lY.prototype={ -gK2(){return""}} -A.FI.prototype={ -gK2(){return"blur("+A.j((this.a+this.b)*0.5)+"px)"}, -j(a,b){var s=this -if(b==null)return!1 -if(J.Y(b)!==A.u(s))return!1 -return b instanceof A.FI&&b.c===s.c&&b.a===s.a&&b.b===s.b}, -gA(a){return A.T(this.a,this.b,this.c,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){return"ImageFilter.blur("+this.a+", "+this.b+", "+this.c.k(0)+")"}} -A.Hm.prototype={ -j(a,b){if(b==null)return!1 -if(J.Y(b)!==A.u(this))return!1 -return b instanceof A.Hm&&b.b===this.b&&A.pF(b.a,this.a)}, -gA(a){return A.T(A.cn(this.a),this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){return"ImageFilter.matrix("+A.j(this.a)+", "+this.b.k(0)+")"}} -A.Nb.prototype={$ilY:1} -A.C1.prototype={} -A.afw.prototype={} -A.Sm.prototype={ -Iq(a,b){var s=new A.rX(b,a,1) -this.b.push(s) -return s}, -mr(a,b){var s=new A.rX(b,a,2) -this.b.push(s) -return s}, -UM(a,b){var s,r,q=this,p="varying ",o=b.c -switch(o){case 0:q.as.a+="const " -break -case 1:if(q.y)s="in " -else s=q.z?p:"attribute " -q.as.a+=s -break -case 2:q.as.a+="uniform " -break -case 3:s=q.y?"out ":p -q.as.a+=s -break}s=q.as -r=s.a+=A.b_V(b.b)+" "+b.a -if(o===0)o=s.a=r+" = " -else o=r -s.a=o+";\n"}, -bq(){var s,r,q,p,o,n=this,m=n.y -if(m)n.as.a+="#version 300 es\n" -s=n.e -if(s!=null){if(s===0)s="lowp" -else s=s===1?"mediump":"highp" -n.as.a+="precision "+s+" float;\n"}if(m&&n.Q!=null){m=n.Q -m.toString -n.UM(n.as,m)}for(m=n.b,s=m.length,r=n.as,q=0;q=0;--r,p=n){a.toString -o=B.b.d9(a,r)!==-1&&B.b.t(m,r) -n=s[r].d -n.toString -if(!o)if(p==null)q.append(n) -else q.insertBefore(n,p)}}, -aeJ(a0){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=this.x,d=e.length,c=a0.x,b=c.length,a=A.b([],t.cD) -for(s=0;s");s.u();){p=s.gJ(s) -o=p.a -p=p.b -r.push(new A.kJ(a,o,p,p,q))}}, -$S(){return this.b.i("~(0,B)")}} -A.ae0.prototype={ -$2(a,b){return a.b-b.b}, -$S(){return this.a.i("o(kJ<0>,kJ<0>)")}} -A.ae2.prototype={ -$1(a){var s,r,q=a.length -if(q===0)return null -if(q===1)return B.b.gbD(a) -s=q/2|0 -r=a[s] -r.e=this.$1(B.b.bX(a,0,s)) -r.f=this.$1(B.b.em(a,s+1)) -return r}, -$S(){return this.a.i("kJ<0>?(B>)")}} -A.ae1.prototype={ -$1(a){var s,r=this,q=a.e,p=q==null -if(p&&a.f==null)a.d=a.c -else if(p){q=a.f -q.toString -r.$1(q) -a.d=Math.max(a.c,a.f.d)}else{p=a.f -s=a.c -if(p==null){r.$1(q) -a.d=Math.max(s,a.e.d)}else{r.$1(p) -q=a.e -q.toString -r.$1(q) -a.d=Math.max(s,Math.max(a.e.d,a.f.d))}}}, -$S(){return this.a.i("~(kJ<0>)")}} -A.kJ.prototype={ -E5(a,b){var s,r=this -if(a>r.d)return -s=r.e -if(s!=null)s.E5(a,b) -s=r.b -if(s<=a&&a<=r.c)b.push(r.a) -if(a1&&e.charCodeAt(0)<127&&e.charCodeAt(1)<127) -o=A.b2K(new A.aer(h,e,a,p,q),t.S) -if(f.type!=="keydown")if(h.b){r=A.ql(f) -r.toString -r=r==="CapsLock" -n=r}else n=!1 -else n=!0 -if(h.b){r=A.ql(f) -r.toString -r=r==="CapsLock"}else r=!1 -if(r){h.SD(B.q,new A.aes(s,q,o),new A.aet(h,q)) -m=B.bE}else if(n){r=h.f -if(r.h(0,q)!=null){l=f.repeat -if(l==null)l=g -if(l===!0)m=B.H_ -else{l=h.d -l.toString -l.$1(new A.hI(s,B.be,q,o.$0(),g,!0)) -r.F(0,q) -m=B.bE}}else m=B.bE}else{if(h.f.h(0,q)==null){f.preventDefault() -return}m=B.be}r=h.f -k=r.h(0,q) -switch(m.a){case 0:j=o.$0() -break -case 1:j=g -break -case 2:j=k -break -default:j=g}l=j==null -if(l)r.F(0,q) -else r.m(0,q,j) -$.aQS().N(0,new A.aeu(h,o,a,s)) -if(p)if(!l)h.ajl(q,o.$0(),s) -else{r=h.r.F(0,q) -if(r!=null)r.$0()}if(p)i=e -else i=g -e=k==null?o.$0():k -r=m===B.be?g:i -if(h.d.$1(new A.hI(s,m,q,e,r,!1)))f.preventDefault()}, -hb(a){var s=this,r={} -r.a=!1 -s.d=new A.aez(r,s) -try{s.abx(a)}finally{if(!r.a)s.d.$1(B.GZ) -s.d=null}}, -EL(a,b,c,d,e){var s=this,r=$.aQZ(),q=$.aR_(),p=$.aGo() -s.zZ(r,q,p,a?B.bE:B.be,e) -r=$.aGF() -q=$.aGG() -p=$.aGp() -s.zZ(r,q,p,b?B.bE:B.be,e) -r=$.aR0() -q=$.aR1() -p=$.aGq() -s.zZ(r,q,p,c?B.bE:B.be,e) -r=$.aR2() -q=$.aR3() -p=$.aGr() -s.zZ(r,q,p,d?B.bE:B.be,e)}, -zZ(a,b,c,d,e){var s,r=this,q=r.f,p=q.ak(0,a),o=q.ak(0,b),n=p||o,m=d===B.bE&&!n,l=d===B.be&&n -if(m){r.a.$1(new A.hI(A.aEY(e),B.bE,a,c,null,!0)) -q.m(0,a,c)}if(l&&p){s=q.h(0,a) -s.toString -r.Tr(e,a,s)}if(l&&o){q=q.h(0,b) -q.toString -r.Tr(e,b,q)}}, -Tr(a,b,c){this.a.$1(new A.hI(A.aEY(a),B.be,b,c,null,!0)) -this.f.F(0,b)}} -A.aev.prototype={ -$1(a){var s=this -if(!s.a.a&&!s.b.e){s.c.$0() -s.b.a.$1(s.d.$0())}}, -$S:27} -A.aew.prototype={ -$0(){this.a.a=!0}, -$S:0} -A.aex.prototype={ -$0(){return new A.hI(new A.b8(this.a.a+2e6),B.be,this.b,this.c,null,!0)}, -$S:142} -A.aey.prototype={ -$0(){this.a.f.F(0,this.b)}, -$S:0} -A.aer.prototype={ -$0(){var s,r,q,p,o,n=this,m=n.b,l=B.L2.h(0,m) -if(l!=null)return l -s=n.c.a -if(B.u7.ak(0,A.kw(s))){m=A.kw(s) -m.toString -m=B.u7.h(0,m) -r=m==null?null:m[B.d.ac(s.location)] -r.toString -return r}if(n.d){q=n.a.c.a0_(A.ql(s),A.kw(s),B.d.ac(s.keyCode)) -if(q!=null)return q}if(m==="Dead"){m=s.altKey -p=s.ctrlKey -o=s.shiftKey -s=s.metaKey -m=m?1073741824:0 -p=p?268435456:0 -o=o?536870912:0 -s=s?2147483648:0 -return n.e+(m+p+o+s)+98784247808}return B.c.gA(m)+98784247808}, -$S:53} -A.aes.prototype={ -$0(){return new A.hI(this.a,B.be,this.b,this.c.$0(),null,!0)}, -$S:142} -A.aet.prototype={ -$0(){this.a.f.F(0,this.b)}, -$S:0} -A.aeu.prototype={ -$2(a,b){var s,r,q=this -if(J.e(q.b.$0(),a))return -s=q.a -r=s.f -if(r.an6(0,a)&&!b.$1(q.c))r.x_(r,new A.aeq(s,a,q.d))}, -$S:283} -A.aeq.prototype={ -$2(a,b){var s=this.b -if(b!==s)return!1 -this.a.d.$1(new A.hI(this.c,B.be,a,s,null,!0)) -return!0}, -$S:285} -A.aez.prototype={ -$1(a){this.a.a=!0 -return this.b.a.$1(a)}, -$S:90} -A.ag7.prototype={} -A.a5h.prototype={ -gakt(){var s=this.a -s===$&&A.c() -return s}, -n(){var s=this -if(s.c||s.gnk()==null)return -s.c=!0 -s.aku()}, -vE(){var s=0,r=A.I(t.H),q=this -var $async$vE=A.D(function(a,b){if(a===1)return A.F(b,r) -while(true)switch(s){case 0:s=q.gnk()!=null?2:3 -break -case 2:s=4 -return A.K(q.kZ(),$async$vE) -case 4:s=5 -return A.K(q.gnk().xC(0,-1),$async$vE) -case 5:case 3:return A.G(null,r)}}) -return A.H($async$vE,r)}, -glu(){var s=this.gnk() -s=s==null?null:s.a08() -return s==null?"/":s}, -gO(){var s=this.gnk() -return s==null?null:s.My(0)}, -aku(){return this.gakt().$0()}} -A.C3.prototype={ -a6_(a){var s,r=this,q=r.d -if(q==null)return -r.a=q.Is(r.gL7(r)) -if(!r.Gv(r.gO())){s=t.z -q.p5(0,A.l(["serialCount",0,"state",r.gO()],s,s),"flutter",r.glu())}r.e=r.gFG()}, -gFG(){if(this.Gv(this.gO())){var s=this.gO() -s.toString -return B.d.ac(A.ka(J.aN(t.f.a(s),"serialCount")))}return 0}, -Gv(a){return t.f.b(a)&&J.aN(a,"serialCount")!=null}, -xR(a,b,c){var s,r,q=this.d -if(q!=null){s=t.z -r=this.e -if(b){r===$&&A.c() -s=A.l(["serialCount",r,"state",c],s,s) -a.toString -q.p5(0,s,"flutter",a)}else{r===$&&A.c();++r -this.e=r -s=A.l(["serialCount",r,"state",c],s,s) -a.toString -q.Zm(0,s,"flutter",a)}}}, -N0(a){return this.xR(a,!1,null)}, -L8(a,b){var s,r,q,p,o=this -if(!o.Gv(b)){s=o.d -s.toString -r=o.e -r===$&&A.c() -q=t.z -s.p5(0,A.l(["serialCount",r+1,"state",b],q,q),"flutter",o.glu())}o.e=o.gFG() -s=$.bi() -r=o.glu() -t.Xx.a(b) -q=b==null?null:J.aN(b,"state") -p=t.z -s.jQ("flutter/navigation",B.aV.jI(new A.iO("pushRouteInformation",A.l(["location",r,"state",q],p,p))),new A.agh())}, -kZ(){var s=0,r=A.I(t.H),q,p=this,o,n,m -var $async$kZ=A.D(function(a,b){if(a===1)return A.F(b,r) -while(true)switch(s){case 0:p.n() -if(p.b||p.d==null){s=1 -break}p.b=!0 -o=p.gFG() -s=o>0?3:4 -break -case 3:s=5 -return A.K(p.d.xC(0,-o),$async$kZ) -case 5:case 4:n=p.gO() -n.toString -t.f.a(n) -m=p.d -m.toString -m.p5(0,J.aN(n,"state"),"flutter",p.glu()) -case 1:return A.G(q,r)}}) -return A.H($async$kZ,r)}, -gnk(){return this.d}} -A.agh.prototype={ -$1(a){}, -$S:28} -A.Ea.prototype={ -a66(a){var s,r=this,q=r.d -if(q==null)return -r.a=q.Is(r.gL7(r)) -s=r.glu() -if(!A.aE7(A.aIc(self.window.history))){q.p5(0,A.l(["origin",!0,"state",r.gO()],t.N,t.z),"origin","") -r.aiY(q,s)}}, -xR(a,b,c){var s=this.d -if(s!=null)this.HC(s,a,!0)}, -N0(a){return this.xR(a,!1,null)}, -L8(a,b){var s,r=this,q="flutter/navigation" -if(A.aKH(b)){s=r.d -s.toString -r.aiX(s) -$.bi().jQ(q,B.aV.jI(B.Lw),new A.alX())}else if(A.aE7(b)){s=r.f -s.toString -r.f=null -$.bi().jQ(q,B.aV.jI(new A.iO("pushRoute",s)),new A.alY())}else{r.f=r.glu() -r.d.xC(0,-1)}}, -HC(a,b,c){var s -if(b==null)b=this.glu() -s=this.e -if(c)a.p5(0,s,"flutter",b) -else a.Zm(0,s,"flutter",b)}, -aiY(a,b){return this.HC(a,b,!1)}, -aiX(a){return this.HC(a,null,!1)}, -kZ(){var s=0,r=A.I(t.H),q,p=this,o,n -var $async$kZ=A.D(function(a,b){if(a===1)return A.F(b,r) -while(true)switch(s){case 0:p.n() -if(p.b||p.d==null){s=1 -break}p.b=!0 -o=p.d -s=3 -return A.K(o.xC(0,-1),$async$kZ) -case 3:n=p.gO() -n.toString -o.p5(0,J.aN(t.f.a(n),"state"),"flutter",p.glu()) -case 1:return A.G(q,r)}}) -return A.H($async$kZ,r)}, -gnk(){return this.d}} -A.alX.prototype={ -$1(a){}, -$S:28} -A.alY.prototype={ -$1(a){}, -$S:28} -A.a0.prototype={ -gHi(){var s,r=this,q=r.d -if(q===$){s=A.b4u(r.c) -r.d!==$&&A.aW() -r.d=s -q=s}return q}, -t(a,b){var s,r,q,p=this.gHi().length-1 -for(s=0;s<=p;){r=B.h.dj(s+p,2) -q=this.gHi()[r] -if(q.a>b)p=r-1 -else{if(q.b>=b)return!0 -s=r+1}}return!1}} -A.lQ.prototype={ -j(a,b){if(b==null)return!1 -if(!(b instanceof A.lQ))return!1 -return b.a===this.a&&b.b===this.b}, -gA(a){return A.T(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){return"["+this.a+", "+this.b+"]"}} -A.agB.prototype={} -A.Nd.prototype={ -uV(a){var s -this.b=a -this.c=!0 -s=A.b([],t.EO) -return this.a=new A.aiH(new A.avM(a,A.b([],t.Xr),A.b([],t.cA),A.en()),s,new A.ajD())}, -gYi(){return this.c}, -vB(){var s,r=this -if(!r.c)r.uV(B.ey) -r.c=!1 -s=r.a -s.b=s.a.an1() -s.f=!0 -s=r.a -r.b===$&&A.c() -return new A.Nc(s)}} -A.Nc.prototype={ -n(){this.a=!0}} -A.Oa.prototype={ -gRN(){var s,r=this,q=r.c -if(q===$){s=t.e.a(A.bd(r.gafy())) -r.c!==$&&A.aW() -r.c=s -q=s}return q}, -afz(a){var s,r,q,p=A.aId(a) -p.toString -for(s=this.a,r=s.length,q=0;q>>0)) -g.fq(c,B.a9.cD([!0])) -return -case"SystemChrome.setSystemUIOverlayStyle":l=A.dz(J.aN(t.xE.a(s.b),"statusBarColor")) -A.aP_(l==null?null:new A.L(l>>>0)) -g.fq(c,B.a9.cD([!0])) -return -case"SystemChrome.setPreferredOrientations":o=t.j.a(s.b) -$.ew.a0Q(o).bQ(0,new A.a90(g,c),t.P) -return -case"SystemSound.play":g.fq(c,B.a9.cD([!0])) -return -case"Clipboard.setData":new A.M1(A.aHG(),A.aJS()).a0I(s,c) -return -case"Clipboard.getData":new A.M1(A.aHG(),A.aJS()).a_W(c) -return}break -case"flutter/service_worker":q=self.window -k=self.document.createEvent("Event") -k.initEvent("flutter-first-frame",!0,!0) -q.dispatchEvent(k) -return -case"flutter/textinput":q=$.a3J() -q.gv2(q).aqf(b,c) -return -case"flutter/contextmenu":switch(B.aV.iW(b).a){case"enableContextMenu":$.ew.a.WP() -g.fq(c,B.a9.cD([!0])) -return -case"disableContextMenu":$.ew.a.Wz() -g.fq(c,B.a9.cD([!0])) -return}return -case"flutter/mousecursor":s=B.d1.iW(b) -o=t.f.a(s.b) -switch(s.a){case"activateSystemCursor":$.aDJ.toString -q=A.au(J.aN(o,"kind")) -k=$.ew.f -k===$&&A.c() -q=B.KZ.h(0,q) -A.ez(k,"cursor",q==null?"default":q) -break}return -case"flutter/web_test_e2e":g.fq(c,B.a9.cD([A.b3I(B.aV,b)])) -return -case"flutter/platform_views":q=g.cy -if(q==null)q=g.cy=new A.ahL($.a3I(),new A.a91()) -c.toString -q.apR(b,c) -return -case"flutter/accessibility":q=$.ew.y -q===$&&A.c() -k=t.f -j=k.a(J.aN(k.a(B.cb.h5(b)),"data")) -i=A.au(J.aN(j,"message")) -if(i!=null&&i.length!==0){h=A.aDs(j,"assertiveness") -q.V5(i,B.HP[h==null?0:h])}g.fq(c,B.cb.cD(!0)) -return -case"flutter/navigation":g.d.h(0,0).Kc(b).bQ(0,new A.a92(g,c),t.P) -g.ry="/" -return}q=$.aOS -if(q!=null){q.$3(a,b,c) -return}g.fq(c,null)}, -u3(a,b){return this.abA(a,b)}, -abA(a,b){var s=0,r=A.I(t.H),q=1,p,o=this,n,m,l,k,j,i -var $async$u3=A.D(function(c,d){if(c===1){p=d -s=q}while(true)switch(s){case 0:q=3 -i=t.Lk -s=6 -return A.K(A.tK($.yG.xq(a)),$async$u3) -case 6:n=i.a(d) -s=7 -return A.K(n.grv().o2(),$async$u3) -case 7:m=d -o.fq(b,A.rh(m,0,null)) -q=1 -s=5 -break -case 3:q=2 -j=p -l=A.a6(j) -$.eh().$1("Error while trying to load an asset: "+A.j(l)) -o.fq(b,null) -s=5 -break -case 2:s=1 -break -case 5:return A.G(null,r) -case 1:return A.F(p,r)}}) -return A.H($async$u3,r)}, -aat(a){switch(a){case"HapticFeedbackType.lightImpact":return 10 -case"HapticFeedbackType.mediumImpact":return 20 -case"HapticFeedbackType.heavyImpact":return 30 -case"HapticFeedbackType.selectionClick":return 10 -default:return 50}}, -l6(){var s=$.aOY -if(s==null)throw A.d(A.ck("scheduleFrameCallback must be initialized first.")) -s.$0()}, -a6x(){var s=this -if(s.dy!=null)return -s.a=s.a.VT(A.aD1()) -s.dy=A.de(self.window,"languagechange",new A.a8Z(s))}, -a6t(){var s,r,q,p=new globalThis.MutationObserver(A.bd(new A.a8Y(this))) -this.fy=p -s=self.document.documentElement -s.toString -r=A.b(["style"],t.s) -q=A.m(t.N,t.z) -q.m(0,"attributes",!0) -q.m(0,"attributeFilter",r) -r=A.ax(q) -if(r==null)r=t.K.a(r) -p.observe(s,r)}, -Uh(a){var s=this,r=s.a -if(r.d!==a){s.a=r.anu(a) -A.nd(null,null) -A.nd(s.k3,s.k4)}}, -akB(a){var s=this.a,r=s.a -if((r.a&32)!==0!==a){this.a=s.VQ(r.ans(a)) -A.nd(null,null)}}, -a6n(){var s,r=this,q=r.k1 -r.Uh(q.matches?B.Y:B.an) -s=t.e.a(A.bd(new A.a8X(r))) -r.k2=s -q.addListener(s)}, -kJ(a,b,c){A.Kg(this.p4,this.R8,new A.wx(b,0,a,c))}, -gJl(){var s=this.ry -return s==null?this.ry=this.d.h(0,0).gAL().glu():s}, -fq(a,b){A.NU(B.q,null,t.H).bQ(0,new A.a95(a,b),t.P)}} -A.a94.prototype={ -$0(){return this.a.$1(this.b.$1(this.c))}, -$S:0} -A.a93.prototype={ -$1(a){this.a.x8(this.b,a)}, -$S:28} -A.a9_.prototype={ -$1(a){this.a.fq(this.b,B.a9.cD([!0]))}, -$S:27} -A.a90.prototype={ -$1(a){this.a.fq(this.b,B.a9.cD([a]))}, -$S:117} -A.a91.prototype={ -$1(a){var s=$.ew.r -s===$&&A.c() -s.append(a)}, -$S:2} -A.a92.prototype={ -$1(a){var s=this.b -if(a)this.a.fq(s,B.a9.cD([!0])) -else if(s!=null)s.$1(null)}, -$S:117} -A.a8Z.prototype={ -$1(a){var s=this.a -s.a=s.a.VT(A.aD1()) -A.nd(s.fr,s.fx)}, -$S:2} -A.a8Y.prototype={ -$2(a,b){var s,r,q,p,o,n,m,l=null -for(s=J.as(a),r=t.e,q=this.a;s.u();){p=s.gJ(s) -p.toString -r.a(p) -o=p.type -if((o==null?l:o)==="attributes"){o=p.attributeName -o=(o==null?l:o)==="style"}else o=!1 -if(o){o=self.document.documentElement -o.toString -n=A.b6z(o) -m=(n==null?16:n)/16 -o=q.a -if(o.e!==m){q.a=o.o9(m) -A.nd(l,l) -A.nd(q.go,q.id)}}}}, -$S:289} -A.a8X.prototype={ -$1(a){var s=A.aId(a) -s.toString -s=s?B.Y:B.an -this.a.Uh(s)}, -$S:2} -A.a95.prototype={ -$1(a){var s=this.a -if(s!=null)s.$1(this.b)}, -$S:27} -A.aBl.prototype={ -$0(){this.a.$2(this.b,this.c)}, -$S:0} -A.Ue.prototype={ -k(a){return A.u(this).k(0)+"[view: null, geometry: "+B.u.k(0)+"]"}} -A.QU.prototype={ -vg(a,b,c,d,e){var s=this,r=a==null?s.a:a,q=d==null?s.c:d,p=c==null?s.d:c,o=e==null?s.e:e,n=b==null?s.f:b -return new A.QU(r,!1,q,p,o,n,s.r,s.w)}, -VQ(a){return this.vg(a,null,null,null,null)}, -VT(a){return this.vg(null,a,null,null,null)}, -o9(a){return this.vg(null,null,null,null,a)}, -anu(a){return this.vg(null,null,a,null,null)}, -anv(a){return this.vg(null,null,null,a,null)}} -A.ahJ.prototype={ -ZC(a,b,c){var s=this.a -if(s.ak(0,a))return!1 -s.m(0,a,b) -if(!c)this.c.E(0,a) -return!0}, -atR(a,b,c){this.d.m(0,b,a) -return this.b.bT(0,b,new A.ahK(this,"flt-pv-slot-"+b,a,b,c))}, -ai8(a){var s,r,q -if(a==null)return -s=$.cr() -if(s!==B.M){a.remove() -return}s=a.getAttribute("slot") -r="tombstone-"+A.j(s==null?null:s) -q=A.bo(self.document,"slot") -A.x(q.style,"display","none") -s=A.ax(r) -if(s==null)s=t.K.a(s) -q.setAttribute("name",s) -s=$.ew.w -s===$&&A.c() -s.append(q) -s=A.ax(r) -if(s==null)s=t.K.a(s) -a.setAttribute("slot",s) -a.remove() -q.remove()}} -A.ahK.prototype={ -$0(){var s,r,q,p,o=this,n=A.bo(self.document,"flt-platform-view"),m=A.ax(o.b) -if(m==null)m=t.K.a(m) -n.setAttribute("slot",m) -m=o.c -s=o.a.a.h(0,m) -s.toString -r=o.d -q=t.e -if(t._a.b(s))p=q.a(s.$2$params(r,o.e)) -else{t.xA.a(s) -p=q.a(s.$1(r))}if(p.style.getPropertyValue("height").length===0){$.eh().$1("Height of Platform View type: ["+m+"] may not be set. Defaulting to `height: 100%`.\nSet `style.height` to any appropriate value to stop this message.") -A.x(p.style,"height","100%")}if(p.style.getPropertyValue("width").length===0){$.eh().$1("Width of Platform View type: ["+m+"] may not be set. Defaulting to `width: 100%`.\nSet `style.width` to any appropriate value to stop this message.") -A.x(p.style,"width","100%")}n.append(p) -return n}, -$S:84} -A.ahL.prototype={ -a8D(a,b){var s=t.f.a(a.b),r=J.X(s),q=B.d.ac(A.kb(r.h(s,"id"))),p=A.aQ(r.h(s,"viewType")),o=r.h(s,"params") -r=this.b -if(!r.a.ak(0,p)){b.$1(B.d1.om("unregistered_view_type","If you are the author of the PlatformView, make sure `registerViewFactory` is invoked.","A HtmlElementView widget is trying to create a platform view with an unregistered type: <"+p+">.")) -return}if(r.b.ak(0,q)){b.$1(B.d1.om("recreating_view","view id: "+q,"trying to create an already created view")) -return}this.c.$1(r.atR(p,q,o)) -b.$1(B.d1.vA(null))}, -apR(a,b){var s,r=B.d1.iW(a) -switch(r.a){case"create":this.a8D(r,b) -return -case"dispose":s=this.b -s.ai8(s.b.F(0,A.ef(r.b))) -b.$1(B.d1.vA(null)) -return}b.$1(null)}} -A.ak9.prototype={ -av5(){A.cI(self.document,"touchstart",t.e.a(A.bd(new A.aka())),null)}} -A.aka.prototype={ -$1(a){}, -$S:2} -A.QX.prototype={ -a8u(){var s,r=this -if("PointerEvent" in self.window){s=new A.avP(A.m(t.S,t.ZW),A.b([],t.he),r.a,r.gH6(),r.c,r.d) -s.te() -return s}if("TouchEvent" in self.window){s=new A.ayU(A.aE(t.S),A.b([],t.he),r.a,r.gH6(),r.c,r.d) -s.te() -return s}if("MouseEvent" in self.window){s=new A.avw(new A.tn(),A.b([],t.he),r.a,r.gH6(),r.c,r.d) -s.te() -return s}throw A.d(A.V("This browser does not support pointer, touch, or mouse events."))}, -afG(a){var s=A.b(a.slice(0),A.W(a)),r=$.bi() -A.Kg(r.Q,r.as,new A.CN(s))}} -A.ahW.prototype={ -k(a){return"pointers:"+("PointerEvent" in self.window)+", touch:"+("TouchEvent" in self.window)+", mouse:"+("MouseEvent" in self.window)}} -A.Hc.prototype={} -A.arj.prototype={ -Io(a,b,c,d,e){var s=t.e.a(A.bd(new A.ark(d))) -A.cI(b,c,s,e) -this.a.push(new A.Hc(c,b,s,e,!1))}, -uI(a,b,c,d){return this.Io(a,b,c,d,!0)}} -A.ark.prototype={ -$1(a){var s=$.eF -if((s==null?$.eF=A.lZ():s).Zw(a))this.a.$1(a)}, -$S:2} -A.a1G.prototype={ -Rf(a,b){if(b==null)return!1 -return Math.abs(b- -3*a)>1}, -aef(a){var s,r,q,p,o,n=this,m=$.cr() -if(m===B.bz)return!1 -if(n.Rf(a.deltaX,A.aIj(a))||n.Rf(a.deltaY,A.aIk(a)))return!1 -if(!(B.d.cF(a.deltaX,120)===0&&B.d.cF(a.deltaY,120)===0)){m=A.aIj(a) -if(B.d.cF(m==null?1:m,120)===0){m=A.aIk(a) -m=B.d.cF(m==null?1:m,120)===0}else m=!1}else m=!0 -if(m){m=a.deltaX -s=n.f -r=s==null -q=r?null:s.deltaX -p=Math.abs(m-(q==null?0:q)) -m=a.deltaY -q=r?null:s.deltaY -o=Math.abs(m-(q==null?0:q)) -if(!r)if(!(p===0&&o===0))m=!(p<20&&o<20) -else m=!0 -else m=!0 -if(m){if(A.h0(a)!=null)m=(r?null:A.h0(s))!=null -else m=!1 -if(m){m=A.h0(a) -m.toString -s.toString -s=A.h0(s) -s.toString -if(m-s<50&&n.r)return!0}return!1}}return!0}, -a8s(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d=this -if(d.aef(a)){s=B.aQ -r=-2}else{s=B.b3 -r=-1}q=a.deltaX -p=a.deltaY -switch(B.d.ac(a.deltaMode)){case 1:o=$.aMD -if(o==null){n=A.bo(self.document,"div") -o=n.style -A.x(o,"font-size","initial") -A.x(o,"display","none") -self.document.body.append(n) -o=A.aCX(self.window,n).getPropertyValue("font-size") -if(B.c.t(o,"px"))m=A.aKf(A.e4(o,"px","")) -else m=null -n.remove() -o=$.aMD=m==null?16:m/4}q*=o -p*=o -break -case 2:o=$.cX() -q*=o.giq().a -p*=o.giq().b -break -case 0:o=$.e5() -if(o===B.bJ){o=$.cr() -if(o!==B.M)o=o===B.bz -else o=!0}else o=!1 -if(o){o=$.cX() -l=o.x -if(l==null){l=self.window.devicePixelRatio -if(l===0)l=1}q*=l -o=o.x -if(o==null){o=self.window.devicePixelRatio -if(o===0)o=1}p*=o}break -default:break}k=A.b([],t.G) -j=A.aFn(a,d.b) -o=$.e5() -if(o===B.bJ){o=$.aen -o=o==null?null:o.gtQ().f.ak(0,$.aGF()) -if(o!==!0){o=$.aen -o=o==null?null:o.gtQ().f.ak(0,$.aGG()) -i=o===!0}else i=!0}else i=!1 -o=a.ctrlKey&&!i -l=d.d -h=j.a -if(o){o=A.h0(a) -o.toString -o=A.tk(o) -g=$.cX() -f=g.x -if(f==null){f=self.window.devicePixelRatio -if(f===0)f=1}g=g.x -if(g==null){g=self.window.devicePixelRatio -if(g===0)g=1}e=A.js(a) -e.toString -l.anf(k,B.d.ac(e),B.cN,r,s,h*f,j.b*g,1,1,Math.exp(-p/200),B.Nt,o)}else{o=A.h0(a) -o.toString -o=A.tk(o) -g=$.cX() -f=g.x -if(f==null){f=self.window.devicePixelRatio -if(f===0)f=1}g=g.x -if(g==null){g=self.window.devicePixelRatio -if(g===0)g=1}e=A.js(a) -e.toString -l.anh(k,B.d.ac(e),B.cN,r,s,h*f,j.b*g,1,1,q,p,B.Ns,o)}d.f=a -d.r=s===B.aQ -return k}, -Or(a){var s=this.b,r=t.e.a(A.bd(a)),q=t.K,p=A.ax(A.l(["capture",!1,"passive",!1],t.N,q)) -q=p==null?q.a(p):p -s.addEventListener("wheel",r,q) -this.a.push(new A.Hc("wheel",s,r,!1,!0))}, -QX(a){this.c.$1(this.a8s(a)) -a.preventDefault()}} -A.lv.prototype={ -k(a){return A.u(this).k(0)+"(change: "+this.a.k(0)+", buttons: "+this.b+")"}} -A.tn.prototype={ -MC(a,b){var s -if(this.a!==0)return this.E0(b) -s=(b===0&&a>-1?A.b52(a):b)&1073741823 -this.a=s -return new A.lv(B.y_,s)}, -E0(a){var s=a&1073741823,r=this.a -if(r===0&&s!==0)return new A.lv(B.cN,r) -this.a=s -return new A.lv(s===0?B.cN:B.ex,s)}, -xE(a){if(this.a!==0&&(a&1073741823)===0){this.a=0 -return new A.lv(B.k9,0)}return null}, -MD(a){if((a&1073741823)===0){this.a=0 -return new A.lv(B.cN,0)}return null}, -MF(a){var s -if(this.a===0)return null -s=this.a=(a==null?0:a)&1073741823 -if(s===0)return new A.lv(B.k9,s) -else return new A.lv(B.ex,s)}} -A.avP.prototype={ -FU(a){return this.w.bT(0,a,new A.avR())}, -Sm(a){if(A.aCW(a)==="touch")this.w.F(0,A.aIf(a))}, -EW(a,b,c,d,e){this.Io(0,a,b,new A.avQ(this,d,c),e)}, -EV(a,b,c){return this.EW(a,b,c,!0,!0)}, -a6z(a,b,c,d){return this.EW(a,b,c,d,!0)}, -te(){var s=this,r=s.b -s.EV(r,"pointerdown",new A.avS(s)) -s.EV(self.window,"pointermove",new A.avT(s)) -s.EW(r,"pointerleave",new A.avU(s),!1,!1) -s.EV(self.window,"pointerup",new A.avV(s)) -s.a6z(r,"pointercancel",new A.avW(s),!1) -s.Or(new A.avX(s))}, -hq(a,b,c){var s,r,q,p,o,n,m,l,k=this,j=A.aCW(c) -j.toString -s=k.S6(j) -j=A.aIg(c) -j.toString -r=A.aIh(c) -r.toString -j=Math.abs(j)>Math.abs(r)?A.aIg(c):A.aIh(c) -j.toString -r=A.h0(c) -r.toString -q=A.tk(r) -p=c.pressure -if(p==null)p=null -o=A.aFn(c,k.b) -r=k.pP(c) -n=$.cX() -m=n.x -if(m==null){m=self.window.devicePixelRatio -if(m===0)m=1}n=n.x -if(n==null){n=self.window.devicePixelRatio -if(n===0)n=1}l=p==null?0:p -k.d.ang(a,b.b,b.a,r,s,o.a*m,o.b*n,l,1,B.dn,j/180*3.141592653589793,q)}, -a9z(a){var s,r -if("getCoalescedEvents" in a){s=J.fW(a.getCoalescedEvents(),t.e) -r=new A.dI(s.a,s.$ti.i("dI<1,f>")) -if(!r.ga8(r))return r}return A.b([a],t.J)}, -S6(a){switch(a){case"mouse":return B.b3 -case"pen":return B.bk -case"touch":return B.ao -default:return B.bL}}, -pP(a){var s=A.aCW(a) -s.toString -if(this.S6(s)===B.b3)s=-1 -else{s=A.aIf(a) -s.toString -s=B.d.ac(s)}return s}} -A.avR.prototype={ -$0(){return new A.tn()}, -$S:306} -A.avQ.prototype={ -$1(a){var s,r,q,p,o -if(this.b){s=a.getModifierState("Alt") -r=a.getModifierState("Control") -q=a.getModifierState("Meta") -p=a.getModifierState("Shift") -o=A.h0(a) -o.toString -this.a.e.EL(s,r,q,p,o)}this.c.$1(a)}, -$S:2} -A.avS.prototype={ -$1(a){var s,r,q=this.a,p=q.pP(a),o=A.b([],t.G),n=q.FU(p),m=A.js(a) -m.toString -s=n.xE(B.d.ac(m)) -if(s!=null)q.hq(o,s,a) -m=B.d.ac(a.button) -r=A.js(a) -r.toString -q.hq(o,n.MC(m,B.d.ac(r)),a) -q.c.$1(o)}, -$S:19} -A.avT.prototype={ -$1(a){var s,r,q,p,o=this.a,n=o.FU(o.pP(a)),m=A.b([],t.G) -for(s=J.as(o.a9z(a));s.u();){r=s.gJ(s) -q=r.buttons -if(q==null)q=null -q.toString -p=n.xE(B.d.ac(q)) -if(p!=null)o.hq(m,p,r) -q=r.buttons -if(q==null)q=null -q.toString -o.hq(m,n.E0(B.d.ac(q)),r)}o.c.$1(m)}, -$S:19} -A.avU.prototype={ -$1(a){var s,r=this.a,q=r.FU(r.pP(a)),p=A.b([],t.G),o=A.js(a) -o.toString -s=q.MD(B.d.ac(o)) -if(s!=null){r.hq(p,s,a) -r.c.$1(p)}}, -$S:19} -A.avV.prototype={ -$1(a){var s,r,q,p=this.a,o=p.pP(a),n=p.w -if(n.ak(0,o)){s=A.b([],t.G) -n=n.h(0,o) -n.toString -r=A.js(a) -q=n.MF(r==null?null:B.d.ac(r)) -p.Sm(a) -if(q!=null){p.hq(s,q,a) -p.c.$1(s)}}}, -$S:19} -A.avW.prototype={ -$1(a){var s,r=this.a,q=r.pP(a),p=r.w -if(p.ak(0,q)){s=A.b([],t.G) -p=p.h(0,q) -p.toString -p.a=0 -r.Sm(a) -r.hq(s,new A.lv(B.k7,0),a) -r.c.$1(s)}}, -$S:19} -A.avX.prototype={ -$1(a){this.a.QX(a)}, -$S:2} -A.ayU.prototype={ -yi(a,b,c){this.uI(0,a,b,new A.ayV(this,!0,c))}, -te(){var s=this,r=s.b -s.yi(r,"touchstart",new A.ayW(s)) -s.yi(r,"touchmove",new A.ayX(s)) -s.yi(r,"touchend",new A.ayY(s)) -s.yi(r,"touchcancel",new A.ayZ(s))}, -yy(a,b,c,d,e){var s,r,q,p,o,n=A.aXA(e) -n.toString -n=B.d.ac(n) -s=e.clientX -r=$.cX() -q=r.x -if(q==null){q=self.window.devicePixelRatio -if(q===0)q=1}p=e.clientY -r=r.x -if(r==null){r=self.window.devicePixelRatio -if(r===0)r=1}o=c?1:0 -this.d.and(b,o,a,n,s*q,p*r,1,1,B.dn,d)}} -A.ayV.prototype={ -$1(a){var s=a.altKey,r=a.ctrlKey,q=a.metaKey,p=a.shiftKey,o=A.h0(a) -o.toString -this.a.e.EL(s,r,q,p,o) -this.c.$1(a)}, -$S:2} -A.ayW.prototype={ -$1(a){var s,r,q,p,o,n,m,l=A.h0(a) -l.toString -s=A.tk(l) -r=A.b([],t.G) -for(l=t.e,q=t.zZ,q=A.c3(new A.mW(a.changedTouches,q),q.i("q.E"),l),l=A.c3(q.a,A.p(q).c,l),q=J.as(l.a),l=A.p(l),l=l.i("@<1>").a5(l.z[1]).z[1],p=this.a;q.u();){o=l.a(q.gJ(q)) -n=o.identifier -if(n==null)n=null -n.toString -m=p.w -if(!m.t(0,B.d.ac(n))){n=o.identifier -if(n==null)n=null -n.toString -m.E(0,B.d.ac(n)) -p.yy(B.y_,r,!0,s,o)}}p.c.$1(r)}, -$S:19} -A.ayX.prototype={ -$1(a){var s,r,q,p,o,n,m -a.preventDefault() -s=A.h0(a) -s.toString -r=A.tk(s) -q=A.b([],t.G) -for(s=t.e,p=t.zZ,p=A.c3(new A.mW(a.changedTouches,p),p.i("q.E"),s),s=A.c3(p.a,A.p(p).c,s),p=J.as(s.a),s=A.p(s),s=s.i("@<1>").a5(s.z[1]).z[1],o=this.a;p.u();){n=s.a(p.gJ(p)) -m=n.identifier -if(m==null)m=null -m.toString -if(o.w.t(0,B.d.ac(m)))o.yy(B.ex,q,!0,r,n)}o.c.$1(q)}, -$S:19} -A.ayY.prototype={ -$1(a){var s,r,q,p,o,n,m,l -a.preventDefault() -s=A.h0(a) -s.toString -r=A.tk(s) -q=A.b([],t.G) -for(s=t.e,p=t.zZ,p=A.c3(new A.mW(a.changedTouches,p),p.i("q.E"),s),s=A.c3(p.a,A.p(p).c,s),p=J.as(s.a),s=A.p(s),s=s.i("@<1>").a5(s.z[1]).z[1],o=this.a;p.u();){n=s.a(p.gJ(p)) -m=n.identifier -if(m==null)m=null -m.toString -l=o.w -if(l.t(0,B.d.ac(m))){m=n.identifier -if(m==null)m=null -m.toString -l.F(0,B.d.ac(m)) -o.yy(B.k9,q,!1,r,n)}}o.c.$1(q)}, -$S:19} -A.ayZ.prototype={ -$1(a){var s,r,q,p,o,n,m,l=A.h0(a) -l.toString -s=A.tk(l) -r=A.b([],t.G) -for(l=t.e,q=t.zZ,q=A.c3(new A.mW(a.changedTouches,q),q.i("q.E"),l),l=A.c3(q.a,A.p(q).c,l),q=J.as(l.a),l=A.p(l),l=l.i("@<1>").a5(l.z[1]).z[1],p=this.a;q.u();){o=l.a(q.gJ(q)) -n=o.identifier -if(n==null)n=null -n.toString -m=p.w -if(m.t(0,B.d.ac(n))){n=o.identifier -if(n==null)n=null -n.toString -m.F(0,B.d.ac(n)) -p.yy(B.k7,r,!1,s,o)}}p.c.$1(r)}, -$S:19} -A.avw.prototype={ -Ok(a,b,c,d){this.Io(0,a,b,new A.avx(this,!0,c),d)}, -ES(a,b,c){return this.Ok(a,b,c,!0)}, -te(){var s=this,r=s.b -s.ES(r,"mousedown",new A.avy(s)) -s.ES(self.window,"mousemove",new A.avz(s)) -s.Ok(r,"mouseleave",new A.avA(s),!1) -s.ES(self.window,"mouseup",new A.avB(s)) -s.Or(new A.avC(s))}, -hq(a,b,c){var s,r,q=A.aFn(c,this.b),p=A.h0(c) -p.toString -p=A.tk(p) -s=$.cX() -r=s.x -if(r==null){r=self.window.devicePixelRatio -if(r===0)r=1}s=s.x -if(s==null){s=self.window.devicePixelRatio -if(s===0)s=1}this.d.ane(a,b.b,b.a,-1,B.b3,q.a*r,q.b*s,1,1,B.dn,p)}} -A.avx.prototype={ -$1(a){var s=a.getModifierState("Alt"),r=a.getModifierState("Control"),q=a.getModifierState("Meta"),p=a.getModifierState("Shift"),o=A.h0(a) -o.toString -this.a.e.EL(s,r,q,p,o) -this.c.$1(a)}, -$S:2} -A.avy.prototype={ -$1(a){var s,r,q=A.b([],t.G),p=this.a,o=p.w,n=A.js(a) -n.toString -s=o.xE(B.d.ac(n)) -if(s!=null)p.hq(q,s,a) -n=B.d.ac(a.button) -r=A.js(a) -r.toString -p.hq(q,o.MC(n,B.d.ac(r)),a) -p.c.$1(q)}, -$S:19} -A.avz.prototype={ -$1(a){var s,r=A.b([],t.G),q=this.a,p=q.w,o=A.js(a) -o.toString -s=p.xE(B.d.ac(o)) -if(s!=null)q.hq(r,s,a) -o=A.js(a) -o.toString -q.hq(r,p.E0(B.d.ac(o)),a) -q.c.$1(r)}, -$S:19} -A.avA.prototype={ -$1(a){var s,r=A.b([],t.G),q=this.a,p=A.js(a) -p.toString -s=q.w.MD(B.d.ac(p)) -if(s!=null){q.hq(r,s,a) -q.c.$1(r)}}, -$S:19} -A.avB.prototype={ -$1(a){var s,r=A.b([],t.G),q=this.a,p=A.js(a) -p=p==null?null:B.d.ac(p) -s=q.w.MF(p) -if(s!=null){q.hq(r,s,a) -q.c.$1(r)}}, -$S:19} -A.avC.prototype={ -$1(a){this.a.QX(a)}, -$S:2} -A.yh.prototype={} -A.ahO.prototype={ -yI(a,b,c){return this.a.bT(0,a,new A.ahP(b,c))}, -nK(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,a0,a1,a2,a3,a4,a5,a6,a7,a8){var s,r,q=this.a.h(0,c) -q.toString -s=q.b -r=q.c -q.b=i -q.c=j -q=q.a -if(q==null)q=0 -return A.aK3(a,b,c,d,e,f,!1,h,i-s,j-r,i,j,k,q,l,m,n,o,p,a0,a1,a2,a3,a4,a5,a6,!1,a7,a8)}, -GR(a,b,c){var s=this.a.h(0,a) -s.toString -return s.b!==b||s.c!==c}, -mo(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,a0,a1,a2,a3,a4,a5,a6,a7){var s,r,q=this.a.h(0,c) -q.toString -s=q.b -r=q.c -q.b=i -q.c=j -q=q.a -if(q==null)q=0 -return A.aK3(a,b,c,d,e,f,!1,h,i-s,j-r,i,j,k,q,l,m,n,o,p,a0,a1,a2,a3,a4,B.dn,a5,!0,a6,a7)}, -va(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){var s,r,q,p=this -if(m===B.dn)switch(c.a){case 1:p.yI(d,f,g) -a.push(p.nK(b,c,d,0,0,e,!1,0,f,g,0,h,i,0,0,0,0,0,j,k,l,m,0,n,o)) -break -case 3:s=p.a.ak(0,d) -p.yI(d,f,g) -if(!s)a.push(p.mo(b,B.k8,d,0,0,e,!1,0,f,g,0,h,i,0,0,0,0,0,j,k,l,0,n,o)) -a.push(p.nK(b,c,d,0,0,e,!1,0,f,g,0,h,i,0,0,0,0,0,j,k,l,m,0,n,o)) -p.b=b -break -case 4:s=p.a.ak(0,d) -p.yI(d,f,g).a=$.aM3=$.aM3+1 -if(!s)a.push(p.mo(b,B.k8,d,0,0,e,!1,0,f,g,0,h,i,0,0,0,0,0,j,k,l,0,n,o)) -if(p.GR(d,f,g))a.push(p.mo(0,B.cN,d,0,0,e,!1,0,f,g,0,0,i,0,0,0,0,0,j,k,l,0,n,o)) -a.push(p.nK(b,c,d,0,0,e,!1,0,f,g,0,h,i,0,0,0,0,0,j,k,l,m,0,n,o)) -p.b=b -break -case 5:a.push(p.nK(b,c,d,0,0,e,!1,0,f,g,0,h,i,0,0,0,0,0,j,k,l,m,0,n,o)) -p.b=b -break -case 6:case 0:r=p.a -q=r.h(0,d) -q.toString -if(c===B.k7){f=q.b -g=q.c}if(p.GR(d,f,g))a.push(p.mo(p.b,B.ex,d,0,0,e,!1,0,f,g,0,h,i,0,0,0,0,0,j,k,l,0,n,o)) -a.push(p.nK(b,c,d,0,0,e,!1,0,f,g,0,h,i,0,0,0,0,0,j,k,l,m,0,n,o)) -if(e===B.ao){a.push(p.mo(0,B.Nr,d,0,0,e,!1,0,f,g,0,0,i,0,0,0,0,0,j,k,l,0,n,o)) -r.F(0,d)}break -case 2:r=p.a -q=r.h(0,d) -q.toString -a.push(p.nK(b,c,d,0,0,e,!1,0,q.b,q.c,0,h,i,0,0,0,0,0,j,k,l,m,0,n,o)) -r.F(0,d) -break -case 7:case 8:case 9:break}else switch(m.a){case 1:case 2:case 3:s=p.a.ak(0,d) -p.yI(d,f,g) -if(!s)a.push(p.mo(b,B.k8,d,0,0,e,!1,0,f,g,0,h,i,0,0,0,0,0,j,k,l,0,n,o)) -if(p.GR(d,f,g))if(b!==0)a.push(p.mo(b,B.ex,d,0,0,e,!1,0,f,g,0,h,i,0,0,0,0,0,j,k,l,0,n,o)) -else a.push(p.mo(b,B.cN,d,0,0,e,!1,0,f,g,0,h,i,0,0,0,0,0,j,k,l,0,n,o)) -a.push(p.nK(b,c,d,0,0,e,!1,0,f,g,0,h,i,0,0,0,0,0,j,k,l,m,0,n,o)) -break -case 0:break -case 4:break}}, -anf(a,b,c,d,e,f,g,h,i,j,k,l){return this.va(a,b,c,d,e,f,g,h,i,j,0,0,k,0,l)}, -anh(a,b,c,d,e,f,g,h,i,j,k,l,m){return this.va(a,b,c,d,e,f,g,h,i,1,j,k,l,0,m)}, -ane(a,b,c,d,e,f,g,h,i,j,k){return this.va(a,b,c,d,e,f,g,h,i,1,0,0,j,0,k)}, -and(a,b,c,d,e,f,g,h,i,j){return this.va(a,b,c,d,B.ao,e,f,g,h,1,0,0,i,0,j)}, -ang(a,b,c,d,e,f,g,h,i,j,k,l){return this.va(a,b,c,d,e,f,g,h,i,1,0,0,j,k,l)}} -A.ahP.prototype={ -$0(){return new A.yh(this.a,this.b)}, -$S:314} -A.aDX.prototype={} -A.aij.prototype={ -a61(a){var s=this,r=t.e -s.b=r.a(A.bd(new A.aik(s))) -A.cI(self.window,"keydown",s.b,null) -s.c=r.a(A.bd(new A.ail(s))) -A.cI(self.window,"keyup",s.c,null) -$.pz.push(new A.aim(s))}, -n(){var s,r,q=this -A.eZ(self.window,"keydown",q.b,null) -A.eZ(self.window,"keyup",q.c,null) -for(s=q.a,r=A.fh(s,s.r,A.p(s).c);r.u();)s.h(0,r.d).bb(0) -s.a0(0) -$.aDZ=q.c=q.b=null}, -QM(a){var s,r,q,p,o,n,m=this,l=globalThis.KeyboardEvent -if(!(l!=null&&a instanceof l))return -s=new A.kC(a) -r=A.ql(a) -r.toString -if(a.type==="keydown"&&A.kw(a)==="Tab"&&a.isComposing)return -q=A.kw(a) -q.toString -if(!(q==="Meta"||q==="Shift"||q==="Alt"||q==="Control")&&m.e){q=m.a -p=q.h(0,r) -if(p!=null)p.bb(0) -if(a.type==="keydown")p=a.ctrlKey||a.shiftKey||a.altKey||a.metaKey -else p=!1 -if(p)q.m(0,r,A.cM(B.ft,new A.aio(m,r,s))) -else q.F(0,r)}o=a.getModifierState("Shift")?1:0 -if(a.getModifierState("Alt")||a.getModifierState("AltGraph"))o|=2 -if(a.getModifierState("Control"))o|=4 -if(a.getModifierState("Meta"))o|=8 -m.d=o -if(a.type==="keydown")if(A.kw(a)==="CapsLock"){r=o|32 -m.d=r}else if(A.ql(a)==="NumLock"){r=o|16 -m.d=r}else if(A.kw(a)==="ScrollLock"){r=o|64 -m.d=r}else{if(A.kw(a)==="Meta"){r=$.e5() -r=r===B.k4}else r=!1 -if(r){r=o|8 -m.d=r}else r=o}else r=o -n=A.l(["type",a.type,"keymap","web","code",A.ql(a),"key",A.kw(a),"location",B.d.ac(a.location),"metaState",r,"keyCode",B.d.ac(a.keyCode)],t.N,t.z) -$.bi().jQ("flutter/keyevent",B.a9.cD(n),new A.aip(s))}} -A.aik.prototype={ -$1(a){this.a.QM(a)}, -$S:2} -A.ail.prototype={ -$1(a){this.a.QM(a)}, -$S:2} -A.aim.prototype={ -$0(){this.a.n()}, -$S:0} -A.aio.prototype={ -$0(){var s,r,q=this.a -q.a.F(0,this.b) -s=this.c.a -r=A.l(["type","keyup","keymap","web","code",A.ql(s),"key",A.kw(s),"location",B.d.ac(s.location),"metaState",q.d,"keyCode",B.d.ac(s.keyCode)],t.N,t.z) -$.bi().jQ("flutter/keyevent",B.a9.cD(r),A.b3i())}, -$S:0} -A.aip.prototype={ -$1(a){if(a==null)return -if(A.fb(J.aN(t.a.a(B.a9.h5(a)),"handled")))this.a.a.preventDefault()}, -$S:28} -A.O0.prototype={} -A.O_.prototype={ -WI(a,b,c,d){var s=this.dy,r=this.fr,q=this.fx -A.bq(b,"drawImage",[s,0,0,r,q,c,d,r,q])}, -VE(a,b,c){var s,r=this.a,q=r.createShader(r[b]) -if(q==null)throw A.d(A.ck(A.b2O(r,"getError"))) -A.bq(r,"shaderSource",[q,c]) -A.bq(r,"compileShader",[q]) -s=this.c -if(!A.bq(r,"getShaderParameter",[q,s==null?this.c=r.COMPILE_STATUS:s]))throw A.d(A.ck("Shader compilation failed: "+A.j(A.bq(r,"getShaderInfoLog",[q])))) -return q}, -grd(){var s=this.d -return s==null?this.d=this.a.ARRAY_BUFFER:s}, -gCm(){var s=this.e -return s==null?this.e=this.a.ELEMENT_ARRAY_BUFFER:s}, -gKE(){var s=this.f -return s==null?this.f=this.a.STATIC_DRAW:s}, -pg(a,b,c){var s=A.bq(this.a,"getUniformLocation",[b,c]) -if(s==null)throw A.d(A.ck(c+" not found")) -else return s}, -atx(a){var s,r,q=this -if("transferToImageBitmap" in q.dy&&a){q.dy.getContext("webgl2") -return q.dy.transferToImageBitmap()}else{s=q.fr -r=A.Kc(q.fx,s) -s=A.lV(r,"2d",null) -s.toString -q.WI(0,t.e.a(s),0,0) -return r}}} -A.ah0.prototype={ -U0(a){var s,r,q,p=this.c,o=self.window.devicePixelRatio -if(o===0)o=1 -s=this.d -r=self.window.devicePixelRatio -if(r===0)r=1 -q=a.style -A.x(q,"position","absolute") -A.x(q,"width",A.j(p/o)+"px") -A.x(q,"height",A.j(s/r)+"px")}} -A.zm.prototype={ -I(){return"Assertiveness."+this.b}} -A.a3N.prototype={ -am_(a){switch(a.a){case 0:return this.a -case 1:return this.b}}, -V5(a,b){var s=this.am_(b),r=A.bo(self.document,"div") -A.aIe(r,a) -s.append(r) -A.cM(B.bC,new A.a3O(r))}} -A.a3O.prototype={ -$0(){return this.a.remove()}, -$S:0} -A.FR.prototype={ -I(){return"_CheckableKind."+this.b}} -A.a5W.prototype={ -ds(a){var s,r,q,p,o=this,n="true" -o.m5(0) -s=o.b -if((s.k3&1)!==0){switch(o.e.a){case 0:r=A.ax("checkbox") -if(r==null)r=t.K.a(r) -s.k2.setAttribute("role",r) -break -case 1:r=A.ax("radio") -if(r==null)r=t.K.a(r) -s.k2.setAttribute("role",r) -break -case 2:r=A.ax("switch") -if(r==null)r=t.K.a(r) -s.k2.setAttribute("role",r) -break}if(s.JL()===B.fw){q=s.k2 -r=A.ax(n) -if(r==null)r=t.K.a(r) -q.setAttribute("aria-disabled",r) -r=A.ax(n) -if(r==null)r=t.K.a(r) -q.setAttribute("disabled",r)}else o.Si() -r=s.a -p=A.ax((r&2)!==0||(r&131072)!==0?n:"false") -r=p==null?t.K.a(p):p -s.k2.setAttribute("aria-checked",r)}}, -n(){this.ty() -this.Si()}, -Si(){var s=this.b.k2 -s.removeAttribute("aria-disabled") -s.removeAttribute("disabled")}} -A.MO.prototype={ -ds(a){var s,r,q -this.m5(0) -s=this.b -if((s.a&4096)!==0){r=s.z -s=s.k2 -q=A.ax(r==null?"":r) -if(q==null)q=t.K.a(q) -s.setAttribute("aria-label",q) -q=A.ax("dialog") -if(q==null)q=t.K.a(q) -s.setAttribute("role",q)}}, -Wq(a){var s,r=this.b -if((r.a&4096)!==0)return -r=r.k2 -s=A.ax("dialog") -if(s==null)s=t.K.a(s) -r.setAttribute("role",s) -s=A.ax(a.b.k2.id) -if(s==null)s=t.K.a(s) -r.setAttribute("aria-describedby",s)}} -A.RR.prototype={ -ds(a){var s,r=this,q=r.b -if((q.k3&1024)!==0){s=r.d -if(s!=null)s.Wq(r) -else q.k1.e.push(new A.ajX(r))}}, -aeE(){var s,r,q=this.b.ok -while(!0){s=q!=null -if(s){r=q.p2 -r=(r==null?null:r.a)!==B.hm}else r=!1 -if(!r)break -q=q.ok}if(s){s=q.p2 -s=(s==null?null:s.a)===B.hm}else s=!1 -if(s){s=q.p2 -s.toString -this.d=t.JX.a(s)}}} -A.ajX.prototype={ -$0(){var s,r=this.a -if(!r.c){r.aeE() -s=r.d -if(s!=null)s.Wq(r)}}, -$S:0} -A.NL.prototype={ -ds(a){var s=this.b.a -if((s&32)!==0)s=(s&64)===0||(s&128)!==0 -else s=!1 -this.d.Vu(s)}} -A.KF.prototype={ -Yy(a,b){var s,r,q=this,p=q.b,o=p==null -if(b===(o?null:p.a[2])){o=p.a -if(a===o[3])return -s=o[2] -r=o[1] -q.b=new A.HM([o[0],r,s,a]) -return}if(!o)q.Nh() -o=t.e -s=o.a(A.bd(new A.a3Q(q))) -s=[o.a(A.bd(new A.a3R(q))),s,b,a] -q.b=new A.HM(s) -b.tabIndex=0 -A.cI(b,"focus",s[1],null) -A.cI(b,"blur",s[0],null)}, -Nh(){var s,r=this.b -if(r==null)return -s=r.a -A.eZ(s[2],"focus",s[1],null) -A.eZ(s[2],"blur",s[0],null) -this.b=null}, -T_(a){var s,r,q=this.b -if(q==null)return -s=$.bi() -r=q.a[3] -s.kJ(r,a?B.yn:B.yp,null)}, -Vu(a){var s=this.b -if(s==null)return -this.a.e.push(new A.a3P(this,s,a))}} -A.a3Q.prototype={ -$1(a){return this.a.T_(!0)}, -$S:2} -A.a3R.prototype={ -$1(a){return this.a.T_(!1)}, -$S:2} -A.a3P.prototype={ -$0(){var s=this.b -if(!J.e(this.a.b,s))return -s=s.a -if(this.c)s[2].focus() -else s[2].blur()}, -$S:0} -A.adu.prototype={ -ds(a){var s,r,q,p=this -p.m5(0) -s=p.b -if(s.gKD()){r=s.dy -r=r!=null&&!B.es.ga8(r)}else r=!1 -if(r){if(p.e==null){p.e=A.bo(self.document,"flt-semantics-img") -r=s.dy -if(r!=null&&!B.es.ga8(r)){r=p.e.style -A.x(r,"position","absolute") -A.x(r,"top","0") -A.x(r,"left","0") -q=s.y -A.x(r,"width",A.j(q.c-q.a)+"px") -q=s.y -A.x(r,"height",A.j(q.d-q.b)+"px")}A.x(p.e.style,"font-size","6px") -r=p.e -r.toString -s.k2.append(r)}s=p.e -s.toString -r=A.ax("img") -if(r==null)r=t.K.a(r) -s.setAttribute("role",r) -p.T1(p.e)}else{r=s.k2 -if(s.gKD()){s=A.ax("img") -if(s==null)s=t.K.a(s) -r.setAttribute("role",s) -p.T1(r) -p.Fh()}else{p.Fh() -r.removeAttribute("aria-label")}}}, -T1(a){var s=this.b.z -if(s!=null&&s.length!==0){a.toString -s.toString -s=A.ax(s) -if(s==null)s=t.K.a(s) -a.setAttribute("aria-label",s)}}, -Fh(){var s=this.e -if(s!=null){s.remove() -this.e=null}}, -n(){this.ty() -this.Fh() -this.b.k2.removeAttribute("aria-label")}} -A.adC.prototype={ -a5X(a){var s,r,q=this -q.Av() -q.It() -q.UU() -s=q.e -a.k2.append(s) -A.a7C(s,"range") -r=A.ax("slider") -if(r==null)r=t.K.a(r) -s.setAttribute("role",r) -A.cI(s,"change",t.e.a(A.bd(new A.adD(q,a))),null) -r=new A.adE(q) -q.w=r -a.k1.as.push(r) -q.f.Yy(a.id,s)}, -ds(a){var s,r=this -r.m5(0) -s=r.b -switch(s.k1.z.a){case 1:r.a9n() -r.akD() -break -case 0:r.PA() -break}r.f.Vu((s.a&32)!==0)}, -a9n(){var s=this.e,r=A.aCV(s) -r.toString -if(!r)return -A.aI9(s,!1)}, -akD(){var s,r,q,p,o,n,m,l=this -if(!l.x){s=l.b.k3 -r=(s&4096)!==0||(s&8192)!==0||(s&16384)!==0}else r=!0 -if(!r)return -l.x=!1 -q=""+l.r -s=l.e -A.aIa(s,q) -p=A.ax(q) -if(p==null)p=t.K.a(p) -s.setAttribute("aria-valuenow",p) -p=l.b -o=p.ax -o.toString -o=A.ax(o) -if(o==null)o=t.K.a(o) -s.setAttribute("aria-valuetext",o) -n=p.ch.length!==0?""+(l.r+1):q -s.max=n -o=A.ax(n) -if(o==null)o=t.K.a(o) -s.setAttribute("aria-valuemax",o) -m=p.cx.length!==0?""+(l.r-1):q -s.min=m -p=A.ax(m) -if(p==null)p=t.K.a(p) -s.setAttribute("aria-valuemin",p)}, -PA(){var s=this.e,r=A.aCV(s) -r.toString -if(r)return -A.aI9(s,!0)}, -n(){var s=this -s.ty() -s.f.Nh() -B.b.F(s.b.k1.as,s.w) -s.w=null -s.PA() -s.e.remove()}} -A.adD.prototype={ -$1(a){var s,r=this.a,q=r.e,p=A.aCV(q) -p.toString -if(p)return -r.x=!0 -q=A.aI8(q) -q.toString -s=A.dT(q,null) -q=r.r -if(s>q){r.r=q+1 -$.bi().kJ(this.b.id,B.yo,null)}else if(sq){s=s.b -s.toString -if((s&32)!==0||(s&16)!==0)$.bi().kJ(p,B.eG,n) -else $.bi().kJ(p,B.eI,n)}else{s=s.b -s.toString -if((s&32)!==0||(s&16)!==0)$.bi().kJ(p,B.eH,n) -else $.bi().kJ(p,B.eJ,n)}}}, -ds(a){var s,r,q,p=this -p.m5(0) -s=p.b -r=s.k1 -r.e.push(new A.akQ(p)) -if(p.r==null){s=s.k2 -A.x(s.style,"touch-action","none") -p.Q4() -q=new A.akR(p) -p.e=q -r.as.push(q) -q=t.e.a(A.bd(new A.akS(p))) -p.r=q -A.cI(s,"scroll",q,null)}}, -gPH(){var s=this.b,r=s.b -r.toString -r=(r&32)!==0||(r&16)!==0 -s=s.k2 -if(r)return B.d.ac(s.scrollTop) -else return B.d.ac(s.scrollLeft)}, -RE(){var s,r,q,p,o=this,n="transform",m=o.b,l=m.k2,k=m.y -if(k==null){$.eh().$1("Warning! the rect attribute of semanticsObject is null") -return}s=m.b -s.toString -s=(s&32)!==0||(s&16)!==0 -r=o.f -q=k.d-k.b -p=k.c-k.a -if(s){s=B.d.e9(q) -r=r.style -A.x(r,n,"translate(0px,"+(s+10)+"px)") -A.x(r,"width",""+B.d.bE(p)+"px") -A.x(r,"height","10px") -l.scrollTop=10 -m.p3=o.w=B.d.ac(l.scrollTop) -m.p4=0}else{s=B.d.e9(p) -r=r.style -A.x(r,n,"translate("+(s+10)+"px,0px)") -A.x(r,"width","10px") -A.x(r,"height",""+B.d.bE(q)+"px") -l.scrollLeft=10 -q=B.d.ac(l.scrollLeft) -o.w=q -m.p3=0 -m.p4=q}}, -Q4(){var s="overflow-y",r="overflow-x",q=this.b,p=q.k2 -switch(q.k1.z.a){case 1:q=q.b -q.toString -if((q&32)!==0||(q&16)!==0)A.x(p.style,s,"scroll") -else A.x(p.style,r,"scroll") -break -case 0:q=q.b -q.toString -if((q&32)!==0||(q&16)!==0)A.x(p.style,s,"hidden") -else A.x(p.style,r,"hidden") -break}}, -n(){var s,r,q,p,o=this -o.ty() -s=o.b -r=s.k2 -q=r.style -q.removeProperty("overflowY") -q.removeProperty("overflowX") -q.removeProperty("touch-action") -p=o.r -if(p!=null)A.eZ(r,"scroll",p,null) -B.b.F(s.k1.as,o.e) -o.e=null}} -A.akQ.prototype={ -$0(){var s=this.a -s.RE() -s.b.Lw()}, -$S:0} -A.akR.prototype={ -$1(a){this.a.Q4()}, -$S:125} -A.akS.prototype={ -$1(a){this.a.ahn()}, -$S:2} -A.uJ.prototype={ -k(a){var s=A.b([],t.s),r=this.a -if((r&1)!==0)s.push("accessibleNavigation") -if((r&2)!==0)s.push("invertColors") -if((r&4)!==0)s.push("disableAnimations") -if((r&8)!==0)s.push("boldText") -if((r&16)!==0)s.push("reduceMotion") -if((r&32)!==0)s.push("highContrast") -if((r&64)!==0)s.push("onOffSwitchLabels") -return"AccessibilityFeatures"+A.j(s)}, -j(a,b){if(b==null)return!1 -if(J.Y(b)!==A.u(this))return!1 -return b instanceof A.uJ&&b.a===this.a}, -gA(a){return B.h.gA(this.a)}, -VV(a,b){var s=(a==null?(this.a&1)!==0:a)?1:0,r=this.a -s=(r&2)!==0?s|2:s&4294967293 -s=(r&4)!==0?s|4:s&4294967291 -s=(r&8)!==0?s|8:s&4294967287 -s=(r&16)!==0?s|16:s&4294967279 -s=(b==null?(r&32)!==0:b)?s|32:s&4294967263 -return new A.uJ((r&64)!==0?s|64:s&4294967231)}, -ans(a){return this.VV(null,a)}, -anl(a){return this.VV(a,null)}} -A.a8N.prototype={ -saqq(a){var s=this.a -this.a=a?s|32:s&4294967263}, -bq(){return new A.uJ(this.a)}} -A.Sk.prototype={$iaE6:1} -A.Si.prototype={} -A.l0.prototype={ -I(){return"PrimaryRole."+this.b}} -A.rL.prototype={ -I(){return"Role."+this.b}} -A.R_.prototype={ -yh(a,b){var s=this -s.Ip() -s.Av() -s.It() -s.UU() -s.V1()}, -Ip(){var s,r=this.b -if((r.a&2097152)!==0){s=new A.KF(r.k1) -s.Yy(r.id,r.k2) -this.uM(new A.NL(s,B.NH,r))}}, -Av(){var s=this.b,r=s.a -if((r&32768)!==0&&(r&8192)===0)this.uM(new A.P3(B.NK,s))}, -It(){var s=this.b -if((s.a&4096)!==0)this.uM(new A.RR(B.NL,s))}, -UU(){var s=this.b,r=s.z -if(!(r!=null&&r.length!==0)){r=s.ax -if(!(r!=null&&r.length!==0)){r=s.fy -r=r!=null&&r.length!==0}else r=!0}else r=!0 -if(r)this.uM(new A.OO(B.NJ,s))}, -V1(){var s=this.b,r=s.b -r.toString -if((r&1)!==0)this.uM(new A.Ti(B.NI,s))}, -uM(a){var s=this.c;(s==null?this.c=A.b([],t.VM):s).push(a)}, -ds(a){var s,r,q=this.c -if(q==null)return -for(s=q.length,r=0;r1)for(p=0;p=0;--p){g=l[p] -s=g.id -if(!B.b.t(a0,s)){k=g.k2 -if(a1==null)m.append(k) -else m.insertBefore(k,a1) -g.ok=a2 -q.c.m(0,s,a2)}a1=g.k2}a2.p1=l}, -aaA(){var s,r,q=this -if((q.a&16)!==0)return B.y4 -else{s=q.b -s.toString -if((s&64)!==0||(s&128)!==0)return B.y3 -else if(q.gKD())return B.y5 -else{s=q.a -if((s&1)!==0||(s&65536)!==0)return B.kd -else if((s&8)!==0)return B.kc -else{r=q.b -r.toString -if((r&32)!==0||(r&16)!==0||(r&4)!==0||(r&8)!==0)return B.kb -else if((s&2048)!==0)return B.hm -else return B.ka}}}}, -a8E(a){var s,r,q,p=this -switch(a.a){case 4:s=new A.aoq(B.y4,p) -s.aiW() -break -case 2:s=A.bo(self.document,"flt-semantics-scroll-overflow") -r=new A.akJ(s,B.kb,p) -r.yh(B.kb,p) -q=s.style -A.x(q,"position","absolute") -A.x(q,"transform-origin","0 0 0") -A.x(q,"pointer-events","none") -p.k2.append(s) -s=r -break -case 1:s=A.aYE(p) -break -case 3:s=new A.a5o(B.kc,p) -s.yh(B.kc,p) -r=A.ax("button") -if(r==null)r=t.K.a(r) -p.k2.setAttribute("role",r) -break -case 5:s=new A.a5W(A.b2X(p),B.kd,p) -s.yh(B.kd,p) -break -case 7:s=new A.MO(B.hm,p) -s.Ip() -s.Av() -break -case 6:s=new A.adu(B.y5,p) -s.Ip() -s.Av() -s.It() -s.V1() -break -case 0:s=new A.aaT(B.ka,p) -s.yh(B.ka,p) -break -default:s=null}return s}, -akN(){var s=this,r=s.p2,q=s.aaA() -if(r!=null)if(r.a===q){r.ds(0) -return}else{r.n() -r=s.p2=null}if(r==null){r=s.a8E(q) -s.p2=r -r.ds(0)}}, -Lw(){var s,r,q,p,o,n,m,l,k,j,i=this,h=i.k2,g=h.style,f=i.y -A.x(g,"width",A.j(f.c-f.a)+"px") -f=i.y -A.x(g,"height",A.j(f.d-f.b)+"px") -g=i.dy -s=g!=null&&!B.es.ga8(g)?i.Mq():null -g=i.y -r=g.b===0&&g.a===0 -q=i.dx -g=q==null -p=g||A.aBY(q)===B.zP -if(r&&p&&i.p3===0&&i.p4===0){A.alh(h) -if(s!=null)A.alh(s) -return}o=A.bg("effectiveTransform") -if(!r)if(g){g=i.y -n=g.a -m=g.b -g=A.en() -g.nx(n,m,0) -o.b=g -l=n===0&&m===0}else{g=new A.cm(new Float32Array(16)) -g.aS(new A.cm(q)) -f=i.y -g.aK(0,f.a,f.b) -o.b=g -l=J.aVj(o.aI())}else if(!p){o.b=new A.cm(q) -l=!1}else l=!0 -if(!l){h=h.style -A.x(h,"transform-origin","0 0 0") -A.x(h,"transform",A.kc(o.aI().a))}else A.alh(h) -if(s!=null)if(!r||i.p3!==0||i.p4!==0){h=i.y -g=h.a -f=i.p4 -h=h.b -k=i.p3 -j=s.style -A.x(j,"top",A.j(-h+k)+"px") -A.x(j,"left",A.j(-g+f)+"px")}else A.alh(s)}, -a_w(a){var s -a.$1(this) -s=this.p1 -if(s!=null)B.b.N(s,new A.ali(a))}, -k(a){return this.cu(0)}} -A.ali.prototype={ -$1(a){a.a_w(this.a)}, -$S:203} -A.a3S.prototype={ -I(){return"AccessibilityMode."+this.b}} -A.qF.prototype={ -I(){return"GestureMode."+this.b}} -A.E0.prototype={ -I(){return"SemanticsUpdatePhase."+this.b}} -A.a96.prototype={ -a5U(){$.pz.push(new A.a97(this))}, -a9I(){var s,r,q,p,o,n,m,l,k,j,i,h=this -for(r=h.d,q=r.length,p=h.b,o=t.Qo,n=0;n>>0}n=m.cx -if(l.ax!==n){l.ax=n -l.k3=(l.k3|4096)>>>0}n=m.cy -if(l.ay!==n){l.ay=n -l.k3=(l.k3|4096)>>>0}n=m.ax -if(l.z!==n){l.z=n -l.k3=(l.k3|1024)>>>0}n=m.ay -if(l.Q!==n){l.Q=n -l.k3=(l.k3|1024)>>>0}n=m.at -if(!J.e(l.y,n)){l.y=n -l.k3=(l.k3|512)>>>0}n=m.go -if(l.dx!==n){l.dx=n -l.k3=(l.k3|65536)>>>0}n=m.z -if(l.r!==n){l.r=n -l.k3=(l.k3|64)>>>0}n=m.c -if(l.b!==n){l.b=n -l.k3=(l.k3|2)>>>0}n=m.f -if(l.c!==n){l.c=n -l.k3=(l.k3|4)>>>0}n=m.r -if(l.d!==n){l.d=n -l.k3=(l.k3|8)>>>0}n=m.x -if(l.e!==n){l.e=n -l.k3=(l.k3|16)>>>0}n=m.y -if(l.f!==n){l.f=n -l.k3=(l.k3|32)>>>0}n=m.Q -if(l.w!==n){l.w=n -l.k3=(l.k3|128)>>>0}n=m.as -if(l.x!==n){l.x=n -l.k3=(l.k3|256)>>>0}n=m.ch -if(l.as!==n){l.as=n -l.k3=(l.k3|2048)>>>0}n=m.CW -if(l.at!==n){l.at=n -l.k3=(l.k3|2048)>>>0}n=m.db -if(l.ch!==n){l.ch=n -l.k3=(l.k3|8192)>>>0}n=m.dx -if(l.CW!==n){l.CW=n -l.k3=(l.k3|8192)>>>0}n=m.dy -if(l.cx!==n){l.cx=n -l.k3=(l.k3|16384)>>>0}n=m.fr -if(l.cy!==n){l.cy=n -l.k3=(l.k3|16384)>>>0}n=m.fx -if(l.fy!==n){l.fy=n -l.k3=(l.k3|4194304)>>>0}n=m.fy -if(l.db!=n){l.db=n -l.k3=(l.k3|32768)>>>0}n=m.k1 -if(l.fr!==n){l.fr=n -l.k3=(l.k3|1048576)>>>0}n=m.id -if(l.dy!==n){l.dy=n -l.k3=(l.k3|524288)>>>0}n=m.k2 -if(l.fx!==n){l.fx=n -l.k3=(l.k3|2097152)>>>0}n=m.w -if(l.go!==n){l.go=n -l.k3=(l.k3|8388608)>>>0}l.akN() -n=l.k3 -if((n&512)!==0||(n&65536)!==0||(n&64)!==0)l.Lw() -n=l.dy -n=!(n!=null&&!B.es.ga8(n))&&l.go===-1 -k=l.k2 -if(n){n=k.style -n.setProperty("pointer-events","all","")}else{n=k.style -n.setProperty("pointer-events","none","")}}for(o=0;o=20)return i.d=!0 -if(!B.OB.t(0,a.type))return!0 -if(i.a!=null)return!1 -r=A.bg("activationPoint") -switch(a.type){case"click":r.scM(new A.Al(a.offsetX,a.offsetY)) -break -case"touchstart":case"touchend":s=t.zZ -s=A.c3(new A.mW(a.changedTouches,s),s.i("q.E"),t.e) -s=A.p(s).z[1].a(J.nh(s.a)) -r.scM(new A.Al(s.clientX,s.clientY)) -break -case"pointerdown":case"pointerup":r.scM(new A.Al(a.clientX,a.clientY)) -break -default:return!0}q=i.b.getBoundingClientRect() -s=q.left -p=q.right -o=q.left -n=q.top -m=q.bottom -l=q.top -k=r.aI().a-(s+(p-o)/2) -j=r.aI().b-(n+(m-l)/2) -if(k*k+j*j<1&&!0){i.d=!0 -i.a=A.cM(B.bC,new A.ag3(i)) -return!1}return!0}, -Z7(){var s,r=this.b=A.bo(self.document,"flt-semantics-placeholder") -A.cI(r,"click",t.e.a(A.bd(new A.ag2(this))),!0) -s=A.ax("button") -if(s==null)s=t.K.a(s) -r.setAttribute("role",s) -s=A.ax("Enable accessibility") -if(s==null)s=t.K.a(s) -r.setAttribute("aria-label",s) -s=r.style -A.x(s,"position","absolute") -A.x(s,"left","0") -A.x(s,"top","0") -A.x(s,"right","0") -A.x(s,"bottom","0") -return r}, -n(){var s=this.b -if(s!=null)s.remove() -this.a=this.b=null}} -A.ag3.prototype={ -$0(){this.a.n() -var s=$.eF;(s==null?$.eF=A.lZ():s).sE7(!0)}, -$S:0} -A.ag2.prototype={ -$1(a){this.a.DC(a)}, -$S:2} -A.a5o.prototype={ -ds(a){var s,r -this.m5(0) -s=this.b -r=s.k2 -if(s.JL()===B.fw){s=A.ax("true") -if(s==null)s=t.K.a(s) -r.setAttribute("aria-disabled",s)}else r.removeAttribute("aria-disabled")}} -A.Ti.prototype={ -ds(a){var s,r=this,q=r.b -if(q.JL()!==B.fw){s=q.b -s.toString -s=(s&1)===0}else s=!0 -if(s)r.ajr() -else if(r.d==null){s=t.e.a(A.bd(new A.anU(r))) -r.d=s -A.cI(q.k2,"click",s,null)}}, -ajr(){var s=this.d -if(s==null)return -A.eZ(this.b.k2,"click",s,null) -this.d=null}} -A.anU.prototype={ -$1(a){var s=this.a.b -if(s.k1.z!==B.d8)return -$.bi().kJ(s.id,B.cR,null)}, -$S:2} -A.alo.prototype={ -JK(a,b,c,d){this.CW=b -this.x=d -this.y=c}, -alr(a){var s,r,q=this,p=q.ch -if(p===a)return -else if(p!=null)q.jD(0) -q.ch=a -q.c=a.e -q.Tq() -p=q.CW -p.toString -s=q.x -s.toString -r=q.y -r.toString -q.a1Z(0,p,r,s)}, -jD(a){var s,r,q,p=this -if(!p.b)return -p.b=!1 -p.w=p.r=null -for(s=p.z,r=0;r=this.b)throw A.d(A.aDl(b,this,null,null,null)) -return this.a[b]}, -m(a,b,c){if(b>=this.b)throw A.d(A.aDl(b,this,null,null,null)) -this.a[b]=c}, -sp(a,b){var s,r,q,p=this,o=p.b -if(bo){if(o===0)q=new Uint8Array(b) -else q=p.tR(b) -B.P.dh(q,0,p.b,p.a) -p.a=q}}p.b=b}, -f4(a,b){var s=this,r=s.b -if(r===s.a.length)s.Od(r) -s.a[s.b++]=b}, -E(a,b){var s=this,r=s.b -if(r===s.a.length)s.Od(r) -s.a[s.b++]=b}, -Ap(a,b,c,d){A.e_(c,"start") -if(d!=null&&c>d)throw A.d(A.bZ(d,c,null,"end",null)) -this.Oe(b,c,d)}, -K(a,b){return this.Ap(a,b,0,null)}, -fn(a,b,c){var s,r,q,p,o,n,m=this,l=null,k=m.b -A.adF(b,k+1,m,"index") -A.e_(0,"start") -if(b===k){m.Oe(c,0,l) -return}s=t.j.b(c)?J.b4(c):l -if(s!=null){m.Ra(b,c,0,s) -return}r=m.b -for(k=J.as(c),q=0;k.u();){p=k.gJ(k) -o=m.a -if(r===o.length){o=m.tR(l) -B.P.dh(o,0,r,m.a) -m.a=o}n=r+1 -o[r]=p -r=n}A.aEH(m.a,b,m.b) -A.aEH(m.a,m.b,r) -A.aEH(m.a,b,r) -m.b=r -return}, -Oe(a,b,c){var s,r,q,p=this -if(A.p(p).i("B").b(a))c=c==null?J.b4(a):c -if(c!=null){p.Ra(p.b,a,b,c) -return}for(s=J.as(a),r=0;s.u();){q=s.gJ(s) -if(r>=b)p.f4(0,q);++r}if(ro.gp(b)||d>o.gp(b))throw A.d(A.a4("Too few elements")) -s=d-c -r=p.b+s -p.a9r(r) -o=p.a -q=a+s -B.P.bx(o,q,p.b+s,o,a) -B.P.bx(p.a,a,q,b,c) -p.b=r}, -eY(a,b,c){var s,r,q=this,p=q.b -if(b>p)throw A.d(A.bZ(b,0,p,null,null)) -s=q.a -if(ps)throw A.d(A.bZ(c,0,s,null,null)) -s=this.a -if(A.p(this).i("lz").b(d))B.P.bx(s,b,c,d.a,e) -else B.P.bx(s,b,c,d,e)}, -dh(a,b,c,d){return this.bx(a,b,c,d,0)}} -A.Xx.prototype={} -A.TW.prototype={} -A.iO.prototype={ -k(a){return A.u(this).k(0)+"("+this.a+", "+A.j(this.b)+")"}} -A.ae8.prototype={ -cD(a){return A.rh(B.d2.cm(B.ar.j0(a)).buffer,0,null)}, -h5(a){if(a==null)return a -return B.ar.ea(0,B.cw.cm(A.dm(a.buffer,0,null)))}} -A.aea.prototype={ -jI(a){return B.a9.cD(A.l(["method",a.a,"args",a.b],t.N,t.z))}, -iW(a){var s,r,q,p=null,o=B.a9.h5(a) -if(!t.f.b(o))throw A.d(A.bW("Expected method call Map, got "+A.j(o),p,p)) -s=J.X(o) -r=s.h(o,"method") -q=s.h(o,"args") -if(typeof r=="string")return new A.iO(r,q) -throw A.d(A.bW("Invalid method call: "+A.j(o),p,p))}} -A.amu.prototype={ -cD(a){var s=A.aEo() -this.c4(0,s,!0) -return s.mC()}, -h5(a){var s,r -if(a==null)return null -s=new A.Ra(a) -r=this.cK(0,s) -if(s.b=b.a.byteLength)throw A.d(B.bd) -return this.j9(b.pe(0),b)}, -j9(a,b){var s,r,q,p,o,n,m,l,k=this -switch(a){case 0:s=null -break -case 1:s=!0 -break -case 2:s=!1 -break -case 3:r=b.a.getInt32(b.b,B.ay===$.eg()) -b.b+=4 -s=r -break -case 4:s=b.DT(0) -break -case 5:q=k.fo(b) -s=A.dT(B.cw.cm(b.pf(q)),16) -break -case 6:b.m9(8) -r=b.a.getFloat64(b.b,B.ay===$.eg()) -b.b+=8 -s=r -break -case 7:q=k.fo(b) -s=B.cw.cm(b.pf(q)) -break -case 8:s=b.pf(k.fo(b)) -break -case 9:q=k.fo(b) -b.m9(4) -p=b.a -o=A.aJA(p.buffer,p.byteOffset+b.b,q) -b.b=b.b+4*q -s=o -break -case 10:s=b.DU(k.fo(b)) -break -case 11:q=k.fo(b) -b.m9(8) -p=b.a -o=A.aJy(p.buffer,p.byteOffset+b.b,q) -b.b=b.b+8*q -s=o -break -case 12:q=k.fo(b) -s=[] -for(p=b.a,n=0;n=p.byteLength)A.U(B.bd) -b.b=m+1 -s.push(k.j9(p.getUint8(m),b))}break -case 13:q=k.fo(b) -p=t.z -s=A.m(p,p) -for(p=b.a,n=0;n=p.byteLength)A.U(B.bd) -b.b=m+1 -m=k.j9(p.getUint8(m),b) -l=b.b -if(l>=p.byteLength)A.U(B.bd) -b.b=l+1 -s.m(0,m,k.j9(p.getUint8(l),b))}break -default:throw A.d(B.bd)}return s}, -hl(a,b){var s,r,q -if(b<254)a.b.f4(0,b) -else{s=a.b -r=a.c -q=a.d -if(b<=65535){s.f4(0,254) -r.setUint16(0,b,B.ay===$.eg()) -s.Ap(0,q,0,2)}else{s.f4(0,255) -r.setUint32(0,b,B.ay===$.eg()) -s.Ap(0,q,0,4)}}}, -fo(a){var s=a.pe(0) -switch(s){case 254:s=a.a.getUint16(a.b,B.ay===$.eg()) -a.b+=2 -return s -case 255:s=a.a.getUint32(a.b,B.ay===$.eg()) -a.b+=4 -return s -default:return s}}} -A.amv.prototype={ -$2(a,b){var s=this.a,r=this.b -s.c4(0,r,a) -s.c4(0,r,b)}, -$S:104} -A.amx.prototype={ -iW(a){var s,r,q -a.toString -s=new A.Ra(a) -r=B.cb.cK(0,s) -q=B.cb.cK(0,s) -if(typeof r=="string"&&s.b>=a.byteLength)return new A.iO(r,q) -else throw A.d(B.nt)}, -vA(a){var s=A.aEo() -s.b.f4(0,0) -B.cb.c4(0,s,a) -return s.mC()}, -om(a,b,c){var s=A.aEo() -s.b.f4(0,1) -B.cb.c4(0,s,a) -B.cb.c4(0,s,c) -B.cb.c4(0,s,b) -return s.mC()}} -A.aqn.prototype={ -m9(a){var s,r,q=this.b,p=B.h.cF(q.b,a) -if(p!==0)for(s=a-p,r=0;r0)b=c -else{f=$.cX().x -if(f==null){f=self.window.devicePixelRatio -if(f===0)f=1}b=1/f}f=d==null?a9:A.dA(d.gl(d)) -b1.setProperty("-webkit-text-stroke",A.j(b)+"px "+A.j(f),"")}else if(d!=null){f=A.dA(d.gl(d)) -b1.setProperty("color",f,"")}f=g.cx -a=f==null?a9:f.gaf(f) -if(a!=null){f=A.dA(a.a) -b1.setProperty("background-color",f,"")}a0=g.at -if(a0!=null){f=B.d.ec(a0) -b1.setProperty("font-size",""+f+"px","")}f=g.f -if(f!=null){f=A.aOa(f) -f.toString -b1.setProperty("font-weight",f,"")}f=g.r -if(f!=null){f=f===B.nq?"normal":"italic" -b1.setProperty("font-style",f,"")}f=A.aAG(g.y) -f.toString -b1.setProperty("font-family",f,"") -f=g.ax -if(f!=null)b1.setProperty("letter-spacing",A.j(f)+"px","") -f=g.ay -if(f!=null)b1.setProperty("word-spacing",A.j(f)+"px","") -f=g.b -e=f!=null -a1=e&&!0 -a2=g.db -if(a2!=null){a3=A.b4i(a2) -b1.setProperty("text-shadow",a3,"")}if(a1)if(e){e=g.d -f=f.a -a3=(f|1)===f?""+"underline ":"" -if((f|2)===f)a3+="overline " -f=(f|4)===f?a3+"line-through ":a3 -if(e!=null)f+=A.j(A.b39(e)) -a4=f.length===0?a9:f.charCodeAt(0)==0?f:f -if(a4!=null){f=$.cr() -if(f===B.M){f=h.style -f.setProperty("-webkit-text-decoration",a4,"")}else b1.setProperty("text-decoration",a4,"") -a5=g.c -if(a5!=null){f=A.dA(a5.gl(a5)) -b1.setProperty("text-decoration-color",f,"")}}}a6=g.Q -if(a6!=null&&!0){f=A.b3o(a6) -b1.setProperty("font-feature-settings",f,"")}a7=g.as -if(a7!=null&&a7.length!==0){g=A.b3p(a7) -b1.setProperty("font-variation-settings",g,"")}g=j.a_c() -f=g.a -e=g.b -a3=h.style -a3.setProperty("position","absolute","") -a3.setProperty("top",A.j(e)+"px","") -a3.setProperty("left",A.j(f)+"px","") -a3.setProperty("width",A.j(g.c-f)+"px","") -a3.setProperty("line-height",A.j(g.d-e)+"px","") -h.append(self.document.createTextNode(i)) -b0.append(h)}++q}return b0}, -xt(){return this.gfE().xt()}, -xu(a,b,c,d){return this.gfE().a_V(a,b,c,d)}, -DN(a,b,c){return this.xu(a,b,c,B.c9)}, -eC(a){return this.gfE().eC(a)}, -l4(a){var s,r -switch(a.b.a){case 0:s=a.a-1 -break -case 1:s=a.a -break -default:s=null}r=this.c -r===$&&A.c() -return new A.cb(A.aLG(B.Wu,r,s+1),A.aLG(B.Wt,r,s))}, -DV(a){var s,r,q,p,o,n=this,m=a.a,l=t.OB,k=0 -while(!0){s=n.r -if(s===$){r=A.b([],l) -n.r!==$&&A.aW() -q=n.r=new A.p1(n,r,B.u) -p=q -s=p}else p=s -if(!(k=o.b&&m") -return A.a8(new A.a1(s,new A.a5J(),r),!0,r.i("am.E"))}, -n(){this.y=!0}} -A.a5J.prototype={ -$1(a){return a.a}, -$S:405} -A.rn.prototype={ -gbC(a){return this.a}, -gbg(a){return this.c}} -A.vW.prototype={$irn:1, -gbC(a){return this.f}, -gbg(a){return this.w}} -A.wQ.prototype={ -LG(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b=this,a=b.a -if(a==null){s=b.gFn(b) -r=b.gFI() -q=b.gFJ() -p=b.gFK() -o=b.gFL() -n=b.gG8(b) -m=b.gG6(b) -l=b.gHO() -k=b.gG2(b) -j=b.gG3() -i=b.gG4() -h=b.gG7() -g=b.gG5(b) -f=b.gGJ(b) -e=b.gIg(b) -d=b.gEM(b) -c=b.gGQ() -e=b.a=A.aIx(b.gF4(b),s,r,q,p,o,k,j,i,g,m,h,n,b.gyM(),d,f,c,b.gHD(),l,e) -return e}return a}} -A.LH.prototype={ -gFn(a){var s=this.c.a -if(s==null)if(this.gyM()==null){s=this.b -s=s.gFn(s)}else s=null -return s}, -gFI(){var s=this.c.b -return s==null?this.b.gFI():s}, -gFJ(){var s=this.c.c -return s==null?this.b.gFJ():s}, -gFK(){var s=this.c.d -return s==null?this.b.gFK():s}, -gFL(){var s=this.c.e -return s==null?this.b.gFL():s}, -gG8(a){var s=this.c.f -if(s==null){s=this.b -s=s.gG8(s)}return s}, -gG6(a){var s=this.c.r -if(s==null){s=this.b -s=s.gG6(s)}return s}, -gHO(){var s=this.c.w -return s==null?this.b.gHO():s}, -gG3(){var s=this.c.z -return s==null?this.b.gG3():s}, -gG4(){var s=this.c.Q -return s==null?this.b.gG4():s}, -gG7(){var s=this.c.as -return s==null?this.b.gG7():s}, -gG5(a){var s=this.c.at -if(s==null){s=this.b -s=s.gG5(s)}return s}, -gGJ(a){var s=this.c.ax -if(s==null){s=this.b -s=s.gGJ(s)}return s}, -gIg(a){var s=this.c.ay -if(s==null){s=this.b -s=s.gIg(s)}return s}, -gEM(a){var s=this.c.ch -if(s==null){s=this.b -s=s.gEM(s)}return s}, -gGQ(){var s=this.c.CW -return s==null?this.b.gGQ():s}, -gF4(a){var s=this.c.cx -if(s==null){s=this.b -s=s.gF4(s)}return s}, -gyM(){var s=this.c.cy -return s==null?this.b.gyM():s}, -gHD(){var s=this.c.db -return s==null?this.b.gHD():s}, -gG2(a){var s=this.c -if(s.x)s=s.y -else{s=this.b -s=s.gG2(s)}return s}} -A.RO.prototype={ -gFn(a){return null}, -gFI(){return null}, -gFJ(){return null}, -gFK(){return null}, -gFL(){return null}, -gG8(a){return this.b.c}, -gG6(a){return this.b.d}, -gHO(){return null}, -gG2(a){var s=this.b.f -return s==null?"sans-serif":s}, -gG3(){return null}, -gG4(){return null}, -gG7(){return null}, -gG5(a){var s=this.b.r -return s==null?14:s}, -gGJ(a){return null}, -gIg(a){return null}, -gEM(a){return this.b.w}, -gGQ(){return this.b.Q}, -gF4(a){return null}, -gyM(){return null}, -gHD(){return null}} -A.a5I.prototype={ -gFH(){var s=this.d,r=s.length -return r===0?this.e:s[r-1]}, -gZ3(){return this.f}, -uK(a,b,c,d,e,f){var s,r=this,q=r.a,p=q.a,o=p+$.aTL() -q.a=o -s=r.gFH().LG() -r.U_(s);++r.f -r.r.push(f) -q=e==null?b:e -r.c.push(new A.vW(s,p.length,o.length,a*f,b*f,c,q*f))}, -UX(a,b,c,d,e){return this.uK(a,b,c,d,e,1)}, -UW(a,b,c,d){return this.uK(a,b,c,null,null,d)}, -rD(a){this.d.push(new A.LH(this.gFH(),t.Q4.a(a)))}, -ex(){var s=this.d -if(s.length!==0)s.pop()}, -uN(a){var s,r=this,q=r.a,p=q.a,o=p+a -q.a=o -s=r.gFH().LG() -r.U_(s) -r.c.push(new A.rn(s,p.length,o.length))}, -U_(a){var s,r,q,p=this -if(!p.w)return -s=a.b -if(s!=null){r=s.a -r=B.f.a!==r}else r=!1 -if(r){p.w=!1 -return}if(a.Q!=null&&!0){p.w=!1 -return}q=a.as -if(q!=null&&q.length!==0){p.w=!1 -return}}, -bq(){var s,r=this,q=r.c -if(q.length===0)q.push(new A.rn(r.e.LG(),0,0)) -s=r.a.a -return new A.LD(q,r.b,s.charCodeAt(0)==0?s:s,r.w)}} -A.acQ.prototype={ -lK(a){return this.arL(a)}, -arL(a0){var s=0,r=A.I(t.S7),q,p=this,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a -var $async$lK=A.D(function(a1,a2){if(a1===1)return A.F(a2,r) -while(true)switch(s){case 0:b=A.b([],t.Rh) -for(o=a0.a,n=o.length,m=0;m")) -b.u() -e=A.b31(e) -d=A.W(e) -s=new J.dj(e,e.length,d.i("dj<1>")) -s.u() -e=this.b -r=A.W(e) -q=new J.dj(e,e.length,r.i("dj<1>")) -q.u() -p=b.d -if(p==null)p=c.c.a(p) -o=s.d -if(o==null)o=d.c.a(o) -n=q.d -if(n==null)n=r.c.a(n) -for(e=c.c,d=d.c,r=r.c,m=0;!0;m=k){c=p.b -l=o.b -k=Math.min(c,Math.min(l,n.gbg(n))) -j=c-k -i=j===0?p.c:B.r -h=k-m -f.push(A.aDt(m,k,i,o.c,o.d,n,A.pB(p.d-j,0,h),A.pB(p.e-j,0,h))) -if(c===k)if(b.u()){p=b.d -if(p==null)p=e.a(p) -g=!0}else g=!1 -else g=!1 -if(l===k)if(s.u()){o=s.d -if(o==null)o=d.a(o) -g=!0}if(n.gbg(n)===k)if(q.u()){n=q.d -if(n==null)n=r.a(n) -g=!0}if(!g)break}return f}} -A.asl.prototype={ -gA(a){var s=this -return A.T(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -j(a,b){var s=this -if(b==null)return!1 -return b instanceof A.jy&&b.a===s.a&&b.b===s.b&&b.c===s.c&&b.d==s.d&&b.e===s.e&&b.f===s.f&&b.r===s.r&&b.w===s.w}} -A.jy.prototype={ -gp(a){return this.b-this.a}, -gKB(){return this.b-this.a===this.w}, -glH(){return this.f instanceof A.vW}, -DX(a){var s=a.c -s===$&&A.c() -return B.c.S(s,this.a,this.b-this.r)}, -nB(a,b){var s,r,q,p,o,n,m,l,k,j=this,i=j.a -if(i===b)return A.b([null,j],t.tZ) -s=j.b -if(s===b)return A.b([j,null],t.tZ) -r=s-b -q=j.r -p=Math.min(q,r) -o=j.w -n=Math.min(o,r) -m=j.d -l=j.e -k=j.f -return A.b([A.aDt(i,b,B.r,m,l,k,q-p,o-n),A.aDt(b,s,j.c,m,l,k,p,n)],t.cN)}, -k(a){var s=this -return B.V3.k(0)+"("+s.a+", "+s.b+", "+s.c.k(0)+", "+A.j(s.d)+")"}} -A.atH.prototype={ -xQ(a,b,c,d,e){var s=this -s.ky$=a -s.mJ$=b -s.mK$=c -s.mL$=d -s.f7$=e}} -A.atI.prototype={ -gj6(a){var s,r,q=this,p=q.h8$ -p===$&&A.c() -s=q.qW$ -if(p.x===B.p){s===$&&A.c() -p=s}else{s===$&&A.c() -r=q.f7$ -r===$&&A.c() -r=p.a.f-(s+(r+q.f8$)) -p=r}return p}, -grF(a){var s,r=this,q=r.h8$ -q===$&&A.c() -s=r.qW$ -if(q.x===B.p){s===$&&A.c() -q=r.f7$ -q===$&&A.c() -q=s+(q+r.f8$)}else{s===$&&A.c() -q=q.a.f-s}return q}, -art(a){var s,r,q=this,p=q.h8$ -p===$&&A.c() -s=p.e -if(q.b>p.c-s)return -r=q.w -if(r===0)return -q.f8$=(a-p.a.f)/(p.f-s)*r}} -A.atG.prototype={ -gTA(){var s,r,q,p,o,n,m,l,k=this,j=k.BH$ -if(j===$){s=k.h8$ -s===$&&A.c() -r=k.gj6(k) -q=k.h8$.a -p=k.mJ$ -p===$&&A.c() -o=k.grF(k) -n=k.h8$ -m=k.mK$ -m===$&&A.c() -l=k.d -l.toString -k.BH$!==$&&A.aW() -j=k.BH$=new A.es(s.a.r+r,q.w-p,q.r+o,n.a.w+m,l)}return j}, -a_c(){var s,r,q,p,o,n,m,l,k,j,i=this,h=i.h8$ -h===$&&A.c() -if(i.b>h.c-h.e){s=i.d -s.toString -h=h.a.r -if(s===B.p){s=i.gj6(i) -r=i.h8$.a -q=i.mJ$ -q===$&&A.c() -p=i.grF(i) -o=i.f7$ -o===$&&A.c() -n=i.f8$ -m=i.mL$ -m===$&&A.c() -l=i.h8$ -k=i.mK$ -k===$&&A.c() -j=i.d -j.toString -j=new A.es(h+s,r.w-q,r.r+p-(o+n-m),l.a.w+k,j) -h=j}else{s=i.gj6(i) -r=i.f7$ -r===$&&A.c() -q=i.f8$ -p=i.mL$ -p===$&&A.c() -o=i.h8$.a -n=i.mJ$ -n===$&&A.c() -m=i.grF(i) -l=i.h8$ -k=i.mK$ -k===$&&A.c() -j=i.d -j.toString -j=new A.es(h+s+(r+q-p),o.w-n,o.r+m,l.a.w+k,j) -h=j}return h}return i.gTA()}, -a_e(a,b){var s,r,q,p,o,n,m,l,k,j=this -if(b==null)b=j.a -if(a==null)a=j.b -s=j.a -r=b<=s -if(r&&a>=j.b-j.r)return j.gTA() -if(r)q=0 -else{r=j.ky$ -r===$&&A.c() -r.sob(j.f) -r=j.ky$ -p=$.tP() -o=r.a.c -o===$&&A.c() -r=r.c -q=A.pG(p,o,s,b,r.gbC(r).ax)}s=j.b-j.r -if(a>=s)n=0 -else{r=j.ky$ -r===$&&A.c() -r.sob(j.f) -r=j.ky$ -p=$.tP() -o=r.a.c -o===$&&A.c() -r=r.c -n=A.pG(p,o,a,s,r.gbC(r).ax)}s=j.d -s.toString -if(s===B.p){m=j.gj6(j)+q -l=j.grF(j)-n}else{m=j.gj6(j)+n -l=j.grF(j)-q}s=j.h8$ -s===$&&A.c() -s=s.a -r=s.r -s=s.w -p=j.mJ$ -p===$&&A.c() -o=j.mK$ -o===$&&A.c() -k=j.d -k.toString -return new A.es(r+m,s-p,r+l,s+o,k)}, -auu(){return this.a_e(null,null)}, -a0a(a){var s,r,q,p,o,n,m,l,k,j=this -a=j.aeH(a) -s=j.a -r=j.b-j.r -q=r-s -if(q===0)return new A.bf(s,B.l) -if(q===1){p=j.f7$ -p===$&&A.c() -return aq.c;){if(q.gamu()){q.ar_() -s.push(q.bq()) -a0.x=!0 -break $label0$0}if(q.garg())q.au5() -else q.aph() -n+=q.alY(o,n+1) -s.push(q.bq()) -q=q.YJ()}a1=q.a -if(a1.length!==0){a1=B.b.gL(a1).c -a1=a1===B.cj||a1===B.ck}else a1=!1 -if(a1){s.push(q.bq()) -q=q.YJ()}}a1=r.b -l=a1.e -if(l!=null&&s.length>l){a0.x=!0 -B.b.eL(s,l,s.length)}for(r=s.length,k=1/0,j=-1/0,i=0;ij)j=c}a0.z=new A.y(k,0,j,a0.c) -if(r!==0)if(isFinite(a0.b)&&a1.a===B.cS)for(n=0;n=d;--s){q=o[s] -q.qW$=e+r -if(q.d==null)q.d=a -p=q.f7$ -p===$&&A.c() -r+=p+q.f8$}return r}, -xt(){var s,r,q,p,o,n,m,l=A.b([],t.Lx) -for(s=this.y,r=s.length,q=0;q=b||a<0||b<0)return A.b([],t.Lx) -s=this.a.c -s===$&&A.c() -r=s.length -if(a>r||b>r)return A.b([],t.Lx) -q=A.b([],t.Lx) -for(s=this.y,p=s.length,o=0;o=j+l.r)return new A.bf(l.c-l.d,B.aa) -s=k-j -for(k=l.w,j=k.length,r=0;r1 -return this.as>0}, -galT(){var s=this.c-this.w,r=this.d.b -switch(r.a.a){case 2:return s/2 -case 1:return s -case 4:r=r.b -return(r==null?B.p:r)===B.a4?s:0 -case 5:r=r.b -return(r==null?B.p:r)===B.a4?0:s -default:return 0}}, -gamu(){var s,r=this.d.b -if(r.z==null)return!1 -s=r.e -return s==null||s===this.f+1}, -ga7r(){var s=this.a -if(s.length!==0){s=B.b.gL(s).c -s=s===B.cj||s===B.ck}else s=!1 -if(s)return!1 -s=this.b -s=s==null?null:s.length!==0 -if(s===!0)return!1 -return!0}, -US(a){var s=this -s.A9(a) -if(a.c!==B.r)s.Q=s.a.length -B.b.E(s.a,a)}, -A9(a){var s,r=this,q=a.w -r.at=r.at+q -if(a.gKB())r.ax+=q -else{r.ax=q -q=r.x -s=a.mL$ -s===$&&A.c() -r.w=q+s}q=r.x -s=a.f7$ -s===$&&A.c() -r.x=q+(s+a.f8$) -if(a.glH())r.a6F(a) -if(a.c!==B.r)++r.as -q=r.y -s=a.mJ$ -s===$&&A.c() -r.y=Math.max(q,s) -s=r.z -q=a.mK$ -q===$&&A.c() -r.z=Math.max(s,q)}, -a6F(a){var s,r,q,p,o,n=this,m=t.mX.a(a.f) -switch(m.c.a){case 3:s=n.y -r=m.b-s -break -case 4:r=n.z -s=m.b-r -break -case 5:q=n.y -p=n.z -o=m.b/2-(q+p)/2 -s=q+o -r=p+o -break -case 1:s=m.b -r=0 -break -case 2:r=m.b -s=0 -break -case 0:s=m.d -r=m.b-s -break -default:s=null -r=null}q=a.mL$ -q===$&&A.c() -p=a.f7$ -p===$&&A.c() -a.xQ(n.e,s,r,q,p+a.f8$)}, -ul(){var s,r=this,q=r.as=r.ax=r.at=r.z=r.y=r.x=r.w=0 -r.Q=-1 -for(s=r.a;q1||a -q=B.b.gL(s) -if(q.glH()){if(r){p=g.b -p.toString -B.b.eY(p,0,B.b.dT(s)) -g.ul()}return}p=g.e -p.sob(q.f) -o=g.x -n=q.f7$ -n===$&&A.c() -m=q.f8$ -l=q.b-q.r -k=p.Xj(q.a,l,r,b-(o-(n+m))) -if(k===l)return -B.b.dT(s) -g.ul() -j=q.nB(0,k) -i=B.b.gM(j) -if(i!=null){p.KS(i) -g.US(i)}h=B.b.gL(j) -if(h!=null){p.KS(h) -s=g.b -s.toString -B.b.eY(s,0,h)}}, -aph(){return this.Xk(!1,null)}, -ar_(){var s,r,q,p,o,n,m,l,k,j,i,h,g=this,f=g.d.b.z -f.toString -g.b=A.b([],t.cN) -s=g.e -r=g.a -s.sob(B.b.gL(r).f) -q=$.tP() -p=f.length -o=A.pG(q,f,0,p,null) -n=g.c -m=Math.max(0,n-o) -while(!0){if(r.length>1){l=g.x -k=B.b.gL(r) -j=k.f7$ -j===$&&A.c() -k=l-(j+k.f8$) -l=k}else l=0 -if(!(l>m))break -l=g.b -l.toString -B.b.eY(l,0,B.b.dT(r)) -g.ul() -s.sob(B.b.gL(r).f) -o=A.pG(q,f,0,p,null) -m=n-o}i=B.b.gL(r) -g.Xk(!0,m) -f=g.gWT() -h=new A.N2($,$,$,$,$,$,$,$,0,B.ck,null,B.jk,i.f,0,0,f,f) -f=i.mJ$ -f===$&&A.c() -r=i.mK$ -r===$&&A.c() -h.xQ(s,f,r,o,o) -g.US(h)}, -au5(){var s,r=this.a,q=r.length,p=q-2 -for(;r[p].c===B.r;)--p -s=p+1 -A.co(s,q,q,null,null) -this.b=A.er(r,s,q,A.W(r).c).eM(0) -B.b.eL(r,s,r.length) -this.ul()}, -alY(a,b){var s,r=this,q=r.a,p=b -while(!0){if(r.ga7r())if(p1;){p=B.h.dj(q+r,2) -o=$.tP() -s===$&&A.c() -n=this.c -m=A.pG(o,s,a,p,n.gbC(n).ax) -if(md?q:p -r=p}}return q===a&&!c?q+1:q}} -A.oe.prototype={ -I(){return"LineBreakType."+this.b}} -A.a9l.prototype={ -BR(){return A.b32(this.a)}} -A.aqe.prototype={ -BR(){var s=this.a -return A.aNL(s,s,this.b)}} -A.od.prototype={ -gA(a){var s=this -return A.T(s.a,s.b,s.c,s.d,s.e,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -j(a,b){var s=this -if(b==null)return!1 -return b instanceof A.od&&b.a===s.a&&b.b===s.b&&b.c===s.c&&b.d===s.d&&b.e===s.e}, -k(a){return"LineBreakFragment("+this.a+", "+this.b+", "+this.c.k(0)+")"}} -A.azO.prototype={ -$2(a,b){var s=this,r=a===B.ck?s.b.length:s.a.f,q=s.a,p=q.a -if(p===B.db)++q.d -else if(p===B.e7||p===B.fO||p===B.fS){++q.e;++q.d}if(a===B.r)return -p=q.c -s.c.push(new A.od(a,q.e,q.d,p,r)) -q.c=q.f -q.d=q.e=0 -q.a=q.b=null}, -$S:437} -A.RU.prototype={ -n(){this.a.remove()}} -A.aoX.prototype={ -ap(a,b){var s,r,q,p,o,n,m,l=this.a.gfE().y -for(s=l.length,r=0;rthis.b)return B.Wh -return B.Wg}} -A.mO.prototype={ -BN(a,b,c){var s=A.Kf(b,c) -return s==null?this.b:this.r4(s)}, -r4(a){var s,r,q,p,o=this -if(a==null)return o.b -s=o.c -r=s.h(0,a) -if(r!=null)return r -q=o.a6T(a) -p=q===-1?o.b:o.a[q].c -s.m(0,a,p) -return p}, -a6T(a){var s,r,q=this.a,p=q.length -for(s=0;s")).N(0,new A.a8P(this,r)) -return r}} -A.a8R.prototype={ -$1(a){a.preventDefault()}, -$S:2} -A.a8P.prototype={ -$1(a){var s=this.a,r=s.b.h(0,a) -r.toString -this.b.push(A.de(r,"input",new A.a8Q(s,a,r)))}, -$S:33} -A.a8Q.prototype={ -$1(a){var s,r=this.a.c,q=this.b -if(r.h(0,q)==null)throw A.d(A.a4("AutofillInfo must have a valid uniqueIdentifier.")) -else{r=r.h(0,q) -r.toString -s=A.aIq(this.c) -$.bi().jQ("flutter/textinput",B.aV.jI(new A.iO(u.o,[0,A.l([r.b,s.a_a()],t.u,t.z)])),A.a36())}}, -$S:2} -A.L8.prototype={ -V9(a,b){var s,r,q="password",p=this.d,o=this.e,n=globalThis.HTMLInputElement -if(n!=null&&a instanceof n){if(o!=null)a.placeholder=o -s=p==null -if(!s){a.name=p -a.id=p -if(B.c.t(p,q))A.a7C(a,q) -else A.a7C(a,"text")}s=s?"on":p -a.autocomplete=s}else{n=globalThis.HTMLTextAreaElement -if(n!=null&&a instanceof n){if(o!=null)a.placeholder=o -s=p==null -if(!s){a.name=p -a.id=p}r=A.ax(s?"on":p) -s=r==null?t.K.a(r):r -a.setAttribute("autocomplete",s)}}}, -fL(a){return this.V9(a,!1)}} -A.x1.prototype={} -A.uF.prototype={ -gCB(){return Math.min(this.b,this.c)}, -gCx(){return Math.max(this.b,this.c)}, -a_a(){var s=this -return A.l(["text",s.a,"selectionBase",s.b,"selectionExtent",s.c,"composingBase",s.d,"composingExtent",s.e],t.N,t.z)}, -gA(a){var s=this -return A.T(s.a,s.b,s.c,s.d,s.e,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(A.u(s)!==J.Y(b))return!1 -return b instanceof A.uF&&b.a==s.a&&b.gCB()===s.gCB()&&b.gCx()===s.gCx()&&b.d===s.d&&b.e===s.e}, -k(a){return this.cu(0)}, -fL(a){var s,r,q=this,p=globalThis.HTMLInputElement -if(p!=null&&a instanceof p){a.toString -A.aIa(a,q.a) -s=q.gCB() -r=q.gCx() -a.setSelectionRange(s,r)}else{p=globalThis.HTMLTextAreaElement -if(p!=null&&a instanceof p){a.toString -A.aIb(a,q.a) -s=q.gCB() -r=q.gCx() -a.setSelectionRange(s,r)}else{s=a==null?null:A.aXu(a) -throw A.d(A.V("Unsupported DOM element type: <"+A.j(s)+"> ("+J.Y(a).k(0)+")"))}}}} -A.adU.prototype={} -A.O1.prototype={ -jZ(){var s,r=this,q=r.w -if(q!=null){s=r.c -s.toString -q.fL(s)}q=r.d -q===$&&A.c() -if(q.w!=null){r.wQ() -q=r.e -if(q!=null)q.fL(r.c) -r.gXi().focus() -r.c.focus()}}} -A.RW.prototype={ -jZ(){var s,r=this,q=r.w -if(q!=null){s=r.c -s.toString -q.fL(s)}q=r.d -q===$&&A.c() -if(q.w!=null)A.cM(B.q,new A.ak8(r))}, -w8(){if(this.w!=null)this.jZ() -this.c.focus()}} -A.ak8.prototype={ -$0(){var s,r=this.a -r.wQ() -r.gXi().focus() -r.c.focus() -s=r.e -if(s!=null){r=r.c -r.toString -s.fL(r)}}, -$S:0} -A.Ad.prototype={ -gjG(){var s=null,r=this.f -if(r==null){r=this.e.a -r.toString -r=this.f=new A.x1(r,"",-1,-1,s,s,s,s)}return r}, -gXi(){var s=this.d -s===$&&A.c() -s=s.w -return s==null?null:s.a}, -r9(a,b,c){var s,r,q,p=this,o="none",n="transparent" -p.c=a.a.J9() -p.IB(a) -s=p.c -s.classList.add("flt-text-editing") -r=s.style -A.x(r,"forced-color-adjust",o) -A.x(r,"white-space","pre-wrap") -A.x(r,"align-content","center") -A.x(r,"position","absolute") -A.x(r,"top","0") -A.x(r,"left","0") -A.x(r,"padding","0") -A.x(r,"opacity","1") -A.x(r,"color",n) -A.x(r,"background-color",n) -A.x(r,"background",n) -A.x(r,"caret-color",n) -A.x(r,"outline",o) -A.x(r,"border",o) -A.x(r,"resize",o) -A.x(r,"text-shadow",o) -A.x(r,"overflow","hidden") -A.x(r,"transform-origin","0 0 0") -q=$.cr() -if(q!==B.ca)q=q===B.M -else q=!0 -if(q)s.classList.add("transparentTextEditing") -s=p.r -if(s!=null){q=p.c -q.toString -s.fL(q)}s=p.d -s===$&&A.c() -if(s.w==null){s=$.ew.x -s===$&&A.c() -q=p.c -q.toString -s.append(q) -p.Q=!1}p.w8() -p.b=!0 -p.x=c -p.y=b}, -IB(a){var s,r,q,p,o,n=this -n.d=a -s=n.c -if(a.c){s.toString -r=A.ax("readonly") -if(r==null)r=t.K.a(r) -s.setAttribute("readonly",r)}else s.removeAttribute("readonly") -if(a.d){s=n.c -s.toString -r=A.ax("password") -if(r==null)r=t.K.a(r) -s.setAttribute("type",r)}if(a.a===B.m4){s=n.c -s.toString -r=A.ax("none") -if(r==null)r=t.K.a(r) -s.setAttribute("inputmode",r)}q=A.aXX(a.b) -s=n.c -s.toString -q.an2(s) -p=a.r -s=n.c -if(p!=null){s.toString -p.V9(s,!0)}else{s.toString -r=A.ax("off") -if(r==null)r=t.K.a(r) -s.setAttribute("autocomplete",r)}o=a.e?"on":"off" -s=n.c -s.toString -r=A.ax(o) -if(r==null)r=t.K.a(r) -s.setAttribute("autocorrect",r)}, -w8(){this.jZ()}, -uH(){var s,r,q=this,p=q.d -p===$&&A.c() -p=p.w -if(p!=null)B.b.K(q.z,p.uJ()) -p=q.z -s=q.c -s.toString -r=q.gvW() -p.push(A.de(s,"input",r)) -s=q.c -s.toString -p.push(A.de(s,"keydown",q.gwv())) -p.push(A.de(self.document,"selectionchange",r)) -r=q.c -r.toString -A.cI(r,"beforeinput",t.e.a(A.bd(q.gBS())),null) -r=q.c -r.toString -q.Ar(r) -r=q.c -r.toString -p.push(A.de(r,"blur",new A.a7_(q))) -q.Da()}, -M5(a){this.w=a -if(this.b)this.jZ()}, -M6(a){var s -this.r=a -if(this.b){s=this.c -s.toString -a.fL(s)}}, -jD(a){var s,r,q,p=this,o=null -p.b=!1 -p.w=p.r=p.f=p.e=null -for(s=p.z,r=0;r=0&&a.c>=0) -else s=!0 -if(s)return -a.fL(this.c)}, -jZ(){this.c.focus()}, -wQ(){var s,r,q=this.d -q===$&&A.c() -q=q.w -q.toString -s=this.c -s.toString -r=q.a -r.insertBefore(s,q.d) -q=$.ew.x -q===$&&A.c() -q.append(r) -this.Q=!0}, -Xs(a){var s,r,q=this,p=q.c -p.toString -s=q.aod(A.aIq(p)) -p=q.d -p===$&&A.c() -if(p.f){q.gjG().r=s.d -q.gjG().w=s.e -r=A.b0z(s,q.e,q.gjG())}else r=null -if(!s.j(0,q.e)){q.e=s -q.f=r -q.x.$2(s,r) -q.f=null}}, -apn(a){var s=this,r=A.au(a.data),q=A.au(a.inputType) -if(q!=null)if(B.c.t(q,"delete")){s.gjG().b="" -s.gjG().d=s.e.c}else if(q==="insertLineBreak"){s.gjG().b="\n" -s.gjG().c=s.e.c -s.gjG().d=s.e.c}else if(r!=null){s.gjG().b=r -s.gjG().c=s.e.c -s.gjG().d=s.e.c}}, -as3(a){var s,r,q=globalThis.KeyboardEvent -if(q!=null&&a instanceof q)if(a.keyCode===13){s=this.y -s.toString -r=this.d -r===$&&A.c() -s.$1(r.b) -if(!(this.d.a instanceof A.PK))a.preventDefault()}}, -JK(a,b,c,d){var s,r=this -r.r9(b,c,d) -r.uH() -s=r.e -if(s!=null)r.MV(s) -r.c.focus()}, -Da(){var s=this,r=s.z,q=s.c -q.toString -r.push(A.de(q,"mousedown",new A.a70())) -q=s.c -q.toString -r.push(A.de(q,"mouseup",new A.a71())) -q=s.c -q.toString -r.push(A.de(q,"mousemove",new A.a72()))}} -A.a7_.prototype={ -$1(a){this.a.c.focus()}, -$S:2} -A.a70.prototype={ -$1(a){a.preventDefault()}, -$S:2} -A.a71.prototype={ -$1(a){a.preventDefault()}, -$S:2} -A.a72.prototype={ -$1(a){a.preventDefault()}, -$S:2} -A.adb.prototype={ -r9(a,b,c){var s,r=this -r.Ev(a,b,c) -s=r.c -s.toString -a.a.VL(s) -s=r.d -s===$&&A.c() -if(s.w!=null)r.wQ() -s=r.c -s.toString -a.x.MR(s)}, -w8(){A.x(this.c.style,"transform","translate(-9999px, -9999px)") -this.p1=!1}, -uH(){var s,r,q,p=this,o=p.d -o===$&&A.c() -o=o.w -if(o!=null)B.b.K(p.z,o.uJ()) -o=p.z -s=p.c -s.toString -r=p.gvW() -o.push(A.de(s,"input",r)) -s=p.c -s.toString -o.push(A.de(s,"keydown",p.gwv())) -o.push(A.de(self.document,"selectionchange",r)) -r=p.c -r.toString -A.cI(r,"beforeinput",t.e.a(A.bd(p.gBS())),null) -r=p.c -r.toString -p.Ar(r) -r=p.c -r.toString -o.push(A.de(r,"focus",new A.ade(p))) -p.a6B() -q=new A.Es() -$.a3v() -q.tl(0) -r=p.c -r.toString -o.push(A.de(r,"blur",new A.adf(p,q)))}, -M5(a){var s=this -s.w=a -if(s.b&&s.p1)s.jZ()}, -jD(a){var s -this.a1Y(0) -s=this.ok -if(s!=null)s.bb(0) -this.ok=null}, -a6B(){var s=this.c -s.toString -this.z.push(A.de(s,"click",new A.adc(this)))}, -SH(){var s=this.ok -if(s!=null)s.bb(0) -this.ok=A.cM(B.aE,new A.add(this))}, -jZ(){var s,r -this.c.focus() -s=this.w -if(s!=null){r=this.c -r.toString -s.fL(r)}}} -A.ade.prototype={ -$1(a){this.a.SH()}, -$S:2} -A.adf.prototype={ -$1(a){var s=A.d2(this.b.gWO(),0,0).a<2e5,r=self.document.hasFocus()&&s,q=this.a -if(r)q.c.focus() -else q.a.E8()}, -$S:2} -A.adc.prototype={ -$1(a){var s=this.a -if(s.p1){s.w8() -s.SH()}}, -$S:2} -A.add.prototype={ -$0(){var s=this.a -s.p1=!0 -s.jZ()}, -$S:0} -A.a49.prototype={ -r9(a,b,c){var s,r,q=this -q.Ev(a,b,c) -s=q.c -s.toString -a.a.VL(s) -s=q.d -s===$&&A.c() -if(s.w!=null)q.wQ() -else{s=$.ew.x -s===$&&A.c() -r=q.c -r.toString -s.append(r)}s=q.c -s.toString -a.x.MR(s)}, -uH(){var s,r,q=this,p=q.d -p===$&&A.c() -p=p.w -if(p!=null)B.b.K(q.z,p.uJ()) -p=q.z -s=q.c -s.toString -r=q.gvW() -p.push(A.de(s,"input",r)) -s=q.c -s.toString -p.push(A.de(s,"keydown",q.gwv())) -p.push(A.de(self.document,"selectionchange",r)) -r=q.c -r.toString -A.cI(r,"beforeinput",t.e.a(A.bd(q.gBS())),null) -r=q.c -r.toString -q.Ar(r) -r=q.c -r.toString -p.push(A.de(r,"blur",new A.a4a(q))) -q.Da()}, -jZ(){var s,r -this.c.focus() -s=this.w -if(s!=null){r=this.c -r.toString -s.fL(r)}}} -A.a4a.prototype={ -$1(a){var s=this.a -if(self.document.hasFocus())s.c.focus() -else s.a.E8()}, -$S:2} -A.aa_.prototype={ -r9(a,b,c){var s -this.Ev(a,b,c) -s=this.d -s===$&&A.c() -if(s.w!=null)this.wQ()}, -uH(){var s,r,q=this,p=q.d -p===$&&A.c() -p=p.w -if(p!=null)B.b.K(q.z,p.uJ()) -p=q.z -s=q.c -s.toString -r=q.gvW() -p.push(A.de(s,"input",r)) -s=q.c -s.toString -p.push(A.de(s,"keydown",q.gwv())) -s=q.c -s.toString -A.cI(s,"beforeinput",t.e.a(A.bd(q.gBS())),null) -s=q.c -s.toString -q.Ar(s) -s=q.c -s.toString -p.push(A.de(s,"keyup",new A.aa1(q))) -s=q.c -s.toString -p.push(A.de(s,"select",r)) -r=q.c -r.toString -p.push(A.de(r,"blur",new A.aa2(q))) -q.Da()}, -ahb(){A.cM(B.q,new A.aa0(this))}, -jZ(){var s,r,q=this -q.c.focus() -s=q.w -if(s!=null){r=q.c -r.toString -s.fL(r)}s=q.e -if(s!=null){r=q.c -r.toString -s.fL(r)}}} -A.aa1.prototype={ -$1(a){this.a.Xs(a)}, -$S:2} -A.aa2.prototype={ -$1(a){this.a.ahb()}, -$S:2} -A.aa0.prototype={ -$0(){this.a.c.focus()}, -$S:0} -A.aoB.prototype={} -A.aoI.prototype={ -hi(a){var s=a.b -if(s!=null&&s!==this.a&&a.c){a.c=!1 -a.giB().jD(0)}a.b=this.a -a.d=this.b}} -A.aoP.prototype={ -hi(a){var s=a.giB(),r=a.d -r.toString -s.IB(r)}} -A.aoK.prototype={ -hi(a){a.giB().MV(this.a)}} -A.aoN.prototype={ -hi(a){if(!a.c)a.ajk()}} -A.aoJ.prototype={ -hi(a){a.giB().M5(this.a)}} -A.aoM.prototype={ -hi(a){a.giB().M6(this.a)}} -A.aoz.prototype={ -hi(a){if(a.c){a.c=!1 -a.giB().jD(0)}}} -A.aoF.prototype={ -hi(a){if(a.c){a.c=!1 -a.giB().jD(0)}}} -A.aoL.prototype={ -hi(a){}} -A.aoH.prototype={ -hi(a){}} -A.aoG.prototype={ -hi(a){}} -A.aoE.prototype={ -hi(a){a.E8() -if(this.a)A.b6K() -A.b4Q()}} -A.aBS.prototype={ -$2(a,b){var s=t.qr -s=A.c3(new A.eO(b.getElementsByClassName("submitBtn"),s),s.i("q.E"),t.e) -A.p(s).z[1].a(J.nh(s.a)).click()}, -$S:466} -A.aon.prototype={ -aqf(a,b){var s,r,q,p,o,n,m,l,k=B.aV.iW(a) -switch(k.a){case"TextInput.setClient":s=k.b -r=J.X(s) -q=new A.aoI(A.ef(r.h(s,0)),A.aJ0(t.a.a(r.h(s,1)))) -break -case"TextInput.updateConfig":this.a.d=A.aJ0(t.a.a(k.b)) -q=B.CP -break -case"TextInput.setEditingState":q=new A.aoK(A.aIr(t.a.a(k.b))) -break -case"TextInput.show":q=B.CN -break -case"TextInput.setEditableSizeAndTransform":q=new A.aoJ(A.aXK(t.a.a(k.b))) -break -case"TextInput.setStyle":s=t.a.a(k.b) -r=J.X(s) -p=A.ef(r.h(s,"textAlignIndex")) -o=A.ef(r.h(s,"textDirectionIndex")) -n=A.dz(r.h(s,"fontWeightIndex")) -m=n!=null?A.aO9(n):"normal" -l=A.aMH(r.h(s,"fontSize")) -if(l==null)l=null -q=new A.aoM(new A.a8v(l,m,A.au(r.h(s,"fontFamily")),B.IY[p],B.nW[o])) -break -case"TextInput.clearClient":q=B.CI -break -case"TextInput.hide":q=B.CJ -break -case"TextInput.requestAutofill":q=B.CK -break -case"TextInput.finishAutofillContext":q=new A.aoE(A.fb(k.b)) -break -case"TextInput.setMarkedTextRect":q=B.CM -break -case"TextInput.setCaretRect":q=B.CL -break -default:$.bi().fq(b,null) -return}q.hi(this.a) -new A.aoo(b).$0()}} -A.aoo.prototype={ -$0(){$.bi().fq(this.a,B.a9.cD([!0]))}, -$S:0} -A.ad8.prototype={ -gv2(a){var s=this.a -if(s===$){s!==$&&A.aW() -s=this.a=new A.aon(this)}return s}, -giB(){var s,r,q,p,o=this,n=null,m=o.f -if(m===$){s=$.eF -if((s==null?$.eF=A.lZ():s).x){s=A.b_Q(o) -r=s}else{s=$.cr() -if(s===B.M){q=$.e5() -q=q===B.aI}else q=!1 -if(q)p=new A.adb(o,A.b([],t.Up),$,$,$,n) -else if(s===B.M)p=new A.RW(o,A.b([],t.Up),$,$,$,n) -else{if(s===B.ca){q=$.e5() -q=q===B.hb}else q=!1 -if(q)p=new A.a49(o,A.b([],t.Up),$,$,$,n) -else p=s===B.bz?new A.aa_(o,A.b([],t.Up),$,$,$,n):A.aYr(o)}r=p}o.f!==$&&A.aW() -m=o.f=r}return m}, -ajk(){var s,r,q=this -q.c=!0 -s=q.giB() -r=q.d -r.toString -s.JK(0,r,new A.ad9(q),new A.ada(q))}, -E8(){var s,r=this -if(r.c){r.c=!1 -r.giB().jD(0) -r.gv2(r) -s=r.b -$.bi().jQ("flutter/textinput",B.aV.jI(new A.iO("TextInputClient.onConnectionClosed",[s])),A.a36())}}} -A.ada.prototype={ -$2(a,b){var s,r,q="flutter/textinput",p=this.a -if(p.d.f){p.gv2(p) -p=p.b -s=t.N -r=t.z -$.bi().jQ(q,B.aV.jI(new A.iO(u.s,[p,A.l(["deltas",A.b([A.l(["oldText",b.a,"deltaText",b.b,"deltaStart",b.c,"deltaEnd",b.d,"selectionBase",b.e,"selectionExtent",b.f,"composingBase",b.r,"composingExtent",b.w],s,r)],t.H7)],s,r)])),A.a36())}else{p.gv2(p) -p=p.b -$.bi().jQ(q,B.aV.jI(new A.iO("TextInputClient.updateEditingState",[p,a.a_a()])),A.a36())}}, -$S:484} -A.ad9.prototype={ -$1(a){var s=this.a -s.gv2(s) -s=s.b -$.bi().jQ("flutter/textinput",B.aV.jI(new A.iO("TextInputClient.performAction",[s,a])),A.a36())}, -$S:485} -A.a8v.prototype={ -fL(a){var s=this,r=a.style -A.x(r,"text-align",A.b70(s.d,s.e)) -A.x(r,"font",s.b+" "+A.j(s.a)+"px "+A.j(A.aAG(s.c)))}} -A.a7V.prototype={ -fL(a){var s=A.kc(this.c),r=a.style -A.x(r,"width",A.j(this.a)+"px") -A.x(r,"height",A.j(this.b)+"px") -A.x(r,"transform",s)}} -A.a7W.prototype={ -$1(a){return A.kb(a)}, -$S:527} -A.aB5.prototype={ -$1(a){var s="operation failed" -if(a==null)if(this.a.a)throw A.d(A.ck(s)) -else this.b.lr(new A.GB(s)) -else this.b.dm(0,a)}, -$S(){return this.c.i("~(0?)")}} -A.Fh.prototype={ -I(){return"TransformKind."+this.b}} -A.aAF.prototype={ -$1(a){return"0x"+B.c.rs(B.h.jc(a,16),2,"0")}, -$S:163} -A.P6.prototype={ -gp(a){return this.b.b}, -h(a,b){var s=this.c.h(0,b) -return s==null?null:s.d.b}, -Oc(a,b,c){var s,r,q,p=this.b -p.As(new A.ZG(b,c)) -s=this.c -r=p.a -q=r.b.yn() -q.toString -s.m(0,b,q) -if(p.b>this.a){s.F(0,r.a.gBr().a) -p.dT(0)}}} -A.cm.prototype={ -aS(a){var s=a.a,r=this.a -r[15]=s[15] -r[14]=s[14] -r[13]=s[13] -r[12]=s[12] -r[11]=s[11] -r[10]=s[10] -r[9]=s[9] -r[8]=s[8] -r[7]=s[7] -r[6]=s[6] -r[5]=s[5] -r[4]=s[4] -r[3]=s[3] -r[2]=s[2] -r[1]=s[1] -r[0]=s[0]}, -h(a,b){return this.a[b]}, -aK(a,b,a0){var s=this.a,r=s[0],q=s[4],p=s[8],o=s[12],n=s[1],m=s[5],l=s[9],k=s[13],j=s[2],i=s[6],h=s[10],g=s[14],f=s[3],e=s[7],d=s[11],c=s[15] -s[12]=r*b+q*a0+p*0+o -s[13]=n*b+m*a0+l*0+k -s[14]=j*b+i*a0+h*0+g -s[15]=f*b+e*a0+d*0+c}, -auG(a,b){return this.aK(a,b,0)}, -m0(a,b,c,d){var s=c==null?b:c,r=d==null?b:d,q=this.a -q[15]=q[15] -q[0]=q[0]*b -q[1]=q[1]*b -q[2]=q[2]*b -q[3]=q[3]*b -q[4]=q[4]*s -q[5]=q[5]*s -q[6]=q[6]*s -q[7]=q[7]*s -q[8]=q[8]*r -q[9]=q[9]*r -q[10]=q[10]*r -q[11]=q[11]*r -q[12]=q[12] -q[13]=q[13] -q[14]=q[14]}, -f2(a,b,c){return this.m0(a,b,c,null)}, -bw(a,b){return this.m0(a,b,null,null)}, -wO(a,b,c){var s=this.a,r=s[0],q=s[4],p=s[8],o=s[12],n=s[1],m=s[5],l=s[9],k=s[13],j=s[2],i=s[6],h=s[10],g=s[14],f=1/(s[3]*a+s[7]*b+s[11]*c+s[15]) -return new A.HL((r*a+q*b+p*c+o)*f,(n*a+m*b+l*c+k)*f,(j*a+i*b+h*c+g)*f)}, -wg(a){var s=this.a -return s[0]===1&&s[1]===0&&s[2]===0&&s[3]===0&&s[4]===0&&s[5]===1&&s[6]===0&&s[7]===0&&s[8]===0&&s[9]===0&&s[10]===1&&s[11]===0&&s[12]===0&&s[13]===0&&s[14]===0&&s[15]===1}, -a_1(b0,b1,b2){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a=b1.a,a0=b1.b,a1=b1.c,a2=Math.sqrt(a*a+a0*a0+a1*a1),a3=a/a2,a4=a0/a2,a5=a1/a2,a6=Math.cos(b2),a7=Math.sin(b2),a8=1-a6,a9=a3*a3*a8+a6 -a1=a5*a7 -s=a3*a4*a8-a1 -a0=a4*a7 -r=a3*a5*a8+a0 -q=a4*a3*a8+a1 -p=a4*a4*a8+a6 -a1=a3*a7 -o=a4*a5*a8-a1 -n=a5*a3*a8-a0 -m=a5*a4*a8+a1 -l=a5*a5*a8+a6 -a1=this.a -a0=a1[0] -a=a1[4] -k=a1[8] -j=a1[1] -i=a1[5] -h=a1[9] -g=a1[2] -f=a1[6] -e=a1[10] -d=a1[3] -c=a1[7] -b=a1[11] -a1[0]=a0*a9+a*q+k*n -a1[1]=j*a9+i*q+h*n -a1[2]=g*a9+f*q+e*n -a1[3]=d*a9+c*q+b*n -a1[4]=a0*s+a*p+k*m -a1[5]=j*s+i*p+h*m -a1[6]=g*s+f*p+e*m -a1[7]=d*s+c*p+b*m -a1[8]=a0*r+a*o+k*l -a1[9]=j*r+i*o+h*l -a1[10]=g*r+f*o+e*l -a1[11]=d*r+c*o+b*l}, -nx(a,b,c){var s=this.a -s[14]=c -s[13]=b -s[12]=a}, -h4(b5){var s,r,q,p,o=b5.a,n=o[0],m=o[1],l=o[2],k=o[3],j=o[4],i=o[5],h=o[6],g=o[7],f=o[8],e=o[9],d=o[10],c=o[11],b=o[12],a=o[13],a0=o[14],a1=o[15],a2=n*i-m*j,a3=n*h-l*j,a4=n*g-k*j,a5=m*h-l*i,a6=m*g-k*i,a7=l*g-k*h,a8=f*a-e*b,a9=f*a0-d*b,b0=f*a1-c*b,b1=e*a0-d*a,b2=e*a1-c*a,b3=d*a1-c*a0,b4=a2*b3-a3*b2+a4*b1+a5*b0-a6*a9+a7*a8 -if(b4===0){this.aS(b5) -return 0}s=1/b4 -r=this.a -r[0]=(i*b3-h*b2+g*b1)*s -r[1]=(-m*b3+l*b2-k*b1)*s -r[2]=(a*a7-a0*a6+a1*a5)*s -r[3]=(-e*a7+d*a6-c*a5)*s -q=-j -r[4]=(q*b3+h*b0-g*a9)*s -r[5]=(n*b3-l*b0+k*a9)*s -p=-b -r[6]=(p*a7+a0*a4-a1*a3)*s -r[7]=(f*a7-d*a4+c*a3)*s -r[8]=(j*b2-i*b0+g*a8)*s -r[9]=(-n*b2+m*b0-k*a8)*s -r[10]=(b*a6-a*a4+a1*a2)*s -r[11]=(-f*a6+e*a4-c*a2)*s -r[12]=(q*b1+i*a9-h*a8)*s -r[13]=(n*b1-m*a9+l*a8)*s -r[14]=(p*a5+a*a3-a0*a2)*s -r[15]=(f*a5-e*a3+d*a2)*s -return b4}, -da(b5,b6){var s=this.a,r=s[15],q=s[0],p=s[4],o=s[8],n=s[12],m=s[1],l=s[5],k=s[9],j=s[13],i=s[2],h=s[6],g=s[10],f=s[14],e=s[3],d=s[7],c=s[11],b=b6.a,a=b[15],a0=b[0],a1=b[4],a2=b[8],a3=b[12],a4=b[1],a5=b[5],a6=b[9],a7=b[13],a8=b[2],a9=b[6],b0=b[10],b1=b[14],b2=b[3],b3=b[7],b4=b[11] -s[0]=q*a0+p*a4+o*a8+n*b2 -s[4]=q*a1+p*a5+o*a9+n*b3 -s[8]=q*a2+p*a6+o*b0+n*b4 -s[12]=q*a3+p*a7+o*b1+n*a -s[1]=m*a0+l*a4+k*a8+j*b2 -s[5]=m*a1+l*a5+k*a9+j*b3 -s[9]=m*a2+l*a6+k*b0+j*b4 -s[13]=m*a3+l*a7+k*b1+j*a -s[2]=i*a0+h*a4+g*a8+f*b2 -s[6]=i*a1+h*a5+g*a9+f*b3 -s[10]=i*a2+h*a6+g*b0+f*b4 -s[14]=i*a3+h*a7+g*b1+f*a -s[3]=e*a0+d*a4+c*a8+r*b2 -s[7]=e*a1+d*a5+c*a9+r*b3 -s[11]=e*a2+d*a6+c*b0+r*b4 -s[15]=e*a3+d*a7+c*b1+r*a}, -CE(a){var s=new A.cm(new Float32Array(16)) -s.aS(this) -s.da(0,a) -return s}, -a_h(a){var s=a[0],r=a[1],q=this.a -a[0]=q[0]*s+q[4]*r+q[12] -a[1]=q[1]*s+q[5]*r+q[13]}, -k(a){return this.cu(0)}} -A.a9p.prototype={ -a_g(a,b,c){var s=this.a -this.b=s[12]+s[0]*b+s[4]*c -this.c=s[13]+s[1]*b+s[5]*c}} -A.Ms.prototype={ -a5S(a){var s=A.b5h(new A.a6M(this)) -this.b=s -s.observe(this.a)}, -a6W(a){this.c.E(0,a)}, -aL(a){var s=this.b -s===$&&A.c() -s.disconnect() -this.c.aL(0)}, -gYP(a){var s=this.c -return new A.dh(s,A.p(s).i("dh<1>"))}, -qt(){var s,r=$.cX().x -if(r==null){s=self.window.devicePixelRatio -r=s===0?1:s}s=this.a -return new A.Q(s.clientWidth*r,s.clientHeight*r)}, -VI(a,b){return B.eU}} -A.a6M.prototype={ -$2(a,b){new A.a1(a,new A.a6L(),a.$ti.i("a1")).N(0,this.a.ga6V())}, -$S:583} -A.a6L.prototype={ -$1(a){return new A.Q(a.contentRect.width,a.contentRect.height)}, -$S:591} -A.a79.prototype={} -A.NT.prototype={ -ag8(a){this.b.E(0,null)}, -aL(a){var s=this.a -s===$&&A.c() -s.b.removeEventListener(s.a,s.c) -this.b.aL(0)}, -gYP(a){var s=this.b -return new A.dh(s,A.p(s).i("dh<1>"))}, -qt(){var s,r,q=A.bg("windowInnerWidth"),p=A.bg("windowInnerHeight"),o=self.window.visualViewport,n=$.cX().x -if(n==null){s=self.window.devicePixelRatio -n=s===0?1:s}if(o!=null){s=$.e5() -if(s===B.aI){s=self.document.documentElement.clientWidth -r=self.document.documentElement.clientHeight -q.b=s*n -p.b=r*n}else{s=o.width -if(s==null)s=null -s.toString -q.b=s*n -s=A.aIi(o) -s.toString -p.b=s*n}}else{s=self.window.innerWidth -if(s==null)s=null -s.toString -q.b=s*n -s=A.aIl(self.window) -s.toString -p.b=s*n}return new A.Q(q.aI(),p.aI())}, -VI(a,b){var s,r,q,p=$.cX().x -if(p==null){s=self.window.devicePixelRatio -p=s===0?1:s}r=self.window.visualViewport -q=A.bg("windowInnerHeight") -if(r!=null){s=$.e5() -if(s===B.aI&&!b)q.b=self.document.documentElement.clientHeight*p -else{s=A.aIi(r) -s.toString -q.b=s*p}}else{s=A.aIl(self.window) -s.toString -q.b=s*p}return new A.Uf(0,0,0,a-q.aI())}} -A.a6N.prototype={ -XS(a,b){var s -b.gfl(b).N(0,new A.a6O(this)) -s=A.ax("custom-element") -if(s==null)s=t.K.a(s) -this.d.setAttribute("flt-embedding",s)}, -Vg(a){A.x(a.style,"width","100%") -A.x(a.style,"height","100%") -A.x(a.style,"display","block") -A.x(a.style,"overflow","hidden") -A.x(a.style,"position","relative") -this.d.appendChild(a) -this.wY(a)}, -Vh(a,b){this.d.insertBefore(a,b) -this.wY(a)}, -Wz(){return this.WA(this.d)}, -WP(){return this.WQ(this.d)}} -A.a6O.prototype={ -$1(a){var s=A.ax(a.b) -if(s==null)s=t.K.a(s) -this.a.d.setAttribute(a.a,s)}, -$S:194} -A.a8J.prototype={ -wY(a){}} -A.asp.prototype={ -WA(a){if(!this.ay$)return -A.cI(a,"contextmenu",this.ch$,null) -this.ay$=!1}, -WQ(a){if(this.ay$)return -A.eZ(a,"contextmenu",this.ch$,null) -this.ay$=!0}} -A.Vo.prototype={ -$1(a){a.preventDefault()}, -$S:2} -A.aaL.prototype={ -XS(a,b){var s,r,q="0",p="none" -b.gfl(b).N(0,new A.aaM(this)) -s=self.document.body -s.toString -r=A.ax("full-page") -if(r==null)r=t.K.a(r) -s.setAttribute("flt-embedding",r) -this.a6Q() -r=self.document.body -r.toString -A.ez(r,"position","fixed") -A.ez(r,"top",q) -A.ez(r,"right",q) -A.ez(r,"bottom",q) -A.ez(r,"left",q) -A.ez(r,"overflow","hidden") -A.ez(r,"padding",q) -A.ez(r,"margin",q) -A.ez(r,"user-select",p) -A.ez(r,"-webkit-user-select",p) -A.ez(r,"touch-action",p)}, -Vg(a){var s=a.style -A.x(s,"position","absolute") -A.x(s,"top","0") -A.x(s,"right","0") -A.x(s,"bottom","0") -A.x(s,"left","0") -self.document.body.append(a) -this.wY(a)}, -Vh(a,b){self.document.body.insertBefore(a,b) -this.wY(a)}, -Wz(){return this.WA(self.window)}, -WP(){return this.WQ(self.window)}, -a6Q(){var s,r,q -for(s=t.qr,s=A.c3(new A.eO(self.document.head.querySelectorAll('meta[name="viewport"]'),s),s.i("q.E"),t.e),r=J.as(s.a),s=A.p(s),s=s.i("@<1>").a5(s.z[1]).z[1];r.u();)s.a(r.gJ(r)).remove() -q=A.bo(self.document,"meta") -s=A.ax("") -if(s==null)s=t.K.a(s) -q.setAttribute("flt-viewport",s) -q.name="viewport" -q.content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" -self.document.head.append(q) -this.wY(q)}} -A.aaM.prototype={ -$1(a){var s,r=self.document.body -r.toString -s=A.ax(a.b) -if(s==null)s=t.K.a(s) -r.setAttribute(a.a,s)}, -$S:194} -A.N9.prototype={ -a5T(a,b){var s=this,r=s.b,q=s.a -r.d.m(0,q,s) -r.e.m(0,q,B.mc) -$.pz.push(new A.a8T(s))}, -gAL(){var s=this.c -if(s==null){s=$.aCc() -s=this.c=A.aFo(s)}return s}, -uE(){var s=0,r=A.I(t.H),q,p=this,o,n -var $async$uE=A.D(function(a,b){if(a===1)return A.F(b,r) -while(true)switch(s){case 0:n=p.c -if(n==null){n=$.aCc() -n=p.c=A.aFo(n)}if(n instanceof A.Ea){s=1 -break}o=n.gnk() -n=p.c -s=3 -return A.K(n==null?null:n.kZ(),$async$uE) -case 3:p.c=A.aKG(o) -case 1:return A.G(q,r)}}) -return A.H($async$uE,r)}, -Af(){var s=0,r=A.I(t.H),q,p=this,o,n -var $async$Af=A.D(function(a,b){if(a===1)return A.F(b,r) -while(true)switch(s){case 0:n=p.c -if(n==null){n=$.aCc() -n=p.c=A.aFo(n)}if(n instanceof A.C3){s=1 -break}o=n.gnk() -n=p.c -s=3 -return A.K(n==null?null:n.kZ(),$async$Af) -case 3:p.c=A.aJv(o) -case 1:return A.G(q,r)}}) -return A.H($async$Af,r)}, -uF(a){return this.ald(a)}, -ald(a){var s=0,r=A.I(t.y),q,p=2,o,n=[],m=this,l,k,j -var $async$uF=A.D(function(b,c){if(b===1){o=c -s=p}while(true)switch(s){case 0:k=m.d -j=new A.b3(new A.ae($.ai,t.c),t.h) -m.d=j.a -s=3 -return A.K(k,$async$uF) -case 3:l=!1 -p=4 -s=7 -return A.K(a.$0(),$async$uF) -case 7:l=c -n.push(6) -s=5 -break -case 4:n=[2] -case 5:p=2 -J.aUZ(j) -s=n.pop() -break -case 6:q=l -s=1 -break -case 1:return A.G(q,r) -case 2:return A.F(o,r)}}) -return A.H($async$uF,r)}, -Kc(a){return this.apM(a)}, -apM(a){var s=0,r=A.I(t.y),q,p=this -var $async$Kc=A.D(function(b,c){if(b===1)return A.F(c,r) -while(true)switch(s){case 0:q=p.uF(new A.a8U(p,a)) -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$Kc,r)}, -gnV(){var s=this.b.e.h(0,this.a) -return s==null?B.mc:s}, -giq(){if(this.r==null)this.qt() -var s=this.r -s.toString -return s}, -qt(){var s=this.e -s===$&&A.c() -this.r=s.qt()}, -VJ(a){var s=this.e -s===$&&A.c() -this.f=s.VI(this.r.b,a)}, -aro(){var s,r,q,p -if(this.r!=null){s=this.e -s===$&&A.c() -r=s.qt() -s=this.r -q=s.b -p=r.b -if(q!==p&&s.a!==r.a){s=s.a -if(!(q>s&&pq&&r.a

").a5(b).i("dI<1,2>"))}, -E(a,b){if(!!a.fixed$length)A.U(A.V("add")) -a.push(b)}, -ck(a,b){if(!!a.fixed$length)A.U(A.V("removeAt")) -if(b<0||b>=a.length)throw A.d(A.aif(b,null)) -return a.splice(b,1)[0]}, -eY(a,b,c){if(!!a.fixed$length)A.U(A.V("insert")) -if(b<0||b>a.length)throw A.d(A.aif(b,null)) -a.splice(b,0,c)}, -fn(a,b,c){var s,r -if(!!a.fixed$length)A.U(A.V("insertAll")) -A.CZ(b,0,a.length,"index") -if(!t.Ee.b(c))c=J.lI(c) -s=J.b4(c) -a.length=a.length+s -r=b+s -this.bx(a,r,a.length,a,b) -this.dh(a,b,r,c)}, -fA(a,b,c){var s,r,q -if(!!a.immutable$list)A.U(A.V("setAll")) -A.CZ(b,0,a.length,"index") -for(s=J.as(c.a),r=A.p(c),r=r.i("@<1>").a5(r.z[1]).z[1];s.u();b=q){q=b+1 -this.m(a,b,r.a(s.gJ(s)))}}, -dT(a){if(!!a.fixed$length)A.U(A.V("removeLast")) -if(a.length===0)throw A.d(A.yN(a,-1)) -return a.pop()}, -F(a,b){var s -if(!!a.fixed$length)A.U(A.V("remove")) -for(s=0;s"))}, -K(a,b){var s -if(!!a.fixed$length)A.U(A.V("addAll")) -if(Array.isArray(b)){this.a6m(a,b) -return}for(s=J.as(b);s.u();)a.push(s.gJ(s))}, -a6m(a,b){var s,r=b.length -if(r===0)return -if(a===b)throw A.d(A.c4(a)) -for(s=0;s").a5(c).i("a1<1,2>"))}, -hf(a,b){return this.ew(a,b,t.z)}, -bH(a,b){var s,r=A.aT(a.length,"",!1,t.N) -for(s=0;s=0;--s){r=a[s] -if(b.$1(r))return r -if(q!==a.length)throw A.d(A.c4(a))}if(c!=null)return c.$0() -throw A.d(A.cd())}, -arx(a,b){return this.ary(a,b,null)}, -pp(a,b){var s,r,q,p,o=a.length -for(s=null,r=!1,q=0;qa.length)throw A.d(A.bZ(b,0,a.length,"start",null)) -if(c==null)c=a.length -else if(ca.length)throw A.d(A.bZ(c,b,a.length,"end",null)) -if(b===c)return A.b([],A.W(a)) -return A.b(a.slice(b,c),A.W(a))}, -em(a,b){return this.bX(a,b,null)}, -xz(a,b,c){A.co(b,c,a.length,null,null) -return A.er(a,b,c,A.W(a).c)}, -gM(a){if(a.length>0)return a[0] -throw A.d(A.cd())}, -gL(a){var s=a.length -if(s>0)return a[s-1] -throw A.d(A.cd())}, -gbD(a){var s=a.length -if(s===1)return a[0] -if(s===0)throw A.d(A.cd()) -throw A.d(A.ae4())}, -eL(a,b,c){if(!!a.fixed$length)A.U(A.V("removeRange")) -A.co(b,c,a.length,null,null) -a.splice(b,c-b)}, -bx(a,b,c,d,e){var s,r,q,p,o -if(!!a.immutable$list)A.U(A.V("setRange")) -A.co(b,c,a.length,null,null) -s=c-b -if(s===0)return -A.e_(e,"skipCount") -if(t.j.b(d)){r=d -q=e}else{r=J.KC(d,e).fs(0,!1) -q=0}p=J.X(r) -if(q+s>p.gp(r))throw A.d(A.aJ2()) -if(q=0;--o)a[b+o]=p.h(r,q+o) -else for(o=0;o=r){o=s-r -n=p-o -m.dh(a,b,q,d) -if(o!==0){m.bx(a,q,n,a,c) -m.sp(a,n)}}else{n=p+(r-s) -a.length=n -m.bx(a,q,n,a,c) -m.dh(a,b,q,d)}}, -dN(a,b){var s,r=a.length -for(s=0;s"))}, -dX(a,b){if(!!a.immutable$list)A.U(A.V("sort")) -A.aKT(a,b==null?J.yJ():b)}, -jl(a){return this.dX(a,null)}, -d9(a,b){var s,r=a.length -if(0>=r)return-1 -for(s=0;s=r -for(s=q;s>=0;--s)if(J.e(a[s],b))return s -return-1}, -t(a,b){var s -for(s=0;s"))}, -gA(a){return A.fi(a)}, -gp(a){return a.length}, -sp(a,b){if(!!a.fixed$length)A.U(A.V("set length")) -if(b<0)throw A.d(A.bZ(b,0,null,"newLength",null)) -if(b>a.length)A.W(a).c.a(null) -a.length=b}, -h(a,b){if(!(b>=0&&b=0&&b"))}, -K4(a,b){return A.aIK(a,b,A.W(a).c)}, -Y(a,b){var s=A.a8(a,!0,A.W(a).c) -this.K(s,b) -return s}, -Kr(a,b){var s -if(0>=a.length)return-1 -for(s=0;s=0;--s)if(b.$1(a[s]))return s -return-1}, -KG(a,b){return this.Ys(a,b,null)}, -sL(a,b){var s=a.length -if(s===0)throw A.d(A.cd()) -this.m(a,s-1,b)}, -ge5(a){return A.cG(A.W(a))}, -$ibx:1, -$ia7:1, -$iq:1, -$iB:1} -J.aec.prototype={} -J.dj.prototype={ -gJ(a){var s=this.d -return s==null?this.$ti.c.a(s):s}, -u(){var s,r=this,q=r.a,p=q.length -if(r.b!==p)throw A.d(A.N(q)) -s=r.c -if(s>=p){r.d=null -return!1}r.d=q[s] -r.c=s+1 -return!0}} -J.o6.prototype={ -bi(a,b){var s -if(ab)return 1 -else if(a===b){if(a===0){s=this.gwh(b) -if(this.gwh(a)===s)return 0 -if(this.gwh(a))return-1 -return 1}return 0}else if(isNaN(a)){if(isNaN(b))return 0 -return 1}else return-1}, -gwh(a){return a===0?1/a<0:a<0}, -gEj(a){var s -if(a>0)s=1 -else s=a<0?-1:a -return s}, -ac(a){var s -if(a>=-2147483648&&a<=2147483647)return a|0 -if(isFinite(a)){s=a<0?Math.ceil(a):Math.floor(a) -return s+0}throw A.d(A.V(""+a+".toInt()"))}, -e9(a){var s,r -if(a>=0){if(a<=2147483647){s=a|0 -return a===s?s:s+1}}else if(a>=-2147483648)return a|0 -r=Math.ceil(a) -if(isFinite(r))return r -throw A.d(A.V(""+a+".ceil()"))}, -ec(a){var s,r -if(a>=0){if(a<=2147483647)return a|0}else if(a>=-2147483648){s=a|0 -return a===s?s:s-1}r=Math.floor(a) -if(isFinite(r))return r -throw A.d(A.V(""+a+".floor()"))}, -bE(a){if(a>0){if(a!==1/0)return Math.round(a)}else if(a>-1/0)return 0-Math.round(0-a) -throw A.d(A.V(""+a+".round()"))}, -LI(a){if(a<0)return-Math.round(-a) -else return Math.round(a)}, -lp(a,b,c){if(B.h.bi(b,c)>0)throw A.d(A.tI(b)) -if(this.bi(a,b)<0)return b -if(this.bi(a,c)>0)return c -return a}, -Du(a){return a}, -ad(a,b){var s -if(b>20)throw A.d(A.bZ(b,0,20,"fractionDigits",null)) -s=a.toFixed(b) -if(a===0&&this.gwh(a))return"-"+s -return s}, -aut(a,b){var s -if(b<1||b>21)throw A.d(A.bZ(b,1,21,"precision",null)) -s=a.toPrecision(b) -if(a===0&&this.gwh(a))return"-"+s -return s}, -jc(a,b){var s,r,q,p -if(b<2||b>36)throw A.d(A.bZ(b,2,36,"radix",null)) -s=a.toString(b) -if(s.charCodeAt(s.length-1)!==41)return s -r=/^([\da-z]+)(?:\.([\da-z]+))?\(e\+(\d+)\)$/.exec(s) -if(r==null)A.U(A.V("Unexpected toString result: "+s)) -s=r[1] -q=+r[3] -p=r[2] -if(p!=null){s+=p -q-=p.length}return s+B.c.a6("0",q)}, -k(a){if(a===0&&1/a<0)return"-0.0" -else return""+a}, -gA(a){var s,r,q,p,o=a|0 -if(a===o)return o&536870911 -s=Math.abs(a) -r=Math.log(s)/0.6931471805599453|0 -q=Math.pow(2,r) -p=s<1?s/q:q/s -return((p*9007199254740992|0)+(p*3542243181176521|0))*599197+r*1259&536870911}, -Y(a,b){return a+b}, -Z(a,b){return a-b}, -a6(a,b){return a*b}, -cF(a,b){var s=a%b -if(s===0)return 0 -if(s>0)return s -if(b<0)return s-b -else return s+b}, -jo(a,b){if((a|0)===a)if(b>=1||b<-1)return a/b|0 -return this.Ty(a,b)}, -dj(a,b){return(a|0)===a?a/b|0:this.Ty(a,b)}, -Ty(a,b){var s=a/b -if(s>=-2147483648&&s<=2147483647)return s|0 -if(s>0){if(s!==1/0)return Math.floor(s)}else if(s>-1/0)return Math.ceil(s) -throw A.d(A.V("Result of truncating division is "+A.j(s)+": "+A.j(a)+" ~/ "+A.j(b)))}, -a10(a,b){if(b<0)throw A.d(A.tI(b)) -return b>31?0:a<>>0}, -aj_(a,b){return b>31?0:a<>>0}, -fH(a,b){var s -if(a>0)s=this.Td(a,b) -else{s=b>31?31:b -s=a>>s>>>0}return s}, -aj8(a,b){if(0>b)throw A.d(A.tI(b)) -return this.Td(a,b)}, -Td(a,b){return b>31?0:a>>>b}, -q5(a,b){if(b>31)return 0 -return a>>>b}, -ge5(a){return A.cG(t.Jy)}, -$ic9:1, -$iZ:1, -$icc:1} -J.vj.prototype={ -gEj(a){var s -if(a>0)s=1 -else s=a<0?-1:a -return s}, -ge5(a){return A.cG(t.S)}, -$icN:1, -$io:1} -J.Bo.prototype={ -ge5(a){return A.cG(t.i)}, -$icN:1} -J.mf.prototype={ -iV(a,b){if(b<0)throw A.d(A.yN(a,b)) -if(b>=a.length)A.U(A.yN(a,b)) -return a.charCodeAt(b)}, -nZ(a,b,c){var s=b.length -if(c>s)throw A.d(A.bZ(c,0,s,null,null)) -return new A.a0b(b,a,c)}, -nY(a,b){return this.nZ(a,b,0)}, -jV(a,b,c){var s,r,q=null -if(c<0||c>b.length)throw A.d(A.bZ(c,0,b.length,q,q)) -s=a.length -if(c+s>b.length)return q -for(r=0;rr)return!1 -return b===this.bK(a,r-s)}, -Dm(a,b,c){A.CZ(0,0,a.length,"startIndex") -return A.aP1(a,b,c,0)}, -nB(a,b){var s=A.b(a.split(b),t.s) -return s}, -hM(a,b,c,d){var s=A.co(b,c,a.length,null,null) -return A.aFP(a,b,s,d)}, -dv(a,b,c){var s -if(c<0||c>a.length)throw A.d(A.bZ(c,0,a.length,null,null)) -s=c+b.length -if(s>a.length)return!1 -return b===a.substring(c,s)}, -bJ(a,b){return this.dv(a,b,0)}, -S(a,b,c){return a.substring(b,A.co(b,c,a.length,null,null))}, -bK(a,b){return this.S(a,b,null)}, -rK(a){return a.toLowerCase()}, -jd(a){var s,r,q,p=a.trim(),o=p.length -if(o===0)return p -if(p.charCodeAt(0)===133){s=J.aDm(p,1) -if(s===o)return""}else s=0 -r=o-1 -q=p.charCodeAt(r)===133?J.aDn(p,r):o -if(s===0&&q===o)return p -return p.substring(s,q)}, -auK(a){var s,r -if(typeof a.trimLeft!="undefined"){s=a.trimLeft() -if(s.length===0)return s -r=s.charCodeAt(0)===133?J.aDm(s,1):0}else{r=J.aDm(a,0) -s=a}if(r===0)return s -if(r===s.length)return"" -return s.substring(r)}, -lT(a){var s,r,q -if(typeof a.trimRight!="undefined"){s=a.trimRight() -r=s.length -if(r===0)return s -q=r-1 -if(s.charCodeAt(q)===133)r=J.aDn(s,q)}else{r=J.aDn(a,a.length) -s=a}if(r===s.length)return s -if(r===0)return"" -return s.substring(0,r)}, -a6(a,b){var s,r -if(0>=b)return"" -if(b===1||a.length===0)return a -if(b!==b>>>0)throw A.d(B.Cw) -for(s=a,r="";!0;){if((b&1)===1)r=s+r -b=b>>>1 -if(b===0)break -s+=s}return r}, -rs(a,b,c){var s=b-a.length -if(s<=0)return a -return this.a6(c,s)+a}, -asZ(a,b){var s=b-a.length -if(s<=0)return a -return a+this.a6(" ",s)}, -hd(a,b,c){var s,r,q,p -if(c<0||c>a.length)throw A.d(A.bZ(c,0,a.length,null,null)) -if(typeof b=="string")return a.indexOf(b,c) -if(b instanceof A.mg){s=b.FX(a,c) -return s==null?-1:s.b.index}for(r=a.length,q=J.nc(b),p=c;p<=r;++p)if(q.jV(b,a,p)!=null)return p -return-1}, -d9(a,b){return this.hd(a,b,0)}, -Cn(a,b,c){var s,r -if(c==null)c=a.length -else if(c<0||c>a.length)throw A.d(A.bZ(c,0,a.length,null,null)) -s=b.length -r=a.length -if(c+s>r)c=r-s -return a.lastIndexOf(b,c)}, -oG(a,b){return this.Cn(a,b,null)}, -AZ(a,b,c){var s=a.length -if(c>s)throw A.d(A.bZ(c,0,s,null,null)) -return A.a3o(a,b,c)}, -t(a,b){return this.AZ(a,b,0)}, -bi(a,b){var s -if(a===b)s=0 -else s=a>6}r=r+((r&67108863)<<3)&536870911 -r^=r>>11 -return r+((r&16383)<<15)&536870911}, -ge5(a){return A.cG(t.N)}, -gp(a){return a.length}, -h(a,b){if(!(b>=0&&b").a5(s.z[1]).i("LF<1,2>"))}, -gp(a){return J.b4(this.ghu())}, -ga8(a){return J.iD(this.ghu())}, -gc3(a){return J.kf(this.ghu())}, -iy(a,b){var s=A.p(this) -return A.c3(J.KC(this.ghu(),b),s.c,s.z[1])}, -kY(a,b){var s=A.p(this) -return A.c3(J.aH6(this.ghu(),b),s.c,s.z[1])}, -bp(a,b){return A.p(this).z[1].a(J.lG(this.ghu(),b))}, -gM(a){return A.p(this).z[1].a(J.nh(this.ghu()))}, -gL(a){return A.p(this).z[1].a(J.lH(this.ghu()))}, -t(a,b){return J.yU(this.ghu(),b)}, -k(a){return J.di(this.ghu())}} -A.LF.prototype={ -u(){return this.a.u()}, -gJ(a){var s=this.a -return this.$ti.z[1].a(s.gJ(s))}} -A.q_.prototype={ -iS(a,b){return A.c3(this.a,A.p(this).c,b)}, -ghu(){return this.a}} -A.Gu.prototype={$ia7:1} -A.FQ.prototype={ -h(a,b){return this.$ti.z[1].a(J.aN(this.a,b))}, -m(a,b,c){J.hv(this.a,b,this.$ti.c.a(c))}, -sp(a,b){J.aVy(this.a,b)}, -E(a,b){J.dV(this.a,this.$ti.c.a(b))}, -K(a,b){var s=this.$ti -J.KA(this.a,A.c3(b,s.z[1],s.c))}, -dX(a,b){var s=b==null?null:new A.arU(this,b) -J.KD(this.a,s)}, -eY(a,b,c){J.aGY(this.a,b,this.$ti.c.a(c))}, -fn(a,b,c){var s=this.$ti -J.aVi(this.a,b,A.c3(c,s.z[1],s.c))}, -fA(a,b,c){var s=this.$ti -J.aVz(this.a,b,A.c3(c,s.z[1],s.c))}, -F(a,b){return J.pL(this.a,b)}, -ck(a,b){return this.$ti.z[1].a(J.aVt(this.a,b))}, -dT(a){return this.$ti.z[1].a(J.aH2(this.a))}, -xz(a,b,c){var s=this.$ti -return A.c3(J.aVh(this.a,b,c),s.c,s.z[1])}, -bx(a,b,c,d,e){var s=this.$ti -J.aVB(this.a,b,c,A.c3(d,s.z[1],s.c),e)}, -dh(a,b,c,d){return this.bx(a,b,c,d,0)}, -eL(a,b,c){J.aVv(this.a,b,c)}, -$ia7:1, -$iB:1} -A.arU.prototype={ -$2(a,b){var s=this.a.$ti.z[1] -return this.b.$2(s.a(a),s.a(b))}, -$S(){return this.a.$ti.i("o(1,1)")}} -A.dI.prototype={ -iS(a,b){return new A.dI(this.a,this.$ti.i("@<1>").a5(b).i("dI<1,2>"))}, -ghu(){return this.a}} -A.lP.prototype={ -iS(a,b){return new A.lP(this.a,this.b,this.$ti.i("@<1>").a5(b).i("lP<1,2>"))}, -E(a,b){return this.a.E(0,this.$ti.c.a(b))}, -K(a,b){var s=this.$ti -this.a.K(0,A.c3(b,s.z[1],s.c))}, -F(a,b){return this.a.F(0,b)}, -wb(a,b){var s,r=this -if(r.b!=null)return r.a8g(b,!0) -s=r.$ti -return new A.lP(r.a.wb(0,b),null,s.i("@<1>").a5(s.z[1]).i("lP<1,2>"))}, -a8g(a,b){var s,r=this.b,q=this.$ti,p=q.z[1],o=r==null?A.jz(p):r.$1$0(p) -for(p=this.a,p=p.ga9(p),q=q.z[1];p.u();){s=q.a(p.gJ(p)) -if(b===a.t(0,s))o.E(0,s)}return o}, -P4(){var s=this.b,r=this.$ti.z[1],q=s==null?A.jz(r):s.$1$0(r) -q.K(0,this) -return q}, -it(a){return this.P4()}, -$ia7:1, -$ica:1, -ghu(){return this.a}} -A.q0.prototype={ -hz(a,b,c){var s=this.$ti -return new A.q0(this.a,s.i("@<1>").a5(s.z[1]).a5(b).a5(c).i("q0<1,2,3,4>"))}, -ak(a,b){return J.yV(this.a,b)}, -h(a,b){return this.$ti.i("4?").a(J.aN(this.a,b))}, -m(a,b,c){var s=this.$ti -J.hv(this.a,s.c.a(b),s.z[1].a(c))}, -bT(a,b,c){var s=this.$ti -return s.z[3].a(J.KB(this.a,s.c.a(b),new A.a5O(this,c)))}, -F(a,b){return this.$ti.i("4?").a(J.pL(this.a,b))}, -N(a,b){J.fX(this.a,new A.a5N(this,b))}, -gbI(a){var s=this.$ti -return A.c3(J.a3L(this.a),s.c,s.z[2])}, -gaR(a){var s=this.$ti -return A.c3(J.aVg(this.a),s.z[1],s.z[3])}, -gp(a){return J.b4(this.a)}, -ga8(a){return J.iD(this.a)}, -gc3(a){return J.kf(this.a)}, -gfl(a){var s=J.aGR(this.a) -return s.ew(s,new A.a5M(this),this.$ti.i("aY<3,4>"))}} -A.a5O.prototype={ -$0(){return this.a.$ti.z[1].a(this.b.$0())}, -$S(){return this.a.$ti.i("2()")}} -A.a5N.prototype={ -$2(a,b){var s=this.a.$ti -this.b.$2(s.z[2].a(a),s.z[3].a(b))}, -$S(){return this.a.$ti.i("~(1,2)")}} -A.a5M.prototype={ -$1(a){var s=this.a.$ti,r=s.z[3] -return new A.aY(s.z[2].a(a.a),r.a(a.b),s.i("@<3>").a5(r).i("aY<1,2>"))}, -$S(){return this.a.$ti.i("aY<3,4>(aY<1,2>)")}} -A.lO.prototype={ -iS(a,b){return new A.lO(this.a,this.$ti.i("@<1>").a5(b).i("lO<1,2>"))}, -$ia7:1, -ghu(){return this.a}} -A.ic.prototype={ -k(a){return"LateInitializationError: "+this.a}} -A.eU.prototype={ -gp(a){return this.a.length}, -h(a,b){return this.a.charCodeAt(b)}} -A.aBK.prototype={ -$0(){return A.dt(null,t.P)}, -$S:92} -A.alr.prototype={} -A.a7.prototype={} -A.am.prototype={ -ga9(a){var s=this -return new A.bz(s,s.gp(s),A.p(s).i("bz"))}, -N(a,b){var s,r=this,q=r.gp(r) -for(s=0;s").a5(c).i("a1<1,2>"))}, -hf(a,b){return this.ew(a,b,t.z)}, -kV(a,b){var s,r,q=this,p=q.gp(q) -if(p===0)throw A.d(A.cd()) -s=q.bp(0,0) -for(r=1;rs)throw A.d(A.bZ(r,0,s,"start",null))}}, -ga9q(){var s=J.b4(this.a),r=this.c -if(r==null||r>s)return s -return r}, -gajm(){var s=J.b4(this.a),r=this.b -if(r>s)return s -return r}, -gp(a){var s,r=J.b4(this.a),q=this.b -if(q>=r)return 0 -s=this.c -if(s==null||s>=r)return r-q -return s-q}, -bp(a,b){var s=this,r=s.gajm()+b -if(b<0||r>=s.ga9q())throw A.d(A.dv(b,s.gp(s),s,null,"index")) -return J.lG(s.a,r)}, -iy(a,b){var s,r,q=this -A.e_(b,"count") -s=q.b+b -r=q.c -if(r!=null&&s>=r)return new A.h1(q.$ti.i("h1<1>")) -return A.er(q.a,s,r,q.$ti.c)}, -kY(a,b){var s,r,q,p=this -A.e_(b,"count") -s=p.c -r=p.b -q=r+b -if(s==null)return A.er(p.a,r,q,p.$ti.c) -else{if(s=o){r.d=null -return!1}r.d=p.bp(q,s);++r.c -return!0}} -A.eG.prototype={ -ga9(a){var s=A.p(this) -return new A.bP(J.as(this.a),this.b,s.i("@<1>").a5(s.z[1]).i("bP<1,2>"))}, -gp(a){return J.b4(this.a)}, -ga8(a){return J.iD(this.a)}, -gM(a){return this.b.$1(J.nh(this.a))}, -gL(a){return this.b.$1(J.lH(this.a))}, -bp(a,b){return this.b.$1(J.lG(this.a,b))}} -A.qm.prototype={$ia7:1} -A.bP.prototype={ -u(){var s=this,r=s.b -if(r.u()){s.a=s.c.$1(r.gJ(r)) -return!0}s.a=null -return!1}, -gJ(a){var s=this.a -return s==null?this.$ti.z[1].a(s):s}} -A.a1.prototype={ -gp(a){return J.b4(this.a)}, -bp(a,b){return this.b.$1(J.lG(this.a,b))}} -A.aL.prototype={ -ga9(a){return new A.fN(J.as(this.a),this.b,this.$ti.i("fN<1>"))}, -ew(a,b,c){return new A.eG(this,b,this.$ti.i("@<1>").a5(c).i("eG<1,2>"))}, -hf(a,b){return this.ew(a,b,t.z)}} -A.fN.prototype={ -u(){var s,r -for(s=this.a,r=this.b;s.u();)if(r.$1(s.gJ(s)))return!0 -return!1}, -gJ(a){var s=this.a -return s.gJ(s)}} -A.i8.prototype={ -ga9(a){var s=this.$ti -return new A.uL(J.as(this.a),this.b,B.iu,s.i("@<1>").a5(s.z[1]).i("uL<1,2>"))}} -A.uL.prototype={ -gJ(a){var s=this.d -return s==null?this.$ti.z[1].a(s):s}, -u(){var s,r,q=this,p=q.c -if(p==null)return!1 -for(s=q.a,r=q.b;!p.u();){q.d=null -if(s.u()){q.c=null -p=J.as(r.$1(s.gJ(s))) -q.c=p}else return!1}p=q.c -q.d=p.gJ(p) -return!0}} -A.t2.prototype={ -ga9(a){return new A.Te(J.as(this.a),this.b,A.p(this).i("Te<1>"))}} -A.Av.prototype={ -gp(a){var s=J.b4(this.a),r=this.b -if(s>r)return r -return s}, -$ia7:1} -A.Te.prototype={ -u(){if(--this.b>=0)return this.a.u() -this.b=-1 -return!1}, -gJ(a){var s -if(this.b<0){this.$ti.c.a(null) -return null}s=this.a -return s.gJ(s)}} -A.mG.prototype={ -iy(a,b){A.tV(b,"count") -A.e_(b,"count") -return new A.mG(this.a,this.b+b,A.p(this).i("mG<1>"))}, -ga9(a){return new A.Sx(J.as(this.a),this.b,A.p(this).i("Sx<1>"))}} -A.uG.prototype={ -gp(a){var s=J.b4(this.a)-this.b -if(s>=0)return s -return 0}, -iy(a,b){A.tV(b,"count") -A.e_(b,"count") -return new A.uG(this.a,this.b+b,this.$ti)}, -$ia7:1} -A.Sx.prototype={ -u(){var s,r -for(s=this.a,r=0;r"))}} -A.Sy.prototype={ -u(){var s,r,q=this -if(!q.c){q.c=!0 -for(s=q.a,r=q.b;s.u();)if(!r.$1(s.gJ(s)))return!0}return q.a.u()}, -gJ(a){var s=this.a -return s.gJ(s)}} -A.h1.prototype={ -ga9(a){return B.iu}, -N(a,b){}, -ga8(a){return!0}, -gp(a){return 0}, -gM(a){throw A.d(A.cd())}, -gL(a){throw A.d(A.cd())}, -bp(a,b){throw A.d(A.bZ(b,0,0,"index",null))}, -t(a,b){return!1}, -dN(a,b){return!1}, -iv(a,b){return this}, -ew(a,b,c){return new A.h1(c.i("h1<0>"))}, -hf(a,b){return this.ew(a,b,t.z)}, -iy(a,b){A.e_(b,"count") -return this}, -kY(a,b){A.e_(b,"count") -return this}, -fs(a,b){var s=this.$ti.c -return b?J.Bk(0,s):J.OC(0,s)}, -eM(a){return this.fs(a,!0)}, -it(a){return A.jz(this.$ti.c)}} -A.N5.prototype={ -u(){return!1}, -gJ(a){throw A.d(A.cd())}} -A.m6.prototype={ -ga9(a){return new A.NM(J.as(this.a),this.b,A.p(this).i("NM<1>"))}, -gp(a){return J.b4(this.a)+J.b4(this.b)}, -ga8(a){return J.iD(this.a)&&J.iD(this.b)}, -gc3(a){return J.kf(this.a)||J.kf(this.b)}, -t(a,b){return J.yU(this.a,b)||J.yU(this.b,b)}, -gM(a){var s=J.as(this.a) -if(s.u())return s.gJ(s) -return J.nh(this.b)}, -gL(a){var s,r=J.as(this.b) -if(r.u()){s=r.gJ(r) -for(;r.u();)s=r.gJ(r) -return s}return J.lH(this.a)}} -A.Au.prototype={ -bp(a,b){var s=this.a,r=J.X(s),q=r.gp(s) -if(b"))}} -A.xm.prototype={ -u(){var s,r -for(s=this.a,r=this.$ti.c;s.u();)if(r.b(s.gJ(s)))return!0 -return!1}, -gJ(a){var s=this.a -return this.$ti.c.a(s.gJ(s))}} -A.AN.prototype={ -sp(a,b){throw A.d(A.V("Cannot change the length of a fixed-length list"))}, -E(a,b){throw A.d(A.V("Cannot add to a fixed-length list"))}, -eY(a,b,c){throw A.d(A.V("Cannot add to a fixed-length list"))}, -fn(a,b,c){throw A.d(A.V("Cannot add to a fixed-length list"))}, -K(a,b){throw A.d(A.V("Cannot add to a fixed-length list"))}, -F(a,b){throw A.d(A.V("Cannot remove from a fixed-length list"))}, -ck(a,b){throw A.d(A.V("Cannot remove from a fixed-length list"))}, -dT(a){throw A.d(A.V("Cannot remove from a fixed-length list"))}, -eL(a,b,c){throw A.d(A.V("Cannot remove from a fixed-length list"))}} -A.U1.prototype={ -m(a,b,c){throw A.d(A.V("Cannot modify an unmodifiable list"))}, -sp(a,b){throw A.d(A.V("Cannot change the length of an unmodifiable list"))}, -sL(a,b){throw A.d(A.V("Cannot modify an unmodifiable list"))}, -fA(a,b,c){throw A.d(A.V("Cannot modify an unmodifiable list"))}, -E(a,b){throw A.d(A.V("Cannot add to an unmodifiable list"))}, -eY(a,b,c){throw A.d(A.V("Cannot add to an unmodifiable list"))}, -fn(a,b,c){throw A.d(A.V("Cannot add to an unmodifiable list"))}, -K(a,b){throw A.d(A.V("Cannot add to an unmodifiable list"))}, -F(a,b){throw A.d(A.V("Cannot remove from an unmodifiable list"))}, -dX(a,b){throw A.d(A.V("Cannot modify an unmodifiable list"))}, -ck(a,b){throw A.d(A.V("Cannot remove from an unmodifiable list"))}, -dT(a){throw A.d(A.V("Cannot remove from an unmodifiable list"))}, -bx(a,b,c,d,e){throw A.d(A.V("Cannot modify an unmodifiable list"))}, -dh(a,b,c,d){return this.bx(a,b,c,d,0)}, -eL(a,b,c){throw A.d(A.V("Cannot remove from an unmodifiable list"))}} -A.xg.prototype={} -A.XU.prototype={ -gp(a){return J.b4(this.a)}, -bp(a,b){A.adF(b,J.b4(this.a),this,null) -return b}} -A.r0.prototype={ -h(a,b){return this.ak(0,b)?J.aN(this.a,A.ef(b)):null}, -gp(a){return J.b4(this.a)}, -gaR(a){return A.er(this.a,0,null,this.$ti.c)}, -gbI(a){return new A.XU(this.a)}, -ga8(a){return J.iD(this.a)}, -gc3(a){return J.kf(this.a)}, -ak(a,b){return A.n9(b)&&b>=0&&b>"))}, -aoD(a){var s=this -return function(){var r=a -var q=0,p=1,o,n,m,l -return function $async$gfl(b,c,d){if(c===1){o=d -q=p}while(true)switch(q){case 0:n=s.gbI(s),n=n.ga9(n),m=A.p(s),m=m.i("@<1>").a5(m.z[1]).i("aY<1,2>") -case 2:if(!n.u()){q=3 -break}l=n.gJ(n) -q=4 -return b.b=new A.aY(l,s.h(0,l),m),1 -case 4:q=2 -break -case 3:return 0 -case 1:return b.c=o,3}}}}, -j7(a,b,c,d){var s=A.m(c,d) -this.N(0,new A.a6t(this,b,s)) -return s}, -hf(a,b){return this.j7(a,b,t.z,t.z)}, -$iaz:1} -A.a6t.prototype={ -$2(a,b){var s=this.b.$2(a,b) -this.c.m(0,s.a,s.b)}, -$S(){return A.p(this.a).i("~(1,2)")}} -A.bG.prototype={ -gp(a){return this.b.length}, -gRj(){var s=this.$keys -if(s==null){s=Object.keys(this.a) -this.$keys=s}return s}, -ak(a,b){if(typeof b!="string")return!1 -if("__proto__"===b)return!1 -return this.a.hasOwnProperty(b)}, -h(a,b){if(!this.ak(0,b))return null -return this.b[this.a[b]]}, -N(a,b){var s,r,q=this.gRj(),p=this.b -for(s=q.length,r=0;r"))}, -gaR(a){return new A.tw(this.b,this.$ti.i("tw<2>"))}} -A.tw.prototype={ -gp(a){return this.a.length}, -ga8(a){return 0===this.a.length}, -gc3(a){return 0!==this.a.length}, -ga9(a){var s=this.a -return new A.ph(s,s.length,this.$ti.i("ph<1>"))}} -A.ph.prototype={ -gJ(a){var s=this.d -return s==null?this.$ti.c.a(s):s}, -u(){var s=this,r=s.c -if(r>=s.b){s.d=null -return!1}s.d=s.a[r] -s.c=r+1 -return!0}} -A.d3.prototype={ -me(){var s,r=this,q=r.$map -if(q==null){s=r.$ti -q=new A.qU(s.i("@<1>").a5(s.z[1]).i("qU<1,2>")) -A.aO7(r.a,q) -r.$map=q}return q}, -ak(a,b){return this.me().ak(0,b)}, -h(a,b){return this.me().h(0,b)}, -N(a,b){this.me().N(0,b)}, -gbI(a){var s=this.me() -return new A.bm(s,A.p(s).i("bm<1>"))}, -gaR(a){var s=this.me() -return s.gaR(s)}, -gp(a){return this.me().a}} -A.A0.prototype={ -E(a,b){A.aCH()}, -K(a,b){A.aCH()}, -F(a,b){A.aCH()}} -A.fs.prototype={ -gp(a){return this.b}, -ga8(a){return this.b===0}, -gc3(a){return this.b!==0}, -ga9(a){var s,r=this,q=r.$keys -if(q==null){q=Object.keys(r.a) -r.$keys=q}s=q -return new A.ph(s,s.length,r.$ti.i("ph<1>"))}, -t(a,b){if(typeof b!="string")return!1 -if("__proto__"===b)return!1 -return this.a.hasOwnProperty(b)}, -it(a){return A.hJ(this,this.$ti.c)}} -A.f1.prototype={ -gp(a){return this.a.length}, -ga8(a){return this.a.length===0}, -gc3(a){return this.a.length!==0}, -ga9(a){var s=this.a -return new A.ph(s,s.length,this.$ti.i("ph<1>"))}, -me(){var s,r,q,p,o=this,n=o.$map -if(n==null){s=o.$ti -n=new A.qU(s.i("@<1>").a5(s.c).i("qU<1,2>")) -for(s=o.a,r=s.length,q=0;q")}} -A.me.prototype={ -$0(){return this.a.$1$0(this.$ti.z[0])}, -$1(a){return this.a.$1$1(a,this.$ti.z[0])}, -$2(a,b){return this.a.$1$2(a,b,this.$ti.z[0])}, -$S(){return A.b6a(A.a3e(this.a),this.$ti)}} -A.Bm.prototype={ -gas6(){var s=this.a -if(s instanceof A.mK)return s -return this.a=new A.mK(s)}, -gatg(){var s,r,q,p,o,n=this -if(n.c===1)return B.nZ -s=n.d -r=J.X(s) -q=r.gp(s)-J.b4(n.e)-n.f -if(q===0)return B.nZ -p=[] -for(o=0;o>>0}, -k(a){return"Closure '"+this.$_name+"' of "+("Instance of '"+A.ai8(this.a)+"'")}} -A.VY.prototype={ -k(a){return"Reading static variable '"+this.a+"' during its initialization"}} -A.RV.prototype={ -k(a){return"RuntimeError: "+this.a}} -A.awI.prototype={} -A.fA.prototype={ -gp(a){return this.a}, -ga8(a){return this.a===0}, -gc3(a){return this.a!==0}, -gbI(a){return new A.bm(this,A.p(this).i("bm<1>"))}, -gaR(a){var s=A.p(this) -return A.iN(new A.bm(this,s.i("bm<1>")),new A.aef(this),s.c,s.z[1])}, -ak(a,b){var s,r -if(typeof b=="string"){s=this.b -if(s==null)return!1 -return s[b]!=null}else if(typeof b=="number"&&(b&0x3fffffff)===b){r=this.c -if(r==null)return!1 -return r[b]!=null}else return this.Y2(b)}, -Y2(a){var s=this.d -if(s==null)return!1 -return this.oC(s[this.oB(a)],a)>=0}, -an6(a,b){return new A.bm(this,A.p(this).i("bm<1>")).dN(0,new A.aee(this,b))}, -K(a,b){J.fX(b,new A.aed(this))}, -h(a,b){var s,r,q,p,o=null -if(typeof b=="string"){s=this.b -if(s==null)return o -r=s[b] -q=r==null?o:r.b -return q}else if(typeof b=="number"&&(b&0x3fffffff)===b){p=this.c -if(p==null)return o -r=p[b] -q=r==null?o:r.b -return q}else return this.Y3(b)}, -Y3(a){var s,r,q=this.d -if(q==null)return null -s=q[this.oB(a)] -r=this.oC(s,a) -if(r<0)return null -return s[r].b}, -m(a,b,c){var s,r,q=this -if(typeof b=="string"){s=q.b -q.Oi(s==null?q.b=q.H_():s,b,c)}else if(typeof b=="number"&&(b&0x3fffffff)===b){r=q.c -q.Oi(r==null?q.c=q.H_():r,b,c)}else q.Y5(b,c)}, -Y5(a,b){var s,r,q,p=this,o=p.d -if(o==null)o=p.d=p.H_() -s=p.oB(a) -r=o[s] -if(r==null)o[s]=[p.H0(a,b)] -else{q=p.oC(r,a) -if(q>=0)r[q].b=b -else r.push(p.H0(a,b))}}, -bT(a,b,c){var s,r,q=this -if(q.ak(0,b)){s=q.h(0,b) -return s==null?A.p(q).z[1].a(s):s}r=c.$0() -q.m(0,b,r) -return r}, -F(a,b){var s=this -if(typeof b=="string")return s.Sk(s.b,b) -else if(typeof b=="number"&&(b&0x3fffffff)===b)return s.Sk(s.c,b) -else return s.Y4(b)}, -Y4(a){var s,r,q,p,o=this,n=o.d -if(n==null)return null -s=o.oB(a) -r=n[s] -q=o.oC(r,a) -if(q<0)return null -p=r.splice(q,1)[0] -o.TV(p) -if(r.length===0)delete n[s] -return p.b}, -a0(a){var s=this -if(s.a>0){s.b=s.c=s.d=s.e=s.f=null -s.a=0 -s.GX()}}, -N(a,b){var s=this,r=s.e,q=s.r -for(;r!=null;){b.$2(r.a,r.b) -if(q!==s.r)throw A.d(A.c4(s)) -r=r.c}}, -Oi(a,b,c){var s=a[b] -if(s==null)a[b]=this.H0(b,c) -else s.b=c}, -Sk(a,b){var s -if(a==null)return null -s=a[b] -if(s==null)return null -this.TV(s) -delete a[b] -return s.b}, -GX(){this.r=this.r+1&1073741823}, -H0(a,b){var s,r=this,q=new A.aeP(a,b) -if(r.e==null)r.e=r.f=q -else{s=r.f -s.toString -q.d=s -r.f=s.c=q}++r.a -r.GX() -return q}, -TV(a){var s=this,r=a.d,q=a.c -if(r==null)s.e=q -else r.c=q -if(q==null)s.f=r -else q.d=r;--s.a -s.GX()}, -oB(a){return J.C(a)&1073741823}, -oC(a,b){var s,r -if(a==null)return-1 -s=a.length -for(r=0;r"]=s -delete s[""] -return s}} -A.aef.prototype={ -$1(a){var s=this.a,r=s.h(0,a) -return r==null?A.p(s).z[1].a(r):r}, -$S(){return A.p(this.a).i("2(1)")}} -A.aee.prototype={ -$1(a){return J.e(this.a.h(0,a),this.b)}, -$S(){return A.p(this.a).i("J(1)")}} -A.aed.prototype={ -$2(a,b){this.a.m(0,a,b)}, -$S(){return A.p(this.a).i("~(1,2)")}} -A.aeP.prototype={} -A.bm.prototype={ -gp(a){return this.a.a}, -ga8(a){return this.a.a===0}, -ga9(a){var s=this.a,r=new A.vp(s,s.r,this.$ti.i("vp<1>")) -r.c=s.e -return r}, -t(a,b){return this.a.ak(0,b)}, -N(a,b){var s=this.a,r=s.e,q=s.r -for(;r!=null;){b.$1(r.a) -if(q!==s.r)throw A.d(A.c4(s)) -r=r.c}}} -A.vp.prototype={ -gJ(a){return this.d}, -u(){var s,r=this,q=r.a -if(r.b!==q.r)throw A.d(A.c4(q)) -s=r.c -if(s==null){r.d=null -return!1}else{r.d=s.a -r.c=s.c -return!0}}} -A.Bq.prototype={ -oB(a){return A.pI(a)&1073741823}, -oC(a,b){var s,r,q -if(a==null)return-1 -s=a.length -for(r=0;r0;){--q;--s -j[q]=r[s]}}return A.vs(j,k)}} -A.ZD.prototype={ -yP(){return[this.a,this.b]}, -j(a,b){if(b==null)return!1 -return b instanceof A.ZD&&this.$s===b.$s&&J.e(this.a,b.a)&&J.e(this.b,b.b)}, -gA(a){return A.T(this.$s,this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.ZE.prototype={ -yP(){return[this.a,this.b,this.c]}, -j(a,b){var s=this -if(b==null)return!1 -return b instanceof A.ZE&&s.$s===b.$s&&J.e(s.a,b.a)&&J.e(s.b,b.b)&&J.e(s.c,b.c)}, -gA(a){var s=this -return A.T(s.$s,s.a,s.b,s.c,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.ZF.prototype={ -yP(){return this.a}, -j(a,b){if(b==null)return!1 -return b instanceof A.ZF&&this.$s===b.$s&&A.b1Z(this.a,b.a)}, -gA(a){return A.T(this.$s,A.cn(this.a),B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.mg.prototype={ -k(a){return"RegExp/"+this.a+"/"+this.b.flags}, -gRD(){var s=this,r=s.c -if(r!=null)return r -r=s.b -return s.c=A.aDo(s.a,r.multiline,!r.ignoreCase,r.unicode,r.dotAll,!0)}, -gaf8(){var s=this,r=s.d -if(r!=null)return r -r=s.b -return s.d=A.aDo(s.a+"|()",r.multiline,!r.ignoreCase,r.unicode,r.dotAll,!0)}, -ev(a){var s=this.b.exec(a) -if(s==null)return null -return new A.y5(s)}, -a1z(a){var s=this.ev(a) -if(s!=null)return s.b[0] -return null}, -nZ(a,b,c){if(c<0||c>b.length)throw A.d(A.bZ(c,0,b.length,null,null)) -return new A.Uu(this,b,c)}, -nY(a,b){return this.nZ(a,b,0)}, -FX(a,b){var s,r=this.gRD() -r.lastIndex=b -s=r.exec(a) -if(s==null)return null -return new A.y5(s)}, -a9w(a,b){var s,r=this.gaf8() -r.lastIndex=b -s=r.exec(a) -if(s==null)return null -if(s.pop()!=null)return null -return new A.y5(s)}, -jV(a,b,c){if(c<0||c>b.length)throw A.d(A.bZ(c,0,b.length,null,null)) -return this.a9w(b,c)}, -$iRb:1} -A.y5.prototype={ -gbM(a){return this.b.index}, -gbg(a){var s=this.b -return s.index+s[0].length}, -h(a,b){return this.b[b]}, -oN(a){var s,r=this.b.groups -if(r!=null){s=r[a] -if(s!=null||a in r)return s}throw A.d(A.dW(a,"name","Not a capture group name"))}, -$ir7:1, -$ioD:1} -A.Uu.prototype={ -ga9(a){return new A.tj(this.a,this.b,this.c)}} -A.tj.prototype={ -gJ(a){var s=this.d -return s==null?t.Qz.a(s):s}, -u(){var s,r,q,p,o,n=this,m=n.b -if(m==null)return!1 -s=n.c -r=m.length -if(s<=r){q=n.a -p=q.FX(m,s) -if(p!=null){n.d=p -o=p.gbg(p) -if(p.b.index===o){if(q.b.unicode){s=n.c -q=s+1 -if(q=55296&&s<=56319){s=m.charCodeAt(q) -s=s>=56320&&s<=57343}else s=!1}else s=!1}else s=!1 -o=(s?o+1:o)+1}n.c=o -return!0}}n.b=n.d=null -return!1}} -A.wO.prototype={ -gbg(a){return this.a+this.c.length}, -h(a,b){if(b!==0)A.U(A.aif(b,null)) -return this.c}, -$ir7:1, -gbM(a){return this.a}} -A.a0b.prototype={ -ga9(a){return new A.a0c(this.a,this.b,this.c)}, -gM(a){var s=this.a,r=this.b,q=s.indexOf(r,this.c) -if(q>=0)return new A.wO(q,s,r) -throw A.d(A.cd())}} -A.a0c.prototype={ -u(){var s,r,q=this,p=q.c,o=q.b,n=o.length,m=q.a,l=m.length -if(p+n>l){q.d=null -return!1}s=m.indexOf(o,p) -if(s<0){q.c=l+1 -q.d=null -return!1}r=s+n -q.d=new A.wO(s,m,o) -q.c=r===q.c?r+1:r -return!0}, -gJ(a){var s=this.d -s.toString -return s}} -A.arV.prototype={ -aI(){var s=this.b -if(s===this)throw A.d(new A.ic("Local '"+this.a+"' has not been initialized.")) -return s}, -bR(){var s=this.b -if(s===this)throw A.d(A.mi(this.a)) -return s}, -scM(a){var s=this -if(s.b!==s)throw A.d(new A.ic("Local '"+s.a+"' has already been initialized.")) -s.b=a}} -A.aui.prototype={ -Hj(){var s=this,r=s.b -return r===s?s.b=s.c.$0():r}, -aQ(){var s,r=this,q=r.b -if(q===r){s=r.c.$0() -if(r.b!==r)throw A.d(new A.ic("Local '"+r.a+u.N)) -r.b=s -q=s}return q}} -A.C7.prototype={ -ge5(a){return B.UK}, -Vb(a,b,c){throw A.d(A.V("Int64List not supported by dart2js."))}, -am3(a,b,c){A.K3(a,b,c) -return c==null?new DataView(a,b):new DataView(a,b,c)}, -am2(a){return this.am3(a,0,null)}, -$icN:1, -$iLA:1} -A.Cb.prototype={ -aea(a,b,c,d){var s=A.bZ(b,0,c,d,null) -throw A.d(s)}, -OT(a,b,c,d){if(b>>>0!==b||b>c)this.aea(a,b,c,d)}, -$idF:1} -A.C8.prototype={ -ge5(a){return B.UL}, -Mk(a,b,c){throw A.d(A.V("Int64 accessor not supported by dart2js."))}, -MZ(a,b,c,d){throw A.d(A.V("Int64 accessor not supported by dart2js."))}, -$icN:1, -$icB:1} -A.vD.prototype={ -gp(a){return a.length}, -T3(a,b,c,d,e){var s,r,q=a.length -this.OT(a,b,q,"start") -this.OT(a,c,q,"end") -if(b>c)throw A.d(A.bZ(b,0,c,null,null)) -s=c-b -if(e<0)throw A.d(A.bF(e,null)) -r=d.length -if(r-e0){s=Date.now()-r.c -if(s>(p+1)*o)p=B.h.jo(s,o)}q.c=p -r.d.$1(q)}, -$S:16} -A.UM.prototype={ -dm(a,b){var s,r=this -if(b==null)b=r.$ti.c.a(b) -if(!r.b)r.a.iE(b) -else{s=r.a -if(r.$ti.i("at<1>").b(b))s.OL(b) -else s.pH(b)}}, -o8(a,b){var s=this.a -if(this.b)s.fg(a,b) -else s.yo(a,b)}} -A.azD.prototype={ -$1(a){return this.a.$2(0,a)}, -$S:20} -A.azE.prototype={ -$2(a,b){this.a.$2(1,new A.AG(a,b))}, -$S:650} -A.aAv.prototype={ -$2(a,b){this.a(a,b)}, -$S:664} -A.azB.prototype={ -$0(){var s,r=this.a,q=r.a -q===$&&A.c() -s=q.b -if((s&1)!==0?(q.gux().e&4)!==0:(s&2)===0){r.b=!0 -return}this.b.$2(0,null)}, -$S:0} -A.azC.prototype={ -$1(a){var s=this.a.c!=null?2:0 -this.b.$2(s,null)}, -$S:21} -A.UO.prototype={ -a6a(a,b){var s=new A.ar7(a) -this.a=A.SW(new A.ar9(this,a),new A.ara(s),new A.arb(this,s),b)}} -A.ar7.prototype={ -$0(){A.ey(new A.ar8(this.a))}, -$S:16} -A.ar8.prototype={ -$0(){this.a.$2(0,null)}, -$S:0} -A.ara.prototype={ -$0(){this.a.$0()}, -$S:0} -A.arb.prototype={ -$0(){var s=this.a -if(s.b){s.b=!1 -this.b.$0()}}, -$S:0} -A.ar9.prototype={ -$0(){var s=this.a,r=s.a -r===$&&A.c() -if((r.b&4)===0){s.c=new A.ae($.ai,t.LR) -if(s.b){s.b=!1 -A.ey(new A.ar6(this.b))}return s.c}}, -$S:682} -A.ar6.prototype={ -$0(){this.a.$2(2,null)}, -$S:0} -A.H6.prototype={ -k(a){return"IterationMarker("+this.b+", "+A.j(this.a)+")"}} -A.je.prototype={ -gJ(a){return this.b}, -ahT(a,b){var s,r,q -a=a -b=b -s=this.a -for(;!0;)try{r=s(this,a,b) -return r}catch(q){b=q -a=1}}, -u(){var s,r,q,p,o=this,n=null,m=0 -for(;!0;){s=o.d -if(s!=null)try{if(s.u()){o.b=J.aV5(s) -return!0}else o.d=null}catch(r){n=r -m=1 -o.d=null}q=o.ahT(m,n) -if(1===q)return!0 -if(0===q){o.b=null -p=o.e -if(p==null||p.length===0){o.a=A.aMd -return!1}o.a=p.pop() -m=0 -n=null -continue}if(2===q){m=0 -n=null -continue}if(3===q){n=o.c -o.c=null -p=o.e -if(p==null||p.length===0){o.b=null -o.a=A.aMd -throw n -return!1}o.a=p.pop() -m=1 -continue}throw A.d(A.a4("sync*"))}return!1}, -Ii(a){var s,r,q=this -if(a instanceof A.iy){s=a.a() -r=q.e -if(r==null)r=q.e=[] -r.push(q.a) -q.a=s -return 2}else{q.d=J.as(a) -return 2}}} -A.iy.prototype={ -ga9(a){return new A.je(this.a(),this.$ti.i("je<1>"))}} -A.KZ.prototype={ -k(a){return A.j(this.a)}, -$icj:1, -gtk(){return this.b}} -A.dh.prototype={} -A.tl.prototype={ -mg(){}, -mh(){}} -A.j4.prototype={ -gNi(a){return new A.dh(this,A.p(this).i("dh<1>"))}, -gpV(){return this.c<4}, -tY(){var s=this.r -return s==null?this.r=new A.ae($.ai,t.c):s}, -Sl(a){var s=a.CW,r=a.ch -if(s==null)this.d=r -else s.ch=r -if(r==null)this.e=s -else r.CW=s -a.CW=a -a.ch=a}, -HJ(a,b,c,d){var s,r,q,p,o,n,m,l=this -if((l.c&4)!==0)return A.aEr(c,A.p(l).c) -s=$.ai -r=d?1:0 -q=A.arm(s,a) -p=A.aEq(s,b) -o=c==null?A.aFi():c -n=new A.tl(l,q,p,o,s,r,A.p(l).i("tl<1>")) -n.CW=n -n.ch=n -n.ay=l.c&1 -m=l.e -l.e=n -n.ch=null -n.CW=m -if(m==null)l.d=n -else m.ch=n -if(l.d===n)A.a3a(l.a) -return n}, -Sa(a){var s,r=this -A.p(r).i("tl<1>").a(a) -if(a.ch===a)return null -s=a.ay -if((s&2)!==0)a.ay=s|4 -else{r.Sl(a) -if((r.c&2)===0&&r.d==null)r.tH()}return null}, -Sb(a){}, -Sc(a){}, -pC(){if((this.c&4)!==0)return new A.iW("Cannot add new events after calling close") -return new A.iW("Cannot add new events while doing an addStream")}, -E(a,b){if(!this.gpV())throw A.d(this.pC()) -this.nQ(b)}, -nW(a,b){A.fc(a,"error",t.K) -if(!this.gpV())throw A.d(this.pC()) -b=A.tW(a) -this.li(a,b)}, -km(a){return this.nW(a,null)}, -aL(a){var s,r,q=this -if((q.c&4)!==0){s=q.r -s.toString -return s}if(!q.gpV())throw A.d(q.pC()) -q.c|=4 -r=q.tY() -q.lh() -return r}, -gaoo(){return this.tY()}, -iD(a,b){this.li(a,b)}, -pF(){var s=this.f -s.toString -this.f=null -this.c&=4294967287 -s.a.iE(null)}, -G9(a){var s,r,q,p=this,o=p.c -if((o&2)!==0)throw A.d(A.a4(u.y)) -s=p.d -if(s==null)return -r=o&1 -p.c=o^3 -for(;s!=null;){o=s.ay -if((o&1)===r){s.ay=o|2 -a.$1(s) -o=s.ay^=1 -q=s.ch -if((o&4)!==0)p.Sl(s) -s.ay&=4294967293 -s=q}else s=s.ch}p.c&=4294967293 -if(p.d==null)p.tH()}, -tH(){if((this.c&4)!==0){var s=this.r -if((s.a&30)===0)s.iE(null)}A.a3a(this.b)}, -$iiX:1} -A.pt.prototype={ -gpV(){return A.j4.prototype.gpV.call(this)&&(this.c&2)===0}, -pC(){if((this.c&2)!==0)return new A.iW(u.y) -return this.a3X()}, -nQ(a){var s=this,r=s.d -if(r==null)return -if(r===s.e){s.c|=2 -r.kf(0,a) -s.c&=4294967293 -if(s.d==null)s.tH() -return}s.G9(new A.axW(s,a))}, -li(a,b){if(this.d==null)return -this.G9(new A.axY(this,a,b))}, -lh(){var s=this -if(s.d!=null)s.G9(new A.axX(s)) -else s.r.iE(null)}} -A.axW.prototype={ -$1(a){a.kf(0,this.b)}, -$S(){return A.p(this.a).i("~(f7<1>)")}} -A.axY.prototype={ -$1(a){a.iD(this.b,this.c)}, -$S(){return A.p(this.a).i("~(f7<1>)")}} -A.axX.prototype={ -$1(a){a.pF()}, -$S(){return A.p(this.a).i("~(f7<1>)")}} -A.dG.prototype={ -nQ(a){var s,r -for(s=this.d,r=this.$ti.i("j6<1>");s!=null;s=s.ch)s.ld(new A.j6(a,r))}, -li(a,b){var s -for(s=this.d;s!=null;s=s.ch)s.ld(new A.tp(a,b))}, -lh(){var s=this.d -if(s!=null)for(;s!=null;s=s.ch)s.ld(B.dI) -else this.r.iE(null)}} -A.xu.prototype={ -EU(a){var s=this.ax;(s==null?this.ax=new A.lt(this.$ti.i("lt<1>")):s).E(0,a)}, -E(a,b){var s=this,r=s.c -if((r&4)===0&&(r&2)!==0){s.EU(new A.j6(b,s.$ti.i("j6<1>"))) -return}s.a3Z(0,b) -s.Q0()}, -nW(a,b){var s,r=this -A.fc(a,"error",t.K) -if(b==null)b=A.tW(a) -s=r.c -if((s&4)===0&&(s&2)!==0){r.EU(new A.tp(a,b)) -return}if(!(A.j4.prototype.gpV.call(r)&&(r.c&2)===0))throw A.d(r.pC()) -r.li(a,b) -r.Q0()}, -km(a){return this.nW(a,null)}, -Q0(){var s,r,q=this.ax -if(q!=null)for(;q.c!=null;){s=q.b -r=s.gj8(s) -q.b=r -if(r==null)q.c=null -s.D4(this)}}, -aL(a){var s=this,r=s.c -if((r&4)===0&&(r&2)!==0){s.EU(B.dI) -s.c|=4 -return A.j4.prototype.gaoo.call(s)}return s.a4_(0)}, -tH(){var s=this.ax -if(s!=null){if(s.a===1)s.a=3 -this.ax=s.b=s.c=null}this.a3Y()}} -A.aaQ.prototype={ -$0(){var s,r,q -try{this.a.mc(this.b.$0())}catch(q){s=A.a6(q) -r=A.aJ(q) -A.aEU(this.a,s,r)}}, -$S:0} -A.aaP.prototype={ -$0(){var s,r,q,p=this,o=p.a -if(o==null){p.c.a(null) -p.b.mc(null)}else try{p.b.mc(o.$0())}catch(q){s=A.a6(q) -r=A.aJ(q) -A.aEU(p.b,s,r)}}, -$S:0} -A.aaS.prototype={ -$2(a,b){var s=this,r=s.a,q=--r.b -if(r.a!=null){r.a=null -if(r.b===0||s.c)s.d.fg(a,b) -else{s.e.b=a -s.f.b=b}}else if(q===0&&!s.c)s.d.fg(s.e.aI(),s.f.aI())}, -$S:51} -A.aaR.prototype={ -$1(a){var s,r=this,q=r.a;--q.b -s=q.a -if(s!=null){J.hv(s,r.b,a) -if(q.b===0)r.c.pH(A.cZ(s,!0,r.w))}else if(q.b===0&&!r.e)r.c.fg(r.f.aI(),r.r.aI())}, -$S(){return this.w.i("b1(0)")}} -A.aaO.prototype={ -$2(a,b){var s -if(this.a.b(a))s=!1 -else s=!0 -if(s)throw A.d(a) -return this.c.$2(a,b)}, -$S(){return this.d.i("0/(O,d9)")}} -A.aaN.prototype={ -$1(a){return a}, -$S(){return this.a.i("0(0)")}} -A.xx.prototype={ -o8(a,b){A.fc(a,"error",t.K) -if((this.a.a&30)!==0)throw A.d(A.a4("Future already completed")) -if(b==null)b=A.tW(a) -this.fg(a,b)}, -lr(a){return this.o8(a,null)}} -A.b3.prototype={ -dm(a,b){var s=this.a -if((s.a&30)!==0)throw A.d(A.a4("Future already completed")) -s.iE(b)}, -fN(a){return this.dm(a,null)}, -fg(a,b){this.a.yo(a,b)}} -A.IP.prototype={ -dm(a,b){var s=this.a -if((s.a&30)!==0)throw A.d(A.a4("Future already completed")) -s.mc(b)}, -fg(a,b){this.a.fg(a,b)}} -A.j9.prototype={ -as0(a){if((this.c&15)!==6)return!0 -return this.b.b.x7(this.d,a.a)}, -BT(a){var s,r=this.e,q=null,p=a.a,o=this.b.b -if(t.Hg.b(r))q=o.a_5(r,p,a.b) -else q=o.x7(r,p) -try{p=q -return p}catch(s){if(t.ns.b(A.a6(s))){if((this.c&1)!==0)throw A.d(A.bF("The error handler of Future.then must return a value of the returned future's type","onError")) -throw A.d(A.bF("The error handler of Future.catchError must return a value of the future's type","onError"))}else throw s}}} -A.ae.prototype={ -SY(a){this.a=this.a&1|4 -this.c=a}, -hj(a,b,c,d){var s,r,q=$.ai -if(q===B.as){if(c!=null&&!t.Hg.b(c)&&!t.C_.b(c))throw A.d(A.dW(c,"onError",u.w))}else if(c!=null)c=A.aNo(c,q) -s=new A.ae(q,d.i("ae<0>")) -r=c==null?1:3 -this.pD(new A.j9(s,r,b,c,this.$ti.i("@<1>").a5(d).i("j9<1,2>"))) -return s}, -bQ(a,b,c){return this.hj(a,b,null,c)}, -TH(a,b,c){var s=new A.ae($.ai,c.i("ae<0>")) -this.pD(new A.j9(s,3,a,b,this.$ti.i("@<1>").a5(c).i("j9<1,2>"))) -return s}, -o5(a,b){var s=this.$ti,r=$.ai,q=new A.ae(r,s) -if(r!==B.as)a=A.aNo(a,r) -r=b==null?2:6 -this.pD(new A.j9(q,r,b,a,s.i("@<1>").a5(s.c).i("j9<1,2>"))) -return q}, -kq(a){return this.o5(a,null)}, -fY(a){var s=this.$ti,r=new A.ae($.ai,s) -this.pD(new A.j9(r,8,a,null,s.i("@<1>").a5(s.c).i("j9<1,2>"))) -return r}, -aiR(a){this.a=this.a&1|16 -this.c=a}, -yt(a){this.a=a.a&30|this.a&1 -this.c=a.c}, -pD(a){var s=this,r=s.a -if(r<=3){a.a=s.c -s.c=a}else{if((r&4)!==0){r=s.c -if((r.a&24)===0){r.pD(a) -return}s.yt(r)}A.pA(null,null,s.b,new A.atN(s,a))}}, -Hf(a){var s,r,q,p,o,n=this,m={} -m.a=a -if(a==null)return -s=n.a -if(s<=3){r=n.c -n.c=a -if(r!=null){q=a.a -for(p=a;q!=null;p=q,q=o)o=q.a -p.a=r}}else{if((s&4)!==0){s=n.c -if((s.a&24)===0){s.Hf(a) -return}n.yt(s)}m.a=n.zG(a) -A.pA(null,null,n.b,new A.atU(m,n))}}, -zA(){var s=this.c -this.c=null -return this.zG(s)}, -zG(a){var s,r,q -for(s=a,r=null;s!=null;r=s,s=q){q=s.a -s.a=r}return r}, -F9(a){var s,r,q,p=this -p.a^=2 -try{a.hj(0,new A.atR(p),new A.atS(p),t.P)}catch(q){s=A.a6(q) -r=A.aJ(q) -A.ey(new A.atT(p,s,r))}}, -mc(a){var s,r=this,q=r.$ti -if(q.i("at<1>").b(a))if(q.b(a))A.aEs(a,r) -else r.F9(a) -else{s=r.zA() -r.a=8 -r.c=a -A.xQ(r,s)}}, -pH(a){var s=this,r=s.zA() -s.a=8 -s.c=a -A.xQ(s,r)}, -fg(a,b){var s=this.zA() -this.aiR(A.a4u(a,b)) -A.xQ(this,s)}, -iE(a){if(this.$ti.i("at<1>").b(a)){this.OL(a) -return}this.a6S(a)}, -a6S(a){this.a^=2 -A.pA(null,null,this.b,new A.atP(this,a))}, -OL(a){if(this.$ti.b(a)){A.b1A(a,this) -return}this.F9(a)}, -yo(a,b){this.a^=2 -A.pA(null,null,this.b,new A.atO(this,a,b))}, -$iat:1} -A.atN.prototype={ -$0(){A.xQ(this.a,this.b)}, -$S:0} -A.atU.prototype={ -$0(){A.xQ(this.b,this.a.a)}, -$S:0} -A.atR.prototype={ -$1(a){var s,r,q,p=this.a -p.a^=2 -try{p.pH(p.$ti.c.a(a))}catch(q){s=A.a6(q) -r=A.aJ(q) -p.fg(s,r)}}, -$S:21} -A.atS.prototype={ -$2(a,b){this.a.fg(a,b)}, -$S:36} -A.atT.prototype={ -$0(){this.a.fg(this.b,this.c)}, -$S:0} -A.atQ.prototype={ -$0(){A.aEs(this.a.a,this.b)}, -$S:0} -A.atP.prototype={ -$0(){this.a.pH(this.b)}, -$S:0} -A.atO.prototype={ -$0(){this.a.fg(this.b,this.c)}, -$S:0} -A.atX.prototype={ -$0(){var s,r,q,p,o,n,m=this,l=null -try{q=m.a.a -l=q.b.b.hi(q.d)}catch(p){s=A.a6(p) -r=A.aJ(p) -q=m.c&&m.b.a.c.a===s -o=m.a -if(q)o.c=m.b.a.c -else o.c=A.a4u(s,r) -o.b=!0 -return}if(l instanceof A.ae&&(l.a&24)!==0){if((l.a&16)!==0){q=m.a -q.c=l.c -q.b=!0}return}if(t.L0.b(l)){n=m.b.a -q=m.a -q.c=J.aCn(l,new A.atY(n),t.z) -q.b=!1}}, -$S:0} -A.atY.prototype={ -$1(a){return this.a}, -$S:233} -A.atW.prototype={ -$0(){var s,r,q,p,o -try{q=this.a -p=q.a -q.c=p.b.b.x7(p.d,this.b)}catch(o){s=A.a6(o) -r=A.aJ(o) -q=this.a -q.c=A.a4u(s,r) -q.b=!0}}, -$S:0} -A.atV.prototype={ -$0(){var s,r,q,p,o,n,m=this -try{s=m.a.a.c -p=m.b -if(p.a.as0(s)&&p.a.e!=null){p.c=p.a.BT(s) -p.b=!1}}catch(o){r=A.a6(o) -q=A.aJ(o) -p=m.a.a.c -n=m.b -if(p.a===r)n.c=p -else n.c=A.a4u(r,q) -n.b=!0}}, -$S:0} -A.UN.prototype={} -A.c1.prototype={ -ew(a,b,c){return new A.fq(b,this,A.p(this).i("@").a5(c).i("fq<1,2>"))}, -hf(a,b){return this.ew(a,b,t.z)}, -BT(a){var s -if(t.hK.b(a))s=a -else if(t.lO.b(a))s=new A.amL(a) -else throw A.d(A.dW(a,"onError","Error handler must accept one Object or one Object and a StackTrace as arguments.")) -return new A.GP(s,null,this,A.p(this).i("GP"))}, -N(a,b){var s=new A.ae($.ai,t.LR),r=this.eJ(null,!0,new A.amJ(s),s.gFs()) -r.wH(new A.amK(this,b,r,s)) -return s}, -gp(a){var s={},r=new A.ae($.ai,t.wJ) -s.a=0 -this.eJ(new A.amM(s,this),!0,new A.amN(s,r),r.gFs()) -return r}, -gM(a){var s=new A.ae($.ai,A.p(this).i("ae")),r=this.eJ(null,!0,new A.amF(s),s.gFs()) -r.wH(new A.amG(this,r,s)) -return s}} -A.amL.prototype={ -$2(a,b){this.a.$1(a)}, -$S:51} -A.amJ.prototype={ -$0(){this.a.mc(null)}, -$S:0} -A.amK.prototype={ -$1(a){A.b4c(new A.amH(this.b,a),new A.amI(),A.b2R(this.c,this.d))}, -$S(){return A.p(this.a).i("~(c1.T)")}} -A.amH.prototype={ -$0(){return this.a.$1(this.b)}, -$S:0} -A.amI.prototype={ -$1(a){}, -$S:27} -A.amM.prototype={ -$1(a){++this.a.a}, -$S(){return A.p(this.b).i("~(c1.T)")}} -A.amN.prototype={ -$0(){this.b.mc(this.a.a)}, -$S:0} -A.amF.prototype={ -$0(){var s,r,q,p -try{q=A.cd() -throw A.d(q)}catch(p){s=A.a6(p) -r=A.aJ(p) -A.aEU(this.a,s,r)}}, -$S:0} -A.amG.prototype={ -$1(a){A.b2S(this.b,this.c,a)}, -$S(){return A.p(this.a).i("~(c1.T)")}} -A.Ev.prototype={ -eJ(a,b,c,d){return this.a.eJ(a,b,c,d)}, -n1(a,b,c){return this.eJ(a,null,b,c)}} -A.SX.prototype={} -A.ys.prototype={ -gNi(a){return new A.f9(this,A.p(this).i("f9<1>"))}, -gagE(){if((this.b&8)===0)return this.a -return this.a.c}, -FT(){var s,r,q=this -if((q.b&8)===0){s=q.a -return s==null?q.a=new A.lt(A.p(q).i("lt<1>")):s}r=q.a -s=r.c -return s==null?r.c=new A.lt(A.p(q).i("lt<1>")):s}, -gux(){var s=this.a -return(this.b&8)!==0?s.c:s}, -yp(){if((this.b&4)!==0)return new A.iW("Cannot add event after closing") -return new A.iW("Cannot add event while adding a stream")}, -alN(a,b,c){var s,r,q,p=this,o=p.b -if(o>=4)throw A.d(p.yp()) -if((o&2)!==0){o=new A.ae($.ai,t.LR) -o.iE(null) -return o}o=p.a -s=c===!0 -r=new A.ae($.ai,t.LR) -q=s?A.b1d(p):p.ga6s() -q=b.eJ(p.ga6R(p),s,p.ga7Y(),q) -s=p.b -if((s&1)!==0?(p.gux().e&4)!==0:(s&2)===0)q.wM(0) -p.a=new A.IL(o,r,q,A.p(p).i("IL<1>")) -p.b|=8 -return r}, -tY(){var s=this.c -if(s==null)s=this.c=(this.b&2)!==0?$.pK():new A.ae($.ai,t.c) -return s}, -E(a,b){if(this.b>=4)throw A.d(this.yp()) -this.kf(0,b)}, -nW(a,b){A.fc(a,"error",t.K) -if(this.b>=4)throw A.d(this.yp()) -if(b==null)b=A.tW(a) -this.iD(a,b)}, -km(a){return this.nW(a,null)}, -aL(a){var s=this,r=s.b -if((r&4)!==0)return s.tY() -if(r>=4)throw A.d(s.yp()) -s.P6() -return s.tY()}, -P6(){var s=this.b|=4 -if((s&1)!==0)this.lh() -else if((s&3)===0)this.FT().E(0,B.dI)}, -kf(a,b){var s=this,r=s.b -if((r&1)!==0)s.nQ(b) -else if((r&3)===0)s.FT().E(0,new A.j6(b,A.p(s).i("j6<1>")))}, -iD(a,b){var s=this.b -if((s&1)!==0)this.li(a,b) -else if((s&3)===0)this.FT().E(0,new A.tp(a,b))}, -pF(){var s=this.a -this.a=s.c -this.b&=4294967287 -s.a.iE(null)}, -HJ(a,b,c,d){var s,r,q,p,o=this -if((o.b&3)!==0)throw A.d(A.a4("Stream has already been listened to.")) -s=A.b1t(o,a,b,c,d,A.p(o).c) -r=o.gagE() -q=o.b|=1 -if((q&8)!==0){p=o.a -p.c=s -p.b.x5(0)}else o.a=s -s.aiS(r) -s.Gg(new A.axI(o)) -return s}, -Sa(a){var s,r,q,p,o,n,m,l=this,k=null -if((l.b&8)!==0)k=l.a.bb(0) -l.a=null -l.b=l.b&4294967286|2 -s=l.r -if(s!=null)if(k==null)try{r=s.$0() -if(t.uz.b(r))k=r}catch(o){q=A.a6(o) -p=A.aJ(o) -n=new A.ae($.ai,t.c) -n.yo(q,p) -k=n}else k=k.fY(s) -m=new A.axH(l) -if(k!=null)k=k.fY(m) -else m.$0() -return k}, -Sb(a){if((this.b&8)!==0)this.a.b.wM(0) -A.a3a(this.e)}, -Sc(a){if((this.b&8)!==0)this.a.b.x5(0) -A.a3a(this.f)}, -$iiX:1} -A.axI.prototype={ -$0(){A.a3a(this.a.d)}, -$S:0} -A.axH.prototype={ -$0(){var s=this.a.c -if(s!=null&&(s.a&30)===0)s.iE(null)}, -$S:0} -A.UP.prototype={ -nQ(a){this.gux().ld(new A.j6(a,this.$ti.i("j6<1>")))}, -li(a,b){this.gux().ld(new A.tp(a,b))}, -lh(){this.gux().ld(B.dI)}} -A.pa.prototype={} -A.f9.prototype={ -gA(a){return(A.fi(this.a)^892482866)>>>0}, -j(a,b){if(b==null)return!1 -if(this===b)return!0 -return b instanceof A.f9&&b.a===this.a}} -A.pd.prototype={ -ue(){return this.w.Sa(this)}, -mg(){this.w.Sb(this)}, -mh(){this.w.Sc(this)}} -A.Us.prototype={ -bb(a){var s=this.b.bb(0) -return s.fY(new A.aqw(this))}} -A.aqx.prototype={ -$2(a,b){var s=this.a -s.iD(a,b) -s.pF()}, -$S:36} -A.aqw.prototype={ -$0(){this.a.a.iE(null)}, -$S:16} -A.IL.prototype={} -A.f7.prototype={ -aiS(a){var s=this -if(a==null)return -s.r=a -if(a.c!=null){s.e=(s.e|64)>>>0 -a.xG(s)}}, -wH(a){this.a=A.arm(this.d,a)}, -wN(a,b){var s,r,q=this,p=q.e -if((p&8)!==0)return -s=(p+128|4)>>>0 -q.e=s -if(p<128){r=q.r -if(r!=null)if(r.a===1)r.a=3}if((p&4)===0&&(s&32)===0)q.Gg(q.gzo())}, -wM(a){return this.wN(a,null)}, -x5(a){var s=this,r=s.e -if((r&8)!==0)return -if(r>=128){r=s.e=r-128 -if(r<128)if((r&64)!==0&&s.r.c!=null)s.r.xG(s) -else{r=(r&4294967291)>>>0 -s.e=r -if((r&32)===0)s.Gg(s.gzq())}}}, -bb(a){var s=this,r=(s.e&4294967279)>>>0 -s.e=r -if((r&8)===0)s.F6() -r=s.f -return r==null?$.pK():r}, -F6(){var s,r=this,q=r.e=(r.e|8)>>>0 -if((q&64)!==0){s=r.r -if(s.a===1)s.a=3}if((q&32)===0)r.r=null -r.f=r.ue()}, -kf(a,b){var s=this,r=s.e -if((r&8)!==0)return -if(r<32)s.nQ(b) -else s.ld(new A.j6(b,A.p(s).i("j6")))}, -iD(a,b){var s=this.e -if((s&8)!==0)return -if(s<32)this.li(a,b) -else this.ld(new A.tp(a,b))}, -pF(){var s=this,r=s.e -if((r&8)!==0)return -r=(r|2)>>>0 -s.e=r -if(r<32)s.lh() -else s.ld(B.dI)}, -mg(){}, -mh(){}, -ue(){return null}, -ld(a){var s,r=this,q=r.r -if(q==null)q=r.r=new A.lt(A.p(r).i("lt")) -q.E(0,a) -s=r.e -if((s&64)===0){s=(s|64)>>>0 -r.e=s -if(s<128)q.xG(r)}}, -nQ(a){var s=this,r=s.e -s.e=(r|32)>>>0 -s.d.x8(s.a,a) -s.e=(s.e&4294967263)>>>0 -s.Fe((r&4)!==0)}, -li(a,b){var s,r=this,q=r.e,p=new A.aro(r,a,b) -if((q&1)!==0){r.e=(q|16)>>>0 -r.F6() -s=r.f -if(s!=null&&s!==$.pK())s.fY(p) -else p.$0()}else{p.$0() -r.Fe((q&4)!==0)}}, -lh(){var s,r=this,q=new A.arn(r) -r.F6() -r.e=(r.e|16)>>>0 -s=r.f -if(s!=null&&s!==$.pK())s.fY(q) -else q.$0()}, -Gg(a){var s=this,r=s.e -s.e=(r|32)>>>0 -a.$0() -s.e=(s.e&4294967263)>>>0 -s.Fe((r&4)!==0)}, -Fe(a){var s,r,q=this,p=q.e -if((p&64)!==0&&q.r.c==null){p=q.e=(p&4294967231)>>>0 -if((p&4)!==0)if(p<128){s=q.r -s=s==null?null:s.c==null -s=s!==!1}else s=!1 -else s=!1 -if(s){p=(p&4294967291)>>>0 -q.e=p}}for(;!0;a=r){if((p&8)!==0){q.r=null -return}r=(p&4)!==0 -if(a===r)break -q.e=(p^32)>>>0 -if(r)q.mg() -else q.mh() -p=(q.e&4294967263)>>>0 -q.e=p}if((p&64)!==0&&p<128)q.r.xG(q)}, -$iiY:1} -A.aro.prototype={ -$0(){var s,r,q=this.a,p=q.e -if((p&8)!==0&&(p&16)===0)return -q.e=(p|32)>>>0 -s=q.b -p=this.b -r=q.d -if(t.hK.b(s))r.aud(s,p,this.c) -else r.x8(s,p) -q.e=(q.e&4294967263)>>>0}, -$S:0} -A.arn.prototype={ -$0(){var s=this.a,r=s.e -if((r&16)===0)return -s.e=(r|42)>>>0 -s.d.x6(s.c) -s.e=(s.e&4294967263)>>>0}, -$S:0} -A.yt.prototype={ -eJ(a,b,c,d){return this.a.HJ(a,d,c,b===!0)}, -rg(a){return this.eJ(a,null,null,null)}, -n1(a,b,c){return this.eJ(a,null,b,c)}, -KK(a,b){return this.eJ(a,null,null,b)}} -A.Wa.prototype={ -gj8(a){return this.a}, -sj8(a,b){return this.a=b}} -A.j6.prototype={ -D4(a){a.nQ(this.b)}} -A.tp.prototype={ -D4(a){a.li(this.b,this.c)}} -A.at4.prototype={ -D4(a){a.lh()}, -gj8(a){return null}, -sj8(a,b){throw A.d(A.a4("No events after a done."))}} -A.lt.prototype={ -xG(a){var s=this,r=s.a -if(r===1)return -if(r>=1){s.a=1 -return}A.ey(new A.avN(s,a)) -s.a=1}, -E(a,b){var s=this,r=s.c -if(r==null)s.b=s.c=b -else{r.sj8(0,b) -s.c=b}}, -apN(a){var s=this.b,r=s.gj8(s) -this.b=r -if(r==null)this.c=null -s.D4(a)}} -A.avN.prototype={ -$0(){var s=this.a,r=s.a -s.a=0 -if(r===3)return -s.apN(this.b)}, -$S:0} -A.xE.prototype={ -SB(){var s=this -if((s.b&2)!==0)return -A.pA(null,null,s.a,s.gaiH()) -s.b=(s.b|2)>>>0}, -wH(a){}, -wN(a,b){this.b+=4}, -wM(a){return this.wN(a,null)}, -x5(a){var s=this.b -if(s>=4){s=this.b=s-4 -if(s<4&&(s&1)===0)this.SB()}}, -bb(a){return $.pK()}, -lh(){var s,r=this,q=r.b=(r.b&4294967293)>>>0 -if(q>=4)return -r.b=(q|1)>>>0 -s=r.c -if(s!=null)r.a.x6(s)}, -$iiY:1} -A.xt.prototype={ -eJ(a,b,c,d){var s,r,q=this,p=q.e -if(p==null||(p.c&4)!==0)return A.aEr(c,q.$ti.c) -if(q.f==null){s=p.gi2(p) -r=p.galG() -q.f=q.a.n1(s,p.gv6(p),r)}return p.HJ(a,d,c,b===!0)}, -n1(a,b,c){return this.eJ(a,null,b,c)}, -ue(){var s,r=this,q=r.e,p=q==null||(q.c&4)!==0,o=r.c -if(o!=null)r.d.x7(o,new A.tm(r,r.$ti.i("tm<1>"))) -if(p){s=r.f -if(s!=null){s.bb(0) -r.f=null}}}, -afF(){var s=this,r=s.b -if(r!=null)s.d.x7(r,new A.tm(s,s.$ti.i("tm<1>")))}} -A.tm.prototype={ -bb(a){var s=this.a,r=s.f -if(r!=null){s.e=s.f=null -r.bb(0)}return $.pK()}, -$iiY:1} -A.a09.prototype={} -A.Gy.prototype={ -eJ(a,b,c,d){return A.aEr(c,this.$ti.c)}, -n1(a,b,c){return this.eJ(a,null,b,c)}} -A.azI.prototype={ -$0(){return this.a.fg(this.b,this.c)}, -$S:0} -A.azH.prototype={ -$2(a,b){A.b2Q(this.a,this.b,a,b)}, -$S:51} -A.azJ.prototype={ -$0(){return this.a.mc(this.b)}, -$S:0} -A.j8.prototype={ -eJ(a,b,c,d){var s=A.p(this),r=$.ai,q=b===!0?1:0,p=A.arm(r,a),o=A.aEq(r,d),n=c==null?A.aFi():c -s=new A.xO(this,p,o,n,r,q,s.i("@").a5(s.i("j8.T")).i("xO<1,2>")) -s.x=this.a.n1(s.gab9(),s.gabe(),s.gabv()) -return s}, -rg(a){return this.eJ(a,null,null,null)}, -n1(a,b,c){return this.eJ(a,null,b,c)}, -QH(a,b,c){c.iD(a,b)}} -A.xO.prototype={ -kf(a,b){if((this.e&2)!==0)return -this.a40(0,b)}, -iD(a,b){if((this.e&2)!==0)return -this.a41(a,b)}, -mg(){var s=this.x -if(s!=null)s.wM(0)}, -mh(){var s=this.x -if(s!=null)s.x5(0)}, -ue(){var s=this.x -if(s!=null){this.x=null -return s.bb(0)}return null}, -aba(a){this.w.QB(a,this)}, -abw(a,b){this.w.QH(a,b,this)}, -abf(){this.pF()}} -A.fq.prototype={ -QB(a,b){var s,r,q,p=null -try{p=this.b.$1(a)}catch(q){s=A.a6(q) -r=A.aJ(q) -A.aEP(b,s,r) -return}b.kf(0,p)}} -A.GP.prototype={ -QB(a,b){b.kf(0,a)}, -QH(a,b,c){var s,r,q,p,o,n=!0,m=this.c -if(m!=null)try{n=m.$1(a)}catch(o){s=A.a6(o) -r=A.aJ(o) -A.aEP(c,s,r) -return}if(n)try{this.b.$2(a,b)}catch(o){q=A.a6(o) -p=A.aJ(o) -if(q===a)c.iD(a,b) -else A.aEP(c,q,p) -return}else c.iD(a,b)}} -A.azp.prototype={} -A.aAp.prototype={ -$0(){A.a9c(this.a,this.b)}, -$S:0} -A.awM.prototype={ -x6(a){var s,r,q -try{if(B.as===$.ai){a.$0() -return}A.aNq(null,null,this,a)}catch(q){s=A.a6(q) -r=A.aJ(q) -A.yL(s,r)}}, -aug(a,b){var s,r,q -try{if(B.as===$.ai){a.$1(b) -return}A.aNs(null,null,this,a,b)}catch(q){s=A.a6(q) -r=A.aJ(q) -A.yL(s,r)}}, -x8(a,b){return this.aug(a,b,t.z)}, -auc(a,b,c){var s,r,q -try{if(B.as===$.ai){a.$2(b,c) -return}A.aNr(null,null,this,a,b,c)}catch(q){s=A.a6(q) -r=A.aJ(q) -A.yL(s,r)}}, -aud(a,b,c){return this.auc(a,b,c,t.z,t.z)}, -amd(a,b,c,d){return new A.awN(this,a,c,d,b)}, -IH(a){return new A.awO(this,a)}, -Vk(a,b){return new A.awP(this,a,b)}, -h(a,b){return null}, -au8(a){if($.ai===B.as)return a.$0() -return A.aNq(null,null,this,a)}, -hi(a){return this.au8(a,t.z)}, -auf(a,b){if($.ai===B.as)return a.$1(b) -return A.aNs(null,null,this,a,b)}, -x7(a,b){return this.auf(a,b,t.z,t.z)}, -aub(a,b,c){if($.ai===B.as)return a.$2(b,c) -return A.aNr(null,null,this,a,b,c)}, -a_5(a,b,c){return this.aub(a,b,c,t.z,t.z,t.z)}, -atC(a){return a}, -Dg(a){return this.atC(a,t.z,t.z,t.z)}} -A.awN.prototype={ -$2(a,b){return this.a.a_5(this.b,a,b)}, -$S(){return this.e.i("@<0>").a5(this.c).a5(this.d).i("1(2,3)")}} -A.awO.prototype={ -$0(){return this.a.x6(this.b)}, -$S:0} -A.awP.prototype={ -$1(a){return this.a.x8(this.b,a)}, -$S(){return this.c.i("~(0)")}} -A.ts.prototype={ -gp(a){return this.a}, -ga8(a){return this.a===0}, -gc3(a){return this.a!==0}, -gbI(a){return new A.tt(this,A.p(this).i("tt<1>"))}, -gaR(a){var s=A.p(this) -return A.iN(new A.tt(this,s.i("tt<1>")),new A.au2(this),s.c,s.z[1])}, -ak(a,b){var s,r -if(typeof b=="string"&&b!=="__proto__"){s=this.b -return s==null?!1:s[b]!=null}else if(typeof b=="number"&&(b&1073741823)===b){r=this.c -return r==null?!1:r[b]!=null}else return this.tP(b)}, -tP(a){var s=this.d -if(s==null)return!1 -return this.hW(this.Q5(s,a),a)>=0}, -K(a,b){b.N(0,new A.au1(this))}, -h(a,b){var s,r,q -if(typeof b=="string"&&b!=="__proto__"){s=this.b -r=s==null?null:A.aEt(s,b) -return r}else if(typeof b=="number"&&(b&1073741823)===b){q=this.c -r=q==null?null:A.aEt(q,b) -return r}else return this.aaa(0,b)}, -aaa(a,b){var s,r,q=this.d -if(q==null)return null -s=this.Q5(q,b) -r=this.hW(s,b) -return r<0?null:s[r+1]}, -m(a,b,c){var s,r,q=this -if(typeof b=="string"&&b!=="__proto__"){s=q.b -q.P7(s==null?q.b=A.aEu():s,b,c)}else if(typeof b=="number"&&(b&1073741823)===b){r=q.c -q.P7(r==null?q.c=A.aEu():r,b,c)}else q.aiK(b,c)}, -aiK(a,b){var s,r,q,p=this,o=p.d -if(o==null)o=p.d=A.aEu() -s=p.iI(a) -r=o[s] -if(r==null){A.aEv(o,s,[a,b]);++p.a -p.e=null}else{q=p.hW(r,a) -if(q>=0)r[q+1]=b -else{r.push(a,b);++p.a -p.e=null}}}, -bT(a,b,c){var s,r,q=this -if(q.ak(0,b)){s=q.h(0,b) -return s==null?A.p(q).z[1].a(s):s}r=c.$0() -q.m(0,b,r) -return r}, -F(a,b){var s=this -if(typeof b=="string"&&b!=="__proto__")return s.mb(s.b,b) -else if(typeof b=="number"&&(b&1073741823)===b)return s.mb(s.c,b) -else return s.mk(0,b)}, -mk(a,b){var s,r,q,p,o=this,n=o.d -if(n==null)return null -s=o.iI(b) -r=n[s] -q=o.hW(r,b) -if(q<0)return null;--o.a -o.e=null -p=r.splice(q,2)[1] -if(0===r.length)delete n[s] -return p}, -N(a,b){var s,r,q,p,o,n=this,m=n.Fv() -for(s=m.length,r=A.p(n).z[1],q=0;q"))}, -t(a,b){return this.a.ak(0,b)}} -A.xT.prototype={ -gJ(a){var s=this.d -return s==null?this.$ti.c.a(s):s}, -u(){var s=this,r=s.b,q=s.c,p=s.a -if(r!==p.e)throw A.d(A.c4(p)) -else if(q>=r.length){s.d=null -return!1}else{s.d=r[q] -s.c=q+1 -return!0}}} -A.Hb.prototype={ -h(a,b){if(!this.y.$1(b))return null -return this.a2g(b)}, -m(a,b,c){this.a2i(b,c)}, -ak(a,b){if(!this.y.$1(b))return!1 -return this.a2f(b)}, -F(a,b){if(!this.y.$1(b))return null -return this.a2h(b)}, -oB(a){return this.x.$1(a)&1073741823}, -oC(a,b){var s,r,q -if(a==null)return-1 -s=a.length -for(r=this.w,q=0;q"))}, -ud(a){return new A.ls(a.i("ls<0>"))}, -H2(){return this.ud(t.z)}, -ga9(a){return new A.ja(this,this.tN(),A.p(this).i("ja<1>"))}, -gp(a){return this.a}, -ga8(a){return this.a===0}, -gc3(a){return this.a!==0}, -t(a,b){var s,r -if(typeof b=="string"&&b!=="__proto__"){s=this.b -return s==null?!1:s[b]!=null}else if(typeof b=="number"&&(b&1073741823)===b){r=this.c -return r==null?!1:r[b]!=null}else return this.Fy(b)}, -Fy(a){var s=this.d -if(s==null)return!1 -return this.hW(s[this.iI(a)],a)>=0}, -E(a,b){var s,r,q=this -if(typeof b=="string"&&b!=="__proto__"){s=q.b -return q.tK(s==null?q.b=A.aEw():s,b)}else if(typeof b=="number"&&(b&1073741823)===b){r=q.c -return q.tK(r==null?q.c=A.aEw():r,b)}else return q.fC(0,b)}, -fC(a,b){var s,r,q=this,p=q.d -if(p==null)p=q.d=A.aEw() -s=q.iI(b) -r=p[s] -if(r==null)p[s]=[b] -else{if(q.hW(r,b)>=0)return!1 -r.push(b)}++q.a -q.e=null -return!0}, -K(a,b){var s -for(s=J.as(b);s.u();)this.E(0,s.gJ(s))}, -F(a,b){var s=this -if(typeof b=="string"&&b!=="__proto__")return s.mb(s.b,b) -else if(typeof b=="number"&&(b&1073741823)===b)return s.mb(s.c,b) -else return s.mk(0,b)}, -mk(a,b){var s,r,q,p=this,o=p.d -if(o==null)return!1 -s=p.iI(b) -r=o[s] -q=p.hW(r,b) -if(q<0)return!1;--p.a -p.e=null -r.splice(q,1) -if(0===r.length)delete o[s] -return!0}, -a0(a){var s=this -if(s.a>0){s.b=s.c=s.d=s.e=null -s.a=0}}, -tN(){var s,r,q,p,o,n,m,l,k,j,i=this,h=i.e -if(h!=null)return h -h=A.aT(i.a,null,!1,t.z) -s=i.b -if(s!=null){r=Object.getOwnPropertyNames(s) -q=r.length -for(p=0,o=0;o=r.length){s.d=null -return!1}else{s.d=r[q] -s.c=q+1 -return!0}}} -A.hZ.prototype={ -pW(){return new A.hZ(A.p(this).i("hZ<1>"))}, -ud(a){return new A.hZ(a.i("hZ<0>"))}, -H2(){return this.ud(t.z)}, -ga9(a){var s=this,r=new A.jb(s,s.r,A.p(s).i("jb<1>")) -r.c=s.e -return r}, -gp(a){return this.a}, -ga8(a){return this.a===0}, -gc3(a){return this.a!==0}, -t(a,b){var s,r -if(typeof b=="string"&&b!=="__proto__"){s=this.b -if(s==null)return!1 -return s[b]!=null}else if(typeof b=="number"&&(b&1073741823)===b){r=this.c -if(r==null)return!1 -return r[b]!=null}else return this.Fy(b)}, -Fy(a){var s=this.d -if(s==null)return!1 -return this.hW(s[this.iI(a)],a)>=0}, -N(a,b){var s=this,r=s.e,q=s.r -for(;r!=null;){b.$1(r.a) -if(q!==s.r)throw A.d(A.c4(s)) -r=r.b}}, -gM(a){var s=this.e -if(s==null)throw A.d(A.a4("No elements")) -return s.a}, -gL(a){var s=this.f -if(s==null)throw A.d(A.a4("No elements")) -return s.a}, -E(a,b){var s,r,q=this -if(typeof b=="string"&&b!=="__proto__"){s=q.b -return q.tK(s==null?q.b=A.aEy():s,b)}else if(typeof b=="number"&&(b&1073741823)===b){r=q.c -return q.tK(r==null?q.c=A.aEy():r,b)}else return q.fC(0,b)}, -fC(a,b){var s,r,q=this,p=q.d -if(p==null)p=q.d=A.aEy() -s=q.iI(b) -r=p[s] -if(r==null)p[s]=[q.Fm(b)] -else{if(q.hW(r,b)>=0)return!1 -r.push(q.Fm(b))}return!0}, -F(a,b){var s=this -if(typeof b=="string"&&b!=="__proto__")return s.mb(s.b,b) -else if(typeof b=="number"&&(b&1073741823)===b)return s.mb(s.c,b) -else return s.mk(0,b)}, -mk(a,b){var s,r,q,p,o=this,n=o.d -if(n==null)return!1 -s=o.iI(b) -r=n[s] -q=o.hW(r,b) -if(q<0)return!1 -p=r.splice(q,1)[0] -if(0===r.length)delete n[s] -o.P8(p) -return!0}, -PW(a,b){var s,r,q,p,o=this,n=o.e -for(;n!=null;n=r){s=n.a -r=n.b -q=o.r -p=a.$1(s) -if(q!==o.r)throw A.d(A.c4(o)) -if(!0===p)o.F(0,s)}}, -a0(a){var s=this -if(s.a>0){s.b=s.c=s.d=s.e=s.f=null -s.a=0 -s.Fl()}}, -tK(a,b){if(a[b]!=null)return!1 -a[b]=this.Fm(b) -return!0}, -mb(a,b){var s -if(a==null)return!1 -s=a[b] -if(s==null)return!1 -this.P8(s) -delete a[b] -return!0}, -Fl(){this.r=this.r+1&1073741823}, -Fm(a){var s,r=this,q=new A.auS(a) -if(r.e==null)r.e=r.f=q -else{s=r.f -s.toString -q.c=s -r.f=s.b=q}++r.a -r.Fl() -return q}, -P8(a){var s=this,r=a.c,q=a.b -if(r==null)s.e=q -else r.b=q -if(q==null)s.f=r -else q.c=r;--s.a -s.Fl()}, -iI(a){return J.C(a)&1073741823}, -hW(a,b){var s,r -if(a==null)return-1 -s=a.length -for(r=0;r"))}, -gp(a){return this.b}, -gM(a){var s -if(this.b===0)throw A.d(A.a4("No such element")) -s=this.c -s.toString -return s}, -gL(a){var s -if(this.b===0)throw A.d(A.a4("No such element")) -s=this.c.j3$ -s.toString -return s}, -ga8(a){return this.b===0}, -GB(a,b,c){var s,r,q=this -if(b.j1$!=null)throw A.d(A.a4("LinkedListEntry is already in a LinkedList"));++q.a -b.j1$=q -s=q.b -if(s===0){b.j2$=b -q.c=b.j3$=b -q.b=s+1 -return}r=a.j3$ -r.toString -b.j3$=r -b.j2$=a -a.j3$=r.j2$=b -if(c&&a==q.c)q.c=b -q.b=s+1}, -TU(a){var s,r,q=this;++q.a -s=a.j2$ -s.j3$=a.j3$ -a.j3$.j2$=s -r=--q.b -a.j1$=a.j2$=a.j3$=null -if(r===0)q.c=null -else if(a===q.c)q.c=s}} -A.y2.prototype={ -gJ(a){var s=this.c -return s==null?this.$ti.c.a(s):s}, -u(){var s=this,r=s.a -if(s.b!==r.a)throw A.d(A.c4(s)) -if(r.b!==0)r=s.e&&s.d===r.gM(r) -else r=!0 -if(r){s.c=null -return!1}s.e=!0 -r=s.d -s.c=r -s.d=r.j2$ -return!0}} -A.ie.prototype={ -gj8(a){var s=this.j1$ -if(s==null||s.gM(s)===this.j2$)return null -return this.j2$}, -gZb(){var s=this.j1$ -if(s==null||this===s.gM(s))return null -return this.j3$}} -A.a_.prototype={ -ga9(a){return new A.bz(a,this.gp(a),A.by(a).i("bz"))}, -bp(a,b){return this.h(a,b)}, -N(a,b){var s,r=this.gp(a) -for(s=0;s"))}, -ew(a,b,c){return new A.a1(a,b,A.by(a).i("@").a5(c).i("a1<1,2>"))}, -hf(a,b){return this.ew(a,b,t.z)}, -iy(a,b){return A.er(a,b,null,A.by(a).i("a_.E"))}, -kY(a,b){return A.er(a,0,A.fc(b,"count",t.S),A.by(a).i("a_.E"))}, -fs(a,b){var s,r,q,p,o=this -if(o.ga8(a)){s=A.by(a).i("a_.E") -return b?J.Bk(0,s):J.OC(0,s)}r=o.h(a,0) -q=A.aT(o.gp(a),r,b,A.by(a).i("a_.E")) -for(p=1;p").a5(b).i("dI<1,2>"))}, -dT(a){var s,r=this -if(r.gp(a)===0)throw A.d(A.cd()) -s=r.h(a,r.gp(a)-1) -r.sp(a,r.gp(a)-1) -return s}, -dX(a,b){A.aKT(a,b==null?A.b4R():b)}, -Vc(a){return new A.r0(a,A.by(a).i("r0"))}, -Y(a,b){var s=A.a8(a,!0,A.by(a).i("a_.E")) -B.b.K(s,b) -return s}, -bX(a,b,c){var s=this.gp(a) -if(c==null)c=s -A.co(b,c,s,null,null) -return A.cZ(this.xz(a,b,c),!0,A.by(a).i("a_.E"))}, -em(a,b){return this.bX(a,b,null)}, -xz(a,b,c){A.co(b,c,this.gp(a),null,null) -return A.er(a,b,c,A.by(a).i("a_.E"))}, -eL(a,b,c){A.co(b,c,this.gp(a),null,null) -if(c>b)this.Fk(a,b,c)}, -aoZ(a,b,c,d){var s -A.co(b,c,this.gp(a),null,null) -for(s=b;s").b(d)){r=e -q=d}else{p=J.KC(d,e) -q=p.fs(p,!1) -r=0}p=J.X(q) -if(r+s>p.gp(q))throw A.d(A.aJ2()) -if(r=0;--o)this.m(a,b+o,p.h(q,r+o)) -else for(o=0;o0?p:0)) -if(s.gp(c)!==r){n.sp(a,n.gp(a)-r) -throw A.d(A.c4(c))}o=b+r -if(o"))}, -k(a){return A.vi(a,"[","]")}, -$ia7:1, -$iq:1, -$iB:1} -A.aK.prototype={ -hz(a,b,c){var s=A.by(a) -return A.aDz(a,s.i("aK.K"),s.i("aK.V"),b,c)}, -N(a,b){var s,r,q,p -for(s=J.as(this.gbI(a)),r=A.by(a).i("aK.V");s.u();){q=s.gJ(s) -p=this.h(a,q) -b.$2(q,p==null?r.a(p):p)}}, -bT(a,b,c){var s -if(this.ak(a,b)){s=this.h(a,b) -return s==null?A.by(a).i("aK.V").a(s):s}s=c.$0() -this.m(a,b,s) -return s}, -auL(a,b,c,d){var s,r=this -if(r.ak(a,b)){s=r.h(a,b) -s=c.$1(s==null?A.by(a).i("aK.V").a(s):s) -r.m(a,b,s) -return s}if(d!=null){s=d.$0() -r.m(a,b,s) -return s}throw A.d(A.dW(b,"key","Key not in map."))}, -ft(a,b,c){return this.auL(a,b,c,null)}, -a_k(a,b){var s,r,q,p -for(s=J.as(this.gbI(a)),r=A.by(a).i("aK.V");s.u();){q=s.gJ(s) -p=this.h(a,q) -this.m(a,q,b.$2(q,p==null?r.a(p):p))}}, -gfl(a){return J.ei(this.gbI(a),new A.afi(a),A.by(a).i("aY"))}, -j7(a,b,c,d){var s,r,q,p,o,n=A.m(c,d) -for(s=J.as(this.gbI(a)),r=A.by(a).i("aK.V");s.u();){q=s.gJ(s) -p=this.h(a,q) -o=b.$2(q,p==null?r.a(p):p) -n.m(0,o.a,o.b)}return n}, -hf(a,b){return this.j7(a,b,t.z,t.z)}, -UR(a,b){var s,r -for(s=b.ga9(b);s.u();){r=s.gJ(s) -this.m(a,r.a,r.b)}}, -x_(a,b){var s,r,q,p,o=A.by(a),n=A.b([],o.i("w")) -for(s=J.as(this.gbI(a)),o=o.i("aK.V");s.u();){r=s.gJ(s) -q=this.h(a,r) -if(b.$2(r,q==null?o.a(q):q))n.push(r)}for(o=n.length,p=0;p").a5(s.i("aK.V")).i("He<1,2>"))}, -k(a){return A.Pb(a)}, -$iaz:1} -A.afi.prototype={ -$1(a){var s=this.a,r=J.aN(s,a) -if(r==null)r=A.by(s).i("aK.V").a(r) -s=A.by(s) -return new A.aY(a,r,s.i("@").a5(s.i("aK.V")).i("aY<1,2>"))}, -$S(){return A.by(this.a).i("aY(aK.K)")}} -A.afj.prototype={ -$2(a,b){var s,r=this.a -if(!r.a)this.b.a+=", " -r.a=!1 -r=this.b -s=r.a+=A.j(a) -r.a=s+": " -r.a+=A.j(b)}, -$S:86} -A.xh.prototype={} -A.He.prototype={ -gp(a){return J.b4(this.a)}, -ga8(a){return J.iD(this.a)}, -gc3(a){return J.kf(this.a)}, -gM(a){var s=this.a,r=J.bh(s) -s=r.h(s,J.nh(r.gbI(s))) -return s==null?this.$ti.z[1].a(s):s}, -gL(a){var s=this.a,r=J.bh(s) -s=r.h(s,J.lH(r.gbI(s))) -return s==null?this.$ti.z[1].a(s):s}, -ga9(a){var s=this.a,r=this.$ti -return new A.Y2(J.as(J.a3L(s)),s,r.i("@<1>").a5(r.z[1]).i("Y2<1,2>"))}} -A.Y2.prototype={ -u(){var s=this,r=s.a -if(r.u()){s.c=J.aN(s.b,r.gJ(r)) -return!0}s.c=null -return!1}, -gJ(a){var s=this.c -return s==null?this.$ti.z[1].a(s):s}} -A.Jc.prototype={ -m(a,b,c){throw A.d(A.V("Cannot modify unmodifiable map"))}, -F(a,b){throw A.d(A.V("Cannot modify unmodifiable map"))}, -bT(a,b,c){throw A.d(A.V("Cannot modify unmodifiable map"))}} -A.BQ.prototype={ -hz(a,b,c){var s=this.a -return s.hz(s,b,c)}, -h(a,b){return this.a.h(0,b)}, -m(a,b,c){this.a.m(0,b,c)}, -bT(a,b,c){return this.a.bT(0,b,c)}, -ak(a,b){return this.a.ak(0,b)}, -N(a,b){this.a.N(0,b)}, -ga8(a){var s=this.a -return s.ga8(s)}, -gc3(a){var s=this.a -return s.gc3(s)}, -gp(a){var s=this.a -return s.gp(s)}, -gbI(a){var s=this.a -return s.gbI(s)}, -F(a,b){return this.a.F(0,b)}, -k(a){var s=this.a -return s.k(s)}, -gaR(a){var s=this.a -return s.gaR(s)}, -gfl(a){var s=this.a -return s.gfl(s)}, -j7(a,b,c,d){var s=this.a -return s.j7(s,b,c,d)}, -hf(a,b){return this.j7(a,b,t.z,t.z)}, -$iaz:1} -A.mQ.prototype={ -hz(a,b,c){var s=this.a -return new A.mQ(s.hz(s,b,c),b.i("@<0>").a5(c).i("mQ<1,2>"))}} -A.Gj.prototype={ -aet(a,b){var s=this -s.b=b -s.a=a -if(a!=null)a.b=s -if(b!=null)b.a=s}, -ako(){var s,r=this,q=r.a -if(q!=null)q.b=r.b -s=r.b -if(s!=null)s.a=q -r.a=r.b=null}} -A.Gi.prototype={ -Sg(a){var s,r,q=this -q.c=null -s=q.a -if(s!=null)s.b=q.b -r=q.b -if(r!=null)r.a=s -q.a=q.b=null -return q.d}, -ez(a){var s=this,r=s.c -if(r!=null)--r.b -s.c=null -s.ako() -return s.d}, -yn(){return this}, -$iaIn:1, -gBr(){return this.d}} -A.Gk.prototype={ -yn(){return null}, -Sg(a){throw A.d(A.cd())}, -gBr(){throw A.d(A.cd())}} -A.Ao.prototype={ -iS(a,b){return new A.lO(this,this.$ti.i("@<1>").a5(b).i("lO<1,2>"))}, -gp(a){return this.b}, -As(a){var s=this.a -new A.Gi(this,a,s.$ti.i("Gi<1>")).aet(s,s.b);++this.b}, -dT(a){var s=this.a.a.Sg(0);--this.b -return s}, -gM(a){return this.a.b.gBr()}, -gL(a){return this.a.a.gBr()}, -ga8(a){var s=this.a -return s.b===s}, -ga9(a){return new A.Wr(this,this.a.b,this.$ti.i("Wr<1>"))}, -k(a){return A.vi(this,"{","}")}, -$ia7:1} -A.Wr.prototype={ -u(){var s=this,r=s.b,q=r==null?null:r.yn() -if(q==null){s.a=s.b=s.c=null -return!1}r=s.a -if(r!=q.c)throw A.d(A.c4(r)) -s.c=q.d -s.b=q.b -return!0}, -gJ(a){var s=this.c -return s==null?this.$ti.c.a(s):s}} -A.BD.prototype={ -iS(a,b){return new A.lO(this,this.$ti.i("@<1>").a5(b).i("lO<1,2>"))}, -ga9(a){var s=this -return new A.XV(s,s.c,s.d,s.b,s.$ti.i("XV<1>"))}, -ga8(a){return this.b===this.c}, -gp(a){return(this.c-this.b&this.a.length-1)>>>0}, -gM(a){var s=this,r=s.b -if(r===s.c)throw A.d(A.cd()) -r=s.a[r] -return r==null?s.$ti.c.a(r):r}, -gL(a){var s=this,r=s.b,q=s.c -if(r===q)throw A.d(A.cd()) -r=s.a -r=r[(q-1&r.length-1)>>>0] -return r==null?s.$ti.c.a(r):r}, -bp(a,b){var s,r=this -A.adF(b,r.gp(r),r,null) -s=r.a -s=s[(r.b+b&s.length-1)>>>0] -return s==null?r.$ti.c.a(s):s}, -fs(a,b){var s,r,q,p,o,n,m=this,l=m.a.length-1,k=(m.c-m.b&l)>>>0 -if(k===0){s=J.OC(0,m.$ti.c) -return s}s=m.$ti.c -r=A.aT(k,m.gM(m),!1,s) -for(q=m.a,p=m.b,o=0;o>>0] -r[o]=n==null?s.a(n):n}return r}, -K(a,b){var s,r,q,p,o,n,m,l,k=this,j=k.$ti -if(j.i("B<1>").b(b)){s=b.length -r=k.gp(k) -q=r+s -p=k.a -o=p.length -if(q>=o){n=A.aT(A.aJd(q+(q>>>1)),null,!1,j.i("1?")) -k.c=k.alp(n) -k.a=n -k.b=0 -B.b.bx(n,r,q,b,0) -k.c+=s}else{j=k.c -m=o-j -if(s>>0)s[p]=null -q.b=q.c=0;++q.d}}, -k(a){return A.vi(this,"{","}")}, -As(a){var s=this,r=s.b,q=s.a -r=s.b=(r-1&q.length-1)>>>0 -q[r]=a -if(r===s.c)s.Qx();++s.d}, -wZ(){var s,r,q=this,p=q.b -if(p===q.c)throw A.d(A.cd());++q.d -s=q.a -r=s[p] -if(r==null)r=q.$ti.c.a(r) -s[p]=null -q.b=(p+1&s.length-1)>>>0 -return r}, -dT(a){var s,r=this,q=r.b,p=r.c -if(q===p)throw A.d(A.cd());++r.d -q=r.a -p=r.c=(p-1&q.length-1)>>>0 -s=q[p] -if(s==null)s=r.$ti.c.a(s) -q[p]=null -return s}, -fC(a,b){var s=this,r=s.a,q=s.c -r[q]=b -r=(q+1&r.length-1)>>>0 -s.c=r -if(s.b===r)s.Qx();++s.d}, -Qx(){var s=this,r=A.aT(s.a.length*2,null,!1,s.$ti.i("1?")),q=s.a,p=s.b,o=q.length-p -B.b.bx(r,0,o,q,p) -B.b.bx(r,o,o+s.b,s.a,0) -s.b=0 -s.c=s.a.length -s.a=r}, -alp(a){var s,r,q=this,p=q.b,o=q.c,n=q.a -if(p<=o){s=o-p -B.b.bx(a,0,s,n,p) -return s}else{r=n.length-p -B.b.bx(a,0,r,n,p) -B.b.bx(a,r,r+q.c,q.a,0) -return q.c+r}}} -A.XV.prototype={ -gJ(a){var s=this.e -return s==null?this.$ti.c.a(s):s}, -u(){var s,r=this,q=r.a -if(r.c!==q.d)A.U(A.c4(q)) -s=r.d -if(s===r.b){r.e=null -return!1}q=q.a -r.e=q[s] -r.d=(s+1&q.length-1)>>>0 -return!0}} -A.iV.prototype={ -ga8(a){return this.gp(this)===0}, -gc3(a){return this.gp(this)!==0}, -iS(a,b){return A.alu(this,null,A.p(this).c,b)}, -K(a,b){var s -for(s=J.as(b);s.u();)this.E(0,s.gJ(s))}, -ZD(a){var s,r -for(s=a.length,r=0;r").a5(c).i("qm<1,2>"))}, -hf(a,b){return this.ew(a,b,t.z)}, -gbD(a){var s,r=this -if(r.gp(r)>1)throw A.d(A.ae4()) -s=r.ga9(r) -if(!s.u())throw A.d(A.cd()) -return s.gJ(s)}, -k(a){return A.vi(this,"{","}")}, -N(a,b){var s -for(s=this.ga9(this);s.u();)b.$1(s.gJ(s))}, -dN(a,b){var s -for(s=this.ga9(this);s.u();)if(b.$1(s.gJ(s)))return!0 -return!1}, -kY(a,b){return A.aEe(this,b,A.p(this).c)}, -iy(a,b){return A.aE8(this,b,A.p(this).c)}, -gM(a){var s=this.ga9(this) -if(!s.u())throw A.d(A.cd()) -return s.gJ(s)}, -gL(a){var s,r=this.ga9(this) -if(!r.u())throw A.d(A.cd()) -do s=r.gJ(r) -while(r.u()) -return s}, -bp(a,b){var s,r -A.e_(b,"index") -s=this.ga9(this) -for(r=b;s.u();){if(r===0)return s.gJ(s);--r}throw A.d(A.dv(b,b-r,this,null,"index"))}, -$ia7:1, -$iq:1, -$ica:1} -A.yq.prototype={ -iS(a,b){return A.alu(this,this.gH1(),A.p(this).c,b)}, -oh(a){var s,r,q=this.pW() -for(s=this.ga9(this);s.u();){r=s.gJ(s) -if(!a.t(0,r))q.E(0,r)}return q}, -wb(a,b){var s,r,q=this.pW() -for(s=this.ga9(this);s.u();){r=s.gJ(s) -if(b.t(0,r))q.E(0,r)}return q}, -it(a){var s=this.pW() -s.K(0,this) -return s}} -A.a05.prototype={} -A.ht.prototype={} -A.fS.prototype={ -ahI(a){var s=this,r=s.$ti -r=new A.fS(a,s.a,r.i("@<1>").a5(r.z[1]).i("fS<1,2>")) -r.b=s.b -r.c=s.c -return r}} -A.a04.prototype={ -ju(a){var s,r,q,p,o,n,m,l,k,j,i,h=this,g=null,f=h.geo() -if(f==null){h.Fp(a,a) -return-1}s=h.gFo() -for(r=g,q=f,p=r,o=p,n=o,m=n;!0;){r=s.$2(q.a,a) -if(r>0){l=q.b -if(l==null)break -r=s.$2(l.a,a) -if(r>0){q.b=l.c -l.c=q -k=l.b -if(k==null){q=l -break}q=l -l=k}if(m==null)n=q -else m.b=q -m=q -q=l}else{if(r<0){j=q.c -if(j==null)break -r=s.$2(j.a,a) -if(r<0){q.c=j.b -j.b=q -i=j.c -if(i==null){q=j -break}q=j -j=i}if(o==null)p=q -else o.c=q}else break -o=q -q=j}}if(o!=null){o.c=q.b -q.b=p}if(m!=null){m.b=q.c -q.c=n}if(h.geo()!==q){h.seo(q);++h.c}return r}, -aji(a){var s,r,q=a.b -for(s=a;q!=null;s=q,q=r){s.b=q.c -q.c=s -r=q.b}return s}, -Th(a){var s,r,q=a.c -for(s=a;q!=null;s=q,q=r){s.c=q.b -q.b=s -r=q.c}return s}, -mk(a,b){var s,r,q,p,o=this -if(o.geo()==null)return null -if(o.ju(b)!==0)return null -s=o.geo() -r=s.b;--o.a -q=s.c -if(r==null)o.seo(q) -else{p=o.Th(r) -p.c=q -o.seo(p)}++o.b -return s}, -ET(a,b){var s,r=this;++r.a;++r.b -s=r.geo() -if(s==null){r.seo(a) -return}if(b<0){a.b=s -a.c=s.c -s.c=null}else{a.c=s -a.b=s.b -s.b=null}r.seo(a)}, -gPZ(){var s=this,r=s.geo() -if(r==null)return null -s.seo(s.aji(r)) -return s.geo()}, -gRk(){var s=this,r=s.geo() -if(r==null)return null -s.seo(s.Th(r)) -return s.geo()}, -tP(a){return this.Ib(a)&&this.ju(a)===0}, -Fp(a,b){return this.gFo().$2(a,b)}, -Ib(a){return this.gavm().$1(a)}} -A.Em.prototype={ -h(a,b){var s=this -if(!s.f.$1(b))return null -if(s.d!=null)if(s.ju(b)===0)return s.d.d -return null}, -F(a,b){var s -if(!this.f.$1(b))return null -s=this.mk(0,b) -if(s!=null)return s.d -return null}, -m(a,b,c){var s,r=this,q=r.ju(b) -if(q===0){r.d=r.d.ahI(c);++r.c -return}s=r.$ti -r.ET(new A.fS(c,b,s.i("@<1>").a5(s.z[1]).i("fS<1,2>")),q)}, -bT(a,b,c){var s,r,q,p,o=this,n=o.ju(b) -if(n===0)return o.d.d -s=o.b -r=o.c -q=c.$0() -if(s!==o.b)throw A.d(A.c4(o)) -if(r!==o.c)n=o.ju(b) -p=o.$ti -o.ET(new A.fS(q,b,p.i("@<1>").a5(p.z[1]).i("fS<1,2>")),n) -return q}, -ga8(a){return this.d==null}, -gc3(a){return this.d!=null}, -N(a,b){var s,r,q=this.$ti -q=q.i("@<1>").a5(q.z[1]) -s=new A.tD(this,A.b([],q.i("w>")),this.c,q.i("tD<1,2>")) -for(;s.u();){r=s.gJ(s) -b.$2(r.a,r.b)}}, -gp(a){return this.a}, -ak(a,b){return this.tP(b)}, -gbI(a){var s=this.$ti -return new A.n0(this,s.i("@<1>").a5(s.i("fS<1,2>")).i("n0<1,2>"))}, -gaR(a){var s=this.$ti -return new A.tE(this,s.i("@<1>").a5(s.z[1]).i("tE<1,2>"))}, -gfl(a){var s=this.$ti -return new A.IC(this,s.i("@<1>").a5(s.z[1]).i("IC<1,2>"))}, -ap7(){if(this.d==null)return null -return this.gPZ().a}, -Yt(){if(this.d==null)return null -return this.gRk().a}, -arw(a){var s,r,q,p=this -if(p.d==null)return null -if(p.ju(a)<0)return p.d.a -s=p.d.b -if(s==null)return null -r=s.c -for(;r!=null;s=r,r=q)q=r.c -return s.a}, -ap8(a){var s,r,q,p=this -if(p.d==null)return null -if(p.ju(a)>0)return p.d.a -s=p.d.c -if(s==null)return null -r=s.b -for(;r!=null;s=r,r=q)q=r.b -return s.a}, -$iaz:1, -Fp(a,b){return this.e.$2(a,b)}, -Ib(a){return this.f.$1(a)}, -geo(){return this.d}, -gFo(){return this.e}, -seo(a){return this.d=a}} -A.amm.prototype={ -$1(a){return this.a.b(a)}, -$S:59} -A.lw.prototype={ -gJ(a){var s=this.b -if(s.length===0){A.p(this).i("lw.T").a(null) -return null}return this.Ge(B.b.gL(s))}, -ahk(a){var s,r,q=this.b -B.b.a0(q) -s=this.a -s.ju(a) -r=s.geo() -r.toString -q.push(r) -this.d=s.c}, -u(){var s,r,q=this,p=q.c,o=q.a,n=o.b -if(p!==n){if(p==null){q.c=n -s=o.geo() -for(p=q.b;s!=null;){p.push(s) -s=s.b}return p.length!==0}throw A.d(A.c4(o))}p=q.b -if(p.length===0)return!1 -if(q.d!==o.c)q.ahk(B.b.gL(p).a) -s=B.b.gL(p) -r=s.c -if(r!=null){for(;r!=null;){p.push(r) -r=r.b}return!0}p.pop() -while(!0){if(!(p.length!==0&&B.b.gL(p).c===s))break -s=p.pop()}return p.length!==0}} -A.n0.prototype={ -gp(a){return this.a.a}, -ga8(a){return this.a.a===0}, -ga9(a){var s=this.a,r=this.$ti -return new A.n1(s,A.b([],r.i("w<2>")),s.c,r.i("@<1>").a5(r.z[1]).i("n1<1,2>"))}, -t(a,b){return this.a.tP(b)}, -it(a){var s=this.a,r=this.$ti,q=A.amn(s.e,s.f,r.c) -q.a=s.a -q.d=q.Pn(s.d,r.z[1]) -return q}} -A.tE.prototype={ -gp(a){return this.a.a}, -ga8(a){return this.a.a===0}, -ga9(a){var s=this.a,r=this.$ti -r=r.i("@<1>").a5(r.z[1]) -return new A.IG(s,A.b([],r.i("w>")),s.c,r.i("IG<1,2>"))}} -A.IC.prototype={ -gp(a){return this.a.a}, -ga8(a){return this.a.a===0}, -ga9(a){var s=this.a,r=this.$ti -r=r.i("@<1>").a5(r.z[1]) -return new A.tD(s,A.b([],r.i("w>")),s.c,r.i("tD<1,2>"))}} -A.n1.prototype={ -Ge(a){return a.a}} -A.IG.prototype={ -Ge(a){return a.d}} -A.tD.prototype={ -Ge(a){var s=this.$ti -return new A.aY(a.a,a.d,s.i("@<1>").a5(s.z[1]).i("aY<1,2>"))}} -A.wK.prototype={ -RF(a){return A.amn(new A.amp(this,a),this.f,a)}, -pW(){return this.RF(t.z)}, -iS(a,b){return A.alu(this,this.gafb(),this.$ti.c,b)}, -ga9(a){var s=this.$ti -return new A.n1(this,A.b([],s.i("w>")),this.c,s.i("@<1>").a5(s.i("ht<1>")).i("n1<1,2>"))}, -gp(a){return this.a}, -ga8(a){return this.d==null}, -gc3(a){return this.d!=null}, -gM(a){if(this.a===0)throw A.d(A.cd()) -return this.gPZ().a}, -gL(a){if(this.a===0)throw A.d(A.cd()) -return this.gRk().a}, -t(a,b){return this.f.$1(b)&&this.ju(this.$ti.c.a(b))===0}, -E(a,b){return this.fC(0,b)}, -fC(a,b){var s=this.ju(b) -if(s===0)return!1 -this.ET(new A.ht(b,this.$ti.i("ht<1>")),s) -return!0}, -F(a,b){if(!this.f.$1(b))return!1 -return this.mk(0,this.$ti.c.a(b))!=null}, -K(a,b){var s -for(s=J.as(b);s.u();)this.fC(0,s.gJ(s))}, -wb(a,b){var s,r=this,q=r.$ti,p=A.amn(r.e,r.f,q.c) -for(q=new A.n1(r,A.b([],q.i("w>")),r.c,q.i("@<1>").a5(q.i("ht<1>")).i("n1<1,2>"));q.u();){s=q.gJ(q) -if(b.t(0,s))p.fC(0,s)}return p}, -a81(){var s=this,r=s.$ti,q=A.amn(s.e,s.f,r.c) -q.a=s.a -q.d=s.Pn(s.d,r.i("ht<1>")) -return q}, -Pn(a,b){var s -if(a==null)return null -s=new A.ht(a.a,this.$ti.i("ht<1>")) -new A.amo(this,b).$2(a,s) -return s}, -it(a){return this.a81()}, -k(a){return A.vi(this,"{","}")}, -$ia7:1, -$ica:1, -Fp(a,b){return this.e.$2(a,b)}, -Ib(a){return this.f.$1(a)}, -geo(){return this.d}, -gFo(){return this.e}, -seo(a){return this.d=a}} -A.amq.prototype={ -$1(a){return this.a.b(a)}, -$S:59} -A.amp.prototype={ -$2(a,b){var s=this.a,r=s.$ti.c -r.a(a) -r.a(b) -return s.e.$2(a,b)}, -$S(){return this.b.i("o(0,0)")}} -A.amo.prototype={ -$2(a,b){var s,r,q,p,o,n=this.a.$ti.i("ht<1>") -do{s=a.b -r=a.c -if(s!=null){q=new A.ht(s.a,n) -b.b=q -this.$2(s,q)}p=r!=null -if(p){o=new A.ht(r.a,n) -b.c=o -b=o -a=r}}while(p)}, -$S(){return this.a.$ti.a5(this.b).i("~(1,ht<2>)")}} -A.ID.prototype={} -A.IE.prototype={} -A.IF.prototype={} -A.Jd.prototype={} -A.XB.prototype={ -h(a,b){var s,r=this.b -if(r==null)return this.c.h(0,b) -else if(typeof b!="string")return null -else{s=r[b] -return typeof s=="undefined"?this.ahe(b):s}}, -gp(a){return this.b==null?this.c.a:this.pI().length}, -ga8(a){return this.gp(this)===0}, -gc3(a){return this.gp(this)>0}, -gbI(a){var s -if(this.b==null){s=this.c -return new A.bm(s,A.p(s).i("bm<1>"))}return new A.XC(this)}, -gaR(a){var s,r=this -if(r.b==null){s=r.c -return s.gaR(s)}return A.iN(r.pI(),new A.auG(r),t.N,t.z)}, -m(a,b,c){var s,r,q=this -if(q.b==null)q.c.m(0,b,c) -else if(q.ak(0,b)){s=q.b -s[b]=c -r=q.a -if(r==null?s!=null:r!==s)r[b]=null}else q.Uw().m(0,b,c)}, -ak(a,b){if(this.b==null)return this.c.ak(0,b) -if(typeof b!="string")return!1 -return Object.prototype.hasOwnProperty.call(this.a,b)}, -bT(a,b,c){var s -if(this.ak(0,b))return this.h(0,b) -s=c.$0() -this.m(0,b,s) -return s}, -F(a,b){if(this.b!=null&&!this.ak(0,b))return null -return this.Uw().F(0,b)}, -N(a,b){var s,r,q,p,o=this -if(o.b==null)return o.c.N(0,b) -s=o.pI() -for(r=0;r"))}return s}, -t(a,b){return this.a.ak(0,b)}} -A.H7.prototype={ -aL(a){var s,r,q=this -q.a4V(0) -s=q.a -r=s.a -s.a="" -s=q.c -s.E(0,A.aF8(r.charCodeAt(0)==0?r:r,q.b)) -s.aL(0)}} -A.aqd.prototype={ -$0(){var s,r -try{s=new TextDecoder("utf-8",{fatal:true}) -return s}catch(r){}return null}, -$S:134} -A.aqc.prototype={ -$0(){var s,r -try{s=new TextDecoder("utf-8",{fatal:false}) -return s}catch(r){}return null}, -$S:134} -A.KU.prototype={ -ghI(a){return"us-ascii"}, -j0(a){return B.lD.cm(a)}, -ea(a,b){var s=B.lC.cm(b) -return s}, -gku(){return B.lD}, -gkt(){return B.lC}} -A.a1w.prototype={ -cm(a){var s,r,q,p=A.co(0,null,a.length,null,null)-0,o=new Uint8Array(p) -for(s=~this.a,r=0;r>>0!==0){if(!this.a)throw A.d(A.bW("Invalid value in input: "+A.j(q),p,p)) -return this.a8p(a,0,n)}}return A.j_(a,0,n)}, -a8p(a,b,c){var s,r,q,p,o -for(s=~this.b,r=J.X(a),q=b,p="";q>>0!==0?65533:o)}return p.charCodeAt(0)==0?p:p}} -A.KV.prototype={ -fZ(a){var s=t.NC.b(a)?a:new A.ps(a) -if(this.a)return new A.atk(s.AH(!1)) -else return new A.axr(s)}} -A.atk.prototype={ -aL(a){this.a.aL(0)}, -E(a,b){this.dk(b,0,J.b4(b),!1)}, -dk(a,b,c,d){var s,r,q=J.X(a) -A.co(b,c,q.gp(a),null,null) -for(s=this.a,r=b;r>>0!==0){if(r>b)s.dk(a,b,r,!1) -s.E(0,B.Ha) -b=r+1}if(b>>0!==0)throw A.d(A.bW("Source contains non-ASCII bytes.",null,null)) -this.a.E(0,A.j_(b,0,null))}, -dk(a,b,c,d){var s=a.length -A.co(b,c,s,null,null) -if(b=0){i=u.U.charCodeAt(h) -if(i===k)continue -k=i}else{if(h===-1){if(o<0){g=p==null?c:p.a.length -if(g==null)g=0 -o=g+(r-q) -n=r}++m -if(k===61)continue}k=i}if(h!==-2){if(p==null){p=new A.cf("") -g=p}else g=p -g.a+=B.c.S(a0,q,r) -g.a+=A.bQ(k) -q=l -continue}}throw A.d(A.bW("Invalid base64 data",a0,r))}if(p!=null){g=p.a+=B.c.S(a0,q,a2) -f=g.length -if(o>=0)A.aHj(a0,n,a2,o,m,f) -else{e=B.h.cF(f-1,4)+1 -if(e===1)throw A.d(A.bW(b,a0,a2)) -for(;e<4;){g+="=" -p.a=g;++e}}g=p.a -return B.c.hM(a0,a1,a2,g.charCodeAt(0)==0?g:g)}d=a2-a1 -if(o>=0)A.aHj(a0,n,a2,o,m,d) -else{e=B.h.cF(d,4) -if(e===1)throw A.d(A.bW(b,a0,a2)) -if(e>1)a0=B.c.hM(a0,a2,a2,e===2?"==":"=")}return a0}, -wC(a,b){return this.YK(a,b,0,null)}} -A.Lj.prototype={ -cm(a){var s=J.X(a) -if(s.ga8(a))return"" -s=new A.FE(u.U).JM(a,0,s.gp(a),!0) -s.toString -return A.j_(s,0,null)}, -fZ(a){var s,r=u.U -if(t.NC.b(a)){s=a.AH(!1) -return new A.azc(s,new A.FE(r))}return new A.ar0(a,new A.arl(r))}} -A.FE.prototype={ -W2(a,b){return new Uint8Array(b)}, -JM(a,b,c,d){var s,r=this,q=(r.a&3)+(c-b),p=B.h.dj(q,3),o=p*4 -if(d&&q-p*3>0)o+=4 -s=r.W2(0,o) -r.a=A.b1p(r.b,a,b,c,d,s,0,r.a) -if(o>0)return s -return null}} -A.arl.prototype={ -W2(a,b){var s=this.c -if(s==null||s.length0)throw A.d(A.bW("Invalid length, must be multiple of four",b,c)) -this.a=-1}} -A.UW.prototype={ -E(a,b){var s,r=b.length -if(r===0)return -s=this.b.Ji(0,b,0,r) -if(s!=null)this.a.E(0,s)}, -aL(a){this.b.IW(0,null,null) -this.a.aL(0)}, -dk(a,b,c,d){var s,r -A.co(b,c,a.length,null,null) -if(b===c)return -s=this.b -r=s.Ji(0,a,b,c) -if(r!=null)this.a.E(0,r) -if(d){s.IW(0,a,c) -this.a.aL(0)}}} -A.u3.prototype={ -dk(a,b,c,d){this.E(0,B.P.bX(a,b,c)) -if(d)this.aL(0)}} -A.FN.prototype={ -E(a,b){this.a.E(0,b)}, -aL(a){this.a.aL(0)}} -A.V5.prototype={ -E(a,b){var s,r,q=this,p=q.b,o=q.c,n=J.X(b) -if(n.gp(b)>p.length-o){p=q.b -s=n.gp(b)+p.length-1 -s|=B.h.fH(s,1) -s|=s>>>2 -s|=s>>>4 -s|=s>>>8 -r=new Uint8Array((((s|s>>>16)>>>0)+1)*2) -p=q.b -B.P.dh(r,0,p.length,p) -q.b=r}p=q.b -o=q.c -B.P.dh(p,o,o+n.gp(b),b) -q.c=q.c+n.gp(b)}, -aL(a){this.a.$1(B.P.bX(this.b,0,this.c))}} -A.LI.prototype={} -A.a_P.prototype={ -E(a,b){this.b.push(b)}, -aL(a){this.a.$1(this.b)}} -A.dC.prototype={ -j0(a){return this.gku().cm(a)}, -mU(a,b){var s=A.p(this) -return new A.GI(this,a,s.i("@").a5(s.i("dC.T")).a5(b).i("GI<1,2,3>"))}} -A.GI.prototype={ -gku(){return this.a.gku().mU(this.b.gku(),this.$ti.z[2])}, -gkt(){return this.b.gkt().mU(this.a.gkt(),this.$ti.c)}} -A.bC.prototype={ -mU(a,b){var s=A.p(this) -return new A.GJ(this,a,s.i("@").a5(s.i("bC.T")).a5(b).i("GJ<1,2,3>"))}, -fZ(a){throw A.d(A.V("This converter does not support chunked conversions: "+this.k(0)))}} -A.GJ.prototype={ -cm(a){return this.b.cm(this.a.cm(a))}, -fZ(a){return this.a.fZ(this.b.fZ(a))}} -A.nL.prototype={} -A.acP.prototype={ -k(a){return this.a}} -A.Oh.prototype={ -cm(a){var s=this.Pl(a,0,a.length) -return s==null?a:s}, -Pl(a,b,c){var s,r,q,p,o,n=null -for(s=this.a,r=s.e,s=s.d,q=b,p=n;q":o=">" -break -case"/":o=r?"/":n -break -default:o=n}if(o!=null){if(p==null)p=new A.cf("") -if(q>b)p.a+=B.c.S(a,b,q) -p.a+=o -b=q+1}}if(p==null)return n -if(c>b)p.a+=B.c.S(a,b,c) -s=p.a -return s.charCodeAt(0)==0?s:s}, -fZ(a){return new A.Xg(this,t.NC.b(a)?a:new A.ps(a))}} -A.Xg.prototype={ -dk(a,b,c,d){var s=this.a.Pl(a,b,c),r=this.b -if(s==null)r.dk(a,b,c,d) -else{r.E(0,s) -if(d)r.aL(0)}}, -aL(a){this.b.aL(0)}} -A.Br.prototype={ -k(a){var s=A.qo(this.a) -return(this.b!=null?"Converting object to an encodable object failed:":"Converting object did not return an encodable object:")+" "+s}} -A.OH.prototype={ -k(a){return"Cyclic error in JSON stringify"}} -A.OG.prototype={ -Be(a,b,c){var s=A.aF8(b,this.gkt().a) -return s}, -ea(a,b){return this.Be(a,b,null)}, -Bt(a,b){var s=this.gku() -s=A.aLX(a,s.b,s.a) -return s}, -j0(a){return this.Bt(a,null)}, -gku(){return B.GW}, -gkt(){return B.nJ}} -A.OJ.prototype={ -cm(a){var s,r=new A.cf("") -A.aEx(a,r,this.b,this.a) -s=r.a -return s.charCodeAt(0)==0?s:s}, -fZ(a){var s,r=this -if(a instanceof A.Jj)return new A.H8(a.d,A.aJ8(r.a),r.b,256) -s=t.NC.b(a)?a:new A.ps(a) -return new A.auF(r.a,r.b,s)}, -mU(a,b){var s -if(a instanceof A.Fr){s=A.aJ8(this.a) -return b.i("bC").a(new A.OK(s,this.b,256))}return this.Eu(a,b)}} -A.OK.prototype={ -cm(a){var s,r,q,p,o,n,m,l=A.b([],t.Zb) -A.aLY(a,this.a,this.b,this.c,new A.aeh(l)) -s=l.length -if(s===1)return l[0] -for(r=0,q=0;q0||c92){if(q>=55296){p=q&64512 -if(p===55296){o=r+1 -o=!(o=0&&(a.charCodeAt(p)&64512)===55296)}else p=!1 -else p=!0 -if(p){if(r>s)n.rR(a,s,r) -s=r+1 -n.dW(92) -n.dW(117) -n.dW(100) -p=q>>>8&15 -n.dW(p<10?48+p:87+p) -p=q>>>4&15 -n.dW(p<10?48+p:87+p) -p=q&15 -n.dW(p<10?48+p:87+p)}}continue}if(q<32){if(r>s)n.rR(a,s,r) -s=r+1 -n.dW(92) -switch(q){case 8:n.dW(98) -break -case 9:n.dW(116) -break -case 10:n.dW(110) -break -case 12:n.dW(102) -break -case 13:n.dW(114) -break -default:n.dW(117) -n.dW(48) -n.dW(48) -p=q>>>4&15 -n.dW(p<10?48+p:87+p) -p=q&15 -n.dW(p<10?48+p:87+p) -break}}else if(q===34||q===92){if(r>s)n.rR(a,s,r) -s=r+1 -n.dW(92) -n.dW(q)}}if(s===0)n.dt(a) -else if(s>>6|192)>>>0) -s.hP(a&63|128) -return}if(a<=65535){s.hP((a>>>12|224)>>>0) -s.hP(a>>>6&63|128) -s.hP(a&63|128) -return}s.a_z(a)}, -a_z(a){var s=this -s.hP((a>>>18|240)>>>0) -s.hP(a>>>12&63|128) -s.hP(a>>>6&63|128) -s.hP(a&63|128)}, -hP(a){var s,r=this,q=r.f,p=r.e -if(q===p.length){r.d.$3(p,0,q) -q=r.e=new Uint8Array(r.c) -p=r.f=0}else{s=p -p=q -q=s}r.f=p+1 -q[p]=a}} -A.auL.prototype={ -rQ(a){var s,r,q,p,o,n=this,m=n.x,l=J.X(m),k=l.gp(m) -if(k===1){s=l.h(m,0) -for(;a>0;){n.hP(s);--a}return}for(;a>0;){--a -r=n.f -q=r+k -p=n.e -if(q<=p.length){B.P.dh(p,r,q,m) -n.f=q}else for(o=0;o255||r<0){if(s>b){q=p.a -q.toString -q.E(0,A.j_(a,b,s))}q=p.a -q.toString -q.E(0,A.j_(B.HJ,0,1)) -b=s+1}}if(b16)this.G_()}, -rP(a,b){if(this.a.a.length!==0)this.G_() -this.b.E(0,b)}, -G_(){var s=this.a,r=s.a -s.a="" -this.b.E(0,r.charCodeAt(0)==0?r:r)}} -A.yv.prototype={ -aL(a){}, -dk(a,b,c,d){var s,r -if(b!==0||c!==a.length)for(s=this.a,r=b;r>>18|240 -q=o.b=p+1 -r[p]=s>>>12&63|128 -p=o.b=q+1 -r[q]=s>>>6&63|128 -o.b=p+1 -r[p]=s&63|128 -return!0}else{o.Ai() -return!1}}, -PV(a,b,c){var s,r,q,p,o,n,m,l=this -if(b!==c&&(a.charCodeAt(c-1)&64512)===55296)--c -for(s=l.c,r=s.length,q=b;q=r)break -l.b=o+1 -s[o]=p}else{o=p&64512 -if(o===55296){if(l.b+4>r)break -n=q+1 -if(l.UL(p,a.charCodeAt(n)))q=n}else if(o===56320){if(l.b+3>r)break -l.Ai()}else if(p<=2047){o=l.b -m=o+1 -if(m>=r)break -l.b=m -s[o]=p>>>6|192 -l.b=m+1 -s[m]=p&63|128}else{o=l.b -if(o+2>=r)break -m=l.b=o+1 -s[o]=p>>>12|224 -o=l.b=m+1 -s[m]=p>>>6&63|128 -l.b=o+1 -s[o]=p&63|128}}}return q}} -A.Jj.prototype={ -aL(a){if(this.a!==0){this.dk("",0,0,!0) -return}this.d.aL(0)}, -dk(a,b,c,d){var s,r,q,p,o,n=this -n.b=0 -s=b===c -if(s&&!d)return -r=n.a -if(r!==0){if(n.UL(r,!s?a.charCodeAt(b):0))++b -n.a=0}s=n.d -r=n.c -q=c-1 -p=r.length-3 -do{b=n.PV(a,b,c) -o=d&&b===c -if(b===q&&(a.charCodeAt(b)&64512)===55296){if(d&&n.b1000){s=B.h.dj(b+c,2) -r=q.Fz(a,b,s,!1) -if((q.b&1)!==0)return r -return r+q.Fz(a,s,c,d)}return q.ao5(a,b,c,d)}, -Xd(a,b){var s=this.b -this.b=0 -if(s<=32)return -if(this.a)b.a+=A.bQ(65533) -else throw A.d(A.bW(A.aMB(77),null,null))}, -ao5(a,b,c,d){var s,r,q,p,o,n,m,l=this,k=65533,j=l.b,i=l.c,h=new A.cf(""),g=b+1,f=a[b] -$label0$0:for(s=l.a;!0;){for(;!0;g=p){r="AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFFFFFFFFFFFFFFFGGGGGGGGGGGGGGGGHHHHHHHHHHHHHHHHHHHHHHHHHHHIHHHJEEBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBKCCCCCCCCCCCCDCLONNNMEEEEEEEEEEE".charCodeAt(f)&31 -i=j<=32?f&61694>>>r:(f&63|i<<6)>>>0 -j=" \x000:XECCCCCN:lDb \x000:XECCCCCNvlDb \x000:XECCCCCN:lDb AAAAA\x00\x00\x00\x00\x00AAAAA00000AAAAA:::::AAAAAGG000AAAAA00KKKAAAAAG::::AAAAA:IIIIAAAAA000\x800AAAAA\x00\x00\x00\x00 AAAAA".charCodeAt(j+r) -if(j===0){h.a+=A.bQ(i) -if(g===c)break $label0$0 -break}else if((j&1)!==0){if(s)switch(j){case 69:case 67:h.a+=A.bQ(k) -break -case 65:h.a+=A.bQ(k);--g -break -default:q=h.a+=A.bQ(k) -h.a=q+A.bQ(k) -break}else{l.b=j -l.c=g-1 -return""}j=0}if(g===c)break $label0$0 -p=g+1 -f=a[g]}p=g+1 -f=a[g] -if(f<128){while(!0){if(!(p=128){o=n-1 -p=n -break}p=n}if(o-g<20)for(m=g;m32)if(s)h.a+=A.bQ(k) -else{l.b=77 -l.c=c -return""}l.b=j -l.c=i -s=h.a -return s.charCodeAt(0)==0?s:s}} -A.a23.prototype={} -A.a24.prototype={} -A.a30.prototype={} -A.agS.prototype={ -$2(a,b){var s=this.b,r=this.a,q=s.a+=r.a -q+=a.a -s.a=q -s.a=q+": " -s.a+=A.qo(b) -r.a=", "}, -$S:250} -A.dX.prototype={ -E(a,b){return A.aHR(this.a+B.h.dj(b.a,1000),this.b)}, -j(a,b){if(b==null)return!1 -return b instanceof A.dX&&this.a===b.a&&this.b===b.b}, -bi(a,b){return B.h.bi(this.a,b.a)}, -gA(a){var s=this.a -return(s^B.h.fH(s,30))&1073741823}, -k(a){var s=this,r=A.aHS(A.R0(s)),q=A.lS(A.aKd(s)),p=A.lS(A.aK9(s)),o=A.lS(A.aKa(s)),n=A.lS(A.aKc(s)),m=A.lS(A.aKe(s)),l=A.aHT(A.aKb(s)),k=r+"-"+q -if(s.b)return k+"-"+p+" "+o+":"+n+":"+m+"."+l+"Z" -else return k+"-"+p+" "+o+":"+n+":"+m+"."+l}, -LS(){var s=this,r=A.R0(s)>=-9999&&A.R0(s)<=9999?A.aHS(A.R0(s)):A.aWU(A.R0(s)),q=A.lS(A.aKd(s)),p=A.lS(A.aK9(s)),o=A.lS(A.aKa(s)),n=A.lS(A.aKc(s)),m=A.lS(A.aKe(s)),l=A.aHT(A.aKb(s)),k=r+"-"+q -if(s.b)return k+"-"+p+"T"+o+":"+n+":"+m+"."+l+"Z" -else return k+"-"+p+"T"+o+":"+n+":"+m+"."+l}, -$ic9:1} -A.a6Q.prototype={ -$1(a){if(a==null)return 0 -return A.dT(a,null)}, -$S:141} -A.a6R.prototype={ -$1(a){var s,r,q -if(a==null)return 0 -for(s=a.length,r=0,q=0;q<6;++q){r*=10 -if(qr)s=": Not in inclusive range "+A.j(r)+".."+A.j(q) -else s=qe.length -else s=!1 -if(s)f=null -if(f==null){if(e.length>78)e=B.c.S(e,0,75)+"..." -return g+"\n"+e}for(r=1,q=0,p=!1,o=0;o1?g+(" (at line "+r+", character "+(f-q+1)+")\n"):g+(" (at character "+(f+1)+")\n") -m=e.length -for(o=f;o78)if(f-q<75){l=q+75 -k=q -j="" -i="..."}else{if(m-f<75){k=m-75 -l=m -i=""}else{k=f-36 -l=f+36 -i="..."}j="..."}else{l=m -k=q -j="" -i=""}return g+j+B.c.S(e,k,l)+i+"\n"+B.c.a6(" ",f-k+j.length)+"^\n"}else return f!=null?g+(" (at offset "+A.j(f)+")"):g}, -$ibV:1, -gww(a){return this.a}, -gEk(a){return this.b}, -gct(a){return this.c}} -A.q.prototype={ -iS(a,b){return A.c3(this,A.by(this).i("q.E"),b)}, -K4(a,b){var s=this,r=A.by(s) -if(r.i("a7").b(s))return A.aIK(s,b,r.i("q.E")) -return new A.m6(s,b,r.i("m6"))}, -ew(a,b,c){return A.iN(this,b,A.by(this).i("q.E"),c)}, -hf(a,b){return this.ew(a,b,t.z)}, -iv(a,b){return new A.aL(this,b,A.by(this).i("aL"))}, -t(a,b){var s -for(s=this.ga9(this);s.u();)if(J.e(s.gJ(s),b))return!0 -return!1}, -N(a,b){var s -for(s=this.ga9(this);s.u();)b.$1(s.gJ(s))}, -kV(a,b){var s,r=this.ga9(this) -if(!r.u())throw A.d(A.cd()) -s=r.gJ(r) -for(;r.u();)s=b.$2(s,r.gJ(r)) -return s}, -bH(a,b){var s,r,q=this.ga9(this) -if(!q.u())return"" -s=J.di(q.gJ(q)) -if(!q.u())return s -if(b.length===0){r=s -do r+=J.di(q.gJ(q)) -while(q.u())}else{r=s -do r=r+b+J.di(q.gJ(q)) -while(q.u())}return r.charCodeAt(0)==0?r:r}, -oF(a){return this.bH(a,"")}, -dN(a,b){var s -for(s=this.ga9(this);s.u();)if(b.$1(s.gJ(s)))return!0 -return!1}, -fs(a,b){return A.a8(this,b,A.by(this).i("q.E"))}, -eM(a){return this.fs(a,!0)}, -it(a){return A.hJ(this,A.by(this).i("q.E"))}, -gp(a){var s,r=this.ga9(this) -for(s=0;r.u();)++s -return s}, -ga8(a){return!this.ga9(this).u()}, -gc3(a){return!this.ga8(this)}, -kY(a,b){return A.aEe(this,b,A.by(this).i("q.E"))}, -iy(a,b){return A.aE8(this,b,A.by(this).i("q.E"))}, -gM(a){var s=this.ga9(this) -if(!s.u())throw A.d(A.cd()) -return s.gJ(s)}, -gL(a){var s,r=this.ga9(this) -if(!r.u())throw A.d(A.cd()) -do s=r.gJ(r) -while(r.u()) -return s}, -gbD(a){var s,r=this.ga9(this) -if(!r.u())throw A.d(A.cd()) -s=r.gJ(r) -if(r.u())throw A.d(A.ae4()) -return s}, -K3(a,b,c){var s,r -for(s=this.ga9(this);s.u();){r=s.gJ(s) -if(b.$1(r))return r}return c.$0()}, -bp(a,b){var s,r -A.e_(b,"index") -s=this.ga9(this) -for(r=b;s.u();){if(r===0)return s.gJ(s);--r}throw A.d(A.dv(b,b-r,this,null,"index"))}, -k(a){return A.aJ3(this,"(",")")}} -A.GL.prototype={ -bp(a,b){A.adF(b,this.a,this,null) -return this.b.$1(b)}, -gp(a){return this.a}} -A.aY.prototype={ -k(a){return"MapEntry("+A.j(this.a)+": "+A.j(this.b)+")"}} -A.b1.prototype={ -gA(a){return A.O.prototype.gA.call(this,this)}, -k(a){return"null"}} -A.O.prototype={$iO:1, -j(a,b){return this===b}, -gA(a){return A.fi(this)}, -k(a){return"Instance of '"+A.ai8(this)+"'"}, -D(a,b){throw A.d(A.aJI(this,b))}, -ge5(a){return A.u(this)}, -toString(){return this.k(this)}, -$0(){return this.D(this,A.z("$0","$0",0,[],[],0))}, -$1(a){return this.D(this,A.z("$1","$1",0,[a],[],0))}, -$2(a,b){return this.D(this,A.z("$2","$2",0,[a,b],[],0))}, -$1$2$onError(a,b,c){return this.D(this,A.z("$1$2$onError","$1$2$onError",0,[a,b,c],["onError"],1))}, -$3(a,b,c){return this.D(this,A.z("$3","$3",0,[a,b,c],[],0))}, -$4(a,b,c,d){return this.D(this,A.z("$4","$4",0,[a,b,c,d],[],0))}, -$1$1(a,b){return this.D(this,A.z("$1$1","$1$1",0,[a,b],[],1))}, -$1$hostElementAttributes(a){return this.D(this,A.z("$1$hostElementAttributes","$1$hostElementAttributes",0,[a],["hostElementAttributes"],0))}, -$1$highContrast(a){return this.D(this,A.z("$1$highContrast","$1$highContrast",0,[a],["highContrast"],0))}, -$1$accessibilityFeatures(a){return this.D(this,A.z("$1$accessibilityFeatures","$1$accessibilityFeatures",0,[a],["accessibilityFeatures"],0))}, -$3$replace$state(a,b,c){return this.D(this,A.z("$3$replace$state","$3$replace$state",0,[a,b,c],["replace","state"],0))}, -$2$path(a,b){return this.D(this,A.z("$2$path","$2$path",0,[a,b],["path"],0))}, -$1$growable(a){return this.D(this,A.z("$1$growable","$1$growable",0,[a],["growable"],0))}, -$2$params(a,b){return this.D(this,A.z("$2$params","$2$params",0,[a,b],["params"],0))}, -$3$onAction$onChange(a,b,c){return this.D(this,A.z("$3$onAction$onChange","$3$onAction$onChange",0,[a,b,c],["onAction","onChange"],0))}, -$1$0(a){return this.D(this,A.z("$1$0","$1$0",0,[a],[],1))}, -$1$locales(a){return this.D(this,A.z("$1$locales","$1$locales",0,[a],["locales"],0))}, -$1$textScaleFactor(a){return this.D(this,A.z("$1$textScaleFactor","$1$textScaleFactor",0,[a],["textScaleFactor"],0))}, -$1$platformBrightness(a){return this.D(this,A.z("$1$platformBrightness","$1$platformBrightness",0,[a],["platformBrightness"],0))}, -$12$buttons$change$device$kind$physicalX$physicalY$pressure$pressureMax$scale$signalKind$timeStamp(a,b,c,d,e,f,g,h,i,j,k,l){return this.D(this,A.z("$12$buttons$change$device$kind$physicalX$physicalY$pressure$pressureMax$scale$signalKind$timeStamp","$12$buttons$change$device$kind$physicalX$physicalY$pressure$pressureMax$scale$signalKind$timeStamp",0,[a,b,c,d,e,f,g,h,i,j,k,l],["buttons","change","device","kind","physicalX","physicalY","pressure","pressureMax","scale","signalKind","timeStamp"],0))}, -$13$buttons$change$device$kind$physicalX$physicalY$pressure$pressureMax$scrollDeltaX$scrollDeltaY$signalKind$timeStamp(a,b,c,d,e,f,g,h,i,j,k,l,m){return this.D(this,A.z("$13$buttons$change$device$kind$physicalX$physicalY$pressure$pressureMax$scrollDeltaX$scrollDeltaY$signalKind$timeStamp","$13$buttons$change$device$kind$physicalX$physicalY$pressure$pressureMax$scrollDeltaX$scrollDeltaY$signalKind$timeStamp",0,[a,b,c,d,e,f,g,h,i,j,k,l,m],["buttons","change","device","kind","physicalX","physicalY","pressure","pressureMax","scrollDeltaX","scrollDeltaY","signalKind","timeStamp"],0))}, -$11$buttons$change$device$kind$physicalX$physicalY$pressure$pressureMax$signalKind$timeStamp(a,b,c,d,e,f,g,h,i,j,k){return this.D(this,A.z("$11$buttons$change$device$kind$physicalX$physicalY$pressure$pressureMax$signalKind$timeStamp","$11$buttons$change$device$kind$physicalX$physicalY$pressure$pressureMax$signalKind$timeStamp",0,[a,b,c,d,e,f,g,h,i,j,k],["buttons","change","device","kind","physicalX","physicalY","pressure","pressureMax","signalKind","timeStamp"],0))}, -$10$buttons$change$device$physicalX$physicalY$pressure$pressureMax$signalKind$timeStamp(a,b,c,d,e,f,g,h,i,j){return this.D(this,A.z("$10$buttons$change$device$physicalX$physicalY$pressure$pressureMax$signalKind$timeStamp","$10$buttons$change$device$physicalX$physicalY$pressure$pressureMax$signalKind$timeStamp",0,[a,b,c,d,e,f,g,h,i,j],["buttons","change","device","physicalX","physicalY","pressure","pressureMax","signalKind","timeStamp"],0))}, -$4$checkModifiers(a,b,c,d){return this.D(this,A.z("$4$checkModifiers","$4$checkModifiers",0,[a,b,c,d],["checkModifiers"],0))}, -$12$buttons$change$device$kind$physicalX$physicalY$pressure$pressureMax$signalKind$tilt$timeStamp(a,b,c,d,e,f,g,h,i,j,k,l){return this.D(this,A.z("$12$buttons$change$device$kind$physicalX$physicalY$pressure$pressureMax$signalKind$tilt$timeStamp","$12$buttons$change$device$kind$physicalX$physicalY$pressure$pressureMax$signalKind$tilt$timeStamp",0,[a,b,c,d,e,f,g,h,i,j,k,l],["buttons","change","device","kind","physicalX","physicalY","pressure","pressureMax","signalKind","tilt","timeStamp"],0))}, -$1$accessibleNavigation(a){return this.D(this,A.z("$1$accessibleNavigation","$1$accessibleNavigation",0,[a],["accessibleNavigation"],0))}, -$1$semanticsEnabled(a){return this.D(this,A.z("$1$semanticsEnabled","$1$semanticsEnabled",0,[a],["semanticsEnabled"],0))}, -$4$cancelOnError$onDone$onError(a,b,c,d){return this.D(this,A.z("$4$cancelOnError$onDone$onError","$4$cancelOnError$onDone$onError",0,[a,b,c,d],["cancelOnError","onDone","onError"],0))}, -$2$priority$scheduler(a,b){return this.D(this,A.z("$2$priority$scheduler","$2$priority$scheduler",0,[a,b],["priority","scheduler"],0))}, -$2$position(a,b){return this.D(this,A.z("$2$position","$2$position",0,[a,b],["position"],0))}, -$1$style(a){return this.D(this,A.z("$1$style","$1$style",0,[a],["style"],0))}, -$21$background$color$decoration$decorationColor$decorationStyle$decorationThickness$fontFamily$fontFamilyFallback$fontFeatures$fontSize$fontStyle$fontVariations$fontWeight$foreground$height$leadingDistribution$letterSpacing$locale$shadows$textBaseline$wordSpacing(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1){return this.D(this,A.z("$21$background$color$decoration$decorationColor$decorationStyle$decorationThickness$fontFamily$fontFamilyFallback$fontFeatures$fontSize$fontStyle$fontVariations$fontWeight$foreground$height$leadingDistribution$letterSpacing$locale$shadows$textBaseline$wordSpacing","$21$background$color$decoration$decorationColor$decorationStyle$decorationThickness$fontFamily$fontFamilyFallback$fontFeatures$fontSize$fontStyle$fontVariations$fontWeight$foreground$height$leadingDistribution$letterSpacing$locale$shadows$textBaseline$wordSpacing",0,[a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1],["background","color","decoration","decorationColor","decorationStyle","decorationThickness","fontFamily","fontFamilyFallback","fontFeatures","fontSize","fontStyle","fontVariations","fontWeight","foreground","height","leadingDistribution","letterSpacing","locale","shadows","textBaseline","wordSpacing"],0))}, -$12$ellipsis$fontFamily$fontSize$fontStyle$fontWeight$height$locale$maxLines$strutStyle$textAlign$textDirection$textHeightBehavior(a,b,c,d,e,f,g,h,i,j,k,l){return this.D(this,A.z("$12$ellipsis$fontFamily$fontSize$fontStyle$fontWeight$height$locale$maxLines$strutStyle$textAlign$textDirection$textHeightBehavior","$12$ellipsis$fontFamily$fontSize$fontStyle$fontWeight$height$locale$maxLines$strutStyle$textAlign$textDirection$textHeightBehavior",0,[a,b,c,d,e,f,g,h,i,j,k,l],["ellipsis","fontFamily","fontSize","fontStyle","fontWeight","height","locale","maxLines","strutStyle","textAlign","textDirection","textHeightBehavior"],0))}, -$2$aspect(a,b){return this.D(this,A.z("$2$aspect","$2$aspect",0,[a,b],["aspect"],0))}, -$1$findFirstFocus(a){return this.D(this,A.z("$1$findFirstFocus","$1$findFirstFocus",0,[a],["findFirstFocus"],0))}, -$1$withDelay(a){return this.D(this,A.z("$1$withDelay","$1$withDelay",0,[a],["withDelay"],0))}, -$1$2$arguments(a,b,c){return this.D(this,A.z("$1$2$arguments","$1$2$arguments",0,[a,b,c],["arguments"],1))}, -$2$1(a,b,c){return this.D(this,A.z("$2$1","$2$1",0,[a,b,c],[],2))}, -$5(a,b,c,d,e){return this.D(this,A.z("$5","$5",0,[a,b,c,d,e],[],0))}, -$1$range(a){return this.D(this,A.z("$1$range","$1$range",0,[a],["range"],0))}, -$3$forgottenChildren(a,b,c){return this.D(this,A.z("$3$forgottenChildren","$3$forgottenChildren",0,[a,b,c],["forgottenChildren"],0))}, -$2$after(a,b){return this.D(this,A.z("$2$after","$2$after",0,[a,b],["after"],0))}, -$1$reversed(a){return this.D(this,A.z("$1$reversed","$1$reversed",0,[a],["reversed"],0))}, -$1$2(a,b,c){return this.D(this,A.z("$1$2","$1$2",0,[a,b,c],[],1))}, -$3$rect(a,b,c){return this.D(this,A.z("$3$rect","$3$rect",0,[a,b,c],["rect"],0))}, -$2$alignmentPolicy(a,b){return this.D(this,A.z("$2$alignmentPolicy","$2$alignmentPolicy",0,[a,b],["alignmentPolicy"],0))}, -$2$ignoreCurrentFocus(a,b){return this.D(this,A.z("$2$ignoreCurrentFocus","$2$ignoreCurrentFocus",0,[a,b],["ignoreCurrentFocus"],0))}, -$1$paragraphWidth(a){return this.D(this,A.z("$1$paragraphWidth","$1$paragraphWidth",0,[a],["paragraphWidth"],0))}, -$9$fontFamily$fontFamilyFallback$fontSize$fontStyle$fontWeight$forceStrutHeight$height$leading$leadingDistribution(a,b,c,d,e,f,g,h,i){return this.D(this,A.z("$9$fontFamily$fontFamilyFallback$fontSize$fontStyle$fontWeight$forceStrutHeight$height$leading$leadingDistribution","$9$fontFamily$fontFamilyFallback$fontSize$fontStyle$fontWeight$forceStrutHeight$height$leading$leadingDistribution",0,[a,b,c,d,e,f,g,h,i],["fontFamily","fontFamilyFallback","fontSize","fontStyle","fontWeight","forceStrutHeight","height","leading","leadingDistribution"],0))}, -$4$boxHeightStyle$boxWidthStyle(a,b,c,d){return this.D(this,A.z("$4$boxHeightStyle$boxWidthStyle","$4$boxHeightStyle$boxWidthStyle",0,[a,b,c,d],["boxHeightStyle","boxWidthStyle"],0))}, -$2$end$start(a,b){return this.D(this,A.z("$2$end$start","$2$end$start",0,[a,b],["end","start"],0))}, -$3$dimensions$textScaleFactor(a,b,c){return this.D(this,A.z("$3$dimensions$textScaleFactor","$3$dimensions$textScaleFactor",0,[a,b,c],["dimensions","textScaleFactor"],0))}, -$3$boxHeightStyle(a,b,c){return this.D(this,A.z("$3$boxHeightStyle","$3$boxHeightStyle",0,[a,b,c],["boxHeightStyle"],0))}, -$3$includePlaceholders$includeSemanticsLabels(a,b,c){return this.D(this,A.z("$3$includePlaceholders$includeSemanticsLabels","$3$includePlaceholders$includeSemanticsLabels",0,[a,b,c],["includePlaceholders","includeSemanticsLabels"],0))}, -$8$color$fill$grade$opacity$opticalSize$shadows$size$weight(a,b,c,d,e,f,g,h){return this.D(this,A.z("$8$color$fill$grade$opacity$opticalSize$shadows$size$weight","$8$color$fill$grade$opacity$opticalSize$shadows$size$weight",0,[a,b,c,d,e,f,g,h],["color","fill","grade","opacity","opticalSize","shadows","size","weight"],0))}, -$1$color(a){return this.D(this,A.z("$1$color","$1$color",0,[a],["color"],0))}, -$3$textDirection(a,b,c){return this.D(this,A.z("$3$textDirection","$3$textDirection",0,[a,b,c],["textDirection"],0))}, -$3$debugReport(a,b,c){return this.D(this,A.z("$3$debugReport","$3$debugReport",0,[a,b,c],["debugReport"],0))}, -$3$cancel$down$reason(a,b,c){return this.D(this,A.z("$3$cancel$down$reason","$3$cancel$down$reason",0,[a,b,c],["cancel","down","reason"],0))}, -$2$down$up(a,b){return this.D(this,A.z("$2$down$up","$2$down$up",0,[a,b],["down","up"],0))}, -$1$down(a){return this.D(this,A.z("$1$down","$1$down",0,[a],["down"],0))}, -$2$value(a,b){return this.D(this,A.z("$2$value","$2$value",0,[a,b],["value"],0))}, -$1$details(a){return this.D(this,A.z("$1$details","$1$details",0,[a],["details"],0))}, -$11$borderRadius$color$containedInkWell$controller$customBorder$onRemoved$position$radius$rectCallback$referenceBox$textDirection(a,b,c,d,e,f,g,h,i,j,k){return this.D(this,A.z("$11$borderRadius$color$containedInkWell$controller$customBorder$onRemoved$position$radius$rectCallback$referenceBox$textDirection","$11$borderRadius$color$containedInkWell$controller$customBorder$onRemoved$position$radius$rectCallback$referenceBox$textDirection",0,[a,b,c,d,e,f,g,h,i,j,k],["borderRadius","color","containedInkWell","controller","customBorder","onRemoved","position","radius","rectCallback","referenceBox","textDirection"],0))}, -$1$context(a){return this.D(this,A.z("$1$context","$1$context",0,[a],["context"],0))}, -$2$textDirection(a,b){return this.D(this,A.z("$2$textDirection","$2$textDirection",0,[a,b],["textDirection"],0))}, -$2$reversed(a,b){return this.D(this,A.z("$2$reversed","$2$reversed",0,[a,b],["reversed"],0))}, -$2$minHeight$minWidth(a,b){return this.D(this,A.z("$2$minHeight$minWidth","$2$minHeight$minWidth",0,[a,b],["minHeight","minWidth"],0))}, -$1$letterSpacing(a){return this.D(this,A.z("$1$letterSpacing","$1$letterSpacing",0,[a],["letterSpacing"],0))}, -$1$5(a,b,c,d,e,f){return this.D(this,A.z("$1$5","$1$5",0,[a,b,c,d,e,f],[],1))}, -$3$onDone$onError(a,b,c){return this.D(this,A.z("$3$onDone$onError","$3$onDone$onError",0,[a,b,c],["onDone","onError"],0))}, -$2$app$persistence(a,b){return this.D(this,A.z("$2$app$persistence","$2$app$persistence",0,[a,b],["app","persistence"],0))}, -$2$currentUser$languageCode(a,b){return this.D(this,A.z("$2$currentUser$languageCode","$2$currentUser$languageCode",0,[a,b],["currentUser","languageCode"],0))}, -$2$0(a,b){return this.D(this,A.z("$2$0","$2$0",0,[a,b],[],2))}, -$8$removeBottomInset$removeBottomPadding$removeLeftPadding$removeRightPadding$removeTopPadding(a,b,c,d,e,f,g,h){return this.D(this,A.z("$8$removeBottomInset$removeBottomPadding$removeLeftPadding$removeRightPadding$removeTopPadding","$8$removeBottomInset$removeBottomPadding$removeLeftPadding$removeRightPadding$removeTopPadding",0,[a,b,c,d,e,f,g,h],["removeBottomInset","removeBottomPadding","removeLeftPadding","removeRightPadding","removeTopPadding"],0))}, -$7$removeBottomPadding$removeLeftPadding$removeRightPadding$removeTopPadding(a,b,c,d,e,f,g){return this.D(this,A.z("$7$removeBottomPadding$removeLeftPadding$removeRightPadding$removeTopPadding","$7$removeBottomPadding$removeLeftPadding$removeRightPadding$removeTopPadding",0,[a,b,c,d,e,f,g],["removeBottomPadding","removeLeftPadding","removeRightPadding","removeTopPadding"],0))}, -$8$maintainBottomViewPadding$removeBottomPadding$removeLeftPadding$removeRightPadding$removeTopPadding(a,b,c,d,e,f,g,h){return this.D(this,A.z("$8$maintainBottomViewPadding$removeBottomPadding$removeLeftPadding$removeRightPadding$removeTopPadding","$8$maintainBottomViewPadding$removeBottomPadding$removeLeftPadding$removeRightPadding$removeTopPadding",0,[a,b,c,d,e,f,g,h],["maintainBottomViewPadding","removeBottomPadding","removeLeftPadding","removeRightPadding","removeTopPadding"],0))}, -$1$bottom(a){return this.D(this,A.z("$1$bottom","$1$bottom",0,[a],["bottom"],0))}, -$1$floatingActionButtonScale(a){return this.D(this,A.z("$1$floatingActionButtonScale","$1$floatingActionButtonScale",0,[a],["floatingActionButtonScale"],0))}, -$1$removeBottom(a){return this.D(this,A.z("$1$removeBottom","$1$removeBottom",0,[a],["removeBottom"],0))}, -$1$padding(a){return this.D(this,A.z("$1$padding","$1$padding",0,[a],["padding"],0))}, -$2$viewInsets$viewPadding(a,b){return this.D(this,A.z("$2$viewInsets$viewPadding","$2$viewInsets$viewPadding",0,[a,b],["viewInsets","viewPadding"],0))}, -$2$padding$viewPadding(a,b){return this.D(this,A.z("$2$padding$viewPadding","$2$padding$viewPadding",0,[a,b],["padding","viewPadding"],0))}, -$3$context$exception$stack(a,b,c){return this.D(this,A.z("$3$context$exception$stack","$3$context$exception$stack",0,[a,b,c],["context","exception","stack"],0))}, -$4$allowUpscaling$targetHeight$targetWidth(a,b,c,d){return this.D(this,A.z("$4$allowUpscaling$targetHeight$targetWidth","$4$allowUpscaling$targetHeight$targetWidth",0,[a,b,c,d],["allowUpscaling","targetHeight","targetWidth"],0))}, -$2$maxWidth$minWidth(a,b){return this.D(this,A.z("$2$maxWidth$minWidth","$2$maxWidth$minWidth",0,[a,b],["maxWidth","minWidth"],0))}, -$2$maxHeight$minHeight(a,b){return this.D(this,A.z("$2$maxHeight$minHeight","$2$maxHeight$minHeight",0,[a,b],["maxHeight","minHeight"],0))}, -$1$side(a){return this.D(this,A.z("$1$side","$1$side",0,[a],["side"],0))}, -$2$email$shouldRecoverAuth(a,b){return this.D(this,A.z("$2$email$shouldRecoverAuth","$2$email$shouldRecoverAuth",0,[a,b],["email","shouldRecoverAuth"],0))}, -$2$decodeDeprecated(a,b){return this.D(this,A.z("$2$decodeDeprecated","$2$decodeDeprecated",0,[a,b],["decodeDeprecated"],0))}, -$2$onError(a,b){return this.D(this,A.z("$2$onError","$2$onError",0,[a,b],["onError"],0))}, -$2$decodeBufferDeprecated(a,b){return this.D(this,A.z("$2$decodeBufferDeprecated","$2$decodeBufferDeprecated",0,[a,b],["decodeBufferDeprecated"],0))}, -$2$decode(a,b){return this.D(this,A.z("$2$decode","$2$decode",0,[a,b],["decode"],0))}, -$3$sigmaX$sigmaY$tileMode(a,b,c){return this.D(this,A.z("$3$sigmaX$sigmaY$tileMode","$3$sigmaX$sigmaY$tileMode",0,[a,b,c],["sigmaX","sigmaY","tileMode"],0))}, -$2$color$fontSize(a,b){return this.D(this,A.z("$2$color$fontSize","$2$color$fontSize",0,[a,b],["color","fontSize"],0))}, -$8$enableDomStorage$enableJavaScript$headers$universalLinksOnly$useSafariVC$useWebView$webOnlyWindowName(a,b,c,d,e,f,g,h){return this.D(this,A.z("$8$enableDomStorage$enableJavaScript$headers$universalLinksOnly$useSafariVC$useWebView$webOnlyWindowName","$8$enableDomStorage$enableJavaScript$headers$universalLinksOnly$useSafariVC$useWebView$webOnlyWindowName",0,[a,b,c,d,e,f,g,h],["enableDomStorage","enableJavaScript","headers","universalLinksOnly","useSafariVC","useWebView","webOnlyWindowName"],0))}, -$2$cause$from(a,b){return this.D(this,A.z("$2$cause$from","$2$cause$from",0,[a,b],["cause","from"],0))}, -$1$composing(a){return this.D(this,A.z("$1$composing","$1$composing",0,[a],["composing"],0))}, -$2$composing$selection(a,b){return this.D(this,A.z("$2$composing$selection","$2$composing$selection",0,[a,b],["composing","selection"],0))}, -$1$selection(a){return this.D(this,A.z("$1$selection","$1$selection",0,[a],["selection"],0))}, -$1$rect(a){return this.D(this,A.z("$1$rect","$1$rect",0,[a],["rect"],0))}, -$4$curve$descendant$duration$rect(a,b,c,d){return this.D(this,A.z("$4$curve$descendant$duration$rect","$4$curve$descendant$duration$rect",0,[a,b,c,d],["curve","descendant","duration","rect"],0))}, -$3$context$style$withComposing(a,b,c){return this.D(this,A.z("$3$context$style$withComposing","$3$context$style$withComposing",0,[a,b,c],["context","style","withComposing"],0))}, -$5$baseline$baselineOffset(a,b,c,d,e){return this.D(this,A.z("$5$baseline$baselineOffset","$5$baseline$baselineOffset",0,[a,b,c,d,e],["baseline","baselineOffset"],0))}, -$4$scale(a,b,c,d){return this.D(this,A.z("$4$scale","$4$scale",0,[a,b,c,d],["scale"],0))}, -$3$curve$duration$rect(a,b,c){return this.D(this,A.z("$3$curve$duration$rect","$3$curve$duration$rect",0,[a,b,c],["curve","duration","rect"],0))}, -$1$affinity(a){return this.D(this,A.z("$1$affinity","$1$affinity",0,[a],["affinity"],0))}, -$3$code$details$message(a,b,c){return this.D(this,A.z("$3$code$details$message","$3$code$details$message",0,[a,b,c],["code","details","message"],0))}, -$2$code$message(a,b){return this.D(this,A.z("$2$code$message","$2$code$message",0,[a,b],["code","message"],0))}, -$1$text(a){return this.D(this,A.z("$1$text","$1$text",0,[a],["text"],0))}, -$2$affinity$extentOffset(a,b){return this.D(this,A.z("$2$affinity$extentOffset","$2$affinity$extentOffset",0,[a,b],["affinity","extentOffset"],0))}, -$9$ascent$baseline$descent$hardBreak$height$left$lineNumber$unscaledAscent$width(a,b,c,d,e,f,g,h,i){return this.D(this,A.z("$9$ascent$baseline$descent$hardBreak$height$left$lineNumber$unscaledAscent$width","$9$ascent$baseline$descent$hardBreak$height$left$lineNumber$unscaledAscent$width",0,[a,b,c,d,e,f,g,h,i],["ascent","baseline","descent","hardBreak","height","left","lineNumber","unscaledAscent","width"],0))}, -$2$overscroll$scrollbars(a,b){return this.D(this,A.z("$2$overscroll$scrollbars","$2$overscroll$scrollbars",0,[a,b],["overscroll","scrollbars"],0))}, -$2$baseOffset$extentOffset(a,b){return this.D(this,A.z("$2$baseOffset$extentOffset","$2$baseOffset$extentOffset",0,[a,b],["baseOffset","extentOffset"],0))}, -$1$extentOffset(a){return this.D(this,A.z("$1$extentOffset","$1$extentOffset",0,[a],["extentOffset"],0))}, -$1$height(a){return this.D(this,A.z("$1$height","$1$height",0,[a],["height"],0))}, -$1$borderSide(a){return this.D(this,A.z("$1$borderSide","$1$borderSide",0,[a],["borderSide"],0))}, -$30$alignLabelWithHint$border$constraints$contentPadding$counterStyle$disabledBorder$enabledBorder$errorBorder$errorMaxLines$errorStyle$fillColor$filled$floatingLabelAlignment$floatingLabelBehavior$floatingLabelStyle$focusColor$focusedBorder$focusedErrorBorder$helperMaxLines$helperStyle$hintStyle$hoverColor$iconColor$isCollapsed$isDense$labelStyle$prefixIconColor$prefixStyle$suffixIconColor$suffixStyle(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0){return this.D(this,A.z("$30$alignLabelWithHint$border$constraints$contentPadding$counterStyle$disabledBorder$enabledBorder$errorBorder$errorMaxLines$errorStyle$fillColor$filled$floatingLabelAlignment$floatingLabelBehavior$floatingLabelStyle$focusColor$focusedBorder$focusedErrorBorder$helperMaxLines$helperStyle$hintStyle$hoverColor$iconColor$isCollapsed$isDense$labelStyle$prefixIconColor$prefixStyle$suffixIconColor$suffixStyle","$30$alignLabelWithHint$border$constraints$contentPadding$counterStyle$disabledBorder$enabledBorder$errorBorder$errorMaxLines$errorStyle$fillColor$filled$floatingLabelAlignment$floatingLabelBehavior$floatingLabelStyle$focusColor$focusedBorder$focusedErrorBorder$helperMaxLines$helperStyle$hintStyle$hoverColor$iconColor$isCollapsed$isDense$labelStyle$prefixIconColor$prefixStyle$suffixIconColor$suffixStyle",0,[a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0],["alignLabelWithHint","border","constraints","contentPadding","counterStyle","disabledBorder","enabledBorder","errorBorder","errorMaxLines","errorStyle","fillColor","filled","floatingLabelAlignment","floatingLabelBehavior","floatingLabelStyle","focusColor","focusedBorder","focusedErrorBorder","helperMaxLines","helperStyle","hintStyle","hoverColor","iconColor","isCollapsed","isDense","labelStyle","prefixIconColor","prefixStyle","suffixIconColor","suffixStyle"],0))}, -$2$enabled$hintMaxLines(a,b){return this.D(this,A.z("$2$enabled$hintMaxLines","$2$enabled$hintMaxLines",0,[a,b],["enabled","hintMaxLines"],0))}, -$4$displayFeatures$padding$viewInsets$viewPadding(a,b,c,d){return this.D(this,A.z("$4$displayFeatures$padding$viewInsets$viewPadding","$4$displayFeatures$padding$viewInsets$viewPadding",0,[a,b,c,d],["displayFeatures","padding","viewInsets","viewPadding"],0))}, -$5$autofocus$focusNode$mouseCursor$painter$size(a,b,c,d,e){return this.D(this,A.z("$5$autofocus$focusNode$mouseCursor$painter$size","$5$autofocus$focusNode$mouseCursor$painter$size",0,[a,b,c,d,e],["autofocus","focusNode","mouseCursor","painter","size"],0))}, -$1$task(a){return this.D(this,A.z("$1$task","$1$task",0,[a],["task"],0))}, -$1$oldWidget(a){return this.D(this,A.z("$1$oldWidget","$1$oldWidget",0,[a],["oldWidget"],0))}, -$6(a,b,c,d,e,f){return this.D(this,A.z("$6","$6",0,[a,b,c,d,e,f],[],0))}, -$2$bottom$top(a,b){return this.D(this,A.z("$2$bottom$top","$2$bottom$top",0,[a,b],["bottom","top"],0))}, -$2$left$right(a,b){return this.D(this,A.z("$2$left$right","$2$left$right",0,[a,b],["left","right"],0))}, -$2$hitTest$paintTransform(a,b){return this.D(this,A.z("$2$hitTest$paintTransform","$2$hitTest$paintTransform",0,[a,b],["hitTest","paintTransform"],0))}, -$3$crossAxisPosition$mainAxisPosition(a,b,c){return this.D(this,A.z("$3$crossAxisPosition$mainAxisPosition","$3$crossAxisPosition$mainAxisPosition",0,[a,b,c],["crossAxisPosition","mainAxisPosition"],0))}, -$2$hitTest$paintOffset(a,b){return this.D(this,A.z("$2$hitTest$paintOffset","$2$hitTest$paintOffset",0,[a,b],["hitTest","paintOffset"],0))}, -$2$continuousModeSteps(a,b){return this.D(this,A.z("$2$continuousModeSteps","$2$continuousModeSteps",0,[a,b],["continuousModeSteps"],0))}, -$1$end(a){return this.D(this,A.z("$1$end","$1$end",0,[a],["end"],0))}, -$1$line(a){return this.D(this,A.z("$1$line","$1$line",0,[a],["line"],0))}, -$2$color(a,b){return this.D(this,A.z("$2$color","$2$color",0,[a,b],["color"],0))}, -$2$withDrive(a,b){return this.D(this,A.z("$2$withDrive","$2$withDrive",0,[a,b],["withDrive"],0))}, -$3$async(a,b,c){return this.D(this,A.z("$3$async","$3$async",0,[a,b,c],["async"],0))}, -$6$blockquoteAlign$blockquoteDecoration$blockquotePadding$code$codeblockDecoration$codeblockPadding(a,b,c,d,e,f){return this.D(this,A.z("$6$blockquoteAlign$blockquoteDecoration$blockquotePadding$code$codeblockDecoration$codeblockPadding","$6$blockquoteAlign$blockquoteDecoration$blockquotePadding$code$codeblockDecoration$codeblockPadding",0,[a,b,c,d,e,f],["blockquoteAlign","blockquoteDecoration","blockquotePadding","code","codeblockDecoration","codeblockPadding"],0))}, -$2$language(a,b){return this.D(this,A.z("$2$language","$2$language",0,[a,b],["language"],0))}, -$3$ignoreIllegals$language(a,b,c){return this.D(this,A.z("$3$ignoreIllegals$language","$3$ignoreIllegals$language",0,[a,b,c],["ignoreIllegals","language"],0))}, -$1$fontFeatures(a){return this.D(this,A.z("$1$fontFeatures","$1$fontFeatures",0,[a],["fontFeatures"],0))}, -$2$chunkCallback(a,b){return this.D(this,A.z("$2$chunkCallback","$2$chunkCallback",0,[a,b],["chunkCallback"],0))}, -$5$getChildren$tag(a,b,c,d,e){return this.D(this,A.z("$5$getChildren$tag","$5$getChildren$tag",0,[a,b,c,d,e],["getChildren","tag"],0))}, -$3$getChildren(a,b,c){return this.D(this,A.z("$3$getChildren","$3$getChildren",0,[a,b,c],["getChildren"],0))}, -$4$getChildren(a,b,c,d){return this.D(this,A.z("$4$getChildren","$4$getChildren",0,[a,b,c,d],["getChildren"],0))}, -$1$parentSyntax(a){return this.D(this,A.z("$1$parentSyntax","$1$parentSyntax",0,[a],["parentSyntax"],0))}, -$3$backgroundColor$fontFamily$fontSize(a,b,c){return this.D(this,A.z("$3$backgroundColor$fontFamily$fontSize","$3$backgroundColor$fontFamily$fontSize",0,[a,b,c],["backgroundColor","fontFamily","fontSize"],0))}, -$2$fontSize$fontWeight(a,b){return this.D(this,A.z("$2$fontSize$fontWeight","$2$fontSize$fontWeight",0,[a,b],["fontSize","fontWeight"],0))}, -$1$fontWeight(a){return this.D(this,A.z("$1$fontWeight","$1$fontWeight",0,[a],["fontWeight"],0))}, -$1$fontStyle(a){return this.D(this,A.z("$1$fontStyle","$1$fontStyle",0,[a],["fontStyle"],0))}, -$1$decoration(a){return this.D(this,A.z("$1$decoration","$1$decoration",0,[a],["decoration"],0))}, -$3$foregroundColor$iconSize$overlayColor(a,b,c){return this.D(this,A.z("$3$foregroundColor$iconSize$overlayColor","$3$foregroundColor$iconSize$overlayColor",0,[a,b,c],["foregroundColor","iconSize","overlayColor"],0))}, -$4$overscroll$physics$platform$scrollbars(a,b,c,d){return this.D(this,A.z("$4$overscroll$physics$platform$scrollbars","$4$overscroll$physics$platform$scrollbars",0,[a,b,c,d],["overscroll","physics","platform","scrollbars"],0))}, -$3$composing$selection$text(a,b,c){return this.D(this,A.z("$3$composing$selection$text","$3$composing$selection$text",0,[a,b,c],["composing","selection","text"],0))}, -$1$direction(a){return this.D(this,A.z("$1$direction","$1$direction",0,[a],["direction"],0))}, -$1$spellCheckService(a){return this.D(this,A.z("$1$spellCheckService","$1$spellCheckService",0,[a],["spellCheckService"],0))}, -$2$name$options(a,b){return this.D(this,A.z("$2$name$options","$2$name$options",0,[a,b],["name","options"],0))}, -$5$elevationAdjustment$parentPaintClipRect$parentSemanticsClipRect$result$siblingNodes(a,b,c,d,e){return this.D(this,A.z("$5$elevationAdjustment$parentPaintClipRect$parentSemanticsClipRect$result$siblingNodes","$5$elevationAdjustment$parentPaintClipRect$parentSemanticsClipRect$result$siblingNodes",0,[a,b,c,d,e],["elevationAdjustment","parentPaintClipRect","parentSemanticsClipRect","result","siblingNodes"],0))}, -$1$config(a){return this.D(this,A.z("$1$config","$1$config",0,[a],["config"],0))}, -$2$descendant$rect(a,b){return this.D(this,A.z("$2$descendant$rect","$2$descendant$rect",0,[a,b],["descendant","rect"],0))}, -$2$ignoreRasterCache(a,b){return this.D(this,A.z("$2$ignoreRasterCache","$2$ignoreRasterCache",0,[a,b],["ignoreRasterCache"],0))}, -$1$3$onlyFirst(a,b,c,d){return this.D(this,A.z("$1$3$onlyFirst","$1$3$onlyFirst",0,[a,b,c,d],["onlyFirst"],1))}, -$1$includeChildren(a){return this.D(this,A.z("$1$includeChildren","$1$includeChildren",0,[a],["includeChildren"],0))}, -$1$oldLayer(a){return this.D(this,A.z("$1$oldLayer","$1$oldLayer",0,[a],["oldLayer"],0))}, -$3$oldLayer(a,b,c){return this.D(this,A.z("$3$oldLayer","$3$oldLayer",0,[a,b,c],["oldLayer"],0))}, -$3$offset$oldLayer(a,b,c){return this.D(this,A.z("$3$offset$oldLayer","$3$offset$oldLayer",0,[a,b,c],["offset","oldLayer"],0))}, -$6$oldLayer(a,b,c,d,e,f){return this.D(this,A.z("$6$oldLayer","$6$oldLayer",0,[a,b,c,d,e,f],["oldLayer"],0))}, -$3$clipBehavior$oldLayer(a,b,c){return this.D(this,A.z("$3$clipBehavior$oldLayer","$3$clipBehavior$oldLayer",0,[a,b,c],["clipBehavior","oldLayer"],0))}, -$2$doAntiAlias(a,b){return this.D(this,A.z("$2$doAntiAlias","$2$doAntiAlias",0,[a,b],["doAntiAlias"],0))}, -$4$isComplexHint$willChangeHint(a,b,c,d){return this.D(this,A.z("$4$isComplexHint$willChangeHint","$4$isComplexHint$willChangeHint",0,[a,b,c,d],["isComplexHint","willChangeHint"],0))}, -$5$borderRadius$shape$textDirection(a,b,c,d,e){return this.D(this,A.z("$5$borderRadius$shape$textDirection","$5$borderRadius$shape$textDirection",0,[a,b,c,d,e],["borderRadius","shape","textDirection"],0))}, -$4$in1$in2$operator$result(a,b,c,d){return this.D(this,A.z("$4$in1$in2$operator$result","$4$in1$in2$operator$result",0,[a,b,c,d],["in1","in2","operator","result"],0))}, -$4$textDirection(a,b,c,d){return this.D(this,A.z("$4$textDirection","$4$textDirection",0,[a,b,c,d],["textDirection"],0))}, -$4$oldLayer(a,b,c,d){return this.D(this,A.z("$4$oldLayer","$4$oldLayer",0,[a,b,c,d],["oldLayer"],0))}, -$2$nextTo(a,b){return this.D(this,A.z("$2$nextTo","$2$nextTo",0,[a,b],["nextTo"],0))}, -$3$blendMode$oldLayer(a,b,c){return this.D(this,A.z("$3$blendMode$oldLayer","$3$blendMode$oldLayer",0,[a,b,c],["blendMode","oldLayer"],0))}, -$2$filterQuality(a,b){return this.D(this,A.z("$2$filterQuality","$2$filterQuality",0,[a,b],["filterQuality"],0))}, -$2$oldLayer(a,b){return this.D(this,A.z("$2$oldLayer","$2$oldLayer",0,[a,b],["oldLayer"],0))}, -$6$gapExtent$gapPercentage$gapStart$textDirection(a,b,c,d,e,f){return this.D(this,A.z("$6$gapExtent$gapPercentage$gapStart$textDirection","$6$gapExtent$gapPercentage$gapStart$textDirection",0,[a,b,c,d,e,f],["gapExtent","gapPercentage","gapStart","textDirection"],0))}, -$2$radius(a,b){return this.D(this,A.z("$2$radius","$2$radius",0,[a,b],["radius"],0))}, -$1$width(a){return this.D(this,A.z("$1$width","$1$width",0,[a],["width"],0))}, -$1$maxWidth(a){return this.D(this,A.z("$1$maxWidth","$1$maxWidth",0,[a],["maxWidth"],0))}, -$1$maxHeight(a){return this.D(this,A.z("$1$maxHeight","$1$maxHeight",0,[a],["maxHeight"],0))}, -$2$parentUsesSize(a,b){return this.D(this,A.z("$2$parentUsesSize","$2$parentUsesSize",0,[a,b],["parentUsesSize"],0))}, -$4$isScrolling$newPosition$oldPosition$velocity(a,b,c,d){return this.D(this,A.z("$4$isScrolling$newPosition$oldPosition$velocity","$4$isScrolling$newPosition$oldPosition$velocity",0,[a,b,c,d],["isScrolling","newPosition","oldPosition","velocity"],0))}, -$2$bottomNavigationBarTop$floatingActionButtonArea(a,b){return this.D(this,A.z("$2$bottomNavigationBarTop$floatingActionButtonArea","$2$bottomNavigationBarTop$floatingActionButtonArea",0,[a,b],["bottomNavigationBarTop","floatingActionButtonArea"],0))}, -$3$treeSanitizer$validator(a,b,c){return this.D(this,A.z("$3$treeSanitizer$validator","$3$treeSanitizer$validator",0,[a,b,c],["treeSanitizer","validator"],0))}, -$2$treeSanitizer(a,b){return this.D(this,A.z("$2$treeSanitizer","$2$treeSanitizer",0,[a,b],["treeSanitizer"],0))}, -h(a,b){return this.D(a,A.z("h","h",0,[b],[],0))}, -hf(a,b){return this.D(a,A.z("hf","hf",0,[b],[],0))}, -cq(){return this.D(this,A.z("cq","cq",0,[],[],0))}, -Ii(a){return this.D(this,A.z("Ii","Ii",0,[a],[],0))}, -zy(a){return this.D(this,A.z("zy","zy",0,[a],[],0))}, -bO(){return this.D(this,A.z("bO","bO",0,[],[],0))}, -of(){return this.D(this,A.z("of","of",0,[],[],0))}, -Z(a,b){return this.D(a,A.z("Z","Z",0,[b],[],0))}, -a6(a,b){return this.D(a,A.z("a6","a6",0,[b],[],0))}, -Y(a,b){return this.D(a,A.z("Y","Y",0,[b],[],0))}, -Du(a){return this.D(a,A.z("Du","Du",0,[],[],0))}, -d1(a){return this.D(a,A.z("d1","d1",0,[],[],0))}, -rK(a){return this.D(a,A.z("rK","rK",0,[],[],0))}, -hy(a,b){return this.D(this,A.z("hy","hy",0,[a,b],[],0))}, -nh(a){return this.D(a,A.z("nh","nh",0,[],[],0))}, -DY(){return this.D(this,A.z("DY","DY",0,[],[],0))}, -xN(a,b){return this.D(a,A.z("xN","xN",0,[b],[],0))}, -qb(a,b){return this.D(a,A.z("qb","qb",0,[b],[],0))}, -CM(a,b,c){return this.D(a,A.z("CM","CM",0,[b,c],[],0))}, -CH(a,b,c){return this.D(a,A.z("CH","CH",0,[b,c],[],0))}, -gp(a){return this.D(a,A.z("gp","gp",1,[],[],0))}, -gdw(a){return this.D(a,A.z("gdw","gdw",1,[],[],0))}, -ghZ(){return this.D(this,A.z("ghZ","ghZ",1,[],[],0))}, -gcG(){return this.D(this,A.z("gcG","gcG",1,[],[],0))}, -giJ(){return this.D(this,A.z("giJ","giJ",1,[],[],0))}, -ghI(a){return this.D(a,A.z("ghI","ghI",1,[],[],0))}, -gql(a){return this.D(a,A.z("gql","gql",1,[],[],0))}, -gn5(a){return this.D(a,A.z("gn5","gn5",1,[],[],0))}, -guQ(a){return this.D(a,A.z("guQ","guQ",1,[],[],0))}, -gAJ(a){return this.D(a,A.z("gAJ","gAJ",1,[],[],0))}, -gvo(a){return this.D(a,A.z("gvo","gvo",1,[],[],0))}, -gDc(a){return this.D(a,A.z("gDc","gDc",1,[],[],0))}, -gtp(a){return this.D(a,A.z("gtp","gtp",1,[],[],0))}, -gCz(a){return this.D(a,A.z("gCz","gCz",1,[],[],0))}, -gAE(a){return this.D(a,A.z("gAE","gAE",1,[],[],0))}, -gCy(a){return this.D(a,A.z("gCy","gCy",1,[],[],0))}, -gxM(a){return this.D(a,A.z("gxM","gxM",1,[],[],0))}, -gmB(a){return this.D(a,A.z("gmB","gmB",1,[],[],0))}, -gmF(a){return this.D(a,A.z("gmF","gmF",1,[],[],0))}, -gqQ(a){return this.D(a,A.z("gqQ","gqQ",1,[],[],0))}, -gk6(a){return this.D(a,A.z("gk6","gk6",1,[],[],0))}, -grz(a){return this.D(a,A.z("grz","grz",1,[],[],0))}, -gr7(a){return this.D(a,A.z("gr7","gr7",1,[],[],0))}, -glX(a){return this.D(a,A.z("glX","glX",1,[],[],0))}, -gvz(a){return this.D(a,A.z("gvz","gvz",1,[],[],0))}, -gBs(a){return this.D(a,A.z("gBs","gBs",1,[],[],0))}, -gCh(a){return this.D(a,A.z("gCh","gCh",1,[],[],0))}, -goM(a){return this.D(a,A.z("goM","goM",1,[],[],0))}, -gB9(a){return this.D(a,A.z("gB9","gB9",1,[],[],0))}, -gCo(a){return this.D(a,A.z("gCo","gCo",1,[],[],0))}, -gwP(a){return this.D(a,A.z("gwP","gwP",1,[],[],0))}, -gDe(a){return this.D(a,A.z("gDe","gDe",1,[],[],0))}, -gDr(a){return this.D(a,A.z("gDr","gDr",1,[],[],0))}, -grB(a){return this.D(a,A.z("grB","grB",1,[],[],0))}, -gn8(a){return this.D(a,A.z("gn8","gn8",1,[],[],0))}, -gxW(a){return this.D(a,A.z("gxW","gxW",1,[],[],0))}, -gAn(a){return this.D(a,A.z("gAn","gAn",1,[],[],0))}, -gxH(a){return this.D(a,A.z("gxH","gxH",1,[],[],0))}, -gC7(a){return this.D(a,A.z("gC7","gC7",1,[],[],0))}, -gCk(a){return this.D(a,A.z("gCk","gCk",1,[],[],0))}, -gDb(a){return this.D(a,A.z("gDb","gDb",1,[],[],0))}, -gDJ(a){return this.D(a,A.z("gDJ","gDJ",1,[],[],0))}, -gqy(a){return this.D(a,A.z("gqy","gqy",1,[],[],0))}, -shZ(a){return this.D(this,A.z("shZ","shZ",2,[a],[],0))}, -scG(a){return this.D(this,A.z("scG","scG",2,[a],[],0))}, -siJ(a){return this.D(this,A.z("siJ","siJ",2,[a],[],0))}, -sdw(a,b){return this.D(a,A.z("sdw","sdw",2,[b],[],0))}} -A.a0f.prototype={ -k(a){return""}, -$id9:1} -A.Es.prototype={ -gWO(){var s,r=this.b -if(r==null)r=$.R1.$0() -s=r-this.a -if($.a3v()===1e6)return s -return s*1000}, -tl(a){var s=this,r=s.b -if(r!=null){s.a=s.a+($.R1.$0()-r) -s.b=null}}, -fc(a){var s=this.b -this.a=s==null?$.R1.$0():s}} -A.ak3.prototype={ -gJ(a){return this.d}, -u(){var s,r,q,p=this,o=p.b=p.c,n=p.a,m=n.length -if(o===m){p.d=-1 -return!1}s=n.charCodeAt(o) -r=o+1 -if((s&64512)===55296&&r4)this.a.$2("an IPv6 part can only contain a maximum of 4 hex digits",a) -s=A.dT(B.c.S(this.b,a,b),16) -if(s<0||s>65535)this.a.$2("each part must be in the range of `0x0..0xFFFF`",a) -return s}, -$S:264} -A.Jg.prototype={ -guA(){var s,r,q,p,o=this,n=o.w -if(n===$){s=o.a -r=s.length!==0?""+s+":":"" -q=o.c -p=q==null -if(!p||s==="file"){s=r+"//" -r=o.b -if(r.length!==0)s=s+r+"@" -if(!p)s+=q -r=o.d -if(r!=null)s=s+":"+A.j(r)}else s=r -s+=o.e -r=o.f -if(r!=null)s=s+"?"+r -r=o.r -if(r!=null)s=s+"#"+r -n!==$&&A.aW() -n=o.w=s.charCodeAt(0)==0?s:s}return n}, -gru(){var s,r,q=this,p=q.x -if(p===$){s=q.e -if(s.length!==0&&s.charCodeAt(0)===47)s=B.c.bK(s,1) -r=s.length===0?B.cm:A.vs(new A.a1(A.b(s.split("/"),t.s),A.b59(),t.cj),t.N) -q.x!==$&&A.aW() -p=q.x=r}return p}, -gA(a){var s,r=this,q=r.y -if(q===$){s=B.c.gA(r.guA()) -r.y!==$&&A.aW() -r.y=s -q=s}return q}, -gp_(){var s,r,q=this,p=q.Q -if(p===$){s=q.f -r=A.b2s(s==null?"":s) -q.Q!==$&&A.aW() -q.Q=r -p=r}return p}, -gxm(){return this.b}, -gjO(a){var s=this.c -if(s==null)return"" -if(B.c.bJ(s,"["))return B.c.S(s,1,s.length-1) -return s}, -grA(a){var s=this.d -return s==null?A.aMo(this.a):s}, -gnc(a){var s=this.f -return s==null?"":s}, -gkE(){var s=this.r -return s==null?"":s}, -KA(a){var s=this.a -if(a.length!==s.length)return!1 -return A.aES(a,s,0)>=0}, -RA(a,b){var s,r,q,p,o,n -for(s=0,r=0;B.c.dv(b,"../",r);){r+=3;++s}q=B.c.oG(a,"/") -while(!0){if(!(q>0&&s>0))break -p=B.c.Cn(a,"/",q-1) -if(p<0)break -o=q-p -n=o!==2 -if(!n||o===3)if(a.charCodeAt(p+1)===46)n=!n||a.charCodeAt(p+2)===46 -else n=!1 -else n=!1 -if(n)break;--s -q=p}return B.c.hM(a,q+1,null,B.c.bK(b,r-3*s))}, -P(a){return this.x4(A.fo(a,0,null))}, -x4(a){var s,r,q,p,o,n,m,l,k,j,i=this,h=null -if(a.gdB().length!==0){s=a.gdB() -if(a.gr6()){r=a.gxm() -q=a.gjO(a) -p=a.gvY()?a.grA(a):h}else{p=h -q=p -r=""}o=A.n4(a.gdL(a)) -n=a.gox()?a.gnc(a):h}else{s=i.a -if(a.gr6()){r=a.gxm() -q=a.gjO(a) -p=A.aEM(a.gvY()?a.grA(a):h,s) -o=A.n4(a.gdL(a)) -n=a.gox()?a.gnc(a):h}else{r=i.b -q=i.c -p=i.d -o=i.e -if(a.gdL(a)==="")n=a.gox()?a.gnc(a):i.f -else{m=A.b2y(i,o) -if(m>0){l=B.c.S(o,0,m) -o=a.gC2()?l+A.n4(a.gdL(a)):l+A.n4(i.RA(B.c.bK(o,l.length),a.gdL(a)))}else if(a.gC2())o=A.n4(a.gdL(a)) -else if(o.length===0)if(q==null)o=s.length===0?a.gdL(a):A.n4(a.gdL(a)) -else o=A.n4("/"+a.gdL(a)) -else{k=i.RA(o,a.gdL(a)) -j=s.length===0 -if(!j||q!=null||B.c.bJ(o,"/"))o=A.n4(k) -else o=A.aEO(k,!j||q!=null)}n=a.gox()?a.gnc(a):h}}}return A.az8(s,r,q,p,o,n,a.gC3()?a.gkE():h)}, -gXF(){return this.a.length!==0}, -gr6(){return this.c!=null}, -gvY(){return this.d!=null}, -gox(){return this.f!=null}, -gC3(){return this.r!=null}, -gC2(){return B.c.bJ(this.e,"/")}, -LR(){var s,r=this,q=r.a -if(q!==""&&q!=="file")throw A.d(A.V("Cannot extract a file path from a "+q+" URI")) -q=r.f -if((q==null?"":q)!=="")throw A.d(A.V(u.z)) -q=r.r -if((q==null?"":q)!=="")throw A.d(A.V(u.B)) -q=$.aGk() -if(q)q=A.aMA(r) -else{if(r.c!=null&&r.gjO(r)!=="")A.U(A.V(u.Q)) -s=r.gru() -A.b2p(s,!1) -q=A.SZ(B.c.bJ(r.e,"/")?""+"/":"",s,"/") -q=q.charCodeAt(0)==0?q:q}return q}, -gqz(a){return this.a==="data"?A.b12(this):null}, -k(a){return this.guA()}, -j(a,b){var s,r,q=this -if(b==null)return!1 -if(q===b)return!0 -if(t.Xu.b(b))if(q.a===b.gdB())if(q.c!=null===b.gr6())if(q.b===b.gxm())if(q.gjO(q)===b.gjO(b))if(q.grA(q)===b.grA(b))if(q.e===b.gdL(b)){s=q.f -r=s==null -if(!r===b.gox()){if(r)s="" -if(s===b.gnc(b)){s=q.r -r=s==null -if(!r===b.gC3()){if(r)s="" -s=s===b.gkE()}else s=!1}else s=!1}else s=!1}else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -return s}, -$ixi:1, -gdB(){return this.a}, -gdL(a){return this.e}} -A.aza.prototype={ -$2(a,b){var s=this.b,r=this.a -s.a+=r.a -r.a="&" -r=s.a+=A.lA(B.fV,a,B.A,!0) -if(b!=null&&b.length!==0){s.a=r+"=" -s.a+=A.lA(B.fV,b,B.A,!0)}}, -$S:182} -A.az9.prototype={ -$2(a,b){var s,r -if(b==null||typeof b=="string")this.a.$2(a,b) -else for(s=J.as(b),r=this.a;s.u();)r.$2(a,s.gJ(s))}, -$S:26} -A.azb.prototype={ -$3(a,b,c){var s,r,q,p -if(a===c)return -s=this.a -r=this.b -if(b<0){q=A.jf(s,a,c,r,!0) -p=""}else{q=A.jf(s,a,b,r,!0) -p=A.jf(s,b+1,c,r,!0)}J.dV(this.c.bT(0,q,A.b5a()),p)}, -$S:268} -A.apX.prototype={ -glW(){var s,r,q,p,o=this,n=null,m=o.c -if(m==null){m=o.a -s=o.b[0]+1 -r=B.c.hd(m,"?",s) -q=m.length -if(r>=0){p=A.Jh(m,r+1,q,B.fY,!1,!1) -q=r}else p=n -m=o.c=new A.W0(o,"data","",n,n,A.Jh(m,s,q,B.nX,!1,!1),p,n)}return m}, -gas7(a){var s=this.b,r=s[0]+1,q=s[1] -if(r===q)return"text/plain" -return A.jf(this.a,r,q,B.A,!1)}, -gamB(a){var s,r=this.a9O() -if(r>=0){s=this.b -return A.jf(this.a,s[r+1]+1,s[r+2],B.A,!1)}return"US-ASCII"}, -a9O(){var s,r,q,p,o=this.b -for(s=this.a,r=3;r<=o.length;r+=2){q=r-2 -p=o[q]+1 -if(o[r-1]===p+7&&A.aES("charset",s,p)>=0)return q}return-1}, -an7(){var s,r,q,p,o,n,m,l,k=this.a,j=this.b,i=B.b.gL(j)+1 -if((j.length&1)===1)return B.it.VO(k,i) -j=k.length -s=j-i -for(r=i;r=0){n=p+1 -q[p]=l -r=m -p=n -continue}}throw A.d(A.bW("Invalid percent escape",k,r))}p=n}return q}, -an8(){var s,r,q,p=this,o=p.gamB(p),n=A.aD0(o) -if(n==null)throw A.d(A.V("Unknown charset: "+o)) -s=p.a -r=p.b -q=B.b.gL(r)+1 -if((r.length&1)===1)return n.gkt().cm(B.it.cm(B.c.bK(s,q))) -return A.jf(s,q,s.length,n,!1)}, -k(a){var s=this.a -return this.b[0]===-1?"data:"+s:s}} -A.azW.prototype={ -$2(a,b){var s=this.a[a] -B.P.aoZ(s,0,96,b) -return s}, -$S:273} -A.azX.prototype={ -$3(a,b,c){var s,r -for(s=b.length,r=0;r>>0]=c}, -$S:186} -A.jd.prototype={ -gXF(){return this.b>0}, -gr6(){return this.c>0}, -gvY(){return this.c>0&&this.d+1=0}, -gdB(){var s=this.w -return s==null?this.w=this.a8d():s}, -a8d(){var s,r=this,q=r.b -if(q<=0)return"" -s=q===4 -if(s&&B.c.bJ(r.a,"http"))return"http" -if(q===5&&B.c.bJ(r.a,"https"))return"https" -if(s&&B.c.bJ(r.a,"file"))return"file" -if(q===7&&B.c.bJ(r.a,"package"))return"package" -return B.c.S(r.a,0,q)}, -gxm(){var s=this.c,r=this.b+3 -return s>r?B.c.S(this.a,r,s-1):""}, -gjO(a){var s=this.c -return s>0?B.c.S(this.a,s,this.d):""}, -grA(a){var s,r=this -if(r.gvY())return A.dT(B.c.S(r.a,r.d+1,r.e),null) -s=r.b -if(s===4&&B.c.bJ(r.a,"http"))return 80 -if(s===5&&B.c.bJ(r.a,"https"))return 443 -return 0}, -gdL(a){return B.c.S(this.a,this.e,this.f)}, -gnc(a){var s=this.f,r=this.r -return s=r.r)return B.u2 -s=A.aMz(r.gnc(r)) -s.a_k(s,A.aNU()) -return A.aCF(s,t.N,t.yp)}, -Rg(a){var s=this.d+1 -return s+a.length===this.e&&B.c.dv(this.a,a,s)}, -atM(){var s=this,r=s.r,q=s.a -if(r>=q.length)return s -return new A.jd(B.c.S(q,0,r),s.b,s.c,s.d,s.e,s.f,r,s.w)}, -P(a){return this.x4(A.fo(a,0,null))}, -x4(a){if(a instanceof A.jd)return this.aj9(this,a) -return this.TL().x4(a)}, -aj9(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c=b.b -if(c>0)return b -s=b.c -if(s>0){r=a.b -if(r<=0)return b -q=r===4 -if(q&&B.c.bJ(a.a,"file"))p=b.e!==b.f -else if(q&&B.c.bJ(a.a,"http"))p=!b.Rg("80") -else p=!(r===5&&B.c.bJ(a.a,"https"))||!b.Rg("443") -if(p){o=r+1 -return new A.jd(B.c.S(a.a,0,o)+B.c.bK(b.a,c+1),r,s+o,b.d+o,b.e+o,b.f+o,b.r+o,a.w)}else return this.TL().x4(b)}n=b.e -c=b.f -if(n===c){s=b.r -if(c0?l:m -o=k-n -return new A.jd(B.c.S(a.a,0,k)+B.c.bK(s,n),a.b,a.c,a.d,m,c+o,b.r+o,a.w)}j=a.e -i=a.f -if(j===i&&a.c>0){for(;B.c.dv(s,"../",n);)n+=3 -o=j-n+1 -return new A.jd(B.c.S(a.a,0,j)+"/"+B.c.bK(s,n),a.b,a.c,a.d,j,c+o,b.r+o,a.w)}h=a.a -l=A.aMc(this) -if(l>=0)g=l -else for(g=j;B.c.dv(h,"../",g);)g+=3 -f=0 -while(!0){e=n+3 -if(!(e<=c&&B.c.dv(s,"../",n)))break;++f -n=e}for(d="";i>g;){--i -if(h.charCodeAt(i)===47){if(f===0){d="/" -break}--f -d="/"}}if(i===g&&a.b<=0&&!B.c.dv(h,"/",j)){n-=f*3 -d=""}o=i-n+d.length -return new A.jd(B.c.S(h,0,i)+d+B.c.bK(s,n),a.b,a.c,a.d,j,c+o,b.r+o,a.w)}, -LR(){var s,r,q=this,p=q.b -if(p>=0){s=!(p===4&&B.c.bJ(q.a,"file")) -p=s}else p=!1 -if(p)throw A.d(A.V("Cannot extract a file path from a "+q.gdB()+" URI")) -p=q.f -s=q.a -if(p0?s.gjO(s):r,n=s.gvY()?s.grA(s):r,m=s.a,l=s.f,k=B.c.S(m,s.e,l),j=s.r -l=l>>0!==b||b>=s -r.toString -if(r)throw A.d(A.dv(b,s,a,null,null)) -s=a[b] -s.toString -return s}, -m(a,b,c){throw A.d(A.V("Cannot assign element of immutable List."))}, -sp(a,b){throw A.d(A.V("Cannot resize immutable List."))}, -gM(a){var s -if(a.length>0){s=a[0] -s.toString -return s}throw A.d(A.a4("No elements"))}, -gL(a){var s,r=a.length -if(r>0){s=a[r-1] -s.toString -return s}throw A.d(A.a4("No elements"))}, -bp(a,b){return a[b]}, -$ibx:1, -$ia7:1, -$ibI:1, -$iq:1, -$iB:1} -A.An.prototype={ -k(a){var s,r=a.left -r.toString -s=a.top -s.toString -return"Rectangle ("+A.j(r)+", "+A.j(s)+") "+A.j(this.gdg(a))+" x "+A.j(this.gce(a))}, -j(a,b){var s,r -if(b==null)return!1 -if(t.Bb.b(b)){s=a.left -s.toString -r=J.bh(b) -if(s===r.gj6(b)){s=a.top -s.toString -s=s===r.grL(b)&&this.gdg(a)===r.gdg(b)&&this.gce(a)===r.gce(b)}else s=!1}else s=!1 -return s}, -gA(a){var s,r=a.left -r.toString -s=a.top -s.toString -return A.T(r,s,this.gdg(a),this.gce(a),B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -gQY(a){return a.height}, -gce(a){var s=this.gQY(a) -s.toString -return s}, -gj6(a){var s=a.left -s.toString -return s}, -grL(a){var s=a.top -s.toString -return s}, -gUF(a){return a.width}, -gdg(a){var s=this.gUF(a) -s.toString -return s}, -$iip:1} -A.MW.prototype={ -gp(a){var s=a.length -s.toString -return s}, -h(a,b){var s=a.length,r=b>>>0!==b||b>=s -r.toString -if(r)throw A.d(A.dv(b,s,a,null,null)) -s=a[b] -s.toString -return s}, -m(a,b,c){throw A.d(A.V("Cannot assign element of immutable List."))}, -sp(a,b){throw A.d(A.V("Cannot resize immutable List."))}, -gM(a){var s -if(a.length>0){s=a[0] -s.toString -return s}throw A.d(A.a4("No elements"))}, -gL(a){var s,r=a.length -if(r>0){s=a[r-1] -s.toString -return s}throw A.d(A.a4("No elements"))}, -bp(a,b){return a[b]}, -$ibx:1, -$ia7:1, -$ibI:1, -$iq:1, -$iB:1} -A.MY.prototype={ -gp(a){var s=a.length -s.toString -return s}} -A.Vf.prototype={ -t(a,b){return J.yU(this.b,b)}, -ga8(a){return this.a.firstElementChild==null}, -gp(a){return this.b.length}, -h(a,b){return t.lU.a(this.b[b])}, -m(a,b,c){this.a.replaceChild(c,this.b[b]).toString}, -sp(a,b){throw A.d(A.V("Cannot resize element lists"))}, -E(a,b){this.a.appendChild(b).toString -return b}, -ga9(a){var s=this.eM(this) -return new J.dj(s,s.length,A.W(s).i("dj<1>"))}, -K(a,b){A.b1q(this.a,b)}, -dX(a,b){throw A.d(A.V("Cannot sort element lists"))}, -eL(a,b,c){throw A.d(A.cu(null))}, -bx(a,b,c,d,e){throw A.d(A.cu(null))}, -dh(a,b,c,d){return this.bx(a,b,c,d,0)}, -F(a,b){return A.b1s(this.a,b)}, -eY(a,b,c){var s,r=this,q=r.b,p=q.length -if(b>p)throw A.d(A.bZ(b,0,r.gp(r),null,null)) -s=r.a -if(b===p)s.appendChild(c).toString -else s.insertBefore(c,t.lU.a(q[b])).toString}, -fn(a,b,c){throw A.d(A.cu(null))}, -fA(a,b,c){throw A.d(A.cu(null))}, -ck(a,b){var s=t.lU.a(this.b[b]) -this.a.removeChild(s).toString -return s}, -dT(a){var s=this.gL(this) -this.a.removeChild(s).toString -return s}, -gM(a){return A.b1r(this.a)}, -gL(a){var s=this.a.lastElementChild -if(s==null)throw A.d(A.a4("No elements")) -return s}} -A.bK.prototype={ -gql(a){return new A.Gv(a)}, -sql(a,b){var s,r,q -new A.Gv(a).a0(0) -for(s=A.fh(b,b.r,A.p(b).c);s.u();){r=s.d -q=b.h(0,r) -q.toString -a.setAttribute(r,q)}}, -gfM(a){var s=a.children -s.toString -return new A.Vf(a,s)}, -k(a){var s=a.localName -s.toString -return s}, -ks(a,b,c,d){var s,r,q,p -if(c==null){s=$.aIt -if(s==null){s=A.b([],t.qF) -r=new A.Ck(s) -s.push(A.aLU(null)) -s.push(A.aMe()) -$.aIt=r -d=r}else d=s -s=$.aIs -if(s==null){d.toString -s=new A.a1C(d) -$.aIs=s -c=s}else{d.toString -s.a=d -c=s}}if($.nK==null){s=document -r=s.implementation.createHTMLDocument("") -r.toString -$.nK=r -r=r.createRange() -r.toString -$.aCZ=r -r=$.nK.createElement("base") -t.N2.a(r) -s=s.baseURI -s.toString -r.href=s -$.nK.head.appendChild(r).toString}s=$.nK -if(s.body==null){r=s.createElement("body") -s.body=t.C4.a(r)}s=$.nK -if(t.C4.b(a)){s=s.body -s.toString -q=s}else{s.toString -r=a.tagName -r.toString -q=s.createElement(r) -$.nK.body.appendChild(q).toString}s="createContextualFragment" in window.Range.prototype -s.toString -if(s){s=a.tagName -s.toString -s=!B.b.t(B.I8,s)}else s=!1 -if(s){$.aCZ.selectNodeContents(q) -s=$.aCZ -s=s.createContextualFragment(b) -s.toString -p=s}else{q.innerHTML=b -s=$.nK.createDocumentFragment() -s.toString -for(;r=q.firstChild,r!=null;)s.appendChild(r).toString -p=s}if(q!==$.nK.body)J.tQ(q) -c.ME(p) -document.adoptNode(p).toString -return p}, -anR(a,b,c){return this.ks(a,b,c,null)}, -a0L(a,b){a.textContent=null -a.appendChild(this.ks(a,b,null,null)).toString}, -$ibK:1} -A.a8x.prototype={ -$1(a){return t.lU.b(a)}, -$S:190} -A.aw.prototype={$iaw:1} -A.ac.prototype={ -uI(a,b,c,d){if(c!=null)this.adO(a,b,c,!1)}, -adO(a,b,c,d){return a.addEventListener(b,A.pD(c,1),!1)}, -ahy(a,b,c,d){return a.removeEventListener(b,A.pD(c,1),!1)}} -A.h2.prototype={$ih2:1} -A.No.prototype={ -gp(a){var s=a.length -s.toString -return s}, -h(a,b){var s=a.length,r=b>>>0!==b||b>=s -r.toString -if(r)throw A.d(A.dv(b,s,a,null,null)) -s=a[b] -s.toString -return s}, -m(a,b,c){throw A.d(A.V("Cannot assign element of immutable List."))}, -sp(a,b){throw A.d(A.V("Cannot resize immutable List."))}, -gM(a){var s -if(a.length>0){s=a[0] -s.toString -return s}throw A.d(A.a4("No elements"))}, -gL(a){var s,r=a.length -if(r>0){s=a[r-1] -s.toString -return s}throw A.d(A.a4("No elements"))}, -bp(a,b){return a[b]}, -$ibx:1, -$ia7:1, -$ibI:1, -$iq:1, -$iB:1} -A.Nq.prototype={ -gp(a){return a.length}} -A.NQ.prototype={ -gp(a){return a.length}} -A.h4.prototype={$ih4:1} -A.Od.prototype={ -gp(a){var s=a.length -s.toString -return s}} -A.qM.prototype={ -gp(a){var s=a.length -s.toString -return s}, -h(a,b){var s=a.length,r=b>>>0!==b||b>=s -r.toString -if(r)throw A.d(A.dv(b,s,a,null,null)) -s=a[b] -s.toString -return s}, -m(a,b,c){throw A.d(A.V("Cannot assign element of immutable List."))}, -sp(a,b){throw A.d(A.V("Cannot resize immutable List."))}, -gM(a){var s -if(a.length>0){s=a[0] -s.toString -return s}throw A.d(A.a4("No elements"))}, -gL(a){var s,r=a.length -if(r>0){s=a[r-1] -s.toString -return s}throw A.d(A.a4("No elements"))}, -bp(a,b){return a[b]}, -$ibx:1, -$ia7:1, -$ibI:1, -$iq:1, -$iB:1} -A.nV.prototype={ -gau0(a){var s,r,q,p,o,n,m=t.N,l=A.m(m,m),k=a.getAllResponseHeaders(),j=k.split("\r\n") -for(m=j.length,s=0;s>>0!==b||b>=s -r.toString -if(r)throw A.d(A.dv(b,s,a,null,null)) -s=a[b] -s.toString -return s}, -m(a,b,c){throw A.d(A.V("Cannot assign element of immutable List."))}, -sp(a,b){throw A.d(A.V("Cannot resize immutable List."))}, -gM(a){var s -if(a.length>0){s=a[0] -s.toString -return s}throw A.d(A.a4("No elements"))}, -gL(a){var s,r=a.length -if(r>0){s=a[r-1] -s.toString -return s}throw A.d(A.a4("No elements"))}, -bp(a,b){return a[b]}, -$ibx:1, -$ia7:1, -$ibI:1, -$iq:1, -$iB:1} -A.eN.prototype={ -gM(a){var s=this.a.firstChild -if(s==null)throw A.d(A.a4("No elements")) -return s}, -gL(a){var s=this.a.lastChild -if(s==null)throw A.d(A.a4("No elements")) -return s}, -gbD(a){var s=this.a,r=s.childNodes.length -if(r===0)throw A.d(A.a4("No elements")) -if(r>1)throw A.d(A.a4("More than one element")) -s=s.firstChild -s.toString -return s}, -E(a,b){this.a.appendChild(b).toString}, -K(a,b){var s,r,q,p,o -if(b instanceof A.eN){s=b.a -r=this.a -if(s!==r)for(q=s.childNodes.length,p=0;pq)throw A.d(A.bZ(b,0,this.gp(this),null,null)) -if(b===q)s.appendChild(c).toString -else s.insertBefore(c,r[b]).toString}, -fn(a,b,c){var s=this.a,r=s.childNodes -if(b===r.length)this.K(0,c) -else J.aGZ(s,c,r[b])}, -fA(a,b,c){throw A.d(A.V("Cannot setAll on Node list"))}, -dT(a){var s=this.gL(this) -this.a.removeChild(s).toString -return s}, -ck(a,b){var s=this.a,r=s.childNodes[b] -s.removeChild(r).toString -return r}, -F(a,b){return!1}, -m(a,b,c){var s=this.a -s.replaceChild(c,s.childNodes[b]).toString}, -ga9(a){var s=this.a.childNodes -return new A.uS(s,s.length,A.by(s).i("uS"))}, -dX(a,b){throw A.d(A.V("Cannot sort Node list"))}, -bx(a,b,c,d,e){throw A.d(A.V("Cannot setRange on Node list"))}, -dh(a,b,c,d){return this.bx(a,b,c,d,0)}, -eL(a,b,c){throw A.d(A.V("Cannot removeRange on Node list"))}, -gp(a){return this.a.childNodes.length}, -sp(a,b){throw A.d(A.V("Cannot set length on immutable List."))}, -h(a,b){return this.a.childNodes[b]}} -A.aP.prototype={ -ez(a){var s=a.parentNode -if(s!=null)s.removeChild(a).toString}, -atV(a,b){var s,r,q -try{r=a.parentNode -r.toString -s=r -J.aUT(s,b,a)}catch(q){}return a}, -aqY(a,b,c){var s,r,q,p -if(b instanceof A.eN){s=b.a -if(s===a)throw A.d(A.bF(b,null)) -for(r=s.childNodes.length,q=0;q>>0!==b||b>=s -r.toString -if(r)throw A.d(A.dv(b,s,a,null,null)) -s=a[b] -s.toString -return s}, -m(a,b,c){throw A.d(A.V("Cannot assign element of immutable List."))}, -sp(a,b){throw A.d(A.V("Cannot resize immutable List."))}, -gM(a){var s -if(a.length>0){s=a[0] -s.toString -return s}throw A.d(A.a4("No elements"))}, -gL(a){var s,r=a.length -if(r>0){s=a[r-1] -s.toString -return s}throw A.d(A.a4("No elements"))}, -bp(a,b){return a[b]}, -$ibx:1, -$ia7:1, -$ibI:1, -$iq:1, -$iB:1} -A.hd.prototype={ -gp(a){return a.length}, -$ihd:1} -A.QV.prototype={ -gp(a){var s=a.length -s.toString -return s}, -h(a,b){var s=a.length,r=b>>>0!==b||b>=s -r.toString -if(r)throw A.d(A.dv(b,s,a,null,null)) -s=a[b] -s.toString -return s}, -m(a,b,c){throw A.d(A.V("Cannot assign element of immutable List."))}, -sp(a,b){throw A.d(A.V("Cannot resize immutable List."))}, -gM(a){var s -if(a.length>0){s=a[0] -s.toString -return s}throw A.d(A.a4("No elements"))}, -gL(a){var s,r=a.length -if(r>0){s=a[r-1] -s.toString -return s}throw A.d(A.a4("No elements"))}, -bp(a,b){return a[b]}, -$ibx:1, -$ia7:1, -$ibI:1, -$iq:1, -$iB:1} -A.l1.prototype={$il1:1} -A.RT.prototype={ -ak(a,b){return A.jh(a.get(b))!=null}, -h(a,b){return A.jh(a.get(b))}, -N(a,b){var s,r,q=a.entries() -for(;!0;){s=q.next() -r=s.done -r.toString -if(r)return -r=s.value[0] -r.toString -b.$2(r,A.jh(s.value[1]))}}, -gbI(a){var s=A.b([],t.s) -this.N(a,new A.ak0(s)) -return s}, -gaR(a){var s=A.b([],t.n4) -this.N(a,new A.ak1(s)) -return s}, -gp(a){var s=a.size -s.toString -return s}, -ga8(a){var s=a.size -s.toString -return s===0}, -gc3(a){var s=a.size -s.toString -return s!==0}, -m(a,b,c){throw A.d(A.V("Not supported"))}, -bT(a,b,c){throw A.d(A.V("Not supported"))}, -F(a,b){throw A.d(A.V("Not supported"))}, -$iaz:1} -A.ak0.prototype={ -$2(a,b){return this.a.push(a)}, -$S:26} -A.ak1.prototype={ -$2(a,b){return this.a.push(b)}, -$S:26} -A.DG.prototype={} -A.Sb.prototype={ -gp(a){return a.length}} -A.hg.prototype={$ihg:1} -A.SK.prototype={ -gp(a){var s=a.length -s.toString -return s}, -h(a,b){var s=a.length,r=b>>>0!==b||b>=s -r.toString -if(r)throw A.d(A.dv(b,s,a,null,null)) -s=a[b] -s.toString -return s}, -m(a,b,c){throw A.d(A.V("Cannot assign element of immutable List."))}, -sp(a,b){throw A.d(A.V("Cannot resize immutable List."))}, -gM(a){var s -if(a.length>0){s=a[0] -s.toString -return s}throw A.d(A.a4("No elements"))}, -gL(a){var s,r=a.length -if(r>0){s=a[r-1] -s.toString -return s}throw A.d(A.a4("No elements"))}, -bp(a,b){return a[b]}, -$ibx:1, -$ia7:1, -$ibI:1, -$iq:1, -$iB:1} -A.hh.prototype={$ihh:1} -A.SS.prototype={ -gp(a){var s=a.length -s.toString -return s}, -h(a,b){var s=a.length,r=b>>>0!==b||b>=s -r.toString -if(r)throw A.d(A.dv(b,s,a,null,null)) -s=a[b] -s.toString -return s}, -m(a,b,c){throw A.d(A.V("Cannot assign element of immutable List."))}, -sp(a,b){throw A.d(A.V("Cannot resize immutable List."))}, -gM(a){var s -if(a.length>0){s=a[0] -s.toString -return s}throw A.d(A.a4("No elements"))}, -gL(a){var s,r=a.length -if(r>0){s=a[r-1] -s.toString -return s}throw A.d(A.a4("No elements"))}, -bp(a,b){return a[b]}, -$ibx:1, -$ia7:1, -$ibI:1, -$iq:1, -$iB:1} -A.hi.prototype={ -gp(a){return a.length}, -$ihi:1} -A.Et.prototype={ -ak(a,b){return a.getItem(A.aQ(b))!=null}, -h(a,b){return a.getItem(A.aQ(b))}, -m(a,b,c){a.setItem(b,c)}, -bT(a,b,c){var s -if(a.getItem(b)==null)a.setItem(b,c.$0()) -s=a.getItem(b) -return s==null?A.aQ(s):s}, -F(a,b){var s -A.aQ(b) -s=a.getItem(b) -a.removeItem(b) -return s}, -N(a,b){var s,r,q -for(s=0;!0;++s){r=a.key(s) -if(r==null)return -q=a.getItem(r) -q.toString -b.$2(r,q)}}, -gbI(a){var s=A.b([],t.s) -this.N(a,new A.amD(s)) -return s}, -gaR(a){var s=A.b([],t.s) -this.N(a,new A.amE(s)) -return s}, -gp(a){var s=a.length -s.toString -return s}, -ga8(a){return a.key(0)==null}, -gc3(a){return a.key(0)!=null}, -$iaz:1} -A.amD.prototype={ -$2(a,b){return this.a.push(a)}, -$S:83} -A.amE.prototype={ -$2(a,b){return this.a.push(b)}, -$S:83} -A.fl.prototype={$ifl:1} -A.EF.prototype={ -ks(a,b,c,d){var s,r="createContextualFragment" in window.Range.prototype -r.toString -if(r)return this.Ew(a,b,c,d) -s=A.aXN(""+b+"
",c,d) -r=document.createDocumentFragment() -r.toString -new A.eN(r).K(0,new A.eN(s)) -return r}} -A.Tb.prototype={ -ks(a,b,c,d){var s,r="createContextualFragment" in window.Range.prototype -r.toString -if(r)return this.Ew(a,b,c,d) -r=document -s=r.createDocumentFragment() -s.toString -r=r.createElement("table") -r.toString -r=new A.eN(B.zh.ks(r,b,c,d)) -r=new A.eN(r.gbD(r)) -new A.eN(s).K(0,new A.eN(r.gbD(r))) -return s}} -A.Tc.prototype={ -ks(a,b,c,d){var s,r="createContextualFragment" in window.Range.prototype -r.toString -if(r)return this.Ew(a,b,c,d) -r=document -s=r.createDocumentFragment() -s.toString -r=r.createElement("table") -r.toString -r=new A.eN(B.zh.ks(r,b,c,d)) -new A.eN(s).K(0,new A.eN(r.gbD(r))) -return s}} -A.wX.prototype={$iwX:1} -A.ho.prototype={$iho:1} -A.fm.prototype={$ifm:1} -A.TE.prototype={ -gp(a){var s=a.length -s.toString -return s}, -h(a,b){var s=a.length,r=b>>>0!==b||b>=s -r.toString -if(r)throw A.d(A.dv(b,s,a,null,null)) -s=a[b] -s.toString -return s}, -m(a,b,c){throw A.d(A.V("Cannot assign element of immutable List."))}, -sp(a,b){throw A.d(A.V("Cannot resize immutable List."))}, -gM(a){var s -if(a.length>0){s=a[0] -s.toString -return s}throw A.d(A.a4("No elements"))}, -gL(a){var s,r=a.length -if(r>0){s=a[r-1] -s.toString -return s}throw A.d(A.a4("No elements"))}, -bp(a,b){return a[b]}, -$ibx:1, -$ia7:1, -$ibI:1, -$iq:1, -$iB:1} -A.TF.prototype={ -gp(a){var s=a.length -s.toString -return s}, -h(a,b){var s=a.length,r=b>>>0!==b||b>=s -r.toString -if(r)throw A.d(A.dv(b,s,a,null,null)) -s=a[b] -s.toString -return s}, -m(a,b,c){throw A.d(A.V("Cannot assign element of immutable List."))}, -sp(a,b){throw A.d(A.V("Cannot resize immutable List."))}, -gM(a){var s -if(a.length>0){s=a[0] -s.toString -return s}throw A.d(A.a4("No elements"))}, -gL(a){var s,r=a.length -if(r>0){s=a[r-1] -s.toString -return s}throw A.d(A.a4("No elements"))}, -bp(a,b){return a[b]}, -$ibx:1, -$ia7:1, -$ibI:1, -$iq:1, -$iB:1} -A.TI.prototype={ -gp(a){var s=a.length -s.toString -return s}} -A.hp.prototype={$ihp:1} -A.TN.prototype={ -gp(a){var s=a.length -s.toString -return s}, -h(a,b){var s=a.length,r=b>>>0!==b||b>=s -r.toString -if(r)throw A.d(A.dv(b,s,a,null,null)) -s=a[b] -s.toString -return s}, -m(a,b,c){throw A.d(A.V("Cannot assign element of immutable List."))}, -sp(a,b){throw A.d(A.V("Cannot resize immutable List."))}, -gM(a){var s -if(a.length>0){s=a[0] -s.toString -return s}throw A.d(A.a4("No elements"))}, -gL(a){var s,r=a.length -if(r>0){s=a[r-1] -s.toString -return s}throw A.d(A.a4("No elements"))}, -bp(a,b){return a[b]}, -$ibx:1, -$ia7:1, -$ibI:1, -$iq:1, -$iB:1} -A.TO.prototype={ -gp(a){return a.length}} -A.U4.prototype={ -k(a){var s=String(a) -s.toString -return s}} -A.Ub.prototype={ -gp(a){return a.length}} -A.p9.prototype={ -asW(a,b,c){var s=A.b1u(a.open(b,c)) -return s}, -$ip9:1} -A.lq.prototype={$ilq:1} -A.xw.prototype={$ixw:1} -A.VH.prototype={ -gp(a){var s=a.length -s.toString -return s}, -h(a,b){var s=a.length,r=b>>>0!==b||b>=s -r.toString -if(r)throw A.d(A.dv(b,s,a,null,null)) -s=a[b] -s.toString -return s}, -m(a,b,c){throw A.d(A.V("Cannot assign element of immutable List."))}, -sp(a,b){throw A.d(A.V("Cannot resize immutable List."))}, -gM(a){var s -if(a.length>0){s=a[0] -s.toString -return s}throw A.d(A.a4("No elements"))}, -gL(a){var s,r=a.length -if(r>0){s=a[r-1] -s.toString -return s}throw A.d(A.a4("No elements"))}, -bp(a,b){return a[b]}, -$ibx:1, -$ia7:1, -$ibI:1, -$iq:1, -$iB:1} -A.Gh.prototype={ -k(a){var s,r,q,p=a.left -p.toString -s=a.top -s.toString -r=a.width -r.toString -q=a.height -q.toString -return"Rectangle ("+A.j(p)+", "+A.j(s)+") "+A.j(r)+" x "+A.j(q)}, -j(a,b){var s,r -if(b==null)return!1 -if(t.Bb.b(b)){s=a.left -s.toString -r=J.bh(b) -if(s===r.gj6(b)){s=a.top -s.toString -if(s===r.grL(b)){s=a.width -s.toString -if(s===r.gdg(b)){s=a.height -s.toString -r=s===r.gce(b) -s=r}else s=!1}else s=!1}else s=!1}else s=!1 -return s}, -gA(a){var s,r,q,p=a.left -p.toString -s=a.top -s.toString -r=a.width -r.toString -q=a.height -q.toString -return A.T(p,s,r,q,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -gQY(a){return a.height}, -gce(a){var s=a.height -s.toString -return s}, -gUF(a){return a.width}, -gdg(a){var s=a.width -s.toString -return s}} -A.X4.prototype={ -gp(a){var s=a.length -s.toString -return s}, -h(a,b){var s=a.length,r=b>>>0!==b||b>=s -r.toString -if(r)throw A.d(A.dv(b,s,a,null,null)) -return a[b]}, -m(a,b,c){throw A.d(A.V("Cannot assign element of immutable List."))}, -sp(a,b){throw A.d(A.V("Cannot resize immutable List."))}, -gM(a){if(a.length>0)return a[0] -throw A.d(A.a4("No elements"))}, -gL(a){var s=a.length -if(s>0)return a[s-1] -throw A.d(A.a4("No elements"))}, -bp(a,b){return a[b]}, -$ibx:1, -$ia7:1, -$ibI:1, -$iq:1, -$iB:1} -A.Hs.prototype={ -gp(a){var s=a.length -s.toString -return s}, -h(a,b){var s=a.length,r=b>>>0!==b||b>=s -r.toString -if(r)throw A.d(A.dv(b,s,a,null,null)) -s=a[b] -s.toString -return s}, -m(a,b,c){throw A.d(A.V("Cannot assign element of immutable List."))}, -sp(a,b){throw A.d(A.V("Cannot resize immutable List."))}, -gM(a){var s -if(a.length>0){s=a[0] -s.toString -return s}throw A.d(A.a4("No elements"))}, -gL(a){var s,r=a.length -if(r>0){s=a[r-1] -s.toString -return s}throw A.d(A.a4("No elements"))}, -bp(a,b){return a[b]}, -$ibx:1, -$ia7:1, -$ibI:1, -$iq:1, -$iB:1} -A.a03.prototype={ -gp(a){var s=a.length -s.toString -return s}, -h(a,b){var s=a.length,r=b>>>0!==b||b>=s -r.toString -if(r)throw A.d(A.dv(b,s,a,null,null)) -s=a[b] -s.toString -return s}, -m(a,b,c){throw A.d(A.V("Cannot assign element of immutable List."))}, -sp(a,b){throw A.d(A.V("Cannot resize immutable List."))}, -gM(a){var s -if(a.length>0){s=a[0] -s.toString -return s}throw A.d(A.a4("No elements"))}, -gL(a){var s,r=a.length -if(r>0){s=a[r-1] -s.toString -return s}throw A.d(A.a4("No elements"))}, -bp(a,b){return a[b]}, -$ibx:1, -$ia7:1, -$ibI:1, -$iq:1, -$iB:1} -A.a0h.prototype={ -gp(a){var s=a.length -s.toString -return s}, -h(a,b){var s=a.length,r=b>>>0!==b||b>=s -r.toString -if(r)throw A.d(A.dv(b,s,a,null,null)) -s=a[b] -s.toString -return s}, -m(a,b,c){throw A.d(A.V("Cannot assign element of immutable List."))}, -sp(a,b){throw A.d(A.V("Cannot resize immutable List."))}, -gM(a){var s -if(a.length>0){s=a[0] -s.toString -return s}throw A.d(A.a4("No elements"))}, -gL(a){var s,r=a.length -if(r>0){s=a[r-1] -s.toString -return s}throw A.d(A.a4("No elements"))}, -bp(a,b){return a[b]}, -$ibx:1, -$ia7:1, -$ibI:1, -$iq:1, -$iB:1} -A.UQ.prototype={ -hz(a,b,c){var s=t.N -return A.aDz(this,s,s,b,c)}, -bT(a,b,c){var s=this.a,r=s.hasAttribute(b) -r.toString -if(!r)s.setAttribute(b,c.$0()) -s=s.getAttribute(b) -return s==null?A.aQ(s):s}, -a0(a){var s,r,q,p,o -for(s=this.gbI(this),r=s.length,q=this.a,p=0;p"))}, -E(a,b){throw A.d(A.V("Cannot add to immutable List."))}, -K(a,b){throw A.d(A.V("Cannot add to immutable List."))}, -dX(a,b){throw A.d(A.V("Cannot sort immutable List."))}, -eY(a,b,c){throw A.d(A.V("Cannot add to immutable List."))}, -fn(a,b,c){throw A.d(A.V("Cannot add to immutable List."))}, -fA(a,b,c){throw A.d(A.V("Cannot modify an immutable List."))}, -ck(a,b){throw A.d(A.V("Cannot remove from immutable List."))}, -dT(a){throw A.d(A.V("Cannot remove from immutable List."))}, -F(a,b){throw A.d(A.V("Cannot remove from immutable List."))}, -bx(a,b,c,d,e){throw A.d(A.V("Cannot setRange on immutable List."))}, -dh(a,b,c,d){return this.bx(a,b,c,d,0)}, -eL(a,b,c){throw A.d(A.V("Cannot removeRange on immutable List."))}} -A.Ck.prototype={ -qd(a){return B.b.dN(this.a,new A.agV(a))}, -ms(a,b,c){return B.b.dN(this.a,new A.agU(a,b,c))}, -$ikT:1} -A.agV.prototype={ -$1(a){return a.qd(this.a)}, -$S:124} -A.agU.prototype={ -$1(a){return a.ms(this.a,this.b,this.c)}, -$S:124} -A.Iy.prototype={ -a6d(a,b,c,d){var s,r,q -this.a.K(0,c) -s=b.iv(0,new A.axs()) -r=b.iv(0,new A.axt()) -this.b.K(0,s) -q=this.c -q.K(0,B.cm) -q.K(0,r)}, -qd(a){return this.a.t(0,A.Aw(a))}, -ms(a,b,c){var s,r=this,q=A.Aw(a),p=r.c,o=q+"::"+b -if(p.t(0,o))return r.d.alV(c) -else{s="*::"+b -if(p.t(0,s))return r.d.alV(c) -else{p=r.b -if(p.t(0,o))return!0 -else if(p.t(0,s))return!0 -else if(p.t(0,q+"::*"))return!0 -else if(p.t(0,"*::*"))return!0}}return!1}, -$ikT:1} -A.axs.prototype={ -$1(a){return!B.b.t(B.jz,a)}, -$S:23} -A.axt.prototype={ -$1(a){return B.b.t(B.jz,a)}, -$S:23} -A.a0z.prototype={ -ms(a,b,c){if(this.a4U(a,b,c))return!0 -if(b==="template"&&c==="")return!0 -if(a.getAttribute("template")==="")return this.e.t(0,b) -return!1}} -A.ayd.prototype={ -$1(a){return"TEMPLATE::"+a}, -$S:31} -A.a0i.prototype={ -qd(a){var s -if(t.MF.b(a))return!1 -s=t.IP.b(a) -if(s&&A.Aw(a)==="foreignObject")return!1 -if(s)return!0 -return!1}, -ms(a,b,c){if(b==="is"||B.c.bJ(b,"on"))return!1 -return this.qd(a)}, -$ikT:1} -A.uS.prototype={ -u(){var s=this,r=s.c+1,q=s.b -if(r") -return}if(!l.a.qd(a)){l.un(a,b) -window.toString -s=A.j(b) -r=typeof console!="undefined" -r.toString -if(r)window.console.warn("Removing disallowed element <"+e+"> from "+s) -return}if(g!=null)if(!l.a.ms(a,"is",g)){l.un(a,b) -window.toString -s=typeof console!="undefined" -s.toString -if(s)window.console.warn("Removing disallowed type extension <"+e+' is="'+g+'">') -return}s=f.gbI(f) -q=A.b(s.slice(0),A.W(s)) -for(p=f.gbI(f).length-1,s=f.a,r="Removing disallowed attribute <"+e+" ";p>=0;--p){o=q[p] -n=l.a -m=J.aVJ(o) -A.aQ(o) -if(!n.ms(a,m,s.getAttribute(o))){window.toString -n=s.getAttribute(o) -m=typeof console!="undefined" -m.toString -if(m)window.console.warn(r+o+'="'+A.j(n)+'">') -s.removeAttribute(o)}}if(t.aW.b(a)){s=a.content -s.toString -l.ME(s)}}, -a0m(a,b){var s=a.nodeType -s.toString -switch(s){case 1:this.aia(a,b) -break -case 8:case 11:case 3:case 4:break -default:this.un(a,b)}}} -A.azg.prototype={ -$2(a,b){var s,r,q,p,o,n=this.a -n.a0m(a,b) -s=a.lastChild -for(;s!=null;){r=null -try{r=s.previousSibling -if(r!=null){q=r.nextSibling -p=s -p=q==null?p!=null:q!==p -q=p}else q=!1 -if(q){q=A.a4("Corrupt HTML") -throw A.d(q)}}catch(o){q=s;++n.b -p=q.parentNode -if(a!==p){if(p!=null)p.removeChild(q).toString}else a.removeChild(q).toString -s=null -r=a.lastChild}if(s!=null)this.$2(s,a) -s=r}}, -$S:295} -A.VI.prototype={} -A.Wl.prototype={} -A.Wm.prototype={} -A.Wn.prototype={} -A.Wo.prototype={} -A.WN.prototype={} -A.WO.prototype={} -A.Xe.prototype={} -A.Xf.prototype={} -A.Yh.prototype={} -A.Yi.prototype={} -A.Yj.prototype={} -A.Yk.prototype={} -A.Yy.prototype={} -A.Yz.prototype={} -A.YW.prototype={} -A.YX.prototype={} -A.a_n.prototype={} -A.IA.prototype={} -A.IB.prototype={} -A.a01.prototype={} -A.a02.prototype={} -A.a08.prototype={} -A.a0U.prototype={} -A.a0V.prototype={} -A.J_.prototype={} -A.J0.prototype={} -A.a12.prototype={} -A.a13.prototype={} -A.a1Q.prototype={} -A.a1R.prototype={} -A.a2_.prototype={} -A.a20.prototype={} -A.a29.prototype={} -A.a2a.prototype={} -A.a2C.prototype={} -A.a2D.prototype={} -A.a2E.prototype={} -A.a2F.prototype={} -A.aqq.prototype={ -Xa(a){var s,r=this.a,q=r.length -for(s=0;s")),new A.a9s(),r.i("eG"))}, -N(a,b){B.b.N(A.cZ(this.ght(),!1,t.lU),b)}, -m(a,b,c){var s=this.ght() -J.aVw(s.b.$1(J.lG(s.a,b)),c)}, -sp(a,b){var s=J.b4(this.ght().a) -if(b>=s)return -else if(b<0)throw A.d(A.bF("Invalid list length",null)) -this.eL(0,b,s)}, -E(a,b){this.b.a.appendChild(b).toString}, -K(a,b){var s,r -for(s=J.as(b),r=this.b.a;s.u();)r.appendChild(s.gJ(s)).toString}, -t(a,b){if(!t.lU.b(b))return!1 -return b.parentNode===this.a}, -gLH(a){var s=A.cZ(this.ght(),!1,t.lU) -return new A.bN(s,A.W(s).i("bN<1>"))}, -dX(a,b){throw A.d(A.V("Cannot sort filtered list"))}, -bx(a,b,c,d,e){throw A.d(A.V("Cannot setRange on filtered list"))}, -dh(a,b,c,d){return this.bx(a,b,c,d,0)}, -eL(a,b,c){var s=this.ght() -s=A.aE8(s,b,s.$ti.i("q.E")) -B.b.N(A.cZ(A.aEe(s,c-b,A.p(s).i("q.E")),!0,t.lU),new A.a9t())}, -dT(a){var s=this.ght(),r=s.b.$1(J.lH(s.a)) -J.tQ(r) -return r}, -eY(a,b,c){var s,r -if(b===J.b4(this.ght().a))this.b.a.appendChild(c).toString -else{s=this.ght() -r=s.b.$1(J.lG(s.a,b)) -r.parentNode.insertBefore(c,r).toString}}, -fn(a,b,c){var s,r -if(b===J.b4(this.ght().a))this.K(0,c) -else{s=this.ght() -r=s.b.$1(J.lG(s.a,b)) -s=r.parentNode -s.toString -J.aGZ(s,c,r)}}, -ck(a,b){var s=this.ght() -s=s.b.$1(J.lG(s.a,b)) -J.tQ(s) -return s}, -F(a,b){return!1}, -gp(a){return J.b4(this.ght().a)}, -h(a,b){var s=this.ght() -return s.b.$1(J.lG(s.a,b))}, -ga9(a){var s=A.cZ(this.ght(),!1,t.lU) -return new J.dj(s,s.length,A.W(s).i("dj<1>"))}} -A.a9r.prototype={ -$1(a){return t.lU.b(a)}, -$S:190} -A.a9s.prototype={ -$1(a){return t.lU.a(a)}, -$S:297} -A.a9t.prototype={ -$1(a){return J.tQ(a)}, -$S:298} -A.vl.prototype={$ivl:1} -A.azU.prototype={ -$1(a){var s=function(b,c,d){return function(){return b(c,d,this,Array.prototype.slice.apply(arguments))}}(A.b2M,a,!1) -A.aEX(s,$.a3t(),a) -return s}, -$S:47} -A.azV.prototype={ -$1(a){return new this.a(a)}, -$S:47} -A.aAw.prototype={ -$1(a){return new A.Bp(a)}, -$S:302} -A.aAx.prototype={ -$1(a){return new A.qT(a,t.sW)}, -$S:303} -A.aAy.prototype={ -$1(a){return new A.mh(a)}, -$S:305} -A.mh.prototype={ -h(a,b){if(typeof b!="string"&&typeof b!="number")throw A.d(A.bF("property is not a String or num",null)) -return A.aEV(this.a[b])}, -m(a,b,c){if(typeof b!="string"&&typeof b!="number")throw A.d(A.bF("property is not a String or num",null)) -this.a[b]=A.azT(c)}, -j(a,b){if(b==null)return!1 -return b instanceof A.mh&&this.a===b.a}, -k(a){var s,r -try{s=String(this.a) -return s}catch(r){s=this.cu(0) -return s}}, -hy(a,b){var s=this.a,r=b==null?null:A.cZ(new A.a1(b,A.b6l(),A.W(b).i("a1<1,@>")),!0,t.z) -return A.aEV(s[a].apply(s,r))}, -amt(a){return this.hy(a,null)}, -gA(a){return 0}} -A.Bp.prototype={} -A.qT.prototype={ -Fd(a){var s=this,r=a<0||a>=s.gp(s) -if(r)throw A.d(A.bZ(a,0,s.gp(s),null,null))}, -h(a,b){if(A.n9(b))this.Fd(b) -return this.a2j(0,b)}, -m(a,b,c){if(A.n9(b))this.Fd(b) -this.O5(0,b,c)}, -gp(a){var s=this.a.length -if(typeof s==="number"&&s>>>0===s)return s -throw A.d(A.a4("Bad JsArray length"))}, -sp(a,b){this.O5(0,"length",b)}, -E(a,b){this.hy("push",[b])}, -K(a,b){this.hy("push",b instanceof Array?b:A.cZ(b,!0,t.z))}, -eY(a,b,c){var s=this,r=b>=s.gp(s)+1 -if(r)A.U(A.bZ(b,0,s.gp(s),null,null)) -s.hy("splice",[b,0,c])}, -ck(a,b){this.Fd(b) -return J.aN(this.hy("splice",[b,1]),0)}, -dT(a){if(this.gp(this)===0)throw A.d(A.f3(-1)) -return this.amt("pop")}, -eL(a,b,c){A.aJ6(b,c,this.gp(this)) -this.hy("splice",[b,c-b])}, -bx(a,b,c,d,e){var s,r -A.aJ6(b,c,this.gp(this)) -s=c-b -if(s===0)return -if(e<0)throw A.d(A.bF(e,null)) -r=[b,s] -B.b.K(r,J.KC(d,e).kY(0,s)) -this.hy("splice",r)}, -dh(a,b,c,d){return this.bx(a,b,c,d,0)}, -dX(a,b){this.hy("sort",b==null?[]:[b])}, -$ia7:1, -$iq:1, -$iB:1} -A.y0.prototype={ -m(a,b,c){return this.a2k(0,b,c)}} -A.aBo.prototype={ -$1(a){var s,r,q,p,o -if(A.aNk(a))return a -s=this.a -if(s.ak(0,a))return s.h(0,a) -if(t.pE.b(a)){r={} -s.m(0,a,r) -for(s=J.bh(a),q=J.as(s.gbI(a));q.u();){p=q.gJ(q) -r[p]=this.$1(s.h(a,p))}return r}else if(t.VG.b(a)){o=[] -s.m(0,a,o) -B.b.K(o,J.ei(a,this,t.z)) -return o}else return a}, -$S:101} -A.aBN.prototype={ -$1(a){return this.a.dm(0,a)}, -$S:20} -A.aBO.prototype={ -$1(a){if(a==null)return this.a.lr(new A.PW(a===undefined)) -return this.a.lr(a)}, -$S:20} -A.aAP.prototype={ -$1(a){var s,r,q,p,o,n,m,l,k,j,i -if(A.aNj(a))return a -s=this.a -a.toString -if(s.ak(0,a))return s.h(0,a) -if(a instanceof Date)return A.Ab(a.getTime(),!0) -if(a instanceof RegExp)throw A.d(A.bF("structured clone of RegExp",null)) -if(typeof Promise!="undefined"&&a instanceof Promise)return A.i3(a,t.X) -r=Object.getPrototypeOf(a) -if(r===Object.prototype||r===null){q=t.X -p=A.m(q,q) -s.m(0,a,p) -o=Object.keys(a) -n=[] -for(s=J.bR(o),q=s.ga9(o);q.u();)n.push(A.aFq(q.gJ(q))) -for(m=0;m>>0!==b||b>=s -s.toString -if(s)throw A.d(A.dv(b,this.gp(a),a,null,null)) -s=a.getItem(b) -s.toString -return s}, -m(a,b,c){throw A.d(A.V("Cannot assign element of immutable List."))}, -sp(a,b){throw A.d(A.V("Cannot resize immutable List."))}, -gM(a){var s=a.length -s.toString -if(s>0){s=a[0] -s.toString -return s}throw A.d(A.a4("No elements"))}, -gL(a){var s=a.length -s.toString -if(s>0){s=a[s-1] -s.toString -return s}throw A.d(A.a4("No elements"))}, -bp(a,b){return this.h(a,b)}, -$ia7:1, -$iq:1, -$iB:1} -A.im.prototype={$iim:1} -A.PY.prototype={ -gp(a){var s=a.length -s.toString -return s}, -h(a,b){var s=a.length -s.toString -s=b>>>0!==b||b>=s -s.toString -if(s)throw A.d(A.dv(b,this.gp(a),a,null,null)) -s=a.getItem(b) -s.toString -return s}, -m(a,b,c){throw A.d(A.V("Cannot assign element of immutable List."))}, -sp(a,b){throw A.d(A.V("Cannot resize immutable List."))}, -gM(a){var s=a.length -s.toString -if(s>0){s=a[0] -s.toString -return s}throw A.d(A.a4("No elements"))}, -gL(a){var s=a.length -s.toString -if(s>0){s=a[s-1] -s.toString -return s}throw A.d(A.a4("No elements"))}, -bp(a,b){return this.h(a,b)}, -$ia7:1, -$iq:1, -$iB:1} -A.QW.prototype={ -gp(a){return a.length}} -A.wp.prototype={$iwp:1} -A.T_.prototype={ -gp(a){var s=a.length -s.toString -return s}, -h(a,b){var s=a.length -s.toString -s=b>>>0!==b||b>=s -s.toString -if(s)throw A.d(A.dv(b,this.gp(a),a,null,null)) -s=a.getItem(b) -s.toString -return s}, -m(a,b,c){throw A.d(A.V("Cannot assign element of immutable List."))}, -sp(a,b){throw A.d(A.V("Cannot resize immutable List."))}, -gM(a){var s=a.length -s.toString -if(s>0){s=a[0] -s.toString -return s}throw A.d(A.a4("No elements"))}, -gL(a){var s=a.length -s.toString -if(s>0){s=a[s-1] -s.toString -return s}throw A.d(A.a4("No elements"))}, -bp(a,b){return this.h(a,b)}, -$ia7:1, -$iq:1, -$iB:1} -A.aI.prototype={ -gfM(a){return new A.Nr(a,new A.eN(a))}, -ks(a,b,c,d){var s,r,q,p=A.b([],t.qF) -p.push(A.aLU(null)) -p.push(A.aMe()) -p.push(new A.a0i()) -c=new A.a1C(new A.Ck(p)) -p=document -s=p.body -s.toString -r=B.lL.anR(s,''+b+"",c) -p=p.createDocumentFragment() -p.toString -s=new A.eN(r) -q=s.gbD(s) -for(;s=q.firstChild,s!=null;)p.appendChild(s).toString -return p}, -$iaI:1} -A.iu.prototype={$iiu:1} -A.TR.prototype={ -gp(a){var s=a.length -s.toString -return s}, -h(a,b){var s=a.length -s.toString -s=b>>>0!==b||b>=s -s.toString -if(s)throw A.d(A.dv(b,this.gp(a),a,null,null)) -s=a.getItem(b) -s.toString -return s}, -m(a,b,c){throw A.d(A.V("Cannot assign element of immutable List."))}, -sp(a,b){throw A.d(A.V("Cannot resize immutable List."))}, -gM(a){var s=a.length -s.toString -if(s>0){s=a[0] -s.toString -return s}throw A.d(A.a4("No elements"))}, -gL(a){var s=a.length -s.toString -if(s>0){s=a[s-1] -s.toString -return s}throw A.d(A.a4("No elements"))}, -bp(a,b){return this.h(a,b)}, -$ia7:1, -$iq:1, -$iB:1} -A.XO.prototype={} -A.XP.prototype={} -A.YI.prototype={} -A.YJ.prototype={} -A.a0d.prototype={} -A.a0e.prototype={} -A.a18.prototype={} -A.a19.prototype={} -A.N8.prototype={} -A.LW.prototype={ -I(){return"ClipOp."+this.b}} -A.Qv.prototype={ -I(){return"PathFillType."+this.b}} -A.ahl.prototype={ -I(){return"PathOperation."+this.b}} -A.arW.prototype={ -ef(a,b){A.b6b(this.a,this.b,a,b)}} -A.IJ.prototype={ -ee(a){A.Kg(this.b,this.c,a)}} -A.mT.prototype={ -gp(a){var s=this.a -return s.gp(s)}, -n9(a){var s,r,q=this -if(!q.d&&q.e!=null){q.e.ef(a.a,a.gY6()) -return!1}s=q.c -if(s<=0)return!0 -r=q.PK(s-1) -q.a.fC(0,a) -return r}, -PK(a){var s,r,q -for(s=this.a,r=!1;(s.c-s.b&s.a.length-1)>>>0>a;r=!0){q=s.wZ() -A.Kg(q.b,q.c,null)}return r}, -a94(){var s=this,r=s.a -if(!r.ga8(r)&&s.e!=null){r=r.wZ() -s.e.ef(r.a,r.gY6()) -A.ey(s.gPI())}else s.d=!1}} -A.a5R.prototype={ -Ze(a,b,c){this.a.bT(0,a,new A.a5S()).n9(new A.IJ(b,c,$.ai))}, -a0N(a,b){var s=this.a.bT(0,a,new A.a5T()),r=s.e -s.e=new A.arW(b,$.ai) -if(r==null&&!s.d){s.d=!0 -A.ey(s.gPI())}}, -apE(a){var s,r,q,p,o,n,m,l="Invalid arguments for 'resize' method sent to dev.flutter/channel-buffers (arguments must be a two-element list, channel name and new capacity)",k="Invalid arguments for 'overflow' method sent to dev.flutter/channel-buffers (arguments must be a two-element list, channel name and flag state)",j=A.dm(a.buffer,a.byteOffset,a.byteLength) -if(j[0]===7){s=j[1] -if(s>=254)throw A.d(A.ck("Unrecognized message sent to dev.flutter/channel-buffers (method name too long)")) -r=2+s -q=B.A.ea(0,B.P.bX(j,2,r)) -switch(q){case"resize":if(j[r]!==12)throw A.d(A.ck(l)) -p=r+1 -if(j[p]<2)throw A.d(A.ck(l));++p -if(j[p]!==7)throw A.d(A.ck("Invalid arguments for 'resize' method sent to dev.flutter/channel-buffers (first argument must be a string)"));++p -o=j[p] -if(o>=254)throw A.d(A.ck("Invalid arguments for 'resize' method sent to dev.flutter/channel-buffers (channel name must be less than 254 characters long)"));++p -r=p+o -n=B.A.ea(0,B.P.bX(j,p,r)) -if(j[r]!==3)throw A.d(A.ck("Invalid arguments for 'resize' method sent to dev.flutter/channel-buffers (second argument must be an integer in the range 0 to 2147483647)")) -this.ZX(0,n,a.getUint32(r+1,B.ay===$.eg())) -break -case"overflow":if(j[r]!==12)throw A.d(A.ck(k)) -p=r+1 -if(j[p]<2)throw A.d(A.ck(k));++p -if(j[p]!==7)throw A.d(A.ck("Invalid arguments for 'overflow' method sent to dev.flutter/channel-buffers (first argument must be a string)"));++p -o=j[p] -if(o>=254)throw A.d(A.ck("Invalid arguments for 'overflow' method sent to dev.flutter/channel-buffers (channel name must be less than 254 characters long)"));++p -r=p+o -B.A.ea(0,B.P.bX(j,p,r)) -r=j[r] -if(r!==1&&r!==2)throw A.d(A.ck("Invalid arguments for 'overflow' method sent to dev.flutter/channel-buffers (second argument must be a boolean)")) -break -default:throw A.d(A.ck("Unrecognized method '"+q+"' sent to dev.flutter/channel-buffers"))}}else{m=A.b(B.A.ea(0,j).split("\r"),t.s) -if(m.length===3&&J.e(m[0],"resize"))this.ZX(0,m[1],A.dT(m[2],null)) -else throw A.d(A.ck("Unrecognized message "+A.j(m)+" sent to dev.flutter/channel-buffers."))}}, -ZX(a,b,c){var s=this.a,r=s.h(0,b) -if(r==null)s.m(0,b,new A.mT(A.oh(c,t.S8),c)) -else{r.c=c -r.PK(c)}}} -A.a5S.prototype={ -$0(){return new A.mT(A.oh(1,t.S8),1)}, -$S:126} -A.a5T.prototype={ -$0(){return new A.mT(A.oh(1,t.S8),1)}, -$S:126} -A.Q0.prototype={ -j(a,b){if(b==null)return!1 -return b instanceof A.Q0&&b.a===this.a&&b.b===this.b}, -gA(a){return A.T(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){return"OffsetBase("+B.d.ad(this.a,1)+", "+B.d.ad(this.b,1)+")"}} -A.k.prototype={ -gcB(){var s=this.a,r=this.b -return Math.sqrt(s*s+r*r)}, -gqJ(){var s=this.a,r=this.b -return s*s+r*r}, -Z(a,b){return new A.k(this.a-b.a,this.b-b.b)}, -Y(a,b){return new A.k(this.a+b.a,this.b+b.b)}, -a6(a,b){return new A.k(this.a*b,this.b*b)}, -eB(a,b){return new A.k(this.a/b,this.b/b)}, -j(a,b){if(b==null)return!1 -return b instanceof A.k&&b.a===this.a&&b.b===this.b}, -gA(a){return A.T(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){return"Offset("+B.d.ad(this.a,1)+", "+B.d.ad(this.b,1)+")"}} -A.Q.prototype={ -ga8(a){return this.a<=0||this.b<=0}, -Z(a,b){var s=this -if(b instanceof A.Q)return new A.k(s.a-b.a,s.b-b.b) -if(b instanceof A.k)return new A.Q(s.a-b.a,s.b-b.b) -throw A.d(A.bF(b,null))}, -Y(a,b){return new A.Q(this.a+b.a,this.b+b.b)}, -a6(a,b){return new A.Q(this.a*b,this.b*b)}, -eB(a,b){return new A.Q(this.a/b,this.b/b)}, -jz(a){return new A.k(a.a+this.a/2,a.b+this.b/2)}, -uX(a,b){return new A.k(b.a+this.a,b.b+this.b)}, -t(a,b){var s=b.a -if(s>=0)if(s=0&&s=1/0||s.b>=1/0||s.c>=1/0||s.d>=1/0}, -gwf(a){var s=this -return isFinite(s.a)&&isFinite(s.b)&&isFinite(s.c)&&isFinite(s.d)}, -ga8(a){var s=this -return s.a>=s.c||s.b>=s.d}, -cz(a){var s=this,r=a.a,q=a.b -return new A.y(s.a+r,s.b+q,s.c+r,s.d+q)}, -aK(a,b,c){var s=this -return new A.y(s.a+b,s.b+c,s.c+b,s.d+c)}, -cV(a){var s=this -return new A.y(s.a-a,s.b-a,s.c+a,s.d+a)}, -ed(a){var s=this -return new A.y(Math.max(s.a,a.a),Math.max(s.b,a.b),Math.min(s.c,a.c),Math.min(s.d,a.d))}, -jK(a){var s=this -return new A.y(Math.min(s.a,a.a),Math.min(s.b,a.b),Math.max(s.c,a.c),Math.max(s.d,a.d))}, -wJ(a){var s=this -if(s.c<=a.a||a.c<=s.a)return!1 -if(s.d<=a.b||a.d<=s.b)return!1 -return!0}, -gfe(){var s=this -return Math.min(Math.abs(s.c-s.a),Math.abs(s.d-s.b))}, -gauD(){var s=this.a -return new A.k(s+(this.c-s)/2,this.b)}, -gamx(){var s=this.b -return new A.k(this.a,s+(this.d-s)/2)}, -gaT(){var s=this,r=s.a,q=s.b -return new A.k(r+(s.c-r)/2,q+(s.d-q)/2)}, -gamh(){var s=this.a -return new A.k(s+(this.c-s)/2,this.d)}, -t(a,b){var s=this,r=b.a -if(r>=s.a)if(r=s.b&&rd&&s!==0)return Math.min(a,d/s) -return a}, -xF(){var s=this,r=s.c,q=s.a,p=Math.abs(r-q),o=s.d,n=s.b,m=Math.abs(o-n),l=s.Q,k=s.f,j=s.e,i=s.r,h=s.w,g=s.y,f=s.x,e=s.z,d=s.yV(s.yV(s.yV(s.yV(1,l,k,m),j,i,p),h,g,m),f,e,p) -if(d<1)return new A.jJ(q,n,r,o,j*d,k*d,i*d,h*d,f*d,g*d,e*d,l*d,!1) -return new A.jJ(q,n,r,o,j,k,i,h,f,g,e,l,!1)}, -t(a,b){var s,r,q,p,o,n,m=this,l=b.a,k=m.a -if(!(l=m.c)){s=b.b -s=s=m.d}else s=!0 -else s=!0 -if(s)return!1 -r=m.xF() -q=r.e -if(ls-q&&b.bs-q&&b.b>m.d-r.y){p=l-s+q -o=r.y -n=b.b-m.d+o}else{q=r.z -if(lm.d-r.Q){p=l-k-q -o=r.Q -n=b.b-m.d+o}else return!0}}}p/=q -n/=o -if(p*p+n*n>1)return!1 -return!0}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(A.u(s)!==J.Y(b))return!1 -return b instanceof A.jJ&&b.a===s.a&&b.b===s.b&&b.c===s.c&&b.d===s.d&&b.e===s.e&&b.f===s.f&&b.r===s.r&&b.w===s.w&&b.z===s.z&&b.Q===s.Q&&b.x===s.x&&b.y===s.y}, -gA(a){var s=this -return A.T(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.z,s.Q,s.x,s.y,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){var s,r,q=this,p=B.d.ad(q.a,1)+", "+B.d.ad(q.b,1)+", "+B.d.ad(q.c,1)+", "+B.d.ad(q.d,1),o=q.e,n=q.f,m=q.r,l=q.w -if(new A.bc(o,n).j(0,new A.bc(m,l))){s=q.x -r=q.y -s=new A.bc(m,l).j(0,new A.bc(s,r))&&new A.bc(s,r).j(0,new A.bc(q.z,q.Q))}else s=!1 -if(s){if(o===n)return"RRect.fromLTRBR("+p+", "+B.d.ad(o,1)+")" -return"RRect.fromLTRBXY("+p+", "+B.d.ad(o,1)+", "+B.d.ad(n,1)+")"}return"RRect.fromLTRBAndCorners("+p+", topLeft: "+new A.bc(o,n).k(0)+", topRight: "+new A.bc(m,l).k(0)+", bottomRight: "+new A.bc(q.x,q.y).k(0)+", bottomLeft: "+new A.bc(q.z,q.Q).k(0)+")"}} -A.Bu.prototype={ -I(){return"KeyEventType."+this.b}} -A.hI.prototype={ -aeD(){var s=this.d -return"0x"+B.h.jc(s,16)+new A.aei(B.d.ec(s/4294967296)).$0()}, -a9t(){var s=this.e -if(s==null)return"" -switch(s){case"\n":return'"\\n"' -case"\t":return'"\\t"' -case"\r":return'"\\r"' -case"\b":return'"\\b"' -case"\f":return'"\\f"' -default:return'"'+s+'"'}}, -ahj(){var s=this.e -if(s==null)return"" -return" (0x"+new A.a1(new A.eU(s),new A.aej(),t.Hz.i("a1")).bH(0," ")+")"}, -k(a){var s=this,r=A.aYS(s.b),q=B.h.jc(s.c,16),p=s.aeD(),o=s.a9t(),n=s.ahj(),m=s.f?", synthesized":"" -return"KeyData(type: "+r+", physical: 0x"+q+", logical: "+p+", character: "+o+n+m+")"}} -A.aei.prototype={ -$0(){switch(this.a){case 0:return" (Unicode)" -case 1:return" (Unprintable)" -case 2:return" (Flutter)" -case 23:return" (Web)"}return""}, -$S:32} -A.aej.prototype={ -$1(a){return B.c.rs(B.h.jc(a,16),2,"0")}, -$S:163} -A.L.prototype={ -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.Y(b)!==A.u(s))return!1 -return b instanceof A.L&&b.gl(b)===s.gl(s)}, -gA(a){return B.h.gA(this.gl(this))}, -k(a){return"Color(0x"+B.c.rs(B.h.jc(this.gl(this),16),8,"0")+")"}, -gl(a){return this.a}} -A.Ey.prototype={ -I(){return"StrokeCap."+this.b}} -A.T1.prototype={ -I(){return"StrokeJoin."+this.b}} -A.Qs.prototype={ -I(){return"PaintingStyle."+this.b}} -A.pU.prototype={ -I(){return"BlendMode."+this.b}} -A.ud.prototype={ -I(){return"Clip."+this.b}} -A.a58.prototype={ -I(){return"BlurStyle."+this.b}} -A.r6.prototype={ -j(a,b){if(b==null)return!1 -return b instanceof A.r6&&b.a===this.a&&b.b===this.b}, -gA(a){return A.T(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){return"MaskFilter.blur("+this.a.k(0)+", "+B.d.ad(this.b,1)+")"}} -A.qw.prototype={ -I(){return"FilterQuality."+this.b}} -A.aDk.prototype={} -A.oP.prototype={ -bw(a,b){return new A.oP(this.a,this.b.a6(0,b),this.c*b)}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -return b instanceof A.oP&&b.a.j(0,s.a)&&b.b.j(0,s.b)&&b.c===s.c}, -gA(a){return A.T(this.a,this.b,this.c,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){return"TextShadow("+this.a.k(0)+", "+this.b.k(0)+", "+A.j(this.c)+")"}} -A.o0.prototype={ -gp(a){return this.b}} -A.ahG.prototype={} -A.nT.prototype={ -k(a){var s,r=A.u(this).k(0),q=this.a,p=A.d2(q[2],0,0),o=q[1],n=A.d2(o,0,0),m=q[4],l=A.d2(m,0,0),k=A.d2(q[3],0,0) -o=A.d2(o,0,0) -s=q[0] -return r+"(buildDuration: "+(A.j((p.a-n.a)*0.001)+"ms")+", rasterDuration: "+(A.j((l.a-k.a)*0.001)+"ms")+", vsyncOverhead: "+(A.j((o.a-A.d2(s,0,0).a)*0.001)+"ms")+", totalSpan: "+(A.j((A.d2(m,0,0).a-A.d2(s,0,0).a)*0.001)+"ms")+", layerCacheCount: "+q[6]+", layerCacheBytes: "+q[7]+", pictureCacheCount: "+q[8]+", pictureCacheBytes: "+q[9]+", frameNumber: "+B.b.gL(q)+")"}} -A.ki.prototype={ -I(){return"AppLifecycleState."+this.b}} -A.zk.prototype={ -I(){return"AppExitResponse."+this.b}} -A.oi.prototype={ -grf(a){var s=this.a,r=B.bI.h(0,s) -return r==null?s:r}, -gB4(){var s=this.c,r=B.bZ.h(0,s) -return r==null?s:r}, -j(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(b instanceof A.oi)if(b.grf(b)===r.grf(r))s=b.gB4()==r.gB4() -else s=!1 -else s=!1 -return s}, -gA(a){return A.T(this.grf(this),null,this.gB4(),B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){return this.S9("_")}, -S9(a){var s=this,r=s.grf(s) -if(s.c!=null)r+=a+A.j(s.gB4()) -return r.charCodeAt(0)==0?r:r}} -A.a6P.prototype={ -I(){return"DartPerformanceMode."+this.b}} -A.wx.prototype={} -A.mt.prototype={ -I(){return"PointerChange."+this.b}} -A.l_.prototype={ -I(){return"PointerDeviceKind."+this.b}} -A.vX.prototype={ -I(){return"PointerSignalKind."+this.b}} -A.kZ.prototype={ -k(a){return"PointerData(x: "+A.j(this.x)+", y: "+A.j(this.y)+")"}} -A.CN.prototype={} -A.dp.prototype={ -k(a){return"SemanticsAction."+this.b}} -A.d8.prototype={ -k(a){return"SemanticsFlag."+this.b}} -A.alp.prototype={} -A.NO.prototype={ -I(){return"FontStyle."+this.b}} -A.ou.prototype={ -I(){return"PlaceholderAlignment."+this.b}} -A.iJ.prototype={ -k(a){var s=B.KU.h(0,this.a) -s.toString -return s}} -A.AX.prototype={ -j(a,b){var s -if(b==null)return!1 -if(J.Y(b)!==A.u(this))return!1 -if(b instanceof A.AX)s=!0 -else s=!1 -return s}, -gA(a){return A.T("sups",1,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){return"FontFeature('sups', 1)"}} -A.nS.prototype={ -j(a,b){if(b==null)return!1 -if(J.Y(b)!==A.u(this))return!1 -return b instanceof A.nS&&b.a===this.a&&b.b===this.b}, -gA(a){return A.T(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){return"FontVariation('"+this.a+"', "+A.j(this.b)+")"}} -A.jV.prototype={ -I(){return"TextAlign."+this.b}} -A.EP.prototype={ -I(){return"TextBaseline."+this.b}} -A.x_.prototype={ -j(a,b){if(b==null)return!1 -return b instanceof A.x_&&b.a===this.a}, -gA(a){return B.h.gA(this.a)}, -k(a){var s,r=this.a -if(r===0)return"TextDecoration.none" -s=A.b([],t.s) -if((r&1)!==0)s.push("underline") -if((r&2)!==0)s.push("overline") -if((r&4)!==0)s.push("lineThrough") -if(s.length===1)return"TextDecoration."+s[0] -return"TextDecoration.combine(["+B.b.bH(s,", ")+"])"}} -A.aol.prototype={ -I(){return"TextDecorationStyle."+this.b}} -A.Tw.prototype={ -I(){return"TextLeadingDistribution."+this.b}} -A.EV.prototype={ -j(a,b){var s -if(b==null)return!1 -if(J.Y(b)!==A.u(this))return!1 -if(b instanceof A.EV)s=b.c===this.c -else s=!1 -return s}, -gA(a){return A.T(!0,!0,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){return"TextHeightBehavior(applyHeightToFirstAscent: true, applyHeightToLastDescent: true, leadingDistribution: "+this.c.k(0)+")"}} -A.lk.prototype={ -I(){return"TextDirection."+this.b}} -A.es.prototype={ -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.Y(b)!==A.u(s))return!1 -return b instanceof A.es&&b.a===s.a&&b.b===s.b&&b.c===s.c&&b.d===s.d&&b.e===s.e}, -gA(a){var s=this -return A.T(s.a,s.b,s.c,s.d,s.e,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){var s=this -return"TextBox.fromLTRBD("+B.d.ad(s.a,1)+", "+B.d.ad(s.b,1)+", "+B.d.ad(s.c,1)+", "+B.d.ad(s.d,1)+", "+s.e.k(0)+")"}} -A.EO.prototype={ -I(){return"TextAffinity."+this.b}} -A.bf.prototype={ -j(a,b){if(b==null)return!1 -if(J.Y(b)!==A.u(this))return!1 -return b instanceof A.bf&&b.a===this.a&&b.b===this.b}, -gA(a){return A.T(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){return A.u(this).k(0)+"(offset: "+this.a+", affinity: "+this.b.k(0)+")"}} -A.cb.prototype={ -gc8(){return this.a>=0&&this.b>=0}, -j(a,b){if(b==null)return!1 -if(this===b)return!0 -return b instanceof A.cb&&b.a===this.a&&b.b===this.b}, -gA(a){return A.T(B.h.gA(this.a),B.h.gA(this.b),B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){return"TextRange(start: "+this.a+", end: "+this.b+")"}} -A.mq.prototype={ -j(a,b){if(b==null)return!1 -if(J.Y(b)!==A.u(this))return!1 -return b instanceof A.mq&&b.a===this.a}, -gA(a){return B.d.gA(this.a)}, -k(a){return A.u(this).k(0)+"(width: "+A.j(this.a)+")"}} -A.Lv.prototype={ -I(){return"BoxHeightStyle."+this.b}} -A.a5c.prototype={ -I(){return"BoxWidthStyle."+this.b}} -A.TH.prototype={ -I(){return"TileMode."+this.b}} -A.qy.prototype={} -A.Su.prototype={} -A.u1.prototype={ -I(){return"Brightness."+this.b}} -A.a5y.prototype={ -j(a,b){if(b==null)return!1 -return this===b}, -gA(a){return A.O.prototype.gA.call(this,this)}} -A.NY.prototype={ -j(a,b){var s -if(b==null)return!1 -if(J.Y(b)!==A.u(this))return!1 -if(b instanceof A.NY)s=!0 -else s=!1 -return s}, -gA(a){return A.T(null,null,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){return"GestureSettings(physicalTouchSlop: null, physicalDoubleTapSlop: null)"}} -A.a4s.prototype={ -xq(a){var s,r,q -if(A.fo(a,0,null).gXF())return A.lA(B.dc,a,B.A,!1) -s=this.b -if(s==null){s=self.window.document.querySelector("meta[name=assetBase]") -r=s==null?null:s.content -s=r==null -if(!s)self.window.console.warn("The `assetBase` meta tag is now deprecated.\nUse engineInitializer.initializeEngine(config) instead.\nSee: https://docs.flutter.dev/development/platform-integration/web/initialization") -q=this.b=s?"":r -s=q}return A.lA(B.dc,s+"assets/"+a,B.A,!1)}} -A.aAD.prototype={ -$1(a){return this.a_O(a)}, -$0(){return this.$1(null)}, -$C:"$1", -$R:0, -$D(){return[null]}, -a_O(a){var s=0,r=A.I(t.H) -var $async$$1=A.D(function(b,c){if(b===1)return A.F(c,r) -while(true)switch(s){case 0:s=2 -return A.K(A.aBf(a),$async$$1) -case 2:return A.G(null,r)}}) -return A.H($async$$1,r)}, -$S:313} -A.aAE.prototype={ -$0(){var s=0,r=A.I(t.P),q=this -var $async$$0=A.D(function(a,b){if(a===1)return A.F(b,r) -while(true)switch(s){case 0:q.a.$0() -s=2 -return A.K(A.aFA(),$async$$0) -case 2:q.b.$0() -return A.G(null,r)}}) -return A.H($async$$0,r)}, -$S:92} -A.a5k.prototype={ -Mr(a){return $.aNm.bT(0,a,new A.a5l(a))}} -A.a5l.prototype={ -$0(){return t.e.a(A.bd(this.a))}, -$S:84} -A.abQ.prototype={ -Is(a){var s=new A.abT(a) -A.cI(self.window,"popstate",B.lW.Mr(s),null) -return new A.abS(this,s)}, -a08(){var s=self.window.location.hash -if(s.length===0||s==="#")return"/" -return B.c.bK(s,1)}, -My(a){return A.aIc(self.window.history)}, -Z8(a){var s,r=a.length===0||a==="/"?"":"#"+a,q=self.window.location.pathname -if(q==null)q=null -q.toString -s=self.window.location.search -if(s==null)s=null -s.toString -return q+s+r}, -Zm(a,b,c,d){var s=this.Z8(d),r=self.window.history,q=A.ax(b) -if(q==null)q=t.K.a(q) -r.pushState(q,c,s)}, -p5(a,b,c,d){var s,r=this.Z8(d),q=self.window.history -if(b==null)s=null -else{s=A.ax(b) -if(s==null)s=t.K.a(s)}q.replaceState(s,c,r)}, -xC(a,b){var s=self.window.history -s.go(b) -return this.alc()}, -alc(){var s=new A.ae($.ai,t.c),r=A.bg("unsubscribe") -r.b=this.Is(new A.abR(r,new A.b3(s,t.h))) -return s}} -A.abT.prototype={ -$1(a){var s=t.e.a(a).state -if(s==null)s=null -else{s=A.aFq(s) -s.toString}this.a.$1(s)}, -$S:129} -A.abS.prototype={ -$0(){var s=this.b -A.eZ(self.window,"popstate",B.lW.Mr(s),null) -$.aNm.F(0,s) -return null}, -$S:0} -A.abR.prototype={ -$1(a){this.a.aI().$0() -this.b.fN(0)}, -$S:6} -A.ahM.prototype={} -A.L_.prototype={ -gp(a){return a.length}} -A.L0.prototype={ -ak(a,b){return A.jh(a.get(b))!=null}, -h(a,b){return A.jh(a.get(b))}, -N(a,b){var s,r,q=a.entries() -for(;!0;){s=q.next() -r=s.done -r.toString -if(r)return -r=s.value[0] -r.toString -b.$2(r,A.jh(s.value[1]))}}, -gbI(a){var s=A.b([],t.s) -this.N(a,new A.a4v(s)) -return s}, -gaR(a){var s=A.b([],t.n4) -this.N(a,new A.a4w(s)) -return s}, -gp(a){var s=a.size -s.toString -return s}, -ga8(a){var s=a.size -s.toString -return s===0}, -gc3(a){var s=a.size -s.toString -return s!==0}, -m(a,b,c){throw A.d(A.V("Not supported"))}, -bT(a,b,c){throw A.d(A.V("Not supported"))}, -F(a,b){throw A.d(A.V("Not supported"))}, -$iaz:1} -A.a4v.prototype={ -$2(a,b){return this.a.push(a)}, -$S:26} -A.a4w.prototype={ -$2(a,b){return this.a.push(b)}, -$S:26} -A.L1.prototype={ -gp(a){return a.length}} -A.nn.prototype={} -A.Q_.prototype={ -gp(a){return a.length}} -A.UR.prototype={} -A.a9d.prototype={ -$1(a){return this.a.$2(a,this.b)}, -$S:315} -A.aBz.prototype={ -$1(a){return new A.fG("http://127.0.0.1:8000/ap/v1")}, -$S:316} -A.aBA.prototype={ -$1(a){return $.aPR()}, -$S:336} -A.aBB.prototype={ -$3(a,b,c){return new A.nv(b)}, -$S:340} -A.aBC.prototype={ -$4(a,b,c,d){return new A.oZ(b,c,A.b([],t.s))}, -$S:342} -A.aBD.prototype={ -$3(a,b,c){return new A.no(b)}, -$S:347} -A.aBE.prototype={ -$3(a,b,c){return new A.oc()}, -$S:352} -A.aBF.prototype={ -$1(a){return A.aKE(A.ce(a,!1,t.Gg),A.ce(a,!1,t.Oy))}, -$S:354} -A.aBG.prototype={ -$4(a,b,c,d){return A.aKE(b,c)}, -$S:365} -A.PL.prototype={ -G(a){var s,r,q,p=null -A.ce(a,!1,t.Sg).Cs() -s=A.aLg(p,B.c_,p) -r=$.m4 -q=(r==null?$.m4=$.Kt():r).uR(0,"[DEFAULT]") -A.hc(q,$.tO(),!0) -r=A.aD9(new A.kB(q)) -return new A.BT(new A.Eu(new A.agG(),r.ah1(r.gyz().jy()),p,t.fZ),"AutoGPT Flutter Client",s,!1,p)}} -A.agG.prototype={ -$2(a,b){var s,r,q -if(b.a===B.fm)return A.aHy(4) -s=A.U3() -r=s.gjO(s) -s=b.b!=null -if(s&&s||B.c.t(r,"github.dev")){s=A.b([A.a5P(new A.agC(),t.w_),A.a5P(new A.agD(),t.Wm),A.a5P(new A.agE(),t.LM),A.a5P(new A.agF(),t.Qd)],t.Ds) -return A.aJw(new A.P9(A.eu("TaskView",t.N),null),s)}s=$.m4 -q=(s==null?$.m4=$.Kt():s).uR(0,"[DEFAULT]") -A.hc(q,$.tO(),!0) -return new A.Nw(new A.L7(A.aD9(new A.kB(q)),A.aIS(u.k)),null)}, -$S:369} -A.agC.prototype={ -$1(a){var s=A.ce(a,!1,t.Fl),r=A.ce(a,!1,t.Oy) -return new A.q2(s,A.b([],t.G2),r,$.aO())}, -$S:371} -A.agD.prototype={ -$1(a){var s=t.UB -return new A.t5(A.ce(a,!1,t.Sg),A.ce(a,!1,t.Oy),A.b([],s),A.b([],t.iO),[],A.b([],s),$.aO())}, -$S:372} -A.agE.prototype={ -$1(a){return new A.jS(A.b([],t.LB),A.b([],t.Tq),new A.O6(A.b([],t.f2),A.b([],t.zs),A.b([],t.Q1)),new A.anv(new A.alF()),B.z8,$.aO())}, -$S:375} -A.agF.prototype={ -$1(a){var s=A.ce(a,!1,t.RE) -A.ce(a,!1,t.Oz) -A.ce(a,!1,t.Oy) -return new A.t4(s,A.m(t.RX,t.yr),A.b([],t.LY),B.hK,$.aO())}, -$S:377} -A.pP.prototype={ -cq(){var s=this -return A.l(["artifact_id",s.a,"agent_created",s.b,"file_name",s.c,"relative_path",s.d],t.N,t.z)}} -A.KR.prototype={ -I(){return"ApiType."+this.b}} -A.Ln.prototype={ -cq(){var s=this -return A.l(["repository_info",s.a.cq(),"run_details",s.b.cq(),"task_info",s.c.cq(),"metrics",s.d.cq(),"reached_cutoff",s.e,"config",s.f.cq()],t.N,t.z)}} -A.Lo.prototype={ -cq(){var s=this.a -if(s==null)return A.m(t.N,t.z) -return A.l(["input",s],t.N,t.z)}} -A.a4Y.prototype={ -cq(){return A.l(["input",this.a,"eval_id",this.b],t.N,t.z)}} -A.pS.prototype={ -I(){return"BenchmarkTaskStatus."+this.b}} -A.a6q.prototype={ -cq(){return A.l(["agent_benchmark_config_path",this.a,"host",this.b],t.N,t.z)}} -A.afX.prototype={ -cq(){var s=this -return A.l(["difficulty",s.a,"success",s.b,"attempted",s.c,"success_percentage",s.d,"cost",s.e,"run_time",s.f],t.N,t.z)}} -A.ajL.prototype={ -cq(){var s=this -return A.l(["repo_url",s.a,"team_name",s.b,"benchmark_git_commit_sha",s.c,"agent_git_commit_sha",s.d],t.N,t.z)}} -A.ak2.prototype={ -cq(){var s=this -return A.l(["run_id",s.a,"command",s.b,"completion_time",s.c.LS(),"benchmark_start_time",s.d.LS(),"test_name",s.e],t.N,t.z)}} -A.anV.prototype={ -cq(){var s=this -return A.l(["data_path",s.a,"is_regression",s.b,"category",B.ar.Bt(s.c,null),"task",s.d,"answer",s.e,"description",s.f],t.N,t.z)}} -A.jp.prototype={ -j(a,b){var s,r=this -if(b==null)return!1 -if(r!==b)s=b instanceof A.jp&&A.u(r)===A.u(b)&&r.a===b.a&&r.b===b.b&&r.c===b.c&&r.d.j(0,b.d)&&r.e===b.e&&r.r===b.r -else s=!0 -return s}, -gA(a){var s=this,r=s.d -return(B.c.gA(s.a)^B.c.gA(s.b)^B.c.gA(s.c)^r.gA(r)^A.fi(s.e)^A.fi(s.r))>>>0}, -k(a){var s=this -return"Chat(id: "+s.a+", taskId: "+s.b+", message: "+s.c+", timestamp: "+s.d.k(0)+", messageType: "+s.e.k(0)+", artifacts: "+A.j(s.r)+")"}} -A.Pu.prototype={ -I(){return"MessageType."+this.b}} -A.aDR.prototype={} -A.aDh.prototype={} -A.adG.prototype={} -A.am7.prototype={} -A.fk.prototype={ -I(){return"SkillTreeCategory."+this.b}} -A.wE.prototype={} -A.l8.prototype={} -A.wM.prototype={} -A.amC.prototype={ -$1(a){var s,r="artifact_id",q="agent_created",p="file_name" -t.a.a(a) -s=J.X(a) -if(s.h(a,r)==null||s.h(a,q)==null||s.h(a,p)==null)A.U(B.FL) -return new A.pP(s.h(a,r),s.h(a,q),s.h(a,p),s.h(a,"relative_path"))}, -$S:378} -A.amz.prototype={ -cq(){var s=A.l(["input",this.a,"additional_input",null],t.N,t.z) -s.x_(s,new A.amA()) -return s}} -A.amA.prototype={ -$2(a,b){return b==null}, -$S:130} -A.fK.prototype={ -cq(){var s=this -return A.l(["task_id",s.a,"input",s.d,"additional_input",s.b,"artifacts",s.c],t.N,t.z)}, -j(a,b){var s -if(b==null)return!1 -if(this!==b)s=b instanceof A.fK&&A.u(this)===A.u(b)&&this.a===b.a -else s=!0 -return s}, -gA(a){return B.c.gA(this.a)^B.c.gA(this.d)}, -k(a){return"Task(id: "+this.a+", title: "+this.d+")"}} -A.aog.prototype={ -$1(a){return J.di(a)}, -$S:131} -A.ao7.prototype={ -cq(){var s=A.l(["input",this.a,"additional_input",null],t.N,t.z) -s.x_(s,new A.ao8()) -return s}} -A.ao8.prototype={ -$2(a,b){return b==null}, -$S:130} -A.Tl.prototype={} -A.ao9.prototype={ -$1(a){return A.aL3(a)}, -$S:132} -A.EL.prototype={ -I(){return"TestOption."+this.b}} -A.is.prototype={ -cq(){var s=this.b,r=A.W(s).i("a1<1,az>") -return A.l(["timestamp",this.a,"tests",A.a8(new A.a1(s,new A.aoj(),r),!0,r.i("am.E"))],t.N,t.z)}} -A.aoj.prototype={ -$1(a){return a.cq()}, -$S:388} -A.aoi.prototype={ -$1(a){return A.aL3(A.qY(a,t.N,t.z))}, -$S:132} -A.L7.prototype={ -po(){var s=0,r=A.I(t.Z0),q,p=2,o,n=this,m,l,k,j,i,h,g -var $async$po=A.D(function(a,b){if(a===1){o=b -s=p}while(true)switch(s){case 0:p=4 -s=7 -return A.K(n.b.hU(),$async$po) -case 7:m=b -s=m!=null?8:9 -break -case 8:s=10 -return A.K(m.gAK(),$async$po) -case 10:l=b -i=l.a -k=new A.abm(l.a.a,null,null,"google.com","google.com",null,i.b) -s=11 -return A.K(n.a.hV(k),$async$po) -case 11:i=b -q=i -s=1 -break -case 9:p=2 -s=6 -break -case 4:p=3 -g=o -j=A.a6(g) -A.c_("Error during Google Sign-In: "+A.j(j)) -q=null -s=1 -break -s=6 -break -case 3:s=2 -break -case 6:case 1:return A.G(q,r) -case 2:return A.F(o,r)}}) -return A.H($async$po,r)}, -xY(){var s=0,r=A.I(t.Z0),q,p=2,o,n=this,m,l,k,j,i -var $async$xY=A.D(function(a,b){if(a===1){o=b -s=p}while(true)switch(s){case 0:p=4 -k=t.N -m=new A.abj(A.b([],t.s),A.m(k,k),"github.com") -s=7 -return A.K(n.a.k9(m),$async$xY) -case 7:k=b -q=k -s=1 -break -p=2 -s=6 -break -case 4:p=3 -i=o -l=A.a6(i) -A.c_("Error during GitHub Sign-In: "+A.j(l)) -q=null -s=1 -break -s=6 -break -case 3:s=2 -break -case 6:case 1:return A.G(q,r) -case 2:return A.F(o,r)}}) -return A.H($async$xY,r)}, -d1(a){var s=0,r=A.I(t.H),q=this -var $async$d1=A.D(function(b,c){if(b===1)return A.F(c,r) -while(true)switch(s){case 0:s=2 -return A.K(q.a.d1(0),$async$d1) -case 2:return A.G(null,r)}}) -return A.H($async$d1,r)}} -A.no.prototype={ -B6(a){return this.anO(a)}, -anO(a){var s=0,r=A.I(t.a),q,p=2,o,n=this,m,l,k,j -var $async$B6=A.D(function(b,c){if(b===1){o=c -s=p}while(true)switch(s){case 0:p=4 -s=7 -return A.K(n.a.oX("agent/tasks",a.cq(),B.ij),$async$B6) -case 7:l=c -q=l -s=1 -break -p=2 -s=6 -break -case 4:p=3 -j=o -m=A.a6(j) -l=A.ck("Failed to create a new task: "+A.j(m)) -throw A.d(l) -s=6 -break -case 3:s=2 -break -case 6:case 1:return A.G(q,r) -case 2:return A.F(o,r)}}) -return A.H($async$B6,r)}, -vD(a,b){return this.aoM(a,b)}, -aoM(a,b){var s=0,r=A.I(t.a),q,p=2,o,n=this,m,l,k,j -var $async$vD=A.D(function(c,d){if(c===1){o=d -s=p}while(true)switch(s){case 0:p=4 -s=7 -return A.K(n.a.oX("agent/tasks/"+a+"/steps",b.cq(),B.ij),$async$vD) -case 7:l=d -q=l -s=1 -break -p=2 -s=6 -break -case 4:p=3 -j=o -m=A.a6(j) -l=A.ck("Failed to execute step: "+A.j(m)) -throw A.d(l) -s=6 -break -case 3:s=2 -break -case 6:case 1:return A.G(q,r) -case 2:return A.F(o,r)}}) -return A.H($async$vD,r)}, -DB(a){return this.auJ(a)}, -auJ(a){var s=0,r=A.I(t.a),q,p=2,o,n=this,m,l,k,j -var $async$DB=A.D(function(b,c){if(b===1){o=c -s=p}while(true)switch(s){case 0:p=4 -s=7 -return A.K(n.a.oX("agent/tasks/"+a+"/evaluations",A.m(t.N,t.z),B.ij),$async$DB) -case 7:l=c -q=l -s=1 -break -p=2 -s=6 -break -case 4:p=3 -j=o -m=A.a6(j) -l=A.ck("Failed to trigger evaluation: "+A.j(m)) -throw A.d(l) -s=6 -break -case 3:s=2 -break -case 6:case 1:return A.G(q,r) -case 2:return A.F(o,r)}}) -return A.H($async$DB,r)}} -A.nv.prototype={ -Bw(a,b){return this.aoN(a,b)}, -aoN(a,b){var s=0,r=A.I(t.a),q,p=2,o,n=this,m,l,k -var $async$Bw=A.D(function(c,d){if(c===1){o=d -s=p}while(true)switch(s){case 0:p=4 -s=7 -return A.K(n.a.Z6("agent/tasks/"+a+"/steps",b.cq()),$async$Bw) -case 7:m=d -q=m -s=1 -break -p=2 -s=6 -break -case 4:p=3 -k=o -throw k -s=6 -break -case 3:s=2 -break -case 6:case 1:return A.G(q,r) -case 2:return A.F(o,r)}}) -return A.H($async$Bw,r)}, -Cr(a,b){var s=1 -return this.arH(a,b)}, -arH(a,b){var s=0,r=A.I(t.a),q,p=2,o,n=this,m,l,k,j,i -var $async$Cr=A.D(function(c,d){if(c===1){o=d -s=p}while(true)switch(s){case 0:j=1 -p=4 -s=7 -return A.K(n.a.rT(0,"agent/tasks/"+a+"/steps?current_page="+A.j(j)+"&page_size="+b),$async$Cr) -case 7:l=d -q=l -s=1 -break -p=2 -s=6 -break -case 4:p=3 -i=o -m=A.a6(i) -l=A.ck("Failed to list task steps: "+A.j(m)) -throw A.d(l) -s=6 -break -case 3:s=2 -break -case 6:case 1:return A.G(q,r) -case 2:return A.F(o,r)}}) -return A.H($async$Cr,r)}, -lw(a,b){return this.aop(a,b)}, -aop(a,b){var s=0,r=A.I(t.H),q=1,p,o=this,n,m,l,k,j,i,h,g -var $async$lw=A.D(function(c,d){if(c===1){p=d -s=q}while(true)switch(s){case 0:q=3 -s=6 -return A.K(o.a.xs("agent/tasks/"+a+"/artifacts/"+b),$async$lw) -case 6:n=d -m=A.aW1([n]) -j=(self.URL||self.webkitURL).createObjectURL(m) -j.toString -l=j -i=A.aHa(l) -i.setAttribute("download","artifact_"+b) -i.click();(self.URL||self.webkitURL).revokeObjectURL(l) -q=1 -s=5 -break -case 3:q=2 -g=p -k=A.a6(g) -j=A.ck("An error occurred while downloading the artifact: "+A.j(k)) -throw A.d(j) -s=5 -break -case 2:s=1 -break -case 5:return A.G(null,r) -case 1:return A.F(p,r)}}) -return A.H($async$lw,r)}} -A.oc.prototype={} -A.l7.prototype={ -t7(a,b){return this.a0D(a,b)}, -a0D(a,b){var s=0,r=A.I(t.H),q=this -var $async$t7=A.D(function(c,d){if(c===1)return A.F(d,r) -while(true)switch(s){case 0:s=2 -return A.K(q.a,$async$t7) -case 2:d.zQ("Bool",a,b) -return A.G(null,r)}}) -return A.H($async$t7,r)}, -xS(a,b){return this.a0U(a,b)}, -a0U(a,b){var s=0,r=A.I(t.H),q=this -var $async$xS=A.D(function(c,d){if(c===1)return A.F(d,r) -while(true)switch(s){case 0:s=2 -return A.K(q.a,$async$xS) -case 2:d.zQ("String",a,b) -return A.G(null,r)}}) -return A.H($async$xS,r)}, -tb(a,b){return this.a0M(a,b)}, -a0M(a,b){var s=0,r=A.I(t.H),q=this -var $async$tb=A.D(function(c,d){if(c===1)return A.F(d,r) -while(true)switch(s){case 0:s=2 -return A.K(q.a,$async$tb) -case 2:d.zQ("Int",a,b) -return A.G(null,r)}}) -return A.H($async$tb,r)}, -td(a,b){return this.a0V(a,b)}, -a0V(a,b){var s=0,r=A.I(t.H),q=this -var $async$td=A.D(function(c,d){if(c===1)return A.F(d,r) -while(true)switch(s){case 0:s=2 -return A.K(q.a,$async$td) -case 2:d.zQ("StringList",a,b) -return A.G(null,r)}}) -return A.H($async$td,r)}, -p9(a){return this.a_U(a)}, -a_U(a){var s=0,r=A.I(t.X7),q,p=this,o,n -var $async$p9=A.D(function(b,c){if(b===1)return A.F(c,r) -while(true)switch(s){case 0:o=A -n=J -s=3 -return A.K(p.a,$async$p9) -case 3:q=o.lB(n.aN(c.a,a)) -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$p9,r)}, -xA(a,b){return this.a0i(0,b)}, -a0i(a,b){var s=0,r=A.I(t.u),q,p=this,o,n -var $async$xA=A.D(function(c,d){if(c===1)return A.F(d,r) -while(true)switch(s){case 0:o=A -n=J -s=3 -return A.K(p.a,$async$xA) -case 3:q=o.au(n.aN(d.a,b)) -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$xA,r)}, -xy(a){return this.a_Z(a)}, -a_Z(a){var s=0,r=A.I(t.bo),q,p=this,o,n -var $async$xy=A.D(function(b,c){if(b===1)return A.F(c,r) -while(true)switch(s){case 0:o=A -n=J -s=3 -return A.K(p.a,$async$xy) -case 3:q=o.dz(n.aN(c.a,a)) -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$xy,r)}, -t_(a){return this.a0j(a)}, -a0j(a){var s=0,r=A.I(t.Xb),q,p=this,o,n,m,l -var $async$t_=A.D(function(b,c){if(b===1)return A.F(c,r) -while(true)switch(s){case 0:s=3 -return A.K(p.a,$async$t_) -case 3:n=c.a -m=J.X(n) -l=t.kc.a(m.h(n,a)) -if(l!=null&&!t.yp.b(l)){o=J.fW(l,t.N) -l=o.eM(o) -m.m(n,a,l)}n=l==null?null:J.lI(l) -q=t.Xb.a(n) -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$t_,r)}} -A.oZ.prototype={ -lt(a){return this.anU(a)}, -anU(a){var s=0,r=A.I(t.a),q,p=2,o,n=this,m,l,k -var $async$lt=A.D(function(b,c){if(b===1){o=c -s=p}while(true)switch(s){case 0:p=4 -s=7 -return A.K(n.a.Z6("agent/tasks",a.cq()),$async$lt) -case 7:m=c -q=m -s=1 -break -p=2 -s=6 -break -case 4:p=3 -k=o -throw k -s=6 -break -case 3:s=2 -break -case 6:case 1:return A.G(q,r) -case 2:return A.F(o,r)}}) -return A.H($async$lt,r)}, -BA(a,b){return this.aoS(a,b)}, -aoS(a,b){var s=0,r=A.I(t.oh),q,p=2,o,n=this,m,l,k,j,i -var $async$BA=A.D(function(c,d){if(c===1){o=d -s=p}while(true)switch(s){case 0:p=4 -s=7 -return A.K(n.a.rT(0,"agent/tasks?current_page="+a+"&page_size="+b),$async$BA) -case 7:m=d -k=A.b0t(m) -q=k -s=1 -break -p=2 -s=6 -break -case 4:p=3 -i=o -l=A.a6(i) -k=A.ck("Failed to fetch a page of tasks: "+A.j(l)) -throw A.d(k) -s=6 -break -case 3:s=2 -break -case 6:case 1:return A.G(q,r) -case 2:return A.F(o,r)}}) -return A.H($async$BA,r)}, -Bx(){var s=0,r=A.I(t.D6),q,p=this,o,n,m -var $async$Bx=A.D(function(a,b){if(a===1)return A.F(b,r) -while(true)switch(s){case 0:m=A.b([],t.UB) -o=1 -case 3:if(!!0){s=4 -break}s=5 -return A.K(p.BA(o,1e4),$async$Bx) -case 5:n=b.a -B.b.K(m,n) -if(n.length<1e4){s=4 -break}++o -s=3 -break -case 4:q=m -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$Bx,r)}, -Cs(){var s=0,r=A.I(t.H),q=this,p -var $async$Cs=A.D(function(a,b){if(a===1)return A.F(b,r) -while(true)switch(s){case 0:s=2 -return A.K(q.b.t_("deletedTasks"),$async$Cs) -case 2:p=b -q.c=p==null?A.b([],t.s):p -A.c_("Deleted tasks fetched successfully!") -return A.G(null,r)}}) -return A.H($async$Cs,r)}} -A.fG.prototype={ -Gb(a){switch(a.a){case 0:return this.a -case 1:return"http://127.0.0.1:8080/ap/v1" -case 2:return"https://leaderboard.agpt.co" -default:return this.a}}, -rT(a,b){return this.a_Q(0,b)}, -a_Q(a,b){var s=0,r=A.I(t.a),q,p=this,o -var $async$rT=A.D(function(c,d){if(c===1)return A.F(d,r) -while(true)switch(s){case 0:s=3 -return A.K(A.aOh(A.fo(p.Gb(B.ii)+"/"+b,0,null),null),$async$rT) -case 3:o=d -if(o.b===200){q=B.ar.ea(0,A.aAU(A.azR(o.e).c.a.h(0,"charset")).ea(0,o.w)) -s=1 -break}else throw A.d(A.ck("Failed to load data")) -case 1:return A.G(q,r)}}) -return A.H($async$rT,r)}, -oX(a,b,c){return this.ath(a,b,c)}, -Z6(a,b){return this.oX(a,b,B.ii)}, -ath(a,b,c){var s=0,r=A.I(t.a),q,p=this,o,n -var $async$oX=A.D(function(d,e){if(d===1)return A.F(e,r) -while(true)switch(s){case 0:o=t.N -s=3 -return A.K(A.b6D(A.fo(p.Gb(c)+"/"+a,0,null),B.ar.j0(b),A.l(["Content-Type","application/json"],o,o)),$async$oX) -case 3:n=e -o=n.b -if(o===200||o===201){q=B.ar.ea(0,A.aAU(A.azR(n.e).c.a.h(0,"charset")).ea(0,n.w)) -s=1 -break}else throw A.d(n) -case 1:return A.G(q,r)}}) -return A.H($async$oX,r)}, -xs(a){return this.a_T(a)}, -a_T(a){var s=0,r=A.I(t.H3),q,p=this,o,n -var $async$xs=A.D(function(b,c){if(b===1)return A.F(c,r) -while(true)switch(s){case 0:o=t.N -s=3 -return A.K(A.aOh(A.fo(p.Gb(B.ii)+"/"+a,0,null),A.l(["Content-Type","application/octet-stream"],o,o)),$async$xs) -case 3:n=c -o=n.b -if(o===200){q=n.w -s=1 -break}else if(o===404)throw A.d(A.ck("Resource not found")) -else throw A.d(A.ck("Failed to load binary data")) -case 1:return A.G(q,r)}}) -return A.H($async$xs,r)}} -A.SU.prototype={} -A.q2.prototype={ -E9(a){if(this.c!==a){this.c=a -this.mG()}}, -v4(){this.c=null -B.b.a0(this.b) -this.T()}, -mG(){var s=0,r=A.I(t.z),q,p=2,o,n=this,m,l,k,j,i,h,g,f,e,d,c,b -var $async$mG=A.D(function(a,a0){if(a===1){o=a0 -s=p}while(true)switch(s){case 0:c=n.c -if(c==null){A.c_("Error: Task ID is not set.") -s=1 -break}p=4 -s=7 -return A.K(n.a.Cr(c,1e4),$async$mG) -case 7:m=a0 -e=J.aN(m,"steps") -l=e==null?[]:e -c=J.ei(l,new A.a5U(),t.dJ) -k=A.a8(c,!0,A.p(c).i("am.E")) -j=A.b([],t.G2) -i=new A.dX(Date.now(),!1) -for(h=0;h0)n.b=j -n.T() -A.c_("Chats (and steps) fetched successfully for task ID: "+A.j(n.c)) -p=2 -s=6 -break -case 4:p=3 -b=o -f=A.a6(b) -A.c_("Error fetching chats: "+A.j(f)) -s=6 -break -case 3:s=2 -break -case 6:case 1:return A.G(q,r) -case 2:return A.F(o,r)}}) -return A.H($async$mG,r)}, -t6(a,b,c){return this.a0z(a,b,c)}, -MQ(a,b){return this.t6(a,b,1)}, -a0z(a,b,c){var s=0,r=A.I(t.z),q,p=2,o,n=[],m=this,l,k,j,i,h,g,f,e -var $async$t6=A.D(function(d,a0){if(d===1){o=a0 -s=p}while(true)switch(s){case 0:if(m.c==null){A.c_("Error: Task ID is not set.") -s=1 -break}m.e=!0 -m.T() -p=4 -l=new A.amz(a) -g=m.c -g.toString -s=7 -return A.K(m.a.Bw(g,l),$async$t6) -case 7:k=a0 -j=A.amB(k) -if(j.a.length!==0){i=new A.jp(j.d,j.c,j.a,new A.dX(Date.now(),!1),B.h8,null,j.x) -m.b.push(i)}h=new A.jp(j.d,j.c,j.r,new A.dX(Date.now(),!1),B.uc,k,j.x) -m.b.push(h) -m.ZI() -m.T() -if(m.f&&!j.y){A.c_("Continuous Mode: Step "+c+" of "+b) -if(c1?2:3 -break -case 2:q.d=p-1 -q.T() -s=4 -return A.K(q.f.tb("continuousModeSteps",q.d),$async$Bf) -case 4:case 3:return A.G(null,r)}}) -return A.H($async$Bf,r)}, -d1(a){var s=0,r=A.I(t.H),q=this -var $async$d1=A.D(function(b,c){if(b===1)return A.F(c,r) -while(true)switch(s){case 0:s=2 -return A.K(q.r.d1(0),$async$d1) -case 2:return A.G(null,r)}}) -return A.H($async$d1,r)}} -A.jS.prototype={ -w9(){var s=0,r=A.I(t.H),q,p=2,o,n=this,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7 -var $async$w9=A.D(function(a8,a9){if(a8===1){o=a9 -s=p}while(true)switch(s){case 0:p=4 -n.LF() -m=A.b04(n.f) -s=7 -return A.K($.Ky().arP("assets/"+A.j(m)),$async$w9) -case 7:l=a9 -k=B.ar.Be(0,l,null) -for(e=J.as(J.aN(k,"nodes")),d=t.N,c=t.z;e.u();){j=e.gJ(e) -b=j -a=J.X(b) -a.h(b,"color") -a0=a.h(b,"data") -if(a0==null)a0=A.m(d,c) -a1=J.X(a0) -a1.h(a0,"name") -a2=a1.h(a0,"category") -A.cZ(a2==null?[]:a2,!0,d) -a2=a1.h(a0,"task") -if(a2==null)a2="" -a3=a1.h(a0,"dependencies") -A.cZ(a3==null?[]:a3,!0,d) -a1.h(a0,"cutoff") -a3=a1.h(a0,"ground") -if(a3==null)a3=A.m(d,c) -a4=J.X(a3) -a4.h(a3,"answer") -a5=a4.h(a3,"should_contain") -A.cZ(a5==null?[]:a5,!0,d) -a5=a4.h(a3,"should_not_contain") -A.cZ(a5==null?[]:a5,!0,d) -a5=a4.h(a3,"files") -A.cZ(a5==null?[]:a5,!0,d) -a4.h(a3,"eval") -a3=a1.h(a0,"info") -if(a3==null)a3=A.m(d,c) -a4=J.X(a3) -a4.h(a3,"difficulty") -a5=a4.h(a3,"description") -if(a5==null)a5="" -a3=a4.h(a3,"side_effects") -A.cZ(a3==null?[]:a3,!0,d) -a0=a1.h(a0,"eval_id") -if(a0==null)a0="" -a1=a.h(b,"id") -if(a1==null)a1="" -a3=a.h(b,"label") -if(a3==null)a3="" -b=a.h(b,"shape") -if(b==null)b="" -i=new A.l8(new A.am7(a2,new A.adG(a5),a0),a1,a3,b) -n.a.push(i)}for(e=J.as(J.aN(k,"edges"));e.u();){h=e.gJ(e) -d=h -c=J.X(d) -c.h(d,"id") -b=c.h(d,"from") -a=c.h(d,"to") -c.h(d,"arrows") -g=new A.wE(b,a) -n.b.push(g)}e=n.e -e.c=3 -e.e=new A.Mr(20) -n.T() -e=A.dt(null,t.H) -q=e -s=1 -break -p=2 -s=6 -break -case 4:p=3 -a7=o -f=A.a6(a7) -A.c_(f) -s=6 -break -case 3:s=2 -break -case 6:case 1:return A.G(q,r) -case 2:return A.F(o,r)}}) -return A.H($async$w9,r)}, -LF(){this.a=A.b([],t.LB) -this.b=A.b([],t.Tq) -this.c=null}, -auy(a){var s=this,r=s.c -if((r==null?null:r.c)===a)s.c=null -else s.c=B.b.mT(s.a,new A.am9(a)) -s.T()}, -a01(a){var s,r,q -try{r=B.b.mT(this.a,new A.am8(a)) -return r}catch(q){s=A.a6(q) -A.c_("Node with ID "+a+" not found: "+A.j(s)) -return null}}} -A.am9.prototype={ -$1(a){return a.c===this.a}, -$S:39} -A.am8.prototype={ -$1(a){return a.c===this.a}, -$S:39} -A.t4.prototype={ -a_q(a,b,c,d){var s,r=this -r.w=a -switch(a.a){case 0:s=t.LB -r.r=b!=null?A.b([b],s):A.b([],s) -break -case 1:if(b!=null){s=b.c -r.r=A.b([],t.LB) -r.Zy(s,A.aE(t.N),c,d) -r.T()}break -case 2:if(b!=null)r.aac(c,d) -break}r.T()}, -aac(a,b){var s,r,q,p,o,n=t.LB,m=A.b([],n) -n=A.b([],n) -s=new A.SU(n,t.cG) -r=A.aE(t.N) -q=B.b.mT(a,new A.anX()) -n.push(q) -r.E(0,q.c) -for(;n.length!==0;){p=B.b.gL(n) -o=p.c -if(B.b.JP(this.aaz(o,a,b),new A.anY(r))){m.push(p) -B.b.gL(n) -n.pop() -o=this.aaf(o,a,b) -new A.aL(o,new A.anZ(r),A.W(o).i("aL<1>")).N(0,new A.ao_(r,s))}else{B.b.gL(n) -n.pop()}}this.r=m}, -aaz(a,b,c){var s,r,q,p=A.b([],t.LB) -for(s=c.length,r=0;r"));r.u();)this.Zy(s.gJ(s).b,b,c,d) -this.r.push(q)}}, -nf(a,b){return this.aua(a,b)}, -aua(d1,d2){var s=0,r=A.I(t.H),q=1,p,o=this,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7,c8,c9,d0 -var $async$nf=A.D(function(d3,d4){if(d3===1){p=d4 -s=q}while(true)switch(s){case 0:c9=o.e -c9.a0(0) -o.f=A.b([],t.LY) -n=new A.is(new A.dX(Date.now(),!1).LS(),A.b([],t.UB)) -o.d=!0 -o.T() -for(c=o.r,b=c.length,a=0;a") -o.c=A.a8(new A.bN(l,k),!0,k.i("am.E")) -o.T() -A.c_("Tasks fetched successfully!") -q=1 -s=5 -break -case 3:q=2 -i=p -m=A.a6(i) -A.c_("Error fetching tasks: "+A.j(m)) -s=5 -break -case 2:s=1 -break -case 5:return A.G(null,r) -case 1:return A.F(p,r)}}) -return A.H($async$Bz,r)}, -MM(a){var s,r=A.OB(this.c,new A.aof(a)) -if(r!=null){this.r=r -A.c_("Selected task with ID: "+r.a+" and Title: "+r.d) -this.T()}else{s="Error: Attempted to select a task with ID: "+a+" that does not exist in the data source." -A.c_(s) -throw A.d(A.bF(s,null))}}, -zI(){var s=0,r=A.I(t.H),q=this,p,o -var $async$zI=A.D(function(a,b){if(a===1)return A.F(b,r) -while(true)switch(s){case 0:p=q.d -o=A.W(p).i("a1<1,n>") -s=2 -return A.K(q.b.td("testSuites",A.a8(new A.a1(p,new A.aoa(),o),!0,o.i("am.E"))),$async$zI) -case 2:return A.G(null,r)}}) -return A.H($async$zI,r)}, -Ay(a){return this.alP(a)}, -alP(a){var s=0,r=A.I(t.z),q=this -var $async$Ay=A.D(function(b,c){if(b===1)return A.F(c,r) -while(true)switch(s){case 0:B.b.E(q.d,a) -s=2 -return A.K(q.zI(),$async$Ay) -case 2:q.T() -A.c_("Test suite successfully added!") -return A.G(null,r)}}) -return A.H($async$Ay,r)}, -BB(){var s=0,r=A.I(t.H),q=this,p,o -var $async$BB=A.D(function(a,b){if(a===1)return A.F(b,r) -while(true)switch(s){case 0:s=2 -return A.K(q.b.t_("testSuites"),$async$BB) -case 2:o=b -if(o==null)o=A.b([],t.s) -p=J.ei(o,new A.aoe(),t.S6) -q.d=A.a8(p,!0,A.p(p).i("am.E")) -q.T() -return A.G(null,r)}}) -return A.H($async$BB,r)}, -qR(){var s=0,r=A.I(t.H),q=this,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b -var $async$qR=A.D(function(a,a0){if(a===1)return A.F(a0,r) -while(true)switch(s){case 0:s=2 -return A.K(q.Bz(),$async$qR) -case 2:s=3 -return A.K(q.BB(),$async$qR) -case 3:p=A.m(t.N,t.S6) -o=q.e -B.b.a0(o) -n=q.f -B.b.a0(n) -for(m=q.c,l=m.length,k=t.UB,j=0;j=1000?900:o-40,m=A.zw(B.k,0.5),l=A.eC(4),k=q.a,j=k.a -if(q.b){j=j.c -s=A.aDB(A.a2(a)) -r=A.eC(4) -r=new A.Pd(!0,j.c,!1,s.anM(B.Z,new A.bM(B.k,p,new A.d1(B.n,B.n,B.n,new A.bk(B.cn,4,B.I,-1)),p,p,p,B.D),B.n4,A.f6(p,B.iI,p,p,p,p,p,p,"monospace",p,p,p,p,p,p,p,p,!0,p,p,p,p,p,p,p,p),new A.bM(B.iI,p,p,r,p,p,B.D),B.n4),p,p,p,p,p,p,p,p,p,p,p,B.Ld,B.Le,B.Lj,!1,p) -j=r}else j=A.aKB(j.c.c,p) -j=A.iH(A.cC(p,A.Ss(j,p,p,!1,B.aq),B.m,p,p,p,p,p,p,B.n2,p,p,p),1) -s=k.a.d -r=A.qn(p,p,B.j,p,p,p,p,p,p,B.k,p,p,p,p,new A.cF(A.eC(8),B.n),B.lP,p,p,p,p) -r=A.uI(!1,A.dQ(""+q.c+" Artifacts",p,p,p,p,p,p),B.m,p,p,p,p,p,s,p,r) -s=t.p -r=A.b([A.cC(p,A.e0(A.b([B.Ud,B.hH,j,r,B.hH,A.h7(p,p,A.nW(k.d?B.G1:B.G0,p,p,p),p,new A.aqz(k),p,0.1,p,p)],s),B.v,B.G,B.K,p),B.m,p,B.lS,p,p,p,p,p,p,p,p)],s) -if(k.d)B.b.K(r,A.b([B.fr,A.M_(A.cz(new A.bY(B.Fd,new A.OF(q.d,p),p),200,p),B.S)],s)) -return new A.fd(B.a0,p,p,A.cC(p,A.eV(r,B.v,B.G,B.K),B.m,p,p,new A.bM(B.j,p,m,l,p,p,B.D),p,p,B.bW,B.n6,p,p,n),p)}, -$S:144} -A.aqz.prototype={ -$0(){var s=this.a -s.ao(new A.aqy(s))}, -$S:0} -A.aqy.prototype={ -$0(){var s=this.a -s.d=!s.d}, -$S:0} -A.zK.prototype={ -ae(){var s=null -return new A.V8(A.aL5(s),A.qA(!0,s,!0,!0,s,s,!1),A.qA(!0,s,!0,!0,s,s,!1),B.i)}, -L9(a){return this.c.$1(a)}, -KZ(){return this.d.$0()}} -A.V8.prototype={ -aE(){this.aV() -this.e.U(0,new A.as3(this))}, -n(){this.e.n() -this.aP()}, -zv(){var s=0,r=A.I(t.H),q=this,p,o,n,m -var $async$zv=A.D(function(a,b){if(a===1)return A.F(b,r) -while(true)switch(s){case 0:s=2 -return A.K(q.a.f.d.p9("showContinuousModeDialog"),$async$zv) -case 2:m=b -if(m==null)m=!0 -p=q.c -p.toString -A.aai(p).ZT(q.f) -if(m){p=q.c -p.toString -o=A.jF(p,!0).c -o.toString -n=A.Ov(p,o) -o=A.jF(p,!0) -o.n9(A.aX5(null,B.O,!0,null,new A.arZ(q),p,null,n,B.kU,!0,t.z))}else q.PT() -return A.G(null,r)}}) -return A.H($async$zv,r)}, -PT(){var s,r=this,q=r.a -if(!q.e){s=r.d -q.L9(s.a.a) -s.m7(0,B.kK) -r.e.ni()}r.a.KZ()}, -G(a){return new A.ob(new A.as2(this),null)}} -A.as3.prototype={ -$0(){var s=this.a -if(s.e.gcj()&&s.a.e)s.a.KZ()}, -$S:0} -A.arZ.prototype={ -$1(a){var s=this.a -return new A.q8(new A.arX(s,a),new A.arY(s),null)}, -$S:426} -A.arX.prototype={ -$0(){A.jF(this.b,!1).ex() -this.a.PT()}, -$S:0} -A.arY.prototype={ -$1(a){return this.a_L(a)}, -a_L(a){var s=0,r=A.I(t.H),q=this -var $async$$1=A.D(function(b,c){if(b===1)return A.F(c,r) -while(true)switch(s){case 0:s=2 -return A.K(q.a.a.f.d.t7("showContinuousModeDialog",!a),$async$$1) -case 2:return A.G(null,r)}}) -return A.H($async$$1,r)}, -$S:137} -A.as2.prototype={ -$2(a,b){var s,r,q=null,p=b.b,o=p>=1000?900:p-40,n=A.zw(B.k,0.5),m=A.eC(8),l=this.a,k=A.b([],t.p) -if(!l.a.e)k.push(A.apr(A.h7(q,q,B.Gm,q,new A.as_(l),q,0.1,q,q),"Send a single message")) -s=l.a.e -r=s?"":"Enable continuous mode" -k.push(A.apr(A.h7(q,q,A.nW(s?B.G4:B.G_,q,q,q),q,new A.as0(l),q,0.1,q,q),r)) -return A.cC(q,A.Ss(A.aL7(l.d,A.aJ1(q,B.f1,q,q,q,q,q,q,!0,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,"Type a message...",q,q,q,q,!1,q,q,q,q,q,q,q,q,q,q,q,q,A.e0(k,B.v,B.G,B.bH,q),q,q,q,q),l.e,q,new A.as1(l)),q,q,!0,B.aq),B.m,q,B.B4,new A.bM(B.j,q,n,m,q,q,B.D),q,q,q,B.fv,q,q,o)}, -$S:427} -A.as1.prototype={ -$1(a){var s=this.a,r=s.a -r.toString -s=s.d -r.L9(s.a.a) -s.m7(0,B.kK)}, -$S:33} -A.as_.prototype={ -$0(){var s=this.a,r=s.a -r.toString -s=s.d -r.L9(s.a.a) -s.m7(0,B.kK)}, -$S:0} -A.as0.prototype={ -$0(){var s=this.a,r=s.a -if(!r.e)s.zv() -else r.KZ()}, -$S:0} -A.nw.prototype={ -ae(){return new A.Va(A.wq(0),B.i)}} -A.Va.prototype={ -aE(){var s=this -s.aV() -s.d.U(0,new A.as9(s)) -$.av.p1$.push(new A.asa(s))}, -n(){this.d.n() -this.aP()}, -G(a){var s=this,r=null,q=A.ce(a,!0,t.Wm),p=A.iH(A.aeZ(s.d,new A.as6(s),s.a.c.b.length),1),o=A.ce(a,!0,t.Qd).d||s.a.c.e||q.x,n=s.a.c -return A.DB(r,r,A.eV(A.b([p,B.z7,new A.BK(o,r),B.z7,new A.bY(B.ch,new A.zK(new A.as7(s,a,q),new A.as8(s),n.f,n,r),r)],t.p),B.v,B.G,B.K))}} -A.as9.prototype={ -$0(){var s=this.a,r=s.d.f -if(B.b.gbD(r).gID()){r=B.b.gbD(r).at -r.toString -if(r===0)s.e=!1 -else s.e=!0}}, -$S:0} -A.asa.prototype={ -$1(a){this.a.a.c.mG()}, -$S:3} -A.as6.prototype={ -$2(a,b){var s=this.a,r=s.a.c.b,q=r[b] -if(b===r.length-1&&s.e)$.av.p1$.push(new A.as4(s)) -if(q.e===B.h8)return new A.U6(q.c,null) -else return new A.yY(q,new A.as5(s,q),new A.et(q.a,t.kK))}, -$S:156} -A.as4.prototype={ -$1(a){var s=this.a.d,r=B.b.gbD(s.f).Q -r.toString -s.i5(r,B.cf,B.F)}, -$S:3} -A.as5.prototype={ -$0(){var s,r,q,p,o,n -for(s=this.b,r=s.r,q=r.length,p=this.a,s=s.b,o=0;o=500&&m.b<600)A.NI(B.em,16,B.kS,"500 error: Something went wrong",B.j,5,B.kT,u.ct,"center") -s=5 -break -case 2:s=1 -break -case 5:return A.G(null,r) -case 1:return A.F(p,r)}}) -return A.H($async$$1,r)}, -$S:443} -A.as8.prototype={ -$0(){var s=this.a.a.c -s.f=!s.f -s.T()}, -$S:16} -A.q8.prototype={ -ae(){return new A.Vp(B.i)}} -A.Vp.prototype={ -G(a){var s=this,r=null,q=A.eC(8),p=s.d,o=p?B.mF:B.C,n=A.nW(B.FZ,p?B.mF:B.k,r,r),m=A.cz(A.uI(!1,B.Uo,B.m,r,r,r,r,r,new A.ass(a),r,A.qn(r,r,B.cn,r,r,r,r,r,r,r,r,r,r,r,new A.cF(A.eC(8),B.n),r,r,r,r,r)),28,106),l=A.qn(r,r,B.fg,r,r,r,r,r,r,r,r,r,r,r,new A.cF(A.eC(8),B.n),r,r,r,r,r),k=t.p -return new A.Fx(new A.MN(new A.cF(q,new A.bk(o,3,B.I,-1)),A.cC(r,A.eV(A.b([n,B.kF,B.Um,B.kF,B.Pi,B.Pk,A.e0(A.b([m,B.c1,A.cz(A.uI(!1,B.U7,B.m,r,r,r,r,r,s.a.c,r,l),28,106)],k),B.v,B.el,B.K,r),B.Pj,A.e0(A.b([new A.zL(s.e,new A.ast(s),r),B.Ug],k),B.v,B.el,B.K,r)],k),B.v,B.G,B.K),B.m,r,r,r,r,251,r,B.j3,r,r,260),r),new A.asu(s),r)}} -A.asu.prototype={ -$0(){var s=0,r=A.I(t.y),q,p=this,o -var $async$$0=A.D(function(a,b){if(a===1)return A.F(b,r) -while(true)switch(s){case 0:o=p.a -o.ao(new A.asq(o)) -q=!1 -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$$0,r)}, -$S:98} -A.asq.prototype={ -$0(){this.a.d=!0}, -$S:0} -A.ass.prototype={ -$0(){return A.jF(this.a,!1).ex()}, -$S:0} -A.ast.prototype={ -$1(a){var s=this.a -s.ao(new A.asr(s,a)) -s.a.d.$1(s.e)}, -$S:157} -A.asr.prototype={ -$0(){this.a.e=this.b===!0}, -$S:0} -A.OF.prototype={ -G(a){var s=null,r=A.aLX(B.ar.ea(0,this.c),s," "),q=B.c.a6(" ",8) -return new A.bY(B.Fk,A.e0(A.b([A.iH(A.Ss(new A.Oc(A.e4(r,"\t",q),"json",B.KY,B.n5,B.SH,s),s,s,!1,B.aq),1),B.hH,A.ha(B.F,s,A.h7(s,s,B.Gi,s,new A.aeg(r),s,s,s,s),B.m,B.j,0,s,s,s,s,s,B.c0)],t.p),B.v,B.G,B.K,s),s)}} -A.aeg.prototype={ -$0(){A.zY(new A.q3(this.a))}, -$S:0} -A.BK.prototype={ -ae(){return new A.XZ(null,null,B.i)}} -A.XZ.prototype={ -aE(){this.aV() -var s=A.bO(null,B.ft,null,null,this) -s.LD(0) -this.d=s}, -n(){var s=this.d -s===$&&A.c() -s.n() -this.a5t()}, -G(a){return new A.ob(new A.auX(this),null)}} -A.auX.prototype={ -$2(a,b){var s,r=null,q=b.b,p=q>=1000?850:q-65 -q=this.a -if(q.a.c){s=q.d -s===$&&A.c() -q=A.jn(s,new A.auW(q,p),r)}else q=A.cC(r,r,B.m,B.cd,r,r,r,r,r,r,r,r,r) -return A.cz(q,4,p)}, -$S:450} -A.auW.prototype={ -$2(a,b){var s=null -return new A.wA(new A.auV(this.a),A.cC(s,s,B.m,B.j,s,s,s,4,s,s,s,s,this.b),s)}, -$S:459} -A.auV.prototype={ -$1(a){var s,r,q=null,p=A.b([B.cd,B.fg,B.j,B.cd],t.t_),o=this.a.d -o===$&&A.c() -o=o.x -o===$&&A.c() -o=A.b([o-0.5,o-0.25,o,o+0.25],t.B) -s=B.cy.P(q).a_y(a) -r=B.dE.P(q).a_y(a) -o=new A.P_(B.cy,B.dE,B.cv,p,o,q).adS() -return A.aDg(s,r,p,o,B.cv,q)}, -$S:460} -A.JP.prototype={ -n(){var s=this,r=s.cb$ -if(r!=null)r.H(0,s.giM()) -s.cb$=null -s.aP()}, -bY(){this.cR() -this.cA() -this.iN()}} -A.U6.prototype={ -G(a){return new A.ob(new A.aq5(this),null)}} -A.aq5.prototype={ -$2(a,b){var s=null,r=b.b,q=r>=1000?900:r-40,p=A.zw(B.k,0.5),o=A.eC(4) -return new A.fd(B.a0,s,s,A.cC(s,A.e0(A.b([B.Ue,B.hH,A.iH(A.cC(s,A.aKB(this.a.c,s),B.m,s,s,s,s,s,s,B.n2,s,s,s),1)],t.p),B.v,B.G,B.K,s),B.m,s,B.lS,new A.bM(B.j,s,p,o,s,s,B.D),s,s,B.bW,B.n6,s,s,q),s)}, -$S:144} -A.P9.prototype={ -G(a){var s,r=null,q={},p=A.bD(a,r,t.w).w.a.a,o=A.ce(a,!0,t.Wm),n=A.ce(a,!0,t.w_),m=A.ce(a,!0,t.VA) -q.a=q.b=q.c=0 -if(p>800){s=this.c -return A.e0(A.b([A.cz(new A.Sp(s,r),r,60),A.aLz(new A.aff(q,p-60,280,o,n,280,m),s,t.N)],t.p),B.v,B.G,B.K,r)}else return new A.ut(A.aHK(r,r,B.AS,0,50,30,B.bU,B.Il,r,r),new A.afg(o,n),r)}} -A.aff.prototype={ -$3(a,b,c){var s=this -return A.aHE(new A.afe(s.a,b,s.b,s.c,s.d,s.e,s.f,s.r),t.LM)}, -$S:463} -A.afe.prototype={ -$3(a,b,c){var s,r,q,p=this,o=null,n=p.b -if(n==="TaskView"){b.LF() -n=p.d -s=p.c-n -p.a.a=s -return A.e0(A.b([A.cz(new A.wW(p.e,o),o,n),A.cz(new A.nw(p.f,o),o,s)],t.p),B.v,B.G,B.K,o)}else if(n==="SettingsView"){b.LF() -n=p.r -s=p.c-n -p.a.a=s -return A.e0(A.b([A.cz(new A.Sl(p.w,o),o,n),A.cz(new A.nw(p.f,o),o,s)],t.p),B.v,B.G,B.K,o)}else{n=p.c -r=p.a -q=n*0.5 -if(b.c!=null){n=r.c=r.b=n*0.25 -r.a=q}else{r.a=r.c=q -n=q}n=A.b([A.cz(new A.Ec(b,o),o,n)],t.p) -if(b.c!=null)n.push(A.cz(new A.Tk(o),o,r.b)) -n.push(A.cz(new A.nw(p.f,o),o,r.a)) -return A.e0(n,B.v,B.G,B.K,o)}}, -$C:"$3", -$R:3, -$S:464} -A.afg.prototype={ -$2(a,b){var s -switch(b){case 0:s=A.aCJ(new A.afb(this.a)) -break -case 1:s=A.aCJ(new A.afc(this.b)) -break -default:s=null}return s==null?A.aCJ(new A.afd()):s}, -$S:465} -A.afb.prototype={ -$1(a){return A.aCI(A.RY(!0,new A.wW(this.a,null),B.z,!0))}, -$S:110} -A.afc.prototype={ -$1(a){return A.aCI(A.RY(!0,new A.nw(this.a,null),B.z,!0))}, -$S:110} -A.afd.prototype={ -$1(a){var s=null -return A.aCI(A.cC(s,s,B.m,s,s,s,s,s,s,s,s,s,s))}, -$S:110} -A.KQ.prototype={ -G(a){return A.aHE(new A.a4e(this),t.VA)}} -A.a4e.prototype={ -$3(a,b,c){var s,r,q,p=null,o=this.a,n=o.c -n.scW(0,b.c) -s=A.zw(B.k,0.5) -r=A.eC(8) -q=t.p -return new A.bY(B.dX,A.eV(A.b([A.cC(p,new A.bY(B.fv,A.aL7(n,B.GG,p,1,p),p),B.m,p,p,new A.bM(B.j,p,s,r,p,p,B.D),p,50,p,p,p,p,p),B.Pl,A.e0(A.b([A.uI(!1,B.U9,B.m,p,p,p,p,p,new A.a4c(o,b),p,A.qn(p,p,B.j,p,p,p,p,p,p,B.k,p,p,p,p,p,p,p,p,B.dx,p)),A.uI(!1,B.Ui,B.m,p,p,p,p,p,new A.a4d(o,b),p,A.qn(p,p,B.j,p,p,p,p,p,p,B.k,p,p,p,p,p,p,p,p,B.dx,p))],q),B.v,B.KS,B.K,p)],q),B.v,B.G,B.K),p)}, -$C:"$3", -$R:3, -$S:467} -A.a4c.prototype={ -$0(){var s=this.a.c -s.scW(0,"http://127.0.0.1:8000/ap/v1") -this.b.xi(s.a.a)}, -$S:0} -A.a4d.prototype={ -$0(){this.b.xi(this.a.c.a.a)}, -$S:0} -A.Sl.prototype={ -G(a){var s=null,r=A.aHf(B.cn,B.k,s,B.Ub),q=this.c,p=t.p,o=A.iH(A.aDw(A.b([new A.T5(q.b,q.gauv(),B.Ua,s),B.fr,B.H8,new A.KQ(A.aL5(s),s),B.fr,A.aDv(!1,s,s,s,!0,s,s,!1,s,s,s,!1,s,s,s,A.e0(A.b([A.h7(s,s,B.Gl,s,q.gao7(),s,s,s,s),A.dQ(""+q.d+" Steps",s,s,s,s,s,s),A.h7(s,s,B.Gn,s,q.gaqN(),s,s,s,s)],p),B.v,B.el,B.K,s),s,B.D6,s,s),B.fr],p),s,s,s,s,!1),1),n=A.qn(s,s,B.j,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s) -return A.DB(r,s,A.eV(A.b([o,A.cC(s,new A.WG(q.gN9(q),s,s,s,n,B.m,s,!1,s,!0,new A.WH(B.U8,B.Gg,s),s),B.m,s,s,s,s,s,s,B.dY,s,s,1/0)],p),B.v,B.G,B.K))}} -A.Sp.prototype={ -nL(a){return this.aek(a)}, -aek(a){var s=0,r=A.I(t.z),q -var $async$nL=A.D(function(b,c){if(b===1)return A.F(c,r) -while(true)switch(s){case 0:q=A.fo(a,0,null) -s=5 -return A.K(A.aFk(q),$async$nL) -case 5:s=c?2:4 -break -case 2:s=6 -return A.K(A.aFD(q),$async$nL) -case 6:s=3 -break -case 4:throw A.d("Could not launch "+q.k(0)) -case 3:return A.G(null,r)}}) -return A.H($async$nL,r)}, -G(a){var s=null -return A.ha(B.F,s,A.aLz(new A.alR(this,A.ce(a,!0,t.Qd)),this.c,t.N),B.m,s,0,s,s,s,s,s,B.c0)}} -A.alR.prototype={ -$3(a,b,c){var s,r=this,q=null,p=b==="TaskView"?B.c_:B.k,o=r.b,n=t.p -p=A.b([A.h7(p,q,B.Gu,q,o.d?q:new A.alL(r.a),q,0.1,q,q)],n) -if(A.ce(a,!0,t.VA).b){s=b==="SkillTreeView"?B.c_:B.k -p.push(A.h7(s,q,B.Gr,q,o.d?q:new A.alM(r.a),q,0.1,q,q))}o=b==="SettingsView"?B.c_:B.k -s=r.a -p.push(A.h7(o,q,B.Gs,q,new A.alN(s),q,0.1,q,q)) -return A.cz(A.eV(A.b([A.eV(p,B.v,B.G,B.K),B.Pu,A.eV(A.b([A.h7(q,q,A.nW(B.FQ,A.aHC(50,120,123,1),q,q),25,new A.alO(s),q,0.1,q,"Learn how to build your own Agent"),A.h7(q,q,A.Op("assets/images/discord_logo.png",q,q),25,new A.alP(s),q,0.1,q,"Join our Discord"),B.Pn,A.h7(q,q,A.Op("assets/images/twitter_logo.png",q,q),15,new A.alQ(s),q,0.1,q,"Follow us on Twitter"),B.kF],n),B.v,B.G,B.K)],n),B.v,B.G,B.K),q,60)}, -$S:468} -A.alL.prototype={ -$0(){var s="TaskView" -this.a.c.sl(0,s) -return s}, -$S:0} -A.alM.prototype={ -$0(){var s="SkillTreeView" -this.a.c.sl(0,s) -return s}, -$S:0} -A.alN.prototype={ -$0(){var s="SettingsView" -this.a.c.sl(0,s) -return s}, -$S:0} -A.alO.prototype={ -$0(){return this.a.nL("https://aiedge.medium.com/autogpt-forge-e3de53cc58ec")}, -$S:0} -A.alP.prototype={ -$0(){return this.a.nL("https://discord.gg/autogpt")}, -$S:0} -A.alQ.prototype={ -$0(){return this.a.nL("https://twitter.com/Auto_GPT")}, -$S:0} -A.Ec.prototype={ -ae(){return new A.a_U(B.i)}} -A.a_U.prototype={ -aE(){this.aV() -this.d=this.a.c.w9()}, -G(a){var s=this,r=null,q=s.d,p=s.a.c.f,o=t.UA -return A.lb(B.bR,A.b([new A.uZ(q,new A.axx(s),r,t.qs),A.w1(r,A.ha(B.F,r,new A.uC(A.a8(new A.a1(B.IX,new A.axy(),o),!0,o.i("am.E")),p,new A.axz(s),r,t.Nc),B.m,r,0,r,r,r,r,r,B.de),r,r,10,r,10,r)],t.p),B.S,B.bM,r)}} -A.axx.prototype={ -$2(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=null,d=this.a -B.b.a0(d.a.c.d.a) -B.b.a0(d.a.c.d.b) -if(b.a===B.fm)return B.Da -if(b.c!=null)return B.Ul -s=t._A -r=A.m(t.N,s) -for(q=d.a.c.a,p=q.length,o=t.Nf,n=0;n260)q=260 -s=A.u2(r,r,new A.bJ(B.j,t.h9),r,r,r,r,r,r,r,r,r,r,r,r,new A.bJ(new A.cF(A.eC(8),B.n),t.xx),new A.bJ(B.AQ,t.e1),r,r,r,r,r) -return A.uI(!1,A.cz(B.NR,50,q),B.m,r,r,r,r,r,this.c,r,s)}} -A.t3.prototype={ -G(a){var s,r,q,p,o=this,n=null,m=A.bD(a,n,t.w).w.a.a-20 -if(m>260)m=260 -s=o.f -r=s?B.fj:B.j -q=A.eC(8) -p=A.b([B.c1,B.Gq,B.c1,A.iH(A.dQ(o.c.d,1,B.aZ,n,B.dx,n,n),1)],t.p) -if(s)p.push(A.h7(n,n,B.Gv,n,o.e,n,0.1,n,n)) -return A.hF(n,A.ha(B.F,n,new A.bY(B.n3,A.cC(n,A.e0(p,B.v,B.G,B.K,n),B.m,n,n,new A.bM(r,n,n,q,n,n,B.D),n,50,n,n,n,n,m),n),B.m,B.C,0,n,n,n,n,n,B.c0),B.a1,!1,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,new A.anW(o),n,n,n,!1,B.aP)}} -A.anW.prototype={ -$0(){this.a.d.$0()}, -$S:0} -A.wW.prototype={ -ae(){return new A.a0y(B.i)}} -A.a0y.prototype={ -aE(){this.aV() -$.av.p1$.push(new A.ayc(this))}, -G(a){var s,r=this,q=null,p=A.ce(a,!1,t.VA).b,o=r.a,n=p?o.c.e:o.c.f -p=t.p -p=A.b([A.eV(A.b([new A.bY(B.ch,new A.PT(new A.aya(r,a),q),q),A.iH(A.aeZ(q,new A.ayb(r,n),n.length),1)],p),B.v,B.G,B.K)],p) -o=r.a.c -s=o.w -if(s!=null)p.push(A.w1(0,new A.EN(o,s,q),q,q,0,0,0,q)) -return A.DB(q,B.j,A.lb(B.bR,p,B.S,B.bM,q))}} -A.ayc.prototype={ -$1(a){this.a.a.c.qR()}, -$S:3} -A.aya.prototype={ -$0(){var s=0,r=A.I(t.H),q=this,p -var $async$$0=A.D(function(a,b){if(a===1)return A.F(b,r) -while(true)switch(s){case 0:A.ce(q.b,!1,t.w_).v4() -p=q.a.a.c -p.r=null -A.c_("Deselected the current task.") -p.T() -A.c_("New Task button pressed, cleared current task ID and chats") -return A.G(null,r)}}) -return A.H($async$$0,r)}, -$S:15} -A.ayb.prototype={ -$2(a,b){var s,r,q,p=this.b[b] -if(p instanceof A.fK){s=this.a -r=p.a -q=s.a.c.r -q=q==null?null:q.a -return new A.t3(p,new A.ay7(s,p,a),new A.ay8(s,p,a),r===q,null)}else if(p instanceof A.is)return new A.Tn(p,new A.ay9(this.a,p,a),null) -else return B.ai}, -$S:156} -A.ay7.prototype={ -$0(){var s=this.b,r=s.a -this.a.a.c.MM(r) -A.ce(this.c,!1,t.w_).E9(r) -A.c_("Task "+s.d+" tapped")}, -$S:0} -A.ay8.prototype={ -$0(){var s,r=this.b,q=r.a -this.a.a.c.Wo(q) -s=A.ce(this.c,!1,t.w_) -if(s.c===q)s.v4() -A.c_("Task "+r.d+" delete button tapped")}, -$S:0} -A.ay9.prototype={ -$0(){var s=this.a,r=s.a.c -r.r=null -A.c_("Deselected the current task.") -r.T() -s=s.a.c -s.w=this.b -s.T() -A.ce(this.c,!1,t.w_).v4()}, -$S:0} -A.EN.prototype={ -ae(){return new A.a0B(B.i)}} -A.a0B.prototype={ -G(a){var s=null,r=this.a.d,q=A.dQ(r.a,s,s,s,s,s,s) -return A.DB(A.aHf(B.cn,B.k,A.h7(s,s,A.nW(B.jl,s,s,s),s,new A.ayk(this),s,s,s,s),q),B.j,A.eV(A.b([A.iH(A.aeZ(s,new A.ayl(this),r.b.length),1)],t.p),B.v,B.G,B.K))}} -A.ayk.prototype={ -$0(){var s=this.a.a.c -s.w=null -s.T() -return null}, -$S:0} -A.ayl.prototype={ -$2(a,b){var s=this.a,r=s.a,q=r.d.b[b],p=q.a -r=r.c.r -r=r==null?null:r.a -return new A.t3(q,new A.ayi(s,q,a),new A.ayj(s,q,a),p===r,null)}, -$S:486} -A.ayi.prototype={ -$0(){var s=this.b,r=s.a -this.a.a.c.MM(r) -A.ce(this.c,!1,t.w_).E9(r) -A.c_("Task "+s.d+" tapped")}, -$S:0} -A.ayj.prototype={ -$0(){var s,r=this.b,q=r.a -this.a.a.c.Wo(q) -s=A.ce(this.c,!1,t.w_) -if(s.c===q)s.v4() -A.c_("Task "+r.d+" delete button tapped")}, -$S:0} -A.Tn.prototype={ -G(a){var s,r=null,q=A.bD(a,r,t.w).w.a.a-20 -if(q>260)q=260 -s=A.eC(8) -return A.hF(r,A.ha(B.F,r,new A.bY(B.n3,A.cC(r,A.e0(A.b([B.c1,B.Gh,B.c1,A.iH(A.dQ(this.c.a,1,B.aZ,r,B.dx,r,r),1),B.Gk,B.c1],t.p),B.v,B.G,B.K,r),B.m,r,r,new A.bM(B.j,r,r,s,r,r,B.D),r,50,r,r,r,r,q),r),B.m,B.C,0,r,r,r,r,r,B.c0),B.a1,!1,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,new A.aoh(this),r,r,r,!1,B.aP)}} -A.aoh.prototype={ -$0(){this.a.d.$0()}, -$S:0} -A.Tk.prototype={ -G(a){var s,r=null,q=A.ce(a,!0,t.Qd),p=q.r -if(p==null)p=A.b([],t.LB) -s=t.p -return A.ha(B.F,r,A.eV(A.b([A.iH(A.aeZ(r,new A.ao4(p,q),p.length),1),new A.bY(new A.aF(20,20,20,20),A.eV(A.b([new A.EM(q.d,new A.ao5(a,q),new A.ao6(a,q),A.wY(q.w),r),A.cz(r,8,r)],s),B.v,B.G,B.K),r)],s),B.v,B.G,B.K),B.m,B.j,0,r,r,r,r,r,B.c0)}} -A.ao4.prototype={ -$2(a,b){var s,r,q,p,o=null,n=this.a[b] -switch(this.b.e.h(0,n)){case null:case void 0:case B.lG:s=A.zN(B.cn,A.zN(B.j,o,6),12) -break -case B.lH:s=A.cz(A.aHy(2),24,24) -break -case B.lI:s=A.zN(B.u8,A.zN(B.j,o,6),12) -break -case B.lJ:s=A.zN(B.em,A.zN(B.j,o,6),12) -break -default:s=o}r=A.zw(B.k,1) -q=A.eC(4) -p=A.km(A.dQ(n.d,o,o,o,o,o,o),o,o) -return A.cC(o,A.aDv(!1,o,o,o,!0,o,o,!1,s,o,o,!1,o,o,o,A.km(A.dQ(n.b.r.b,o,o,o,o,o,o),o,o),o,p,o,o),B.m,o,o,new A.bM(B.j,o,r,q,o,o,B.D),o,o,new A.aF(20,5,20,5),o,o,o,o)}, -$S:487} -A.ao5.prototype={ -$1(a){var s,r -A.c_("Option Selected: "+a) -s=A.ce(this.a,!1,t.LM) -r=A.b0u(a) -r.toString -this.b.a_q(r,s.c,s.a,s.b)}, -$S:57} -A.ao6.prototype={ -$1(a){var s,r,q -A.c_("Starting benchmark with option: "+a) -s=this.a -r=A.ce(s,!1,t.w_) -q=A.ce(s,!1,t.Wm) -r.v4() -this.b.nf(r,q)}, -$S:57} -A.EM.prototype={ -ae(){return new A.a0A(B.i)}, -asE(a){return this.d.$1(a)}, -asF(a){return this.e.$1(a)}} -A.a0A.prototype={ -G(a){var s=this,r=null,q=s.a,p=q.c,o=p?B.cn:B.fg,n=A.eC(8),m=t.p -p=A.iH(new A.vY(new A.ayf(),new A.ayg(s),A.cC(r,A.e0(A.b([new A.qx(1,B.nl,A.dQ(q.f,2,B.aZ,r,B.kP,r,r),r),B.Gf],m),B.v,B.el,B.K,r),B.m,r,r,new A.bM(o,r,r,n,r,r,B.D),r,50,r,B.dY,r,r,r),!p,r,t.iX),1) -q=s.a.c?B.cn:B.fg -q=A.qn(r,r,q,r,r,r,5,r,r,r,r,r,B.dY,r,new A.cF(A.eC(8),B.n),r,r,r,r,r) -return A.e0(A.b([p,B.Ph,A.cz(A.uI(!1,B.Gp,B.m,r,r,r,r,r,s.a.c?r:new A.ayh(s),r,q),50,r)],m),B.v,B.G,B.K,r)}} -A.ayg.prototype={ -$1(a){var s=this.a -s.ao(new A.aye(s,a)) -s=s.a -s.asE(s.f)}, -$S:33} -A.aye.prototype={ -$0(){this.a.a.f=this.b}, -$S:0} -A.ayf.prototype={ -$1(a){var s,r,q=null,p=A.wY(B.hK),o=t.N -p=A.aDV(A.dQ(A.wY(B.hK),q,q,q,q,q,q),p,o) -s=A.wY(B.kH) -s=A.aDV(A.dQ(A.wY(B.kH),q,q,q,q,q,q),s,o) -r=A.wY(B.kI) -return A.b([p,s,A.aDV(A.dQ(A.wY(B.kI),q,q,q,q,q,q),r,o)],t.Do)}, -$S:495} -A.ayh.prototype={ -$0(){var s=this.a.a -s.asF(s.f)}, -$S:0} -A.f5.prototype={ -ga9(a){return new A.Ex(this.a,0,0)}, -gM(a){var s=this.a,r=s.length -return r===0?A.U(A.a4("No element")):B.c.S(s,0,new A.lN(s,r,0,176).jW())}, -gL(a){var s=this.a,r=s.length -return r===0?A.U(A.a4("No element")):B.c.bK(s,new A.zr(s,0,r,176).jW())}, -ga8(a){return this.a.length===0}, -gc3(a){return this.a.length!==0}, -gp(a){var s,r,q=this.a,p=q.length -if(p===0)return 0 -s=new A.lN(q,p,0,176) -for(r=0;s.jW()>=0;)++r -return r}, -bp(a,b){var s,r,q,p,o,n -A.e_(b,"index") -s=this.a -r=s.length -if(r!==0){q=new A.lN(s,r,0,176) -for(p=0,o=0;n=q.jW(),n>=0;o=n){if(p===b)return B.c.S(s,o,n);++p}}else p=0 -throw A.d(A.aDl(b,this,"index",null,p))}, -t(a,b){var s -if(typeof b!="string")return!1 -s=b.length -if(s===0)return!1 -if(new A.lN(b,s,0,176).jW()!==s)return!1 -s=this.a -return A.b3L(s,b,0,s.length)>=0}, -Te(a,b,c){var s,r -if(a===0||b===this.a.length)return b -s=this.a -c=new A.lN(s,s.length,b,176) -do{r=c.jW() -if(r<0)break -if(--a,a>0){b=r -continue}else{b=r -break}}while(!0) -return b}, -iy(a,b){A.e_(b,"count") -return this.ajb(b)}, -ajb(a){var s=this.Te(a,0,null),r=this.a -if(s===r.length)return B.ct -return new A.f5(B.c.bK(r,s))}, -kY(a,b){A.e_(b,"count") -return this.ajV(b)}, -ajV(a){var s=this.Te(a,0,null),r=this.a -if(s===r.length)return this -return new A.f5(B.c.S(r,0,s))}, -Y(a,b){return new A.f5(this.a+b.a)}, -rK(a){return new A.f5(this.a.toLowerCase())}, -j(a,b){if(b==null)return!1 -return b instanceof A.f5&&this.a===b.a}, -gA(a){return B.c.gA(this.a)}, -k(a){return this.a}} -A.Ex.prototype={ -gJ(a){var s=this,r=s.d -return r==null?s.d=B.c.S(s.a,s.b,s.c):r}, -u(){return this.EX(1,this.c)}, -EX(a,b){var s,r,q,p,o,n,m,l,k,j=this -if(a>0){s=j.c -for(r=j.a,q=r.length,p=176;s0;s=q){q=r.jW() -if(q<0)break;--a}p.b=s -p.c=b -p.d=null -return a===0}} -A.lN.prototype={ -jW(){var s,r,q,p,o,n,m,l=this,k=u.S -for(s=l.b,r=l.a;q=l.c,qs;){p=k.c=q-1 -o=r.charCodeAt(p) -if((o&64512)!==56320){p=k.d=j.charCodeAt(k.d&240|A.tM(o)) -if(((p>=208?k.d=A.aBu(r,s,k.c,p):p)&1)===0)return q -continue}if(p>=s){n=r.charCodeAt(p-1) -if((n&64512)===55296){m=A.lF(n,o) -p=--k.c}else m=2}else m=2 -l=k.d=j.charCodeAt(k.d&240|m) -if(((l>=208?k.d=A.aBu(r,s,p,l):l)&1)===0)return q}p=k.d=j.charCodeAt(k.d&240|15) -if(((p>=208?k.d=A.aBu(r,s,q,p):p)&1)===0)return k.c -return-1}} -A.bS.prototype={ -h(a,b){var s,r=this -if(!r.z6(b))return null -s=r.c.h(0,r.a.$1(r.$ti.i("bS.K").a(b))) -return s==null?null:s.b}, -m(a,b,c){var s,r=this -if(!r.z6(b))return -s=r.$ti -r.c.m(0,r.a.$1(b),new A.aY(b,c,s.i("@").a5(s.i("bS.V")).i("aY<1,2>")))}, -K(a,b){b.N(0,new A.a5z(this))}, -hz(a,b,c){var s=this.c -return s.hz(s,b,c)}, -ak(a,b){var s=this -if(!s.z6(b))return!1 -return s.c.ak(0,s.a.$1(s.$ti.i("bS.K").a(b)))}, -gfl(a){var s=this.c -return s.gfl(s).ew(0,new A.a5A(this),this.$ti.i("aY"))}, -N(a,b){this.c.N(0,new A.a5B(this,b))}, -ga8(a){return this.c.a===0}, -gc3(a){return this.c.a!==0}, -gbI(a){var s=this.c -s=s.gaR(s) -return A.iN(s,new A.a5C(this),A.p(s).i("q.E"),this.$ti.i("bS.K"))}, -gp(a){return this.c.a}, -j7(a,b,c,d){var s=this.c -return s.j7(s,new A.a5D(this,b,c,d),c,d)}, -hf(a,b){return this.j7(a,b,t.z,t.z)}, -bT(a,b,c){return this.c.bT(0,this.a.$1(b),new A.a5E(this,b,c)).b}, -F(a,b){var s,r=this -if(!r.z6(b))return null -s=r.c.F(0,r.a.$1(r.$ti.i("bS.K").a(b))) -return s==null?null:s.b}, -gaR(a){var s=this.c -s=s.gaR(s) -return A.iN(s,new A.a5F(this),A.p(s).i("q.E"),this.$ti.i("bS.V"))}, -k(a){return A.Pb(this)}, -z6(a){var s -if(this.$ti.i("bS.K").b(a))s=!0 -else s=!1 -return s}, -$iaz:1} -A.a5z.prototype={ -$2(a,b){this.a.m(0,a,b) -return b}, -$S(){return this.a.$ti.i("~(bS.K,bS.V)")}} -A.a5A.prototype={ -$1(a){var s=a.b,r=this.a.$ti -return new A.aY(s.a,s.b,r.i("@").a5(r.i("bS.V")).i("aY<1,2>"))}, -$S(){return this.a.$ti.i("aY(aY>)")}} -A.a5B.prototype={ -$2(a,b){return this.b.$2(b.a,b.b)}, -$S(){return this.a.$ti.i("~(bS.C,aY)")}} -A.a5C.prototype={ -$1(a){return a.a}, -$S(){return this.a.$ti.i("bS.K(aY)")}} -A.a5D.prototype={ -$2(a,b){return this.b.$2(b.a,b.b)}, -$S(){return this.a.$ti.a5(this.c).a5(this.d).i("aY<1,2>(bS.C,aY)")}} -A.a5E.prototype={ -$0(){var s=this.a.$ti -return new A.aY(this.b,this.c.$0(),s.i("@").a5(s.i("bS.V")).i("aY<1,2>"))}, -$S(){return this.a.$ti.i("aY()")}} -A.a5F.prototype={ -$1(a){return a.b}, -$S(){return this.a.$ti.i("bS.V(aY)")}} -A.MA.prototype={} -A.y4.prototype={ -gA(a){return 3*J.C(this.b)+7*J.C(this.c)&2147483647}, -j(a,b){if(b==null)return!1 -return b instanceof A.y4&&J.e(this.b,b.b)&&J.e(this.c,b.c)}} -A.Pc.prototype={ -aoF(a,b){var s,r,q,p,o -if(a===b)return!0 -if(a.a!==b.a)return!1 -s=A.hG(t.PJ,t.S) -for(r=A.fh(a,a.r,A.p(a).c);r.u();){q=r.d -p=new A.y4(this,q,a.h(0,q)) -o=s.h(0,p) -s.m(0,p,(o==null?0:o)+1)}for(r=A.fh(b,b.r,A.p(b).c);r.u();){q=r.d -p=new A.y4(this,q,b.h(0,q)) -o=s.h(0,p) -if(o==null||o===0)return!1 -s.m(0,p,o-1)}return!0}, -aqk(a,b){var s,r,q,p,o,n -for(s=A.fh(b,b.r,A.p(b).c),r=this.$ti.z[1],q=0;s.u();){p=s.d -o=J.C(p) -n=b.h(0,p) -q=q+3*o+7*J.C(n==null?r.a(n):n)&2147483647}q=q+(q<<3>>>0)&2147483647 -q^=q>>>11 -return q+(q<<15>>>0)&2147483647}} -A.O9.prototype={ -yF(a){var s=this.b[a] -if(s==null){this.$ti.c.a(null) -s=null}return s}, -gp(a){return this.c}, -k(a){var s=this.b -return A.aJ3(A.er(s,0,A.fc(this.c,"count",t.S),A.W(s).c),"(",")")}, -a6Y(a,b){var s,r,q,p,o,n,m,l,k,j=this,i=b*2+2 -for(s=j.a,r=j.$ti.c;q=j.c,i0){j.b[b]=k -b=p}}j.b[b]=a}} -A.a9v.prototype={} -A.a9w.prototype={} -A.a47.prototype={} -A.uO.prototype={ -gyz(){var s,r,q,p,o=this,n=o.c -if(n==null){n=o.gate() -s=J.X(n) -r=s.h(n,"APP_CURRENT_USER") -if(r!=null)r=A.QP(t.W.a(r)) -q=$.aD7 -if(q==null){q=$.Ks() -p=new A.rf(new A.Nu(),null) -$.eQ().m(0,p,q) -$.aD7=p -q=p}n=o.c=q.Wn(o.e,o.d).MY(r,s.h(n,"APP_LANGUAGE_CODE"))}return n}, -ah1(a){var s=a.$ti.i("fq") -return A.b1e(new A.fq(new A.a9I(this),a,s),null,new A.a9J(),s.i("c1.T"))}, -hV(a){return this.a1c(a)}, -a1c(a){var s=0,r=A.I(t.RK),q,p=2,o,n=this,m,l,k,j,i -var $async$hV=A.D(function(b,c){if(b===1){o=c -s=p}while(true)switch(s){case 0:p=4 -i=A -s=7 -return A.K(n.gyz().hV(a),$async$hV) -case 7:l=i.aLw(n,c) -q=l -s=1 -break -p=2 -s=6 -break -case 4:p=3 -j=o -l=A.a6(j) -if(l instanceof A.uP){m=l -throw A.d(A.aIA(n,m))}else throw j -s=6 -break -case 3:s=2 -break -case 6:case 1:return A.G(q,r) -case 2:return A.F(o,r)}}) -return A.H($async$hV,r)}, -k9(a){return this.a1g(a)}, -a1g(a){var s=0,r=A.I(t.RK),q,p=2,o,n=this,m,l,k,j,i -var $async$k9=A.D(function(b,c){if(b===1){o=c -s=p}while(true)switch(s){case 0:p=4 -i=A -s=7 -return A.K(n.gyz().k9(a),$async$k9) -case 7:l=i.aLw(n,c) -q=l -s=1 -break -p=2 -s=6 -break -case 4:p=3 -j=o -l=A.a6(j) -if(l instanceof A.uP){m=l -throw A.d(A.aIA(n,m))}else throw j -s=6 -break -case 3:s=2 -break -case 6:case 1:return A.G(q,r) -case 2:return A.F(o,r)}}) -return A.H($async$k9,r)}, -d1(a){var s=0,r=A.I(t.H),q=this -var $async$d1=A.D(function(b,c){if(b===1)return A.F(c,r) -while(true)switch(s){case 0:s=2 -return A.K(q.gyz().d1(0),$async$d1) -case 2:return A.G(null,r)}}) -return A.H($async$d1,r)}, -k(a){return"FirebaseAuth(app: "+this.e.a.a+")"}} -A.a9H.prototype={ -$0(){var s=this.a,r=$.aPt() -s=new A.uO(this.b,s,s.a.a,"plugins.flutter.io/firebase_auth") -$.eQ().m(0,s,r) -return s}, -$S:503} -A.a9I.prototype={ -$1(a){if(a==null)return null -return A.aLv(this.a,a)}, -$S:504} -A.a9J.prototype={ -$1(a){return a.bb(0)}, -$S:510} -A.Nv.prototype={} -A.j3.prototype={ -k(a){var s=this.a,r=s.c.a -return B.Vt.k(0)+"(displayName: "+A.j(r.c)+", email: "+A.j(r.b)+", isEmailVerified: "+r.r+", isAnonymous: "+r.f+", metadata: "+new A.aq6(r.z,r.Q).k(0)+", phoneNumber: "+A.j(r.e)+", photoURL: "+A.j(r.d)+", providerData, "+A.j(s.gn8(s))+", refreshToken: "+A.j(r.y)+", tenantId: "+A.j(r.x)+", uid: "+r.a+")"}} -A.Fp.prototype={ -glX(a){var s=this.b.d -return s==null?null:A.aLv(this.a,s)}, -k(a){var s=this.b -return"UserCredential(additionalUserInfo: "+A.j(s.b)+", credential: "+A.j(s.c)+", user: "+A.j(this.glX(this))+")"}} -A.yW.prototype={ -k(a){var s=this -return B.UI.k(0)+"(isNewUser: "+s.a+", profile: "+A.j(s.b)+", providerId: "+A.j(s.c)+", username: "+A.j(s.d)+", authorizationCode: "+A.j(s.e)+")"}} -A.L3.prototype={ -k(a){var s=this -return"AuthCredential(providerId: "+s.a+", signInMethod: "+s.b+", token: "+A.j(s.c)+", accessToken: "+A.j(s.d)+")"}} -A.a4x.prototype={ -k(a){return"AuthProvider(providerId: "+this.a+")"}} -A.AL.prototype={} -A.uP.prototype={} -A.rf.prototype={ -a5Z(a){var s=this,r=null,q=s.c,p=t.P -q.Dh(new A.ot(s.go0(s).a.a,r)).bQ(0,new A.afJ(s,a),p) -q.Df(new A.ot(s.go0(s).a.a,r)).bQ(0,new A.afK(s,a),p) -p=a.a.a -q=t.Cy -$.aDF.m(0,p,new A.dG(r,r,q)) -$.aJs.m(0,p,new A.dG(r,r,q)) -$.aJt.m(0,p,new A.dG(r,r,q))}, -Gh(a,b){return this.aaT(a,b)}, -aaT(a,b){var s=0,r=A.I(t.H),q,p,o,n,m -var $async$Gh=A.D(function(c,d){if(c===1)return A.F(d,r) -while(true)switch(s){case 0:m=$.aDF.h(0,a) -m.toString -q=$.afM.h(0,a) -q.toString -p=$.afH.h(0,a) -if(p==null){p=A.afP(q) -$.afH.m(0,a,p)}o=J.aN(b,"user") -if(o==null){q.d=null -m.E(0,B.lt)}else{n=A.afV(q,p,A.QP(o)) -q.d=n -m.E(0,new A.iz(n,t.Wo))}return A.G(null,r)}}) -return A.H($async$Gh,r)}, -Gm(a,b){return this.abL(a,b)}, -abL(a,b){var s=0,r=A.I(t.H),q,p,o,n,m,l -var $async$Gm=A.D(function(c,d){if(c===1)return A.F(d,r) -while(true)switch(s){case 0:l=$.aJs.h(0,a) -l.toString -q=$.aJt.h(0,a) -q.toString -p=$.afM.h(0,a) -p.toString -o=$.afH.h(0,a) -if(o==null){o=A.afP(p) -$.afH.m(0,a,o)}n=J.aN(b,"user") -if(n==null){p.d=null -l.E(0,B.lt) -q.E(0,B.lt)}else{m=p.d=A.afV(p,o,A.QP(n)) -p=t.Wo -l.E(0,new A.iz(m,p)) -q.E(0,new A.iz(m,p))}return A.G(null,r)}}) -return A.H($async$Gm,r)}, -Wn(a,b){return $.afM.bT(0,a.a.a,new A.afL(a))}, -MY(a,b){var s=this -if(a!=null)s.d=A.afV(s,A.afP(s),a) -return s}, -hV(a){return this.a1f(a)}, -a1f(a0){var s=0,r=A.I(t.L3),q,p=2,o,n=this,m,l,k,j,i,h,g,f,e,d,c,b,a -var $async$hV=A.D(function(a1,a2){if(a1===1){o=a2 -s=p}while(true)switch(s){case 0:p=4 -i=t.N -s=7 -return A.K(n.c.xX(new A.ot(n.go0(n).a.a,null),A.l(["providerId",a0.a,"signInMethod",a0.b,"idToken",a0.e,"accessToken",a0.d,"secret",a0.f,"rawNonce",a0.r],i,t.u)),$async$hV) -case 7:m=a2 -h=m -g=h.b -if(g==null)i=null -else{f=g.a -e=g.e -if(e==null){e=t.z -e=A.m(e,e)}i=A.qY(e,i,t.z) -e=g.b -d=g.c -g=g.d -i=new A.yW(f,i,e,d,g)}g=h.c -g=g==null?null:new A.L3(g.a,g.b,g.c,g.d) -h=h.a -h=h==null?null:A.afV(n,A.afP(n),h) -f=$.aC8() -c=new A.Pz(i,g,h) -$.eQ().m(0,c,f) -l=c -n.d=l.d -q=l -s=1 -break -p=2 -s=6 -break -case 4:p=3 -a=o -k=A.a6(a) -j=A.aJ(a) -A.aAK(k,j,!0) -s=6 -break -case 3:s=2 -break -case 6:case 1:return A.G(q,r) -case 2:return A.F(o,r)}}) -return A.H($async$hV,r)}, -k9(a){throw A.d(A.cu("signInWithPopup() is only supported on web based platforms"))}, -d1(a){var s=0,r=A.I(t.H),q=1,p,o=this,n,m,l,k -var $async$d1=A.D(function(b,c){if(b===1){p=c -s=q}while(true)switch(s){case 0:q=3 -s=6 -return A.K(o.c.xZ(0,new A.ot(o.go0(o).a.a,null)),$async$d1) -case 6:o.d=null -q=1 -s=5 -break -case 3:q=2 -k=p -n=A.a6(k) -m=A.aJ(k) -A.aAK(n,m,!0) -s=5 -break -case 2:s=1 -break -case 5:return A.G(null,r) -case 1:return A.F(p,r)}}) -return A.H($async$d1,r)}, -jy(){var $async$jy=A.D(function(a,b){switch(a){case 2:n=q -s=n.pop() -break -case 1:o=b -s=p}while(true)switch(s){case 0:s=3 -q=[1] -return A.px(A.aLV(m.d),$async$jy,r) -case 3:l=$.aDF.h(0,m.go0(m).a.a) -l.toString -k=A.p(l).i("dh<1>") -s=4 -q=[1] -return A.px(A.aLW(new A.fq(new A.afI(),new A.dh(l,k),k.i("fq"))),$async$jy,r) -case 4:case 1:return A.px(null,0,r) -case 2:return A.px(o,1,r)}}) -var s=0,r=A.aNg($async$jy,t.HA),q,p=2,o,n=[],m=this,l,k -return A.aNz(r)}} -A.afJ.prototype={ -$1(a){A.aIy(new A.Nl(a,B.b0),A.aO6()).rg(new A.afG(this.a,this.b))}, -$S:57} -A.afG.prototype={ -$1(a){this.a.Gm(this.b.a.a,a)}, -$S:20} -A.afK.prototype={ -$1(a){A.aIy(new A.Nl(a,B.b0),A.aO6()).rg(new A.afF(this.a,this.b))}, -$S:57} -A.afF.prototype={ -$1(a){this.a.Gh(this.b.a.a,a)}, -$S:20} -A.afL.prototype={ -$0(){return A.aZo(this.a)}, -$S:520} -A.afI.prototype={ -$1(a){return a.a}, -$S:521} -A.iz.prototype={} -A.Px.prototype={} -A.afQ.prototype={} -A.Py.prototype={} -A.Pz.prototype={} -A.aBJ.prototype={ -$1(a){var s,r=a.e -if(r!=null){s=a.c -if(s==null)s="phone" -return new A.CI(r,a.a,a.b,s,a.d)}r=a.c -if(r==="totp"){if(r==null)r="totp" -return new A.Fe(a.a,a.b,r,a.d)}if(r==null)r="" -return new A.ii(a.a,a.b,r,a.d)}, -$S:522} -A.kg.prototype={ -I(){return"ActionCodeInfoOperation."+this.b}} -A.QL.prototype={} -A.QM.prototype={} -A.mr.prototype={} -A.ot.prototype={} -A.QE.prototype={} -A.QF.prototype={} -A.vT.prototype={} -A.QH.prototype={ -j_(){var s=this -return[s.a,s.b,s.c,s.d,s.e]}} -A.QI.prototype={ -j_(){var s=this -return[s.a,s.b,s.c,s.d]}} -A.vU.prototype={ -j_(){var s=this -return[s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q]}} -A.CL.prototype={} -A.QG.prototype={} -A.QJ.prototype={} -A.QN.prototype={} -A.QR.prototype={} -A.QK.prototype={} -A.QQ.prototype={} -A.QO.prototype={} -A.atq.prototype={ -c4(a,b,c){var s,r,q,p=this -if(c instanceof A.QE){b.cf(0,128) -s=c.a -r=c.b -p.c4(0,b,[s.a,[r.a,r.b]])}else if(c instanceof A.QF){b.cf(0,129) -p.c4(0,b,[c.a,c.b])}else if(c instanceof A.QG){b.cf(0,130) -p.c4(0,b,[c.a,c.b,c.c,c.d,c.e,c.f,c.r])}else if(c instanceof A.QH){b.cf(0,131) -p.c4(0,b,c.j_())}else if(c instanceof A.QI){b.cf(0,132) -p.c4(0,b,c.j_())}else if(c instanceof A.ot){b.cf(0,133) -p.c4(0,b,[c.a,c.b])}else if(c instanceof A.QJ){b.cf(0,134) -p.c4(0,b,[c.a,c.b,c.c,c.d,c.e])}else if(c instanceof A.QK){b.cf(0,135) -p.c4(0,b,[c.a,c.b,c.c,c.d,c.e,c.f,c.r])}else if(c instanceof A.mr){b.cf(0,136) -p.c4(0,b,[c.a,c.b,c.c,c.d,c.e])}else if(c instanceof A.QL){b.cf(0,137) -p.c4(0,b,[c.a])}else if(c instanceof A.QM){b.cf(0,138) -p.c4(0,b,[c.a,c.b])}else if(c instanceof A.QN){b.cf(0,139) -p.c4(0,b,[c.a,c.b,c.c])}else if(c instanceof A.QO){b.cf(0,140) -p.c4(0,b,[c.a,c.b,c.c,c.d,c.e])}else if(c instanceof A.vT){b.cf(0,141) -s=c.a -s=s==null?null:[s.a.j_(),s.b] -r=c.b -r=r==null?null:r.j_() -q=c.c -p.c4(0,b,[s,r,q==null?null:q.j_()])}else if(c instanceof A.CL){b.cf(0,142) -p.c4(0,b,[c.a.j_(),c.b])}else if(c instanceof A.vU){b.cf(0,143) -p.c4(0,b,c.j_())}else if(c instanceof A.QQ){b.cf(0,144) -p.c4(0,b,[c.a,c.b,c.c,c.d])}else if(c instanceof A.QR){b.cf(0,145) -p.c4(0,b,[c.a,c.b,c.c,c.d,c.e,c.f])}else p.O0(0,b,c)}, -j9(a,b){var s,r,q,p,o,n,m,l,k=this,j=null -switch(a){case 128:s=k.cK(0,b) -s.toString -r=t.W -r.a(s) -q=J.X(s) -p=q.h(s,0) -p.toString -p=B.HA[A.ef(p)] -s=q.h(s,1) -s.toString -return new A.QE(p,A.aJW(r.a(s))) -case 129:s=k.cK(0,b) -s.toString -return A.aJW(s) -case 130:s=k.cK(0,b) -s.toString -t.W.a(s) -r=J.X(s) -q=r.h(s,0) -q.toString -A.aQ(q) -p=A.au(r.h(s,1)) -o=r.h(s,2) -o.toString -A.fb(o) -n=A.au(r.h(s,3)) -m=A.au(r.h(s,4)) -l=r.h(s,5) -l.toString -return new A.QG(q,p,o,n,m,A.fb(l),A.au(r.h(s,6))) -case 131:s=k.cK(0,b) -s.toString -return A.aJX(s) -case 132:s=k.cK(0,b) -s.toString -return A.aJY(s) -case 133:s=k.cK(0,b) -s.toString -t.W.a(s) -r=J.X(s) -q=r.h(s,0) -q.toString -return new A.ot(A.aQ(q),A.au(r.h(s,1))) -case 134:s=k.cK(0,b) -s.toString -t.W.a(s) -r=J.X(s) -q=r.h(s,0) -q.toString -return new A.QJ(A.fb(q),A.au(r.h(s,1)),A.au(r.h(s,2)),A.au(r.h(s,3)),A.lB(r.h(s,4))) -case 135:s=k.cK(0,b) -s.toString -t.W.a(s) -r=J.X(s) -q=A.au(r.h(s,0)) -p=A.dz(r.h(s,1)) -o=A.dz(r.h(s,2)) -n=A.dz(r.h(s,3)) -m=A.au(r.h(s,4)) -l=t.J1.a(r.h(s,5)) -l=l==null?j:J.yS(l,t.u,t.X) -return new A.QK(q,p,o,n,m,l,A.au(r.h(s,6))) -case 136:s=k.cK(0,b) -s.toString -return A.aK_(s) -case 137:s=k.cK(0,b) -s.toString -s=J.aN(t.W.a(s),0) -s.toString -return new A.QL(A.aQ(s)) -case 138:s=k.cK(0,b) -s.toString -t.W.a(s) -r=J.X(s) -q=r.h(s,0) -q.toString -A.aQ(q) -s=r.h(s,1) -s.toString -return new A.QM(q,A.aQ(s)) -case 139:s=k.cK(0,b) -s.toString -t.W.a(s) -r=J.X(s) -q=r.h(s,0) -q.toString -A.aQ(q) -p=t.wh.a(r.h(s,1)) -p=p==null?j:J.fW(p,t.u) -s=t.J1.a(r.h(s,2)) -if(s==null)s=j -else{r=t.u -r=J.yS(s,r,r) -s=r}return new A.QN(q,p,s) -case 140:s=k.cK(0,b) -s.toString -t.W.a(s) -r=J.X(s) -q=A.dz(r.h(s,0)) -p=A.dz(r.h(s,1)) -o=A.dz(r.h(s,2)) -n=A.au(r.h(s,3)) -s=r.h(s,4) -s.toString -return new A.QO(q,p,o,n,A.aQ(s)) -case 141:s=k.cK(0,b) -s.toString -r=t.W -r.a(s) -q=J.X(s) -if(q.h(s,0)!=null){p=q.h(s,0) -p.toString -p=A.QP(r.a(p))}else p=j -if(q.h(s,1)!=null){o=q.h(s,1) -o.toString -o=A.aJX(r.a(o))}else o=j -if(q.h(s,2)!=null){s=q.h(s,2) -s.toString -s=A.aJY(r.a(s))}else s=j -return new A.vT(p,o,s) -case 142:s=k.cK(0,b) -s.toString -return A.QP(s) -case 143:s=k.cK(0,b) -s.toString -return A.aK0(s) -case 144:s=k.cK(0,b) -s.toString -t.W.a(s) -r=J.X(s) -q=A.au(r.h(s,0)) -p=A.au(r.h(s,1)) -o=r.h(s,2) -o.toString -A.fb(o) -s=r.h(s,3) -s.toString -return new A.QQ(q,p,o,A.fb(s)) -case 145:s=k.cK(0,b) -s.toString -t.W.a(s) -r=J.X(s) -q=A.au(r.h(s,0)) -p=r.h(s,1) -p.toString -return new A.QR(q,A.ef(p),A.dz(r.h(s,2)),A.au(r.h(s,3)),A.au(r.h(s,4)),A.au(r.h(s,5))) -default:return k.O_(a,b)}}} -A.Nu.prototype={ -Dh(a){return this.atD(a)}, -atD(a){var s=0,r=A.I(t.N),q,p,o,n,m,l -var $async$Dh=A.D(function(b,c){if(b===1)return A.F(c,r) -while(true)switch(s){case 0:l=t.wh -s=3 -return A.K(new A.hx("dev.flutter.pigeon.firebase_auth_platform_interface.FirebaseAuthHostApi.registerIdTokenListener",B.f9,null,t.Al).eN(0,[a]),$async$Dh) -case 3:m=l.a(c) -if(m==null)throw A.d(A.e9("channel-error",null,u.E,null)) -else{p=J.X(m) -if(p.gp(m)>1){o=p.h(m,0) -o.toString -A.aQ(o) -n=A.au(p.h(m,1)) -throw A.d(A.e9(o,p.h(m,2),n,null))}else if(p.h(m,0)==null)throw A.d(A.e9("null-error",null,u.l,null)) -else{p=A.au(p.h(m,0)) -p.toString -q=p -s=1 -break}}case 1:return A.G(q,r)}}) -return A.H($async$Dh,r)}, -Df(a){return this.atB(a)}, -atB(a){var s=0,r=A.I(t.N),q,p,o,n,m,l -var $async$Df=A.D(function(b,c){if(b===1)return A.F(c,r) -while(true)switch(s){case 0:l=t.wh -s=3 -return A.K(new A.hx("dev.flutter.pigeon.firebase_auth_platform_interface.FirebaseAuthHostApi.registerAuthStateListener",B.f9,null,t.Al).eN(0,[a]),$async$Df) -case 3:m=l.a(c) -if(m==null)throw A.d(A.e9("channel-error",null,u.E,null)) -else{p=J.X(m) -if(p.gp(m)>1){o=p.h(m,0) -o.toString -A.aQ(o) -n=A.au(p.h(m,1)) -throw A.d(A.e9(o,p.h(m,2),n,null))}else if(p.h(m,0)==null)throw A.d(A.e9("null-error",null,u.l,null)) -else{p=A.au(p.h(m,0)) -p.toString -q=p -s=1 -break}}case 1:return A.G(q,r)}}) -return A.H($async$Df,r)}, -xX(a,b){return this.a1d(a,b)}, -a1d(a,b){var s=0,r=A.I(t.DF),q,p,o,n,m,l -var $async$xX=A.D(function(c,d){if(c===1)return A.F(d,r) -while(true)switch(s){case 0:l=t.wh -s=3 -return A.K(new A.hx("dev.flutter.pigeon.firebase_auth_platform_interface.FirebaseAuthHostApi.signInWithCredential",B.f9,null,t.Al).eN(0,[a,b]),$async$xX) -case 3:m=l.a(d) -if(m==null)throw A.d(A.e9("channel-error",null,u.E,null)) -else{p=J.X(m) -if(p.gp(m)>1){o=p.h(m,0) -o.toString -A.aQ(o) -n=A.au(p.h(m,1)) -throw A.d(A.e9(o,p.h(m,2),n,null))}else if(p.h(m,0)==null)throw A.d(A.e9("null-error",null,u.l,null)) -else{p=t.Ku.a(p.h(m,0)) -p.toString -q=p -s=1 -break}}case 1:return A.G(q,r)}}) -return A.H($async$xX,r)}, -xZ(a,b){return this.a1i(0,b)}, -a1i(a,b){var s=0,r=A.I(t.H),q,p,o,n,m,l -var $async$xZ=A.D(function(c,d){if(c===1)return A.F(d,r) -while(true)switch(s){case 0:l=t.wh -s=3 -return A.K(new A.hx("dev.flutter.pigeon.firebase_auth_platform_interface.FirebaseAuthHostApi.signOut",B.f9,null,t.Al).eN(0,[b]),$async$xZ) -case 3:m=l.a(d) -if(m==null)throw A.d(A.e9("channel-error",null,u.E,null)) -else{p=J.X(m) -if(p.gp(m)>1){o=p.h(m,0) -o.toString -A.aQ(o) -n=A.au(p.h(m,1)) -throw A.d(A.e9(o,p.h(m,2),n,null))}else{s=1 -break}}case 1:return A.G(q,r)}}) -return A.H($async$xZ,r)}} -A.a9z.prototype={} -A.agp.prototype={} -A.agi.prototype={} -A.a9y.prototype={ -go0(a){var s,r=this.a -if(r==null){r=$.m4 -s=(r==null?$.m4=$.Kt():r).uR(0,"[DEFAULT]") -A.hc(s,$.tO(),!0) -return new A.kB(s)}return r}} -A.agj.prototype={} -A.agl.prototype={} -A.ii.prototype={ -k(a){return"MultiFactorInfo{enrollmentTimestamp: "+A.j(this.b)+", displayName: "+A.j(this.a)+", uid: "+this.d+"}"}} -A.CI.prototype={} -A.Fe.prototype={} -A.ahy.prototype={} -A.apI.prototype={} -A.aiE.prototype={} -A.e3.prototype={ -gn8(a){var s,r,q,p=A.ae5(this.c.b,t.pE),o=A.b([],t.Dg) -for(s=new A.je(p.a(),p.$ti.i("je<1>"));s.u();){r=s.b -q=J.X(r) -o.push(new A.Fq(new A.vU(A.aQ(q.h(r,"uid")),A.au(q.h(r,"email")),A.au(q.h(r,"displayName")),A.au(q.h(r,"photoUrl")),A.au(q.h(r,"phoneNumber")),A.fb(q.h(r,"isAnonymous")),A.fb(q.h(r,"isEmailVerified")),A.au(q.h(r,"providerId")),A.au(q.h(r,"tenantId")),A.au(q.h(r,"refreshToken")),A.dz(q.h(r,"creationTimestamp")),A.dz(q.h(r,"lastSignInTimestamp")))))}return o}} -A.xk.prototype={} -A.abj.prototype={} -A.abm.prototype={} -A.PZ.prototype={} -A.Fq.prototype={ -k(a){var s=B.Vs.k(0),r=this.a,q=r.w -q.toString -return s+"(displayName: "+A.j(r.c)+", email: "+A.j(r.b)+", phoneNumber: "+A.j(r.e)+", photoURL: "+A.j(r.d)+", providerId: "+q+", uid: "+r.a+")"}} -A.aq6.prototype={ -k(a){var s,r=this.a -r=A.j(r==null?null:A.Ab(r,!0)) -s=this.b -return"UserMetadata(creationTime: "+r+", lastSignInTime: "+A.j(s==null?null:A.Ab(s,!0))+")"}} -A.Nx.prototype={ -a5V(a,b){var s,r,q,p=this,o=null -p.d=b -s=$.aIE -r=a.a.a -q=t.J6 -s.m(0,r,new A.dG(o,o,q)) -s=$.aD8 -s.m(0,r,new A.dG(o,o,q)) -s=$.aID -s.m(0,r,new A.dG(o,o,q)) -s=p.giX() -s=s.gasr(s) -new A.fq(new A.a9C(p),s,s.$ti.i("fq")).rg(new A.a9D(a)) -s=p.giX() -s=s.gasB(s) -new A.fq(new A.a9E(p),s,s.$ti.i("fq")).rg(new A.a9F(a))}, -giX(){var s=this,r=s.e -if(r==null){r=firebase_core.getApp(s.go0(s).a.a) -r=s.e=A.aOi(A.a4n(r),s.d)}return r}, -Wn(a,b){return A.aY3(a,b)}, -MY(a,b){return this}, -gqy(a){var s,r,q=this -if(A.tg(J.aCj(q.giX().a))==null)return null -s=A.ags(q,A.agq(firebase_auth.multiFactor(A.tg(J.aCj(q.giX().a)).a))) -r=A.tg(J.aCj(q.giX().a)) -r.toString -return A.aq9(q,s,r,q.e)}, -jy(){var $async$jy=A.D(function(a,b){switch(a){case 2:n=q -s=n.pop() -break -case 1:o=b -s=p}while(true)switch(s){case 0:s=3 -return A.px(m.c.a,$async$jy,r) -case 3:s=4 -q=[1] -return A.px(A.aLV(m.gqy(m)),$async$jy,r) -case 4:l=$.aD8.h(0,m.go0(m).a.a) -l.toString -s=5 -q=[1] -return A.px(A.aLW(new A.dh(l,A.p(l).i("dh<1>"))),$async$jy,r) -case 5:case 1:return A.px(null,0,r) -case 2:return A.px(o,1,r)}}) -var s=0,r=A.aNg($async$jy,t.HA),q,p=2,o,n=[],m=this,l -return A.aNz(r)}, -hV(a){return this.a1e(a)}, -a1e(a){var s=0,r=A.I(t.L3),q,p=2,o,n=this,m,l,k,j,i,h -var $async$hV=A.D(function(b,c){if(b===1){o=c -s=p}while(true)switch(s){case 0:p=4 -l=n.giX() -k=A.b55(a) -k.toString -h=A -s=7 -return A.K(A.a3m(firebase_auth.signInWithCredential(l.a,k),t.Rq).bQ(0,A.aNK(),t.TN),$async$hV) -case 7:k=h.aLx(n,c,n.e) -q=k -s=1 -break -p=2 -s=6 -break -case 4:p=3 -i=o -m=A.a6(i) -l=A.aFu(m,n.e) -throw A.d(l) -s=6 -break -case 3:s=2 -break -case 6:case 1:return A.G(q,r) -case 2:return A.F(o,r)}}) -return A.H($async$hV,r)}, -k9(a){return this.a1h(a)}, -a1h(a){var s=0,r=A.I(t.L3),q,p=2,o,n=this,m,l,k,j,i -var $async$k9=A.D(function(b,c){if(b===1){o=c -s=p}while(true)switch(s){case 0:p=4 -i=A -s=7 -return A.K(A.a3m(firebase_auth.signInWithPopup(n.giX().a,A.b54(a).a),t.Rq).bQ(0,A.aNK(),t.TN),$async$k9) -case 7:l=i.aLx(n,c,n.e) -q=l -s=1 -break -p=2 -s=6 -break -case 4:p=3 -j=o -m=A.a6(j) -l=A.aFu(m,n.e) -throw A.d(l) -s=6 -break -case 3:s=2 -break -case 6:case 1:return A.G(q,r) -case 2:return A.F(o,r)}}) -return A.H($async$k9,r)}, -d1(a){var s=0,r=A.I(t.H),q=1,p,o=this,n,m,l,k -var $async$d1=A.D(function(b,c){if(b===1){p=c -s=q}while(true)switch(s){case 0:q=3 -s=6 -return A.K(A.a3m(J.aVC(o.giX().a),t.z),$async$d1) -case 6:q=1 -s=5 -break -case 3:q=2 -k=p -n=A.a6(k) -l=A.aFu(n,null) -throw A.d(l) -s=5 -break -case 2:s=1 -break -case 5:return A.G(null,r) -case 1:return A.F(p,r)}}) -return A.H($async$d1,r)}} -A.a9C.prototype={ -$1(a){var s=this.a,r=s.c -if((r.a.a&30)===0)r.fN(0) -if(a==null)return null -else return A.aq9(s,A.ags(s,A.agq(firebase_auth.multiFactor(a.a))),a,s.e)}, -$S:166} -A.a9D.prototype={ -$1(a){$.aD8.h(0,this.a.a.a).E(0,a)}, -$S:185} -A.a9E.prototype={ -$1(a){var s -if(a==null)return null -else{s=this.a -return A.aq9(s,A.ags(s,A.agq(firebase_auth.multiFactor(a.a))),a,s.e)}}, -$S:166} -A.a9F.prototype={ -$1(a){var s=this.a.a.a -$.aID.h(0,s).E(0,a) -$.aIE.h(0,s).E(0,a)}, -$S:185} -A.a9G.prototype={ -$1(a){return this.a_I(a)}, -a_I(a){var s=0,r=A.I(t.H),q -var $async$$1=A.D(function(b,c){if(b===1)return A.F(c,r) -while(true)switch(s){case 0:q=A.aOi(a,null) -window.location.hostname -s=2 -return A.K(q.CZ(),$async$$1) -case 2:return A.G(null,r)}}) -return A.H($async$$1,r)}, -$S:556} -A.agr.prototype={} -A.agm.prototype={} -A.ahz.prototype={} -A.apJ.prototype={} -A.aiF.prototype={} -A.lo.prototype={} -A.aqa.prototype={ -$1(a){var s=a.a,r=J.bh(s) -return A.l(["displayName",r.gmB(s),"email",r.gvz(s),"isAnonymous",!1,"isEmailVerified",!0,"phoneNumber",r.grz(s),"providerId",r.grB(s),"photoUrl",r.gwP(s),"uid",a.gk6(a)],t.N,t.z)}, -$S:557} -A.U5.prototype={} -A.ln.prototype={ -gk6(a){return J.aCl(this.a)}} -A.p6.prototype={ -gk6(a){return J.aCl(this.a)}, -gn8(a){var s=J.ei(J.aVb(this.a),new A.aqb(),t.ev) -return A.a8(s,!0,A.p(s).i("am.E"))}, -cq(){return A.aAN(J.aVI(this.a),null)}, -k(a){return"User: "+J.aCl(this.a)}} -A.aqb.prototype={ -$1(a){return new A.ln(a,t.ev)}, -$S:558} -A.L2.prototype={ -CZ(){var s=0,r=A.I(t.H),q=this,p,o -var $async$CZ=A.D(function(a,b){if(a===1)return A.F(b,r) -while(true)switch(s){case 0:p=new A.ae($.ai,t.LR) -o=J.aH1(q.a,A.bd(new A.a4H(q,new A.b3(p,t.zh))),A.bd(new A.a4I(q))) -s=2 -return A.K(p,$async$CZ) -case 2:o.$0() -return A.G(null,r)}}) -return A.H($async$CZ,r)}, -gasr(a){var s,r=this -if(r.d==null){s=new A.pt(new A.a4B(r,A.bd(new A.a4z(r)),A.bd(new A.a4A(r))),new A.a4C(r),t.me) -r.d=s -s.E(0,r.b)}s=r.d -s.toString -return new A.dh(s,A.p(s).i("dh<1>"))}, -gasB(a){var s,r,q=this,p=q.f -if(p==null){s=A.bd(new A.a4D(q)) -r=A.bd(new A.a4E(q)) -p=q.f=new A.pt(new A.a4F(q,s,r),new A.a4G(q),t.me)}return new A.dh(p,A.p(p).i("dh<1>"))}} -A.a4H.prototype={ -$1(a){this.a.b=A.tg(a) -this.b.fN(0)}, -$S:113} -A.a4I.prototype={ -$1(a){return this.a.d.km(a)}, -$S:20} -A.a4z.prototype={ -$1(a){var s=this.a.d -s.toString -s.E(0,A.tg(a))}, -$S:113} -A.a4A.prototype={ -$1(a){return this.a.d.km(a)}, -$S:20} -A.a4B.prototype={ -$0(){var s=this.a -s.c=J.aH1(s.a,this.b,this.c)}, -$S:0} -A.a4C.prototype={ -$0(){var s=this.a -s.c.$0() -s.c=null}, -$S:0} -A.a4D.prototype={ -$1(a){var s=this.a.f -s.toString -s.E(0,A.tg(a))}, -$S:113} -A.a4E.prototype={ -$1(a){return this.a.f.km(a)}, -$S:20} -A.a4F.prototype={ -$0(){var s=this.a -s.e=J.aVp(s.a,this.b,this.c)}, -$S:0} -A.a4G.prototype={ -$0(){var s=this.a -s.e.$0() -s.e=null}, -$S:0} -A.L5.prototype={} -A.aD_.prototype={} -A.aD3.prototype={} -A.qH.prototype={ -qb(a,b){return new A.qH(J.aUV(this.a,b))}} -A.aDL.prototype={} -A.xj.prototype={} -A.a45.prototype={} -A.zp.prototype={} -A.adj.prototype={} -A.jY.prototype={} -A.p8.prototype={} -A.vQ.prototype={} -A.L4.prototype={} -A.agZ.prototype={} -A.ah_.prototype={} -A.L6.prototype={} -A.Ay.prototype={} -A.AJ.prototype={} -A.B1.prototype={} -A.abn.prototype={} -A.Cn.prototype={} -A.apQ.prototype={} -A.aht.prototype={} -A.ak4.prototype={} -A.KS.prototype={} -A.aiG.prototype={} -A.a6r.prototype={} -A.a3U.prototype={} -A.aq7.prototype={} -A.aq8.prototype={} -A.a3T.prototype={} -A.a3V.prototype={} -A.ae3.prototype={} -A.a48.prototype={} -A.p7.prototype={} -A.yX.prototype={} -A.a4y.prototype={} -A.C5.prototype={} -A.ij.prototype={} -A.PG.prototype={} -A.C4.prototype={} -A.ago.prototype={} -A.vS.prototype={} -A.xa.prototype={} -A.ahw.prototype={} -A.ahx.prototype={} -A.apK.prototype={} -A.apH.prototype={} -A.ahv.prototype={} -A.apG.prototype={} -A.ahs.prototype={} -A.PH.prototype={} -A.jC.prototype={} -A.CJ.prototype={} -A.Ff.prototype={} -A.agk.prototype={ -gr7(a){var s=J.ei(J.aV8(this.a),new A.agn(),t.aG) -return A.a8(s,!0,A.p(s).i("am.E"))}} -A.agn.prototype={ -$1(a){var s=J.bh(a) -if(J.e(s.gmF(a),"phone"))return new A.CJ(a) -else if(J.e(s.gmF(a),"totp"))return new A.Ff(a) -else return new A.jC(a,t.aG)}, -$S:568} -A.aB7.prototype={ -$1(a){var s,r,q,p,o,n -if(a instanceof A.CJ){s=a.a -r=J.bh(s) -q=r.gmB(s) -p=r.gmF(s) -o=A.aDi(r.gqQ(s)) -n=r.gk6(s) -return new A.CI(r.grz(s),q,o.a/1000,p,n)}else if(a instanceof A.Ff){s=a.a -r=J.bh(s) -q=r.gmB(s) -p=r.gmF(s) -return new A.Fe(q,A.aDi(r.gqQ(s)).a/1000,p,r.gk6(s))}s=a.a -r=J.bh(s) -q=r.gmB(s) -p=r.gmF(s) -return new A.ii(q,A.aDi(r.gqQ(s)).a/1000,p,r.gk6(s))}, -$S:571} -A.kB.prototype={ -j(a,b){var s,r -if(b==null)return!1 -if(this===b)return!0 -if(!(b instanceof A.kB))return!1 -s=b.a -r=this.a -return s.a===r.a&&s.b.j(0,r.b)}, -gA(a){var s=this.a -return A.T(s.a,s.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){return B.UV.k(0)+"("+this.a.a+")"}} -A.uQ.prototype={ -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(!(b instanceof A.uQ))return!1 -return A.T(b.a,b.c,b.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)===A.T(s.a,s.c,s.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -gA(a){return A.T(this.a,this.c,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){return"["+this.a+"/"+this.c+"] "+A.j(this.b)}, -$ibV:1} -A.uR.prototype={ -gAG(a){var s=this -return A.l(["apiKey",s.a,"appId",s.b,"messagingSenderId",s.c,"projectId",s.d,"authDomain",s.e,"databaseURL",s.f,"storageBucket",s.r,"measurementId",s.w,"trackingId",s.x,"deepLinkURLScheme",s.y,"androidClientId",s.z,"iosClientId",s.Q,"iosBundleId",s.as,"appGroupId",s.at],t.N,t.u)}, -j(a,b){if(b==null)return!1 -if(this===b)return!0 -if(!(b instanceof A.uR))return!1 -return B.m2.aoF(this.gAG(this),b.gAG(b))}, -gA(a){return B.m2.aqk(0,this.gAG(this))}, -k(a){return A.Pb(this.gAG(this))}} -A.Pv.prototype={ -z4(){var s=0,r=A.I(t.H),q=this,p,o -var $async$z4=A.D(function(a,b){if(a===1)return A.F(b,r) -while(true)switch(s){case 0:o=J -s=2 -return A.K($.aG4().Cc(),$async$z4) -case 2:p=o.a3M(b,new A.afN()) -A.c3(p,p.$ti.i("q.E"),t.IK).N(0,q.gadW()) -$.aJu=!0 -return A.G(null,r)}}) -return A.H($async$z4,r)}, -R7(a){var s=a.a,r=A.aY6(a.b),q=$.tO(),p=new A.BZ(new A.a9x(),s,r) -$.eQ().m(0,p,q) -$.C_.m(0,s,p) -$.aIG.m(0,s,a.d)}, -kF(a,b){return this.aqU(a,b)}, -aqU(a,b){var s=0,r=A.I(t.h3),q,p=this,o,n,m -var $async$kF=A.D(function(c,d){if(c===1)return A.F(d,r) -while(true)switch(s){case 0:s=!$.aJu?3:4 -break -case 3:s=5 -return A.K(p.z4(),$async$kF) -case 5:case 4:o=$.C_.h(0,"[DEFAULT]") -A.bA()===B.aY -s=o==null&&!0?6:7 -break -case 6:s=8 -return A.K($.aG4().Cb("[DEFAULT]",new A.CK(b.a,b.b,b.c,b.d,b.e,b.f,b.r,b.w,b.x,b.y,b.z,b.Q,b.as,b.at)),$async$kF) -case 8:p.R7(d) -o=$.C_.h(0,"[DEFAULT]") -case 7:if(o!=null&&!0){n=o.b -if(b.a===n.a){m=b.f -if(!(m!=null&&m!==n.f)){m=b.r -n=m!=null&&m!==n.r}else n=!0}else n=!0 -if(n)throw A.d(A.aO3("[DEFAULT]"))}n=$.C_.h(0,"[DEFAULT]") -n.toString -q=n -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$kF,r)}, -uR(a,b){var s -if($.C_.ak(0,b)){s=$.C_.h(0,b) -s.toString -return s}throw A.d(A.aOI(b))}} -A.afN.prototype={ -$1(a){return a!=null}, -$S:581} -A.BZ.prototype={} -A.a9X.prototype={} -A.nP.prototype={ -j(a,b){if(b==null)return!1 -if(this===b)return!0 -if(!(b instanceof A.nP))return!1 -return b.a===this.a&&b.b.j(0,this.b)}, -gA(a){return A.T(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){return B.UU.k(0)+"("+this.a+")"}} -A.a9Y.prototype={ -gate(){var s,r=$.aIG.h(0,this.a) -if(r!=null&&r.h(0,this.b)!=null){s=r.h(0,this.b) -s.toString -return t.f.a(s)}s=t.z -return A.m(s,s)}} -A.CK.prototype={ -j_(){var s=this -return[s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,s.as,s.at]}} -A.jI.prototype={} -A.atr.prototype={ -c4(a,b,c){if(c instanceof A.CK){b.cf(0,128) -this.c4(0,b,c.j_())}else if(c instanceof A.jI){b.cf(0,129) -this.c4(0,b,[c.a,c.b.j_(),c.c,c.d])}else this.O0(0,b,c)}, -j9(a,b){var s,r,q,p,o -switch(a){case 128:s=this.cK(0,b) -s.toString -return A.aJZ(s) -case 129:s=this.cK(0,b) -s.toString -r=t.W -r.a(s) -q=J.X(s) -p=q.h(s,0) -p.toString -A.aQ(p) -o=q.h(s,1) -o.toString -o=A.aJZ(r.a(o)) -r=A.lB(q.h(s,2)) -s=t.J1.a(q.h(s,3)) -s.toString -return new A.jI(p,o,r,J.yS(s,t.u,t.X)) -default:return this.O_(a,b)}}} -A.a9K.prototype={ -Cb(a,b){return this.aqS(a,b)}, -aqS(a,b){var s=0,r=A.I(t.IK),q,p,o,n,m,l -var $async$Cb=A.D(function(c,d){if(c===1)return A.F(d,r) -while(true)switch(s){case 0:l=t.wh -s=3 -return A.K(new A.hx("dev.flutter.pigeon.FirebaseCoreHostApi.initializeApp",B.mf,null,t.Al).eN(0,[a,b]),$async$Cb) -case 3:m=l.a(d) -if(m==null)throw A.d(A.e9("channel-error",null,u.E,null)) -else{p=J.X(m) -if(p.gp(m)>1){o=p.h(m,0) -o.toString -A.aQ(o) -n=A.au(p.h(m,1)) -throw A.d(A.e9(o,p.h(m,2),n,null))}else if(p.h(m,0)==null)throw A.d(A.e9("null-error",null,u.l,null)) -else{p=t.z5.a(p.h(m,0)) -p.toString -q=p -s=1 -break}}case 1:return A.G(q,r)}}) -return A.H($async$Cb,r)}, -Cc(){var s=0,r=A.I(t.lo),q,p,o,n,m,l -var $async$Cc=A.D(function(a,b){if(a===1)return A.F(b,r) -while(true)switch(s){case 0:n=t.wh -l=n -s=3 -return A.K(new A.hx("dev.flutter.pigeon.FirebaseCoreHostApi.initializeCore",B.mf,null,t.Al).eN(0,null),$async$Cc) -case 3:m=l.a(b) -if(m==null)throw A.d(A.e9("channel-error",null,u.E,null)) -else{p=J.X(m) -if(p.gp(m)>1){n=p.h(m,0) -n.toString -A.aQ(n) -o=A.au(p.h(m,1)) -throw A.d(A.e9(n,p.h(m,2),o,null))}else if(p.h(m,0)==null)throw A.d(A.e9("null-error",null,u.l,null)) -else{n=n.a(p.h(m,0)) -n.toString -q=J.fW(n,t.z5) -s=1 -break}}case 1:return A.G(q,r)}}) -return A.H($async$Cc,r)}} -A.a9x.prototype={} -A.Nt.prototype={} -A.m3.prototype={} -A.a9L.prototype={ -gadQ(){var s,r,q,p -try{r=$.yR().h(0,"flutterfire_ignore_scripts") -if(typeof r=="number"||typeof r=="string"||A.iB(r)||!1)A.U(A.bF("object cannot be a num, string, bool, or null",null)) -s=A.aFh(A.azT(r)) -r=t.JY -if(r.b(s)){r=r.a(s) -q=A.by(r).i("a1") -q=A.a8(new A.a1(r,new A.a9M(),q),!1,q.i("am.E")) -return q}}catch(p){}return A.b([],t.s)}, -Ce(a,b){return this.aqV(a,b)}, -aqV(a,b){var s=0,r=A.I(t.H),q,p,o,n,m,l,k -var $async$Ce=A.D(function(c,d){if(c===1)return A.F(d,r) -while(true)switch(s){case 0:l=null -k="flutterfire-"+b -if(self.trustedTypes!=null){self.console.debug.$2("TrustedTypes available. Creating policy:",k) -o=self.trustedTypes -o.toString -q=o -try{p=q.createPolicy(k,t.e.a({createScriptURL:A.bd(new A.a9R(a))})) -l=p.createScriptURL(a)}catch(j){throw j}}o=document -m=o.createElement("script") -m.type="text/javascript" -m.crossOrigin="anonymous" -m.textContent=" window.ff_trigger_"+b+' = async (callback) => {\n console.debug("Initializing Firebase '+b+'");\n callback(await import("'+A.j(l!=null?l.toString():a)+'"));\n };\n ' -o.head.appendChild(m).toString -o=new A.ae($.ai,t.LR) -$.yR().hy("ff_trigger_"+b,[new A.a9S(b,new A.b3(o,t.zh))]) -s=2 -return A.K(o,$async$Ce) -case 2:return A.G(null,r)}}) -return A.H($async$Ce,r)}, -yK(){var s=0,r=A.I(t.H),q,p=this,o,n,m -var $async$yK=A.D(function(a,b){if(a===1)return A.F(b,r) -while(true)switch(s){case 0:m=$.yR() -if(m.h(0,"firebase_core")!=null){s=1 -break}m=m.h(0,"flutterfire_web_sdk_version") -if(m==null)m="10.3.1" -o=p.gadQ() -n=$.aC2() -n=n.gaR(n) -s=3 -return A.K(A.kD(A.iN(n,new A.a9N(p,o,m),A.p(n).i("q.E"),t.uz),t.H),$async$yK) -case 3:case 1:return A.G(q,r)}}) -return A.H($async$yK,r)}, -kF(a,b){return this.aqT(a,b)}, -aqT(a,b){var s=0,r=A.I(t.h3),q,p=this,o,n,m,l,k,j,i -var $async$kF=A.D(function(c,d){if(c===1)return A.F(d,r) -while(true)switch(s){case 0:i={} -s=3 -return A.K(p.yK(),$async$kF) -case 3:A.aOn(new A.a9P(),t.N) -i.a=null -o=!1 -try{n=firebase_core.getApp() -i.a=A.a4n(n) -o=!0}catch(h){}if(o){n=i.a.a -l=J.bh(n) -if(b.a===J.aV2(l.gn5(n))){k=b.f -j=J.aV6(l.gn5(n)) -if(k==null?j==null:k===j){k=b.r -n=J.aVf(l.gn5(n)) -n=k==null?n!=null:k!==n}else n=!0}else n=!0 -if(n)throw A.d(A.aO3("[DEFAULT]"))}else i.a=A.b66(b.a,b.b,b.e,b.f,b.w,b.c,null,b.d,b.r) -n=$.aC2() -n=n.gaR(n) -s=4 -return A.K(A.kD(A.iN(n,new A.a9Q(i),A.p(n).i("q.E"),t.uz),t.H),$async$kF) -case 4:i=i.a.a -n=J.bh(i) -q=A.aIz(n.ghI(i),A.aMQ(n.gn5(i))) -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$kF,r)}, -uR(a,b){var s,r,q,p,o=null -try{o=A.aOn(new A.a9O(b),t.Gu)}catch(r){s=A.a6(r) -if(A.b3D(s)==="app/no-app")throw A.d(A.aOI(b)) -throw A.d(A.b2V(s))}q=o.a -p=J.bh(q) -return A.aIz(p.ghI(q),A.aMQ(p.gn5(q)))}} -A.a9T.prototype={ -$0(){return new A.m3(this.a,this.b,this.c)}, -$S:582} -A.a9M.prototype={ -$1(a){return J.di(a)}, -$S:131} -A.a9R.prototype={ -$1(a){return this.a}, -$S:31} -A.a9S.prototype={ -$1(a){var s=$.yR(),r=this.a -s.m(0,r,a) -delete s.a["ff_trigger_"+r] -this.b.fN(0)}, -$S:21} -A.a9N.prototype={ -$1(a){var s=a.b,r=s==null,q=r?a.a:s -if(B.b.t(this.b,q))return A.dt(null,t.z) -q=a.a -if(r)s=q -return this.a.Ce("https://www.gstatic.com/firebasejs/"+this.c+"/firebase-"+q+".js","firebase_"+s)}, -$S:187} -A.a9P.prototype={ -$0(){return firebase_core.SDK_VERSION}, -$S:32} -A.a9Q.prototype={ -$1(a){var s=a.c -if(s==null||this.a.a==null)return A.dt(null,t.z) -return s.$1(this.a.a)}, -$S:187} -A.a9O.prototype={ -$0(){var s=firebase_core.getApp(this.a) -return A.a4n(s)}, -$S:584} -A.nl.prototype={} -A.zl.prototype={} -A.a9U.prototype={} -A.a9W.prototype={} -A.aia.prototype={} -A.OE.prototype={} -A.aAO.prototype={ -$1(a){return A.aAN(a,this.a)}, -$S:47} -A.aBn.prototype={ -$1(a){return A.aBm(a,this.a)}, -$S:47} -A.aBp.prototype={ -$2(a,b){this.a[a]=A.aBm(b,this.b)}, -$S:104} -A.kh.prototype={ -I(){return"AnimationStatus."+this.b}} -A.cl.prototype={ -k(a){return"#"+A.aV(this)+"("+this.Dw()+")"}, -Dw(){switch(this.gb4(this).a){case 1:return"\u25b6" -case 2:return"\u25c0" -case 3:return"\u23ed" -case 0:return"\u23ee"}}} -A.xr.prototype={ -I(){return"_AnimationDirection."+this.b}} -A.KO.prototype={ -I(){return"AnimationBehavior."+this.b}} -A.tT.prototype={ -gl(a){var s=this.x -s===$&&A.c() -return s}, -sl(a,b){var s=this -s.ff(0) -s.GE(b) -s.T() -s.tI()}, -ghk(){var s=this.r -if(!(s!=null&&s.a!=null))return 0 -s=this.w -s.toString -return s.fk(0,this.y.a/1e6)}, -GE(a){var s=this,r=s.a,q=s.b,p=s.x=A.R(a,r,q) -if(p===r)s.Q=B.H -else if(p===q)s.Q=B.W -else s.Q=s.z===B.aB?B.aM:B.aN}, -gb4(a){var s=this.Q -s===$&&A.c() -return s}, -kD(a,b){var s=this -s.z=B.aB -if(b!=null)s.sl(0,b) -return s.Oz(s.b)}, -bW(a){return this.kD(a,null)}, -a_0(a,b){this.z=B.l8 -return this.Oz(this.a)}, -de(a){return this.a_0(a,null)}, -ke(a,b,c){var s,r,q,p,o,n,m=this,l=$.al0.JX$ -l===$&&A.c() -if((l.a&4)!==0)switch(m.d.a){case 0:s=0.05 -break -case 1:s=1 -break -default:s=1}else s=1 -if(c==null){r=m.b-m.a -if(isFinite(r)){l=m.x -l===$&&A.c() -q=Math.abs(a-l)/r}else q=1 -if(m.z===B.l8&&m.f!=null){l=m.f -l.toString -p=l}else{l=m.e -l.toString -p=l}o=new A.b8(B.d.bE(p.a*q))}else{l=m.x -l===$&&A.c() -o=a===l?B.q:c}m.ff(0) -l=o.a -if(l===B.q.a){l=m.x -l===$&&A.c() -if(l!==a){m.x=A.R(a,m.a,m.b) -m.T()}m.Q=m.z===B.aB?B.W:B.H -m.tI() -return A.aEi()}n=m.x -n===$&&A.c() -return m.HI(new A.auD(l*s/1e6,n,a,b,B.c4))}, -Oz(a){return this.ke(a,B.B,null)}, -LD(a){var s,r,q=this,p=q.a,o=q.b,n=q.e -q.ff(0) -s=q.x -s===$&&A.c() -r=n.a/1e6 -s=o===p?0:s/(o-p)*r -return q.HI(new A.awH(p,o,!1,q.ga8S(),r,s,B.c4))}, -a8T(a){this.z=a -this.Q=a===B.aB?B.aM:B.aN -this.tI()}, -Iz(a){this.ff(0) -this.z=B.aB -return this.HI(a)}, -HI(a){var s,r=this -r.w=a -r.y=B.q -r.x=A.R(a.eA(0,0),r.a,r.b) -s=r.r.tl(0) -r.Q=r.z===B.aB?B.aM:B.aN -r.tI() -return s}, -tn(a,b){this.y=this.w=null -this.r.tn(0,b)}, -ff(a){return this.tn(a,!0)}, -n(){var s=this -s.r.n() -s.r=null -s.d6$.a0(0) -s.cU$.a0(0) -s.Er()}, -tI(){var s=this,r=s.Q -r===$&&A.c() -if(s.as!==r){s.as=r -s.wE(r)}}, -a6H(a){var s,r=this -r.y=a -s=a.a/1e6 -r.x=A.R(r.w.eA(0,s),r.a,r.b) -if(r.w.lE(s)){r.Q=r.z===B.aB?B.W:B.H -r.tn(0,!1)}r.T() -r.tI()}, -Dw(){var s,r=this.r,q=r==null,p=!q&&r.a!=null?"":"; paused" -if(q)s="; DISPOSED" -else s=r.b?"; silenced":"" -r=this.Eq() -q=this.x -q===$&&A.c() -return r+" "+B.d.ad(q,3)+p+s}} -A.auD.prototype={ -eA(a,b){var s,r,q=this,p=A.R(b/q.b,0,1) -if(p===0)return q.c -else{s=q.d -if(p===1)return s -else{r=q.c -return r+(s-r)*q.e.a7(0,p)}}}, -fk(a,b){return(this.eA(0,b+0.001)-this.eA(0,b-0.001))/0.002}, -lE(a){return a>this.b}} -A.awH.prototype={ -eA(a,b){var s=this,r=b+s.r,q=s.f,p=B.d.cF(r/q,1) -B.d.jo(r,q) -s.e.$1(B.aB) -q=A.a3(s.b,s.c,p) -q.toString -return q}, -fk(a,b){return(this.c-this.b)/this.f}, -lE(a){return!1}} -A.UG.prototype={} -A.UH.prototype={} -A.UI.prototype={} -A.Uv.prototype={ -U(a,b){}, -H(a,b){}, -fK(a){}, -dU(a){}, -gb4(a){return B.W}, -gl(a){return 1}, -k(a){return"kAlwaysCompleteAnimation"}} -A.Uw.prototype={ -U(a,b){}, -H(a,b){}, -fK(a){}, -dU(a){}, -gb4(a){return B.H}, -gl(a){return 0}, -k(a){return"kAlwaysDismissedAnimation"}} -A.zf.prototype={ -U(a,b){return this.gba(this).U(0,b)}, -H(a,b){return this.gba(this).H(0,b)}, -fK(a){return this.gba(this).fK(a)}, -dU(a){return this.gba(this).dU(a)}, -gb4(a){var s=this.gba(this) -return s.gb4(s)}} -A.CS.prototype={ -sba(a,b){var s,r=this,q=r.c -if(b==q)return -if(q!=null){r.a=q.gb4(q) -q=r.c -r.b=q.gl(q) -if(r.mH$>0)r.Bk()}r.c=b -if(b!=null){if(r.mH$>0)r.Bj() -q=r.b -s=r.c -s=s.gl(s) -if(q==null?s!=null:q!==s)r.T() -q=r.a -s=r.c -if(q!==s.gb4(s)){q=r.c -r.wE(q.gb4(q))}r.b=r.a=null}}, -Bj(){var s=this,r=s.c -if(r!=null){r.U(0,s.gcJ()) -s.c.fK(s.gYL())}}, -Bk(){var s=this,r=s.c -if(r!=null){r.H(0,s.gcJ()) -s.c.dU(s.gYL())}}, -gb4(a){var s=this.c -if(s!=null)s=s.gb4(s) -else{s=this.a -s.toString}return s}, -gl(a){var s=this.c -if(s!=null)s=s.gl(s) -else{s=this.b -s.toString}return s}, -k(a){var s=this,r=s.c -if(r==null)return"ProxyAnimation(null; "+s.Eq()+" "+B.d.ad(s.gl(s),3)+")" -return r.k(0)+"\u27a9ProxyAnimation"}} -A.jM.prototype={ -U(a,b){this.bO() -this.a.U(0,b)}, -H(a,b){this.a.H(0,b) -this.of()}, -Bj(){this.a.fK(this.gq7())}, -Bk(){this.a.dU(this.gq7())}, -zV(a){this.wE(this.Sy(a))}, -gb4(a){var s=this.a -return this.Sy(s.gb4(s))}, -gl(a){var s=this.a -return 1-s.gl(s)}, -Sy(a){switch(a.a){case 1:return B.aN -case 2:return B.aM -case 3:return B.H -case 0:return B.W}}, -k(a){return this.a.k(0)+"\u27aaReverseAnimation"}} -A.uv.prototype={ -I0(a){var s=this -switch(a.a){case 0:case 3:s.d=null -break -case 1:if(s.d==null)s.d=B.aM -break -case 2:if(s.d==null)s.d=B.aN -break}}, -gUx(){if(this.c!=null){var s=this.d -if(s==null){s=this.a -s=s.gb4(s)}s=s!==B.aN}else s=!0 -return s}, -n(){this.a.dU(this.gI_())}, -gl(a){var s=this,r=s.gUx()?s.b:s.c,q=s.a,p=q.gl(q) -if(r==null)return p -if(p===0||p===1)return p -return r.a7(0,p)}, -k(a){var s=this -if(s.c==null)return s.a.k(0)+"\u27a9"+s.b.k(0) -if(s.gUx())return s.a.k(0)+"\u27a9"+s.b.k(0)+"\u2092\u2099/"+A.j(s.c) -return s.a.k(0)+"\u27a9"+s.b.k(0)+"/"+A.j(s.c)+"\u2092\u2099"}, -gba(a){return this.a}} -A.a17.prototype={ -I(){return"_TrainHoppingMode."+this.b}} -A.tc.prototype={ -zV(a){if(a!==this.e){this.T() -this.e=a}}, -gb4(a){var s=this.a -return s.gb4(s)}, -al8(){var s,r,q=this,p=q.b -if(p!=null){switch(q.c.a){case 0:p=p.gl(p) -s=q.a -r=p<=s.gl(s) -break -case 1:p=p.gl(p) -s=q.a -r=p>=s.gl(s) -break -default:r=!1}if(r){p=q.a -s=q.gq7() -p.dU(s) -p.H(0,q.gIc()) -p=q.b -q.a=p -q.b=null -p.fK(s) -s=q.a -q.zV(s.gb4(s))}}else r=!1 -p=q.a -p=p.gl(p) -if(p!==q.f){q.T() -q.f=p}if(r&&q.d!=null)q.d.$0()}, -gl(a){var s=this.a -return s.gl(s)}, -n(){var s,r,q=this -q.a.dU(q.gq7()) -s=q.gIc() -q.a.H(0,s) -q.a=null -r=q.b -if(r!=null)r.H(0,s) -q.b=null -q.cU$.a0(0) -q.d6$.a0(0) -q.Er()}, -k(a){var s=this -if(s.b!=null)return A.j(s.a)+"\u27a9TrainHoppingAnimation(next: "+A.j(s.b)+")" -return A.j(s.a)+"\u27a9TrainHoppingAnimation(no next)"}} -A.ul.prototype={ -Bj(){var s,r=this,q=r.a,p=r.gRx() -q.U(0,p) -s=r.gRy() -q.fK(s) -q=r.b -q.U(0,p) -q.fK(s)}, -Bk(){var s,r=this,q=r.a,p=r.gRx() -q.H(0,p) -s=r.gRy() -q.dU(s) -q=r.b -q.H(0,p) -q.dU(s)}, -gb4(a){var s=this.b -if(s.gb4(s)===B.aM||s.gb4(s)===B.aN)return s.gb4(s) -s=this.a -return s.gb4(s)}, -k(a){return"CompoundAnimation("+this.a.k(0)+", "+this.b.k(0)+")"}, -aeT(a){var s=this -if(s.gb4(s)!==s.c){s.c=s.gb4(s) -s.wE(s.gb4(s))}}, -aeS(){var s=this -if(!J.e(s.gl(s),s.d)){s.d=s.gl(s) -s.T()}}} -A.ze.prototype={ -gl(a){var s,r=this.a -r=r.gl(r) -s=this.b -s=s.gl(s) -return Math.min(A.lE(r),A.lE(s))}} -A.FV.prototype={} -A.FW.prototype={} -A.FX.prototype={} -A.VX.prototype={} -A.Zv.prototype={} -A.Zw.prototype={} -A.Zx.prototype={} -A.a_i.prototype={} -A.a_j.prototype={} -A.a14.prototype={} -A.a15.prototype={} -A.a16.prototype={} -A.Cz.prototype={ -a7(a,b){return this.lS(b)}, -lS(a){throw A.d(A.cu(null))}, -k(a){return"ParametricCurve"}} -A.h_.prototype={ -a7(a,b){if(b===0||b===1)return b -return this.a2K(0,b)}} -A.Ha.prototype={ -lS(a){return a}} -A.Dz.prototype={ -lS(a){a*=this.a -return a-(a<0?Math.ceil(a):Math.floor(a))}, -k(a){return"SawTooth("+this.a+")"}} -A.e7.prototype={ -lS(a){var s=this.a -a=A.R((a-s)/(this.b-s),0,1) -if(a===0||a===1)return a -return this.c.a7(0,a)}, -k(a){var s=this,r=s.c -if(!(r instanceof A.Ha))return"Interval("+A.j(s.a)+"\u22ef"+A.j(s.b)+")\u27a9"+r.k(0) -return"Interval("+A.j(s.a)+"\u22ef"+A.j(s.b)+")"}} -A.F7.prototype={ -lS(a){return a"))}} -A.aX.prototype={ -gl(a){var s=this.a -return this.b.a7(0,s.gl(s))}, -k(a){var s=this.a,r=this.b -return s.k(0)+"\u27a9"+r.k(0)+"\u27a9"+A.j(r.a7(0,s.gl(s)))}, -Dw(){return this.Eq()+" "+this.b.k(0)}, -gba(a){return this.a}} -A.f8.prototype={ -a7(a,b){return this.b.a7(0,this.a.a7(0,b))}, -k(a){return this.a.k(0)+"\u27a9"+this.b.k(0)}} -A.ay.prototype={ -e2(a){var s=this.a -return A.p(this).i("ay.T").a(J.aUP(s,J.aUQ(J.aUR(this.b,s),a)))}, -a7(a,b){var s,r=this -if(b===0){s=r.a -return s==null?A.p(r).i("ay.T").a(s):s}if(b===1){s=r.b -return s==null?A.p(r).i("ay.T").a(s):s}return r.e2(b)}, -k(a){return"Animatable("+A.j(this.a)+" \u2192 "+A.j(this.b)+")"}, -sIG(a){return this.a=a}, -sbg(a,b){return this.b=b}} -A.Dx.prototype={ -e2(a){return this.c.e2(1-a)}} -A.hy.prototype={ -e2(a){return A.E(this.a,this.b,a)}} -A.Sv.prototype={ -e2(a){return A.alZ(this.a,this.b,a)}} -A.D4.prototype={ -e2(a){return A.b_l(this.a,this.b,a)}} -A.o3.prototype={ -e2(a){var s,r=this.a -r.toString -s=this.b -s.toString -return B.d.bE(r+(s-r)*a)}} -A.uo.prototype={ -e2(a){var s=this.a -return s==null?this.$ti.c.a(s):s}, -k(a){return"ConstantTween(value: "+A.j(this.a)+")"}} -A.eX.prototype={ -a7(a,b){if(b===0||b===1)return b -return this.a.a7(0,b)}, -k(a){return"CurveTween(curve: "+this.a.k(0)+")"}} -A.Jw.prototype={} -A.Fj.prototype={ -a69(a,b){var s,r,q,p,o,n,m,l=this.a -B.b.K(l,a) -for(s=l.length,r=0,q=0;q=n&&b"}} -A.Mm.prototype={ -YT(a){var s=A.fu(a).go3(),r=s instanceof A.cs?s.cE(a):s -return(r.gl(r)>>>24&255)===255}, -G(a){var s,r,q,p,o,n,m,l=this,k=null,j=A.bD(a,B.Ad,t.w).w.r.d,i=A.fu(a).go3() -if(i instanceof A.cs)i=i.cE(a) -s=new A.a6I(a) -r=l.z -q=A.u(r) -if(!(q!==B.UJ)){q=s.$1(r.a) -p=s.$1(r.d) -o=s.$1(r.c) -r=new A.d1(q,s.$1(r.b),o,p)}n=l.w.cE(a) -s=A.fu(a).gcO().gLJ().cH(n) -q=A.e0(l.a7h(a),B.mS,B.G,B.K,k) -m=A.kq(A.cz(A.mb(A.jr(new A.bY(new A.aF(0,0,0,j),new A.bL(A.c7(k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k),!1,!0,!1,!1,q,k),k),k,k,B.bm,!0,s,k,k,B.aH),new A.d6(l.x,k,k,k,k,n,k,k)),l.y+j,k),new A.bM(i,k,r,k,k,k,B.D),B.br) -return!l.YT(a)?A.M_(A.aHh(m,$.ad().J8(10,10,B.cv)),B.S):m}, -a7h(a){var s,r,q,p,o,n,m,l,k,j=this,i=null,h=t.p,g=A.b([],h) -A.h9(a,B.zT,t.ho).toString -for(s=j.c,r=j.d==null,q=j.e,p=0;p<2;p=n){o=p===q -n=p+1 -m=r?i:new A.a6H(j,p) -l=s[p] -k=A.b([new A.uM(1,B.e0,new A.q1(B.a0,i,i,o?l.b:l.a,i),i)],h) -k.push(A.dQ(l.c,i,i,i,i,i,i)) -m=A.hF(B.aG,new A.bY(B.Fc,A.eV(k,B.v,B.KQ,B.K),i),B.a1,!1,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,m,i,i,i,!1,B.aP) -g.push(j.alh(a,new A.uM(1,B.e0,A.EU(new A.bL(new A.Sj(i,i,i,i,o,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,"Tab "+n+" of 2",i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i),!1,!1,!1,!1,new A.vB(i,i,i,B.c2,m,i),i),i,i),i),o))}return g}, -alh(a,b,c){var s,r=null -if(!c)return b -s=A.fu(a).gey() -if(s instanceof A.cs)s=s.cE(a) -return A.mb(A.aX0(b,A.f6(r,r,s,r,r,r,r,r,r,r,r,r,r,r,r,r,r,!0,r,r,r,r,r,r,r,r)),new A.d6(r,r,r,r,r,s,r,r))}} -A.a6I.prototype={ -$1(a){var s -if(a.j(0,B.n))s=a -else{s=a.a -if(s instanceof A.cs)s=s.cE(this.a) -s=new A.bk(s,a.b,a.c,a.d)}return s}, -$S:592} -A.a6H.prototype={ -$0(){this.a.d.$1(this.b)}, -$S:0} -A.A2.prototype={ -ae(){return new A.G2(new A.ay(1,null,t.Y),null,null,B.i)}} -A.G2.prototype={ -aE(){var s,r,q,p=this -p.aV() -s=A.bO(null,B.F,null,0,p) -p.e=s -r=t.o -q=p.d -p.f=new A.aX(r.a(new A.aX(r.a(s),new A.eX(B.cc),t.HY.i("aX"))),q,q.$ti.i("aX")) -p.T5()}, -aM(a){this.b2(a) -this.T5()}, -T5(){var s=this.a.x -this.d.b=s}, -n(){var s=this.e -s===$&&A.c() -s.n() -this.a5g()}, -adq(a){if(!this.r){this.r=!0 -this.yl(0)}}, -adv(a){if(this.r){this.r=!1 -this.yl(0)}}, -ado(){if(this.r){this.r=!1 -this.yl(0)}}, -yl(a){var s,r,q,p=this.e -p===$&&A.c() -s=p.r -if(s!=null&&s.a!=null)return -r=this.r -if(r){p.z=B.aB -q=p.ke(1,B.Up,B.EW)}else{p.z=B.aB -q=p.ke(0,B.Ej,B.F1)}q.bQ(0,new A.asx(this,r),t.H)}, -G(a0){var s,r,q,p,o,n,m,l,k,j,i,h,g=this,f=null,e=g.a.r==null,d=!e,c=A.fu(a0),b=c.gey(),a=g.a.e -if(a==null)s=f -else s=A.ur(a,a0) -a=s!=null -if(a)r=c.gn7() -else if(d)r=b -else{q=B.Ey.cE(a0) -r=q}p=c.gcO().gcd().cH(r) -q=d&&!0?B.c2:B.bp -o=d?g.gadp():f -n=d?g.gadu():f -m=d?g.gadn():f -l=g.a -k=l.r -j=l.w -i=g.f -i===$&&A.c() -h=l.y -if(a&&e){e=l.f -if(e instanceof A.cs)e=e.cE(a0)}else e=s -a=g.a -l=a.d -e=A.iI(!1,A.kq(new A.bY(l,new A.fd(a.z,1,1,A.jr(A.v3(a.c,new A.d6(f,f,f,f,f,r,f,f),f),f,f,B.bm,!0,p,f,f,B.aH),f),f),new A.bM(e,f,f,h,f,f,B.D),B.br),i) -return A.jB(A.hF(B.aG,new A.bL(A.c7(f,f,f,f,f,!0,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f),!1,!1,!1,!1,new A.ft(new A.ar(j,1/0,j,1/0),e,f),f),B.a1,!1,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,k,m,o,n,!1,B.aP),q,f,f,f,f)}} -A.asx.prototype={ -$1(a){var s=this.a -if(s.c!=null&&this.b!==s.r)s.yl(0)}, -$S:27} -A.JD.prototype={ -n(){var s=this,r=s.cb$ -if(r!=null)r.H(0,s.giM()) -s.cb$=null -s.aP()}, -bY(){this.cR() -this.cA() -this.iN()}} -A.cs.prototype={ -gl(a){return this.b.a}, -gu8(){var s=this -return!s.e.j(0,s.f)||!s.x.j(0,s.y)||!s.r.j(0,s.w)||!s.z.j(0,s.Q)}, -gu6(){var s=this -return!s.e.j(0,s.r)||!s.f.j(0,s.w)||!s.x.j(0,s.z)||!s.y.j(0,s.Q)}, -gu7(){var s=this -return!s.e.j(0,s.x)||!s.f.j(0,s.y)||!s.r.j(0,s.z)||!s.w.j(0,s.Q)}, -cE(a){var s,r,q,p,o,n=this,m=null -if(n.gu8()){s=a.an(t.WD) -r=s==null?m:s.f.c.gh2() -if(r==null){r=A.ct(a,B.lf) -r=r==null?m:r.d -q=r}else q=r -if(q==null)q=B.an}else q=B.an -if(n.gu6()){r=A.ct(a,B.Ab) -r=r==null?m:r.Q -p=r===!0}else p=!1 -if(n.gu7())A.aWO(a) -switch(q.a){case 1:switch(0){case 0:o=p?n.r:n.e -break}break -case 0:switch(0){case 0:o=p?n.w:n.f -break}break -default:o=m}return new A.cs(o,n.c,m,n.e,n.f,n.r,n.w,n.x,n.y,n.z,n.Q,0)}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.Y(b)!==A.u(s))return!1 -return b instanceof A.cs&&b.b.a===s.b.a&&b.e.j(0,s.e)&&b.f.j(0,s.f)&&b.r.j(0,s.r)&&b.w.j(0,s.w)&&b.x.j(0,s.x)&&b.y.j(0,s.y)&&b.z.j(0,s.z)&&b.Q.j(0,s.Q)}, -gA(a){var s=this -return A.T(s.b.a,s.e,s.f,s.r,s.x,s.y,s.w,s.Q,s.z,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){var s=this,r=new A.a6E(s),q=A.b([r.$2("color",s.e)],t.s) -if(s.gu8())q.push(r.$2("darkColor",s.f)) -if(s.gu6())q.push(r.$2("highContrastColor",s.r)) -if(s.gu8()&&s.gu6())q.push(r.$2("darkHighContrastColor",s.w)) -if(s.gu7())q.push(r.$2("elevatedColor",s.x)) -if(s.gu8()&&s.gu7())q.push(r.$2("darkElevatedColor",s.y)) -if(s.gu6()&&s.gu7())q.push(r.$2("highContrastElevatedColor",s.z)) -if(s.gu8()&&s.gu6()&&s.gu7())q.push(r.$2("darkHighContrastElevatedColor",s.Q)) -r=s.c -if(r==null)r="CupertinoDynamicColor" -q=B.b.bH(q,", ") -return r+"("+q+", resolved by: UNRESOLVED)"}} -A.a6E.prototype={ -$2(a,b){var s=b.j(0,this.a.b)?"*":"" -return s+a+" = "+b.k(0)+s}, -$S:609} -A.VL.prototype={} -A.VK.prototype={} -A.a6D.prototype={ -rW(a){return B.o}, -AN(a,b,c,d){return B.ai}, -rV(a,b){return B.e}} -A.a1S.prototype={} -A.Mg.prototype={ -G(a){var s=null,r=A.bD(a,B.bo,t.w).w.f.b+8,q=this.c.Z(0,new A.k(8,r)),p=A.eV(this.d,B.v,B.G,B.bH),o=$.ad().J8(20,20,B.cv) -return new A.bY(new A.aF(8,r,8,8),new A.i6(new A.MI(q),A.cC(s,A.aHh(A.kq(new A.bY(B.Fn,p,s),new A.bM(B.Ev.cE(a),s,A.zw(B.Er.cE(a),1),B.iq,s,s,B.D),B.br),o),B.S,s,s,B.Ba,s,s,s,s,s,s,222),s),s)}} -A.qb.prototype={ -ae(){return new A.G3(B.i)}} -A.G3.prototype={ -afs(a){this.ao(new A.asy(this))}, -afu(a){this.ao(new A.asz(this))}, -G(a){var s=this,r=null,q=s.a.f,p=A.dQ(q,r,B.aZ,r,B.zE.cH(s.d?A.fu(a).gn7():B.fp.cE(a)),r,r) -q=s.d?A.fu(a).gey():r -return A.cz(A.jB(A.aHH(B.cy,B.f5,p,q,B.EA,0,s.a.c,B.Fo,0.7),B.bp,r,s.gafr(),s.gaft(),r),r,1/0)}} -A.asy.prototype={ -$0(){this.a.d=!0}, -$S:0} -A.asz.prototype={ -$0(){this.a.d=!1}, -$S:0} -A.Mh.prototype={ -P(a){var s=this.f,r=A.ur(s,a) -return J.e(r,s)?this:this.cH(r)}, -vi(a,b,c,d,e,f,g,h){var s,r=this,q=g==null?r.a:g,p=b==null?r.b:b,o=h==null?r.c:h,n=c==null?r.d:c,m=e==null?r.e:e,l=a==null?r.f:a -if(d==null){s=r.r -s=s==null?null:A.R(s,0,1)}else s=d -return A.aHI(l,p,n,s,m,f==null?r.w:f,q,o)}, -cH(a){return this.vi(a,null,null,null,null,null,null,null)}} -A.VN.prototype={} -A.VO.prototype={ -KC(a){return a.grf(a)==="en"}, -jU(a,b){return new A.cW(B.BY,t.u4)}, -Ei(a){return!1}, -k(a){return"DefaultCupertinoLocalizations.delegate(en_US)"}} -A.Mz.prototype={$iA3:1} -A.A5.prototype={ -ae(){return new A.Ga(B.e,null,null,B.i)}} -A.Ga.prototype={ -aE(){var s,r,q=this -q.aV() -s=A.bO(null,B.dU,null,0,q) -s.bO() -r=s.cU$ -r.b=!0 -r.a.push(new A.asL(q)) -q.f=s -r=q.a -r.d.a=s -r.w.U(0,q.gGS()) -r=t.Y -s=q.f -q.a.toString -q.r=new A.aX(A.ci(B.cf,s,null),new A.ay(0,1,r),r.i("aX"))}, -n(){var s,r=this -r.a.d.a=null -s=r.f -s===$&&A.c() -s.n() -r.a.w.H(0,r.gGS()) -r.a5k()}, -aM(a){var s,r=this,q=a.w -if(q!==r.a.w){s=r.gGS() -q.H(0,s) -r.a.w.U(0,s)}r.b2(a)}, -bu(){this.Rp() -this.di()}, -Rp(){var s,r=this,q=r.a.w.a,p=q.c.gaT().b,o=q.a,n=p-o.b,m=r.a -m.toString -if(n<-48){if(m.d.gxV())r.a.d.w_(!1) -return}if(!m.d.gxV()){m=r.f -m===$&&A.c() -m.bW(0)}r.a.toString -s=Math.max(p,p-n/10) -o=o.a-40 -n=s-73.5 -m=r.c -m.toString -m=A.bD(m,B.i1,t.w).w.a -r.a.toString -n=A.aJg(new A.y(10,-21.5,0+m.a-10,0+m.b+21.5),new A.y(o,n,o+80,n+47.5)) -r.ao(new A.asJ(r,new A.k(n.a,n.b),p,s))}, -G(a){var s,r,q=this -q.a.toString -s=q.d -r=q.r -r===$&&A.c() -return A.aHb(new A.Mi(r,new A.k(0,q.e),null),B.cf,B.F7,s.a,s.b)}} -A.asL.prototype={ -$0(){return this.a.ao(new A.asK())}, -$S:0} -A.asK.prototype={ -$0(){}, -$S:0} -A.asJ.prototype={ -$0(){var s=this,r=s.a -r.d=s.b -r.e=s.c-s.d}, -$S:0} -A.Mi.prototype={ -G(a){var s,r,q=null,p=this.r,o=p.b -p=p.a -o.a7(0,p.gl(p)) -s=new A.k(0,49.75).Y(0,this.w) -r=o.a7(0,p.gl(p)) -r=A.kV(B.M4,B.e,r==null?1:r) -r.toString -p=o.a7(0,p.gl(p)) -if(p==null)p=1 -p=A.aJh(p,B.Is,new A.cF(B.AJ,B.AL)) -return new A.td(A.ml(r.a,r.b,0),q,!0,q,new A.D1(q,p,s,1,B.Pf,q),q)}} -A.JG.prototype={ -n(){var s=this,r=s.cb$ -if(r!=null)r.H(0,s.giM()) -s.cb$=null -s.aP()}, -bY(){this.cR() -this.cA() -this.iN()}} -A.qc.prototype={ -ae(){return new A.G5(B.i)}} -A.G5.prototype={ -agc(){var s,r=this.c -r.toString -s=A.w5(r) -if(s!=null&&s.f.length!==0)s.i5(0,B.iP,B.cC)}, -G(a){var s,r,q=this,p=null,o=q.a.d,n=A.bD(a,p,t.w).w -q.a.toString -o=new A.bY(new A.aF(0,0,0,n.e.d),o,p) -s=A.ur(p,a) -if(s==null)s=A.fu(a).gm_() -r=A.b([o],t.p) -q.a.toString -r.push(A.w1(p,A.hF(p,p,B.a1,!0,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,q.gagb(),p,p,p,!1,B.aP),n.f.b,p,0,0,0,p)) -return A.kq(A.lb(B.bR,r,B.S,B.bM,p),new A.bM(s,p,p,p,p,p,B.D),B.br)}} -A.Ml.prototype={ -grM(a){return B.cC}, -gmt(){return B.Dt}, -gqn(){return null}, -AR(a){return a instanceof A.nD&&!0}, -uY(a,b,c){var s=null,r=this.c1.$1(a) -return new A.bL(A.c7(s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,!0,s,s,s,s,s,s,s,s,s),!1,!0,!1,!1,r,s)}, -AQ(a,b,c,d){return A.aHJ(this,a,b,c,d,this.$ti.c)}} -A.a6F.prototype={ -$0(){return A.aWH(this.a)}, -$S:12} -A.a6G.prototype={ -$0(){var s=this.a,r=s.a -r.toString -s=s.at -s.toString -r.aog() -return new A.G1(s,r,this.b.i("G1<0>"))}, -$S(){return this.b.i("G1<0>()")}} -A.nD.prototype={ -gmy(){return A.ec.prototype.gmy.call(this)+"("+A.j(this.b.a)+")"}, -goK(){return!0}} -A.Mj.prototype={ -G(a){var s,r=this,q=a.an(t.I) -q.toString -s=q.w -q=r.e -return A.aKQ(A.aKQ(new A.Mx(q,r.f,q,null),r.c,s,!0),r.d,s,!1)}} -A.xB.prototype={ -ae(){return new A.xC(B.i,this.$ti.i("xC<1>"))}, -aov(){return this.d.$0()}, -asP(){return this.e.$0()}} -A.xC.prototype={ -aE(){var s,r=this -r.aV() -s=A.acJ(r,null) -s.ay=r.gahZ() -s.ch=r.gai0() -s.CW=r.gahX() -s.cx=r.gabg() -r.e=s}, -n(){var s=this.e -s===$&&A.c() -s.ok.a0(0) -s.jn() -this.aP()}, -ai_(a){this.d=this.a.asP()}, -ai1(a){var s,r,q=this.d -q.toString -s=a.c -s.toString -r=this.c -r=this.Pm(s/r.gq(r).a) -q=q.a -s=q.x -s===$&&A.c() -q.sl(0,s-r)}, -ahY(a){var s,r=this,q=r.d -q.toString -s=r.c -q.WH(r.Pm(a.a.a.a/s.gq(s).a)) -r.d=null}, -abh(){var s=this.d -if(s!=null)s.WH(0) -this.d=null}, -ai3(a){var s -if(this.a.aov()){s=this.e -s===$&&A.c() -s.uL(a)}}, -Pm(a){var s=this.c.an(t.I) -s.toString -switch(s.w.a){case 0:return-a -case 1:return a}}, -G(a){var s,r,q=null,p=a.an(t.I) -p.toString -s=t.w -r=p.w===B.p?A.bD(a,B.bo,s).w.f.a:A.bD(a,B.bo,s).w.f.c -r=Math.max(r,20) -return A.lb(B.bR,A.b([this.a.c,new A.QY(0,0,0,r,A.vt(B.bX,q,q,q,this.gai2(),q,q,q),q)],t.p),B.S,B.Pz,q)}} -A.G1.prototype={ -WH(a){var s,r,q,p,o=this -if(Math.abs(a)>=1)s=a<=0 -else{r=o.a.x -r===$&&A.c() -s=r>0.5}if(s){r=o.a -q=r.x -q===$&&A.c() -q=A.a3(800,0,q) -q.toString -q=A.d2(0,Math.min(B.d.ec(q),300),0) -r.z=B.aB -r.ke(1,B.mT,q)}else{o.b.ex() -r=o.a -q=r.r -if(q!=null&&q.a!=null){q=r.x -q===$&&A.c() -q=A.a3(0,800,q) -q.toString -q=A.d2(0,B.d.ec(q),0) -r.z=B.l8 -r.ke(0,B.mT,q)}}q=r.r -if(q!=null&&q.a!=null){p=A.bg("animationStatusCallback") -p.b=new A.asw(o,p) -q=p.aI() -r.bO() -r=r.d6$ -r.b=!0 -r.a.push(q)}else o.b.Bl()}} -A.asw.prototype={ -$1(a){var s=this.a -s.b.Bl() -s.a.dU(this.b.aI())}, -$S:5} -A.k1.prototype={ -dP(a,b){var s -if(a instanceof A.k1){s=A.asA(a,this,b) -s.toString -return s}s=A.asA(null,this,b) -s.toString -return s}, -dQ(a,b){var s -if(a instanceof A.k1){s=A.asA(this,a,b) -s.toString -return s}s=A.asA(this,null,b) -s.toString -return s}, -vj(a){return new A.VM(this,a)}, -j(a,b){var s,r -if(b==null)return!1 -if(J.Y(b)!==A.u(this))return!1 -if(b instanceof A.k1){s=b.a -r=this.a -r=s==null?r==null:s===r -s=r}else s=!1 -return s}, -gA(a){return J.C(this.a)}} -A.asB.prototype={ -$1(a){var s=A.E(null,a,this.a) -s.toString -return s}, -$S:102} -A.asC.prototype={ -$1(a){var s=A.E(null,a,1-this.a) -s.toString -return s}, -$S:102} -A.VM.prototype={ -hK(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h=this.b.a -if(h==null)return -s=c.e -r=s.a -q=0.05*r -p=s.b -o=q/(h.length-1) -switch(c.d.a){case 0:n=b.a+r -m=1 -break -case 1:n=b.a -m=-1 -break -default:n=null -m=null}for(s=b.b,r=s+p,l=0,k=0;k0)A.B5() -break -case 0:if(Math.abs(b.a.a)<10&&Math.abs(a.a-r.db)>0)A.B5() -break}}, -n(){var s=this.cy -s===$&&A.c() -s.n() -this.NQ()}} -A.asE.prototype={ -$0(){this.a.xk()}, -$S:0} -A.asD.prototype={ -$1(a){return A.B5()}, -$S:626} -A.A4.prototype={ -ae(){return new A.G7(null,null,B.i)}} -A.G7.prototype={ -aE(){var s,r,q=this,p=null -q.aV() -q.y=!1 -s=A.Tf(p,p) -s.al=q.gajE() -s.aG=q.gajG() -s.bd=q.gHK() -s.bS=q.gajC() -q.d=s -s=A.acJ(p,p) -s.ay=q.gajx() -s.ch=q.gajz() -s.CW=q.gajv() -r=q.a -s.at=r.as -q.e=s -s=A.bO(p,B.F,p,r.c?1:0,q) -q.f=s -q.r=A.ci(B.B,s,p) -s=A.bO(p,B.bC,p,p,q) -q.w=s -q.x=A.ci(B.aD,s,p)}, -aM(a){var s,r,q=this -q.b2(a) -s=q.e -s===$&&A.c() -r=q.a -s.at=r.as -s=q.Q -if(s||a.c!==r.c)q.Sw(s)}, -Sw(a){var s,r,q=this -q.Q=!1 -s=q.r -s===$&&A.c() -s.b=a?B.B:B.aD -s.c=a?B.B:new A.ju(B.aD) -s=q.a.c -r=q.f -if(s){r===$&&A.c() -r.bW(0)}else{r===$&&A.c() -r.de(0)}}, -ahU(){return this.Sw(!0)}, -ajF(a){var s -this.a.toString -this.Q=!1 -s=this.w -s===$&&A.c() -s.bW(0)}, -To(a){var s=this.a -s.d.$1(!s.c) -this.PP()}, -ajB(){return this.To(null)}, -ajH(a){var s -this.a.toString -this.Q=!1 -s=this.w -s===$&&A.c() -s.de(0)}, -ajD(){this.a.toString -var s=this.w -s===$&&A.c() -s.de(0)}, -ajy(a){var s,r=this -r.a.toString -r.Q=!1 -s=r.w -s===$&&A.c() -s.bW(0) -r.PP()}, -ajA(a){var s,r,q,p=this -p.a.toString -s=p.r -s===$&&A.c() -s.c=s.b=B.B -s=a.c -s.toString -r=s/20 -s=p.c.an(t.I) -s.toString -switch(s.w.a){case 0:s=p.f -s===$&&A.c() -q=s.x -q===$&&A.c() -s.sl(0,q-r) -break -case 1:s=p.f -s===$&&A.c() -q=s.x -q===$&&A.c() -s.sl(0,q+r) -break}}, -ajw(a){var s,r,q,p=this -p.ao(new A.asF(p)) -s=p.r -s===$&&A.c() -s=s.gl(s) -r=p.a -q=r.c -if(s>=0.5!==q)r.d.$1(!q) -s=p.w -s===$&&A.c() -s.de(0)}, -PP(){switch(A.bA().a){case 2:A.abM() -break -case 0:case 1:case 3:case 4:case 5:break}}, -afS(a){this.ao(new A.asG(this,a))}, -G(a){var s,r,q,p,o,n,m,l,k,j,i,h=this,g=null -A.fu(a) -h.a.toString -s=B.Ew.cE(a) -s=s -if(h.Q)h.ahU() -h.a.toString -r=h.z -if(r===$){q=A.l([B.hQ,new A.cH(h.gHK(),new A.b7(A.b([],t.g),t.d),t.wY)],t.A,t.od) -h.z!==$&&A.aW() -h.z=q -r=q}p=h.a -o=p.x -n=p.y -p=p.c -m=B.Es.cE(a) -h.a.toString -l=A.aYu(A.ao(204,s.gl(s)>>>16&255,s.gl(s)>>>8&255,s.gl(s)&255)) -l=new A.B4(l.a,l.b,0.835,0.69).aum() -k=h.a.d -j=a.an(t.I) -j.toString -i=h.y -i===$&&A.c() -return A.jB(A.aDM(A.aIJ(r,!1,new A.VP(p,s,m,B.j,l,k,h,j.w,i,g),!0,o,B.bp,n,h.gafR(),g),1),B.c2,g,g,g,g)}, -n(){var s=this,r=s.d -r===$&&A.c() -r.lk() -r.jn() -r=s.e -r===$&&A.c() -r.ok.a0(0) -r.jn() -r=s.f -r===$&&A.c() -r.n() -r=s.w -r===$&&A.c() -r.n() -s.a5h()}} -A.asF.prototype={ -$0(){this.a.Q=!0}, -$S:0} -A.asG.prototype={ -$0(){this.a.y=this.b}, -$S:0} -A.VP.prototype={ -aD(a){var s,r,q=this,p=q.y,o=new A.ZM(p,q.d,q.e,q.f,new A.Mq(q.r,B.nP),q.w,q.x,q.z,q.Q,A.af(t.FG),B.B1,null,A.af(t.T)) -o.aC() -o.saW(null) -s=p.r -s===$&&A.c() -r=o.gdR() -s.a.U(0,r) -p=p.x -p===$&&A.c() -p.a.U(0,r) -return o}, -aH(a,b){var s=this -b.sl(0,s.d) -b.sAo(s.e) -b.sk5(s.f) -b.sk0(s.r) -b.skC(s.w) -b.sf_(s.x) -b.sbF(s.z) -b.sra(s.Q)}} -A.ZM.prototype={ -sl(a,b){if(b===this.e_)return -this.e_=b -this.bo()}, -sAo(a){if(a.j(0,this.bV))return -this.bV=a -this.av()}, -sk5(a){if(a.j(0,this.cs))return -this.cs=a -this.av()}, -sk0(a){if(a.j(0,this.bG.a))return -this.bG=new A.Mq(a,B.nP) -this.av()}, -skC(a){if(a.j(0,this.ci))return -this.ci=a -this.av()}, -sf_(a){if(J.e(a,this.dn))return -this.dn=a}, -sbF(a){if(this.h7===a)return -this.h7=a -this.av()}, -sra(a){if(a===this.jL)return -this.jL=a -this.av()}, -j4(a){return!0}, -jN(a,b){var s,r -if(t.pY.b(a)&&!0){s=this.cI -r=s.e -r===$&&A.c() -r.uL(a) -s=s.d -s===$&&A.c() -s.uL(a)}}, -eT(a){var s -this.hp(a) -a.slM(this.cI.gHK()) -a.bc(B.kt,!0) -a.bc(B.kp,!0) -s=this.e_ -a.bc(B.ku,!0) -a.bc(B.kq,s)}, -ap(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g=this,f=a.gbU(a),e=g.cI,d=e.r -d===$&&A.c() -s=d.gl(d) -e=e.x -e===$&&A.c() -r=e.gl(e) -switch(g.h7.a){case 0:q=1-s -break -case 1:q=s -break -default:q=null}e=$.ad() -p=e.b1() -d=A.E(g.cs,g.bV,s) -d.toString -p.saf(0,d) -d=b.a+(g.gq(g).a-51)/2 -o=b.b -n=o+(g.gq(g).b-31)/2 -m=A.iQ(new A.y(d,n,d+51,n+31),B.Nz) -f.cC(m,p) -if(g.jL){l=m.cV(1.75) -k=e.b1() -k.saf(0,g.ci) -k.sbC(0,B.Q) -k.seP(3.5) -f.cC(l,k)}j=7*r -e=d+15.5 -d+=35.5 -n=A.a3(e-14,d-14-j,q) -n.toString -d=A.a3(e+14+j,d+14,q) -d.toString -i=o+g.gq(g).b/2 -h=new A.y(n,i-14,d,i+14) -d=g.vI -n=g.cx -n===$&&A.c() -d.saw(0,a.atq(n,B.e,h,m,new A.aw9(g,h),d.a))}, -n(){this.vI.saw(0,null) -this.h_()}} -A.aw9.prototype={ -$2(a,b){this.a.bG.ap(a.gbU(a),this.b)}, -$S:8} -A.JE.prototype={ -bY(){this.cR() -this.cA() -this.ep()}, -n(){var s=this,r=s.aZ$ -if(r!=null)r.H(0,s.ge8()) -s.aZ$=null -s.aP()}} -A.qd.prototype={ -sC9(a,b){if(this.b===b)return -this.b=b -this.T()}, -n(){this.d3() -this.a=!0}} -A.ut.prototype={ -ae(){return new A.G8(null,A.m(t.yb,t.M),null,!0,null,B.i)}} -A.G8.prototype={ -guy(){this.a.toString -var s=this.d.y -s.toString -return s}, -gei(){this.a.toString -return null}, -is(a,b){this.Sv()}, -Sv(){var s=this,r=s.d -if(r!=null){s.nd(r,"controller") -s.d.y.U(0,s.gafl())}}, -aE(){this.aV() -this.al1()}, -al2(a){var s,r=this,q=r.a -q.toString -s=r.d -if(s==null){r.d=new A.RM(q.c.e,$.aO()) -if(!r.glQ())r.Sv()}r.a.toString}, -al1(){return this.al2(null)}, -afm(){this.ao(new A.asH())}, -aM(a){var s,r=this -r.a5i(a) -r.a.toString -s=r.guy().b -r.a.toString -if(s>=2){s=r.guy() -r.a.toString -s.sC9(0,1)}}, -G(a){var s,r,q,p,o,n,m,l=this,k=null,j=t.w,i=A.bD(a,k,j).w,h=A.bD(a,k,j).w -j=l.guy().b -s=l.a.e -h=h.ZM(!0) -r=i.e.d -q=new A.aF(0,0,0,r) -p=l.a.c -o=p.y -if(o>r){n=o+i.f.d -if(p.YT(a)){q=new A.aF(0,0,0,n) -h=h.atO(!0)}else h=h.qv(h.f.vb(n))}m=A.kP(new A.bY(q,new A.IQ(j,2,s,k),k),h,k) -l.a.toString -j=A.ur(k,a) -if(j==null)j=A.fu(a).gm_() -s=i.o9(1) -r=l.a.c -p=l.guy().b -return A.kq(A.lb(B.bR,A.b([m,A.kP(new A.fd(B.lw,k,k,A.aHK(r.r,r.f,r.z,p,r.y,r.x,r.w,r.c,r.a,new A.asI(l)),k),s,k)],t.p),B.S,B.bM,k),new A.bM(j,k,k,k,k,k,B.D),B.br)}, -n(){this.a.toString -var s=this.d -if(s!=null){s.yB() -s.EH()}this.a5j()}} -A.asH.prototype={ -$0(){}, -$S:0} -A.asI.prototype={ -$1(a){var s=this.a -s.guy().sC9(0,a) -s=s.a.c.d -if(s!=null)s.$1(a)}, -$S:49} -A.IQ.prototype={ -ae(){var s=t.if -return new A.a0o(A.b([],t.HZ),A.b([],s),A.b([],s),B.i)}, -auh(a,b){return this.e.$2(a,b)}} -A.a0o.prototype={ -aE(){this.aV() -B.b.K(this.d,A.aT(this.a.d,!1,!1,t.y))}, -bu(){this.di() -this.Q1()}, -aM(a){var s,r,q,p,o=this -o.b2(a) -s=o.a.d -r=o.d -q=r.length -p=s-q -if(p>0)B.b.K(r,A.aT(p,!1,!1,t.y)) -else if(p<0)B.b.eL(r,s,q) -o.Q1()}, -Q1(){var s,r,q,p=this,o=p.e,n=o.length,m=p.a.d -if(n!==m)if(n>m){B.b.K(p.f,B.b.em(o,m)) -B.b.eL(o,p.a.d,o.length)}else{s=m-n -r=J.ae6(s,t.l5) -for(q=0;q=p+8+45,l=26+q.a,k=A.bD(a,B.i1,r).w.a.a-q.c-26,j=new A.k(A.R(o.a,l,k),n-8-p) -n=this.d -s=new A.k(A.R(n.a,l,k),n.b+8-p) -r=m?j:s -return new A.bY(new A.aF(8,p,8,8),new A.i6(new A.TC(j,s,m),new A.Gc(r,this.e,m,A.b72(),null),null),null)}} -A.VS.prototype={ -aD(a){var s=new A.ZN(this.e,this.f,A.eR(52,null),A.af(t.xG),null,A.af(t.T)) -s.aC() -s.saW(null) -return s}, -aH(a,b){b.sIy(this.e) -b.sKx(this.f)}} -A.ZN.prototype={ -geZ(){return!0}, -sIy(a){if(a.j(0,this.v))return -this.v=a -this.W()}, -sKx(a){if(this.V===a)return -this.V=a -this.W()}, -bs(){var s,r,q=this -if(q.C$==null)return -s=t.k.a(A.t.prototype.ga2.call(q)) -r=q.C$ -r.toString -r.bz(q.am.on(new A.ar(0,s.b,0,s.d)),!0) -s=q.C$ -r=s.b -r.toString -t.q.a(r) -r.a=new A.k(0,q.V?-7:0) -s=s.gq(s) -r=q.C$ -q.id=new A.Q(s.a,r.gq(r).b-7)}, -ap(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g,f=this,e=f.C$ -if(e==null)return -e=e.b -e.toString -s=t.q -s.a(e) -r=f.br -q=f.cx -q===$&&A.c() -e=b.Y(0,e.a) -p=f.C$ -p=p.gq(p) -o=f.C$.b -o.toString -s.a(o) -s=$.ad() -n=s.c_() -m=f.C$ -m=m.gq(m) -l=f.C$ -n.eG(A.iQ(new A.y(0,7,0+m.a,7+(l.gq(l).b-14)),B.dq)) -k=f.hR(f.v) -o=o.a -l=f.C$ -l=l.gq(l) -m=f.C$ -j=m.gq(m).a/2+(k.a-(o.a+l.a/2)) -if(f.V){o=f.C$ -i=o.gq(o).b-7}else i=7 -if(f.V){o=f.C$ -h=o.gq(o).b}else h=0 -g=s.c_() -g.eh(0,j,h) -g.cc(0,j-7,i) -g.cc(0,j+7,i) -g.aL(0) -r.saw(0,a.atp(q,e,new A.y(0,0,0+p.a,0+p.b),s.VD(B.ML,n,g),new A.awg(f),r.a))}, -n(){this.br.saw(0,null) -this.h_()}, -co(a,b){var s,r,q=this.C$,p=q.b -p.toString -p=t.q.a(p).a -s=p.a -p=p.b+7 -q=q.gq(q) -r=this.C$ -if(!new A.y(s,p,s+q.a,p+(r.gq(r).b-14)).t(0,b))return!1 -return this.a38(a,b)}} -A.awg.prototype={ -$2(a,b){var s=this.a.C$ -s.toString -return a.dc(s,b)}, -$S:8} -A.Gc.prototype={ -ae(){return new A.Gd(new A.bB(null,t.C),null,null,B.i)}, -auB(a,b,c,d){return this.f.$4(a,b,c,d)}} -A.Gd.prototype={ -afB(a){var s=a.b -if(s!=null&&s!==0)if(s>0)this.QR() -else this.QP()}, -QP(){var s=this,r=$.av.ah$.z.h(0,s.r) -r=r==null?null:r.ga_() -t.Qv.a(r) -if(r instanceof A.tA){r=r.R -r===$&&A.c()}else r=!1 -if(r){r=s.d -r===$&&A.c() -r.de(0) -r=s.d -r.bO() -r=r.d6$ -r.b=!0 -r.a.push(s.gzW()) -s.e=s.f+1}}, -QR(){var s=this,r=$.av.ah$.z.h(0,s.r) -r=r==null?null:r.ga_() -t.Qv.a(r) -if(r instanceof A.tA){r=r.a1 -r===$&&A.c()}else r=!1 -if(r){r=s.d -r===$&&A.c() -r.de(0) -r=s.d -r.bO() -r=r.d6$ -r.b=!0 -r.a.push(s.gzW()) -s.e=s.f-1}}, -ajq(a){var s,r=this -if(a!==B.H)return -r.ao(new A.asP(r)) -s=r.d -s===$&&A.c() -s.bW(0) -r.d.dU(r.gzW())}, -aE(){this.aV() -this.d=A.bO(null,B.j0,null,1,this)}, -aM(a){var s,r=this -r.b2(a) -if(r.a.d!==a.d){r.f=0 -r.e=null -s=r.d -s===$&&A.c() -s.bW(0) -r.d.dU(r.gzW())}}, -n(){var s=this.d -s===$&&A.c() -s.n() -this.a5l()}, -Po(a){var s,r=null,q=this.c -q.toString -s=B.fp.cE(q) -return A.v5(A.km(A.kp(r,r,r,a?new A.XN(s,!0,r):new A.a_k(s,!1,r),B.P9),r,0),!0,r)}, -G(a){var s,r,q,p,o,n=this,m=null,l=n.a,k=l.c,j=l.e,i=n.d -i===$&&A.c() -s=n.f -r=A.aHL(n.Po(!0),n.gacz()) -q=B.Ex.cE(a) -p=A.bD(a,B.bP,t.w).w -o=A.aHL(n.Po(!1),n.gacb()) -return l.auB(a,k,j,A.iI(!1,A.aHc(A.hF(m,new A.Ge(r,n.a.d,q,1/p.b,o,s,n.r),B.a1,!1,m,m,m,m,n.gafA(),m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,!1,B.aP),B.cc,B.j0),i))}} -A.asP.prototype={ -$0(){var s=this.a,r=s.e -r.toString -s.f=r -s.e=null}, -$S:0} -A.XN.prototype={} -A.a_k.prototype={} -A.VJ.prototype={ -ap(a,b){var s,r,q,p,o=b.b,n=this.c,m=n?1:-1,l=new A.k(o/4*m,0) -m=o/2 -s=new A.k(m,0).Y(0,l) -r=new A.k(n?0:o,m).Y(0,l) -q=new A.k(m,o).Y(0,l) -p=$.ad().b1() -p.saf(0,this.b) -p.sbC(0,B.Q) -p.seP(2) -p.stq(B.ze) -p.sEo(B.zf) -a.hD(s,r,p) -a.hD(r,q,p)}, -eE(a){return!a.b.j(0,this.b)||a.c!==this.c}} -A.Ge.prototype={ -aD(a){var s=new A.tA(A.m(t.TC,t.x),this.w,this.e,this.f,0,null,null,A.af(t.T)) -s.aC() -return s}, -aH(a,b){b.sat_(0,this.w) -b.saol(this.e) -b.saom(this.f)}, -bN(a){var s=t.v -return new A.VR(A.m(t.TC,s),A.d5(s),this,B.R)}} -A.VR.prototype={ -ga_(){return t.l0.a(A.b9.prototype.ga_.call(this))}, -Uj(a,b){var s -switch(b.a){case 0:s=t.l0.a(A.b9.prototype.ga_.call(this)) -s.au=s.U2(s.au,a,B.l9) -break -case 1:s=t.l0.a(A.b9.prototype.ga_.call(this)) -s.aY=s.U2(s.aY,a,B.la) -break}}, -ih(a,b){var s,r -if(b instanceof A.to){this.Uj(t.x.a(a),b) -return}if(b instanceof A.o1){s=t.l0.a(A.b9.prototype.ga_.call(this)) -t.x.a(a) -r=b.a -r=r==null?null:r.ga_() -t.Qv.a(r) -s.h0(a) -s.GC(a,r) -return}}, -il(a,b,c){t.l0.a(A.b9.prototype.ga_.call(this)).wy(t.x.a(a),t.Qv.a(c.a.ga_()))}, -ja(a,b){var s -if(b instanceof A.to){this.Uj(null,b) -return}s=t.l0.a(A.b9.prototype.ga_.call(this)) -t.x.a(a) -s.Hm(a) -s.jF(a)}, -b3(a){var s,r,q,p,o=this.p2 -o.gaR(o).N(0,a) -o=this.p1 -o===$&&A.c() -s=o.length -r=this.p3 -q=0 -for(;q0){q=k.aY.b -q.toString -m=t.b -m.a(q) -l=k.au.b -l.toString -m.a(l) -if(k.ar!==s){q.a=new A.k(p.aI(),0) -q.e=!0 -s=p.aI() -q=k.aY -p.b=s+q.gq(q).a}s=k.ar -q=s>0 -if(q){l.a=B.e -l.e=!0}k.R=s!==j.b -k.a1=q}else p.b=p.aI()-k.aJ -k.id=r.a(A.t.prototype.ga2.call(k)).aX(new A.Q(p.aI(),o.Hj()))}, -ap(a,b){this.b3(new A.awb(this,b,a))}, -e7(a){if(!(a.b instanceof A.fL))a.b=new A.fL(null,null,B.e)}, -co(a,b){var s,r,q=this.d7$ -for(s=t.b;q!=null;){r=q.b -r.toString -s.a(r) -if(!r.e){q=r.cn$ -continue}if(A.aEB(q,a,b))return!0 -q=r.cn$}if(A.aEB(this.au,a,b))return!0 -if(A.aEB(this.aY,a,b))return!0 -return!1}, -ai(a){var s,r,q -this.a5w(a) -for(s=this.B,s=s.gaR(s),r=A.p(s),r=r.i("@<1>").a5(r.z[1]),s=new A.bP(J.as(s.a),s.b,r.i("bP<1,2>")),r=r.z[1];s.u();){q=s.a;(q==null?r.a(q):q).ai(a)}}, -aa(a){var s,r,q -this.a5x(0) -for(s=this.B,s=s.gaR(s),r=A.p(s),r=r.i("@<1>").a5(r.z[1]),s=new A.bP(J.as(s.a),s.b,r.i("bP<1,2>")),r=r.z[1];s.u();){q=s.a;(q==null?r.a(q):q).aa(0)}}, -fp(){this.b3(new A.awe(this))}, -b3(a){var s=this.au -if(s!=null)a.$1(s) -s=this.aY -if(s!=null)a.$1(s) -this.y5(a)}, -fu(a){this.b3(new A.awf(a))}} -A.awc.prototype={ -$0(){return 0}, -$S:52} -A.awd.prototype={ -$1(a){var s,r,q,p,o,n,m=this,l=m.a,k=++l.c -t.x.a(a) -s=a.b -s.toString -t.b.a(s) -s.e=!1 -r=m.b -if(a===r.au||a===r.aY||l.b>r.ar)return -if(l.b===0)if(k===r.dG$+1)q=0 -else{k=r.aY -q=k.gq(k).a}else q=m.c -k=l.b===0?t.k.a(A.t.prototype.ga2.call(r)).b:m.d.aI() -p=t.k -a.bz(A.pX(new A.Q(k-q,p.a(A.t.prototype.ga2.call(r)).d)),!0) -k=m.e -k.b=a.gq(a).b>k.Hj()?a.gq(a).b:k.Hj() -if(l.a+q+a.gq(a).a>p.a(A.t.prototype.ga2.call(r)).b){++l.b -k=r.au -l.a=k.gq(k).a+r.aJ -k=r.au -k=k.gq(k) -o=r.aY -o=o.gq(o) -a.bz(A.pX(new A.Q(m.d.aI()-(k.a+o.a),p.a(A.t.prototype.ga2.call(r)).d)),!0)}k=l.a -s.a=new A.k(k,0) -n=k+(a.gq(a).a+r.aJ) -l.a=n -k=l.b -s.e=k===r.ar -if(k===0){k=r.aY -m.d.b=n+k.gq(k).a}if(l.b===r.ar)m.f.b=l.a}, -$S:13} -A.awb.prototype={ -$1(a){var s,r,q,p,o,n=this -t.x.a(a) -s=a.b -s.toString -t.b.a(s) -if(s.e){r=s.a.Y(0,n.b) -q=n.c -q.dc(a,r) -if(s.ab$!=null||a===n.a.au){s=q.gbU(q) -q=new A.k(a.gq(a).a,0).Y(0,r) -p=new A.k(a.gq(a).a,a.gq(a).b).Y(0,r) -o=$.ad().b1() -o.saf(0,n.a.az) -s.hD(q,p,o)}}}, -$S:13} -A.awa.prototype={ -$2(a,b){return this.c.c2(a,b)}, -$S:9} -A.awe.prototype={ -$1(a){this.a.kU(t.x.a(a))}, -$S:13} -A.awf.prototype={ -$1(a){var s -t.x.a(a) -s=a.b -s.toString -if(t.b.a(s).e)this.a.$1(a)}, -$S:13} -A.to.prototype={ -I(){return"_CupertinoTextSelectionToolbarItemsSlot."+this.b}} -A.YC.prototype={} -A.YD.prototype={ -bN(a){return A.U(A.cu(null))}} -A.JH.prototype={ -bY(){this.cR() -this.cA() -this.ep()}, -n(){var s=this,r=s.aZ$ -if(r!=null)r.H(0,s.ge8()) -s.aZ$=null -s.aP()}} -A.JU.prototype={ -ai(a){var s,r,q -this.dD(a) -s=this.a3$ -for(r=t.b;s!=null;){s.ai(a) -q=s.b -q.toString -s=r.a(q).ab$}}, -aa(a){var s,r,q -this.dE(0) -s=this.a3$ -for(r=t.b;s!=null;){s.aa(0) -q=s.b -q.toString -s=r.a(q).ab$}}} -A.a2l.prototype={} -A.nE.prototype={ -ae(){return new A.Gb(B.i)}} -A.Gb.prototype={ -afW(a){this.ao(new A.asN(this))}, -afY(a){var s -this.ao(new A.asO(this)) -s=this.a.d -if(s!=null)s.$0()}, -afU(){this.ao(new A.asM(this))}, -G(a){var s=this,r=null,q=s.aah(a),p=s.d?B.Eq.cE(a):B.C,o=s.a.d,n=A.aHH(B.a0,r,q,p,B.C,44,o,B.Fg,1) -if(o!=null)return A.hF(r,n,B.a1,!1,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,s.gafT(),s.gafV(),s.gafX(),!1,B.aP) -else return n}, -aah(a){var s,r=null,q=this.a,p=q.c -if(p!=null)return p -p=q.f -if(p==null){q=q.e -q.toString -q=A.aHM(a,q)}else q=p -s=A.dQ(q,r,B.aZ,r,B.Tc.cH(this.a.d!=null?B.fp.cE(a):B.bU),r,r) -q=this.a.e -if(q==null)return s -switch(q.b.a){case 0:case 1:case 2:case 3:case 4:case 6:return s -case 5:q=B.fp.cE(a) -p=$.ad().b1() -p.stq(B.ze) -p.sEo(B.zf) -p.seP(1) -p.sbC(0,B.Q) -return A.cz(A.kp(r,r,r,new A.XY(q,p,r),B.o),13,13)}}} -A.asN.prototype={ -$0(){return this.a.d=!0}, -$S:0} -A.asO.prototype={ -$0(){return this.a.d=!1}, -$S:0} -A.asM.prototype={ -$0(){return this.a.d=!1}, -$S:0} -A.XY.prototype={ -ap(a,b){var s,r,q,p,o,n=this.c -n.saf(0,this.b) -a.cQ(0) -s=b.a -r=b.b -a.aK(0,s/2,r/2) -s=-s/2 -r=-r/2 -q=$.ad().c_() -q.eh(0,s,r+3.5) -q.cc(0,s,r+1) -q.Va(new A.k(s+1,r),B.dp) -q.cc(0,s+3.5,r) -s=new Float64Array(16) -p=new A.b6(s) -p.e6() -p.Dq(1.5707963267948966) -for(o=0;o<4;++o){a.cY(q,n) -a.a7(0,s)}a.hD(B.MA,B.Mc,n) -a.hD(B.My,B.Mb,n) -a.hD(B.Mz,B.M8,n) -a.cl(0)}, -eE(a){return!a.b.j(0,this.b)}} -A.qf.prototype={ -gcd(){var s=this.c,r=this.a.a -s=B.fq.j(0,r)?B.zD:B.zD.cH(r) -return s}, -gLJ(){var s=this.e,r=this.a.b -s=B.bU.j(0,r)?B.zH:B.zH.cH(r) -return s}, -cE(a){var s=this,r=s.a,q=r.a,p=q instanceof A.cs?q.cE(a):q,o=r.b -if(o instanceof A.cs)o=o.cE(a) -r=p.j(0,q)&&o.j(0,B.bU)?r:new A.IZ(p,o) -return new A.qf(r,A.ur(s.b,a),A.tH(s.c,a),A.tH(s.d,a),A.tH(s.e,a),A.tH(s.f,a),A.tH(s.r,a),A.tH(s.w,a),A.tH(s.x,a),A.tH(s.y,a))}, -j(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.Y(b)!==A.u(r))return!1 -if(b instanceof A.qf)if(b.a.j(0,r.a))if(J.e(b.b,r.b))s=!0 -else s=!1 -else s=!1 -else s=!1 -return s}, -gA(a){var s=this -return A.T(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.IZ.prototype={ -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.Y(b)!==A.u(s))return!1 -return b instanceof A.IZ&&b.a.j(0,s.a)&&b.b.j(0,s.b)}, -gA(a){return A.T(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.VT.prototype={} -A.Mp.prototype={ -G(a){var s=null -return new A.GV(this,A.v3(this.d,A.aHI(this.c.gey(),s,s,s,s,s,s,s),s),s)}} -A.GV.prototype={ -cP(a){return!this.f.c.j(0,a.f.c)}} -A.uu.prototype={ -gey(){var s=this.b -return s==null?this.w.b:s}, -gn7(){var s=this.c -return s==null?this.w.c:s}, -gcO(){var s=null,r=this.d -if(r==null){r=this.w.r -r=new A.asU(r.a,r.b,B.Xl,this.gey(),s,s,s,s,s,s,s,s)}return r}, -go3(){var s=this.e -return s==null?this.w.d:s}, -gm_(){var s=this.f -return s==null?this.w.e:s}, -gqg(){var s=this.r -return s==null?!1:s}, -cE(a){var s,r=this,q=new A.a6K(a),p=r.gh2(),o=q.$1(r.b),n=q.$1(r.c),m=r.d -m=m==null?null:m.cE(a) -s=q.$1(r.e) -q=q.$1(r.f) -r.gqg() -return A.aWM(p,o,n,m,s,q,!1,r.w.atZ(a,r.d==null))}, -j(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.Y(b)!==A.u(r))return!1 -if(b instanceof A.uu)if(b.gh2()==r.gh2())if(b.gey().j(0,r.gey()))if(b.gn7().j(0,r.gn7()))if(b.gcO().j(0,r.gcO()))if(b.go3().j(0,r.go3()))if(b.gm_().j(0,r.gm_())){b.gqg() -r.gqg() -s=!0}else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -return s}, -gA(a){var s=this,r=s.gh2(),q=s.gey(),p=s.gn7(),o=s.gcO(),n=s.go3(),m=s.gm_() -s.gqg() -return A.T(r,q,p,o,n,m,!1,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.a6K.prototype={ -$1(a){return A.ur(a,this.a)}, -$S:158} -A.Ci.prototype={ -cE(a){var s=this,r=new A.agQ(a),q=s.gh2(),p=r.$1(s.gey()),o=r.$1(s.gn7()),n=s.gcO() -n=n==null?null:n.cE(a) -return new A.Ci(q,p,o,n,r.$1(s.go3()),r.$1(s.gm_()),s.gqg())}, -gh2(){return this.a}, -gey(){return this.b}, -gn7(){return this.c}, -gcO(){return this.d}, -go3(){return this.e}, -gm_(){return this.f}, -gqg(){return this.r}} -A.agQ.prototype={ -$1(a){return A.ur(a,this.a)}, -$S:158} -A.VW.prototype={ -atZ(a,b){var s,r,q=this,p=new A.asQ(a),o=p.$1(q.b),n=p.$1(q.c),m=p.$1(q.d) -p=p.$1(q.e) -s=q.r -if(b){r=s.a -if(r instanceof A.cs)r=r.cE(a) -s=s.b -s=new A.VU(r,s instanceof A.cs?s.cE(a):s)}return new A.VW(q.a,o,n,m,p,!1,s)}} -A.asQ.prototype={ -$1(a){return a instanceof A.cs?a.cE(this.a):a}, -$S:102} -A.VU.prototype={} -A.asU.prototype={ -gcd(){return A.qf.prototype.gcd.call(this).cH(this.z)}, -gLJ(){return A.qf.prototype.gLJ.call(this).cH(this.Q)}} -A.VV.prototype={} -A.Mq.prototype={ -ap(a,b){var s,r,q,p,o,n=b.gfe()/2,m=A.iQ(b,new A.bc(n,n)) -for(n=this.b,s=0;s<2;++s){r=n[s] -q=m.cz(r.b) -p=$.ad().b1() -p.saf(0,r.a) -o=r.c -o=o>0?o*0.57735+0.5:0 -p.sCw(new A.r6(r.e,o)) -a.cC(q,p)}n=m.cV(0.5) -q=$.ad() -o=q.b1() -o.saf(0,B.mq) -a.cC(n,o) -q=q.b1() -q.saf(0,this.a) -a.cC(m,q)}} -A.aAq.prototype={ -$0(){return null}, -$S:226} -A.azF.prototype={ -$0(){var s,r=globalThis.window.navigator.platform -if(r==null)r=null -s=r==null?null:r.toLowerCase() -if(s==null)s="" -if(B.c.bJ(s,"mac"))return B.c3 -if(B.c.bJ(s,"win"))return B.dv -if(B.c.t(s,"iphone")||B.c.t(s,"ipad")||B.c.t(s,"ipod"))return B.aL -if(B.c.t(s,"android"))return B.aY -r=globalThis.window -if(r.matchMedia("only screen and (pointer: fine)").matches)return B.du -return B.aY}, -$S:189} -A.pe.prototype={ -xd(a,b){var s=A.hB.prototype.gl.call(this,this) -s.toString -return J.aH_(s)}, -k(a){return this.xd(a,B.aO)}} -A.uK.prototype={} -A.Ni.prototype={} -A.Ng.prototype={} -A.bH.prototype={ -aoJ(){var s,r,q,p,o,n,m,l=this.a -if(t.vp.b(l)){s=l.gww(l) -r=l.k(0) -if(typeof s=="string"&&s!==r){q=r.length -p=J.X(s) -if(q>p.gp(s)){o=B.c.oG(r,s) -if(o===q-p.gp(s)&&o>2&&B.c.S(r,o-2,o)===": "){n=B.c.S(r,0,o-2) -m=B.c.d9(n," Failed assertion:") -if(m>=0)n=B.c.S(n,0,m)+"\n"+B.c.bK(n,m+1) -l=p.lT(s)+"\n"+n}else l=null}else l=null}else l=null -if(l==null)l=r}else if(!(typeof l=="string"))l=t.Lt.b(l)||t.VI.b(l)?J.di(l):" "+A.j(l) -l=B.c.lT(l) -return l.length===0?" ":l}, -ga1C(){return A.aX4(new A.aa8(this).$0(),!0,B.iZ)}, -df(){return"Exception caught by "+this.c}, -k(a){A.b1y(null,B.EN,this) -return""}} -A.aa8.prototype={ -$0(){return J.aVM(this.a.aoJ().split("\n")[0])}, -$S:32} -A.m5.prototype={ -gww(a){return this.k(0)}, -df(){return"FlutterError"}, -k(a){var s,r,q=new A.hr(this.a,t.ow) -if(!q.ga8(q)){s=q.gM(q) -r=J.bh(s) -s=A.hB.prototype.gl.call(r,s) -s.toString -s=J.aH_(s)}else s="FlutterError" -return s}, -$ipQ:1} -A.aa9.prototype={ -$1(a){return A.bu(a)}, -$S:231} -A.aaa.prototype={ -$1(a){return a+1}, -$S:82} -A.aab.prototype={ -$1(a){return a+1}, -$S:82} -A.aAQ.prototype={ -$1(a){return B.c.t(a,"StackTrace.current")||B.c.t(a,"dart-sdk/lib/_internal")||B.c.t(a,"dart:sdk_internal")}, -$S:23} -A.WT.prototype={} -A.WV.prototype={} -A.WU.prototype={} -A.Lp.prototype={ -a5R(){var s,r,q,p,o,n,m,l=this -l.a58() -$.av=l -s=t.v -r=A.d5(s) -q=A.b([],t.lX) -p=t.S -o=new A.Xb(new A.v0(A.kM(null,null,t.Su,p),t.op)) -n=A.aah(!0,"Root Focus Scope",!1) -m=new A.AT(o,n,A.aE(t.mx),A.b([],t.OM),$.aO()) -n.w=m -n=$.fH.aA$ -n===$&&A.c() -n.a=o.gXw() -$.h5.aG$.b.m(0,o.gXx(),null) -s=new A.a5m(new A.Xp(r),q,m,A.m(t.yi,s)) -l.ah$=s -s.a=l.gaaX() -s=$.bi() -s.fr=l.gapC() -s.fx=$.ai -B.hc.nw(l.gac9()) -s=new A.MC(A.m(p,t.qa),B.ut) -B.ut.nw(s.gaeU()) -l.fR$=s -l.a59() -s=t.N -A.b6E("Flutter.FrameworkInitialization",A.m(s,s),"Extension")}, -ig(){}, -oA(){}, -arS(a){var s,r=A.aLi() -r.y_(0,"Lock events");++this.c -s=a.$0() -s.fY(new A.a50(this,r)) -return s}, -M1(){}, -k(a){return""}} -A.a50.prototype={ -$0(){var s,r,q,p=this.a -if(--p.c<=0){this.b.Xb(0) -try{p.a50() -if(p.id$.c!==0)p.PR()}catch(q){s=A.a6(q) -r=A.aJ(q) -p=A.bu("while handling pending events") -A.cY(new A.bH(s,r,"foundation",p,null,!1))}}}, -$S:16} -A.aa.prototype={} -A.aH.prototype={ -U(a,b){var s,r,q,p,o=this -if(o.gdw(o)===o.gcG().length){s=t.Nw -if(o.gdw(o)===0)o.scG(A.aT(1,null,!1,s)) -else{r=A.aT(o.gcG().length*2,null,!1,s) -for(q=0;q0){r.gcG()[s]=null -r.siJ(r.giJ()+1)}else r.zy(s) -break}}, -n(){this.scG($.aO()) -this.sdw(0,0)}, -T(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f=this -if(f.gdw(f)===0)return -f.shZ(f.ghZ()+1) -p=f.gdw(f) -for(s=0;s0){l=f.gdw(f)-f.giJ() -if(l*2<=f.gcG().length){k=A.aT(l,null,!1,t.Nw) -for(j=0,s=0;s#"+A.aV(this)+"("+A.j(this.a)+")"}} -A.Af.prototype={ -I(){return"DiagnosticLevel."+this.b}} -A.ku.prototype={ -I(){return"DiagnosticsTreeStyle."+this.b}} -A.avF.prototype={} -A.eY.prototype={ -xd(a,b){return this.cu(0)}, -k(a){return this.xd(a,B.aO)}} -A.hB.prototype={ -gl(a){this.aeQ() -return this.at}, -aeQ(){return}} -A.qk.prototype={} -A.ML.prototype={} -A.ag.prototype={ -df(){return"#"+A.aV(this)}, -xd(a,b){var s=this.df() -return s}, -k(a){return this.xd(a,B.aO)}} -A.MK.prototype={ -df(){return"#"+A.aV(this)}} -A.ks.prototype={ -k(a){return this.a_9(B.iZ).cu(0)}, -df(){return"#"+A.aV(this)}, -aun(a,b){return A.aCN(a,b,this)}, -a_9(a){return this.aun(null,a)}} -A.MM.prototype={} -A.Wd.prototype={} -A.h8.prototype={} -A.mk.prototype={} -A.mP.prototype={ -k(a){return"[#"+A.aV(this)+"]"}} -A.et.prototype={ -j(a,b){if(b==null)return!1 -if(J.Y(b)!==A.u(this))return!1 -return A.p(this).i("et").b(b)&&J.e(b.a,this.a)}, -gA(a){return A.T(A.u(this),this.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){var s=A.p(this),r=s.i("et.T"),q=this.a,p=A.cG(r)===B.Vj?"<'"+A.j(q)+"'>":"<"+A.j(q)+">" -if(A.u(this)===A.cG(s.i("et")))return"["+p+"]" -return"["+A.cG(r).k(0)+" "+p+"]"}} -A.aEG.prototype={} -A.iM.prototype={} -A.BA.prototype={} -A.b7.prototype={ -gzm(){var s,r=this,q=r.c -if(q===$){s=A.d5(r.$ti.c) -r.c!==$&&A.aW() -r.c=s -q=s}return q}, -F(a,b){this.b=!0 -this.gzm().a0(0) -return B.b.F(this.a,b)}, -a0(a){this.b=!1 -B.b.a0(this.a) -this.gzm().a0(0)}, -t(a,b){var s=this,r=s.a -if(r.length<3)return B.b.t(r,b) -if(s.b){s.gzm().K(0,r) -s.b=!1}return s.gzm().t(0,b)}, -ga9(a){var s=this.a -return new J.dj(s,s.length,A.W(s).i("dj<1>"))}, -ga8(a){return this.a.length===0}, -gc3(a){return this.a.length!==0}, -fs(a,b){var s=this.a -s=J.o5(s.slice(0),A.W(s).c) -return s}} -A.v0.prototype={ -E(a,b){var s=this.a,r=s.h(0,b) -s.m(0,b,(r==null?0:r)+1)}, -F(a,b){var s=this.a,r=s.h(0,b) -if(r==null)return!1 -if(r===1)s.F(0,b) -else s.m(0,b,r-1) -return!0}, -t(a,b){return this.a.ak(0,b)}, -ga9(a){var s=this.a -return A.fh(s,s.r,A.p(s).c)}, -ga8(a){return this.a.a===0}, -gc3(a){return this.a.a!==0}} -A.vR.prototype={ -ats(a,b,c){var s=this.a,r=s==null?$.Kv():s,q=r.kT(0,0,b,A.fi(b),c) -if(q===s)return this -s=this.$ti -return new A.vR(q,s.i("@<1>").a5(s.z[1]).i("vR<1,2>"))}, -h(a,b){var s=this.a -if(s==null)return null -return s.rU(0,0,b,J.C(b))}} -A.az4.prototype={} -A.X2.prototype={ -kT(a,b,c,d,e){var s,r,q,p,o=B.h.q5(d,b)&31,n=this.a,m=n[o] -if(m==null)m=$.Kv() -s=m.kT(0,b+5,c,d,e) -if(s===m)n=this -else{r=n.length -q=A.aT(r,null,!1,t.X) -for(p=0;p>>0,a1=c.a,a2=(a1&a0-1)>>>0,a3=a2-(a2>>>1&1431655765) -a3=(a3&858993459)+(a3>>>2&858993459) -a3=a3+(a3>>>4)&252645135 -a3+=a3>>>8 -s=a3+(a3>>>16)&63 -if((a1&a0)>>>0!==0){a=c.b -a2=2*s -r=a[a2] -q=a2+1 -p=a[q] -if(r==null){o=J.aVs(p,a5+5,a6,a7,a8) -if(o===p)return c -a2=a.length -n=A.aT(a2,b,!1,t.X) -for(m=0;m>>1&1431655765) -a3=(a3&858993459)+(a3>>>2&858993459) -a3=a3+(a3>>>4)&252645135 -a3+=a3>>>8 -i=a3+(a3>>>16)&63 -if(i>=16){a1=c.adT(a5) -a1.a[a]=$.Kv().kT(0,a5+5,a6,a7,a8) -return a1}else{h=2*s -g=2*i -f=A.aT(g+2,b,!1,t.X) -for(a=c.b,e=0;e>>0,f)}}}, -rU(a,b,c,d){var s,r,q,p,o=1<<(B.h.q5(d,b)&31)>>>0,n=this.a -if((n&o)>>>0===0)return null -n=(n&o-1)>>>0 -s=n-(n>>>1&1431655765) -s=(s&858993459)+(s>>>2&858993459) -s=s+(s>>>4)&252645135 -s+=s>>>8 -n=this.b -r=2*(s+(s>>>16)&63) -q=n[r] -p=n[r+1] -if(q==null)return p.rU(0,b+5,c,d) -if(c===q)return p -return null}, -adT(a){var s,r,q,p,o,n,m,l=A.aT(32,null,!1,t.X) -for(s=this.a,r=a+5,q=this.b,p=0,o=0;o<32;++o)if((B.h.q5(s,o)&1)!==0){n=q[p] -m=p+1 -if(n==null)l[o]=q[m] -else l[o]=$.Kv().kT(0,r,n,J.C(n),q[m]) -p+=2}return new A.X2(l)}} -A.GQ.prototype={ -kT(a,b,c,d,e){var s,r,q,p,o,n,m,l,k,j=this,i=j.a -if(d===i){s=j.R0(c) -if(s!==-1){i=j.b -r=s+1 -q=i[r] -if(q==null?e==null:q===e)i=j -else{q=i.length -p=A.aT(q,null,!1,t.X) -for(o=0;o>>0,k).kT(0,b,c,d,e)}, -rU(a,b,c,d){var s=this.R0(c) -return s<0?null:this.b[s+1]}, -R0(a){var s,r,q=this.b,p=q.length -for(s=J.kd(a),r=0;r=s.a.length)s.Hr(q) -B.P.dh(s.a,s.b,q,a) -s.b+=r}, -ut(a,b,c){var s=this,r=c==null?s.e.length:c,q=s.b+(r-b) -if(q>=s.a.length)s.Hr(q) -B.P.dh(s.a,s.b,q,a) -s.b=q}, -aiJ(a){return this.ut(a,0,null)}, -Hr(a){var s=this.a,r=s.length,q=a==null?0:a,p=Math.max(q,r*2),o=new Uint8Array(p) -B.P.dh(o,0,r,s) -this.a=o}, -ahN(){return this.Hr(null)}, -ki(a){var s=B.h.cF(this.b,a) -if(s!==0)this.ut($.aQd(),0,a-s)}, -mC(){var s,r=this -if(r.c)throw A.d(A.a4("done() must not be called more than once on the same "+A.u(r).k(0)+".")) -s=A.rh(r.a.buffer,0,r.b) -r.a=new Uint8Array(0) -r.c=!0 -return s}} -A.D3.prototype={ -pe(a){return this.a.getUint8(this.b++)}, -DT(a){var s=this.b,r=$.eg() -B.h9.Mk(this.a,s,r)}, -pf(a){var s=this.a,r=A.dm(s.buffer,s.byteOffset+this.b,a) -this.b+=a -return r}, -DU(a){var s -this.ki(8) -s=this.a -B.k0.Vb(s.buffer,s.byteOffset+this.b,a)}, -ki(a){var s=this.b,r=B.h.cF(s,a) -if(r!==0)this.b=s+(a-r)}} -A.jU.prototype={ -gA(a){var s=this -return A.T(s.b,s.d,s.f,s.r,s.w,s.x,s.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -j(a,b){var s=this -if(b==null)return!1 -if(J.Y(b)!==A.u(s))return!1 -return b instanceof A.jU&&b.b===s.b&&b.d===s.d&&b.f===s.f&&b.r===s.r&&b.w===s.w&&b.x===s.x&&b.a===s.a}, -k(a){var s=this -return"StackFrame(#"+s.b+", "+s.c+":"+s.d+"/"+s.e+":"+s.f+":"+s.r+", className: "+s.w+", method: "+s.x+")"}} -A.ams.prototype={ -$1(a){return a.length!==0}, -$S:23} -A.cW.prototype={ -o5(a,b){return new A.ae($.ai,this.$ti.i("ae<1>"))}, -kq(a){return this.o5(a,null)}, -hj(a,b,c,d){var s=b.$1(this.a) -if(d.i("at<0>").b(s))return s -return new A.cW(s,d.i("cW<0>"))}, -bQ(a,b,c){return this.hj(a,b,null,c)}, -fY(a){var s,r,q,p,o,n=this -try{s=a.$0() -if(t.L0.b(s)){p=J.aCn(s,new A.anI(n),n.$ti.c) -return p}return n}catch(o){r=A.a6(o) -q=A.aJ(o) -p=A.aDf(r,q,n.$ti.c) -return p}}, -$iat:1} -A.anI.prototype={ -$1(a){return this.a.a}, -$S(){return this.a.$ti.i("1(@)")}} -A.NX.prototype={ -I(){return"GestureDisposition."+this.b}} -A.du.prototype={} -A.NV.prototype={} -A.xR.prototype={ -k(a){var s=this,r=s.a -r=r.length===0?""+"":""+new A.a1(r,new A.atZ(s),A.W(r).i("a1<1,n>")).bH(0,", ") -if(s.b)r+=" [open]" -if(s.c)r+=" [held]" -if(s.d)r+=" [hasPendingSweep]" -return r.charCodeAt(0)==0?r:r}} -A.atZ.prototype={ -$1(a){if(a===this.a.e)return a.k(0)+" (eager winner)" -return a.k(0)}, -$S:235} -A.aaU.prototype={ -UP(a,b,c){this.a.bT(0,b,new A.aaW(this,b)).a.push(c) -return new A.NV(this,b,c)}, -amR(a,b){var s=this.a.h(0,b) -if(s==null)return -s.b=!1 -this.TT(b,s)}, -O9(a){var s,r=this.a,q=r.h(0,a) -if(q==null)return -if(q.c){q.d=!0 -return}r.F(0,a) -r=q.a -if(r.length!==0){B.b.gM(r).iO(a) -for(s=1;s").a5(q.z[1]),r=new A.bP(J.as(r.a),r.b,q.i("bP<1,2>")),p=n.r,q=q.z[1];r.u();){o=r.a;(o==null?q.a(o):o).avi(0,p)}s.a0(0) -n.c=B.q -s=n.y -if(s!=null)s.bb(0)}} -A.v_.prototype={ -acl(a){var s,r,q,p,o=this -try{o.al$.K(0,A.aZR(a.a,o.ga8O())) -if(o.c<=0)o.G1()}catch(q){s=A.a6(q) -r=A.aJ(q) -p=A.bu("while handling a pointer data packet") -A.cY(new A.bH(s,r,"gestures library",p,null,!1))}}, -a8P(a){var s=$.bi().d.h(0,a) -if(s==null)s=null -else{s=s.x -if(s==null){s=self.window.devicePixelRatio -if(s===0)s=1}}return s}, -amw(a){var s=this.al$ -if(s.b===s.c&&this.c<=0)A.ey(this.ga9Y()) -s.As(A.aK2(0,0,0,0,0,B.ao,!1,0,a,B.e,1,1,0,0,0,0,0,0,B.q,0))}, -G1(){for(var s=this.al$;!s.ga8(s);)this.Kf(s.wZ())}, -Kf(a){this.gSq().ff(0) -this.QQ(a)}, -QQ(a){var s,r,q,p,o=this,n=!t.pY.b(a) -if(!n||t.ks.b(a)||t.XA.b(a)||t.w5.b(a)){s=A.acH() -r=a.gbv(a) -q=a.grO() -p=o.au$ -p===$&&A.c() -p.e.c2(s,r) -o.Ey(s,r,q) -if(!n||t.w5.b(a))o.bk$.m(0,a.gbh(),s) -n=s}else if(t.oN.b(a)||t.Ko.b(a)||t.WQ.b(a)){s=o.bk$.F(0,a.gbh()) -n=s}else n=a.gBo()||t.DB.b(a)?o.bk$.h(0,a.gbh()):null -if(n!=null||t.ge.b(a)||t.PB.b(a)){r=o.aJ$ -r.toString -r.auT(a,t.n2.b(a)?null:n) -o.a27(0,a,n)}}, -aqx(a,b,c){a.E(0,new A.ib(this,t.AL))}, -aoj(a,b,c){var s,r,q,p,o,n,m,l,k,j,i="gesture library" -if(c==null){try{this.aG$.a_3(b)}catch(p){s=A.a6(p) -r=A.aJ(p) -A.cY(A.aYc(A.bu("while dispatching a non-hit-tested pointer event"),b,s,null,new A.aaX(b),i,r))}return}for(n=c.a,m=n.length,l=0;l0.4){r.dy=B.hY -r.P(B.bt)}else if(a.gqC().gqJ()>A.pC(a.gcp(a),r.b))r.P(B.ac) -if(s>0.4&&r.dy===B.A6){r.dy=B.hY -if(r.at!=null)r.cw("onStart",new A.aaF(r,s))}}r.y3(a)}, -iO(a){var s=this,r=s.dy -if(r===B.hX)r=s.dy=B.A6 -if(s.at!=null&&r===B.hY)s.cw("onStart",new A.aaD(s))}, -qH(a){var s=this,r=s.dy,q=r===B.hY||r===B.Wx -if(r===B.hX){s.P(B.ac) -return}if(q&&s.ch!=null)if(s.ch!=null)s.cw("onEnd",new A.aaE(s)) -s.dy=B.ld}, -ir(a){this.iA(a) -this.qH(a)}} -A.aaF.prototype={ -$0(){var s=this.a,r=s.at -r.toString -s=s.db -s===$&&A.c() -return r.$1(new A.qE(s.b))}, -$S:0} -A.aaD.prototype={ -$0(){var s=this.a,r=s.at -r.toString -s.dx===$&&A.c() -s=s.db -s===$&&A.c() -return r.$1(new A.qE(s.b))}, -$S:0} -A.aaE.prototype={ -$0(){var s=this.a,r=s.ch -r.toString -s=s.db -s===$&&A.c() -return r.$1(new A.qE(s.b))}, -$S:0} -A.MJ.prototype={ -gA(a){return A.T(this.a,23,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -j(a,b){if(b==null)return!1 -if(J.Y(b)!==A.u(this))return!1 -return b instanceof A.MJ&&b.a==this.a}, -k(a){return"DeviceGestureSettings(touchSlop: "+A.j(this.a)+")"}} -A.ib.prototype={ -k(a){return"#"+A.aV(this)+"("+this.a.k(0)+")"}} -A.yB.prototype={} -A.Hn.prototype={ -da(a,b){return this.a.CE(b)}} -A.yc.prototype={ -da(a,b){var s,r,q,p,o=new Float64Array(16),n=new A.b6(o) -n.aS(b) -s=this.a -r=s.a -q=s.b -s=o[0] -p=o[3] -o[0]=s+r*p -o[1]=o[1]+q*p -o[2]=o[2]+0*p -o[3]=p -p=o[4] -s=o[7] -o[4]=p+r*s -o[5]=o[5]+q*s -o[6]=o[6]+0*s -o[7]=s -s=o[8] -p=o[11] -o[8]=s+r*p -o[9]=o[9]+q*p -o[10]=o[10]+0*p -o[11]=p -p=o[12] -s=o[15] -o[12]=p+r*s -o[13]=o[13]+q*s -o[14]=o[14]+0*s -o[15]=s -return n}} -A.m9.prototype={ -aaH(){var s,r,q,p,o=this.c -if(o.length===0)return -s=this.b -r=B.b.gL(s) -for(q=o.length,p=0;p":B.b.bH(s,", "))+")"}} -A.vv.prototype={} -A.BO.prototype={} -A.vu.prototype={} -A.hL.prototype={ -ii(a){var s,r=this -switch(a.gdY(a)){case 1:if(r.p1==null&&r.p3==null&&r.p2==null&&r.p4==null&&r.RG==null&&r.R8==null)return!1 -break -case 2:s=!0 -if(s)return!1 -break -case 4:s=!0 -if(s)return!1 -break -default:return!1}return r.pv(a)}, -Jt(){var s,r=this -r.P(B.bt) -r.k2=!0 -s=r.CW -s.toString -r.NN(s) -r.a7F()}, -Xy(a){var s,r=this -if(!a.gnE()){if(t.pY.b(a)){s=new A.hq(a.gcp(a),A.aT(20,null,!1,t.av)) -r.bk=s -s.ll(a.gfV(a),a.gd_())}if(t.n2.b(a)){s=r.bk -s.toString -s.ll(a.gfV(a),a.gd_())}}if(t.oN.b(a)){if(r.k2)r.a7D(a) -else r.P(B.ac) -r.Hq()}else if(t.Ko.b(a)){r.OS() -r.Hq()}else if(t.pY.b(a)){r.k3=new A.fE(a.gd_(),a.gbv(a)) -r.k4=a.gdY(a) -r.a7C(a)}else if(t.n2.b(a))if(a.gdY(a)!==r.k4&&!r.k2){r.P(B.ac) -s=r.CW -s.toString -r.iA(s)}else if(r.k2)r.a7E(a)}, -a7C(a){this.k3.toString -this.e.h(0,a.gbh()).toString -switch(this.k4){case 1:break -case 2:break -case 4:break}}, -OS(){var s,r=this -if(r.ch===B.fG)switch(r.k4){case 1:s=r.p1 -if(s!=null)r.cw("onLongPressCancel",s) -break -case 2:break -case 4:break}}, -a7F(){var s,r,q=this -switch(q.k4){case 1:if(q.p3!=null){s=q.k3 -r=s.b -s=s.a -q.cw("onLongPressStart",new A.af4(q,new A.vv(r,s)))}s=q.p2 -if(s!=null)q.cw("onLongPress",s) -break -case 2:break -case 4:break}}, -a7E(a){var s=this,r=a.gbv(a),q=a.gd_(),p=a.gbv(a).Z(0,s.k3.b) -a.gd_().Z(0,s.k3.a) -switch(s.k4){case 1:if(s.p4!=null)s.cw("onLongPressMoveUpdate",new A.af3(s,new A.BO(r,q,p))) -break -case 2:break -case 4:break}}, -a7D(a){var s,r=this,q=r.bk.t2(),p=q==null?B.c5:new A.hV(q.a) -a.gbv(a) -s=a.gd_() -r.bk=null -switch(r.k4){case 1:if(r.RG!=null)r.cw("onLongPressEnd",new A.af2(r,new A.vu(s,p))) -s=r.R8 -if(s!=null)r.cw("onLongPressUp",s) -break -case 2:break -case 4:break}}, -Hq(){var s=this -s.k2=!1 -s.bk=s.k4=s.k3=null}, -P(a){var s=this -if(a===B.ac)if(s.k2)s.Hq() -else s.OS() -s.NH(a)}, -iO(a){}} -A.af4.prototype={ -$0(){return this.a.p3.$1(this.b)}, -$S:0} -A.af3.prototype={ -$0(){return this.a.p4.$1(this.b)}, -$S:0} -A.af2.prototype={ -$0(){return this.a.RG.$1(this.b)}, -$S:0} -A.n5.prototype={ -h(a,b){return this.c[b+this.a]}, -a6(a,b){var s,r,q,p,o,n,m -for(s=this.b,r=this.c,q=this.a,p=b.c,o=b.a,n=0,m=0;m"),q=A.vi(A.a8(new A.a1(s,new A.ahY(),r),!0,r.i("am.E")),"[","]") -r=this.b -r===$&&A.c() -return"PolynomialFit("+q+", confidence: "+B.d.ad(r,3)+")"}} -A.ahY.prototype={ -$1(a){return B.d.aut(a,3)}, -$S:242} -A.OW.prototype={ -Nf(a6){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4=this.a,a5=a4.length -if(a6>a5)return null -s=a6+1 -r=new A.ahX(new Float64Array(s)) -q=s*a5 -p=new Float64Array(q) -for(o=this.c,n=0*a5,m=0;m=0;--c){p[c]=new A.n5(c*a5,a5,q).a6(0,d) -for(i=c*s,k=l;k>c;--k)p[c]=p[c]-n[i+k]*p[k] -p[c]=p[c]/n[i+c]}for(b=0,m=0;mn&&Math.abs(a.d.b)>s))return null -q=o.dx -if(q==null)q=8000 -p=A.R(r,-q,q) -return new A.i7(new A.hV(new A.k(0,p)),p)}, -Gw(a,b){var s=this.k3 -s===$&&A.c() -return Math.abs(s)>A.pC(a,this.b)}, -u1(a){return new A.k(0,a.b)}, -u2(a){return a.b}} -A.jw.prototype={ -Fx(a,b){var s,r,q,p,o=this,n=o.db -if(n==null)n=50 -s=o.cy -if(s==null)s=A.pC(b,o.b) -r=a.a.a -if(!(Math.abs(r)>n&&Math.abs(a.d.a)>s))return null -q=o.dx -if(q==null)q=8000 -p=A.R(r,-q,q) -return new A.i7(new A.hV(new A.k(p,0)),p)}, -Gw(a,b){var s=this.k3 -s===$&&A.c() -return Math.abs(s)>A.pC(a,this.b)}, -u1(a){return new A.k(a.a,0)}, -u2(a){return a.a}} -A.jH.prototype={ -Fx(a,b){var s,r,q,p,o=this,n=o.db -if(n==null)n=50 -s=o.cy -if(s==null)s=A.pC(b,o.b) -r=a.a -if(!(r.gqJ()>n*n&&a.d.gqJ()>s*s))return null -q=o.db -if(q==null)q=50 -p=o.dx -if(p==null)p=8000 -return new A.i7(new A.hV(r).amJ(q,p),null)}, -Gw(a,b){var s=this.k3 -s===$&&A.c() -return Math.abs(s)>A.aAJ(a,this.b)}, -u1(a){return a}, -u2(a){return null}} -A.VG.prototype={ -ag_(){this.a=!0}} -A.yx.prototype={ -iA(a){if(this.r){this.r=!1 -$.h5.aG$.ZH(this.b,a)}}, -Yp(a,b){return a.gbv(a).Z(0,this.d).gcB()<=b}} -A.jt.prototype={ -ii(a){var s,r=this -if(r.y==null)if(r.r==null&&!0)return!1 -s=r.pv(a) -if(!s)r.nN() -return s}, -hw(a){var s=this,r=s.y -if(r!=null)if(!r.Yp(a,100))return -else{r=s.y -if(!r.f.a||a.gdY(a)!==r.e){s.nN() -return s.TQ(a)}}s.TQ(a)}, -TQ(a){var s,r,q,p,o,n,m=this -m.Tm() -s=$.h5.bd$.UP(0,a.gbh(),m) -r=a.gbh() -q=a.gbv(a) -p=a.gdY(a) -o=new A.VG() -A.cM(B.F6,o.gafZ()) -n=new A.yx(r,s,q,p,o) -m.z.m(0,a.gbh(),n) -o=a.gbL(a) -if(!n.r){n.r=!0 -$.h5.aG$.UZ(r,m.gzl(),o)}}, -af6(a){var s,r=this,q=r.z,p=q.h(0,a.gbh()) -p.toString -if(t.oN.b(a)){s=r.y -if(s==null){if(r.x==null)r.x=A.cM(B.bC,r.gaf7()) -s=p.b -$.h5.bd$.aqz(s) -p.iA(r.gzl()) -q.F(0,s) -r.P3() -r.y=p}else{s=s.c -s.a.uo(s.b,s.c,B.bt) -s=p.c -s.a.uo(s.b,s.c,B.bt) -p.iA(r.gzl()) -q.F(0,p.b) -q=r.r -if(q!=null)r.cw("onDoubleTap",q) -r.nN()}}else if(t.n2.b(a)){if(!p.Yp(a,18))r.um(p)}else if(t.Ko.b(a))r.um(p)}, -iO(a){}, -ir(a){var s,r=this,q=r.z.h(0,a) -if(q==null){s=r.y -s=s!=null&&s.b===a}else s=!1 -if(s)q=r.y -if(q!=null)r.um(q)}, -um(a){var s,r=this,q=r.z -q.F(0,a.b) -s=a.c -s.a.uo(s.b,s.c,B.ac) -a.iA(r.gzl()) -s=r.y -if(s!=null)if(a===s)r.nN() -else{r.ON() -if(q.a===0)r.nN()}}, -n(){this.nN() -this.Ny()}, -nN(){var s,r=this -r.Tm() -if(r.y!=null){if(r.z.a!==0)r.ON() -s=r.y -s.toString -r.y=null -r.um(s) -$.h5.bd$.atH(0,s.b)}r.P3()}, -P3(){var s=this.z -s=s.gaR(s) -B.b.N(A.a8(s,!0,A.p(s).i("q.E")),this.gahu())}, -Tm(){var s=this.x -if(s!=null){s.bb(0) -this.x=null}}, -ON(){}} -A.ahS.prototype={ -UZ(a,b,c){J.hv(this.a.bT(0,a,new A.ahU()),b,c)}, -ZH(a,b){var s,r=this.a,q=r.h(0,a) -q.toString -s=J.bR(q) -s.F(q,b) -if(s.ga8(q))r.F(0,a)}, -a8U(a,b,c){var s,r,q,p -try{b.$1(a.bA(c))}catch(q){s=A.a6(q) -r=A.aJ(q) -p=A.bu("while routing a pointer event") -A.cY(new A.bH(s,r,"gesture library",p,null,!1))}}, -a_3(a){var s=this,r=s.a.h(0,a.gbh()),q=s.b,p=t.Ld,o=t.iD,n=A.qZ(q,p,o) -if(r!=null)s.PB(a,r,A.qZ(r,p,o)) -s.PB(a,q,n)}, -PB(a,b,c){c.N(0,new A.ahT(this,b,a))}} -A.ahU.prototype={ -$0(){return A.m(t.Ld,t.iD)}, -$S:244} -A.ahT.prototype={ -$2(a,b){if(J.yV(this.b,a))this.a.a8U(this.c,a,b)}, -$S:245} -A.ahV.prototype={ -ZA(a,b,c){if(this.a!=null)return -this.b=b -this.a=c}, -P(a){var s,r,q,p,o=this,n=o.a -if(n==null)return -try{q=o.b -q.toString -n.$1(q)}catch(p){s=A.a6(p) -r=A.aJ(p) -n=A.bu("while resolving a PointerSignalEvent") -A.cY(new A.bH(s,r,"gesture library",n,null,!1))}o.b=o.a=null}} -A.MZ.prototype={ -I(){return"DragStartBehavior."+this.b}} -A.d4.prototype={ -Aq(a){}, -uL(a){var s=this -s.e.m(0,a.gbh(),a.gcp(a)) -if(s.ii(a))s.hw(a) -else s.r5(a)}, -hw(a){}, -r5(a){}, -ii(a){var s=this.c -return(s==null||s.t(0,a.gcp(a)))&&this.d.$1(a.gdY(a))}, -Yg(a){var s=this.c -return s==null||s.t(0,a.gcp(a))}, -n(){}, -Y8(a,b,c){var s,r,q,p,o=null -try{o=b.$0()}catch(q){s=A.a6(q) -r=A.aJ(q) -p=A.bu("while handling a gesture") -A.cY(new A.bH(s,r,"gesture",p,null,!1))}return o}, -cw(a,b){return this.Y8(a,b,null,t.z)}, -arb(a,b,c){return this.Y8(a,b,c,t.z)}} -A.Cp.prototype={ -hw(a){this.tm(a.gbh(),a.gbL(a))}, -r5(a){this.P(B.ac)}, -iO(a){}, -ir(a){}, -P(a){var s,r,q=this.f,p=A.a8(q.gaR(q),!0,t.SP) -q.a0(0) -for(q=p.length,s=0;s")),r=r.c;q.u();){p=q.d -if(p==null)p=r.a(p) -o=$.h5.aG$ -n=k.gmV() -o=o.a -m=o.h(0,p) -m.toString -l=J.bR(m) -l.F(m,n) -if(l.ga8(m))o.F(0,p)}s.a0(0) -k.Ny()}, -a6A(a){return $.h5.bd$.UP(0,a,this)}, -tm(a,b){var s=this -$.h5.aG$.UZ(a,s.gmV(),b) -s.r.E(0,a) -s.f.m(0,a,s.a6A(a))}, -iA(a){var s=this.r -if(s.t(0,a)){$.h5.aG$.ZH(a,this.gmV()) -s.F(0,a) -if(s.a===0)this.qH(a)}}, -y3(a){if(t.oN.b(a)||t.Ko.b(a)||t.WQ.b(a))this.iA(a.gbh())}} -A.B0.prototype={ -I(){return"GestureRecognizerState."+this.b}} -A.w3.prototype={ -hw(a){var s=this -s.tv(a) -if(s.ch===B.ci){s.ch=B.fG -s.CW=a.gbh() -s.cx=new A.fE(a.gd_(),a.gbv(a)) -s.db=A.cM(s.at,new A.ai5(s,a))}}, -r5(a){if(!this.cy)this.NG(a)}, -hb(a){var s,r,q,p=this -if(p.ch===B.fG&&a.gbh()===p.CW){if(!p.cy)s=p.Q8(a)>18 -else s=!1 -if(p.cy){r=p.ay -q=r!=null&&p.Q8(a)>r}else q=!1 -if(t.n2.b(a))r=s||q -else r=!1 -if(r){p.P(B.ac) -r=p.CW -r.toString -p.iA(r)}else p.Xy(a)}p.y3(a)}, -Jt(){}, -iO(a){if(a===this.CW){this.lk() -this.cy=!0}}, -ir(a){var s=this -if(a===s.CW&&s.ch===B.fG){s.lk() -s.ch=B.FM}}, -qH(a){var s=this -s.lk() -s.ch=B.ci -s.cx=null -s.cy=!1}, -n(){this.lk() -this.jn()}, -lk(){var s=this.db -if(s!=null){s.bb(0) -this.db=null}}, -Q8(a){return a.gbv(a).Z(0,this.cx.b).gcB()}} -A.ai5.prototype={ -$0(){this.a.Jt() -return null}, -$S:0} -A.fE.prototype={ -Y(a,b){return new A.fE(this.a.Y(0,b.a),this.b.Y(0,b.b))}, -Z(a,b){return new A.fE(this.a.Z(0,b.a),this.b.Z(0,b.b))}, -k(a){return"OffsetPair(local: "+this.a.k(0)+", global: "+this.b.k(0)+")"}} -A.X5.prototype={} -A.yo.prototype={ -I(){return"_ScaleState."+this.b}} -A.tz.prototype={ -gapa(){return this.b.Y(0,this.c)}, -ghT(a){return this.d}, -k(a){var s=this -return"_PointerPanZoomData(parent: "+s.a.k(0)+", _position: "+s.b.k(0)+", _pan: "+s.c.k(0)+", _scale: "+A.j(s.d)+", _rotation: "+s.e+")"}} -A.DE.prototype={ -k(a){return"ScaleStartDetails(focalPoint: "+this.a.k(0)+", localFocalPoint: "+this.b.k(0)+", pointersCount: "+this.c+")"}} -A.DF.prototype={ -k(a){var s=this -return"ScaleUpdateDetails(focalPoint: "+s.b.k(0)+", localFocalPoint: "+s.c.k(0)+", scale: "+A.j(s.d)+", horizontalScale: "+A.j(s.e)+", verticalScale: "+A.j(s.f)+", rotation: "+A.j(s.r)+", pointerCount: "+s.w+", focalPointDelta: "+s.a.k(0)+")"}} -A.wo.prototype={ -k(a){return"ScaleEndDetails(velocity: "+this.a.k(0)+", scaleVelocity: "+A.j(this.b)+", pointerCount: "+this.c+")"}} -A.XT.prototype={} -A.jO.prototype={ -guj(){var s,r=this.fr -r===$&&A.c() -if(r>0){s=this.fx -s===$&&A.c() -r=s/r}else r=1 -return r}, -gq0(){var s,r,q,p=this.guj() -for(s=this.R8,s=s.gaR(s),r=A.p(s),r=r.i("@<1>").a5(r.z[1]),s=new A.bP(J.as(s.a),s.b,r.i("bP<1,2>")),r=r.z[1];s.u();){q=s.a -if(q==null)q=r.a(q) -p*=q.ghT(q)/this.RG}return p}, -gadM(){var s,r,q,p=this,o=p.fy -o===$&&A.c() -if(o>0){s=p.go -s===$&&A.c() -r=s/o}else r=1 -for(o=p.R8,o=o.gaR(o),s=A.p(o),s=s.i("@<1>").a5(s.z[1]),o=new A.bP(J.as(o.a),o.b,s.i("bP<1,2>")),s=s.z[1];o.u();){q=o.a -if(q==null)q=s.a(q) -r*=q.ghT(q)/p.RG}return r}, -gala(){var s,r,q,p=this,o=p.id -o===$&&A.c() -if(o>0){s=p.k1 -s===$&&A.c() -r=s/o}else r=1 -for(o=p.R8,o=o.gaR(o),s=A.p(o),s=s.i("@<1>").a5(s.z[1]),o=new A.bP(J.as(o.a),o.b,s.i("bP<1,2>")),s=s.z[1];o.u();){q=o.a -if(q==null)q=s.a(q) -r*=q.ghT(q)/p.RG}return r}, -a8c(){var s,r,q,p,o,n=this,m=n.k3 -if(m!=null&&n.k4!=null){s=m.a -m=m.c -r=n.k4 -q=r.a -r=r.c -p=Math.atan2(s.b-m.b,s.a-m.a) -o=Math.atan2(q.b-r.b,q.a-r.a)-p}else o=0 -for(m=n.R8,m=m.gaR(m),s=A.p(m),s=s.i("@<1>").a5(s.z[1]),m=new A.bP(J.as(m.a),m.b,s.i("bP<1,2>")),s=s.z[1];m.u();){r=m.a -o+=(r==null?s.a(r):r).e}return o-n.rx}, -hw(a){var s=this -s.tv(a) -s.p2.m(0,a.gbh(),new A.hq(a.gcp(a),A.aT(20,null,!1,t.av))) -if(s.CW===B.f2){s.CW=B.f3 -s.k1=s.id=s.go=s.fy=s.fx=s.fr=0}}, -Yg(a){return!0}, -Aq(a){var s=this -s.Nx(a) -s.tm(a.gbh(),a.gbL(a)) -s.p2.m(0,a.gbh(),new A.hq(a.gcp(a),A.aT(20,null,!1,t.av))) -if(s.CW===B.f2){s.CW=B.f3 -s.RG=1 -s.rx=0}}, -hb(a){var s,r,q,p,o,n,m=this -if(t.n2.b(a)){s=m.p2.h(0,a.gbh()) -s.toString -if(!a.gnE())s.ll(a.gfV(a),a.gbv(a)) -m.ok.m(0,a.gbh(),a.gbv(a)) -m.cx=a.gbL(a) -r=!1 -q=!0}else if(t.pY.b(a)){m.ok.m(0,a.gbh(),a.gbv(a)) -m.p1.push(a.gbh()) -m.cx=a.gbL(a) -r=!0 -q=!0}else if(t.oN.b(a)||t.Ko.b(a)){m.ok.F(0,a.gbh()) -B.b.F(m.p1,a.gbh()) -m.cx=a.gbL(a) -r=!0 -q=!1}else if(t.w5.b(a)){m.R8.m(0,a.gbh(),new A.tz(m,a.gbv(a),B.e,1,0)) -m.cx=a.gbL(a) -r=!0 -q=!0}else if(t.DB.b(a)){if(!a.gnE()&&!0){s=m.p2.h(0,a.gbh()) -s.toString -s.ll(a.gfV(a),a.gwL(a))}m.R8.m(0,a.gbh(),new A.tz(m,a.gbv(a),a.gwL(a),a.ghT(a),a.ga_2())) -m.cx=a.gbL(a) -r=!1 -q=!0}else{if(t.WQ.b(a)){m.R8.F(0,a.gbh()) -r=!0}else r=!1 -q=!1}s=m.ok -if(s.a<2)m.k3=m.k4 -else{p=m.k3 -if(p!=null){o=m.p1 -p=p.b===o[0]&&p.d===o[1]}else p=!1 -o=m.p1 -if(p){p=o[0] -n=s.h(0,p) -n.toString -o=o[1] -s=s.h(0,o) -s.toString -m.k4=new A.XT(n,p,s,o)}else{p=o[0] -n=s.h(0,p) -n.toString -o=o[1] -s=s.h(0,o) -s.toString -m.k4=m.k3=new A.XT(n,p,s,o)}}m.akv(0) -if(!r||m.aho(a.gbh()))m.a6G(q,a) -m.y3(a)}, -akv(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=this,d=e.dy -for(s=e.ok,r=A.p(s).c,q=A.fh(s,s.r,r),p=B.e;q.u();){o=s.h(0,q.d) -p=new A.k(p.a+o.a,p.b+o.b)}for(q=e.R8,o=q.gaR(q),n=A.p(o),n=n.i("@<1>").a5(n.z[1]),o=new A.bP(J.as(o.a),o.b,n.i("bP<1,2>")),n=n.z[1];o.u();){m=o.a -m=(m==null?n.a(m):m).gapa() -p=new A.k(p.a+m.a,p.b+m.b)}q=q.a+e.p1.length -q=q>0?p.eB(0,q):B.e -e.dy=q -o=e.cx -if(d==null){e.k2=A.CO(o,q) -e.p4=B.e}else{n=e.k2 -n===$&&A.c() -q=A.CO(o,q) -e.k2=q -e.p4=q.Z(0,n)}l=s.a -for(q=A.fh(s,s.r,r),k=B.e;q.u();){o=s.h(0,q.d) -k=new A.k(k.a+o.a,k.b+o.b)}q=l>0 -if(q)k=k.eB(0,l) -for(r=A.fh(s,s.r,r),o=k.a,n=k.b,j=0,i=0,h=0;r.u();){m=r.d -g=s.h(0,m) -f=o-g.a -g=n-g.b -j+=Math.sqrt(f*f+g*g) -i+=Math.abs(o-s.h(0,m).a) -h+=Math.abs(n-s.h(0,m).b)}e.fx=q?j/l:0 -e.go=q?i/l:0 -e.k1=q?h/l:0}, -aho(a){var s,r=this,q={},p=r.dy -p.toString -r.dx=p -p=r.fx -p===$&&A.c() -r.fr=p -r.k3=r.k4 -p=r.go -p===$&&A.c() -r.fy=p -p=r.k1 -p===$&&A.c() -r.id=p -p=r.R8 -if(p.a===0){r.RG=1 -r.rx=0}else{r.RG=r.gq0()/r.guj() -p=p.gaR(p) -r.rx=A.iN(p,new A.akj(),A.p(p).i("q.E"),t.i).kV(0,new A.akk())}if(r.CW===B.ib){if(r.ch!=null){s=r.p2.h(0,a).E_() -q.a=s -p=s.a -if(p.gqJ()>2500){if(p.gqJ()>64e6)q.a=new A.hV(p.eB(0,p.gcB()).a6(0,8000)) -r.cw("onEnd",new A.akl(q,r))}else r.cw("onEnd",new A.akm(r))}r.CW=B.Ai -r.p3=new A.hq(B.ao,A.aT(20,null,!1,t.av)) -return!1}r.p3=new A.hq(B.ao,A.aT(20,null,!1,t.av)) -return!0}, -a6G(a,b){var s,r,q,p,o=this,n=o.CW -if(n===B.f2)n=o.CW=B.f3 -if(n===B.f3){n=o.fx -n===$&&A.c() -s=o.fr -s===$&&A.c() -r=o.dy -r.toString -q=o.dx -q===$&&A.c() -p=r.Z(0,q).gcB() -if(Math.abs(n-s)>A.b5_(b.gcp(b))||p>A.aAJ(b.gcp(b),o.b)||Math.max(o.gq0()/o.guj(),o.guj()/o.gq0())>1.05)o.P(B.bt)}else if(n.a>=2)o.P(B.bt) -if(o.CW===B.Ai&&a){o.CW=B.ib -o.PD()}if(o.CW===B.ib){n=o.p3 -if(n!=null)n.ll(b.gfV(b),new A.k(o.gq0(),0)) -if(o.ay!=null)o.cw("onUpdate",new A.akh(o))}}, -PD(){if(this.ax!=null)this.cw("onStart",new A.aki(this))}, -iO(a){var s,r=this -if(r.CW===B.f3){r.CW=B.ib -r.PD() -if(r.at===B.a1){s=r.dy -s.toString -r.dx=s -s=r.fx -s===$&&A.c() -r.fr=s -r.k3=r.k4 -s=r.go -s===$&&A.c() -r.fy=s -s=r.k1 -s===$&&A.c() -r.id=s -s=r.R8 -if(s.a===0){r.RG=1 -r.rx=0}else{r.RG=r.gq0()/r.guj() -s=s.gaR(s) -r.rx=A.iN(s,new A.akn(),A.p(s).i("q.E"),t.i).kV(0,new A.ako())}}}}, -ir(a){var s=this -s.R8.F(0,a) -s.ok.F(0,a) -B.b.F(s.p1,a) -s.iA(a)}, -qH(a){switch(this.CW.a){case 1:this.P(B.ac) -break -case 0:break -case 2:break -case 3:break}this.CW=B.f2}, -n(){this.p2.a0(0) -this.jn()}} -A.akj.prototype={ -$1(a){return a.e}, -$S:140} -A.akk.prototype={ -$2(a,b){return a+b}, -$S:72} -A.akl.prototype={ -$0(){var s,r,q=this.b,p=q.ch -p.toString -s=this.a.a -r=q.p3 -r=r==null?null:r.E_().a.a -if(r==null)r=-1 -return p.$1(new A.wo(s,r,q.R8.a+q.p1.length))}, -$S:0} -A.akm.prototype={ -$0(){var s,r=this.a,q=r.ch -q.toString -s=r.p3 -s=s==null?null:s.E_().a.a -if(s==null)s=-1 -return q.$1(new A.wo(B.c5,s,r.R8.a+r.p1.length))}, -$S:0} -A.akh.prototype={ -$0(){var s,r,q,p,o,n,m,l,k=this.a,j=k.ay -j.toString -s=k.gq0() -r=k.gadM() -q=k.gala() -p=k.dy -p.toString -o=k.k2 -o===$&&A.c() -n=k.a8c() -m=k.R8.a -l=k.p1.length -k=k.p4 -k===$&&A.c() -j.$1(A.b_z(p,k,r,o,m+l,n,s,q))}, -$S:0} -A.aki.prototype={ -$0(){var s,r,q,p=this.a,o=p.ax -o.toString -s=p.dy -s.toString -r=p.k2 -r===$&&A.c() -q=p.R8.a -p=p.p1.length -o.$1(new A.DE(s,r,q+p))}, -$S:0} -A.akn.prototype={ -$1(a){return a.e}, -$S:140} -A.ako.prototype={ -$2(a,b){return a+b}, -$S:72} -A.wV.prototype={} -A.oY.prototype={} -A.Lm.prototype={ -hw(a){var s=this -if(s.ch===B.ci){if(s.k4!=null&&s.ok!=null)s.uz() -s.k4=a}if(s.k4!=null)s.a2P(a)}, -tm(a,b){this.a2G(a,b)}, -Xy(a){var s,r,q=this -if(t.oN.b(a)){q.ok=a -q.OW()}else if(t.Ko.b(a)){q.P(B.ac) -if(q.k2){s=q.k4 -s.toString -q.BZ(a,s,"")}q.uz()}else{s=a.gdY(a) -r=q.k4 -if(s!==r.gdY(r)){q.P(B.ac) -s=q.CW -s.toString -q.iA(s)}}}, -P(a){var s,r=this -if(r.k3&&a===B.ac){s=r.k4 -s.toString -r.BZ(null,s,"spontaneous") -r.uz()}r.NH(a)}, -Jt(){this.Ts()}, -iO(a){var s=this -s.NN(a) -if(a===s.CW){s.Ts() -s.k3=!0 -s.OW()}}, -ir(a){var s,r=this -r.a2Q(a) -if(a===r.CW){if(r.k2){s=r.k4 -s.toString -r.BZ(null,s,"forced")}r.uz()}}, -Ts(){var s,r=this -if(r.k2)return -s=r.k4 -s.toString -r.Xz(s) -r.k2=!0}, -OW(){var s,r,q=this -if(!q.k3||q.ok==null)return -s=q.k4 -s.toString -r=q.ok -r.toString -q.XA(s,r) -q.uz()}, -uz(){var s=this -s.k3=s.k2=!1 -s.k4=s.ok=null}} -A.hS.prototype={ -ii(a){var s=this -switch(a.gdY(a)){case 1:if(s.al==null&&s.bd==null&&s.aG==null&&s.bS==null)return!1 -break -case 2:if(s.bk==null&&s.B==null&&s.R==null&&s.a1==null)return!1 -break -case 4:return!1 -break -default:return!1}return s.pv(a)}, -Xz(a){var s,r=this,q=a.gbv(a),p=a.gd_() -r.e.h(0,a.gbh()).toString -s=new A.wV(q,p) -switch(a.gdY(a)){case 1:if(r.al!=null)r.cw("onTapDown",new A.anO(r,s)) -break -case 2:if(r.B!=null)r.cw("onSecondaryTapDown",new A.anP(r,s)) -break -case 4:break}}, -XA(a,b){var s,r,q=this -b.gcp(b) -b.gbv(b) -b.gd_() -s=new A.oY() -switch(a.gdY(a)){case 1:if(q.aG!=null)q.cw("onTapUp",new A.anQ(q,s)) -r=q.bd -if(r!=null)q.cw("onTap",r) -break -case 2:if(q.R!=null)q.cw("onSecondaryTapUp",new A.anR(q,s)) -if(q.bk!=null)q.cw("onSecondaryTap",new A.anS(q)) -break -case 4:break}}, -BZ(a,b,c){var s,r=this,q=c===""?c:c+" " -switch(b.gdY(b)){case 1:s=r.bS -if(s!=null)r.cw(q+"onTapCancel",s) -break -case 2:s=r.a1 -if(s!=null)r.cw(q+"onSecondaryTapCancel",s) -break -case 4:break}}} -A.anO.prototype={ -$0(){return this.a.al.$1(this.b)}, -$S:0} -A.anP.prototype={ -$0(){return this.a.B.$1(this.b)}, -$S:0} -A.anQ.prototype={ -$0(){return this.a.aG.$1(this.b)}, -$S:0} -A.anR.prototype={ -$0(){return this.a.R.$1(this.b)}, -$S:0} -A.anS.prototype={ -$0(){return this.a.bk.$0()}, -$S:0} -A.hV.prototype={ -Z(a,b){return new A.hV(this.a.Z(0,b.a))}, -Y(a,b){return new A.hV(this.a.Y(0,b.a))}, -amJ(a,b){var s=this.a,r=s.gqJ() -if(r>b*b)return new A.hV(s.eB(0,s.gcB()).a6(0,b)) -if(r100||Math.abs(m-p.a.a)/1000>40)break -k=n.b -e.push(k.a) -d.push(k.b) -c.push(1) -b.push(-l) -a=(a===0?20:a)-1;++o -if(o<20){q=n -p=q -continue}else{q=n -break}}while(!0) -if(o>=3){j=new A.OW(b,e,c).Nf(2) -if(j!=null){i=new A.OW(b,d,c).Nf(2) -if(i!=null){f=j.a[1] -m=i.a[1] -h=j.b -h===$&&A.c() -g=i.b -g===$&&A.c() -return new A.th(new A.k(f*1000,m*1000),h*g,new A.b8(r-q.a.a),s.b.Z(0,q.b))}}}return new A.th(B.e,1,new A.b8(r-q.a.a),s.b.Z(0,q.b))}, -E_(){var s=this.t2() -if(s==null||s.a.j(0,B.e))return B.c5 -return new A.hV(s.a)}} -A.qP.prototype={ -ll(a,b){var s=(this.c+1)%20 -this.c=s -this.d[s]=new A.HH(a,b)}, -pX(a){var s,r,q=this.c+a,p=B.h.cF(q,20),o=B.h.cF(q-1,20) -q=this.d -s=q[p] -r=q[o] -if(s==null||r==null)return B.e -q=s.a.a-r.a.a -return q>0?s.b.Z(0,r.b).a6(0,1000).eB(0,q/1000):B.e}, -t2(){var s,r,q=this,p=q.pX(-2).a6(0,0.6).Y(0,q.pX(-1).a6(0,0.35)).Y(0,q.pX(0).a6(0,0.05)),o=q.d,n=q.c,m=o[n] -for(s=null,r=1;r<=20;++r){s=o[B.h.cF(n+r,20)] -if(s!=null)break}if(s==null||m==null)return B.zX -else return new A.th(p,1,new A.b8(m.a.a-s.a.a),m.b.Z(0,s.b))}} -A.vw.prototype={ -t2(){var s,r,q=this,p=q.pX(-2).a6(0,0.15).Y(0,q.pX(-1).a6(0,0.65)).Y(0,q.pX(0).a6(0,0.2)),o=q.d,n=q.c,m=o[n] -for(s=null,r=1;r<=20;++r){s=o[B.h.cF(n+r,20)] -if(s!=null)break}if(s==null||m==null)return B.zX -else return new A.th(p,1,new A.b8(m.a.a-s.a.a),m.b.Z(0,s.b))}} -A.Uo.prototype={ -G(a){var s=this,r=null -return A.h7(r,r,s.c,r,new A.aqt(s,a),r,r,s.f,s.Gd(a))}} -A.aqt.prototype={ -$0(){this.a.H7(this.b)}, -$S:0} -A.xq.prototype={ -G(a){var s,r,q,p,o=null -a.an(t.vH) -s=A.a2(a) -r=this.c.$1(s.R8) -if(r!=null)return r.$1(a) -q=this.d.$1(a) -switch(A.bA().a){case 0:s=A.h9(a,B.b_,t.R) -s.toString -p=this.e.$1(s) -break -case 1:case 3:case 5:case 2:case 4:p=o -break -default:p=o}return A.nW(q,o,p,o)}} -A.Ld.prototype={ -G(a){return new A.xq(new A.a4J(),new A.a4K(),new A.a4L(),null)}} -A.a4J.prototype={ -$1(a){return a==null?null:a.a}, -$S:94} -A.a4K.prototype={ -$1(a){return B.jl}, -$S:95} -A.a4L.prototype={ -$1(a){return"Back"}, -$S:96} -A.Lc.prototype={ -H7(a){return A.aJG(a)}, -Gd(a){A.h9(a,B.b_,t.R).toString -return"Back"}} -A.N0.prototype={ -G(a){return new A.xq(new A.a7O(),new A.a7P(),new A.a7Q(),null)}} -A.a7O.prototype={ -$1(a){return a==null?null:a.c}, -$S:94} -A.a7P.prototype={ -$1(a){return B.nB}, -$S:95} -A.a7Q.prototype={ -$1(a){return"Open navigation menu"}, -$S:96} -A.N_.prototype={ -H7(a){var s,r,q=A.DD(a),p=q.e -if(p.gO()!=null){s=q.x -r=s.y -s=r==null?A.p(s).i("d7.T").a(r):r}else s=!1 -if(s)p.gO().aL(0) -q=q.d.gO() -if(q!=null)q.asV(0) -return null}, -Gd(a){A.h9(a,B.b_,t.R).toString -return"Open navigation menu"}} -A.N7.prototype={ -G(a){return new A.xq(new A.a8K(),new A.a8L(),new A.a8M(),null)}} -A.a8K.prototype={ -$1(a){return a==null?null:a.d}, -$S:94} -A.a8L.prototype={ -$1(a){return B.nB}, -$S:95} -A.a8M.prototype={ -$1(a){return"Open navigation menu"}, -$S:96} -A.N6.prototype={ -H7(a){var s,r,q=A.DD(a),p=q.d -if(p.gO()!=null){s=q.w -r=s.y -s=r==null?A.p(s).i("d7.T").a(r):r}else s=!1 -if(s)p.gO().aL(0) -q=q.e.gO() -if(q!=null)q.asV(0) -return null}, -Gd(a){A.h9(a,B.b_,t.R).toString -return"Open navigation menu"}} -A.tR.prototype={ -gA(a){var s=this -return A.cn([s.a,s.b,s.c,s.d])}, -j(a,b){var s -if(b==null)return!1 -if(this===b)return!0 -if(J.Y(b)!==A.u(this))return!1 -if(b instanceof A.tR)s=!0 -else s=!1 -return s}} -A.Uq.prototype={} -A.KJ.prototype={ -G(a){var s,r,q=this,p=q.c.length===0 -if(p)return B.ai -s=J.lI(A.aVQ(a,q.c)) -switch(A.a2(a).r.a){case 2:p=q.e -r=p.a -p=p.b -return A.aWJ(r,p==null?r:p,s) -case 0:p=q.e -r=p.a -p=p.b -return A.b0F(r,p==null?r:p,s) -case 1:case 3:case 5:return new A.MH(q.e.a,s,null) -case 4:return new A.Mg(q.e.a,s,null)}}} -A.a42.prototype={ -$1(a){return A.aWK(a)}, -$S:251} -A.a43.prototype={ -$1(a){var s=this.a -return A.aX2(s,a.a,A.aCr(s,a))}, -$S:252} -A.a44.prototype={ -$1(a){return A.aWG(a.a,A.aCr(this.a,a))}, -$S:253} -A.apj.prototype={ -I(){return"ThemeMode."+this.b}} -A.BT.prototype={ -ae(){return new A.Hf(B.i)}} -A.afo.prototype={ -$2(a,b){return new A.vx(a,b)}, -$S:254} -A.afr.prototype={ -l3(a){return A.a2(a).r}, -AP(a,b,c){switch(A.bs(c.a).a){case 0:return b -case 1:switch(A.a2(a).r.a){case 3:case 4:case 5:return A.aE5(b,c.b,null) -case 0:case 1:case 2:return b}break}}, -AO(a,b,c){var s=A.bg("indicator") -A.a2(a) -A.a2(a) -s.scM(B.ih) -switch(A.a2(a).r.a){case 2:case 3:case 4:case 5:return b -case 0:switch(s.aI()){case B.Av:return A.b0g(c.a,b,c.d) -case B.ih:break}break -case 1:break}return A.aIR(c.a,b,A.a2(a).ax.f)}} -A.Hf.prototype={ -aE(){this.aV() -this.d=A.aZd()}, -gaeC(){var s=A.b([],t.a9) -this.a.toString -s.push(B.CZ) -s.push(B.CU) -return s}, -ae6(a,b){return new A.ND(B.Gj,b,B.Wv,null)}, -aeL(a,b){var s,r,q,p,o,n,m,l,k=this,j=null -k.a.toString -s=A.ct(a,B.lf) -r=s==null?j:s.d -if(r==null)r=B.an -q=r===B.Y -s=A.ct(a,B.Ab) -s=s==null?j:s.Q -p=s===!0 -if(q)if(p)k.a.toString -if(q)k.a.toString -if(p)k.a.toString -o=k.a.cy -s=o.ah -n=s.b -if(n==null){m=o.ax.b -n=A.ao(102,m.gl(m)>>>16&255,m.gl(m)>>>8&255,m.gl(m)&255)}l=s.a -if(l==null)l=o.ax.b -k.a.toString -s=b==null?B.ai:b -return new A.DC(A.a6X(new A.za(o,s,B.B,B.F,j,j),l,j,j,n),j)}, -a7m(a){var s,r,q=this,p=null,o=q.a,n=o.cy -n=n.fr -s=n -if(s==null)s=B.c_ -n=o.e -o=o.CW -r=q.gaeC() -q.a.toString -return new A.Fu(p,p,p,new A.av1(),p,p,p,p,p,n,B.L9,p,p,B.o2,q.gaeK(),o,p,B.TK,s,p,r,p,p,B.nU,!1,!1,!1,!1,q.gae5(),!1,p,p,p,new A.m8(q,t.bT))}, -G(a){var s,r=null,q=A.uV(!1,!1,this.a7m(a),r,r,r,r,!0,r,r,new A.av2(),r,r,r) -this.a.toString -s=this.d -s===$&&A.c() -return A.aKA(B.Cp,new A.qK(s,q,r))}} -A.av1.prototype={ -$1$2(a,b,c){var s=null,r=A.b([],t.Zt),q=$.ai,p=A.oA(B.bS),o=A.b([],t.wi),n=A.eu(s,t.u),m=$.ai -return new A.oj(b,!1,!0,s,s,r,new A.bB(s,c.i("bB>")),new A.bB(s,t.C),new A.rm(),s,0,new A.b3(new A.ae(q,c.i("ae<0?>")),c.i("b3<0?>")),p,o,a,n,new A.b3(new A.ae(m,c.i("ae<0?>")),c.i("b3<0?>")),c.i("oj<0>"))}, -$2(a,b){return this.$1$2(a,b,t.z)}, -$S:257} -A.av2.prototype={ -$2(a,b){if(!(b instanceof A.l3)||!b.c.gwp().j(0,B.ee))return B.e3 -return A.b0V()?B.e2:B.e3}, -$S:224} -A.ayR.prototype={ -nn(a){return a.Dt(this.b)}, -ns(a){return new A.Q(a.b,this.b)}, -nq(a,b){return new A.k(0,a.b-b.b)}, -la(a){return this.b!==a.b}} -A.Zt.prototype={} -A.zj.prototype={ -aan(a){var s=new A.a4f(this,a).$0() -return s}, -ae(){return new A.FC(B.i)}, -n3(a){return A.Kk().$1(a)}} -A.a4f.prototype={ -$0(){switch(this.b.r.a){case 0:case 1:case 3:case 5:return!1 -case 2:case 4:return!0}}, -$S:12} -A.FC.prototype={ -bu(){var s,r=this -r.di() -s=r.d -if(s!=null)s.H(0,r.gF0()) -s=r.c.an(t.yd) -s=s==null?null:s.f -r.d=s -if(s!=null){s=s.d -s.GB(s.c,new A.pi(r.gF0()),!1)}}, -n(){var s=this,r=s.d -if(r!=null){r.H(0,s.gF0()) -s.d=null}s.aP()}, -a6J(a){var s,r,q,p=this -if(a instanceof A.jP&&p.a.n3(a)){s=p.e -r=a.a -switch(r.e.a){case 0:q=p.e=Math.max(r.gij()-r.gdS(),0)>0 -break -case 2:q=p.e=Math.max(r.gdS()-r.gik(),0)>0 -break -case 1:case 3:q=s -break -default:q=s}if(q!==s)p.ao(new A.ar_())}}, -G(b4){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6=this,a7=null,a8=A.a2(b4),a9=A.aYB(b4),b0=A.a2(b4).RG,b1=new A.aqZ(b4,a7,a7,4,a7,B.k,a7,a7,a7,a7,a7,16,56,a7,a7,a7),b2=b4.vS(t.Np),b3=A.PE(b4,t.X) -b4.an(t.N8) -s=A.aE(t.ui) -r=a6.e -if(r)s.E(0,B.ua) -r=b2==null -if(r)q=a7 -else{b2.a.toString -q=!1}if(r)b2=a7 -else{b2.a.toString -b2=!1}r=a6.a -r.toString -p=b0.Q -if(p==null)p=56 -o=b1.gdF(b1) -n=t.m -r=A.cD(r.ax,s,n) -if(r==null)r=A.cD(b0.a,s,n) -if(r==null)r=A.cD(o,s,t.n8) -m=a6.a.ay -l=b0.c -if(l==null){o=b1.c -o.toString -l=o}if(s.t(0,B.ua)){a6.a.toString -s=b0.d -if(s==null)s=b1.d -k=s==null?l:s}else k=l -a6.a.toString -j=b0.w -i=j==null?b1.goz().cH(m):j -h=a6.a.ay -s=b0.x -if(s==null)s=a7 -if(s==null)s=j -if(s==null){s=b1.x -s=s==null?a7:s.cH(h) -g=s}else g=s -if(g==null)g=i -a6.a.toString -f=b0.as -if(f==null){s=b1.gxe() -f=s==null?a7:s.cH(m)}a6.a.toString -e=b0.at -if(e==null){s=b1.gfW() -e=s==null?a7:s.cH(m)}s=a6.a -d=s.c -if(d==null&&!0)if(q===!0){s=i.a -d=new A.N_(B.ET,a7,A.Oo(a7,a7,a7,a7,a7,a7,a7,a7,a7,s==null?24:s,a7,a7,a7,a7),a7)}else{if(b3==null)s=a7 -else s=b3.gKl()||b3.oq$>0 -if(s===!0)d=B.AA}if(d!=null){a6.a.toString -d=new A.ft(A.eR(a7,56),d,a7)}c=a6.a.e -switch(a8.r.a){case 0:case 1:case 3:case 5:b=!0 -break -case 2:case 4:b=a7 -break -default:b=a7}c=new A.UL(c,a7) -c=new A.bL(A.c7(a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,!0,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,b,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7),!1,!1,!1,!1,c,a7) -e.toString -c=A.jr(c,a7,a7,B.aZ,!1,e,a7,a7,B.aH) -a=A.bD(b4,a7,t.w).w -c=A.kP(c,a.o9(Math.min(a.c,1.34)),a7) -a6.a.toString -if(b2===!0){b2=i.a -a0=new A.N6(B.Ft,a7,A.Oo(a7,a7,a7,a7,a7,a7,a7,a7,a7,b2==null?24:b2,a7,a7,a7,a7),a7)}else a0=a7 -if(a0!=null){if(g.j(0,b1.x))a1=a9 -else{a2=A.Oo(a7,a7,a7,a7,a7,a7,g.f,a7,a7,g.a,a7,a7,a7,a7) -b2=a9.a -a1=new A.nX(b2==null?a7:b2.anI(a2.c,a2.as,a2.d))}a0=A.adg(A.mb(a0,g),a1)}b2=a6.a.aan(a8) -a6.a.toString -s=b0.z -if(s==null)s=16 -f.toString -a3=A.M_(new A.i6(new A.ayR(p),A.mb(A.jr(new A.PR(d,c,a0,b2,s,a7),a7,a7,B.bm,!0,f,a7,a7,B.aH),i),a7),B.S) -a3=A.RY(!1,a3,B.z,!0) -b2=A.TG(r) -a4=b2===B.Y?B.Qa:B.Qb -a5=new A.lf(a7,a7,a7,a7,a7,a4.f,a4.r,a4.w) -a6.a.toString -b2=b0.e -if(b2==null)b2=b1.e -s=b0.f -if(s==null)s=b1.f -q=b0.r -if(q==null)q=b1.r -b2=A.ha(B.F,a7,new A.bL(A.c7(a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7),!1,!0,!1,!1,new A.fd(B.Au,a7,a7,a3,a7),a7),B.m,r,k,a7,b2,q,s,a7,B.c0) -return new A.bL(A.c7(a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7,a7),!0,!1,!1,!1,new A.zg(a5,b2,a7,t.ph),a7)}} -A.ar_.prototype={ -$0(){}, -$S:0} -A.UL.prototype={ -aD(a){var s=a.an(t.I) -s.toString -s=new A.ZK(B.a0,s.w,null,A.af(t.T)) -s.aC() -s.saW(null) -return s}, -aH(a,b){var s=a.an(t.I) -s.toString -b.sbF(s.w)}} -A.ZK.prototype={ -cg(a){var s=a.VU(1/0) -return a.aX(this.C$.hQ(s))}, -bs(){var s,r=this,q=t.k,p=q.a(A.t.prototype.ga2.call(r)).VU(1/0) -r.C$.bz(p,!0) -q=q.a(A.t.prototype.ga2.call(r)) -s=r.C$ -r.id=q.aX(s.gq(s)) -r.uO()}} -A.aqZ.prototype={ -gA2(){var s,r=this,q=r.ch -if(q===$){s=A.a2(r.ay) -r.ch!==$&&A.aW() -r.ch=s -q=s}return q}, -gpG(){var s,r=this,q=r.CW -if(q===$){s=r.gA2() -r.CW!==$&&A.aW() -q=r.CW=s.ax}return q}, -gdF(a){return this.gpG().a===B.Y?this.gpG().cy:this.gpG().b}, -gfT(){return this.gpG().a===B.Y?this.gpG().db:this.gpG().c}, -goz(){return this.gA2().ok}, -gxe(){return this.gA2().p3.z}, -gfW(){return this.gA2().p3.r}} -A.tU.prototype={ -gA(a){var s=this -return A.T(s.gdF(s),s.gfT(),s.c,s.d,s.gdu(s),s.gen(),s.r,s.goz(),s.gIj(),s.y,s.z,s.Q,s.gxe(),s.gfW(),s.ax,B.a,B.a,B.a,B.a,B.a)}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.Y(b)!==A.u(s))return!1 -return b instanceof A.tU&&J.e(b.gdF(b),s.gdF(s))&&J.e(b.gfT(),s.gfT())&&b.c==s.c&&b.d==s.d&&J.e(b.gdu(b),s.gdu(s))&&J.e(b.gen(),s.gen())&&J.e(b.r,s.r)&&J.e(b.goz(),s.goz())&&J.e(b.gIj(),s.gIj())&&b.z==s.z&&b.Q==s.Q&&J.e(b.gxe(),s.gxe())&&J.e(b.gfW(),s.gfW())&&!0}, -gdF(a){return this.a}, -gfT(){return this.b}, -gdu(a){return this.e}, -gen(){return this.f}, -goz(){return this.w}, -gIj(){return this.x}, -gxe(){return this.as}, -gfW(){return this.at}} -A.UK.prototype={} -A.BV.prototype={ -lg(){var s,r,q,p,o,n,m,l,k,j,i,h,g=this,f=g.a -f.toString -s=g.b -s.toString -r=s.Z(0,f) -q=Math.abs(r.a) -p=Math.abs(r.b) -o=r.gcB() -n=s.a -m=f.b -l=new A.k(n,m) -k=new A.afp(g,o) -if(q>2&&p>2){j=o*o -i=f.a -h=s.b -if(q>>16&255,q.gl(q)>>>8&255,q.gl(q)&255),0,B.I,-1),s,r.c)}if(s==null){q=p.a -return A.aR(p,new A.bk(A.ao(0,q.gl(q)>>>16&255,q.gl(q)>>>8&255,q.gl(q)&255),0,B.I,-1),r.c)}return A.aR(p,s,r.c)}, -$ibe:1} -A.V3.prototype={} -A.zF.prototype={ -ae(){return new A.FM(null,null,B.i)}} -A.FM.prototype={ -Ki(){this.ao(new A.arS())}, -gek(){var s=this.a.z -if(s==null){s=this.r -s.toString}return s}, -w4(){var s,r=this -if(r.a.z==null)r.r=A.aJj(null) -s=r.gek() -s.ft(0,B.x,!(r.a.c!=null||!1)) -r.gek().U(0,r.gow())}, -aE(){this.aV() -this.w4()}, -aM(a){var s,r=this -r.b2(a) -s=a.z -if(r.a.z!=s){if(s!=null)s.H(0,r.gow()) -if(r.a.z!=null){s=r.r -if(s!=null){s.ag$=$.aO() -s.aj$=0}r.r=null}r.w4()}s=r.a.c!=null||!1 -if(s!==(a.c!=null||!1)){s=r.gek() -s.ft(0,B.x,!(r.a.c!=null||!1)) -if(!(r.a.c!=null||!1))r.gek().ft(0,B.ag,!1)}}, -n(){var s,r=this -r.gek().H(0,r.gow()) -s=r.r -if(s!=null){s.ag$=$.aO() -s.aj$=0}s=r.d -if(s!=null)s.n() -r.a5b()}, -G(c7){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2=this,c3=null,c4=c2.a,c5=new A.arP(c4.r,c4.LL(c7),c2.a.vp(c7)),c6=new A.arQ(c2,c5) -c4=t.PM -s=c6.$1$1(new A.ars(),c4) -r=c6.$1$1(new A.art(),t.p8) -q=t.m -p=c6.$1$1(new A.aru(),q) -o=c6.$1$1(new A.arF(),q) -n=c6.$1$1(new A.arI(),q) -m=c6.$1$1(new A.arJ(),q) -l=c6.$1$1(new A.arK(),t.pc) -k=t.tW -j=c6.$1$1(new A.arL(),k) -i=c6.$1$1(new A.arM(),k) -h=c6.$1$1(new A.arN(),k) -g=c6.$1$1(new A.arO(),q) -f=c6.$1$1(new A.arv(),c4) -e=c6.$1$1(new A.arw(),t.oI) -d=c6.$1$1(new A.arx(),t.KX) -c=c5.$1$1(new A.ary(),t.X3) -b=c5.$1$1(new A.arz(),t.Oc) -a=c5.$1$1(new A.arA(),t.Tu) -a0=c5.$1$1(new A.arB(),t.y) -a1=c5.$1$1(new A.arC(),t.pC) -a2=new A.k(c.a,c.b).a6(0,4) -a3=c5.$1$1(new A.arD(),t.Ya) -c4=j.a -q=j.b -a4=c.Bq(new A.ar(c4,h.a,q,h.b)) -if(i!=null){a5=a4.aX(i) -c4=a5.a -if(isFinite(c4))a4=a4.J5(c4,c4) -c4=a5.b -if(isFinite(c4))a4=a4.anE(c4,c4)}a6=a2.b -c4=a2.a -a7=Math.max(0,c4) -a8=l.E(0,new A.aF(a7,a6,a7,a6)).lp(0,B.z,B.lg) -if(a.a>0){q=c2.e -if(q!=null){k=c2.f -if(k!=null)if(q!==s)if(k.gl(k)!==p.gl(p)){q=c2.f -q=(q.gl(q)>>>24&255)/255===1&&(p.gl(p)>>>24&255)/255<1&&s===0}else q=!1 -else q=!1 -else q=!1}else q=!1}else q=!1 -if(q){q=c2.d -if(!J.e(q==null?c3:q.e,a)){q=c2.d -if(q!=null)q.n() -q=A.bO(c3,a,c3,c3,c2) -q.bO() -k=q.d6$ -k.b=!0 -k.a.push(new A.arE(c2)) -c2.d=q}p=c2.f -c2.d.sl(0,0) -c2.d.bW(0)}c2.e=s -c2.f=p -s.toString -q=r==null?c3:r.cH(o) -k=d.mx(e) -a9=p==null?B.de:B.jZ -b0=c2.a -b1=b0.w -b2=b0.c -b3=b0.d -b4=b0.e -b5=b0.x -b6=b2!=null||!1 -b0=b0.f -b7=d.mx(e) -b8=c2.gek() -b9=g==null?o:g -a1.toString -c0=c2.a -a9=A.ha(a,c3,A.vd(!1,c3,b6,A.mb(new A.bY(a8,new A.fd(a1,1,1,c0.as,c3),c3),new A.d6(f,c3,c3,c3,c3,b9,c3,c3)),b7,a0,c3,b5,B.C,c3,new A.Ym(new A.arG(c5)),b0,c3,b4,b3,b2,new A.dy(new A.arH(c5),t._s),c3,c3,a3,b8),b1,p,s,c3,n,k,m,q,a9) -switch(b.a){case 0:c1=new A.Q(48+c4,48+a6) -break -case 1:c1=B.o -break -default:c1=c3}c4=c0.c!=null||!1 -return new A.bL(A.c7(c3,c3,c3,c3,c3,!0,c3,c3,c3,c3,c4,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3),!0,!1,!1,!1,new A.Xw(c1,new A.ft(a4,a9,c3),c3),c3)}} -A.arS.prototype={ -$0(){}, -$S:0} -A.arP.prototype={ -$1$1(a,b){var s=a.$1(this.a),r=a.$1(this.b),q=a.$1(this.c),p=s==null?r:s -return p==null?q:p}, -$1(a){return this.$1$1(a,t.z)}, -$S:262} -A.arQ.prototype={ -$1$1(a,b){return this.b.$1$1(new A.arR(this.a,a,b),b)}, -$1(a){return this.$1$1(a,t.z)}, -$S:263} -A.arR.prototype={ -$1(a){var s=this.b.$1(a) -return s==null?null:s.P(this.a.gek().a)}, -$S(){return this.c.i("0?(c2?)")}} -A.ars.prototype={ -$1(a){return a==null?null:a.gjH(a)}, -$S:184} -A.art.prototype={ -$1(a){return a==null?null:a.gcd()}, -$S:265} -A.aru.prototype={ -$1(a){return a==null?null:a.gdF(a)}, -$S:60} -A.arF.prototype={ -$1(a){return a==null?null:a.gfT()}, -$S:60} -A.arI.prototype={ -$1(a){return a==null?null:a.gdu(a)}, -$S:60} -A.arJ.prototype={ -$1(a){return a==null?null:a.gen()}, -$S:60} -A.arK.prototype={ -$1(a){return a==null?null:a.ge4(a)}, -$S:267} -A.arL.prototype={ -$1(a){return a==null?null:a.gwx()}, -$S:99} -A.arM.prototype={ -$1(a){return a==null?null:a.y}, -$S:99} -A.arN.prototype={ -$1(a){return a==null?null:a.gwt()}, -$S:99} -A.arO.prototype={ -$1(a){return a==null?null:a.Q}, -$S:60} -A.arv.prototype={ -$1(a){return a==null?null:a.gjP()}, -$S:184} -A.arw.prototype={ -$1(a){return a==null?null:a.gix()}, -$S:269} -A.arx.prototype={ -$1(a){return a==null?null:a.gcr(a)}, -$S:270} -A.arG.prototype={ -$1(a){return this.a.$1$1(new A.arq(a),t.Pb)}, -$S:271} -A.arq.prototype={ -$1(a){var s -if(a==null)s=null -else{s=a.gkO() -s=s==null?null:s.P(this.a)}return s}, -$S:272} -A.arH.prototype={ -$1(a){return this.a.$1$1(new A.arp(a),t.n8)}, -$S:61} -A.arp.prototype={ -$1(a){var s -if(a==null)s=null -else{s=a.ge3() -s=s==null?null:s.P(this.a)}return s}, -$S:274} -A.ary.prototype={ -$1(a){return a==null?null:a.giu()}, -$S:275} -A.arz.prototype={ -$1(a){return a==null?null:a.gx9()}, -$S:276} -A.arA.prototype={ -$1(a){return a==null?null:a.cx}, -$S:277} -A.arB.prototype={ -$1(a){return a==null?null:a.cy}, -$S:278} -A.arC.prototype={ -$1(a){return a==null?null:a.db}, -$S:279} -A.arD.prototype={ -$1(a){return a==null?null:a.gti()}, -$S:280} -A.arE.prototype={ -$1(a){if(a===B.W)this.a.ao(new A.arr())}, -$S:5} -A.arr.prototype={ -$0(){}, -$S:0} -A.Ym.prototype={ -P(a){var s=this.a.$1(a) -s.toString -return s}, -gqA(){return"ButtonStyleButton_MouseCursor"}} -A.Xw.prototype={ -aD(a){var s=new A.HW(this.e,null,A.af(t.T)) -s.aC() -s.saW(null) -return s}, -aH(a,b){b.sKW(this.e)}} -A.HW.prototype={ -sKW(a){if(this.v.j(0,a))return -this.v=a -this.W()}, -bf(a){var s=this.C$ -if(s!=null)return Math.max(s.aq(B.V,a,s.gbj()),this.v.a) -return 0}, -b8(a){var s=this.C$ -if(s!=null)return Math.max(s.aq(B.ab,a,s.gby()),this.v.b) -return 0}, -b7(a){var s=this.C$ -if(s!=null)return Math.max(s.aq(B.a_,a,s.gbm()),this.v.a) -return 0}, -be(a){var s=this.C$ -if(s!=null)return Math.max(s.aq(B.aU,a,s.gbZ()),this.v.b) -return 0}, -OK(a,b){var s,r,q=this.C$ -if(q!=null){s=b.$2(q,a) -q=s.a -r=this.v -return a.aX(new A.Q(Math.max(q,r.a),Math.max(s.b,r.b)))}return B.o}, -cg(a){return this.OK(a,A.pE())}, -bs(){var s,r,q,p=this -p.id=p.OK(t.k.a(A.t.prototype.ga2.call(p)),A.tL()) -s=p.C$ -if(s!=null){s=s.b -s.toString -t.q.a(s) -r=p.gq(p) -q=p.C$ -s.a=B.a0.o_(t.EP.a(r.Z(0,q.gq(q))))}}, -c2(a,b){var s,r -if(this.kb(a,b))return!0 -s=this.C$ -r=s.gq(s).jz(B.e) -return a.Iw(new A.awp(this,r),r,A.aJp(r))}} -A.awp.prototype={ -$2(a,b){return this.a.C$.c2(a,this.b)}, -$S:9} -A.Jy.prototype={ -bY(){this.cR() -this.cA() -this.ep()}, -n(){var s=this,r=s.aZ$ -if(r!=null)r.H(0,s.ge8()) -s.aZ$=null -s.aP()}} -A.a5r.prototype={ -I(){return"ButtonTextTheme."+this.b}} -A.a5p.prototype={ -I(){return"ButtonBarLayoutBehavior."+this.b}} -A.Lz.prototype={ -ge4(a){var s=this.e -if(s!=null)return s -switch(this.c.a){case 0:case 1:return B.dX -case 2:return B.Fj}}, -gcr(a){var s=this.f -if(s!=null)return s -switch(this.c.a){case 0:case 1:return B.NM -case 2:return B.ez}}, -j(a,b){var s=this -if(b==null)return!1 -if(J.Y(b)!==A.u(s))return!1 -return b instanceof A.Lz&&b.c===s.c&&b.a===s.a&&b.b===s.b&&b.ge4(b).j(0,s.ge4(s))&&b.gcr(b).j(0,s.gcr(s))&&J.e(b.w,s.w)&&J.e(b.y,s.y)&&J.e(b.z,s.z)&&J.e(b.at,s.at)&&b.ax==s.ax}, -gA(a){var s=this -return A.T(s.c,s.a,s.b,s.ge4(s),s.gcr(s),!1,s.w,s.x,s.y,s.z,s.Q,s.as,s.at,s.ax,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.V4.prototype={} -A.zG.prototype={ -gA(a){var s=this -return A.T(s.a,s.b,s.c,s.d,s.e,s.f,s.r,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.Y(b)!==A.u(s))return!1 -return b instanceof A.zG&&J.e(b.b,s.b)&&J.e(b.c,s.c)&&J.e(b.d,s.d)&&b.e==s.e&&J.e(b.f,s.f)&&J.e(b.r,s.r)}} -A.V7.prototype={} -A.ash.prototype={ -I(){return"_CheckboxType."+this.b}} -A.zL.prototype={ -ae(){return new A.Vc(new A.Vb($.aO()),$,$,$,$,$,$,$,$,$,null,!1,!1,null,null,B.i)}} -A.Vc.prototype={ -aE(){this.a5e() -this.e=this.a.c}, -aM(a){var s,r=this -r.b2(a) -s=a.c -if(s!==r.a.c){r.e=s -r.AD()}}, -n(){this.d.n() -this.a5d()}, -gf_(){return this.a.d}, -gM_(){this.a.toString -return!1}, -gl(a){return this.a.c}, -gUD(){return new A.dy(new A.asf(this),t._s)}, -pZ(a,b){if(a instanceof A.Hi)return A.cD(a,b,t.oI) -if(!b.t(0,B.au))return a -return null}, -G(a9){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7=this,a8=null -a7.a.toString -switch(0){case 0:break}a9.an(t.ES) -s=A.a2(a9).b_ -A.a2(a9) -r=new A.asb(A.a2(a9),A.a2(a9).ax,a8,a8,a8,a8,a8,a8,a8,a8,a8) -a7.a.toString -q=r.gkN() -a7.a.toString -p=r.giu() -switch(q.a){case 0:o=B.z6 -break -case 1:o=B.Pd -break -default:o=a8}o=o.Y(0,new A.k(p.a,p.b).a6(0,4)) -n=a7.gfB() -n.E(0,B.au) -m=a7.gfB() -m.F(0,B.au) -a7.a.toString -l=a7.gUD().a.$1(n) -if(l==null){k=s.b -l=k==null?a8:k.P(n)}k=l==null -if(k){j=r.gic().a.$1(n) -j.toString -i=j}else i=l -a7.a.toString -h=a7.gUD().a.$1(m) -if(h==null){j=s.b -h=j==null?a8:j.P(m)}j=h==null -if(j){g=r.gic().a.$1(m) -g.toString -f=g}else f=h -a7.a.toString -g=a7.pZ(a8,n) -e=g==null?a7.pZ(s.x,n):g -if(e==null){g=a7.pZ(r.gix(),n) -g.toString -e=g}a7.a.toString -g=a7.pZ(a8,m) -d=g==null?a7.pZ(s.x,m):g -if(d==null){g=a7.pZ(r.gix(),m) -g.toString -d=g}c=a7.gfB() -c.E(0,B.a3) -a7.a.toString -g=s.d -b=g==null?a8:g.P(c) -a=b -if(a==null){b=r.ge3().a.$1(c) -b.toString -a=b}a0=a7.gfB() -a0.E(0,B.ad) -a7.a.toString -b=g==null?a8:g.P(a0) -a1=b -if(a1==null){b=r.ge3().a.$1(a0) -b.toString -a1=b}n.E(0,B.ag) -a7.a.toString -b=g==null?a8:g.P(n) -if(b==null){k=k?a8:A.ao(31,l.gl(l)>>>16&255,l.gl(l)>>>8&255,l.gl(l)&255) -a2=k}else a2=b -if(a2==null){k=r.ge3().a.$1(n) -k.toString -a2=k}m.E(0,B.ag) -a7.a.toString -k=g==null?a8:g.P(m) -if(k==null){k=j?a8:A.ao(31,h.gl(h)>>>16&255,h.gl(h)>>>8&255,h.gl(h)&255) -a3=k}else a3=k -if(a3==null){k=r.ge3().a.$1(m) -k.toString -a3=k}if(a7.ot$!=null){a1=a7.gfB().t(0,B.au)?a2:a3 -a=a7.gfB().t(0,B.au)?a2:a3}a7.a.toString -a4=a7.gfB() -a7.a.toString -k=s.c -k=k==null?a8:k.P(a4) -a5=k -if(a5==null){k=r.go6().P(a4) -k.toString -a5=k}a7.a.toString -a6=s.e -if(a6==null)a6=r.gho() -k=a7.a.c -j=a7.d -g=a7.kB$ -g===$&&A.c() -j.sbv(0,g) -g=a7.vN$ -g===$&&A.c() -j.sZq(g) -g=a7.vP$ -g===$&&A.c() -j.sZs(g) -g=a7.vO$ -g===$&&A.c() -j.sZt(g) -j.sXR(a3) -j.sZr(a2) -j.smZ(a1) -j.skC(a) -j.sho(a6) -j.sWG(a7.ot$) -j.sra(a7.gfB().t(0,B.a3)) -j.sYd(a7.gfB().t(0,B.ad)) -j.sAo(i) -j.sXQ(f) -j.so6(a5) -j.sl(0,a7.a.c) -j.satm(a7.e) -a7.a.toString -g=s.w -j.scr(0,g==null?r.gcr(r):g) -j.salw(e) -j.saqH(d) -j=a7.aml(!1,a8,new A.dy(new A.asg(a7,s),t.bN),j,o) -return new A.bL(A.c7(a8,a8,a8,a8,a8,a8,k,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8,a8),!1,!1,!1,!1,j,a8)}} -A.asf.prototype={ -$1(a){if(a.t(0,B.x))return null -if(a.t(0,B.au)){this.a.a.toString -return null}return null}, -$S:61} -A.asg.prototype={ -$1(a){var s -this.a.a.toString -s=A.cD(null,a,t.WV) -if(s==null)s=null -return s==null?B.cx.P(a):s}, -$S:100} -A.Vb.prototype={ -so6(a){if(J.e(this.db,a))return -this.db=a -this.T()}, -sl(a,b){if(this.dx===b)return -this.dx=b -this.T()}, -satm(a){if(this.dy==a)return -this.dy=a -this.T()}, -scr(a,b){if(J.e(this.fr,b))return -this.fr=b -this.T()}, -salw(a){if(J.e(this.fx,a))return -this.fx=a -this.T()}, -saqH(a){if(J.e(this.fy,a))return -this.fy=a -this.T()}, -RQ(a,b){var s=1-Math.abs(b-0.5)*2,r=18-s*2,q=a.a+s,p=a.b+s -return new A.y(q,p,q+r,p+r)}, -P9(a){var s,r=this.e -if(a>=0.25)r.toString -else{s=this.f -s.toString -r.toString -r=A.E(s,r,a*4) -r.toString}return r}, -FN(a,b,c,d){a.cY(this.fr.jh(b),c) -this.fr.mx(d).ap(a,b)}, -FO(a,b,c,d){var s,r=$.ad().c_(),q=b.a,p=b.b,o=q+2.6999999999999997,n=p+8.1 -if(c<0.5){s=A.kV(B.Mo,B.uq,c*2) -s.toString -r.eh(0,o,n) -r.cc(0,q+s.a,p+s.b)}else{s=A.kV(B.uq,B.MC,(c-0.5)*2) -s.toString -r.eh(0,o,n) -r.cc(0,q+7.2,p+12.6) -r.cc(0,q+s.a,p+s.b)}a.cY(r,d)}, -FP(a,b,c,d){var s,r=A.kV(B.Mq,B.up,1-c) -r.toString -s=A.kV(B.up,B.Mg,c) -s.toString -a.hD(b.Y(0,r),b.Y(0,s),d)}, -ap(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g=this -g.YY(a,b.jz(B.e)) -s=$.ad() -r=s.b1() -q=g.db -q.toString -r.saf(0,q) -r.sbC(0,B.Q) -r.seP(2) -p=t.EP.a(b.eB(0,2).Z(0,B.Pa.eB(0,2))) -q=g.a.a -o=q.gb4(q) -q=o===B.aM||o===B.W -n=g.a -m=q?n.gl(n):1-n.gl(n) -if(g.dy===!1||g.dx===!1){l=g.dx===!1?1-m:m -k=g.RQ(p,l) -j=s.b1() -j.saf(0,g.P9(l)) -s=g.fx -if(l<=0.5){q=g.fy -q.toString -s.toString -g.FN(a,k,j,A.aR(q,s,l))}else{s.toString -g.FN(a,k,j,s) -i=(l-0.5)*2 -if(g.dy==null||g.dx==null)g.FP(a,p,i,r) -else g.FO(a,p,i,r)}}else{k=g.RQ(p,1) -j=s.b1() -j.saf(0,g.P9(1)) -s=g.fx -s.toString -g.FN(a,k,j,s) -if(m<=0.5){i=1-m*2 -s=g.dy -if(s===!0)g.FO(a,p,i,r) -else g.FP(a,p,i,r)}else{h=(m-0.5)*2 -s=g.dx -if(s===!0)g.FO(a,p,h,r) -else g.FP(a,p,h,r)}}}} -A.asb.prototype={ -gix(){return A.b1Q(new A.ase(this))}, -gic(){return new A.dy(new A.asc(this),t.h2)}, -go6(){return new A.bJ(B.j,t.h9)}, -ge3(){return new A.dy(new A.asd(this),t._s)}, -gho(){return 20}, -gkN(){return this.y.e}, -giu(){return this.y.z}, -gcr(a){return B.NN}} -A.ase.prototype={ -$1(a){if(a.t(0,B.x)){if(a.t(0,B.au))return B.lO -return new A.bk(this.a.y.ch,2,B.I,-1)}if(a.t(0,B.au))return B.lO -return new A.bk(this.a.y.k4,2,B.I,-1)}, -$S:282} -A.asc.prototype={ -$1(a){if(a.t(0,B.x)){if(a.t(0,B.au))return this.a.y.ch -return B.C}if(a.t(0,B.au))return this.a.z.f -return B.C}, -$S:24} -A.asd.prototype={ -$1(a){var s,r -if(a.t(0,B.ag)){s=this.a.gic().a.$1(a) -r=J.bh(s) -return A.ao(31,r.gl(s)>>>16&255,r.gl(s)>>>8&255,r.gl(s)&255)}if(a.t(0,B.ad))return this.a.y.dx -if(a.t(0,B.a3))return this.a.y.cx -return B.C}, -$S:24} -A.JA.prototype={ -bY(){this.cR() -this.cA() -this.ep()}, -n(){var s=this,r=s.aZ$ -if(r!=null)r.H(0,s.ge8()) -s.aZ$=null -s.aP()}} -A.JB.prototype={ -aE(){var s,r=this,q=null -r.aV() -s=A.bO(q,B.F,q,!r.a.c?0:1,r) -r.kA$=s -r.kB$=A.ci(B.ce,s,B.cf) -s=A.bO(q,B.aE,q,q,r) -r.lA$=s -r.vN$=A.ci(B.af,s,q) -s=A.bO(q,B.dV,q,r.mP$||r.mO$?1:0,r) -r.r_$=s -r.vO$=A.ci(B.af,s,q) -s=A.bO(q,B.dV,q,r.mP$||r.mO$?1:0,r) -r.r0$=s -r.vP$=A.ci(B.af,s,q)}, -n(){var s=this,r=s.kA$ -r===$&&A.c() -r.n() -r=s.lA$ -r===$&&A.c() -r.n() -r=s.r_$ -r===$&&A.c() -r.n() -r=s.r0$ -r===$&&A.c() -r.n() -s.a5c()}} -A.u7.prototype={ -gA(a){var s=this -return A.T(s.a,s.gic(),s.go6(),s.ge3(),s.gho(),s.gkN(),s.giu(),s.gcr(s),s.gix(),B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.Y(b)!==A.u(s))return!1 -return b instanceof A.u7&&b.gic()==s.gic()&&b.go6()==s.go6()&&b.ge3()==s.ge3()&&b.gho()==s.gho()&&b.gkN()==s.gkN()&&J.e(b.giu(),s.giu())&&J.e(b.gcr(b),s.gcr(s))&&J.e(b.gix(),s.gix())}, -gic(){return this.b}, -go6(){return this.c}, -ge3(){return this.d}, -gho(){return this.e}, -gkN(){return this.f}, -giu(){return this.r}, -gcr(a){return this.w}, -gix(){return this.x}} -A.Vd.prototype={} -A.zM.prototype={ -gA(a){var s=this -return A.cn([s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,s.as,s.at,s.ax,s.ay,s.ch,s.CW,s.cx,s.cy,s.db])}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.Y(b)!==A.u(s))return!1 -return b instanceof A.zM&&b.a==s.a&&J.e(b.b,s.b)&&J.e(b.c,s.c)&&J.e(b.d,s.d)&&J.e(b.e,s.e)&&J.e(b.f,s.f)&&J.e(b.r,s.r)&&J.e(b.w,s.w)&&J.e(b.x,s.x)&&b.y==s.y&&J.e(b.z,s.z)&&J.e(b.Q,s.Q)&&J.e(b.as,s.as)&&J.e(b.at,s.at)&&J.e(b.ax,s.ax)&&J.e(b.ay,s.ay)&&J.e(b.ch,s.ch)&&b.CW==s.CW&&b.cx==s.cx&&b.cy==s.cy&&J.e(b.db,s.db)}} -A.Vg.prototype={} -A.LJ.prototype={ -gaf_(){var s=this.y -return 2*s}, -gaeN(){var s=this.y -return 2*s}, -G(a){var s,r,q,p,o,n=this,m=null,l=A.a2(a),k=l.p2.w.cH(m),j=n.d -switch(A.TG(j).a){case 0:k=k.cH(l.fy) -break -case 1:k=k.cH(l.fx) -break}s=n.gaf_() -r=n.gaeN() -q=n.c -if(q==null)q=m -else{p=A.bD(a,m,t.w).w.o9(1) -o=l.ok.cH(k.b) -p=A.km(A.kP(A.v3(A.jr(q,m,m,B.bm,!0,k,m,m,B.aH),o,m),p,m),m,m) -q=p}return new A.z1(q,new A.bM(j,m,m,m,m,m,B.lU),m,new A.ar(s,r,s,r),B.B,B.F,m,m)}} -A.M5.prototype={ -j(a,a0){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b=this -if(a0==null)return!1 -if(b===a0)return!0 -if(J.Y(a0)!==A.u(b))return!1 -if(a0 instanceof A.M5)if(a0.a===b.a){s=a0.b -r=b.b -if(s.j(0,r)){q=a0.c -p=b.c -if(q.j(0,p)){o=a0.d -if(o==null)o=s -n=b.d -if(o.j(0,n==null?r:n)){o=a0.e -if(o==null)o=q -n=b.e -if(o.j(0,n==null?p:n)){o=a0.f -n=b.f -if(o.j(0,n)){m=a0.r -l=b.r -if(m.j(0,l)){k=a0.w -if(k==null)k=o -j=b.w -if(k.j(0,j==null?n:j)){k=a0.x -if(k==null)k=m -j=b.x -if(k.j(0,j==null?l:j)){k=a0.y -j=k==null -i=j?o:k -h=b.y -g=h==null -if(i.j(0,g?n:h)){i=a0.z -f=i==null -e=f?m:i -d=b.z -c=d==null -if(e.j(0,c?l:d)){e=a0.Q -if(e==null)o=j?o:k -else o=e -k=b.Q -if(k==null)n=g?n:h -else n=k -if(o.j(0,n)){o=a0.as -if(o==null)o=f?m:i -n=b.as -if(n==null)n=c?l:d -if(o.j(0,n)){o=a0.at -n=b.at -if(o.j(0,n)){m=a0.ax -l=b.ax -if(m.j(0,l)){k=a0.ay -o=k==null?o:k -k=b.ay -if(o.j(0,k==null?n:k)){o=a0.ch -if(o==null)o=m -n=b.ch -if(o.j(0,n==null?l:n))if(a0.CW.j(0,b.CW)){o=a0.cx -n=b.cx -if(o.j(0,n)){m=a0.cy -l=b.cy -if(m.j(0,l)){k=a0.db -j=b.db -if(k.j(0,j)){i=a0.dx -if(i==null)i=m -h=b.dx -if(i.j(0,h==null?l:h)){i=a0.dy -if(i==null)i=k -h=b.dy -if(i.j(0,h==null?j:h)){i=a0.fr -if(i==null)i=o -h=b.fr -if(i.j(0,h==null?n:h)){i=a0.fx -o=i==null?o:i -i=b.fx -if(o.j(0,i==null?n:i)){o=a0.fy -if(o==null)o=B.k -n=b.fy -if(o.j(0,n==null?B.k:n)){o=a0.go -if(o==null)o=B.k -n=b.go -if(o.j(0,n==null?B.k:n)){o=a0.id -if(o==null)o=k -n=b.id -if(o.j(0,n==null?j:n)){o=a0.k1 -if(o==null)o=m -n=b.k1 -if(o.j(0,n==null?l:n)){o=a0.k2 -q=o==null?q:o -o=b.k2 -if(q.j(0,o==null?p:o)){q=a0.k3 -s=q==null?s:q -q=b.k3 -s=s.j(0,q==null?r:q)}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1 -else s=!1}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1 -else s=!1 -return s}, -gA(b1){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7=this,a8=a7.b,a9=a7.c,b0=a7.d -if(b0==null)b0=a8 -s=a7.e -if(s==null)s=a9 -r=a7.f -q=a7.r -p=a7.w -if(p==null)p=r -o=a7.x -if(o==null)o=q -n=a7.y -m=n==null -l=m?r:n -k=a7.z -j=k==null -i=j?q:k -h=a7.Q -if(h==null){if(m)n=r}else n=h -m=a7.as -if(m==null)m=j?q:k -k=a7.at -j=a7.ax -h=a7.ay -if(h==null)h=k -g=a7.ch -if(g==null)g=j -f=a7.cx -e=a7.cy -d=a7.db -c=a7.dx -if(c==null)c=e -b=a7.dy -if(b==null)b=d -a=a7.fr -if(a==null)a=f -a0=a7.fx -if(a0==null)a0=f -a1=a7.fy -if(a1==null)a1=B.k -a2=a7.go -if(a2==null)a2=B.k -a3=a7.id -if(a3==null)a3=d -a4=a7.k1 -if(a4==null)a4=e -a5=a7.k2 -if(a5==null)a5=a9 -a6=a7.k3 -return A.T(a7.a,a8,a9,b0,s,r,q,p,o,l,i,n,m,k,j,h,g,a7.CW,f,A.T(e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6==null?a8:a6,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a))}} -A.Vk.prototype={} -A.r8.prototype={} -A.A9.prototype={ -gA(a){var s=this -return A.T(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,s.as,s.at,B.a,B.a,B.a,B.a,B.a,B.a)}, -j(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.Y(b)!==A.u(r))return!1 -if(b instanceof A.A9)if(J.e(b.a,r.a))if(b.b==r.b)if(b.c==r.c)if(b.d==r.d)if(J.e(b.e,r.e))if(b.f==r.f)if(b.r==r.r)if(J.e(b.w,r.w))if(b.x==r.x)if(b.y==r.y)if(b.z==r.z)if(b.Q==r.Q)s=!0 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -return s}} -A.W_.prototype={} -A.Aa.prototype={ -gA(a){var s=this -return A.cn([s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,s.as,s.at,s.ax,s.ay,s.ch,s.CW,s.cx,s.cy,s.db,s.dx,s.dy,s.fr,s.fx,s.fy,s.go,s.id,s.k1,s.k2,s.k3,s.k4,s.ok,s.p1])}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -return b instanceof A.Aa&&J.e(b.a,s.a)&&b.b==s.b&&J.e(b.c,s.c)&&J.e(b.d,s.d)&&J.e(b.e,s.e)&&J.e(b.f,s.f)&&J.e(b.r,s.r)&&J.e(b.w,s.w)&&J.e(b.x,s.x)&&J.e(b.y,s.y)&&J.e(b.z,s.z)&&b.Q==s.Q&&b.as==s.as&&b.at==s.at&&b.ax==s.ax&&b.ay==s.ay&&J.e(b.ch,s.ch)&&J.e(b.CW,s.CW)&&b.cx==s.cx&&b.cy==s.cy&&b.db==s.db&&J.e(b.dx,s.dx)&&b.dy==s.dy&&J.e(b.fr,s.fr)&&J.e(b.fx,s.fx)&&J.e(b.fy,s.fy)&&J.e(b.go,s.go)&&J.e(b.id,s.id)&&J.e(b.k1,s.k1)&&J.e(b.k2,s.k2)&&J.e(b.k3,s.k3)&&b.k4==s.k4&&J.e(b.ok,s.ok)&&!0}} -A.W1.prototype={} -A.Wc.prototype={} -A.a77.prototype={ -rW(a){return B.o}, -AN(a,b,c,d){return B.ai}, -rV(a,b){return B.e}} -A.a1T.prototype={} -A.MH.prototype={ -G(a){var s=null,r=A.bD(a,B.bo,t.w).w.f.b+8 -return new A.bY(new A.aF(8,r,8,8),new A.i6(new A.MI(this.c.Z(0,new A.k(8,r))),A.cz(A.ha(B.F,B.lM,A.eV(this.d,B.v,B.G,B.bH),B.cA,s,1,s,s,s,s,s,B.dd),s,222),s),s)}} -A.ux.prototype={ -G(a){var s=null -return A.cz(A.aL4(this.d,this.c,A.aEf(B.cy,s,s,s,s,B.bN,s,s,B.bN,A.a2(a).ax.a===B.Y?B.j:B.J,s,B.Pe,B.Fi,s,B.kg,s,s,s,s)),s,1/0)}} -A.MN.prototype={ -G(a){var s,r,q,p,o,n,m,l,k,j,i,h=null -A.a2(a) -s=A.a2(a).bd -r=t.w -q=A.bD(a,B.i2,r).w -p=q.e.Y(0,B.Fl) -o=new A.at5(a,A.a2(a).p3,A.a2(a).ok,h,24,h,h,B.ez,B.a0,h,h,h,h) -q=s.f -if(q==null){q=o.f -q.toString}n=s.a -if(n==null)n=A.a2(a).ay -m=s.b -if(m==null){m=o.b -m.toString}l=s.c -if(l==null)l=o.gdu(o) -k=s.d -if(k==null)k=o.d -j=this.z -i=new A.fd(q,h,h,new A.ft(B.B6,A.ha(B.F,h,this.as,B.m,n,m,h,l,j,k,h,B.dd),h),h) -return new A.z6(p,A.kP(i,A.bD(a,h,r).w.ZN(!0,!0,!0,!0),h),B.cc,B.aE,h,h)}} -A.Ag.prototype={} -A.a78.prototype={ -$3(a,b,c){var s=new A.eT(this.a,null),r=new A.pb(this.b.a,s,null) -r=A.RY(!0,r,B.z,!0) -return r}, -$C:"$3", -$R:3, -$S:284} -A.at5.prototype={ -gfa(){return this.as.f}, -gdF(a){return A.a2(this.z).ay}, -gdu(a){return A.a2(this.z).k2}, -gfW(){return this.Q.r}, -gJ0(){return this.Q.w}, -gIk(){return B.z}} -A.uy.prototype={ -gA(a){return J.C(this.e)}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.Y(b)!==A.u(s))return!1 -return b instanceof A.uy&&J.e(b.gdF(b),s.gdF(s))&&b.b==s.b&&J.e(b.gdu(b),s.gdu(s))&&J.e(b.gen(),s.gen())&&J.e(b.e,s.e)&&J.e(b.f,s.f)&&J.e(b.gfa(),s.gfa())&&J.e(b.gfW(),s.gfW())&&J.e(b.gJ0(),s.gJ0())&&J.e(b.gIk(),s.gIk())}, -gdF(a){return this.a}, -gdu(a){return this.c}, -gen(){return this.d}, -gfW(){return this.r}, -gJ0(){return this.w}, -gIk(){return this.x}, -gfa(){return this.y}} -A.We.prototype={} -A.MT.prototype={ -G(a){var s,r,q,p,o,n,m,l=null -A.a2(a) -s=A.aHZ(a) -r=A.aLL(a) -q=s.b -if(q==null){p=r.b -p.toString -q=p}o=s.c -if(o==null){p=r.c -p.toString -o=p}n=s.d -if(n==null){p=r.d -p.toString -n=p}m=s.e -if(m==null){p=r.e -p.toString -m=p}return A.cz(A.km(A.cC(l,l,B.m,l,l,new A.bM(l,l,new A.d1(B.n,B.n,A.aXh(a,l,o),B.n),l,l,l,B.D),l,o,new A.ff(n,0,m,0),l,l,l,l),l,l),q,l)}} -A.at7.prototype={ -gaf(a){return A.a2(this.f).CW}} -A.uz.prototype={ -gA(a){var s=this -return A.T(s.gaf(s),s.b,s.c,s.d,s.e,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.Y(b)!==A.u(s))return!1 -return b instanceof A.uz&&J.e(b.gaf(b),s.gaf(s))&&b.b==s.b&&b.c==s.c&&b.d==s.d&&b.e==s.e}, -gaf(a){return this.a}} -A.Wi.prototype={} -A.Ar.prototype={ -gA(a){var s=this -return A.T(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.Y(b)!==A.u(s))return!1 -return b instanceof A.Ar&&J.e(b.a,s.a)&&J.e(b.b,s.b)&&b.c==s.c&&J.e(b.d,s.d)&&J.e(b.e,s.e)&&J.e(b.f,s.f)&&J.e(b.r,s.r)&&b.w==s.w}} -A.Ws.prototype={} -A.Wu.prototype={ -ap(a,b){var s=null,r=b.b,q=A.R(this.r.$0(),0,Math.max(r-48,0)),p=t.Y,o=A.R(q+48,Math.min(48,r),r),n=this.f -q=new A.ay(q,0,p).a7(0,n.gl(n)) -this.w.hK(a,new A.k(0,q),new A.v6(s,s,s,s,new A.Q(b.a-0,new A.ay(o,r,p).a7(0,n.gl(n))-q),s))}, -eE(a){var s,r=this -if(a.b.j(0,r.b))if(a.c===r.c)if(a.d===r.d)s=a.f!==r.f -else s=!0 -else s=!0 -else s=!0 -return s}} -A.xH.prototype={ -ae(){return new A.xI(B.i,this.$ti.i("xI<1>"))}} -A.xI.prototype={ -a9b(a){var s,r,q=$.av.ah$.f.a.b -switch((q==null?A.tu():q).a){case 0:s=!1 -break -case 1:s=!0 -break -default:s=null}if(a&&s){q=this.a -r=q.c.DW(q.e,q.f.d,q.r) -this.a.c.eb.i5(r.d,B.iQ,B.aE)}}, -acf(){var s,r=this.a -r=r.c.ah[r.r] -s=this.c -s.toString -A.jF(s,!1).Ll(new A.j7(r.f.r,this.$ti.i("j7<1>")))}, -G(a){var s,r,q,p,o,n=this,m=null,l=n.a,k=l.c,j=0.5/(k.ah.length+1.5) -l=l.r -s=k.go -if(l===k.b6){s.toString -r=A.ci(B.zM,s,m)}else{q=A.R(0.5+(l+1)*j,0,1) -p=A.R(q+1.5*j,0,1) -s.toString -r=A.ci(new A.e7(q,p,B.B),s,m)}l=n.a -k=l.d -s=l.c -l=l.r -o=A.vd(l===s.b6,m,!0,A.cC(m,s.ah[l],B.m,m,m,m,m,s.V,m,k,m,m,m),m,!0,m,m,m,m,m,n.ga9a(),m,m,m,n.gace(),m,m,m,m,m) -o=A.iI(!1,o,r) -o=A.alK(o,m,B.L3) -return o}} -A.xG.prototype={ -ae(){return new A.Gn(B.i,this.$ti.i("Gn<1>"))}} -A.Gn.prototype={ -aE(){var s,r=this -r.aV() -s=r.a.c.go -s.toString -r.d=A.ci(B.GN,s,B.GO) -s=r.a.c.go -s.toString -r.e=A.ci(B.GP,s,B.zM)}, -G(a){var s,r,q,p,o,n,m,l,k,j,i,h=this,g=null -A.h9(a,B.b_,t.R).toString -s=h.a.c -r=A.b([],t.p) -for(q=s.ah,p=h.$ti.i("xH<1>"),o=0;o0?8+B.b.kV(B.b.bX(this.eX,0,a),new A.atg()):8}, -DW(a,b,c){var s,r,q,p,o=this,n=b-96,m=a.b,l=a.d,k=Math.min(l,b),j=o.Ml(c),i=Math.min(48,m),h=Math.max(b-48,k),g=o.eX,f=o.b6 -l-=m -s=m-j-(g[f]-l)/2 -r=B.bW.gc6(B.bW)+B.bW.gca(B.bW) -if(o.ah.length!==0)r+=B.b.kV(g,new A.ath()) -q=Math.min(n,r) -p=s+q -if(sh){p=Math.max(k,h) -s=p-q}g=g[f]/2 -l=k-l/2 -if(p-gn?Math.min(Math.max(0,j-(m-s)),r-q):0)}, -gqn(){return this.fS}} -A.atf.prototype={ -$2(a,b){var s=this.a -return new A.xJ(s,b,s.fR,s.c1,s.b6,s.dI,s.am,!0,s.dJ,null,s.$ti.i("xJ<1>"))}, -$S(){return this.a.$ti.i("xJ<1>(S,ar)")}} -A.atg.prototype={ -$2(a,b){return a+b}, -$S:72} -A.ath.prototype={ -$2(a,b){return a+b}, -$S:72} -A.xJ.prototype={ -G(a){var s=this,r=s.c -if(r.eb==null)r.eb=A.wq(r.DW(s.r,s.d.d,s.w).d) -return A.aDD(new A.eT(new A.ate(s,A.dd(a),new A.xG(r,s.f,s.r,s.d,s.Q,!0,s.at,null,s.$ti.i("xG<1>"))),null),a,!0,!0,!0,!0)}} -A.ate.prototype={ -$1(a){var s=this.a -return new A.i6(new A.Wv(s.r,s.c,this.b,s.$ti.i("Wv<1>")),new A.pb(s.y.a,this.c,null),null)}, -$S:206} -A.y7.prototype={ -aD(a){var s=new A.a__(this.e,null,A.af(t.T)) -s.aC() -s.saW(null) -return s}, -aH(a,b){b.v=this.e}} -A.a__.prototype={ -bs(){var s,r=this -r.pz() -s=r.gq(r) -r.v.$1(s)}} -A.Wt.prototype={ -G(a){var s=null -return A.cC(this.d,this.c,B.m,s,B.B7,s,s,s,s,s,s,s,s)}} -A.nI.prototype={} -A.uC.prototype={ -ae(){return new A.xF(B.i,this.$ti.i("xF<1>"))}} -A.xF.prototype={ -gcv(a){var s -this.a.toString -s=this.r -return s}, -aE(){var s,r,q=this -q.aV() -q.Uo() -s=q.a -s.toString -if(q.r==null)q.r=A.qA(!0,A.u(s).k(0),!0,!0,null,null,!1) -s=t.g -r=t.d -q.w=A.l([B.hQ,new A.cH(new A.atb(q),new A.b7(A.b([],s),r),t.wY),B.zS,new A.cH(new A.atc(q),new A.b7(A.b([],s),r),t.nz)],t.A,t.od)}, -n(){var s,r=this -B.b.F($.av.c1$,r) -r.Hl() -s=r.r -if(s!=null)s.n() -r.aP()}, -Hl(){var s,r,q=this.e -if(q!=null)if(q.gwd()){s=q.a -if(s!=null){r=q.goD() -B.b.mT(s.e,A.aEE(q)).ez(0) -s.yL(!1) -if(r){s.u9(A.pH()) -s.F7()}}}this.f=this.e=null}, -aM(a){var s,r=this -r.b2(a) -s=r.a -s.toString -if(r.r==null)r.r=A.qA(!0,A.u(s).k(0),!0,!0,null,null,!1) -r.Uo()}, -Uo(){var s,r,q,p=this.a -if(p.c.length!==0)s=!1 -else s=!0 -if(s){this.d=null -return}for(s=p.c,r=s.length,q=0;q>")) -for(q=a0.i("y7<1>"),p=0;o=b.a.c,p?>") -g=a0.i("b3?>") -f=A.oA(B.bS) -e=A.b([],t.wi) -d=A.eu(a,t.u) -c=$.ai -b.e=new A.Go(r,B.dX,q,o,8,l,m,48,a,a,!0,a,k,"Dismiss",a,a,j,new A.bB(a,a0.i("bB>>")),new A.bB(a,t.C),new A.rm(),a,0,new A.b3(new A.ae(i,h),g),f,e,B.hq,d,new A.b3(new A.ae(c,h),g),a0.i("Go<1>")) -a0=b.gcv(b) -if(a0!=null)a0.kW() -a0=b.e -a0.toString -n.n9(a0).bQ(0,new A.at9(b),t.H) -b.a.toString}, -gadP(){var s,r=this -if(r.gpM()){r.a.toString -s=r.c -s.toString -switch(A.a2(s).ax.a.a){case 1:return B.dQ -case 0:return B.E}}else{r.a.toString -s=r.c -s.toString -switch(A.a2(s).ax.a.a){case 1:return B.cd -case 0:return B.iK}}}, -gpM(){var s=this.a -return s.c.length!==0&&!0}, -G(a){var s,r,q,p,o,n,m,l,k=this,j=null,i=A.ct(a,B.A9),h=i==null?j:i.grr(i) -if(h==null){s=A.Fs(a).giq() -h=s.a>s.b?B.he:B.hd}i=k.f -if(i==null){k.f=h -i=h}if(h!==i){k.Hl() -k.f=h}i=k.a -r=A.a8(i.c,!0,t.l7) -k.a.toString -if(!k.gpM())k.a.toString -A.aHw(a) -if(r.length===0)q=B.ai -else{i=k.d -if(i==null)i=j -k.a.toString -p=A.W(r).i("a1<1,an>") -p=A.a8(new A.a1(r,new A.ata(k),p),!0,p.i("am.E")) -q=new A.Ot(B.ig,i,p,j)}if(k.gpM()){i=k.gHP() -i.toString}else{i=k.gHP() -i.toString -i=i.cH(A.a2(a).ch)}p=a.an(t.I) -p.toString -p=B.z.P(p.w) -k.a.toString -o=t.p -n=A.b([],o) -k.a.toString -n.push(q) -m=k.gadP() -k.a.toString -n.push(A.v3(B.Go,new A.d6(24,j,j,j,j,m,j,j),j)) -h=A.jr(A.cC(j,A.e0(n,B.v,B.KR,B.bH,j),B.m,j,j,j,j,j,j,p,j,j,j),j,j,B.bm,!0,i,j,j,B.aH) -if(a.an(t.U2)==null){k.a.toString -i=A.cC(j,j,B.m,j,j,B.Bb,j,1,j,j,j,j,j) -h=A.lb(B.bR,A.b([h,A.w1(8,i,j,j,0,0,j,j)],o),B.S,B.bM,j)}i=A.aE(t.ui) -if(!k.gpM())i.E(0,B.x) -l=A.cD(B.cx,i,t.Pb) -k.a.toString -i=k.w -i===$&&A.c() -p=k.gpM()?k.ga9c():j -o=k.gpM() -k.a.toString -n=k.gcv(k) -k.a.toString -m=A.a2(a) -k.a.toString -i=A.pM(i,A.vd(!1,j,o,h,j,!1,m.cx,n,j,j,l,j,j,j,j,p,j,j,j,j,j)) -return new A.bL(A.c7(j,j,j,j,j,!0,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j),!1,!1,!1,!1,i,j)}} -A.atb.prototype={ -$1(a){return this.a.FQ()}, -$S:286} -A.atc.prototype={ -$1(a){return this.a.FQ()}, -$S:287} -A.at8.prototype={ -$1(a){var s=this.a.e -if(s==null)return -s.eX[this.b]=a.b}, -$S:114} -A.at9.prototype={ -$1(a){var s=this.a -s.Hl() -if(s.c==null||a==null)return -s.a.r.$1(a.a)}, -$S(){return this.a.$ti.i("b1(j7<1>?)")}} -A.ata.prototype={ -$1(a){var s -this.a.a.toString -s=A.cz(a,48,null) -return s}, -$S:288} -A.JI.prototype={} -A.As.prototype={ -gA(a){return A.T(this.a,this.b,this.c,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -j(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.Y(b)!==A.u(r))return!1 -if(b instanceof A.As)if(J.e(b.a,r.a))s=J.e(b.c,r.c) -else s=!1 -else s=!1 -return s}} -A.Ww.prototype={} -A.uH.prototype={ -vp(a){var s,r,q,p=A.a2(a),o=p.ax -A.a2(a) -s=o.db.a -r=s>>>16&255 -q=s>>>8&255 -s&=255 -s=A.qn(B.a0,B.F,o.b,A.ao(31,r,q,s),A.ao(97,r,q,s),B.bN,2,!0,B.c2,o.c,B.kE,B.kD,A.b4f(a),p.k2,B.ez,null,B.iw,p.e,p.p3.as,p.z) -return s}, -LL(a){var s -a.an(t.Gt) -s=A.a2(a) -return s.R.a}} -A.Gx.prototype={ -P(a){if(a.t(0,B.x))return this.b -return this.a}} -A.WE.prototype={ -P(a){var s -if(a.t(0,B.ag)){s=this.a.a -return A.ao(61,s>>>16&255,s>>>8&255,s&255)}if(a.t(0,B.ad)){s=this.a.a -return A.ao(20,s>>>16&255,s>>>8&255,s&255)}if(a.t(0,B.a3)){s=this.a.a -return A.ao(61,s>>>16&255,s>>>8&255,s&255)}return null}} -A.WC.prototype={ -P(a){var s=this -if(a.t(0,B.x))return 0 -if(a.t(0,B.ag))return s.a+6 -if(a.t(0,B.ad))return s.a+2 -if(a.t(0,B.a3))return s.a+2 -return s.a}} -A.WD.prototype={ -P(a){if(a.t(0,B.x))return this.b -return this.a}} -A.WG.prototype={ -vp(a){var s,r -A.a2(a) -s=A.ct(a,B.bQ) -s=s==null?null:s.c -r=A.a5q(B.F9,B.fv,B.Fb,s==null?1:s) -return this.a24(a).qv(new A.bJ(r,t.Ak))}} -A.WH.prototype={ -G(a){var s,r=null,q=A.ct(a,B.bQ),p=q==null?r:q.c -if(p==null)p=1 -if(p<=1)s=8 -else{q=A.a3(8,4,Math.min(p-1,1)) -q.toString -s=q}return A.e0(A.b([this.d,A.cz(r,r,s),new A.qx(1,B.nl,this.c,r)],t.p),B.v,B.G,B.bH,r)}} -A.a1U.prototype={} -A.a1V.prototype={} -A.a1W.prototype={} -A.a1X.prototype={} -A.Ax.prototype={ -gA(a){return J.C(this.a)}, -j(a,b){if(b==null)return!1 -if(this===b)return!0 -if(J.Y(b)!==A.u(this))return!1 -return b instanceof A.Ax&&J.e(b.a,this.a)}} -A.WF.prototype={} -A.AI.prototype={ -gA(a){var s=this -return A.T(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,null,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.Y(b)!==A.u(s))return!1 -return b instanceof A.AI&&J.e(b.a,s.a)&&J.e(b.b,s.b)&&J.e(b.c,s.c)&&J.e(b.d,s.d)&&J.e(b.e,s.e)&&J.e(b.f,s.f)&&J.e(b.r,s.r)&&J.e(b.w,s.w)&&J.e(b.x,s.x)&&J.e(b.y,s.y)&&J.e(b.z,s.z)&&!0}} -A.WL.prototype={} -A.AK.prototype={ -gA(a){return J.C(this.a)}, -j(a,b){if(b==null)return!1 -if(this===b)return!0 -if(J.Y(b)!==A.u(this))return!1 -return b instanceof A.AK&&J.e(b.a,this.a)}} -A.WP.prototype={} -A.AO.prototype={ -cP(a){var s=this -return s.f!==a.f||s.r!==a.r||s.w!==a.w||s.x!==a.x||!1}} -A.asV.prototype={ -k(a){return""}} -A.GE.prototype={ -I(){return"_FloatingActionButtonType."+this.b}} -A.ND.prototype={ -G(a5){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a=null,a0=A.a2(a5),a1=a0.az,a2=this.k1,a3=new A.ato(a2,!0,A.a2(a5),A.a2(a5).ax,a,a,a,a,a,6,6,8,a,12,a,!0,a,B.B0,B.B_,B.B2,B.B3,8,a,a,a),a4=a1.a -if(a4==null)a4=a3.gfT() -s=a1.b -if(s==null)s=a3.gdF(a3) -r=a1.c -if(r==null)r=a3.gkC() -q=a1.d -if(q==null)q=a3.gmZ() -p=a1.e -if(p==null)p=a3.gth() -o=a1.f -if(o==null){n=a3.f -n.toString -o=n}m=a1.r -if(m==null){n=a3.r -n.toString -m=n}l=a1.w -if(l==null){n=a3.w -n.toString -l=n}n=a1.x -k=n==null?a3.x:n -if(k==null)k=o -j=a1.y -if(j==null){n=a3.y -n.toString -j=n}i=a1.Q -if(i==null){n=a3.Q -n.toString -i=n}h=a1.as -if(h==null)h=a3.gjP() -n=a1.cy -g=(n==null?a3.gvH():n).cH(a4) -f=a1.z -if(f==null)f=a3.gcr(a3) -n=this.c -e=A.mb(n,new A.d6(h,a,a,a,a,a,a,a)) -switch(a2.a){case 0:d=a1.at -if(d==null){a2=a3.at -a2.toString -d=a2}break -case 1:d=a1.ax -if(d==null){a2=a3.ax -a2.toString -d=a2}break -case 2:d=a1.ay -if(d==null){a2=a3.ay -a2.toString -d=a2}break -case 3:d=a1.ch -if(d==null){a2=a3.ch -a2.toString -d=a2}c=a1.cx -if(c==null)c=a3.gvG() -a2=A.b([],t.p) -a2.push(n) -e=new A.Ve(new A.bY(c,A.e0(a2,B.v,B.G,B.bH,a),a),a) -break -default:d=a}b=new A.D2(this.z,new A.WA(a,a1.db),g,s,r,q,p,o,l,m,j,k,d,f,e,a0.e,a,!1,B.m,i,a) -return new A.vA(new A.qJ(B.CW,b,a),a)}} -A.WA.prototype={ -P(a){var s=A.cD(this.a,a,t.WV) -if(s==null)s=null -return s==null?B.cx.P(a):s}, -gqA(){return"MaterialStateMouseCursor(FloatActionButton)"}} -A.Ve.prototype={ -aD(a){var s=a.an(t.I) -s.toString -s=new A.HN(B.a0,s.w,null,A.af(t.T)) -s.aC() -s.saW(null) -return s}, -aH(a,b){var s=a.an(t.I) -s.toString -b.sbF(s.w)}} -A.HN.prototype={ -bf(a){return 0}, -b8(a){return 0}, -cg(a){var s,r=this.C$,q=a.a,p=a.b,o=a.c,n=a.d -if(r!=null){s=r.hQ(B.dF) -return new A.Q(Math.max(q,Math.min(p,s.a)),Math.max(o,Math.min(n,s.b)))}else return new A.Q(A.R(1/0,q,p),A.R(1/0,o,n))}, -bs(){var s=this,r=t.k.a(A.t.prototype.ga2.call(s)),q=s.C$,p=r.a,o=r.b,n=r.c,m=r.d -if(q!=null){q.bz(B.dF,!0) -q=s.C$ -q=Math.max(p,Math.min(o,q.gq(q).a)) -o=s.C$ -s.id=new A.Q(q,Math.max(n,Math.min(m,o.gq(o).b))) -s.uO()}else s.id=new A.Q(A.R(1/0,p,o),A.R(1/0,n,m))}} -A.ato.prototype={ -gfT(){return this.fx.r}, -gdF(a){return this.fx.f}, -gkC(){return this.fr.cx}, -gmZ(){return this.fr.dx}, -gth(){return this.fr.k3}, -gcr(a){return this.dx===B.A5?B.zd:B.iy}, -gjP(){return this.dx===B.Ww?36:24}, -gvG(){return new A.ff(this.dy&&this.dx===B.A5?16:20,0,20,0)}, -gvH(){return this.fr.p3.as.ant(1.2)}} -A.aa6.prototype={ -k(a){return"FloatingActionButtonLocation"}} -A.amt.prototype={ -np(a){var s=this.a04(a,0),r=a.c,q=a.b.b,p=a.a.b,o=a.w.b,n=r-p-Math.max(16,a.f.d-(a.r.b-r)+16) -if(o>0)n=Math.min(n,r-o-p-16) -return new A.k(s,(q>0?Math.min(n,r-q-p/2):n)+0)}} -A.a9n.prototype={} -A.a9m.prototype={ -a04(a,b){switch(a.y.a){case 0:return 16+a.e.a-b -case 1:return a.r.a-16-a.e.c-a.a.a+b}}} -A.ati.prototype={ -k(a){return"FloatingActionButtonLocation.endFloat"}} -A.aa5.prototype={ -k(a){return"FloatingActionButtonAnimator"}} -A.ax5.prototype={ -a03(a,b,c){if(c<0.5)return a -else return b}} -A.FB.prototype={ -gl(a){var s=this,r=s.w.x -r===$&&A.c() -if(r>>16&255,r.gl(r)>>>8&255,r.gl(r)&255) -return s}if(a.t(0,B.ad)){s=q.c -r=q.a -s=r==null?p:A.ao(20,r.gl(r)>>>16&255,r.gl(r)>>>8&255,r.gl(r)&255) -return s}if(a.t(0,B.a3)){s=q.b -r=q.a -s=r==null?p:A.ao(31,r.gl(r)>>>16&255,r.gl(r)>>>8&255,r.gl(r)&255) -return s}}if(a.t(0,B.ag)){s=q.d -r=q.a -s=r==null?p:A.ao(31,r.gl(r)>>>16&255,r.gl(r)>>>8&255,r.gl(r)&255) -return s}if(a.t(0,B.ad)){s=q.c -r=q.a -s=r==null?p:A.ao(20,r.gl(r)>>>16&255,r.gl(r)>>>8&255,r.gl(r)&255) -return s}if(a.t(0,B.a3)){s=q.b -r=q.a -s=r==null?p:A.ao(20,r.gl(r)>>>16&255,r.gl(r)>>>8&255,r.gl(r)&255) -return s}return p}, -k(a){return"{hovered: "+A.j(this.c)+", focused: "+A.j(this.b)+", pressed: "+A.j(this.d)+", otherwise: null}"}} -A.Xi.prototype={ -P(a){if(a.t(0,B.x))return this.b -return this.a}} -A.a21.prototype={} -A.nX.prototype={ -gA(a){return J.C(this.a)}, -j(a,b){if(b==null)return!1 -if(this===b)return!0 -if(J.Y(b)!==A.u(this))return!1 -return b instanceof A.nX&&J.e(b.a,this.a)}} -A.B9.prototype={ -xp(a,b,c){return A.adg(c,this.w)}, -cP(a){return!this.w.j(0,a.w)}} -A.Xk.prototype={} -A.Bd.prototype={ -gae_(){var s,r=this.e -if(r==null)return B.z -s=r.ge4(r) -return s}, -ae(){return new A.H_(new A.bB(null,t.C),B.i)}} -A.H_.prototype={ -acC(){this.e=null}, -eH(){var s=this.e -if(s!=null)s.n() -this.pA()}, -a7_(a){var s,r,q,p=this,o=p.e,n=p.a -if(o==null){o=n.e -n=A.aLC(a) -s=A.tJ(a,null) -r=A.aDx(a,t.zd) -r.toString -q=$.av.ah$.z.h(0,p.d).ga_() -q.toString -q=new A.Be(s,r,t.x.a(q),p.gacB()) -q.saO(o) -q.sYn(n) -r.At(q) -p.e=q}else{o.saO(n.e) -o=p.e -o.toString -o.sYn(A.aLC(a)) -o=p.e -o.toString -o.sls(A.tJ(a,null))}o=p.a.c -return o}, -G(a){var s=this,r=s.a.gae_() -s.a.toString -return new A.bY(r,new A.eT(s.ga6Z(),null),s.d)}} -A.Be.prototype={ -saO(a){var s,r=this -if(J.e(a,r.f))return -r.f=a -s=r.e -if(s!=null)s.n() -s=r.f -r.e=s==null?null:s.vj(r.gab_()) -r.a.av()}, -sYn(a){if(a===this.r)return -this.r=a -this.a.av()}, -sls(a){if(a.j(0,this.w))return -this.w=a -this.a.av()}, -ab0(){this.a.av()}, -n(){var s=this.e -if(s!=null)s.n() -this.lc()}, -D2(a,b){var s,r,q,p=this -if(p.e==null||!p.r)return -s=A.afy(b) -r=p.b -q=p.w.B1(r.gq(r)) -if(s==null){a.cQ(0) -a.a7(0,b.a) -p.e.hK(a,B.e,q) -a.cl(0)}else p.e.hK(a,s,q)}} -A.o2.prototype={ -aaK(a){var s -if(a===B.H&&!this.CW){s=this.ch -s===$&&A.c() -s.n() -this.lc()}}, -n(){var s=this.ch -s===$&&A.c() -s.n() -this.lc()}, -RT(a,b,c){var s,r,q=this -a.cQ(0) -s=q.f -if(s!=null)a.i8(0,s.cX(b,q.ax)) -switch(q.z.a){case 1:s=b.gaT() -r=q.Q -a.iZ(s,r==null?35:r,c) -break -case 0:s=q.as -if(!s.j(0,B.am))a.cC(A.aie(b,s.c,s.d,s.a,s.b),c) -else a.cT(b,c) -break}a.cl(0)}, -D2(a,b){var s,r,q,p=this,o=$.ad().b1(),n=p.e,m=p.ay -m===$&&A.c() -s=m.a -o.saf(0,A.ao(m.b.a7(0,s.gl(s)),n.gl(n)>>>16&255,n.gl(n)>>>8&255,n.gl(n)&255)) -r=A.afy(b) -n=p.at -if(n!=null)q=n.$0() -else{n=p.b -n=n.gq(n) -q=new A.y(0,0,0+n.a,0+n.b)}if(r==null){a.cQ(0) -a.a7(0,b.a) -p.RT(a,q,o) -a.cl(0)}else p.RT(a,q.cz(r),o)}} -A.aA6.prototype={ -$0(){var s=this.a -s=s.gq(s) -return new A.y(0,0,0+s.a,0+s.b)}, -$S:219} -A.aup.prototype={ -W1(a,b,c,d,e,f,g,a0,a1,a2,a3,a4){var s,r,q,p,o,n,m,l,k,j,i,h=null -if(a1==null){if(a2!=null){s=a2.$0() -r=new A.Q(s.c-s.a,s.d-s.b)}else r=a3.gq(a3) -s=Math.max(r.uX(0,B.e).gcB(),new A.k(0+r.a,0).Z(0,new A.k(0,0+r.b)).gcB())/2}else s=a1 -q=new A.Bf(a0,B.am,s,A.b3z(a3,d,a2),a4,c,f,e,a3,g) -p=e.v -o=A.bO(h,B.j2,h,h,p) -n=e.gdR() -o.bO() -m=o.cU$ -m.b=!0 -m.a.push(n) -o.bW(0) -q.cx=o -m=c.gl(c) -l=t.o -k=t.gD -q.CW=new A.aX(l.a(o),new A.o3(0,m>>>24&255),k.i("aX")) -m=A.bO(h,B.fs,h,h,p) -m.bO() -o=m.cU$ -o.b=!0 -o.a.push(n) -m.bW(0) -q.ch=m -o=t.Y -j=$.aPy() -i=o.i("f8") -q.ay=new A.aX(l.a(m),new A.f8(j,new A.ay(s*0.3,s+5,o),i),i.i("aX")) -p=A.bO(h,B.n_,h,h,p) -p.bO() -i=p.cU$ -i.b=!0 -i.a.push(n) -p.bO() -n=p.d6$ -n.b=!0 -n.a.push(q.gae0()) -q.db=p -n=c.gl(c) -i=$.aPz() -k=k.i("f8") -q.cy=new A.aX(l.a(p),new A.f8(i,new A.o3(n>>>24&255,0),k),k.i("aX")) -e.At(q) -return q}} -A.Bf.prototype={ -AY(a){var s=this.ch -s===$&&A.c() -s.e=B.F2 -s.bW(0) -s=this.cx -s===$&&A.c() -s.bW(0) -s=this.db -s===$&&A.c() -s.z=B.aB -s.ke(1,B.B,B.n_)}, -bb(a){var s,r=this,q=r.cx -q===$&&A.c() -q.ff(0) -q=r.cx.x -q===$&&A.c() -s=1-q -q=r.db -q===$&&A.c() -q.sl(0,s) -if(s<1){q=r.db -q.z=B.aB -q.ke(1,B.B,B.j2)}}, -ae1(a){if(a===B.W)this.n()}, -n(){var s=this,r=s.ch -r===$&&A.c() -r.n() -r=s.cx -r===$&&A.c() -r.n() -r=s.db -r===$&&A.c() -r.n() -s.lc()}, -D2(a,b){var s,r,q,p,o,n,m=this,l=m.cx -l===$&&A.c() -l=l.r -if(l!=null&&l.a!=null){l=m.CW -l===$&&A.c() -s=l.a -r=l.b.a7(0,s.gl(s))}else{l=m.cy -l===$&&A.c() -s=l.a -r=l.b.a7(0,s.gl(s))}q=$.ad().b1() -l=m.e -q.saf(0,A.ao(r,l.gl(l)>>>16&255,l.gl(l)>>>8&255,l.gl(l)&255)) -l=m.at -p=l!=null?l.$0():null -if(p!=null)s=p.gaT() -else{s=m.b -s=s.gq(s).jz(B.e)}o=m.ch -o===$&&A.c() -o=o.x -o===$&&A.c() -o=A.kV(m.z,s,B.aD.a7(0,o)) -o.toString -s=m.ay -s===$&&A.c() -n=s.a -n=s.b.a7(0,n.gl(n)) -m.YW(m.Q,a,o,l,m.f,q,n,m.ax,b)}} -A.aA7.prototype={ -$0(){var s=this.a -s=s.gq(s) -return new A.y(0,0,0+s.a,0+s.b)}, -$S:219} -A.auq.prototype={ -W1(a,b,c,d,e,f,g,h,i,j,k,a0){var s,r,q=null,p=i==null?A.b3G(k,d,j,h):i,o=new A.Bg(h,B.am,p,A.b3A(k,d,j),!d,a0,c,f,e,k,g),n=e.v,m=A.bO(q,B.fs,q,q,n),l=e.gdR() -m.bO() -s=m.cU$ -s.b=!0 -s.a.push(l) -m.bW(0) -o.CW=m -s=t.Y -r=t.o -o.ch=new A.aX(r.a(m),new A.ay(0,p,s),s.i("aX")) -n=A.bO(q,B.F,q,q,n) -n.bO() -s=n.cU$ -s.b=!0 -s.a.push(l) -n.bO() -l=n.d6$ -l.b=!0 -l.a.push(o.gae2()) -o.cy=n -l=c.gl(c) -o.cx=new A.aX(r.a(n),new A.o3(l>>>24&255,0),t.gD.i("aX")) -e.At(o) -return o}} -A.Bg.prototype={ -AY(a){var s=B.d.ec(this.as/1),r=this.CW -r===$&&A.c() -r.e=A.d2(0,s,0) -r.bW(0) -this.cy.bW(0)}, -bb(a){var s=this.cy -if(s!=null)s.bW(0)}, -ae3(a){if(a===B.W)this.n()}, -n(){var s=this,r=s.CW -r===$&&A.c() -r.n() -s.cy.n() -s.cy=null -s.lc()}, -D2(a,b){var s,r,q=this,p=$.ad().b1(),o=q.e,n=q.cx -n===$&&A.c() -s=n.a -p.saf(0,A.ao(n.b.a7(0,s.gl(s)),o.gl(o)>>>16&255,o.gl(o)>>>8&255,o.gl(o)&255)) -r=q.z -if(q.ax){o=q.b -o=o.gq(o).jz(B.e) -n=q.CW -n===$&&A.c() -n=n.x -n===$&&A.c() -r=A.kV(r,o,n)}r.toString -o=q.ch -o===$&&A.c() -n=o.a -n=o.b.a7(0,n.gl(n)) -q.YW(q.Q,a,r,q.at,q.f,p,n,q.ay,b)}} -A.o4.prototype={ -AY(a){}, -bb(a){}, -saf(a,b){if(b.j(0,this.e))return -this.e=b -this.a.av()}, -sJg(a){if(J.e(a,this.f))return -this.f=a -this.a.av()}, -YW(a,b,c,d,e,f,g,h,i){var s,r=A.afy(i) -b.cQ(0) -if(r==null)b.a7(0,i.a) -else b.aK(0,r.a,r.b) -if(d!=null){s=d.$0() -if(e!=null)b.i8(0,e.cX(s,h)) -else if(!a.j(0,B.am))b.o7(A.aie(s,a.c,a.d,a.a,a.b)) -else b.mw(s)}b.iZ(c,g,f) -b.cl(0)}} -A.vg.prototype={} -A.HG.prototype={ -cP(a){return this.f!==a.f}} -A.vc.prototype={ -a0d(a){return null}, -G(a){var s=this,r=a.an(t.sZ),q=r==null?null:r.f -return new A.GZ(s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.Q,s.z,s.as,s.at,s.ax,s.ay,s.ch,s.CW,s.cx,s.cy,s.db,s.dx,s.dy,s.fr,s.fx,s.fy,s.go,s.id,!1,s.k2,s.k3,s.k4,s.ok,q,s.ga0c(),s.gao2(),s.p1,null)}, -ao3(a){return!0}} -A.GZ.prototype={ -ae(){return new A.GY(A.m(t.R9,t.Pr),new A.b7(A.b([],t.ML),t.yw),null,B.i)}} -A.pg.prototype={ -I(){return"_HighlightType."+this.b}} -A.GY.prototype={ -gaqt(){var s=this.r -s=s.gaR(s) -s=new A.aL(s,new A.aun(),A.p(s).i("aL")) -return!s.ga8(s)}, -KN(a,b){var s,r=this.y,q=r.a,p=q.length -if(b){r.b=!0 -q.push(a)}else r.F(0,a) -s=q.length!==0 -if(s!==(p!==0)){r=this.a.p1 -if(r!=null)r.KN(this,s)}}, -Nb(a){var s=this.c -s.toString -this.ajo(s) -this.BY()}, -a1j(){return this.Nb(null)}, -Ki(){this.ao(new A.aum())}, -gek(){var s=this.a.p4 -if(s==null){s=this.x -s.toString}return s}, -w4(){var s,r,q=this -if(q.a.p4==null)q.x=A.aJj(null) -s=q.gek() -r=q.a -r.toString -s.ft(0,B.x,!(q.i_(r)||q.i0(r))) -q.gek().U(0,q.gow())}, -aE(){this.a5q() -this.w4() -$.av.ah$.f.a.d.E(0,this.gXu())}, -aM(a){var s,r,q,p,o=this -o.b2(a) -s=a.p4 -if(o.a.p4!=s){if(s!=null)s.H(0,o.gow()) -if(o.a.p4!=null){s=o.x -if(s!=null){s.ag$=$.aO() -s.aj$=0}o.x=null}o.w4()}s=o.a -if(s.cx!=a.cx||s.CW!==a.CW||!1){s=o.r -r=s.h(0,B.dA) -if(r!=null){q=r.ch -q===$&&A.c() -q.n() -r.lc() -o.M8(B.dA,!1,o.f)}p=s.h(0,B.A8) -if(p!=null){s=p.ch -s===$&&A.c() -s.n() -p.lc()}}if(!J.e(o.a.db,a.db))o.akC() -s=o.a -s.toString -s=o.i_(s)||o.i0(s) -if(s!==(o.i_(a)||o.i0(a))){s=o.gek() -q=o.a -q.toString -s.ft(0,B.x,!(o.i_(q)||o.i0(q))) -s=o.a -s.toString -if(!(o.i_(s)||o.i0(s))){o.gek().ft(0,B.ag,!1) -r=o.r.h(0,B.dA) -if(r!=null){s=r.ch -s===$&&A.c() -s.n() -r.lc()}}o.M8(B.dA,!1,o.f)}o.M7()}, -n(){var s,r=this -$.av.ah$.f.a.d.F(0,r.gXu()) -r.gek().H(0,r.gow()) -s=r.x -if(s!=null){s.ag$=$.aO() -s.aj$=0}r.aP()}, -gxo(){if(!this.gaqt()){var s=this.d -s=s!=null&&s.a!==0}else s=!0 -return s}, -a_X(a){switch(a.a){case 0:return B.F -case 1:case 2:return B.dV}}, -M8(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h=this,g=null,f=h.r,e=f.h(0,a),d=a.a -switch(d){case 0:h.gek().ft(0,B.ag,c) -break -case 1:if(b)h.gek().ft(0,B.ad,c) -break -case 2:break}if(a===B.dz){s=h.a.p1 -if(s!=null)s.KN(h,c)}s=e==null -if(c===(!s&&e.CW))return -if(c)if(s){s=h.a.fx -if(s==null)r=g -else{q=h.gek().a -r=s.a.$1(q)}if(r==null){s=h.c -s.toString -p=A.a2(s) -switch(d){case 0:r=h.a.fr -if(r==null)r=p.cy -break -case 2:r=h.a.dx -if(r==null)r=p.cx -break -case 1:r=h.a.dy -if(r==null)r=p.dx -break}}s=h.c.ga_() -s.toString -t.x.a(s) -q=h.c -q.toString -q=A.aDx(q,t.zd) -q.toString -o=h.a -o.toString -o=h.i_(o)||h.i0(o)?r:A.ao(0,r.gl(r)>>>16&255,r.gl(r)>>>8&255,r.gl(r)&255) -n=h.a -m=n.CW -l=n.cx -k=n.db -n=n.p2.$1(s) -j=h.c.an(t.I) -j.toString -i=h.a_X(a) -s=new A.o2(m,l,B.am,n,j.w,o,k,q,s,new A.auo(h,a)) -i=A.bO(g,i,g,g,q.v) -i.bO() -o=i.cU$ -o.b=!0 -o.a.push(q.gdR()) -i.bO() -o=i.d6$ -o.b=!0 -o.a.push(s.gaaJ()) -i.bW(0) -s.ch=i -o=s.e -o=o.gl(o) -s.ay=new A.aX(t.o.a(i),new A.o3(0,o>>>24&255),t.gD.i("aX")) -q.At(s) -f.m(0,a,s) -h.p8()}else{e.CW=!0 -f=e.ch -f===$&&A.c() -f.bW(0)}else{e.CW=!1 -f=e.ch -f===$&&A.c() -f.de(0)}switch(d){case 0:f=h.a.at -if(f!=null)f.$1(c) -break -case 1:if(b){f=h.a.ax -if(f!=null)f.$1(c)}break -case 2:break}}, -nj(a,b){return this.M8(a,!0,b)}, -akC(){var s,r,q,p=this -for(s=p.r,s=s.gaR(s),r=A.p(s),r=r.i("@<1>").a5(r.z[1]),s=new A.bP(J.as(s.a),s.b,r.i("bP<1,2>")),r=r.z[1];s.u();){q=s.a -if(q==null)q=r.a(q) -if(q!=null)q.sJg(p.a.db)}s=p.e -if(s!=null)s.sJg(p.a.db) -s=p.d -if(s!=null&&s.a!==0)for(r=A.p(s),s=new A.ja(s,s.tN(),r.i("ja<1>")),r=r.c;s.u();){q=s.d -if(q==null)q=r.a(q) -q.sJg(p.a.db)}}, -a8G(a){var s,r,q,p,o,n,m,l,k,j,i=this,h={},g=i.c -g.toString -g=A.aDx(g,t.zd) -g.toString -s=i.c.ga_() -s.toString -t.x.a(s) -r=s.hR(a) -q=i.a.fx -if(q==null)q=null -else{p=i.gek().a -p=q.a.$1(p) -q=p}o=q==null?i.a.fy:q -if(o==null){q=i.c -q.toString -o=A.a2(q).k3}q=i.a -n=q.ch?q.p2.$1(s):null -q=i.a -m=q.cy -l=q.db -h.a=null -q=q.go -if(q==null){q=i.c -q.toString -q=A.a2(q).x}p=i.a -k=p.ch -p=p.cx -j=i.c.an(t.I) -j.toString -return h.a=q.W1(0,m,o,k,g,l,new A.auj(h,i),r,p,n,s,j.w)}, -aps(a){if(this.c==null)return -this.ao(new A.aul(this))}, -gaj2(){var s,r=this,q=r.c -q.toString -q=A.ct(q,B.dB) -s=q==null?null:q.ax -switch((s==null?B.cL:s).a){case 0:q=r.a -q.toString -return(r.i_(q)||r.i0(q))&&r.z -case 1:return r.z}}, -M7(){var s,r=$.av.ah$.f.a.b -switch((r==null?A.tu():r).a){case 0:s=!1 -break -case 1:s=this.gaj2() -break -default:s=null}this.nj(B.A8,s)}, -apu(a){var s,r=this -r.z=a -r.gek().ft(0,B.a3,a) -r.M7() -s=r.a.k2 -if(s!=null)s.$1(a)}, -Xq(a){if(this.y.a.length!==0)return -this.ajp(a)}, -aqc(a){this.Xq(a) -this.a.toString}, -aqe(a){this.a.toString}, -aq2(a){this.Xq(a) -this.a.toString}, -aq4(a){this.a.toString}, -Tk(a,b){var s,r,q,p,o=this -if(a!=null){s=a.ga_() -s.toString -t.x.a(s) -r=s.gq(s) -r=new A.y(0,0,0+r.a,0+r.b).gaT() -q=A.c5(s.bt(0,null),r)}else q=b.a -o.gek().ft(0,B.ag,!0) -p=o.a8G(q) -s=o.d;(s==null?o.d=A.d5(t.nQ):s).E(0,p) -s=o.e -if(s!=null)s.bb(0) -o.e=p -o.p8() -o.nj(B.dz,!0)}, -ajp(a){return this.Tk(null,a)}, -ajo(a){return this.Tk(a,null)}, -BY(){var s=this,r=s.e -if(r!=null)r.AY(0) -s.e=null -s.nj(B.dz,!1) -r=s.a -if(r.d!=null){if(r.id){r=s.c -r.toString -A.aD5(r)}r=s.a.d -if(r!=null)r.$0()}}, -aqa(){var s=this,r=s.e -if(r!=null)r.bb(0) -s.e=null -s.a.toString -s.nj(B.dz,!1)}, -apZ(){var s=this,r=s.e -if(r!=null)r.AY(0) -s.e=null -s.nj(B.dz,!1) -s.a.toString}, -aq0(){var s=this,r=s.e -if(r!=null)r.bb(0) -s.e=null -s.a.toString -s.nj(B.dz,!1)}, -eH(){var s,r,q,p,o,n,m,l=this,k=l.d -if(k!=null){l.d=null -for(s=A.p(k),k=new A.ja(k,k.tN(),s.i("ja<1>")),s=s.c;k.u();){r=k.d;(r==null?s.a(r):r).n()}l.e=null}for(k=l.r,s=A.fh(k,k.r,A.p(k).c);s.u();){r=s.d -q=k.h(0,r) -if(q!=null){p=q.ch -p===$&&A.c() -p.r.n() -p.r=null -o=p.d6$ -o.b=!1 -B.b.a0(o.a) -n=o.c -if(n===$){m=A.d5(o.$ti.c) -o.c!==$&&A.aW() -o.c=m -n=m}if(n.a>0){n.b=n.c=n.d=n.e=null -n.a=0}o=p.cU$ -o.b=!1 -B.b.a0(o.a) -n=o.c -if(n===$){m=A.d5(o.$ti.c) -o.c!==$&&A.aW() -o.c=m -n=m}if(n.a>0){n.b=n.c=n.d=n.e=null -n.a=0}p.Er() -q.lc()}k.m(0,r,null)}k=l.a.p1 -if(k!=null)k.KN(l,!1) -l.a5p()}, -i_(a){var s -if(a.d==null)s=!1 -else s=!0 -return s}, -i0(a){return!1}, -apJ(a){var s=this,r=s.f=!0,q=s.a -q.toString -if(!s.i_(q)?s.i0(q):r)s.nj(B.dA,s.f)}, -apL(a){this.f=!1 -this.nj(B.dA,!1)}, -ga7u(){var s,r=this,q=r.c -q.toString -q=A.ct(q,B.dB) -s=q==null?null:q.ax -switch((s==null?B.cL:s).a){case 0:q=r.a -q.toString -return(r.i_(q)||r.i0(q))&&r.a.ok -case 1:return!0}}, -G(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c=this,b=null -c.Es(a) -s=new A.auk(c,a) -for(r=c.r,q=A.fh(r,r.r,A.p(r).c);q.u();){p=q.d -o=r.h(0,p) -if(o!=null)o.saf(0,s.$1(p))}r=c.e -if(r!=null){q=c.a.fx -if(q==null)q=b -else{p=c.gek().a -p=q.a.$1(p) -q=p}if(q==null)q=c.a.fy -r.saf(0,q==null?A.a2(a).k3:q)}r=c.a.ay -if(r==null)r=B.cx -n=A.cD(r,c.gek().a,t.Pb) -m=c.w -if(m===$){r=c.gNa() -q=t.g -p=t.d -l=A.l([B.hQ,new A.cH(r,new A.b7(A.b([],q),p),t.wY),B.zS,new A.cH(r,new A.b7(A.b([],q),p),t.nz)],t.A,t.od) -c.w!==$&&A.aW() -c.w=l -m=l}r=c.a.k4 -q=c.ga7u() -p=c.a -o=p.k3 -k=p.d -k=k==null?b:c.gNa() -p=c.i_(p)?c.gaqb():b -j=c.a -j.toString -j=c.i_(j)?c.gaqd():b -i=c.a -i.toString -i=c.i_(i)?c.gKj():b -h=c.a -h.toString -h=c.i_(h)?c.gaq9():b -g=c.a -g.toString -g=c.i0(g)?c.gaq1():b -f=c.a -f.toString -f=c.i0(f)?c.gaq3():b -e=c.a -e.toString -e=c.i0(e)?c.gapY():b -d=c.a -d.toString -d=c.i0(d)?c.gaq_():b -j=A.hF(B.aG,c.a.c,B.a1,!0,b,b,b,b,b,b,b,b,b,b,b,b,b,b,e,d,g,f,i,h,p,j,!1,B.aP) -return new A.HG(c,A.pM(m,A.uV(o,q,A.jB(A.aWX(new A.bL(A.c7(b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,k,b,b,b,b,b,b,b,b,b,b,b),!1,!1,!1,!1,j,b),n),n,b,c.gapI(),c.gapK(),b),b,b,b,r,!0,b,c.gapt(),b,b,b,b)),b)}, -$iaEA:1} -A.aun.prototype={ -$1(a){return a!=null}, -$S:293} -A.aum.prototype={ -$0(){}, -$S:0} -A.auo.prototype={ -$0(){var s=this.a -s.r.m(0,this.b,null) -s.p8()}, -$S:0} -A.auj.prototype={ -$0(){var s,r=this.b,q=r.d -if(q!=null){s=this.a -q.F(0,s.a) -if(r.e==s.a)r.e=null -r.p8()}}, -$S:0} -A.aul.prototype={ -$0(){this.a.M7()}, -$S:0} -A.auk.prototype={ -$1(a){var s,r,q=this,p=A.a2(q.b) -switch(a.a){case 0:s=q.a -r=s.a.fx -r=r==null?null:r.a.$1(B.OJ) -s=r==null?s.a.fr:r -return s==null?p.cy:s -case 2:s=q.a -r=s.a.fx -r=r==null?null:r.a.$1(B.OE) -s=r==null?s.a.dx:r -return s==null?p.cx:s -case 1:s=q.a -r=s.a.fx -r=r==null?null:r.a.$1(B.Ox) -s=r==null?s.a.dy:r -return s==null?p.dx:s}}, -$S:294} -A.Ow.prototype={} -A.JM.prototype={ -aE(){this.aV() -if(this.gxo())this.tZ()}, -eH(){var s=this.ib$ -if(s!=null){s.T() -s.d3() -this.ib$=null}this.pA()}} -A.iK.prototype={} -A.Yx.prototype={ -VR(a){return B.f1}, -grb(){return!1}, -gjC(){return B.z}, -bw(a,b){return B.f1}, -ej(a,b){var s=$.ad().c_() -s.jv(a) -return s}, -k7(a){return this.ej(a,null)}, -cX(a,b){var s=$.ad().c_() -s.jv(a) -return s}, -jh(a){return this.cX(a,null)}, -io(a,b,c,d){a.cT(b,c)}, -ghL(){return!0}, -D1(a,b,c,d,e,f){}, -f0(a,b,c){return this.D1(a,b,0,0,null,c)}} -A.jX.prototype={ -grb(){return!1}, -VR(a){var s=a==null?this.a:a -return new A.jX(this.b,s)}, -gjC(){return new A.aF(0,0,0,this.a.b)}, -bw(a,b){return new A.jX(B.lN,this.a.bw(0,b))}, -ej(a,b){var s=$.ad().c_(),r=a.a,q=a.b -s.jv(new A.y(r,q,r+(a.c-r),q+Math.max(0,a.d-q-this.a.b))) -return s}, -k7(a){return this.ej(a,null)}, -cX(a,b){var s=$.ad().c_() -s.eG(this.b.d0(a)) -return s}, -jh(a){return this.cX(a,null)}, -io(a,b,c,d){a.cC(this.b.d0(b),c)}, -ghL(){return!0}, -dP(a,b){var s,r -if(a instanceof A.jX){s=A.aR(a.a,this.a,b) -r=A.nq(a.b,this.b,b) -r.toString -return new A.jX(r,s)}return this.EJ(a,b)}, -dQ(a,b){var s,r -if(a instanceof A.jX){s=A.aR(this.a,a.a,b) -r=A.nq(this.b,a.b,b) -r.toString -return new A.jX(r,s)}return this.EK(a,b)}, -D1(a,b,c,d,e,f){var s=this.b -if(!s.c.j(0,B.L)||!s.d.j(0,B.L))a.i8(0,this.cX(b,f)) -s=b.d -a.hD(new A.k(b.a,s),new A.k(b.c,s),this.a.jb())}, -f0(a,b,c){return this.D1(a,b,0,0,null,c)}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.Y(b)!==A.u(s))return!1 -return b instanceof A.jX&&b.a.j(0,s.a)&&b.b.j(0,s.b)}, -gA(a){return A.T(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.H1.prototype={ -sbM(a,b){if(b!=this.a){this.a=b -this.T()}}, -sdz(a){if(a!==this.b){this.b=a -this.T()}}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.Y(b)!==A.u(s))return!1 -return b instanceof A.H1&&b.a==s.a&&b.b===s.b}, -gA(a){return A.T(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){return"#"+A.aV(this)}} -A.H2.prototype={ -e2(a){var s=A.dD(this.a,this.b,a) -s.toString -return t.U1.a(s)}} -A.Xt.prototype={ -ap(a,b){var s,r,q,p=this,o=p.b,n=p.c.a7(0,o.gl(o)),m=new A.y(0,0,0+b.a,0+b.b) -o=p.x -o=p.w.a7(0,o.gl(o)) -o.toString -s=A.a6m(o,p.r) -if((s.gl(s)>>>24&255)>0){o=n.cX(m,p.f) -r=$.ad().b1() -r.saf(0,s) -r.sbC(0,B.aX) -a.cY(o,r)}o=p.e -r=o.a -q=p.d -n.D1(a,m,o.b,q.gl(q),r,p.f)}, -eE(a){var s=this -return s.b!==a.b||s.x!==a.x||s.d!==a.d||s.c!==a.c||!s.e.j(0,a.e)||s.f!==a.f}, -k(a){return"#"+A.aV(this)}} -A.FK.prototype={ -ae(){return new A.UY(null,null,B.i)}} -A.UY.prototype={ -aE(){var s,r=this,q=null -r.aV() -r.e=A.bO(q,B.EZ,q,r.a.w?1:0,r) -s=A.bO(q,B.cB,q,q,r) -r.d=s -r.f=A.ci(B.af,s,new A.ju(B.af)) -s=r.a.c -r.r=new A.H2(s,s) -r.w=A.ci(B.B,r.e,q) -r.x=new A.hy(B.C,r.a.r)}, -n(){var s=this.d -s===$&&A.c() -s.n() -s=this.e -s===$&&A.c() -s.n() -this.a5a()}, -aM(a){var s,r,q=this -q.b2(a) -s=a.c -if(!q.a.c.j(0,s)){q.r=new A.H2(s,q.a.c) -s=q.d -s===$&&A.c() -s.sl(0,0) -s.bW(0)}if(!q.a.r.j(0,a.r))q.x=new A.hy(B.C,q.a.r) -s=q.a.w -if(s!==a.w){r=q.e -if(s){r===$&&A.c() -r.bW(0)}else{r===$&&A.c() -r.de(0)}}}, -G(a){var s,r,q,p,o,n,m,l,k=this,j=k.f -j===$&&A.c() -s=k.a.d -r=k.e -r===$&&A.c() -r=A.b([j,s,r],t.Eo) -s=k.f -j=k.r -j===$&&A.c() -q=k.a -p=q.e -q=q.d -o=a.an(t.I) -o.toString -n=k.a.f -m=k.x -m===$&&A.c() -l=k.w -l===$&&A.c() -return A.kp(null,new A.Xt(s,j,p,q,o.w,n,m,l,new A.ty(r)),null,null,B.o)}} -A.GR.prototype={ -ae(){return new A.GS(null,null,B.i)}} -A.GS.prototype={ -gz5(){return this.a.w!=null||!1}, -aE(){var s,r=this -r.aV() -r.d=A.bO(null,B.cB,null,null,r) -if(r.gz5()){r.f=r.tG() -r.d.sl(0,1)}else r.a.toString -s=r.d -s.bO() -s=s.cU$ -s.b=!0 -s.a.push(r.gGz())}, -n(){var s=this.d -s===$&&A.c() -s.n() -this.a5o()}, -GA(){this.ao(new A.au3())}, -aM(a){var s,r=this -r.b2(a) -s=r.a.w!=null -if(s!==(a.w!=null)||!1)if(s){r.f=r.tG() -s=r.d -s===$&&A.c() -s.bW(0)}else{s=r.d -s===$&&A.c() -s.de(0)}}, -tG(){var s,r,q,p,o,n=null,m=this.d -m===$&&A.c() -s=new A.ay(B.Mk,B.e,t.Ni).a7(0,m.gl(m)) -r=this.a -q=r.w -q.toString -p=r.x -o=r.c -o=A.dQ(q,r.y,B.aZ,n,p,o,n) -m=A.iI(!1,A.aIO(o,!0,s),m) -return new A.bL(A.c7(n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n),!0,!1,!1,!1,m,n)}, -G(a){var s,r=this,q=r.d -q===$&&A.c() -if(q.gb4(q)===B.H){r.f=null -r.a.toString -r.e=null -return B.ai}q=r.d -if(q.gb4(q)===B.W){r.e=null -if(r.gz5())return r.f=r.tG() -else{r.f=null -return B.ai}}if(r.e==null&&r.gz5())return r.tG() -if(r.f==null)r.a.toString -if(r.gz5()){q=t.Y -s=r.d -return A.lb(B.bR,A.b([A.iI(!1,r.e,new A.aX(s,new A.ay(1,0,q),q.i("aX"))),r.tG()],t.p),B.S,B.bM,null)}r.a.toString -return B.ai}} -A.au3.prototype={ -$0(){}, -$S:0} -A.AQ.prototype={ -I(){return"FloatingLabelBehavior."+this.b}} -A.NE.prototype={ -gA(a){return B.h.gA(-1)}, -j(a,b){if(b==null)return!1 -if(this===b)return!0 -if(J.Y(b)!==A.u(this))return!1 -return b instanceof A.NE&&!0}, -k(a){return A.aYb(-1)}} -A.fa.prototype={ -I(){return"_DecorationSlot."+this.b}} -A.W3.prototype={ -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.Y(b)!==A.u(s))return!1 -return b instanceof A.W3&&b.a.j(0,s.a)&&b.c===s.c&&b.d===s.d&&b.e.j(0,s.e)&&b.f.j(0,s.f)&&b.r.j(0,s.r)&&b.x==s.x&&b.y.j(0,s.y)&&J.e(b.z,s.z)&&J.e(b.Q,s.Q)&&J.e(b.as,s.as)&&J.e(b.at,s.at)&&J.e(b.ax,s.ax)&&J.e(b.ay,s.ay)&&J.e(b.ch,s.ch)&&J.e(b.CW,s.CW)&&b.cx.tu(0,s.cx)&&J.e(b.cy,s.cy)&&b.db.tu(0,s.db)}, -gA(a){var s=this -return A.T(s.a,s.c,s.d,s.e,s.f,s.r,!1,s.x,s.y,s.z,s.Q,s.as,s.at,s.ax,s.ay,s.ch,s.CW,s.cx,s.cy,s.db)}} -A.awh.prototype={} -A.HQ.prototype={ -gfM(a){var s,r=A.b([],t.Ik),q=this.e0$ -if(q.h(0,B.a6)!=null){s=q.h(0,B.a6) -s.toString -r.push(s)}if(q.h(0,B.ap)!=null){s=q.h(0,B.ap) -s.toString -r.push(s)}if(q.h(0,B.a7)!=null){s=q.h(0,B.a7) -s.toString -r.push(s)}if(q.h(0,B.al)!=null){s=q.h(0,B.al) -s.toString -r.push(s)}if(q.h(0,B.aj)!=null){s=q.h(0,B.aj) -s.toString -r.push(s)}if(q.h(0,B.ak)!=null){s=q.h(0,B.ak) -s.toString -r.push(s)}if(q.h(0,B.a2)!=null){s=q.h(0,B.a2) -s.toString -r.push(s)}if(q.h(0,B.aw)!=null){s=q.h(0,B.aw) -s.toString -r.push(s)}if(q.h(0,B.ax)!=null){s=q.h(0,B.ax) -s.toString -r.push(s)}if(q.h(0,B.ae)!=null){s=q.h(0,B.ae) -s.toString -r.push(s)}if(q.h(0,B.c7)!=null){q=q.h(0,B.c7) -q.toString -r.push(q)}return r}, -saO(a){if(this.B.j(0,a))return -this.B=a -this.W()}, -sbF(a){if(this.R===a)return -this.R=a -this.W()}, -sLK(a,b){if(this.a1===b)return -this.a1=b -this.W()}, -saui(a){return}, -sra(a){if(this.az===a)return -this.az=a -this.bo()}, -sJR(a){return}, -gGG(){this.B.f.grb() -return!1}, -fu(a){var s,r=this.e0$ -if(r.h(0,B.a6)!=null){s=r.h(0,B.a6) -s.toString -a.$1(s)}if(r.h(0,B.aj)!=null){s=r.h(0,B.aj) -s.toString -a.$1(s)}if(r.h(0,B.a7)!=null){s=r.h(0,B.a7) -s.toString -a.$1(s)}if(r.h(0,B.a2)!=null){s=r.h(0,B.a2) -s.toString -a.$1(s)}if(r.h(0,B.aw)!=null)if(this.az){s=r.h(0,B.aw) -s.toString -a.$1(s)}else if(r.h(0,B.a2)==null){s=r.h(0,B.aw) -s.toString -a.$1(s)}if(r.h(0,B.ap)!=null){s=r.h(0,B.ap) -s.toString -a.$1(s)}if(r.h(0,B.al)!=null){s=r.h(0,B.al) -s.toString -a.$1(s)}if(r.h(0,B.ak)!=null){s=r.h(0,B.ak) -s.toString -a.$1(s)}if(r.h(0,B.c7)!=null){s=r.h(0,B.c7) -s.toString -a.$1(s)}if(r.h(0,B.ax)!=null){s=r.h(0,B.ax) -s.toString -a.$1(s)}if(r.h(0,B.ae)!=null){r=r.h(0,B.ae) -r.toString -a.$1(r)}}, -gka(){return!1}, -kh(a,b){var s -if(a==null)return 0 -a.bz(b,!0) -s=a.no(B.N) -s.toString -return s}, -ae9(a,b,c,d){var s=d.a -if(s<=0){if(a>=b)return b -return a+(b-a)*(s+1)}if(b>=c)return b -return b+(c-b)*s}, -bf(a){var s,r,q,p,o,n=this.e0$,m=n.h(0,B.a6) -m=m==null?0:m.aq(B.V,a,m.gbj()) -s=this.B -r=n.h(0,B.a7) -r=r==null?0:r.aq(B.V,a,r.gbj()) -q=n.h(0,B.aj) -q=q==null?0:q.aq(B.V,a,q.gbj()) -p=n.h(0,B.ap) -p=p==null?0:p.aq(B.V,a,p.gbj()) -o=n.h(0,B.aw) -o=o==null?0:o.aq(B.V,a,o.gbj()) -o=Math.max(p,o) -p=n.h(0,B.ak) -p=p==null?0:p.aq(B.V,a,p.gbj()) -n=n.h(0,B.al) -n=n==null?0:n.aq(B.V,a,n.gbj()) -return m+s.a.a+r+q+o+p+n+this.B.a.c}, -b7(a){var s,r,q,p,o,n=this.e0$,m=n.h(0,B.a6) -m=m==null?0:m.aq(B.a_,a,m.gbm()) -s=this.B -r=n.h(0,B.a7) -r=r==null?0:r.aq(B.a_,a,r.gbm()) -q=n.h(0,B.aj) -q=q==null?0:q.aq(B.a_,a,q.gbm()) -p=n.h(0,B.ap) -p=p==null?0:p.aq(B.a_,a,p.gbm()) -o=n.h(0,B.aw) -o=o==null?0:o.aq(B.a_,a,o.gbm()) -o=Math.max(p,o) -p=n.h(0,B.ak) -p=p==null?0:p.aq(B.a_,a,p.gbm()) -n=n.h(0,B.al) -n=n==null?0:n.aq(B.a_,a,n.gbm()) -return m+s.a.a+r+q+o+p+n+this.B.a.c}, -aep(a,b,c){var s,r,q,p -for(s=0,r=0;r<2;++r){q=c[r] -if(q==null)continue -p=q.aq(B.ab,b,q.gby()) -s=Math.max(p,s)}return s}, -b8(a2){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b=this,a=b.e0$,a0=a.h(0,B.a6),a1=a0==null?0:a0.aq(B.ab,a2,a0.gby()) -a0=a.h(0,B.a6) -a2=Math.max(a2-(a0==null?0:a0.aq(B.V,a1,a0.gbj())),0) -a0=a.h(0,B.a7) -s=a0==null?0:a0.aq(B.ab,a2,a0.gby()) -a0=a.h(0,B.a7) -r=a0==null?0:a0.aq(B.V,s,a0.gbj()) -a0=a.h(0,B.al) -q=a0==null?0:a0.aq(B.ab,a2,a0.gby()) -a0=a.h(0,B.al) -p=a0==null?0:a0.aq(B.V,q,a0.gbj()) -a2=Math.max(a2-b.B.a.gdO(),0) -a0=a.h(0,B.ae) -o=a0==null?0:a0.aq(B.ab,a2,a0.gby()) -a0=a.h(0,B.ae) -n=Math.max(a2-(a0==null?0:a0.aq(B.V,o,a0.gbj())),0) -a0=a.h(0,B.ax) -m=a0==null?0:a0.aq(B.ab,n,a0.gby()) -l=Math.max(o,m) -if(l>0)l+=8 -a0=a.h(0,B.aj) -k=a0==null?0:a0.aq(B.ab,a2,a0.gby()) -a0=a.h(0,B.aj) -j=a0==null?0:a0.aq(B.V,k,a0.gbj()) -a0=a.h(0,B.ak) -i=a0==null?0:a0.aq(B.ab,a2,a0.gby()) -a0=a.h(0,B.ak) -h=a0==null?0:a0.aq(B.V,i,a0.gbj()) -a0=t.B -g=B.b.kV(A.b([b.aep(0,Math.max(a2-j-h-r-p,0),A.b([a.h(0,B.ap),a.h(0,B.aw)],t.iG)),k,i],a0),B.lV) -f=b.B.y -e=new A.k(f.a,f.b).a6(0,4) -f=b.B -a=a.h(0,B.a2)==null?0:b.B.c -d=B.b.kV(A.b([a1,f.a.b+a+g+b.B.a.d+e.b,s,q],a0),B.lV) -a=b.B.x -a.toString -c=a||!1?0:48 -return Math.max(d,c)+l}, -be(a){return this.b8(a)}, -eS(a){var s=this.e0$,r=s.h(0,B.ap).b -r.toString -r=t.q.a(r).a -s=s.h(0,B.ap) -s=s==null?null:s.eS(a) -if(s==null)s=0 -return r.b+s}, -cg(a){return B.o}, -a7I(a){var s,r,q,p,o,n,m=null,l=t.q1,k=A.b([],l),j=new A.LG(k,A.b([],t.X_)) -for(s=a.length,r=m,q=r,p=0;p0}else a1=!1 -if(!a1)a2=0 -else{e8=o.h(0,B.ax) -a2=e8.gq(e8).b+8}a3=Math.max(a0,a2) -e8=e6.B.y -a4=new A.k(e8.a,e8.b).a6(0,4) -e8=o.h(0,B.ap) -n=o.h(0,B.ap) -k=e6.B.a -j=a4.b -i=j/2 -s.m(0,e8,e6.kh(n,p.Bg(new A.aF(0,k.b+a+i,0,k.d+a3+i)).J5(c,c))) -k=o.h(0,B.aw) -a5=k==null?e7:k.gq(k).b -if(a5==null)a5=0 -e8=o.h(0,B.ap) -a6=e8==null?e7:e8.gq(e8).b -if(a6==null)a6=0 -a7=Math.max(a5,a6) -e8=s.h(0,o.h(0,B.ap)) -e8.toString -n=s.h(0,o.h(0,B.aw)) -n.toString -a8=Math.max(e8,n) -n=o.h(0,B.aj) -a9=n==null?e7:n.gq(n).b -if(a9==null)a9=0 -e8=o.h(0,B.ak) -b0=e8==null?e7:e8.gq(e8).b -if(b0==null)b0=0 -e8=s.h(0,o.h(0,B.aj)) -e8.toString -n=s.h(0,o.h(0,B.ak)) -n.toString -b1=Math.max(0,Math.max(e8,n)-a8) -n=s.h(0,o.h(0,B.aj)) -n.toString -e8=s.h(0,o.h(0,B.ak)) -e8.toString -b2=Math.max(0,Math.max(a9-n,b0-e8)-(a7-a8)) -e8=o.h(0,B.a7) -b3=e8==null?e7:e8.gq(e8).b -if(b3==null)b3=0 -e8=o.h(0,B.al) -b4=e8==null?e7:e8.gq(e8).b -if(b4==null)b4=0 -b5=Math.max(b3,b4) -e8=e6.B -n=e8.a -b6=Math.max(b5,a+n.b+b1+a7+b2+n.d+j) -e8=e8.x -e8.toString -if(!e8)e8=!1 -else e8=!0 -b7=e8?0:48 -b8=q-a3 -b9=Math.min(Math.max(b6,b7),b8) -c0=b7>b6?(b7-b6)/2:0 -c1=Math.max(0,b6-b8) -e8=e6.ar -e8=e6.gGG()?B.zk:B.zl -c2=(e8.a+1)/2 -c3=b1-c1*(1-c2) -e8=e6.B.a -c4=e8.b+a+a8+c3+c0+i -c5=b9-(e8.gc6(e8)+e8.gca(e8))-a-j-(b1+a7+b2) -c6=c4+c5*c2 -j=e6.ar -e8=e6.gGG()?B.zk:B.zl -c7=e6.ae9(c4,a8+c3/2+(b9-(2+a7))/2,c4+c5,e8) -if(o.h(0,B.ae)!=null){e8=s.h(0,o.h(0,B.ae)) -e8.toString -c8=b9+8+e8 -e8=o.h(0,B.ae) -c9=e8.gq(e8).b+8}else{c8=0 -c9=0}if(a1){e8=s.h(0,o.h(0,B.ax)) -e8.toString -d0=b9+8+e8 -d1=a2}else{d0=0 -d1=0}d2=Math.max(c8,d0) -d3=Math.max(c9,d1) -d4=o.h(0,B.c7) -if(d4!=null){e8=o.h(0,B.a6) -d4.bz(A.eR(b9,r-(e8==null?B.o:e8.gq(e8)).a),!0) -switch(e6.R.a){case 0:d5=0 -break -case 1:e8=o.h(0,B.a6) -d5=(e8==null?B.o:e8.gq(e8)).a -break -default:d5=e7}e8=d4.b -e8.toString -t.q.a(e8).a=new A.k(d5,0)}d6=A.bg("height") -d7=new A.awl(d6) -d8=A.bg("baseline") -d9=new A.awk(d8,new A.awh(s,c6,c7,d2,b9,d3)) -e8=e6.B.a -e0=e8.a -e1=r-e8.c -d6.b=b9 -d8.b=e6.gGG()?c7:c6 -if(o.h(0,B.a6)!=null){switch(e6.R.a){case 0:e8=o.h(0,B.a6) -d5=r-e8.gq(e8).a -break -case 1:d5=0 -break -default:d5=e7}e8=o.h(0,B.a6) -e8.toString -d7.$2(e8,d5)}switch(e6.R.a){case 0:e8=o.h(0,B.a6) -e2=e1-(e8==null?B.o:e8.gq(e8)).a -if(o.h(0,B.a7)!=null){e2+=e6.B.a.c -e8=o.h(0,B.a7) -e8.toString -q=o.h(0,B.a7) -e2-=d7.$2(e8,e2-q.gq(q).a)}if(o.h(0,B.a2)!=null){e8=o.h(0,B.a2) -e8.toString -q=o.h(0,B.a2) -d7.$2(e8,e2-q.gq(q).a)}if(o.h(0,B.aj)!=null){e8=o.h(0,B.aj) -e8.toString -q=o.h(0,B.aj) -e2-=d9.$2(e8,e2-q.gq(q).a)}if(o.h(0,B.ap)!=null){e8=o.h(0,B.ap) -e8.toString -q=o.h(0,B.ap) -d9.$2(e8,e2-q.gq(q).a)}if(o.h(0,B.aw)!=null){e8=o.h(0,B.aw) -e8.toString -q=o.h(0,B.aw) -d9.$2(e8,e2-q.gq(q).a)}if(o.h(0,B.al)!=null){e3=e0-e6.B.a.a -e8=o.h(0,B.al) -e8.toString -e3+=d7.$2(e8,e3)}else e3=e0 -if(o.h(0,B.ak)!=null){e8=o.h(0,B.ak) -e8.toString -d9.$2(e8,e3)}break -case 1:e8=o.h(0,B.a6) -e2=e0+(e8==null?B.o:e8.gq(e8)).a -if(o.h(0,B.a7)!=null){e2-=e6.B.a.a -e8=o.h(0,B.a7) -e8.toString -e2+=d7.$2(e8,e2)}if(o.h(0,B.a2)!=null){e8=o.h(0,B.a2) -e8.toString -d7.$2(e8,e2)}if(o.h(0,B.aj)!=null){e8=o.h(0,B.aj) -e8.toString -e2+=d9.$2(e8,e2)}if(o.h(0,B.ap)!=null){e8=o.h(0,B.ap) -e8.toString -d9.$2(e8,e2)}if(o.h(0,B.aw)!=null){e8=o.h(0,B.aw) -e8.toString -d9.$2(e8,e2)}if(o.h(0,B.al)!=null){e3=e1+e6.B.a.c -e8=o.h(0,B.al) -e8.toString -q=o.h(0,B.al) -e3-=d7.$2(e8,e3-q.gq(q).a)}else e3=e1 -if(o.h(0,B.ak)!=null){e8=o.h(0,B.ak) -e8.toString -q=o.h(0,B.ak) -d9.$2(e8,e3-q.gq(q).a)}break}if(o.h(0,B.ax)!=null||o.h(0,B.ae)!=null){d6.b=d3 -d8.b=d2 -switch(e6.R.a){case 0:if(o.h(0,B.ax)!=null){e8=o.h(0,B.ax) -e8.toString -q=o.h(0,B.ax) -q=q.gq(q) -n=o.h(0,B.a6) -n=n==null?B.o:n.gq(n) -d9.$2(e8,e1-q.a-n.a)}if(o.h(0,B.ae)!=null){e8=o.h(0,B.ae) -e8.toString -d9.$2(e8,e0)}break -case 1:if(o.h(0,B.ax)!=null){e8=o.h(0,B.ax) -e8.toString -q=o.h(0,B.a6) -d9.$2(e8,e0+(q==null?B.o:q.gq(q)).a)}if(o.h(0,B.ae)!=null){e8=o.h(0,B.ae) -e8.toString -q=o.h(0,B.ae) -d9.$2(e8,e1-q.gq(q).a)}break}}if(o.h(0,B.a2)!=null){e8=o.h(0,B.a2).b -e8.toString -e4=t.q.a(e8).a.a -e8=o.h(0,B.a2) -e5=(e8==null?B.o:e8.gq(e8)).a*0.75 -switch(e6.R.a){case 0:o.h(0,B.a7)!=null&&!0 -e8=e6.B -q=o.h(0,B.a2) -q=q==null?B.o:q.gq(q) -n=d4==null?B.o:d4.gq(d4) -e8.r.sbM(0,A.a3(e4+q.a+0,n.a/2+e5/2,0)) -break -case 1:o.h(0,B.a7)!=null&&!0 -e8=e6.B -q=o.h(0,B.a6) -q=q==null?B.o:q.gq(q) -n=d4==null?B.o:d4.gq(d4) -e8.r.sbM(0,A.a3(e4-q.a+0,n.a/2-e5/2,0)) -break}e8=e6.B -o=o.h(0,B.a2) -e8.r.sdz(o.gq(o).a*0.75)}else{e6.B.r.sbM(0,e7) -e6.B.r.sdz(0)}e6.id=e9.aX(new A.Q(r,b9+d3))}, -agi(a,b){var s=this.e0$.h(0,B.a2) -s.toString -a.dc(s,b)}, -ap(a,b){var s,r,q,p,o,n,m,l,k,j,i=this,h=new A.awj(a,b),g=i.e0$ -h.$1(g.h(0,B.c7)) -if(g.h(0,B.a2)!=null){s=g.h(0,B.a2).b -s.toString -r=t.q -q=r.a(s).a -s=g.h(0,B.a2) -if(s!=null)s.gq(s) -s=g.h(0,B.a2) -p=(s==null?B.o:s.gq(s)).a -s=i.B -o=s.d -s.f.grb() -s=i.B -n=A.a3(1,0.75,o) -n.toString -m=g.h(0,B.c7).b -m.toString -m=r.a(m).a -r=g.h(0,B.c7) -r=r==null?B.o:r.gq(r) -switch(i.R.a){case 0:l=q.a+p*(1-n) -g.h(0,B.a7)!=null -k=l -break -case 1:l=q.a -g.h(0,B.a7)!=null -k=l -break -default:l=null -k=null}r=A.a3(k,m.a+r.a/2-p*0.75/2,0) -r.toString -r=A.a3(l,r,o) -r.toString -m=q.b -s=A.a3(0,s.a.b-m,o) -s.toString -j=new A.b6(new Float64Array(16)) -j.e6() -j.aK(0,r,m+s) -j.bw(0,n) -i.aY=j -n=i.cx -n===$&&A.c() -s=i.ch -s.saw(0,a.wU(n,b,j,i.gagh(),t.zV.a(s.a)))}else i.ch.saw(0,null) -h.$1(g.h(0,B.a6)) -h.$1(g.h(0,B.aj)) -h.$1(g.h(0,B.ak)) -h.$1(g.h(0,B.a7)) -h.$1(g.h(0,B.al)) -h.$1(g.h(0,B.aw)) -h.$1(g.h(0,B.ap)) -h.$1(g.h(0,B.ax)) -h.$1(g.h(0,B.ae))}, -j4(a){return!0}, -co(a,b){var s,r,q,p,o,n,m -for(s=this.gfM(this),r=s.length,q=t.q,p=0;p>>16&255,s>>>8&255,s&255) -if(q.a.w){q.gaO() -s=!0}else s=!1 -if(s){q.gaO() -s=a.dx.a -return A.a6m(A.ao(31,s>>>16&255,s>>>8&255,s&255),r)}return r}, -aap(a,b){if(this.gaO().R8!==!0)return B.C -this.gaO() -return A.cD(b.gic(),this.ghg(),t.n8)}, -aau(a){if(this.gaO().R8!=null)this.gaO().R8.toString -return B.C}, -Qq(a,b){var s=this,r=t.m,q=A.cD(s.gaO().ok,s.ghg(),r) -r=q==null?A.cD(null,s.ghg(),r):q -return r==null?A.cD(b.gtr(),s.ghg(),t.n8):r}, -gadF(){var s=this.a -if(s.y)s=s.r&&!0 -else s=!0 -if(!s){this.gaO() -this.gaO()}return!1}, -Qa(a,b){return A.cD(b.gvZ(),this.ghg(),t.em).b0(A.cD(this.gaO().w,this.ghg(),t.p8))}, -ghg(){var s,r=this,q=A.aE(t.ui) -r.gaO() -if(r.a.r)q.E(0,B.a3) -if(r.a.w){r.gaO() -s=!0}else s=!1 -if(s)q.E(0,B.ad) -if(r.gaO().ax!=null)q.E(0,B.jY) -return q}, -aai(a,b){var s,r,q=this,p=A.cD(q.gaO().y2,q.ghg(),t.Ef) -if(p==null)p=B.VJ -q.gaO() -if(p.a.j(0,B.n))return p -s=q.aaj(a) -q.gaO() -if(q.gaO().y2!==B.f1){q.gaO() -r=!1}else r=!0 -if(r)r=0 -else r=q.a.r?2:1 -return p.VR(new A.bk(s,r,B.I,-1))}, -G(c2){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9=this,c0=null,c1=A.a2(c2) -A.a2(c2) -s=new A.aur(c2) -r=t.em -q=A.cD(s.gwk(),b9.ghg(),r) -p=t.p8 -o=A.cD(b9.gaO().e,b9.ghg(),p) -if(o==null)o=A.cD(c0,b9.ghg(),p) -n=c1.p3.w -n.toString -m=n.b0(b9.a.d).b0(q).b0(o).anr(1) -l=m.Q -l.toString -q=A.cD(s.gw1(),b9.ghg(),r) -o=A.cD(b9.gaO().z,b9.ghg(),p) -if(o==null)o=A.cD(c0,b9.ghg(),p) -k=n.b0(b9.a.d).b0(q).b0(o) -j=b9.gaO().y -if(j==null)i=c0 -else{n=b9.a.y&&!b9.gadF()?1:0 -h=b9.gaO() -g=b9.a.e -i=A.aVT(A.dQ(j,b9.gaO().as,B.aZ,c0,k,g,h.Q),B.af,B.cB,n)}f=b9.gaO().ax!=null -b9.gaO() -if(b9.a.r)if(f)b9.gaO() -else b9.gaO() -else if(f)b9.gaO() -else b9.gaO() -e=b9.aai(c1,s) -n=b9.r -h=b9.e -h===$&&A.c() -g=b9.aap(c1,s) -d=b9.aau(c1) -if(b9.a.w){b9.gaO() -c=!0}else c=!1 -b9.gaO() -b9.gaO() -b9.gaO() -b9.gaO() -b9.gaO() -b9.gaO() -b=b9.a -a=b.z -a0=b.y -if(a0)b=b.r&&!0 -else b=!0 -if(b){a!=null -a1=!1}else a1=!1 -if(a!=null&&a1)a=new A.bL(A.c7(c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,B.uv,c0,c0,c0,c0,c0,c0),!1,!1,!1,!1,a,c0) -b=b9.gaO() -a2=b.cy===!0 -a3=a2?18:24 -b9.gaO() -b9.gaO() -if(b9.gaO().k1==null)a4=c0 -else{b9.gaO() -b=c1.z.Bq(B.lR) -a0=b9.Qq(c1,s) -a5=A.Oo(c0,c0,c0,c0,c0,c0,b9.Qq(c1,s),c0,c0,a3,c0,c0,c0,c0) -a6=b9.gaO() -a4=A.km(A.jB(new A.ft(b,A.mb(A.adg(new A.bL(A.c7(c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0),!1,!1,!1,!1,a6.k1,c0),new A.nX(a5)),new A.d6(a3,c0,c0,c0,c0,a0,c0,c0)),c0),B.bN,c0,c0,c0,c0),1,1)}b=b9.a.e -a0=b9.gaO() -a5=b9.Qa(c1,s) -a6=b9.gaO() -a7=b9.gaO() -a8=b9.gaO() -r=A.cD(s.gvC(),b9.ghg(),r).b0(b9.gaO().ay) -a9=b9.gaO() -if(b9.gaO().p3!=null)b0=b9.gaO().p3 -else if(b9.gaO().p2!=null&&b9.gaO().p2!==""){b1=b9.a.r -b2=b9.gaO().p2 -b2.toString -p=b9.Qa(c1,s).b0(A.cD(b9.gaO().p4,b9.ghg(),p)) -p=A.dQ(b2,c0,B.aZ,b9.gaO().bn,p,c0,c0) -b0=new A.bL(A.c7(c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,b1,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0),!0,!1,!1,!1,p,c0)}else b0=c0 -p=c2.an(t.I) -p.toString -b9.gaO() -b9.gaO() -e.grb() -b1=m.r -b1.toString -b2=A.ct(c2,B.bQ) -b2=b2==null?c0:b2.c -if(b2==null)b2=1 -b3=(4+0.75*b1)*b2 -b1=b9.gaO() -if(b1.R8===!0)b4=a2?B.Ff:B.n5 -else b4=a2?B.bW:B.Fe -b9.gaO() -b1=b9.gaO().cx -b1.toString -b2=h.gl(h) -b5=b9.gaO() -b6=b9.gaO() -b7=b9.a -b8=b7.f -b7=b7.r -b9.gaO() -return new A.W6(new A.W3(b4,!1,b3,b2,b1,e,n,b5.al===!0,b6.cy,c1.z,c0,a,c0,i,c0,c0,c0,a4,new A.GR(b,a0.r,a5,a6.x,a7.at,a8.ax,r,a9.ch,c0),b0,new A.FK(e,n,h,g,d,c,c0)),p.w,l,b8,b7,!1,c0)}} -A.auB.prototype={ -$0(){}, -$S:0} -A.vf.prototype={ -VZ(a,b,c,d,e,f,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7,c8,c9){var s=this,r=b8==null?s.as:b8,q=a7==null?s.ax:a7,p=b1==null?s.CW:b1,o=b0==null?s.cx:b0,n=c3==null?s.cy:c3,m=e==null?s.p3:e,l=a0==null?s.p2:a0,k=f==null?s.p4:f,j=a9==null?s.R8:a9,i=b==null?s.y2:b,h=c7==null?s.bn:c7,g=a==null?s.al:a -return A.aJ1(g,i,s.aG,s.db,m,k,l,s.xr,a2!==!1,s.y1,s.at,s.to,s.ch,s.ay,q,s.RG,j,o,p,s.f,s.rx,s.x1,s.x2,s.x,s.w,s.r,r,s.z,s.y,s.Q,s.ry,s.a,s.b,c2===!0,n,s.c,s.e,s.d,s.fx,s.dy,s.id,s.fr,s.go,s.fy,h,s.k2,s.k1,s.ok,s.p1,s.k4,s.k3)}, -anJ(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0){return this.VZ(a,b,c,d,null,e,null,f,null,g,h,i,j,null,k,l,m,n,o,p,q,r,s,a0,null,a1,a2,a3,a4,a5,a6,a7,a8,null,a9,b0)}, -anC(a,b){return this.VZ(null,null,null,null,null,null,null,null,a,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,b,null,null,null,null,null,null,null,null,null,null,null)}, -V7(a){var s,r,q,p=this,o=null,n=p.CW -if(n==null)n=B.no -s=p.cx -if(s==null)s=B.f7 -r=p.p4 -if(r==null)r=o -q=p.y2 -if(q==null)q=o -return p.anJ(p.al===!0,q,o,o,r,o,o,o,o,o,o,p.R8===!0,s,n,o,o,o,o,o,o,o,o,o,!1,p.cy===!0,o,o,o,o,o)}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.Y(b)!==A.u(s))return!1 -return b instanceof A.vf&&b.y==s.y&&b.as==s.as&&b.ax==s.ax&&b.CW==s.CW&&J.e(b.cx,s.cx)&&b.cy==s.cy&&J.e(b.k1,s.k1)&&J.e(b.p3,s.p3)&&b.p2==s.p2&&J.e(b.p4,s.p4)&&b.R8==s.R8&&b.y2==s.y2&&b.bn==s.bn&&b.al==s.al&&!0}, -gA(a){var s=this -return A.cn([s.a,s.b,s.c,s.d,s.f,s.e,s.r,s.w,s.x,s.y,s.z,s.Q,s.as,s.at,s.ax,s.ay,s.ch,s.CW,s.cx,s.cy,s.db,!1,s.R8,s.RG,s.rx,s.ry,s.dy,s.id,s.fx,s.fy,s.go,s.fr,s.k1,s.ok,s.k2,s.k3,s.k4,s.p1,s.p3,s.p2,s.p4,s.to,s.x1,s.x2,s.xr,s.y1,s.y2,!0,s.bn,s.al,s.aG])}, -k(a){var s=this,r=A.b([],t.s),q=s.y -if(q!=null)r.push('hintText: "'+q+'"') -q=s.as -if(q!=null)r.push('hintMaxLines: "'+A.j(q)+'"') -q=s.ax -if(q!=null)r.push('errorText: "'+q+'"') -q=s.CW -if(q!=null)r.push("floatingLabelBehavior: "+q.k(0)) -q=s.cx -if(q!=null)r.push("floatingLabelAlignment: "+q.k(0)) -q=s.cy -if(q===!0)r.push("isDense: "+A.j(q)) -q=s.k1 -if(q!=null)r.push("suffixIcon: "+q.k(0)) -q=s.p3 -if(q!=null)r.push("counter: "+q.k(0)) -q=s.p2 -if(q!=null)r.push("counterText: "+q) -q=s.p4 -if(q!=null)r.push("counterStyle: "+q.k(0)) -if(s.R8===!0)r.push("filled: true") -q=s.y2 -if(q!=null)r.push("border: "+q.k(0)) -q=s.bn -if(q!=null)r.push("semanticCounterText: "+q) -q=s.al -if(q!=null)r.push("alignLabelWithHint: "+A.j(q)) -return"InputDecoration("+B.b.bH(r,", ")+")"}} -A.Bh.prototype={ -gA(a){var s=this,r=null -return A.T(s.gwk(),s.gBP(),s.gvZ(),r,s.gw1(),s.gvC(),r,B.no,B.f7,!1,r,!1,s.gfa(),r,s.gD8(),r,s.gtr(),r,!1,A.T(s.gic(),s.gIl(),s.gLe(),r,r,r,r,r,r,r,r,!1,r,B.a,B.a,B.a,B.a,B.a,B.a,B.a))}, -j(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.Y(b)!==A.u(r))return!1 -if(b instanceof A.Bh)if(J.e(b.gwk(),r.gwk()))if(J.e(b.gBP(),r.gBP()))if(J.e(b.gvZ(),r.gvZ()))if(J.e(b.gw1(),r.gw1()))if(J.e(b.gvC(),r.gvC()))if(J.e(b.gfa(),r.gfa()))if(J.e(b.gD8(),r.gD8()))if(J.e(b.gtr(),r.gtr()))if(B.f7.j(0,B.f7))if(J.e(b.gic(),r.gic()))if(J.e(b.gIl(),r.gIl()))if(J.e(b.gLe(),r.gLe()))s=!0 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -return s}, -gwk(){return null}, -gBP(){return null}, -gvZ(){return null}, -gw1(){return null}, -gvC(){return null}, -gfa(){return null}, -gD8(){return null}, -gtr(){return null}, -gic(){return null}, -gLe(){return null}, -gIl(){return null}} -A.aur.prototype={ -gw1(){return A.Hj(new A.auw(this))}, -gwk(){return A.Hj(new A.auy(this))}, -gBP(){return A.Hj(new A.auu(this))}, -gvZ(){return A.Hj(new A.auv(this))}, -gvC(){return A.Hj(new A.aus(this))}, -gic(){return A.avi(new A.aut(this))}, -gfa(){return A.avi(new A.aux(this))}, -gD8(){return A.avi(new A.auz(this))}, -gtr(){return A.avi(new A.auA(this))}} -A.auw.prototype={ -$1(a){var s=null -if(a.t(0,B.x))return A.f6(s,s,A.a2(this.a.ok).ch,s,s,s,s,s,s,s,s,s,s,s,s,s,s,!0,s,s,s,s,s,s,s,s) -return A.f6(s,s,A.a2(this.a.ok).db,s,s,s,s,s,s,s,s,s,s,s,s,s,s,!0,s,s,s,s,s,s,s,s)}, -$S:56} -A.auy.prototype={ -$1(a){var s=null -if(a.t(0,B.x))return A.f6(s,s,A.a2(this.a.ok).ch,s,s,s,s,s,s,s,s,s,s,s,s,s,s,!0,s,s,s,s,s,s,s,s) -return A.f6(s,s,A.a2(this.a.ok).db,s,s,s,s,s,s,s,s,s,s,s,s,s,s,!0,s,s,s,s,s,s,s,s)}, -$S:56} -A.auu.prototype={ -$1(a){var s=this,r=null -if(a.t(0,B.x))return A.f6(r,r,A.a2(s.a.ok).ch,r,r,r,r,r,r,r,r,r,r,r,r,r,r,!0,r,r,r,r,r,r,r,r) -if(a.t(0,B.jY))return A.f6(r,r,A.a2(s.a.ok).ax.at,r,r,r,r,r,r,r,r,r,r,r,r,r,r,!0,r,r,r,r,r,r,r,r) -if(a.t(0,B.a3))return A.f6(r,r,A.a2(s.a.ok).ax.b,r,r,r,r,r,r,r,r,r,r,r,r,r,r,!0,r,r,r,r,r,r,r,r) -return A.f6(r,r,A.a2(s.a.ok).db,r,r,r,r,r,r,r,r,r,r,r,r,r,r,!0,r,r,r,r,r,r,r,r)}, -$S:56} -A.auv.prototype={ -$1(a){var s=A.a2(this.a.ok) -if(a.t(0,B.x))return s.p3.Q.cH(B.C) -return s.p3.Q.cH(s.db)}, -$S:56} -A.aus.prototype={ -$1(a){var s=A.a2(this.a.ok) -if(a.t(0,B.x))return s.p3.Q.cH(B.C) -return s.p3.Q.cH(s.ax.at)}, -$S:56} -A.aut.prototype={ -$1(a){if(a.t(0,B.x))switch(A.a2(this.a.ok).ax.a.a){case 0:return B.Dp -case 1:return B.Eg}switch(A.a2(this.a.ok).ax.a.a){case 0:return B.iK -case 1:return B.mq}}, -$S:24} -A.aux.prototype={ -$1(a){if(a.t(0,B.x)&&!a.t(0,B.a3))return A.a2(this.a.ok).ch -if(a.t(0,B.a3))return A.a2(this.a.ok).ax.b -switch(A.a2(this.a.ok).ax.a.a){case 0:return B.E -case 1:return B.fa}}, -$S:24} -A.auz.prototype={ -$1(a){if(a.t(0,B.x)&&!a.t(0,B.a3))return A.a2(this.a.ok).ch -if(a.t(0,B.a3))return A.a2(this.a.ok).ax.b -switch(A.a2(this.a.ok).ax.a.a){case 0:return B.E -case 1:return B.fa}}, -$S:24} -A.auA.prototype={ -$1(a){if(a.t(0,B.x)&&!a.t(0,B.a3))return A.a2(this.a.ok).ch -if(a.t(0,B.a3))return A.a2(this.a.ok).ax.b -switch(A.a2(this.a.ok).ax.a.a){case 0:return B.E -case 1:return B.fa}}, -$S:24} -A.Xu.prototype={} -A.Jx.prototype={ -bY(){this.cR() -this.cA() -this.ep()}, -n(){var s=this,r=s.aZ$ -if(r!=null)r.H(0,s.ge8()) -s.aZ$=null -s.aP()}} -A.JL.prototype={ -n(){var s=this,r=s.cb$ -if(r!=null)r.H(0,s.giM()) -s.cb$=null -s.aP()}, -bY(){this.cR() -this.cA() -this.iN()}} -A.JN.prototype={ -bY(){this.cR() -this.cA() -this.ep()}, -n(){var s=this,r=s.aZ$ -if(r!=null)r.H(0,s.ge8()) -s.aZ$=null -s.aP()}} -A.a2m.prototype={ -ai(a){var s,r,q -this.dD(a) -for(s=this.gfM(this),r=s.length,q=0;q0){a7=b/2 -e-=a7 -c+=a7}a=a2.aY -if(eh){f=g+k.b+2*a -c=g+a -e=a}else f=h -d=a}switch(a2.c7.a){case 0:d=(f-q.b)/2 -a0=(f-p.b)/2 -break -case 1:if(f>72){d=16 -a0=16}else{d=Math.min((f-q.b)/2,16) -a0=(f-p.b)/2}break -case 2:a0=d -break -case 3:d=(f-q.b)/2 -a0=(f-p.b)/2 -break -case 4:a1=f-q.b-d -a0=f-p.b-d -d=a1 -break -default:a0=a3 -d=a0}switch(a2.ar.a){case 0:if(a6){a7=a5.h(0,B.bn).b -a7.toString -t.q.a(a7).a=new A.k(b0-q.a,d)}a7=a5.h(0,B.b8).b -a7.toString -g=t.q -g.a(a7).a=new A.k(n,e) -if(a8){a7=a5.h(0,B.b9) -a7.toString -c.toString -a7=a7.b -a7.toString -g.a(a7).a=new A.k(n,c)}if(a9){a5=a5.h(0,B.bO).b -a5.toString -g.a(a5).a=new A.k(0,a0)}break -case 1:if(a6){a7=a5.h(0,B.bn).b -a7.toString -t.q.a(a7).a=new A.k(0,d)}a7=a5.h(0,B.b8).b -a7.toString -g=t.q -g.a(a7).a=new A.k(o,e) -if(a8){a7=a5.h(0,B.b9) -a7.toString -c.toString -a7=a7.b -a7.toString -g.a(a7).a=new A.k(o,c)}if(a9){a5=a5.h(0,B.bO).b -a5.toString -g.a(a5).a=new A.k(b0-p.a,a0)}break}a2.id=a4.aX(new A.Q(b0,f))}, -ap(a,b){var s=new A.aws(a,b),r=this.e0$ -s.$1(r.h(0,B.bn)) -s.$1(r.h(0,B.b8)) -s.$1(r.h(0,B.b9)) -s.$1(r.h(0,B.bO))}, -j4(a){return!0}, -co(a,b){var s,r,q,p,o,n -for(s=this.gfM(this),r=s.length,q=t.q,p=0;p#"+A.aV(this)}} -A.rY.prototype={ -e2(a){return A.dD(this.a,this.b,a)}} -A.Hg.prototype={ -ae(){return new A.Y5(null,null,B.i)}} -A.Y5.prototype={ -lD(a){var s,r,q=this -q.CW=t.ir.a(a.$3(q.CW,q.a.z,new A.av3())) -s=q.a -r=t.YJ -s=r.a(a.$3(q.cy,s.as,new A.av4())) -q.cy=s -s=q.a.at -q.cx=s!=null?r.a(a.$3(q.cx,s,new A.av5())):null -q.db=t.TZ.a(a.$3(q.db,q.a.w,new A.av6()))}, -G(a){var s,r,q,p,o,n=this,m=n.db -m.toString -s=n.geF() -s=m.a7(0,s.gl(s)) -s.toString -m=n.CW -m.toString -r=n.geF() -q=m.a7(0,r.gl(r)) -A.a2(a) -p=A.aIu(a,n.a.Q,q) -n.a.toString -m=n.cy -if(m==null)o=null -else{r=n.geF() -r=m.a7(0,r.gl(r)) -o=r}if(o==null)o=B.C -m=A.dd(a) -r=n.a -return new A.QB(new A.oQ(s,m),r.y,q,p,o,new A.Iu(r.r,s,!0,null),null)}} -A.av3.prototype={ -$1(a){return new A.ay(A.ka(a),null,t.Y)}, -$S:34} -A.av4.prototype={ -$1(a){return new A.hy(t.n8.a(a),null)}, -$S:79} -A.av5.prototype={ -$1(a){return new A.hy(t.n8.a(a),null)}, -$S:79} -A.av6.prototype={ -$1(a){return new A.rY(t.RY.a(a),null)}, -$S:304} -A.Iu.prototype={ -G(a){var s=A.dd(a) -return A.kp(this.c,new A.a_I(this.d,s,null),null,null,B.o)}} -A.a_I.prototype={ -ap(a,b){this.b.f0(a,new A.y(0,0,0+b.a,0+b.b),this.c)}, -eE(a){return!a.b.j(0,this.b)}} -A.a25.prototype={ -bY(){this.cR() -this.cA() -this.ep()}, -n(){var s=this,r=s.aZ$ -if(r!=null)r.H(0,s.ge8()) -s.aZ$=null -s.aP()}} -A.Y6.prototype={ -KC(a){return a.grf(a)==="en"}, -jU(a,b){return new A.cW(B.BZ,t.az)}, -Ei(a){return!1}, -k(a){return"DefaultMaterialLocalizations.delegate(en_US)"}} -A.MB.prototype={$ir9:1} -A.cR.prototype={ -I(){return"MaterialState."+this.b}} -A.Pi.prototype={$ibe:1} -A.Y9.prototype={ -P(a){return this.c.$1(a)}} -A.Pk.prototype={ -B8(a){return this.P(A.aE(t.ui)).B8(a)}, -$ibe:1} -A.Gz.prototype={ -P(a){if(a.t(0,B.x))return B.bN -return this.a}, -gqA(){return"MaterialStateMouseCursor("+this.c+")"}} -A.Ph.prototype={$ibe:1} -A.Hi.prototype={ -P(a){return this.x.$1(a)}} -A.Pl.prototype={$ibe:1} -A.Ya.prototype={ -P(a){return this.bS.$1(a)}} -A.be.prototype={} -A.H9.prototype={ -P(a){var s,r=this,q=r.a,p=q==null?null:q.P(a) -q=r.b -s=q==null?null:q.P(a) -return r.d.$3(p,s,r.c)}, -$ibe:1} -A.dy.prototype={ -P(a){return this.a.$1(a)}, -$ibe:1} -A.bJ.prototype={ -P(a){return this.a}, -k(a){var s="MaterialStatePropertyAll(",r=this.a -if(typeof r=="number")return s+A.iC(r)+")" -else return s+A.j(r)+")"}, -$ibe:1} -A.Pm.prototype={ -ft(a,b,c){var s=this.a -if(c?J.dV(s,b):J.pL(s,b))this.T()}} -A.Pj.prototype={ -a_n(a,b){return new A.afu(this,a,b)}, -a_m(a){return this.a_n(a,null)}, -alI(a){if(this.qX$.E(0,a))this.ao(new A.afs())}, -Dj(a){if(this.qX$.F(0,a))this.ao(new A.aft())}} -A.afu.prototype={ -$1(a){var s=this.a,r=this.b -if(s.qX$.t(0,r)===a)return -if(a)s.alI(r) -else s.Dj(r)}, -$S:11} -A.afs.prototype={ -$0(){}, -$S:0} -A.aft.prototype={ -$0(){}, -$S:0} -A.Pr.prototype={} -A.BY.prototype={ -gA(a){return J.C(this.a)}, -j(a,b){if(b==null)return!1 -if(this===b)return!0 -if(J.Y(b)!==A.u(this))return!1 -return b instanceof A.BY&&J.e(b.a,this.a)}} -A.Yd.prototype={} -A.Ps.prototype={ -gA(a){var s=this -return A.cn([s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,s.as])}, -j(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.Y(b)!==A.u(r))return!1 -if(b instanceof A.Ps)if(b.a==r.a)if(b.b==r.b)if(b.c==r.c)if(b.d==r.d)if(b.e==r.e)if(b.f==r.f)if(b.r==r.r)if(b.w==r.w)if(b.x===r.x)if(b.y==r.y)s=J.e(b.as,r.as) -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -return s}} -A.XS.prototype={ -P(a){var s,r=this,q=r.a,p=q==null?null:q.P(a) -q=r.b -s=q==null?null:q.P(a) -q=p==null -if(q&&s==null)return null -if(q){q=s.a -return A.aR(new A.bk(A.ao(0,q.gl(q)>>>16&255,q.gl(q)>>>8&255,q.gl(q)&255),0,B.I,-1),s,r.c)}if(s==null){q=p.a -return A.aR(p,new A.bk(A.ao(0,q.gl(q)>>>16&255,q.gl(q)>>>8&255,q.gl(q)&255),0,B.I,-1),r.c)}return A.aR(p,s,r.c)}, -$ibe:1} -A.Yf.prototype={} -A.vz.prototype={ -gA(a){return J.C(this.a)}, -j(a,b){if(b==null)return!1 -if(this===b)return!0 -if(J.Y(b)!==A.u(this))return!1 -return b instanceof A.vz&&J.e(b.a,this.a)}} -A.Yg.prototype={} -A.Ce.prototype={ -gA(a){var s=this -return A.T(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.Y(b)!==A.u(s))return!1 -return b instanceof A.Ce&&b.a==s.a&&J.e(b.b,s.b)&&b.c==s.c&&J.e(b.d,s.d)&&J.e(b.e,s.e)&&J.e(b.f,s.f)&&J.e(b.r,s.r)&&b.w==s.w&&b.x==s.x&&!0}} -A.Yt.prototype={} -A.Cf.prototype={ -gA(a){var s=this -return A.T(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.Y(b)!==A.u(s))return!1 -return b instanceof A.Cf&&b.a==s.a&&J.e(b.b,s.b)&&b.c==s.c&&J.e(b.d,s.d)&&J.e(b.e,s.e)&&J.e(b.f,s.f)&&J.e(b.r,s.r)&&J.e(b.w,s.w)&&b.x==s.x&&b.y==s.y}} -A.Yu.prototype={} -A.Cg.prototype={ -gA(a){var s=this -return A.T(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,s.as,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.Y(b)!==A.u(s))return!1 -return b instanceof A.Cg&&J.e(b.a,s.a)&&b.b==s.b&&J.e(b.c,s.c)&&J.e(b.d,s.d)&&J.e(b.e,s.e)&&J.e(b.f,s.f)&&b.r==s.r&&J.e(b.y,s.y)&&J.e(b.z,s.z)&&b.Q==s.Q&&b.as==s.as}} -A.Yv.prototype={} -A.Q6.prototype={ -vp(a){var s,r,q,p=A.a2(a),o=p.ax -A.a2(a) -s=o.db.a -s=A.ao(97,s>>>16&255,s>>>8&255,s&255) -r=A.b4d(a) -q=A.a2(a).ax.db.a -q=A.aDO(B.a0,B.F,B.C,B.C,s,B.bN,0,!0,B.c2,o.b,B.kE,B.kD,r,p.k2,B.ez,new A.bk(A.ao(31,q>>>16&255,q>>>8&255,q&255),1,B.I,-1),B.iw,p.e,p.p3.as,p.z) -return q}, -LL(a){var s -a.an(t.BR) -s=A.a2(a) -return s.aB.a}} -A.HC.prototype={ -P(a){if(a.t(0,B.x))return this.b -return this.a}} -A.YM.prototype={ -P(a){var s -if(a.t(0,B.ag)){s=this.a -return A.ao(31,s.gl(s)>>>16&255,s.gl(s)>>>8&255,s.gl(s)&255)}if(a.t(0,B.ad)){s=this.a -return A.ao(10,s.gl(s)>>>16&255,s.gl(s)>>>8&255,s.gl(s)&255)}if(a.t(0,B.a3)){s=this.a -return A.ao(31,s.gl(s)>>>16&255,s.gl(s)>>>8&255,s.gl(s)&255)}return null}} -A.YL.prototype={ -P(a){if(a.t(0,B.x))return this.b -return this.a}} -A.a2d.prototype={} -A.a2e.prototype={} -A.a2f.prototype={} -A.Ct.prototype={ -gA(a){return J.C(this.a)}, -j(a,b){if(b==null)return!1 -if(this===b)return!0 -if(J.Y(b)!==A.u(this))return!1 -return b instanceof A.Ct&&J.e(b.a,this.a)}} -A.YN.prototype={} -A.oj.prototype={ -gmy(){return A.ec.prototype.gmy.call(this)+"("+A.j(this.b.a)+")"}, -goK(){return!0}} -A.Pg.prototype={ -grM(a){return B.bC}, -gmt(){return null}, -gqn(){return null}, -AR(a){var s -if(!(a instanceof A.oj&&!0))s=a instanceof A.nD&&!0 -else s=!0 -return s}, -uY(a,b,c){var s=null,r=this.c1.$1(a) -return new A.bL(A.c7(s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,!0,s,s,s,s,s,s,s,s,s),!1,!0,!1,!1,r,s)}, -AQ(a,b,c,d){var s,r -A.a2(a) -s=A.a2(a).r -r=B.h6.h(0,this.a.cx.a?B.aL:s) -if(r==null)r=B.md -return r.Vp(this,a,b,c,d,this.$ti.c)}} -A.Hh.prototype={} -A.a1N.prototype={ -G(a){var s=this -return new A.uD(s.c,new A.azs(s),new A.azt(s),new A.uD(new A.jM(s.d,new A.b7(A.b([],t.x8),t.jc),0),new A.azu(s),new A.azv(s),s.f,null),null)}} -A.azs.prototype={ -$3(a,b,c){return new A.pv(b,c,this.a.e&&!0,!1,null)}, -$C:"$3", -$R:3, -$S:127} -A.azt.prototype={ -$3(a,b,c){return new A.pw(b,this.a.e,!0,c,null)}, -$C:"$3", -$R:3, -$S:128} -A.azu.prototype={ -$3(a,b,c){return new A.pv(b,c,this.a.e&&!0,!0,null)}, -$C:"$3", -$R:3, -$S:127} -A.azv.prototype={ -$3(a,b,c){return new A.pw(b,this.a.e,!1,c,null)}, -$C:"$3", -$R:3, -$S:128} -A.pv.prototype={ -ae(){return new A.a1L(new A.Ej($.aO()),$,$,B.i)}} -A.a1L.prototype={ -gMa(){return!1}, -ug(){var s,r=this,q=r.a,p=q.f -if(p)s=B.dH -else{s=$.aQu() -s=new A.aX(q.c,s,s.$ti.i("aX"))}r.ly$=s -p=p?$.aQv():$.aQw() -q=q.c -r.mN$=new A.aX(q,p,p.$ti.i("aX")) -q.U(0,r.grn()) -r.a.c.fK(r.grm())}, -aE(){var s,r,q,p,o=this -o.ug() -s=o.a -r=s.f -q=o.ly$ -q===$&&A.c() -p=o.mN$ -p===$&&A.c() -o.d=A.aME(s.c,q,r,p) -o.aV()}, -aM(a){var s,r,q,p=this,o=p.a -if(a.f!==o.f||a.c!==o.c){o=a.c -o.H(0,p.grn()) -o.dU(p.grm()) -p.ug() -o=p.d -o===$&&A.c() -o.n() -o=p.a -s=o.f -r=p.ly$ -r===$&&A.c() -q=p.mN$ -q===$&&A.c() -p.d=A.aME(o.c,r,s,q)}p.b2(a)}, -n(){var s,r=this -r.a.c.H(0,r.grn()) -r.a.c.dU(r.grm()) -s=r.d -s===$&&A.c() -s.n() -r.a5M()}, -G(a){var s=this.d -s===$&&A.c() -return A.aKS(!0,this.a.d,this.mM$,B.zc,s)}} -A.pw.prototype={ -ae(){return new A.a1M(new A.Ej($.aO()),$,$,B.i)}} -A.a1M.prototype={ -gMa(){return!1}, -ug(){var s,r=this,q=r.a,p=q.e -if(p){s=$.aQy() -s=new A.aX(q.c,s,s.$ti.i("aX"))}else s=B.dH -r.ly$=s -p=p?$.aQz():$.aQA() -q=q.c -r.mN$=new A.aX(q,p,p.$ti.i("aX")) -q.U(0,r.grn()) -r.a.c.fK(r.grm())}, -aE(){var s,r,q,p,o=this -o.ug() -s=o.a -r=s.e -q=o.ly$ -q===$&&A.c() -p=o.mN$ -p===$&&A.c() -o.d=A.aMF(s.c,q,r,p) -o.aV()}, -aM(a){var s,r,q,p=this,o=p.a -if(a.e!==o.e||a.c!==o.c){o=a.c -o.H(0,p.grn()) -o.dU(p.grm()) -p.ug() -o=p.d -o===$&&A.c() -o.n() -o=p.a -s=o.e -r=p.ly$ -r===$&&A.c() -q=p.mN$ -q===$&&A.c() -p.d=A.aMF(o.c,r,s,q)}p.b2(a)}, -n(){var s,r=this -r.a.c.H(0,r.grn()) -r.a.c.dU(r.grm()) -s=r.d -s===$&&A.c() -s.n() -r.a5N()}, -G(a){var s=this.d -s===$&&A.c() -return A.aKS(!0,this.a.f,this.mM$,B.zc,s)}} -A.mp.prototype={} -A.Um.prototype={ -Vp(a,b,c,d,e){return new A.a1N(c,d,!0,e,!0,null)}} -A.Mk.prototype={ -Vp(a,b,c,d,e,f){return A.aHJ(a,b,c,d,e,f)}} -A.Q8.prototype={ -EY(a){var s=t.Tr -return A.a8(new A.a1(B.J6,new A.ahb(a),s),!0,s.i("am.E"))}, -j(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.Y(b)!==A.u(r))return!1 -s=b instanceof A.Q8 -if(s&&!0)return!0 -return s&&A.d_(r.EY(B.h6),r.EY(B.h6))}, -gA(a){return A.cn(this.EY(B.h6))}} -A.ahb.prototype={ -$1(a){return this.a.h(0,a)}, -$S:307} -A.yE.prototype={ -asq(){var s,r=this,q=r.mN$ -q===$&&A.c() -s=q.a -if(J.e(q.b.a7(0,s.gl(s)),1)){q=r.ly$ -q===$&&A.c() -if(!J.e(q.gl(q),0)){q=r.ly$ -q=J.e(q.gl(q),1)}else q=!0}else q=!1 -s=r.mM$ -if(q)s.sAA(!1) -else{r.gMa() -s.sAA(!1)}}, -asp(a){switch(a.a){case 0:case 3:this.mM$.sAA(!1) -break -case 1:case 2:this.gMa() -this.mM$.sAA(!1) -break}}} -A.Ju.prototype={ -H8(a){this.T()}, -a96(a,b,c){var s,r,q,p,o -if(!this.r){s=this.w -s=s.gb4(s)!==B.W}else s=!1 -if(s){s=this.w -s=$.aQx().a7(0,s.gl(s)) -s.toString -r=s}else r=0 -if(r>0){s=a.gbU(a) -q=b.a -p=b.b -o=$.ad().b1() -o.saf(0,A.ao(B.d.bE(255*r),0,0,0)) -s.cT(new A.y(q,p,q+c.a,p+c.b),o)}}, -wK(a,b,c,d){var s,r,q=this,p=q.w -switch(p.gb4(p).a){case 3:case 0:return d.$2(a,b) -case 1:case 2:break}q.a96(a,b,c) -p=q.z -s=q.x -r=s.a -A.aND(p,s.b.a7(0,r.gl(r)),c) -r=q.as -r.saw(0,a.wU(!0,b,p,new A.azq(q,d),r.a))}, -n(){var s=this,r=s.w,q=s.gcJ() -r.H(0,q) -r.dU(s.guf()) -s.x.a.H(0,q) -s.y.H(0,q) -s.Q.saw(0,null) -s.as.saw(0,null) -s.d3()}, -eE(a){var s,r,q,p,o=this -if(a.r===o.r){s=a.w -r=o.w -if(J.e(s.gl(s),r.gl(r))){s=a.x -r=s.a -q=o.x -p=q.a -if(J.e(s.b.a7(0,r.gl(r)),q.b.a7(0,p.gl(p)))){s=a.y -r=o.y -r=!J.e(s.gl(s),r.gl(r)) -s=r}else s=!0}else s=!0}else s=!0 -return s}} -A.azq.prototype={ -$2(a,b){var s=this.a,r=s.Q -s=s.y -r.saw(0,a.Zk(b,B.d.bE(s.gl(s)*255),this.b,r.a))}, -$S:8} -A.Jv.prototype={ -H8(a){this.T()}, -wK(a,b,c,d){var s,r,q=this,p=q.y -switch(p.gb4(p).a){case 3:case 0:return d.$2(a,b) -case 1:case 2:break}p=q.z -s=q.w -r=s.a -A.aND(p,s.b.a7(0,r.gl(r)),c) -r=q.as -r.saw(0,a.wU(!0,b,p,new A.azr(q,d),r.a))}, -eE(a){var s,r,q,p -if(a.r===this.r){s=a.x -r=this.x -if(J.e(s.gl(s),r.gl(r))){s=a.w -r=s.a -q=this.w -p=q.a -p=!J.e(s.b.a7(0,r.gl(r)),q.b.a7(0,p.gl(p))) -s=p}else s=!0}else s=!0 -return s}, -n(){var s,r=this -r.Q.saw(0,null) -r.as.saw(0,null) -s=r.gcJ() -r.w.a.H(0,s) -r.x.H(0,s) -r.y.dU(r.guf()) -r.d3()}} -A.azr.prototype={ -$2(a,b){var s=this.a,r=s.Q -s=s.x -r.saw(0,a.Zk(b,B.d.bE(s.gl(s)*255),this.b,r.a))}, -$S:8} -A.YR.prototype={} -A.K1.prototype={ -n(){var s=this.mM$ -s.ag$=$.aO() -s.aj$=0 -this.aP()}} -A.K2.prototype={ -n(){var s=this.mM$ -s.ag$=$.aO() -s.aj$=0 -this.aP()}} -A.oy.prototype={} -A.Ye.prototype={ -aD(a){var s=new A.ZZ(this.e,null,A.af(t.T)) -s.aC() -s.saW(null) -return s}, -aH(a,b){b.v=this.e}} -A.ZZ.prototype={ -cg(a){var s=this.C$ -if(s==null)return B.o -return s.hQ(a)}, -bs(){var s,r=this,q=r.C$ -if(q==null)r.id=B.o -else{s=t.k -q.bz(s.a(A.t.prototype.ga2.call(r)),!0) -s=s.a(A.t.prototype.ga2.call(r)) -q=r.C$ -r.id=s.aX(q.gq(q)) -q=r.C$.b -q.toString -t.q.a(q).a=B.e}q=r.gq(r) -r.v.$1(q)}} -A.CP.prototype={ -ae(){var s=this.$ti -return new A.w_(B.i,s.i("@<1>").a5(s).i("w_<1,2>"))}} -A.w_.prototype={ -BY(){var s,r=this.c -r.toString -s=this.a.d -A.jF(r,!1).Ll(s) -this.a.toString}, -G(a){var s,r,q,p,o,n=null -A.a2(a) -s=A.ai_(a) -r=A.aM4(a) -this.a.toString -q=s.f -if(q==null){q=r.gcd() -q.toString -p=q}else p=q -q=this.a -o=A.z3(A.cC(B.ig,q.Q,B.m,n,new A.ar(0,1/0,48,1/0),n,n,n,n,B.dX,n,n,n),B.B,B.F,p) -q=A.vd(!1,n,!0,o,n,!0,n,n,n,n,new A.WB(n,s.x),n,n,n,n,this.gKj(),n,n,n,n,n) -return new A.vA(new A.bL(A.c7(n,n,n,n,n,!0,n,n,n,n,!0,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n),!1,!1,!1,!1,q,n),n)}} -A.HI.prototype={ -G(a){var s,r,q,p,o,n,m,l,k,j,i=this,h=null,g=i.c,f=g.fR,e=J.X(f),d=1/(e.gp(f)+1.5),c=A.b([],t.p) -A.a2(a) -s=A.ai_(a) -r=A.aM4(a) -for(q=1.5*d,p=0;p")))}, -$S:308} -A.avZ.prototype={ -nn(a){return A.pX(new A.Q(A.R(1/0,a.a,a.b),A.R(1/0,a.c,a.d))).Bg(B.ch.Y(0,this.f))}, -nq(a,b){var s,r,q,p,o,n,m,l,k=this,j=a.b,i=k.b,h=i.b,g=i.d,f=k.d -if(f!=null){for(s=k.c,r=8,q=0;qi)n=a.a-i-b.a -else if(og-8-f?g-i-8-f:n}i=j.b -if(pg-8-j?g-i-8-j:p}return new A.k(o,h)}, -a7Z(a,b){var s,r,q,p,o,n,m,l,k,j=B.b.gM(a) -for(s=a.length,r=b.a,q=b.b,p=0;p"))),null),a,!0,!0,!0,!0)}, -gqn(){return this.eb}} -A.aw_.prototype={ -$1(a){var s,r,q=this,p=q.b,o=q.a.a,n=a.an(t.I) -n.toString -s=q.c -r=A.aHX(s) -return new A.i6(new A.avZ(p.ah,p.c1,o,n.w,s.f,A.hJ(r,r.$ti.i("q.E"))),new A.pb(p.e1.a,q.d,null),null)}, -$S:206} -A.vY.prototype={ -ae(){return new A.vZ(B.i,this.$ti.i("vZ<1>"))}, -arr(a){return this.c.$1(a)}} -A.vZ.prototype={ -a17(){var s,r,q,p,o,n,m,l=this,k=l.c -k.toString -s=A.ai_(k) -k=l.c.ga_() -k.toString -r=t.x -r.a(k) -q=l.c -q.toString -q=A.jF(q,!1).d -q===$&&A.c() -q=q.gO().c.ga_() -q.toString -r.a(q) -l.a.toString -p=A.bg("offset") -switch(0){case 0:l.a.toString -p.b=B.e -break}r=p.aI() -r=A.c5(k.bt(0,q),r) -o=k.gq(k).uX(0,B.e).Y(0,p.aI()) -o=A.rD(r,A.c5(k.bt(0,q),o)) -q=q.gq(q) -n=A.b_m(o,new A.y(0,0,0+q.a,0+q.b)) -q=l.a -q.toString -o=l.c -o.toString -m=q.arr(o) -if(J.kf(m)){l.a.toString -k=l.c -k.toString -A.b6M(B.m,s.a,null,k,s.c,null,m,n,s.d,s.b,s.e,l.$ti.i("1?")).bQ(0,new A.ahZ(l),t.H)}}, -gah4(){var s,r=this.c -r.toString -r=A.ct(r,B.dB) -s=r==null?null:r.ax -switch((s==null?B.cL:s).a){case 0:return this.a.ch -case 1:return!0}}, -G(a){var s,r=this,q=null -A.adi(a) -r.a.toString -A.ai_(a) -r.a.toString -A.h9(a,B.b_,t.R).toString -s=r.a.ch?r.ga16():q -return A.apr(A.vd(!1,q,r.gah4(),r.a.at,q,!0,q,q,q,q,q,q,q,q,q,s,q,q,q,q,q),"Show menu")}} -A.ahZ.prototype={ -$1(a){var s=this.a -if(s.c==null)return null -if(a==null){s.a.toString -return null}s.a.f.$1(a)}, -$S(){return this.a.$ti.i("b1(1?)")}} -A.WB.prototype={ -P(a){var s=A.cD(this.a,a,t.WV) -if(s==null)s=null -return s==null?B.cx.P(a):s}, -gqA(){return"MaterialStateMouseCursor(PopupMenuItemState)"}} -A.avY.prototype={ -gcd(){var s,r=this,q=r.as -if(q===$){q=r.Q -if(q===$){s=A.a2(r.z) -r.Q!==$&&A.aW() -r.Q=s -q=s}r.as!==$&&A.aW() -q=r.as=q.p3}return q.w}} -A.w0.prototype={ -gA(a){var s=this -return A.T(s.gaf(s),s.gcr(s),s.c,s.gdu(s),s.gen(),s.gcd(),s.gKF(),s.w,s.x,s.y,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -j(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.Y(b)!==A.u(r))return!1 -if(b instanceof A.w0)if(J.e(b.gaf(b),r.gaf(r)))if(J.e(b.gcr(b),r.gcr(r)))if(b.c==r.c)if(J.e(b.gdu(b),r.gdu(r)))if(J.e(b.gen(),r.gen()))if(J.e(b.gcd(),r.gcd()))if(b.gKF()==r.gKF())s=!0 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -return s}, -gaf(a){return this.a}, -gcr(a){return this.b}, -gdu(a){return this.d}, -gen(){return this.e}, -gcd(){return this.f}, -gKF(){return this.r}} -A.Zs.prototype={} -A.aqv.prototype={ -I(){return"_ActivityIndicatorType."+this.b}} -A.R3.prototype={} -A.Vh.prototype={ -ap(a,b){var s,r,q,p,o,n,m=this,l=$.ad(),k=l.b1() -k.saf(0,m.c) -s=m.x -k.seP(s) -k.sbC(0,B.Q) -r=s/2*-m.y -q=r*2 -p=b.a-q -q=b.b-q -o=m.b -if(o!=null){n=l.b1() -n.saf(0,o) -n.seP(s) -n.sbC(0,B.Q) -a.JH(new A.y(r,r,r+p,r+q),0,6.282185307179586,!1,n)}k.stq(B.PD) -a.JH(new A.y(r,r,r+p,r+q),m.z,m.Q,!1,k)}, -eE(a){var s=this -return!J.e(a.b,s.b)||!a.c.j(0,s.c)||a.e!==s.e||a.f!==s.f||a.r!==s.r||a.w!==s.w||a.x!==s.x||a.y!==s.y||!1}} -A.u9.prototype={ -ae(){return new A.Vi(null,null,B.i)}} -A.Vi.prototype={ -aE(){var s,r=this -r.aV() -s=A.bO(null,B.F4,null,null,r) -r.d=s -r.a.toString -s.LD(0)}, -aM(a){var s,r -this.b2(a) -this.a.toString -s=this.d -s===$&&A.c() -r=s.r -r=!(r!=null&&r.a!=null) -if(r)s.LD(0)}, -n(){var s=this.d -s===$&&A.c() -s.n() -this.a5f()}, -a76(a,b,c,d,e){var s,r,q,p,o,n,m,l,k=null -A.a2(a) -s=new A.asi(a,k,k,k,k,k) -r=this.a -r.toString -q=r.d -if(q==null)q=A.aKj(a).d -r=this.a -r.toString -p=s.gaf(s) -o=A.aKj(a).a -p=o==null?p:o -o=this.a -n=o.c -o=o.z -m=c*3/2*3.141592653589793 -l=Math.max(b*3/2*3.141592653589793-m,0.001) -p=A.cC(k,A.kp(k,k,k,new A.Vh(q,p,n,b,c,d,e,o,0,-1.5707963267948966+m+e*3.141592653589793*2+d*0.5*3.141592653589793,l,k,k),B.o),B.m,k,B.B8,k,k,k,k,k,k,k,k) -return new A.bL(A.c7(k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,r.r,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,r.w),!1,!1,!1,!1,p,k)}, -a70(){var s=this.d -s===$&&A.c() -return A.jn(s,new A.asj(this),null)}, -G(a){this.a.toString -switch(0){case 0:return this.a70()}}} -A.asj.prototype={ -$2(a,b){var s,r,q,p=this.a,o=$.aQh(),n=p.d -n===$&&A.c() -n=o.a7(0,n.gl(n)) -o=$.aQi() -s=p.d -s=o.a7(0,s.gl(s)) -o=$.aQf() -r=p.d -r=o.a7(0,r.gl(r)) -o=$.aQg() -q=p.d -return p.a76(a,n,s,r,o.a7(0,q.gl(q)))}, -$S:97} -A.asi.prototype={ -gaf(a){var s,r=this,q=r.r -if(q===$){s=A.a2(r.f) -r.r!==$&&A.aW() -q=r.r=s.ax}return q.b}} -A.JC.prototype={ -n(){var s=this,r=s.cb$ -if(r!=null)r.H(0,s.giM()) -s.cb$=null -s.aP()}, -bY(){this.cR() -this.cA() -this.iN()}} -A.w6.prototype={ -gA(a){var s=this -return A.T(s.gaf(s),s.b,s.c,s.d,s.e,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.Y(b)!==A.u(s))return!1 -return b instanceof A.w6&&J.e(b.gaf(b),s.gaf(s))&&J.e(b.b,s.b)&&b.c==s.c&&J.e(b.d,s.d)&&J.e(b.e,s.e)}, -gaf(a){return this.a}} -A.Zu.prototype={} -A.CX.prototype={ -gA(a){var s=this -return A.T(s.a,s.b,s.c,s.d,s.e,s.f,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -j(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.Y(b)!==A.u(r))return!1 -if(b instanceof A.CX)if(b.b==r.b)if(b.c==r.c)if(b.d==r.d)s=!0 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -return s}} -A.Zy.prototype={} -A.i0.prototype={ -I(){return"_ScaffoldSlot."+this.b}} -A.DC.prototype={ -ae(){var s=null -return new A.S0(A.jz(t.Np),A.oh(s,t.nY),A.oh(s,t.BL),s,s,B.i)}} -A.S0.prototype={ -bu(){var s,r=this,q=r.c -q.toString -s=A.bD(q,B.Aa,t.w).w.y -q=r.y -if(q===!0)if(!s){q=r.x -q=q!=null&&q.b==null}else q=!1 -else q=!1 -if(q)r.aqp(B.Ps) -r.y=s -r.di()}, -aqp(a){var s,r,q=this,p=null,o=q.r -if(o.b!==o.c){p.gb4(p) -s=!1}else s=!0 -if(s)return -r=o.gM(o).b -o=q.y -o.toString -if(o){p.sl(0,0) -r.dm(0,a)}else p.de(0).bQ(0,new A.akc(q,r,a),t.H) -o=q.x -if(o!=null)o.bb(0) -q.x=null}, -G(a){var s,r,q=this -q.y=A.bD(a,B.Aa,t.w).w.y -s=q.r -if(!s.ga8(s)){r=A.PE(a,t.X) -if(r==null||r.goD())null.gavv()}return new A.Ic(q,q.a.c,null)}, -n(){var s=this.x -if(s!=null)s.bb(0) -this.x=null -this.a4J()}} -A.akc.prototype={ -$1(a){var s=this.b -if((s.a.a&30)===0)s.dm(0,this.c)}, -$S:27} -A.Ic.prototype={ -cP(a){return this.f!==a.f}} -A.akd.prototype={} -A.S_.prototype={ -anA(a,b){var s=a==null?this.a:a -return new A.S_(s,b==null?this.b:b)}} -A.a_q.prototype={ -Uv(a,b,c){var s=this -s.b=c==null?s.b:c -s.c=s.c.anA(a,b) -s.T()}, -Uu(a){return this.Uv(null,null,a)}, -al4(a,b){return this.Uv(a,b,null)}} -A.FJ.prototype={ -j(a,b){var s=this -if(b==null)return!1 -if(!s.a1M(0,b))return!1 -return b instanceof A.FJ&&b.r===s.r&&b.e===s.e&&b.f===s.f}, -gA(a){var s=this -return A.T(A.ar.prototype.gA.call(s,s),s.r,s.e,s.f,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.UX.prototype={ -G(a){return this.c}} -A.ax3.prototype={ -D5(a7){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2=this,a3=A.pX(a7),a4=a7.a,a5=a3.xa(a4),a6=a7.b -if(a2.b.h(0,B.i5)!=null){s=a2.fU(B.i5,a5).b -a2.hh(B.i5,B.e) -r=s}else{r=0 -s=0}if(a2.b.h(0,B.ln)!=null){q=0+a2.fU(B.ln,a5).b -p=Math.max(0,a6-q) -a2.hh(B.ln,new A.k(0,p))}else{q=0 -p=null}if(a2.b.h(0,B.lm)!=null){q+=a2.fU(B.lm,new A.ar(0,a5.b,0,Math.max(0,a6-q-r))).b -a2.hh(B.lm,new A.k(0,Math.max(0,a6-q)))}if(a2.b.h(0,B.i9)!=null){o=a2.fU(B.i9,a5) -a2.hh(B.i9,new A.k(0,s)) -if(!a2.ay)r+=o.b}else o=B.o -n=a2.f -m=Math.max(0,a6-Math.max(n.d,q)) -if(a2.b.h(0,B.i4)!=null){l=Math.max(0,m-r) -k=a2.d -if(k)l=A.R(l+q,0,a3.d-r) -k=k?q:0 -a2.fU(B.i4,new A.FJ(k,s,o.b,0,a5.b,0,l)) -a2.hh(B.i4,new A.k(0,r))}if(a2.b.h(0,B.i7)!=null){a2.fU(B.i7,new A.ar(0,a5.b,0,m)) -a2.hh(B.i7,B.e)}k=a2.b.h(0,B.dD)!=null&&!a2.at?a2.fU(B.dD,a5):B.o -if(a2.b.h(0,B.i8)!=null){j=a2.fU(B.i8,new A.ar(0,a5.b,0,Math.max(0,m-r))) -a2.hh(B.i8,new A.k((a4-j.a)/2,m-j.b))}else j=B.o -i=A.bg("floatingActionButtonRect") -if(a2.b.h(0,B.ia)!=null){h=a2.fU(B.ia,a3) -g=new A.akd(h,j,m,n,a2.r,a7,k,a2.w) -f=a2.z.np(g) -e=a2.as.a03(a2.y.np(g),f,a2.Q) -a2.hh(B.ia,e) -d=e.a -c=e.b -i.b=new A.y(d,c,d+h.a,c+h.b)}if(a2.b.h(0,B.dD)!=null){d=a2.ax -b=d!=null&&d") -k=t.x8 -j=t.jc -i=t.i -h=A.aLI(new A.jM(new A.aX(p,new A.eX(new A.ju(B.nG)),l),new A.b7(A.b([],k),j),0),new A.aX(p,new A.eX(B.nG),l),p,0.5,i) -p=d.a.d -g=$.aQq() -m.a(p) -f=$.aQr() -e=A.aLI(new A.aX(p,g,g.$ti.i("aX")),new A.jM(new A.aX(p,f,A.p(f).i("aX")),new A.b7(A.b([],k),j),0),p,0.5,i) -d.e=A.aHe(h,s,i) -i=A.aHe(h,q,i) -d.r=i -d.w=new A.aX(m.a(i),new A.eX(B.GJ),l) -d.f=A.aEl(new A.aX(r,new A.ay(1,1,b),b.i("aX")),e,c) -d.x=A.aEl(new A.aX(o,n,n.$ti.i("aX")),e,c) -n=d.r -o=d.gafH() -n.bO() -n=n.cU$ -n.b=!0 -n.a.push(o) -n=d.e -n.bO() -n=n.cU$ -n.b=!0 -n.a.push(o)}, -acy(a){this.ao(new A.ats(this,a))}, -G(a){var s,r,q=this,p=A.b([],t.p),o=q.d -o===$&&A.c() -o=o.Q -o===$&&A.c() -if(o!==B.H){o=q.e -s=q.y -o===$&&A.c() -r=q.f -r===$&&A.c() -p.push(A.aKy(A.aKv(s,r),o))}o=q.a -s=q.r -o=o.c -s===$&&A.c() -r=q.x -r===$&&A.c() -p.push(A.aKy(A.aKv(o,r),s)) -return A.lb(B.dE,p,B.S,B.bM,null)}, -afI(){var s,r,q=this.e -q===$&&A.c() -s=q.a -s=s.gl(s) -q=q.b -q=q.gl(q) -q=Math.min(A.lE(s),A.lE(q)) -s=this.r -s===$&&A.c() -r=s.a -r=r.gl(r) -s=s.b -s=s.gl(s) -s=Math.max(q,Math.min(A.lE(r),A.lE(s))) -this.a.f.Uu(s)}} -A.ats.prototype={ -$0(){this.a.a.toString}, -$S:0} -A.DA.prototype={ -ae(){var s=null,r=t.bR,q=t.C,p=$.aO() -return new A.wn(new A.bB(s,r),new A.bB(s,r),new A.bB(s,q),new A.Dt(!1,p),new A.Dt(!1,p),A.b([],t.Z4),new A.bB(s,q),B.k,s,A.m(t.yb,t.M),s,!0,s,s,s,B.i)}} -A.wn.prototype={ -gei(){this.a.toString -return null}, -is(a,b){var s=this -s.nd(s.w,"drawer_open") -s.nd(s.x,"end_drawer_open")}, -akZ(){var s,r=this,q=r.y.r -if(!q.ga8(q)){q=r.y.r -s=q.gM(q)}else s=null -if(r.z!=s)r.ao(new A.akf(r,s))}, -akI(){var s,r=this,q=r.y.e -if(!q.ga8(q)){q=r.y.e -s=q.gM(q)}else s=null -if(r.Q!=s)r.ao(new A.ake(r,s))}, -aeP(){this.a.toString}, -adj(){var s,r=this.c -r.toString -s=A.w5(r) -if(s!=null&&s.f.length!==0)s.i5(0,B.Em,B.fs)}, -gpY(){this.a.toString -return!0}, -aE(){var s,r=this,q=null -r.aV() -s=r.c -s.toString -r.dx=new A.a_q(s,B.NT,$.aO()) -r.a.toString -r.cy=B.me -r.CW=B.D_ -r.cx=B.me -r.ch=A.bO(q,new A.b8(4e5),q,1,r) -r.db=A.bO(q,B.F,q,q,r)}, -aM(a){this.a4M(a) -this.a.toString}, -bu(){var s,r,q=this,p=q.c.an(t.Pu),o=p==null?null:p.f,n=q.y,m=n==null -if(!m)s=o==null||n!==o -else s=!1 -if(s)if(!m)n.d.F(0,q) -q.y=o -if(o!=null){n=o.d -n.E(0,q) -r=q.c.vS(t.Np) -if(r==null||!n.t(0,r)){n=o.r -if(!n.ga8(n))q.akZ() -n=o.e -if(!n.ga8(n))q.akI()}}q.aeP() -q.a4L()}, -n(){var s=this,r=s.dx -r===$&&A.c() -r.ag$=$.aO() -r.aj$=0 -r=s.ch -r===$&&A.c() -r.n() -r=s.db -r===$&&A.c() -r.n() -r=s.y -if(r!=null)r.d.F(0,s) -s.w.n() -s.x.n() -s.a4N()}, -EQ(a,b,c,d,e,f,g,h,i){var s,r=this.c -r.toString -s=A.bD(r,null,t.w).w.LB(f,g,h,i) -if(e)s=s.ZM(!0) -if(d&&s.e.d!==0)s=s.qv(s.f.vb(s.r.d)) -if(b!=null)a.push(A.aeI(A.kP(b,s,null),c))}, -a6u(a,b,c,d,e,f,g,h){return this.EQ(a,b,c,!1,d,e,f,g,h)}, -tD(a,b,c,d,e,f,g){return this.EQ(a,b,c,!1,!1,d,e,f,g)}, -Oj(a,b,c,d,e,f,g,h){return this.EQ(a,b,c,d,!1,e,f,g,h)}, -OG(a,b){this.a.toString}, -OF(a,b){this.a.toString}, -G(a){var s,r,q,p,o,n,m,l,k,j=this,i=null,h={},g=A.a2(a),f=a.an(t.I) -f.toString -s=f.w -r=A.b([],t.s9) -f=j.a -q=f.f -f=f.e -j.gpY() -j.a6u(r,new A.UX(new A.oa(q,j.f),!1,!1,i),B.i4,!0,!1,!1,!1,f!=null) -if(j.dy)j.tD(r,A.aDH(!0,i,j.fr,!1,i,i,i),B.i7,!0,!0,!0,!0) -if(j.a.e!=null){f=A.bD(a,B.bo,t.w).w -f=j.r=A.aVW(a,j.a.e.fx)+f.f.b -q=j.a.e -q.toString -j.tD(r,new A.ft(new A.ar(0,1/0,0,f),new A.AO(1,f,f,f,i,q,i),i),B.i5,!0,!1,!1,!1)}h.a=!1 -h.b=null -if(j.at!=null||j.as.length!==0){f=A.a8(j.as,!0,t.l7) -q=j.at -if(q!=null)f.push(q.a) -p=A.lb(B.lw,f,B.S,B.bM,i) -j.gpY() -j.tD(r,p,B.i8,!0,!1,!1,!0)}f=j.z -if(f!=null){f.a.gavn() -h.a=!1 -f=j.z -if(f!=null){f=f.a -f.gdg(f)}h.b=g.c5.w -f=j.z -f=f==null?i:f.a -j.a.toString -j.gpY() -j.Oj(r,f,B.dD,!1,!1,!1,!1,!0)}h.c=!1 -if(j.Q!=null){a.an(t.iB) -f=A.a2(a) -o=f.ry.f -h.c=(o==null?0:o)!==0 -f=j.Q -f=f==null?i:f.a -q=j.a.e -j.gpY() -j.Oj(r,f,B.i9,!1,!0,!1,!1,q!=null)}j.a.toString -f=j.ch -f===$&&A.c() -q=j.CW -q===$&&A.c() -n=j.dx -n===$&&A.c() -m=j.db -m===$&&A.c() -j.tD(r,new A.GC(i,f,q,n,m,i),B.ia,!0,!0,!0,!0) -switch(g.r.a){case 2:case 4:j.tD(r,A.hF(B.aG,i,B.a1,!0,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,j.gadi(),i,i,i,!1,B.aP),B.i6,!0,!1,!1,!0) -break -case 0:case 1:case 3:case 5:break}f=j.x -q=f.y -if(q==null?A.p(f).i("d7.T").a(q):q){j.OF(r,s) -j.OG(r,s)}else{j.OG(r,s) -j.OF(r,s)}f=t.w -q=A.bD(a,B.bo,f).w -j.gpY() -n=A.bD(a,B.i2,f).w -l=q.f.vb(n.e.d) -q=A.bD(a,B.Ad,f).w -j.gpY() -f=A.bD(a,B.i2,f).w -f=f.e.d!==0?0:i -k=q.r.vb(f) -if(l.d<=0)j.a.toString -f=j.a.ch -if(f==null)f=g.go -return new A.a_r(!1,new A.DM(A.ha(B.F,i,A.jn(j.ch,new A.akg(h,j,!1,l,k,s,r),i),B.m,f,0,i,i,i,i,i,B.c0),i),i)}} -A.akf.prototype={ -$0(){this.a.z=this.b}, -$S:0} -A.ake.prototype={ -$0(){this.a.Q=this.b}, -$S:0} -A.akg.prototype={ -$2(a,b){var s,r,q,p,o,n,m,l=this,k=A.l([B.kV,new A.Wg(a,new A.b7(A.b([],t.g),t.d))],t.A,t.od),j=l.b -j.a.toString -s=j.cy -s.toString -r=j.ch -r===$&&A.c() -r=r.x -r===$&&A.c() -q=j.CW -q===$&&A.c() -p=j.dx -p===$&&A.c() -j=j.cx -j.toString -o=l.a -n=o.a -m=o.c -return A.pM(k,new A.A7(new A.ax3(l.c,!1,l.d,l.e,l.f,p,j,s,r,q,n,o.b,m),l.r,null))}, -$S:309} -A.Wg.prototype={ -lF(a,b){var s=this.e,r=A.DD(s).w,q=r.y -if(!(q==null?A.p(r).i("d7.T").a(q):q)){s=A.DD(s).x -r=s.y -s=r==null?A.p(s).i("d7.T").a(r):r}else s=!0 -return s}, -ee(a){var s=this.e -A.DD(s).a.toString -A.DD(s).a.toString}} -A.a_r.prototype={ -cP(a){return this.f!==a.f}} -A.ax4.prototype={ -$2(a,b){if(!a.a)a.H(0,b)}, -$S:43} -A.Id.prototype={ -bY(){this.cR() -this.cA() -this.ep()}, -n(){var s=this,r=s.aZ$ -if(r!=null)r.H(0,s.ge8()) -s.aZ$=null -s.aP()}} -A.Ie.prototype={ -bY(){this.cR() -this.cA() -this.ep()}, -n(){var s=this,r=s.aZ$ -if(r!=null)r.H(0,s.ge8()) -s.aZ$=null -s.aP()}} -A.If.prototype={ -aM(a){this.b2(a) -this.og()}, -bu(){var s,r,q,p,o=this -o.di() -s=o.bP$ -r=o.glQ() -q=o.c -q.toString -q=A.oI(q) -o.fQ$=q -p=o.mq(q,r) -if(r){o.is(s,o.eu$) -o.eu$=!1}if(p)if(s!=null)s.n()}, -n(){var s,r=this -r.fP$.N(0,new A.ax4()) -s=r.bP$ -if(s!=null)s.n() -r.bP$=null -r.a4K()}} -A.JJ.prototype={ -bY(){this.cR() -this.cA() -this.ep()}, -n(){var s=this,r=s.aZ$ -if(r!=null)r.H(0,s.ge8()) -s.aZ$=null -s.aP()}} -A.Sa.prototype={ -G(a){var s=this,r=null -if(A.a2(a).r===B.aL)return new A.us(8,B.cO,s.c,s.d,s.e===!0,B.NA,3,r,B.F3,B.EX,B.aE,A.Kk(),r,r,r) -return new A.y6(r,s.c,s.d,s.e,r,r,r,B.bC,B.dW,B.q,A.Kk(),r,r,r)}} -A.y6.prototype={ -ae(){return new A.Y7(new A.bB(null,t.C),null,null,B.i)}} -A.Y7.prototype={ -gpn(){var s=this.a.e -if(s==null){s=this.fr -s===$&&A.c() -s=s.a -s=s==null?null:s.P(this.guv())}return s==null?!1:s}, -gol(){this.a.toString -var s=this.fr -s===$&&A.c() -s=s.e -if(s==null){s=this.fx -s===$&&A.c() -s=!s}return s}, -gA5(){return new A.dy(new A.avb(this),t.Le)}, -guv(){var s=A.aE(t.ui) -if(this.db)s.E(0,B.u9) -if(this.dx)s.E(0,B.ad) -return s}, -gak3(){var s,r,q,p,o,n,m,l=this,k=l.dy -k===$&&A.c() -s=k.db -r=A.bg("dragColor") -q=A.bg("hoverColor") -p=A.bg("idleColor") -switch(k.a.a){case 1:k=s.a -o=k>>>16&255 -n=k>>>8&255 -k&=255 -r.b=A.ao(153,o,n,k) -q.b=A.ao(B.d.bE(127.5),o,n,k) -m=l.fx -m===$&&A.c() -if(m){k=l.c -k.toString -k=A.a2(k).cy.a -k=A.ao(255,k>>>16&255,k>>>8&255,k&255)}else k=A.ao(B.d.bE(25.5),o,n,k) -p.b=k -break -case 0:k=s.a -o=k>>>16&255 -n=k>>>8&255 -k&=255 -r.b=A.ao(191,o,n,k) -q.b=A.ao(166,o,n,k) -m=l.fx -m===$&&A.c() -if(m){k=l.c -k.toString -k=A.a2(k).cy.a -k=A.ao(255,k>>>16&255,k>>>8&255,k&255)}else k=A.ao(B.d.bE(76.5),o,n,k) -p.b=k -break}return new A.dy(new A.av8(l,r,q,p),t.h2)}, -gakh(){var s=this.dy -s===$&&A.c() -return new A.dy(new A.ava(this,s.a,s.db),t.h2)}, -gakg(){var s=this.dy -s===$&&A.c() -return new A.dy(new A.av9(this,s.a,s.db),t.h2)}, -gak0(){return new A.dy(new A.av7(this),t.pj)}, -aE(){var s,r=this -r.NT() -s=r.cy=A.bO(null,B.F,null,null,r) -s.bO() -s=s.cU$ -s.b=!0 -s.a.push(new A.avh(r))}, -bu(){var s,r=this,q=r.c -q.toString -s=A.a2(q) -r.dy=s.ax -q=r.c -q.an(t.NF) -q=A.a2(q) -r.fr=q.w -switch(s.r.a){case 0:r.fx=!0 -break -case 2:case 3:case 1:case 4:case 5:r.fx=!1 -break}r.a2S()}, -xk(){var s,r=this,q=r.at -q===$&&A.c() -q.saf(0,r.gak3().a.$1(r.guv())) -q.sk5(r.gakh().a.$1(r.guv())) -q.sa_f(r.gakg().a.$1(r.guv())) -s=r.c.an(t.I) -s.toString -q.sbF(s.w) -q.sLM(r.gak0().a.$1(r.guv())) -s=r.a.r -if(s==null){s=r.fr -s===$&&A.c() -s=s.f}if(s==null){s=r.fx -s===$&&A.c() -s=s?null:B.dq}q.swV(s) -s=r.fr -s===$&&A.c() -s=s.y -if(s==null){s=r.fx -s===$&&A.c() -s=s?0:2}q.sJf(s) -s=r.fr.z -q.sKM(s==null?0:s) -s=r.fr.Q -q.sKV(0,s==null?48:s) -s=r.c -s.toString -q.se4(0,A.bD(s,B.bo,t.w).w.f) -q.sE4(r.a.db) -q.sXN(!r.gol())}, -C1(a){this.NS(a) -this.ao(new A.avg(this))}, -C0(a,b){this.NR(a,b) -this.ao(new A.avf(this))}, -K8(a){var s,r=this -r.a2T(a) -if(r.Yf(a.gbv(a),a.gcp(a),!0)){r.ao(new A.avd(r)) -s=r.cy -s===$&&A.c() -s.bW(0)}else if(r.dx){r.ao(new A.ave(r)) -s=r.cy -s===$&&A.c() -s.de(0)}}, -K9(a){var s,r=this -r.a2U(a) -r.ao(new A.avc(r)) -s=r.cy -s===$&&A.c() -s.de(0)}, -n(){var s=this.cy -s===$&&A.c() -s.n() -this.NQ()}} -A.avb.prototype={ -$1(a){var s,r -if(a.t(0,B.ad)){s=this.a -s.a.toString -s=s.fr -s===$&&A.c() -s=s.d===!0}else s=!1 -if(s)return!0 -s=this.a -r=s.a.Q -s=s.fr -s===$&&A.c() -s=s.c -s=s==null?null:s.P(a) -return s==null?!1:s}, -$S:310} -A.av8.prototype={ -$1(a){var s,r,q,p=this,o=null -if(a.t(0,B.u9)){s=p.a.fr -s===$&&A.c() -s=s.r -s=s==null?o:s.P(a) -return s==null?p.b.aI():s}s=p.a -if(s.gA5().a.$1(a)){s=s.fr -s===$&&A.c() -s=s.r -s=s==null?o:s.P(a) -return s==null?p.c.aI():s}r=s.fr -r===$&&A.c() -r=r.r -r=r==null?o:r.P(a) -if(r==null)r=p.d.aI() -q=s.fr.r -q=q==null?o:q.P(a) -if(q==null)q=p.c.aI() -s=s.cy -s===$&&A.c() -s=s.x -s===$&&A.c() -s=A.E(r,q,s) -s.toString -return s}, -$S:24} -A.ava.prototype={ -$1(a){var s=this.a -if(s.gpn()&&s.gA5().a.$1(a)){s=s.fr -s===$&&A.c() -s=s.w -s=s==null?null:s.P(a) -if(s==null){s=this.c.a -s=this.b===B.an?A.ao(8,s>>>16&255,s>>>8&255,s&255):A.ao(13,s>>>16&255,s>>>8&255,s&255)}return s}return B.C}, -$S:24} -A.av9.prototype={ -$1(a){var s=this.a -if(s.gpn()&&s.gA5().a.$1(a)){s=s.fr -s===$&&A.c() -s=s.x -s=s==null?null:s.P(a) -if(s==null){s=this.c.a -s=this.b===B.an?A.ao(B.d.bE(25.5),s>>>16&255,s>>>8&255,s&255):A.ao(64,s>>>16&255,s>>>8&255,s&255)}return s}return B.C}, -$S:24} -A.av7.prototype={ -$1(a){var s,r -if(a.t(0,B.ad)&&this.a.gA5().a.$1(a)){s=this.a.fr -s===$&&A.c() -s=s.b -s=s==null?null:s.P(a) -return s==null?12:s}s=this.a -r=s.a.w -if(r==null){r=s.fr -r===$&&A.c() -r=r.b -r=r==null?null:r.P(a)}if(r==null){s=s.fx -s===$&&A.c() -r=8/(s?2:1) -s=r}else s=r -return s}, -$S:311} -A.avh.prototype={ -$0(){this.a.xk()}, -$S:0} -A.avg.prototype={ -$0(){this.a.db=!0}, -$S:0} -A.avf.prototype={ -$0(){this.a.db=!1}, -$S:0} -A.avd.prototype={ -$0(){this.a.dx=!0}, -$S:0} -A.ave.prototype={ -$0(){this.a.dx=!1}, -$S:0} -A.avc.prototype={ -$0(){this.a.dx=!1}, -$S:0} -A.DS.prototype={ -gA(a){var s=this -return A.T(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.Y(b)!==A.u(s))return!1 -return b instanceof A.DS&&b.a==s.a&&b.b==s.b&&b.c==s.c&&b.d==s.d&&b.e==s.e&&J.e(b.f,s.f)&&b.r==s.r&&b.w==s.w&&b.x==s.x&&b.y==s.y&&b.z==s.z&&b.Q==s.Q}} -A.a_w.prototype={} -A.DT.prototype={ -gA(a){var s=this -return A.T(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.Y(b)!==A.u(s))return!1 -return b instanceof A.DT&&b.a==s.a&&b.b==s.b&&b.c==s.c&&b.d==s.d&&b.e==s.e&&b.f==s.f&&b.r==s.r&&b.w==s.w&&b.x==s.x&&b.y==s.y&&J.e(b.z,s.z)}} -A.XR.prototype={ -P(a){var s,r=this,q=r.a,p=q==null?null:q.P(a) -q=r.b -s=q==null?null:q.P(a) -if(p==s)return p -if(p==null){q=s.a -return A.aR(new A.bk(A.ao(0,q.gl(q)>>>16&255,q.gl(q)>>>8&255,q.gl(q)&255),0,B.I,-1),s,r.c)}if(s==null){q=p.a -return A.aR(p,new A.bk(A.ao(0,q.gl(q)>>>16&255,q.gl(q)>>>8&255,q.gl(q)&255),0,B.I,-1),r.c)}return A.aR(p,s,r.c)}, -$ibe:1} -A.a_x.prototype={} -A.DU.prototype={ -gA(a){var s=this -return A.T(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.Y(b)!==A.u(s))return!1 -return b instanceof A.DU&&J.e(b.a,s.a)&&b.b==s.b&&J.e(b.c,s.c)&&J.e(b.d,s.d)&&J.e(b.e,s.e)&&J.e(b.f,s.f)&&J.e(b.r,s.r)&&J.e(b.w,s.w)&&J.e(b.x,s.x)}} -A.a_y.prototype={} -A.DV.prototype={ -gA(a){return A.T(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -j(a,b){if(b==null)return!1 -if(this===b)return!0 -if(J.Y(b)!==A.u(this))return!1 -return b instanceof A.DV&&J.e(b.a,this.a)&&!0}} -A.a_z.prototype={} -A.a0R.prototype={ -Vn(a,b,c){return A.c8(A.b([this.ax],t.Ne),null,null,b,null)}} -A.a_B.prototype={ -ro(a){var s -this.O1(a) -s=this.a -if(s.geD()&&this.b){s=s.ga4().gO() -s.toString -s.iw()}}, -wI(a){}, -La(a){var s,r=this.a -if(r.geD()){r=r.ga4().gO() -r.toString -s=a.a -r.gX().t4(B.aJ,s.Z(0,a.c),s)}}, -rq(a){var s=this.a,r=s.ga4().gO() -r.toString -r.hc() -if(s.geD()){r=this.w.c -r.toString -switch(A.a2(r).r.a){case 2:case 4:s=s.ga4().gO() -s.toString -s.gX().MN(B.ah) -break -case 0:case 1:case 3:case 5:s=s.ga4().gO() -s.toString -s=s.gX() -r=s.eU -r.toString -s.f3(B.ah,r) -break}}this.w.a.toString}, -rp(a){var s,r=this.a -if(r.geD()){r=r.ga4().gO() -r.toString -r=r.gX() -s=r.eU -s.toString -r.l7(B.aJ,s) -s=this.w.c -s.toString -A.aD4(s)}}} -A.mF.prototype={ -ae(){return new A.Ip(new A.bB(null,t.NE),B.i)}} -A.Ip.prototype={ -gzM(){var s,r=null -this.a.toString -s=this.e -if(s==null){s=A.qA(!0,r,!0,!0,r,r,!0) -this.e=s}return s}, -gK6(){var s=this.w -s===$&&A.c() -return s}, -geD(){this.a.toString -return!0}, -aE(){var s,r,q=this,p=null -q.aV() -q.r=new A.a_B(q,q) -s=q.a -r=s.d -s=A.aMh(r==null?A.c8(p,p,p,p,s.c):r) -q.d=s -s.U(0,q.gRK())}, -aM(a){var s,r,q,p=this,o=null -p.b2(a) -s=p.a -if(s.c!=a.c||!J.e(s.d,a.d)){s=p.d -s===$&&A.c() -r=p.gRK() -s.H(0,r) -s=p.a -q=s.d -s=A.aMh(q==null?A.c8(o,o,o,o,s.c):q) -p.d=s -s.U(0,r)}if(p.gzM().gcj()){s=p.d -s===$&&A.c() -s=s.a.b -s=s.a===s.b}else s=!1 -if(s)p.f=!1 -else p.f=!0}, -n(){var s=this.e -if(s!=null)s.n() -s=this.d -s===$&&A.c() -s.ag$=$.aO() -s.aj$=0 -this.aP()}, -afi(){var s,r,q=this -if(q.gzM().gcj()){s=q.d -s===$&&A.c() -s=s.a.b -r=s.a!==s.b}else r=!0 -if(r===q.f)return -q.ao(new A.axd(q,r))}, -aiA(a,b){var s,r=this,q=r.aiD(b) -if(q!==r.f)r.ao(new A.axc(r,q)) -r.a.toString -s=r.c -s.toString -switch(A.a2(s).r.a){case 2:case 4:if(b===B.aJ){s=r.x.gO() -if(s!=null)s.i7(a.glm())}return -case 0:case 1:case 3:case 5:break}}, -aiC(){var s=this.d -s===$&&A.c() -s=s.a.b -if(s.a===s.b)this.x.gO().LV()}, -aiD(a){var s,r=this.r -r===$&&A.c() -if(!r.b)return!1 -r=this.d -r===$&&A.c() -r=r.a -s=r.b -if(s.a===s.b)return!1 -if(a===B.a8)return!1 -if(a===B.aJ)return!0 -if(r.a.length!==0)return!0 -return!1}, -G(a0){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d=this,c=null,b=A.a2(a0),a=a0.an(t.Uf) -if(a==null)a=B.d7 -s=d.gzM() -d.a.toString -switch(b.r.a){case 2:r=A.fu(a0) -d.w=!0 -q=$.aGC() -d.a.toString -p=a.w -if(p==null)p=r.gey() -o=a.x -if(o==null){a=r.gey() -o=A.ao(102,a.gl(a)>>>16&255,a.gl(a)>>>8&255,a.gl(a)&255)}n=new A.k(-2/A.bD(a0,B.bP,t.w).w.b,0) -m=!0 -l=!0 -k=B.cr -break -case 4:r=A.fu(a0) -d.w=!1 -q=$.aGB() -d.a.toString -p=a.w -if(p==null)p=r.gey() -o=a.x -if(o==null){a=r.gey() -o=A.ao(102,a.gl(a)>>>16&255,a.gl(a)>>>8&255,a.gl(a)&255)}n=new A.k(-2/A.bD(a0,B.bP,t.w).w.b,0) -m=!0 -l=!0 -k=B.cr -break -case 0:case 1:d.w=!1 -q=$.aGI() -p=a.w -if(p==null)p=b.ax.b -o=a.x -if(o==null){a=b.ax.b -o=A.ao(102,a.gl(a)>>>16&255,a.gl(a)>>>8&255,a.gl(a)&255)}k=c -n=k -m=!1 -l=!1 -break -case 3:case 5:d.w=!1 -q=$.aCf() -p=a.w -if(p==null)p=b.ax.b -o=a.x -if(o==null){a=b.ax.b -o=A.ao(102,a.gl(a)>>>16&255,a.gl(a)>>>8&255,a.gl(a)&255)}k=c -n=k -m=!1 -l=!1 -break -default:k=c -o=k -p=o -n=p -l=n -m=l -q=m}a=a0.an(t.yS) -if(a==null)a=B.iR -d.a.toString -j=d.d -j===$&&A.c() -i=a.w.b0(j.ax.a) -j=d.a -j.toString -h=d.f -g=d.d -g===$&&A.c() -f=j.w -if(f==null)f=a.x -if(f==null)f=B.aR -e=$.aGb() -a=A.aIp(!0,c,c,c,!1,B.bU,B.S,c,A.b6L(),g,p,c,n,l,k,2,B.a1,!0,!0,!0,!1,s,!1,c,d.x,B.an,c,e,a.Q,c,c,!1,"\u2022",c,c,c,d.gaiz(),d.gaiB(),c,c,m,!0,!0,c,!0,c,B.fu,c,o,q,B.d0,B.c9,!1,h,c,c,c,B.PE,i,f,B.zq,c,a.at,c,j.y,a.as,c,c) -d.a.toString -j=d.r -j===$&&A.c() -a=j.Vl(B.bX,new A.ir(a,c)) -return new A.bL(A.c7(c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,new A.axe(d),c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c),!1,!1,!1,!1,a,c)}, -ga4(){return this.x}} -A.axd.prototype={ -$0(){this.a.f=this.b}, -$S:0} -A.axc.prototype={ -$0(){this.a.f=this.b}, -$S:0} -A.axe.prototype={ -$0(){this.a.gzM().kW()}, -$S:0} -A.Ee.prototype={ -gA(a){var s=this -return A.T(s.a,s.b,s.c,s.d,s.e,s.r,s.f,s.w,s.x,s.y,s.z,s.Q,s.as,s.at,s.ax,s.ay,s.ch,s.CW,s.cx,A.T(s.cy,s.db,s.dx,s.dy,s.fr,s.fx,s.fy,s.go,s.id,s.k1,s.k2,s.k3,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a))}, -j(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.Y(b)!==A.u(r))return!1 -if(b instanceof A.Ee)if(b.a==r.a)if(J.e(b.b,r.b))if(J.e(b.c,r.c))if(J.e(b.d,r.d))if(J.e(b.e,r.e))if(J.e(b.r,r.r))if(J.e(b.f,r.f))if(J.e(b.w,r.w))if(J.e(b.x,r.x))if(J.e(b.y,r.y))if(J.e(b.z,r.z))if(J.e(b.Q,r.Q))if(J.e(b.as,r.as))if(J.e(b.at,r.at))if(J.e(b.ax,r.ax))if(J.e(b.ay,r.ay))if(J.e(b.go,r.go))if(b.id==r.id)s=!0 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -return s}} -A.a_V.prototype={} -A.Eh.prototype={ -I(){return"SnackBarClosedReason."+this.b}} -A.Ei.prototype={ -gA(a){var s=this -return A.T(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,null,s.z,s.Q,s.as,s.at,B.a,B.a,B.a,B.a,B.a,B.a)}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.Y(b)!==A.u(s))return!1 -return b instanceof A.Ei&&J.e(b.a,s.a)&&J.e(b.b,s.b)&&J.e(b.c,s.c)&&J.e(b.d,s.d)&&b.e==s.e&&J.e(b.f,s.f)&&b.w==s.w&&J.e(b.x,s.x)&&J.e(b.z,s.z)&&b.Q==s.Q&&J.e(b.as,s.as)&&J.e(b.at,s.at)}} -A.a00.prototype={} -A.axV.prototype={ -I(){return"_SwitchType."+this.b}} -A.T4.prototype={ -Qr(a){var s,r -A.a2(a) -A.aEc(a) -s=new A.a0j() -r=this.CW -switch(r.a){case 0:return new A.Q(s.gOa(),s.ga5P()) -case 1:return new A.Q(s.gOa(),s.ga5Q())}}, -OH(a){var s=this,r=null -return new A.Hk(s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,s.as,s.at,s.ax,r,s.ch,s.db,s.dx,r,r,s.fx,s.fy,r,s.id,!1,s.Qr(a),r)}, -G(a){var s,r=this,q=null -switch(r.cx.a){case 0:return r.OH(a) -case 1:switch(A.a2(a).r.a){case 0:case 1:case 3:case 5:return r.OH(a) -case 2:case 4:s=r.Qr(a) -return A.cC(B.a0,new A.A4(r.c,r.d,r.e,r.w,q,q,q,r.id,!1,!1,r.db,q),B.m,q,q,q,q,s.b,q,q,q,q,s.a)}break}}} -A.Hk.prototype={ -ae(){return new A.Hl(new A.IO($.aO()),$,$,$,$,$,$,$,$,$,null,!1,!1,null,null,B.i)}} -A.Hl.prototype={ -aM(a){var s,r=this -r.b2(a) -if(a.c!==r.a.c){s=r.kB$ -s===$&&A.c() -if(s.gl(s)!==0){s=r.kB$ -s=s.gl(s)===1}else s=!0 -if(s){s=r.c -s.toString -A.a2(s) -s=r.kB$ -s.b=B.ce -s.c=B.cf}r.AD()}}, -n(){this.d.n() -this.a5v()}, -gf_(){this.a.toString -return this.gajI()}, -gM_(){return!1}, -gl(a){return this.a.c}, -guG(){return new A.dy(new A.avl(this),t._s)}, -gUE(){return new A.dy(new A.avm(this),t._s)}, -ajN(a){var s -if(this.gf_()!=null){s=this.lA$ -s===$&&A.c() -s.bW(0)}}, -ajP(a){var s,r,q,p=this -if(p.gf_()!=null){s=p.kB$ -s===$&&A.c() -s.b=B.B -s.c=null -s=a.c -s.toString -r=s/(p.a.id.a-40) -s=p.c.an(t.I) -s.toString -switch(s.w.a){case 0:s=p.kA$ -s===$&&A.c() -q=s.x -q===$&&A.c() -s.sl(0,q-r) -break -case 1:s=p.kA$ -s===$&&A.c() -q=s.x -q===$&&A.c() -s.sl(0,q+r) -break}}}, -ajL(a){var s,r,q=this,p=q.kB$ -p===$&&A.c() -p=p.gl(p) -s=q.a -r=s.c -if(p>=0.5!==r){s.d.$1(!r) -q.ao(new A.avk(q))}else q.AD() -p=q.lA$ -p===$&&A.c() -p.de(0)}, -ajJ(a){var s=this.a.d -a.toString -s.$1(a)}, -G(b9){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7=this,b8=null -if(b7.e){b7.e=!1 -b7.AD()}s=A.a2(b9) -r=A.aEc(b9) -q=new A.a0j() -p=new A.axO(A.a2(b9),A.a2(b9).ax,b8,b8,b8,b8,b8,b8,b8,b8,b8) -o=b7.kA$ -o===$&&A.c() -o.e=A.d2(0,q.gaux(),0) -n=b7.gfB() -n.E(0,B.au) -m=b7.gfB() -m.F(0,B.au) -b7.a.toString -l=b7.guG().a.$1(n) -if(l==null){o=r.a -l=o==null?b8:o.P(n)}o=l==null -if(o){k=p.gk0().a.$1(n) -k.toString -j=k}else j=l -b7.a.toString -i=b7.guG().a.$1(m) -if(i==null){k=r.a -i=k==null?b8:k.P(m)}k=i==null -if(k){h=p.gk0().a.$1(m) -h.toString -g=h}else g=i -b7.a.toString -h=b7.gUE().a.$1(n) -if(h==null){h=r.b -h=h==null?b8:h.P(n)}if(h==null){h=b7.guG().a.$1(n) -if(h==null)h=b8 -else{f=J.bh(h) -h=A.ao(128,f.gl(h)>>>16&255,f.gl(h)>>>8&255,f.gl(h)&255)}e=h}else e=h -if(e==null){h=p.gk5().a.$1(n) -h.toString -e=h}b7.a.toString -h=r.c -f=h==null?b8:h.P(n) -d=f -if(d==null)d=B.C -b7.a.toString -f=r.d -c=f==null?b8:f.P(n) -b=c -if(b==null){c=p.d -b=c==null?b8:c.P(n)}b7.a.toString -c=b7.gUE().a.$1(m) -if(c==null){c=r.b -c=c==null?b8:c.P(m) -a=c}else a=c -if(a==null){c=p.gk5().a.$1(m) -c.toString -a=c}b7.a.toString -h=h==null?b8:h.P(m) -a0=h -if(a0==null){p.gxf() -a0=b8}b7.a.toString -h=f==null?b8:f.P(m) -a1=h -if(a1==null){h=p.d -a1=h==null?b8:h.P(m)}b7.a.toString -a2=q.gfa().P(n) -a3=q.gfa().P(m) -a4=b7.gfB() -a4.E(0,B.a3) -b7.a.toString -h=r.r -f=h==null?b8:h.P(a4) -a5=f -if(a5==null){f=p.ge3().a.$1(a4) -f.toString -a5=f}a6=b7.gfB() -a6.E(0,B.ad) -b7.a.toString -f=h==null?b8:h.P(a6) -a7=f -if(a7==null){f=p.ge3().a.$1(a6) -f.toString -a7=f}n.E(0,B.ag) -b7.a.toString -f=b7.guG().a.$1(n) -if(f==null){f=r.a -f=f==null?b8:f.P(n) -a8=f}else a8=f -if(a8==null){f=p.gk0().a.$1(n) -f.toString -a8=f}b7.a.toString -f=h==null?b8:h.P(n) -if(f==null){o=o?b8:A.ao(31,l.gl(l)>>>16&255,l.gl(l)>>>8&255,l.gl(l)&255) -a9=o}else a9=f -if(a9==null){o=p.ge3().a.$1(n) -o.toString -a9=o}m.E(0,B.ag) -b7.a.toString -o=b7.guG().a.$1(m) -if(o==null){o=r.a -o=o==null?b8:o.P(m) -b0=o}else b0=o -if(b0==null){o=p.gk0().a.$1(m) -o.toString -b0=o}b7.a.toString -o=h==null?b8:h.P(m) -if(o==null){o=k?b8:A.ao(31,i.gl(i)>>>16&255,i.gl(i)>>>8&255,i.gl(i)&255) -b1=o}else b1=o -if(b1==null){o=p.ge3().a.$1(m) -o.toString -b1=o}b2=q.gIm() -b7.a.toString -b3=q.gKq() -b7.a.toString -b4=r.w -if(b4==null)b4=p.gho() -o=b7.a -k=o.c -h=o.cx -f=o.fx -c=o.fy -o=o.id -b5=b7.d -b6=b7.kB$ -b6===$&&A.c() -b5.sbv(0,b6) -b6=b7.vN$ -b6===$&&A.c() -b5.sZq(b6) -b6=b7.vP$ -b6===$&&A.c() -b5.sZs(b6) -b6=b7.vO$ -b6===$&&A.c() -b5.sZt(b6) -b5.sXR(b1) -b5.sZr(a9) -b5.smZ(a7) -b5.skC(a5) -b5.sho(b4) -b5.sWG(b7.ot$) -b5.sra(b7.gfB().t(0,B.a3)) -b5.sYd(b7.gfB().t(0,B.ad)) -b5.sAo(j) -b5.sXQ(g) -b5.salv(a8) -b5.saqG(b0) -b5.salx(b7.a.x) -b5.saso(b7.a.y) -b5.saqI(b7.a.z) -b5.sasD(b7.a.Q) -b5.saly(e) -b5.salz(d) -b5.salA(b) -b5.saqJ(a) -b5.saqK(a0) -b5.saqL(a1) -b5.sls(A.tJ(b9,b8)) -b5.sarj(b7.gf_()!=null) -b5.sauE(b7.a.id.a-40) -b6=b9.an(t.I) -b6.toString -b5.sbF(b6.w) -b5.sa5O(s.ax.cy) -b5.sKq(b3) -b5.sIm(b2) -b5.sLn(q.gLn()) -b5.sLN(q.gLN()) -b5.sLW(q.gLW()) -b5.sLY(q.gLY()) -b5.salu(a2) -b5.saqF(a3) -b5.sals(b8) -b5.saqE(b8) -b5.soz(A.adi(b9)) -b5.sLO(q.gLO()) -b5.sLZ(q.gLZ()) -b5.satf(b7.kA$) -h=A.hF(b8,b7.Vo(!1,f,new A.dy(new A.avn(b7,r),t.bN),c,b5,o),h,!0,b8,b8,b8,b8,b7.gajK(),b7.gajM(),b7.gajO(),b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,!1,B.aP) -return new A.bL(A.c7(b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,b8,k,b8,b8),!1,!1,!1,!1,h,b8)}} -A.avl.prototype={ -$1(a){if(a.t(0,B.x))return this.a.a.r -if(a.t(0,B.au))return this.a.a.e -return this.a.a.r}, -$S:61} -A.avm.prototype={ -$1(a){if(a.t(0,B.au))return this.a.a.f -return this.a.a.w}, -$S:61} -A.avk.prototype={ -$0(){this.a.e=!0}, -$S:0} -A.avn.prototype={ -$1(a){var s=A.cD(this.a.a.cy,a,t.WV) -if(s==null)s=null -return s==null?A.cD(B.cx,a,t.Pb):s}, -$S:100} -A.IO.prototype={ -satf(a){if(a===this.db)return -this.db=a -this.T()}, -sals(a){return}, -saqE(a){return}, -soz(a){if(a.j(0,this.fr))return -this.fr=a -this.T()}, -salu(a){if(a.j(0,this.fx))return -this.fx=a -this.T()}, -saqF(a){if(a.j(0,this.fy))return -this.fy=a -this.T()}, -salv(a){if(a.j(0,this.go))return -this.go=a -this.T()}, -saqG(a){if(a.j(0,this.id))return -this.id=a -this.T()}, -sIm(a){if(a===this.k1)return -this.k1=a -this.T()}, -sKq(a){if(a===this.k2)return -this.k2=a -this.T()}, -sLn(a){if(a===this.k3)return -this.k3=a -this.T()}, -sLN(a){if(a==this.k4)return -this.k4=a -this.T()}, -sLZ(a){if(a.j(0,this.ok))return -this.ok=a -this.T()}, -sLW(a){if(a===this.p1)return -this.p1=a -this.T()}, -sLY(a){if(a===this.p2)return -this.p2=a -this.T()}, -salx(a){return}, -saso(a){return}, -saqI(a){return}, -sasD(a){return}, -saly(a){if(a.j(0,this.rx))return -this.rx=a -this.T()}, -salz(a){if(a.j(0,this.ry))return -this.ry=a -this.T()}, -saqK(a){if(J.e(a,this.to))return -this.to=a -this.T()}, -salA(a){if(a==this.x1)return -this.x1=a -this.T()}, -saqL(a){if(a==this.x2)return -this.x2=a -this.T()}, -saqJ(a){if(a.j(0,this.xr))return -this.xr=a -this.T()}, -sls(a){if(a.j(0,this.y1))return -this.y1=a -this.T()}, -sbF(a){if(this.y2===a)return -this.y2=a -this.T()}, -sa5O(a){if(a.j(0,this.b_))return -this.b_=a -this.T()}, -sarj(a){if(a===this.bn)return -this.bn=a -this.T()}, -sauE(a){if(a===this.al)return -this.al=a -this.T()}, -sLO(a){var s=this.aG -if(a==null?s==null:a===s)return -this.aG=a -this.T()}, -abc(){if(!this.R)this.T()}, -ap(b1,b2){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8=this,a9=a8.a,b0=a9.gl(a9) -switch(a8.y2.a){case 0:s=1-b0 -break -case 1:s=b0 -break -default:s=null}a9=a8.b.a -if(!(a9.gb4(a9)===B.aN&&!a8.a1?a8.a1=!0:a8.a1=!1)){a9=a8.b -if(a9.gb4(a9)===B.W){a9=a8.k2 -a9.toString -r=a8.k3 -r.toString -q=a8.b -a8.ar=A.a3(a9,r,q.gl(q)) -q=a8.k1 -q.toString -r=a8.k3 -r.toString -a9=a8.b -a8.az=A.a3(q,r,a9.gl(a9))}if(b0===0){a9=a8.k2 -a9.toString -r=a8.k3 -r.toString -q=a8.b -a8.ar=A.a3(a9,r,q.gl(q)) -q=a8.k1 -q.toString -a8.az=q}if(b0===1){a9=a8.k1 -a9.toString -r=a8.k3 -r.toString -q=a8.b -a8.az=A.a3(a9,r,q.gl(q)) -q=a8.k2 -q.toString -a8.ar=q}}a9=a8.ar -if(a9==null){a9=a8.k2 -a9.toString}a9*=2 -r=a8.az -if(r==null){r=a8.k1 -r.toString}r*=2 -r=new A.axU(a8,new A.Q(a9,a9),new A.Q(r,r)) -a9=a8.b -if(a9.gb4(a9)===B.W){a9=a8.k3 -a9.toString -a9*=2 -p=new A.Q(a9,a9)}else{a9=a8.a -if(a9.gb4(a9)!==B.H){a9=a8.a.a -a9=a9.gb4(a9)===B.aM}else a9=!0 -if(a9){a9=r.$1(!0) -r=a9.b -a9=a9.a -p=r.a7(0,a9.gl(a9))}else{a9=r.$1(!1) -r=a9.b -a9=a9.a -p=r.a7(0,a9.gl(a9))}}a9=a8.k4 -o=a9==null?0:1-Math.abs(b0-a9)*2 -a9=p.a-o -r=p.b-o -q=a8.db -q.toString -q=A.ci(B.cf,q,B.ce) -n=q.gl(q) -q=a8.xr -q.toString -m=a8.rx -m.toString -m=A.E(q,m,n) -m.toString -q=a8.to -l=q==null?null:A.E(q,a8.ry,n) -k=A.a3(a8.x2,a8.x1,n) -q=a8.b -if(q.gb4(q)!==B.H){q=a8.id -q.toString -j=a8.go -j.toString -j=A.E(q,j,n) -j.toString -i=j}else{q=a8.db.Q -q===$&&A.c() -if(q===B.aM){q=a8.id -q.toString -j=a8.e -j.toString -j=A.E(q,j,n) -j.toString -i=j}else{j=a8.f -if(q===B.aN){j.toString -q=a8.go -q.toString -q=A.E(j,q,n) -q.toString -i=q}else{j.toString -q=a8.e -q.toString -q=A.E(j,q,n) -q.toString -i=q}}}q=a8.b_ -q.toString -h=A.a6m(i,q) -q=b0<0.5 -g=q?a8.dy:a8.dx -f=q?a8.R8:a8.p3 -e=q?a8.RG:a8.p4 -q=$.ad() -d=q.b1() -d.saf(0,m) -m=a8.p2 -m.toString -j=a8.p1 -j.toString -c=(b2.a-m)/2 -b=b2.b -a=(b-j)/2 -a0=j/2 -a1=r/2 -a2=a1-a0 -a3=a8.al -a3.toString -a4=c-a2-(a9-r)/2+s*a3 -b1.cC(A.iQ(new A.y(c,a,c+m,a+j),new A.bc(a0,a0)),d) -if(l!=null){m=c+1 -j=a+1 -a3=a8.p2 -a3.toString -a5=a8.p1 -a5.toString -a6=A.iQ(new A.y(m,j,m+(a3-2),j+(a5-2)),new A.bc(a0,a0)) -a7=q.b1() -a7.sbC(0,B.Q) -a7.seP(k==null?2:k) -a7.saf(0,l) -b1.cC(a6,a7)}a8.YY(b1,new A.k(a4+a1,b/2)) -a8.agm(new A.k(a4,a-a2),b1,n,h,f,e,g,new A.Q(a9,r),o)}, -agm(a,b,c,d,e,f,g,h,i){var s,r,q=this -try{q.R=!0 -if(q.B!=null)if(d.j(0,q.bd))r=!1 -else r=!0 -else r=!0 -if(r){q.bd=d -q.bS=e -q.bk=f -r=q.B -if(r!=null)r.n() -q.B=A.b26(new A.hf(d,null,null,q.aG,B.zd),q.gabb())}r=q.B -r.toString -s=r -s.hK(b,a,q.y1.B1(h))}finally{q.R=!1}}, -n(){var s=this,r=s.B -if(r!=null)r.n() -s.bk=s.bS=s.bd=s.B=null -s.a3N()}} -A.axU.prototype={ -$1(a){var s,r=this.b,q=this.a,p=this.c,o=t.q6,n=t.qU,m=t.kS,l=t.Bx,k=q.ok,j=n.i("f8") -if(a){k.toString -s=A.b([new A.hT(new A.f8(new A.eX(B.mV),new A.ay(r,k,n),j),11,m),new A.hT(new A.f8(new A.eX(B.mU),new A.ay(k,p,n),j),72,m),new A.hT(new A.uo(p,p,l),17,m)],o)}else{k.toString -s=A.b([new A.hT(new A.uo(r,r,l),17,m),new A.hT(new A.f8(new A.eX(new A.ju(B.mU)),new A.ay(r,k,n),j),72,m),new A.hT(new A.f8(new A.eX(new A.ju(B.mV)),new A.ay(k,p,n),j),11,m)],o)}r=A.aLo(s,t.FW) -q=q.db -q.toString -return new A.aX(q,r,r.$ti.i("aX"))}, -$S:317} -A.axN.prototype={} -A.a0j.prototype={ -gIm(){return 10}, -gfa(){return new A.bJ(B.C,t.h9)}, -gKq(){return 10}, -gLn(){return 10}, -ga5P(){return 48}, -ga5Q(){return 40}, -gOa(){return 59}, -gLO(){return B.o5}, -gLW(){return 14}, -gLY(){return 33}, -gLN(){return 0.5}, -gLZ(){return B.Pb}, -gaux(){return 200}} -A.axO.prototype={ -gk0(){return new A.dy(new A.axR(this,this.y.ax.a===B.Y),t.h2)}, -gk5(){return new A.dy(new A.axS(this,this.y.ax.a===B.Y),t.h2)}, -gxf(){return null}, -gkN(){return this.y.e}, -gkO(){return new A.dy(new A.axP(),t.bN)}, -ge3(){return new A.dy(new A.axQ(this),t._s)}, -gho(){return 20}} -A.axR.prototype={ -$1(a){if(a.t(0,B.x))return this.b?B.bT:B.cd -if(a.t(0,B.au))return this.a.z.f -return this.b?B.cd:B.iJ}, -$S:24} -A.axS.prototype={ -$1(a){var s -if(a.t(0,B.x))return this.b?B.iK:B.bc -if(a.t(0,B.au)){s=this.a.z.f -return A.ao(128,s.gl(s)>>>16&255,s.gl(s)>>>8&255,s.gl(s)&255)}return this.b?B.Dh:B.Dj}, -$S:24} -A.axP.prototype={ -$1(a){return B.cx.P(a)}, -$S:100} -A.axQ.prototype={ -$1(a){var s,r -if(a.t(0,B.ag)){s=this.a.gk0().a.$1(a) -r=J.bh(s) -return A.ao(31,r.gl(s)>>>16&255,r.gl(s)>>>8&255,r.gl(s)&255)}if(a.t(0,B.ad))return this.a.y.dx -if(a.t(0,B.a3))return this.a.y.cx -return null}, -$S:61} -A.JQ.prototype={ -bY(){this.cR() -this.cA() -this.ep()}, -n(){var s=this,r=s.aZ$ -if(r!=null)r.H(0,s.ge8()) -s.aZ$=null -s.aP()}} -A.JR.prototype={ -aE(){var s,r=this,q=null -r.aV() -s=A.bO(q,B.F,q,!r.a.c?0:1,r) -r.kA$=s -r.kB$=A.ci(B.ce,s,B.cf) -s=A.bO(q,B.aE,q,q,r) -r.lA$=s -r.vN$=A.ci(B.af,s,q) -s=A.bO(q,B.dV,q,r.mP$||r.mO$?1:0,r) -r.r_$=s -r.vO$=A.ci(B.af,s,q) -s=A.bO(q,B.dV,q,r.mP$||r.mO$?1:0,r) -r.r0$=s -r.vP$=A.ci(B.af,s,q)}, -n(){var s=this,r=s.kA$ -r===$&&A.c() -r.n() -r=s.lA$ -r===$&&A.c() -r.n() -r=s.r_$ -r===$&&A.c() -r.n() -r=s.r0$ -r===$&&A.c() -r.n() -s.a5u()}} -A.a2G.prototype={} -A.axT.prototype={ -I(){return"_SwitchListTileType."+this.b}} -A.T5.prototype={ -G(a){var s,r,q,p,o,n=this,m=null -switch(0){case 0:s=new A.T4(n.c,n.d,m,m,m,m,m,m,m,m,m,m,m,m,B.ub,B.Xj,!1,B.a1,m,m,m,m,!1,m) -break}switch(2){case 1:case 2:break}r=A.a2(a) -q=A.aEc(a) -p=q.a -p=p==null?m:p.P(A.aE(t.ui)) -o=p -if(o==null)o=r.ax.f -return new A.vA(A.aDv(!1,m,m,m,!0,m,m,!1,m,m,new A.anH(n),!1,o,m,m,m,m,n.fy,s,m),m)}} -A.anH.prototype={ -$0(){var s=this.a -s.d.$1(!s.c)}, -$S:0} -A.wT.prototype={ -gA(a){var s=this -return A.T(s.gk0(),s.gk5(),s.gxf(),s.gLX(),s.gkN(),s.gkO(),s.ge3(),s.gho(),s.x,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.Y(b)!==A.u(s))return!1 -return b instanceof A.wT&&b.gk0()==s.gk0()&&b.gk5()==s.gk5()&&b.gxf()==s.gxf()&&b.gLX()==s.gLX()&&b.gkN()==s.gkN()&&b.gkO()==s.gkO()&&b.ge3()==s.ge3()&&b.gho()==s.gho()&&!0}, -gk0(){return this.a}, -gk5(){return this.b}, -gxf(){return this.c}, -gLX(){return this.d}, -gkN(){return this.e}, -gkO(){return this.f}, -ge3(){return this.r}, -gho(){return this.w}} -A.a0k.prototype={} -A.EC.prototype={ -gA(a){var s=this -return A.T(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,s.as,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -j(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.Y(b)!==A.u(r))return!1 -if(b instanceof A.EC)if(J.e(b.a,r.a))if(J.e(b.b,r.b))if(J.e(b.d,r.d))if(J.e(b.e,r.e))if(J.e(b.f,r.f))if(J.e(b.r,r.r))if(J.e(b.w,r.w))if(J.e(b.x,r.x))if(b.y==r.y)s=!0 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -return s}} -A.a0n.prototype={} -A.Tp.prototype={ -vp(a){var s,r=A.a2(a),q=r.ax -A.a2(a) -s=q.db.a -s=A.aEf(B.a0,B.F,B.C,B.C,A.ao(97,s>>>16&255,s>>>8&255,s&255),B.bN,0,!0,B.c2,q.b,B.kE,B.kD,A.b4e(a),r.k2,B.ez,B.iw,r.e,r.p3.as,r.z) -return s}, -LL(a){var s -a.an(t.Pj) -s=A.a2(a) -return s.C.a}} -A.IS.prototype={ -P(a){if(a.t(0,B.x))return this.b -return this.a}, -k(a){return"{disabled: "+A.j(this.b)+", otherwise: "+A.j(this.a)+"}"}} -A.a0D.prototype={ -P(a){var s -if(a.t(0,B.ag)){s=this.a -return A.ao(31,s.gl(s)>>>16&255,s.gl(s)>>>8&255,s.gl(s)&255)}if(a.t(0,B.ad)){s=this.a -return A.ao(10,s.gl(s)>>>16&255,s.gl(s)>>>8&255,s.gl(s)&255)}if(a.t(0,B.a3)){s=this.a -return A.ao(31,s.gl(s)>>>16&255,s.gl(s)>>>8&255,s.gl(s)&255)}return null}, -k(a){var s=this.a -return"{hovered: "+A.ao(10,s.gl(s)>>>16&255,s.gl(s)>>>8&255,s.gl(s)&255).k(0)+", focused,pressed: "+A.ao(31,s.gl(s)>>>16&255,s.gl(s)>>>8&255,s.gl(s)&255).k(0)+", otherwise: null}"}} -A.a0C.prototype={ -P(a){if(a.t(0,B.x))return this.b -return this.a}} -A.a2I.prototype={} -A.EQ.prototype={ -gA(a){return J.C(this.a)}, -j(a,b){if(b==null)return!1 -if(this===b)return!0 -if(J.Y(b)!==A.u(this))return!1 -return b instanceof A.EQ&&J.e(b.a,this.a)}} -A.a0E.prototype={} -A.a0G.prototype={ -ro(a){var s -this.O1(a) -s=this.a -if(s.geD()&&this.b){s=s.ga4().gO() -s.toString -s.iw()}}, -wI(a){}, -rq(a){var s -this.a3M(a) -s=this.w -s.Sp() -s.a.toString}, -rp(a){var s,r -this.a3L(a) -if(this.a.geD()){s=this.w -r=s.c -r.toString -switch(A.a2(r).r.a){case 2:case 4:break -case 0:case 1:case 3:case 5:s=s.c -s.toString -A.aD4(s) -break}}}} -A.ET.prototype={ -ae(){var s=null -return new A.IT(new A.bB(s,t.NE),s,A.m(t.yb,t.M),s,!0,s,B.i)}} -A.IT.prototype={ -glf(){var s=this.a.d -return s}, -ghr(){var s=this.a.e -if(s==null){s=this.e -if(s==null){s=A.qA(!0,null,!0,!0,null,null,!1) -this.e=s}}return s}, -ga9m(){this.a.toString -var s=this.c -s.toString -A.a2(s) -return B.Ls}, -gK6(){var s=this.x -s===$&&A.c() -return s}, -geD(){return this.a.xr}, -gnT(){this.a.toString -return!0}, -gadG(){this.a.toString -return!1}, -gpQ(){var s=this.a.f -return s.ax!=null||this.gadG()}, -gu_(){this.a.toString -var s=this.c -s.toString -s=A.a2(s) -return s.ax.at}, -aao(){var s,r,q,p,o=this,n=o.c -n.toString -A.h9(n,B.b_,t.R).toString -n=o.c -n.toString -s=A.a2(n) -n=o.a.f -n=n.V7(s.d) -o.gnT() -r=o.a -q=r.f.as -p=n.anC(!0,q==null?r.dx:q) -n=p.p3==null -if(!n||p.p2!=null)return p -r=o.glf().a.a -r=r.length===0?B.ct:new A.f5(r) -r.gp(r) -if(n)if(p.p2==null)o.a.toString -o.a.toString -return p}, -aE(){var s,r=this -r.aV() -r.w=new A.a0G(r,r) -r.a.toString -s=r.ghr() -r.a.toString -r.gnT() -s.sdl(!0) -r.ghr().U(0,r.gA1())}, -gTC(){var s,r=this.c -r.toString -r=A.ct(r,B.dB) -s=r==null?null:r.ax -switch((s==null?B.cL:s).a){case 0:this.a.toString -this.gnT() -return!0 -case 1:return!0}}, -bu(){this.a5J() -this.ghr().sdl(this.gTC())}, -aM(a){var s,r,q=this -q.a5K(a) -s=q.a -r=a.e -if(s.e!=r){s=r==null?q.e:r -if(s!=null)s.H(0,q.gA1()) -s=q.a.e -if(s==null)s=q.e -if(s!=null)s.U(0,q.gA1())}q.ghr().sdl(q.gTC()) -if(q.ghr().gcj())q.a.toString}, -is(a,b){var s=this.d -if(s!=null)this.nd(s,"controller")}, -gei(){this.a.toString -return null}, -n(){var s,r=this -r.ghr().H(0,r.gA1()) -s=r.e -if(s!=null)s.n() -s=r.d -if(s!=null){s.yB() -s.EH()}r.a5L()}, -Sp(){var s=this.y.gO() -if(s!=null)s.LE()}, -aj3(a){var s=this,r=s.w -r===$&&A.c() -if(!r.b)return!1 -if(a===B.a8)return!1 -s.a.toString -s.gnT() -if(a===B.aJ||a===B.hu)return!0 -if(s.glf().a.a.length!==0)return!0 -return!1}, -ajX(){this.ao(new A.ayn())}, -acO(a,b){var s,r=this,q=r.aj3(b) -if(q!==r.r)r.ao(new A.ayp(r,q)) -s=r.c -s.toString -switch(A.a2(s).r.a){case 2:case 4:case 3:case 5:case 1:case 0:if(b===B.aJ){s=r.y.gO() -if(s!=null)s.i7(a.gdz())}break}s=r.c -s.toString -switch(A.a2(s).r.a){case 2:case 1:case 0:break -case 4:case 3:case 5:if(b===B.a5){s=r.y.gO() -if(s!=null)s.hc()}break}}, -acU(){var s=this.glf().a.b -if(s.a===s.b)this.y.gO().LV()}, -QL(a){if(a!==this.f)this.ao(new A.ayo(this,a))}, -gng(){var s,r,q,p,o,n=this -n.a.toString -s=J.o5(B.cm.slice(0),t.N) -if(s!=null){r=n.y.gO() -r.toString -r=A.fi(r) -q=n.glf().a -p=n.a.f -o=new A.zq(!0,"EditableText-"+r,s,q,p.y)}else o=B.lE -r=n.y.gO().gng() -return A.aL8(r.ax,!0,o,!1,!0,r.x,!0,r.z,r.a,r.as,!1,r.b,r.f,r.r,r.Q)}, -gGT(){var s=this,r=A.aE(t.ui) -s.gnT() -if(s.f)r.E(0,B.ad) -if(s.ghr().gcj())r.E(0,B.a3) -if(s.gpQ())r.E(0,B.jY) -return r}, -G(b4){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9=this,b0=null,b1={},b2=A.a2(b4),b3=b4.an(t.Uf) -if(b3==null)b3=B.d7 -s=b2.p3.w -s.toString -r=a9.c -r.toString -A.a2(r) -r=a9.c -r.toString -r=A.b42(r) -q=t.em -p=A.cD(r,a9.gGT(),q) -q=A.cD(s,a9.gGT(),q).b0(p) -a9.a.toString -o=q.b0(b0) -a9.a.toString -s=b2.ax -n=a9.glf() -m=a9.ghr() -r=A.b([],t.VS) -a9.a.toString -switch(A.bA().a){case 2:case 4:l=A.aWI(b0) -break -case 0:case 1:case 3:case 5:l=A.b0C(b0) -break -default:l=b0}a9.a.toString -b1.a=null -switch(b2.r.a){case 2:k=A.fu(b4) -a9.x=!0 -j=$.aGC() -if(a9.gpQ())i=a9.gu_() -else{a9.a.toString -q=b3.w -i=q==null?k.gey():q}h=b3.x -if(h==null){b3=k.gey() -h=A.ao(102,b3.gl(b3)>>>16&255,b3.gl(b3)>>>8&255,b3.gl(b3)&255)}g=new A.k(-2/A.bD(b4,B.bP,t.w).w.b,0) -f=h -e=!0 -d=!0 -c=B.cr -break -case 4:k=A.fu(b4) -d=a9.x=!1 -j=$.aGB() -if(a9.gpQ())i=a9.gu_() -else{a9.a.toString -q=b3.w -i=q==null?k.gey():q}h=b3.x -if(h==null){b3=k.gey() -h=A.ao(102,b3.gl(b3)>>>16&255,b3.gl(b3)>>>8&255,b3.gl(b3)&255)}g=new A.k(-2/A.bD(b4,B.bP,t.w).w.b,0) -b1.a=new A.ayr(a9) -f=b0 -e=!0 -c=B.cr -break -case 0:case 1:a9.x=!1 -j=$.aGI() -if(a9.gpQ())i=a9.gu_() -else{a9.a.toString -q=b3.w -i=q==null?s.b:q}h=b3.x -if(h==null){b3=s.b -h=A.ao(102,b3.gl(b3)>>>16&255,b3.gl(b3)>>>8&255,b3.gl(b3)&255)}c=b0 -f=c -g=f -e=!1 -d=!1 -break -case 3:a9.x=!1 -j=$.aCf() -if(a9.gpQ())i=a9.gu_() -else{a9.a.toString -q=b3.w -i=q==null?s.b:q}h=b3.x -if(h==null){b3=s.b -h=A.ao(102,b3.gl(b3)>>>16&255,b3.gl(b3)>>>8&255,b3.gl(b3)&255)}c=b0 -f=c -g=f -e=!1 -d=!1 -break -case 5:a9.x=!1 -j=$.aCf() -if(a9.gpQ())i=a9.gu_() -else{a9.a.toString -q=b3.w -i=q==null?s.b:q}h=b3.x -if(h==null){b3=s.b -h=A.ao(102,b3.gl(b3)>>>16&255,b3.gl(b3)>>>8&255,b3.gl(b3)&255)}b1.a=new A.ays(a9) -c=b0 -f=c -g=f -e=!1 -d=!1 -break -default:c=b0 -f=c -h=f -i=h -g=i -d=g -e=d -j=e}b3=a9.bP$ -a9.a.toString -a9.gnT() -q=a9.a -b=a9.r -a=q.r -a0=q.cx -a1=q.cy -q=q.dx -a2=m.gcj()?h:b0 -a3=a9.a -a4=a3.xr -a5=a4?j:b0 -a3=a3.k4 -a6=$.aGb() -b3=A.U0(b3,A.aIp(!0,f,a9,B.cm,!1,B.bU,B.S,b0,A.b71(),n,i,b0,g,d,c,2,B.a1,!0,a4,!0,!1,m,!0,r,a9.y,s.a,a,a6,q,b0,B.bp,!1,"\u2022",b0,b0,b0,a9.gacN(),a9.gacT(),a3,b0,e,!1,!0,"editable",!0,b0,B.fu,b0,a2,a5,B.d0,B.c9,b0,b,a0,a1,l,b0,o,B.aR,B.zq,b0,b0,b0,b0,B.aH,b0,b0)) -a9.a.toString -a7=A.jn(new A.ty(A.b([m,n],t.Eo)),new A.ayt(a9,m,n),new A.ir(b3,b0)) -a9.a.toString -a8=A.cD(B.Ws,a9.gGT(),t.Pb) -b1.b=null -if(a9.ga9m()!==B.Lr)a9.a.toString -a9.gnT() -b3=a9.w -b3===$&&A.c() -return A.jB(A.EU(A.v5(A.jn(n,new A.ayu(b1,a9),b3.Vl(B.bX,a7)),!1,b0),b0,b0),a8,b0,new A.ayv(a9),new A.ayw(a9),b0)}, -ga4(){return this.y}} -A.ayn.prototype={ -$0(){}, -$S:0} -A.ayp.prototype={ -$0(){this.a.r=this.b}, -$S:0} -A.ayo.prototype={ -$0(){this.a.f=this.b}, -$S:0} -A.ayr.prototype={ -$0(){var s=this.a -if(!s.ghr().gcj()&&s.ghr().gdl())s.ghr().kW()}, -$S:0} -A.ays.prototype={ -$0(){var s=this.a -if(!s.ghr().gcj()&&s.ghr().gdl())s.ghr().kW()}, -$S:0} -A.ayt.prototype={ -$2(a,b){var s,r,q,p=this.a,o=p.aao() -p.a.toString -s=p.f -r=this.b.gcj() -q=this.c.a.a -p.a.toString -return A.aYK(null,b,o,!1,q.length===0,r,s,B.aR,null)}, -$S:318} -A.ayv.prototype={ -$1(a){return this.a.QL(!0)}, -$S:48} -A.ayw.prototype={ -$1(a){return this.a.QL(!1)}, -$S:44} -A.ayu.prototype={ -$2(a,b){var s=null,r=this.a,q=r.b,p=this.b,o=p.glf().a.a -o=o.length===0?B.ct:new A.f5(o) -o=o.gp(o) -p.a.toString -r=r.a -return new A.bL(A.c7(s,s,s,s,s,s,s,o,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,q,s,s,s,s,s,s,s,r,s,s,s,s,s,s,s,s,s,s,s,s,s,new A.ayq(p),s,s,s,s,s,s,s,s,s,s,s),!1,!1,!1,!1,b,s)}, -$S:319} -A.ayq.prototype={ -$0(){var s=this.a -if(!s.glf().a.b.gc8())s.glf().st5(A.mL(B.l,s.glf().a.a.length)) -s.Sp()}, -$S:0} -A.aAn.prototype={ -$1(a){var s,r=null,q=A.a2(this.a) -if(a.t(0,B.x))return A.f6(r,r,q.ch,r,r,r,r,r,r,r,r,r,r,r,r,r,r,!0,r,r,r,r,r,r,r,r) -s=q.p3.w -return A.f6(r,r,s==null?r:s.b,r,r,r,r,r,r,r,r,r,r,r,r,r,r,!0,r,r,r,r,r,r,r,r)}, -$S:56} -A.azA.prototype={ -$2(a,b){if(!a.a)a.H(0,b)}, -$S:43} -A.K0.prototype={ -aM(a){this.b2(a) -this.og()}, -bu(){var s,r,q,p,o=this -o.di() -s=o.bP$ -r=o.glQ() -q=o.c -q.toString -q=A.oI(q) -o.fQ$=q -p=o.mq(q,r) -if(r){o.is(s,o.eu$) -o.eu$=!1}if(p)if(s!=null)s.n()}, -n(){var s,r=this -r.fP$.N(0,new A.azA()) -s=r.bP$ -if(s!=null)s.n() -r.bP$=null -r.aP()}} -A.Pn.prototype={} -A.afv.prototype={ -rW(a){return B.Pc}, -AN(a,b,c,d){var s,r,q,p=null,o=A.a2(a) -a.an(t.bZ) -s=A.a2(a) -r=s.ah.c -if(r==null)r=o.ax.b -q=A.cz(A.kp(A.hF(B.bX,p,B.a1,!1,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,d,p,p,p,!1,B.aP),p,p,new A.a0H(r,p),B.o),22,22) -switch(b.a){case 0:return A.aEm(B.a0,1.5707963267948966,q,p) -case 1:return q -case 2:return A.aEm(B.a0,0.7853981633974483,q,p)}}, -rV(a,b){switch(a.a){case 0:return B.Ma -case 1:return B.e -case 2:return B.M6}}} -A.a0H.prototype={ -ap(a,b){var s,r,q,p,o=$.ad(),n=o.b1() -n.saf(0,this.b) -s=b.a/2 -r=A.l5(new A.k(s,s),s) -q=0+s -p=o.c_() -p.nX(r) -p.jv(new A.y(0,0,q,q)) -a.cY(p,n)}, -eE(a){return!this.b.j(0,a.b)}} -A.Yb.prototype={} -A.F3.prototype={ -gA(a){return A.T(this.a,this.b,this.c,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.Y(b)!==A.u(s))return!1 -return b instanceof A.F3&&J.e(b.a,s.a)&&J.e(b.b,s.b)&&J.e(b.c,s.c)}} -A.a0J.prototype={} -A.TB.prototype={ -G(a){var s=this.c.Z(0,B.k3),r=this.d.Y(0,B.M2),q=A.bD(a,B.bo,t.w).w.f.b+8,p=44<=s.b-8-q,o=new A.k(8,q) -return new A.bY(new A.aF(8,q,8,8),new A.i6(new A.TC(s.Z(0,o),r.Z(0,o),p),new A.IY(this.e,p,A.b73(),null),null),null)}} -A.IY.prototype={ -ae(){return new A.a0O(new A.mP(),null,null,B.i)}, -auA(a,b){return this.e.$2(a,b)}} -A.a0O.prototype={ -aM(a){var s=this -s.b2(a) -if(!A.d_(s.a.c,a.c)){s.e=new A.mP() -s.d=!1}}, -G(a){var s,r,q,p,o,n,m,l,k=this,j=null -A.h9(a,B.b_,t.R).toString -s=k.e -r=k.d -q=a.an(t.I) -q.toString -p=k.a -o=p.d -n=k.d -m=A.nW(n?B.jl:B.G3,j,j,j) -l=n?"Back":"More" -l=A.b([new A.a0N(m,new A.ayN(k),l,j)],t.p) -B.b.K(l,k.a.c) -return new A.a0P(r,q.w,A.aHc(p.auA(a,new A.a0L(o,n,l,j)),B.B,B.EY),s)}} -A.ayN.prototype={ -$0(){var s=this.a -s.ao(new A.ayM(s))}, -$S:0} -A.ayM.prototype={ -$0(){var s=this.a -s.d=!s.d}, -$S:0} -A.a0P.prototype={ -aD(a){var s=new A.a0Q(this.e,this.f,null,A.af(t.T)) -s.aC() -s.saW(null) -return s}, -aH(a,b){b.sLf(this.e) -b.sbF(this.f)}} -A.a0Q.prototype={ -sLf(a){if(a===this.V)return -this.V=a -this.W()}, -sbF(a){if(a===this.am)return -this.am=a -this.W()}, -bs(){var s,r,q=this,p=q.C$ -p.toString -s=t.k -r=s.a(A.t.prototype.ga2.call(q)) -p.bz(new A.ar(0,r.b,0,r.d),!0) -if(!q.V&&q.v==null){p=q.C$ -q.v=p.gq(p).a}p=s.a(A.t.prototype.ga2.call(q)) -s=q.v -if(s!=null){s=q.C$ -s=s.gq(s) -r=q.v -r.toString -s=s.a>r}else{r=s -s=!0}if(s){s=q.C$ -s=s.gq(s).a}else{r.toString -s=r}r=q.C$ -q.id=p.aX(new A.Q(s,r.gq(r).b)) -r=q.C$.b -r.toString -t.b.a(r) -if(q.am===B.a4)p=0 -else{p=q.gq(q) -s=q.C$ -s=p.a-s.gq(s).a -p=s}r.a=new A.k(p,0)}, -ap(a,b){var s=this.C$,r=s.b -r.toString -a.dc(s,t.b.a(r).a.Y(0,b))}, -co(a,b){var s=this.C$.b -s.toString -t.b.a(s) -return a.i4(new A.ayO(this,b,s),s.a,b)}, -e7(a){if(!(a.b instanceof A.fL))a.b=new A.fL(null,null,B.e)}, -d4(a,b){var s=a.b -s.toString -s=t.b.a(s).a -b.aK(0,s.a,s.b) -this.a35(a,b)}} -A.ayO.prototype={ -$2(a,b){return this.a.C$.c2(a,b)}, -$S:9} -A.a0L.prototype={ -aD(a){var s=new A.a_9(this.e,this.f,0,null,null,A.af(t.T)) -s.aC() -return s}, -aH(a,b){b.sKx(this.e) -b.sLf(this.f)}, -bN(a){return new A.a0M(A.d5(t.v),this,B.R)}} -A.a0M.prototype={} -A.a_9.prototype={ -sKx(a){if(a===this.R)return -this.R=a -this.W()}, -sLf(a){if(a===this.a1)return -this.a1=a -this.W()}, -aem(){var s,r=this,q={},p=t.k,o=r.a1?p.a(A.t.prototype.ga2.call(r)):A.pX(new A.Q(p.a(A.t.prototype.ga2.call(r)).b,44)) -q.a=-1 -q.b=0 -r.b3(new A.awx(q,r,o)) -p=r.a3$ -p.toString -s=r.B -if(s!==-1&&s===r.dG$-2&&q.b-p.gq(p).a<=o.b)r.B=-1}, -Tb(a,b){var s,r=this -if(a===r.a3$)return r.B!==-1 -s=r.B -if(s===-1)return!0 -return b>s===r.a1}, -ah2(){var s,r,q,p,o=this,n={} -n.a=-1 -n.b=B.o -n.c=0 -s=o.a3$ -s.toString -n.d=o.a1&&!o.R?s.gq(s).b:0 -o.b3(new A.awy(n,o,s)) -r=s.b -r.toString -t.b.a(r) -q=o.a3$ -q.toString -if(o.Tb(q,0)){r.e=!0 -if(o.a1){q=o.R -r.a=q?new A.k(0,n.d):B.e -r=n.b -p=r.b -s=q?p+s.gq(s).b:p -n.b=new A.Q(r.a,s)}else{r.a=new A.k(n.c,0) -n.b=new A.Q(n.b.a+s.gq(s).a,n.b.b)}}else r.e=!1 -o.id=n.b}, -bs(){var s,r=this -r.B=-1 -if(r.a3$==null){s=t.k.a(A.t.prototype.ga2.call(r)) -r.id=new A.Q(A.R(0,s.a,s.b),A.R(0,s.c,s.d)) -return}r.aem() -r.ah2()}, -ap(a,b){this.b3(new A.awA(a,b))}, -e7(a){if(!(a.b instanceof A.fL))a.b=new A.fL(null,null,B.e)}, -co(a,b){var s,r,q={},p=q.a=this.d7$ -for(s=t.b;p!=null;){p=p.b -p.toString -s.a(p) -if(!p.e){r=p.cn$ -q.a=r -p=r -continue}if(a.i4(new A.awz(q,b,p),p.a,b))return!0 -r=p.cn$ -q.a=r -p=r}return!1}, -fu(a){this.b3(new A.awB(a))}} -A.awx.prototype={ -$1(a){var s,r,q,p,o=this.a;++o.a -s=this.b -if(s.B!==-1&&!s.a1)return -t.x.a(a) -r=this.c -q=r.b -a.bz(new A.ar(0,q,0,r.d),!0) -p=o.b+a.gq(a).a -o.b=p -if(p>q&&s.B===-1)s.B=o.a-1}, -$S:13} -A.awy.prototype={ -$1(a){var s,r,q,p=this.a,o=++p.a -t.x.a(a) -s=a.b -s.toString -t.b.a(s) -if(a===this.c)return -r=this.b -if(!r.Tb(a,o)){s.e=!1 -return}s.e=!0 -if(!r.a1){o=p.c -s.a=new A.k(o,0) -q=o+a.gq(a).a -p.c=q -p.b=new A.Q(q,Math.max(a.gq(a).b,p.b.b))}else{o=p.d -s.a=new A.k(0,o) -p.d=o+a.gq(a).b -p.b=new A.Q(Math.max(a.gq(a).a,p.b.a),p.d)}}, -$S:13} -A.awA.prototype={ -$1(a){var s -t.x.a(a) -s=a.b -s.toString -t.b.a(s) -if(!s.e)return -this.a.dc(a,s.a.Y(0,this.b))}, -$S:13} -A.awz.prototype={ -$2(a,b){return this.a.a.c2(a,b)}, -$S:9} -A.awB.prototype={ -$1(a){var s -t.x.a(a) -s=a.b -s.toString -if(t.b.a(s).e)this.a.$1(a)}, -$S:13} -A.a0K.prototype={ -G(a){var s=null -return A.ha(B.F,B.lM,this.c,B.cA,s,1,s,s,s,s,s,B.dd)}} -A.a0N.prototype={ -G(a){var s=null -return A.ha(B.F,s,A.h7(s,s,this.c,s,this.d,s,s,s,this.e),B.m,B.C,0,s,s,s,s,s,B.dd)}} -A.a2t.prototype={ -ai(a){var s,r,q -this.dD(a) -s=this.a3$ -for(r=t.b;s!=null;){s.ai(a) -q=s.b -q.toString -s=r.a(q).ab$}}, -aa(a){var s,r,q -this.dE(0) -s=this.a3$ -for(r=t.b;s!=null;){s.aa(0) -q=s.b -q.toString -s=r.a(q).ab$}}} -A.a2J.prototype={ -bY(){this.cR() -this.cA() -this.ep()}, -n(){var s=this,r=s.aZ$ -if(r!=null)r.H(0,s.ge8()) -s.aZ$=null -s.aP()}} -A.yz.prototype={ -I(){return"_TextSelectionToolbarItemPosition."+this.b}} -A.TD.prototype={ -G(a){var s=this,r=null,q=A.a2(a).ax.a===B.Y?B.j:B.J -return A.aL4(s.c,s.d,A.aEf(s.f,r,r,r,r,r,r,r,r,q,r,B.z6,s.e,r,B.kg,r,r,r,r))}} -A.eb.prototype={ -b0(b3){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1=this,b2=null -if(b3==null)return b1 -s=b1.a -r=s==null?b2:s.b0(b3.a) -if(r==null)r=b3.a -q=b1.b -p=q==null?b2:q.b0(b3.b) -if(p==null)p=b3.b -o=b1.c -n=o==null?b2:o.b0(b3.c) -if(n==null)n=b3.c -m=b1.d -l=m==null?b2:m.b0(b3.d) -if(l==null)l=b3.d -k=b1.e -j=k==null?b2:k.b0(b3.e) -if(j==null)j=b3.e -i=b1.f -h=i==null?b2:i.b0(b3.f) -if(h==null)h=b3.f -g=b1.r -f=g==null?b2:g.b0(b3.r) -if(f==null)f=b3.r -e=b1.w -d=e==null?b2:e.b0(b3.w) -if(d==null)d=b3.w -c=b1.x -b=c==null?b2:c.b0(b3.x) -if(b==null)b=b3.x -a=b1.y -a0=a==null?b2:a.b0(b3.y) -if(a0==null)a0=b3.y -a1=b1.z -a2=a1==null?b2:a1.b0(b3.z) -if(a2==null)a2=b3.z -a3=b1.Q -a4=a3==null?b2:a3.b0(b3.Q) -if(a4==null)a4=b3.Q -a5=b1.as -a6=a5==null?b2:a5.b0(b3.as) -if(a6==null)a6=b3.as -a7=b1.at -a8=a7==null?b2:a7.b0(b3.at) -if(a8==null)a8=b3.at -a9=b1.ax -b0=a9==null?b2:a9.b0(b3.ax) -if(b0==null)b0=b3.ax -if(r==null)r=b2 -s=r==null?s:r -r=p==null?b2:p -if(r==null)r=q -q=n==null?b2:n -if(q==null)q=o -p=l==null?m:l -o=j==null?b2:j -if(o==null)o=k -n=h==null?b2:h -if(n==null)n=i -m=f==null?b2:f -if(m==null)m=g -l=d==null?b2:d -if(l==null)l=e -k=b==null?b2:b -if(k==null)k=c -j=a0==null?b2:a0 -if(j==null)j=a -i=a2==null?b2:a2 -if(i==null)i=a1 -h=a4==null?b2:a4 -if(h==null)h=a3 -g=a6==null?b2:a6 -if(g==null)g=a5 -f=a8==null?a7:a8 -e=b0==null?b2:b0 -return A.aLf(j,i,h,s,r,q,p,o,n,g,f,e==null?a9:e,m,l,k)}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.Y(b)!==A.u(s))return!1 -return b instanceof A.eb&&J.e(s.a,b.a)&&J.e(s.b,b.b)&&J.e(s.c,b.c)&&J.e(s.d,b.d)&&J.e(s.e,b.e)&&J.e(s.f,b.f)&&J.e(s.r,b.r)&&J.e(s.w,b.w)&&J.e(s.x,b.x)&&J.e(s.y,b.y)&&J.e(s.z,b.z)&&J.e(s.Q,b.Q)&&J.e(s.as,b.as)&&J.e(s.at,b.at)&&J.e(s.ax,b.ax)}, -gA(a){var s=this -return A.T(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,s.as,s.at,s.ax,B.a,B.a,B.a,B.a,B.a)}} -A.a0T.prototype={} -A.F5.prototype={ -G(a){var s,r,q=null,p=this.c,o=B.cg.a,n=B.cg.b,m=B.cg.c,l=B.cg.d,k=B.cg.e,j=B.cg.f,i=B.cg.r,h=a.an(t.Uf) -if(h==null)h=B.d7 -s=p.ah -r=s.b -if(r==null)r=h.x -s=s.a -h=s==null?h.w:s -return new A.GX(this,new A.Mp(new A.Pf(p,new A.Ci(o,n,m,l,k,j,i),B.lb,o,n,m,l,k,j,i),A.v3(A.a6X(this.d,h,q,q,r),p.ok,q),q),q)}} -A.GX.prototype={ -xp(a,b,c){return new A.F5(this.w.c,c,null)}, -cP(a){return!this.w.c.j(0,a.w.c)}} -A.t8.prototype={ -e2(a){var s,r=this.a -r.toString -s=this.b -s.toString -return A.b0P(r,s,a)}} -A.za.prototype={ -ae(){return new A.UF(null,null,B.i)}} -A.UF.prototype={ -lD(a){var s=a.$3(this.CW,this.a.r,new A.aqY()) -s.toString -this.CW=t.ZM.a(s)}, -G(a){var s,r=this.CW -r.toString -s=this.geF() -return new A.F5(r.a7(0,s.gl(s)),this.a.w,null)}} -A.aqY.prototype={ -$1(a){return new A.t8(t.we.a(a),null)}, -$S:320} -A.ra.prototype={ -I(){return"MaterialTapTargetSize."+this.b}} -A.j1.prototype={ -j(a,b){var s,r,q=this -if(b==null)return!1 -if(J.Y(b)!==A.u(q))return!1 -if(b instanceof A.j1)if(b.a===q.a)if(A.aBI(b.c,q.c))if(b.d.j(0,q.d))if(b.e===q.e)if(b.f.j(0,q.f))if(b.r===q.r)if(b.w.j(0,q.w))if(b.x===q.x)if(b.z.j(0,q.z))if(b.as.j(0,q.as))if(b.at.j(0,q.at))if(b.ax.j(0,q.ax))if(b.ay.j(0,q.ay))if(b.ch.j(0,q.ch))if(b.CW.j(0,q.CW))if(b.cx.j(0,q.cx))if(b.cy.j(0,q.cy))if(b.db.j(0,q.db))if(b.dx.j(0,q.dx))if(b.dy.j(0,q.dy))if(b.fr.j(0,q.fr))if(b.fx.j(0,q.fx))if(b.fy.j(0,q.fy))if(b.go.j(0,q.go))if(b.id.j(0,q.id))if(b.k2.j(0,q.k2))if(b.k3.j(0,q.k3))if(b.k4.j(0,q.k4))if(b.ok.j(0,q.ok))if(b.p1.j(0,q.p1))if(b.p2.j(0,q.p2))if(b.p3.j(0,q.p3))if(b.p4.j(0,q.p4))if(J.e(b.R8,q.R8))if(b.RG.j(0,q.RG))if(b.rx.j(0,q.rx))if(b.ry.j(0,q.ry))if(b.to.j(0,q.to))if(b.x1.j(0,q.x1))if(b.x2.j(0,q.x2))if(b.xr.j(0,q.xr))if(b.y1.j(0,q.y1))if(b.y2.j(0,q.y2))if(b.b_.j(0,q.b_))if(b.bn.j(0,q.bn))if(b.al.j(0,q.al))if(b.aG.j(0,q.aG))if(b.bd.j(0,q.bd))if(b.bS.j(0,q.bS))if(b.bk.j(0,q.bk))if(b.B.j(0,q.B))if(b.R.j(0,q.R))if(b.a1.j(0,q.a1))if(b.ar.j(0,q.ar))if(b.az.j(0,q.az))if(b.aJ.j(0,q.aJ))if(b.au.j(0,q.au))if(b.aY.j(0,q.aY))if(b.b9.j(0,q.b9))if(b.c7.j(0,q.c7))if(b.c0.j(0,q.c0))if(b.aj.j(0,q.aj))if(b.ag.j(0,q.ag))if(b.aB.j(0,q.aB))if(b.aU.j(0,q.aU))if(b.aN.j(0,q.aN))if(b.dH.j(0,q.dH))if(b.dA.j(0,q.dA))if(b.aA.j(0,q.aA))if(b.eW.j(0,q.eW))if(b.fm.j(0,q.fm))if(b.c5.j(0,q.c5))if(b.d8.j(0,q.d8))if(b.h9.j(0,q.h9))if(b.C.j(0,q.C))if(b.ah.j(0,q.ah))if(b.fR.j(0,q.fR))if(b.c1.j(0,q.c1))if(b.b6.j(0,q.b6)){s=b.V -s.toString -r=q.V -r.toString -if(s.j(0,r)){s=b.k1 -s.toString -r=q.k1 -r.toString -if(s.j(0,r)){s=b.dI -s.toString -r=q.dI -r.toString -if(s.j(0,r)){s=b.v -s.toString -r=q.v -r.toString -if(s.j(0,r)){s=b.Q -s.toString -r=q.Q -r.toString -r=s.j(0,r) -s=r}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -return s}, -gA(a){var s=this,r=[s.a,s.b],q=s.c -B.b.K(r,q.gbI(q)) -B.b.K(r,q.gaR(q)) -r.push(s.d) -r.push(s.e) -r.push(s.f) -r.push(s.r) -r.push(s.w) -r.push(s.x) -r.push(!1) -r.push(s.z) -r.push(s.as) -r.push(s.at) -r.push(s.ax) -r.push(s.ay) -r.push(s.ch) -r.push(s.CW) -r.push(s.cx) -r.push(s.cy) -r.push(s.db) -r.push(s.dx) -r.push(s.dy) -r.push(s.fr) -r.push(s.fx) -r.push(s.fy) -r.push(s.go) -r.push(s.id) -r.push(s.k2) -r.push(s.k3) -r.push(s.k4) -r.push(s.ok) -r.push(s.p1) -r.push(s.p2) -r.push(s.p3) -r.push(s.p4) -r.push(s.R8) -r.push(s.RG) -r.push(s.rx) -r.push(s.ry) -r.push(s.to) -r.push(s.x1) -r.push(s.x2) -r.push(s.xr) -r.push(s.y1) -r.push(s.y2) -r.push(s.b_) -r.push(s.bn) -r.push(s.al) -r.push(s.aG) -r.push(s.bd) -r.push(s.bS) -r.push(s.bk) -r.push(s.B) -r.push(s.R) -r.push(s.a1) -r.push(s.ar) -r.push(s.az) -r.push(s.aJ) -r.push(s.au) -r.push(s.aY) -r.push(s.b9) -r.push(s.c7) -r.push(s.c0) -r.push(s.aj) -r.push(s.ag) -r.push(s.aB) -r.push(s.aU) -r.push(s.aN) -r.push(s.dH) -r.push(s.dA) -r.push(s.aA) -r.push(s.eW) -r.push(s.fm) -r.push(s.c5) -r.push(s.d8) -r.push(s.h9) -r.push(s.C) -r.push(s.ah) -r.push(s.fR) -r.push(s.c1) -r.push(s.b6) -r.push(s.dq) -q=s.V -q.toString -r.push(q) -q=s.k1 -q.toString -r.push(q) -q=s.dI -q.toString -r.push(q) -q=s.v -q.toString -r.push(q) -q=s.Q -q.toString -r.push(q) -return A.cn(r)}} -A.api.prototype={ -$0(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1=null,b2=this.a,b3=this.b,b4=b3.b0(b2.p2) -b3=b3.b0(b2.p3) -s=b2.ax -r=s.b -q=s.c -p=s.d -if(p==null)p=r -o=s.e -if(o==null)o=q -n=s.f -m=s.r -l=s.w -if(l==null)l=n -k=s.x -if(k==null)k=m -j=s.y -i=j==null?n:j -h=s.z -g=h==null?m:h -f=s.Q -if(f==null){if(j==null)j=n}else j=f -f=s.as -if(f==null){if(h==null)h=m}else h=f -f=s.at -e=s.ax -d=s.ay -if(d==null)d=f -c=s.ch -if(c==null)c=e -b=s.cx -a=s.cy -a0=s.db -a1=s.dx -if(a1==null)a1=a -a2=s.dy -if(a2==null)a2=a0 -a3=s.fr -if(a3==null)a3=b -a4=s.fx -if(a4==null)a4=b -a5=s.fy -if(a5==null)a5=B.k -a6=s.go -if(a6==null)a6=B.k -a7=s.id -if(a7==null)a7=a0 -a8=s.k1 -if(a8==null)a8=a -a9=s.k2 -if(a9==null)a9=q -b0=s.k3 -if(b0==null)b0=r -j=A.aCC(s.CW,s.a,f,d,a9,a7,b,e,c,a8,q,o,m,k,a0,a2,g,h,a3,a4,r,p,a6,n,l,a5,a,b0,a1,i,j) -return A.aEh(b2.R8,b2.dq,b2.RG,b2.a,b2.v,b2.rx,b2.ry,b2.Q,b2.to,b2.x1,b2.x2,b2.xr,b2.y1,b2.as,b2.at,b2.y2,b2.b_,b2.bn,j,b2.b,b2.al,b2.aG,b2.ay,b2.bd,b2.ch,b2.CW,b2.bS,b2.bk,b2.B,b2.R,b2.dI,b2.a1,b2.c,b2.ar,b2.az,b2.cx,b2.cy,b2.db,b2.dx,b2.aJ,b2.ok,b2.dy,b2.d,b2.au,b2.e,b2.aY,b2.b9,b2.c7,b2.c0,b2.aj,b2.ag,b2.aB,b2.f,b2.r,b2.aU,b2.fr,b2.fx,b2.fy,b2.p1,b4,b2.aN,b2.dH,b2.go,b2.w,b2.dA,b2.aA,b2.id,b2.eW,b2.k1,b2.k2,b2.fm,b2.c5,b2.k3,b2.x,b2.d8,b2.h9,b2.C,b2.ah,b3,b2.fR,b2.c1,b2.V,b2.b6,b2.p4,b2.k4,!1,b2.z)}, -$S:321} -A.apg.prototype={ -$2(a,b){return new A.aY(a,b.avw(this.a.c.h(0,a),this.b),t.sw)}, -$S:322} -A.aph.prototype={ -$1(a){return!this.a.c.ak(0,a.a)}, -$S:323} -A.Pf.prototype={ -gh2(){var s=this.ch.a -return s==null?this.ay.ax.a:s}, -gey(){var s=this.ch.b -return s==null?this.ay.ax.b:s}, -gn7(){var s=this.ch.c -return s==null?this.ay.ax.c:s}, -gm_(){var s=this.ch.f -return s==null?this.ay.go:s}, -cE(a){return A.aZg(this.ay,this.ch.cE(a))}} -A.xX.prototype={ -gA(a){return(A.pI(this.a)^A.pI(this.b))>>>0}, -j(a,b){if(b==null)return!1 -return b instanceof A.xX&&b.a===this.a&&b.b===this.b}} -A.WM.prototype={ -bT(a,b,c){var s,r=this.a,q=r.h(0,b) -if(q!=null)return q -if(r.a===this.b){s=new A.bm(r,A.p(r).i("bm<1>")) -r.F(0,s.gM(s))}s=c.$0() -r.m(0,b,s) -return s}} -A.mR.prototype={ -Bq(a){var s=this.a,r=this.b,q=A.R(a.a+new A.k(s,r).a6(0,4).a,0,a.b) -return a.anF(A.R(a.c+new A.k(s,r).a6(0,4).b,0,a.d),q)}, -j(a,b){if(b==null)return!1 -if(J.Y(b)!==A.u(this))return!1 -return b instanceof A.mR&&b.a===this.a&&b.b===this.b}, -gA(a){return A.T(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -df(){return this.a20()+"(h: "+A.iC(this.a)+", v: "+A.iC(this.b)+")"}} -A.a0X.prototype={} -A.a1F.prototype={} -A.F9.prototype={ -gA(a){var s=this -return A.cn([s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,s.as,s.at,s.ax,s.ay,s.ch,s.CW,s.cx,s.cy,s.db,s.dx])}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.Y(b)!==A.u(s))return!1 -return b instanceof A.F9&&J.e(b.a,s.a)&&J.e(b.b,s.b)&&J.e(b.c,s.c)&&J.e(b.d,s.d)&&J.e(b.e,s.e)&&J.e(b.f,s.f)&&J.e(b.r,s.r)&&J.e(b.w,s.w)&&J.e(b.x,s.x)&&J.e(b.y,s.y)&&J.e(b.z,s.z)&&J.e(b.Q,s.Q)&&b.as==s.as&&J.e(b.at,s.at)&&J.e(b.ax,s.ax)&&J.e(b.ay,s.ay)&&J.e(b.ch,s.ch)&&J.e(b.CW,s.CW)&&J.e(b.cx,s.cx)&&J.e(b.db,s.db)&&J.e(b.dx,s.dx)}} -A.a0Z.prototype={} -A.Fa.prototype={ -gA(a){var s=this -return A.T(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.y,s.x,s.z,s.Q,s.as,s.ax,s.at,B.a,B.a,B.a,B.a,B.a)}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.Y(b)!==A.u(s))return!1 -return b instanceof A.Fa&&J.e(b.a,s.a)&&J.e(b.b,s.b)&&J.e(b.c,s.c)&&J.e(b.d,s.d)&&J.e(b.e,s.e)&&J.e(b.f,s.f)&&J.e(b.r,s.r)&&J.e(b.w,s.w)&&J.e(b.y,s.y)&&J.e(b.x,s.x)&&J.e(b.z,s.z)&&J.e(b.Q,s.Q)&&J.e(b.as,s.as)&&J.e(b.ax,s.ax)&&b.at==s.at}} -A.a1_.prototype={} -A.x8.prototype={ -AD(){var s,r,q=this -q.gM_() -s=q.gl(q) -r=q.kA$ -if(s){r===$&&A.c() -r.bW(0)}else{r===$&&A.c() -r.de(0)}}, -akb(a){var s,r=this -if(r.gf_()!=null){r.ao(new A.app(r,a)) -s=r.lA$ -s===$&&A.c() -s.bW(0)}}, -TO(a){var s,r=this -if(r.gf_()==null)return -switch(r.gl(r)){case!1:r.gf_().$1(!0) -break -case!0:s=r.gf_() -s.toString -r.gM_() -s.$1(!1) -break -case null:case void 0:r.gf_().$1(!1) -break}r.c.ga_().xL(B.zi)}, -ak9(){return this.TO(null)}, -QW(a){var s,r=this -if(r.ot$!=null)r.ao(new A.apq(r)) -s=r.lA$ -s===$&&A.c() -s.de(0)}, -adr(){return this.QW(null)}, -abF(a){var s,r=this -if(a!==r.mO$){r.ao(new A.apn(r,a)) -s=r.r0$ -if(a){s===$&&A.c() -s.bW(0)}else{s===$&&A.c() -s.de(0)}}}, -abK(a){var s,r=this -if(a!==r.mP$){r.ao(new A.apo(r,a)) -s=r.r_$ -if(a){s===$&&A.c() -s.bW(0)}else{s===$&&A.c() -s.de(0)}}}, -gfB(){var s,r=this,q=A.aE(t.ui) -if(r.gf_()==null)q.E(0,B.x) -if(r.mP$)q.E(0,B.ad) -if(r.mO$)q.E(0,B.a3) -s=r.gl(r) -if(s)q.E(0,B.au) -return q}, -Vo(a,b,c,d,e,f){var s,r,q,p,o,n,m,l,k,j,i=this,h=null,g=i.BL$ -if(g===$){s=A.l([B.hQ,new A.cH(i.gTN(),new A.b7(A.b([],t.g),t.d),t.wY)],t.A,t.od) -i.BL$!==$&&A.aW() -i.BL$=s -g=s}r=i.gf_() -q=c.a.$1(i.gfB()) -p=i.gf_() -o=i.gf_()!=null?i.gaka():h -n=i.gf_()!=null?i.gTN():h -m=i.gf_()!=null?i.gQV():h -l=i.gf_()!=null?i.gQV():h -k=i.gf_() -j=A.kp(h,h,h,e,f) -return A.aIJ(g,!1,A.hF(h,new A.bL(A.c7(h,h,h,h,h,h,h,h,h,h,k!=null,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h),!1,!1,!1,!1,j,h),B.a1,p==null,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,n,l,o,m,!1,B.aP),r!=null,b,q,d,i.gabE(),i.gabJ())}, -aml(a,b,c,d,e){return this.Vo(a,b,c,null,d,e)}} -A.app.prototype={ -$0(){this.a.ot$=this.b.c}, -$S:0} -A.apq.prototype={ -$0(){this.a.ot$=null}, -$S:0} -A.apn.prototype={ -$0(){this.a.mO$=this.b}, -$S:0} -A.apo.prototype={ -$0(){this.a.mP$=this.b}, -$S:0} -A.x7.prototype={ -sbv(a,b){var s=this,r=s.a -if(b===r)return -if(r!=null)r.a.H(0,s.gcJ()) -b.a.U(0,s.gcJ()) -s.a=b -s.T()}, -sZq(a){var s=this,r=s.b -if(a===r)return -if(r!=null)r.a.H(0,s.gcJ()) -a.a.U(0,s.gcJ()) -s.b=a -s.T()}, -sZs(a){var s=this,r=s.c -if(a===r)return -if(r!=null)r.a.H(0,s.gcJ()) -a.a.U(0,s.gcJ()) -s.c=a -s.T()}, -sZt(a){var s=this,r=s.d -if(a===r)return -if(r!=null)r.a.H(0,s.gcJ()) -a.a.U(0,s.gcJ()) -s.d=a -s.T()}, -sAo(a){if(J.e(this.e,a))return -this.e=a -this.T()}, -sXQ(a){if(J.e(this.f,a))return -this.f=a -this.T()}, -sXR(a){if(a.j(0,this.r))return -this.r=a -this.T()}, -sZr(a){if(a.j(0,this.w))return -this.w=a -this.T()}, -smZ(a){if(a.j(0,this.x))return -this.x=a -this.T()}, -skC(a){if(a.j(0,this.y))return -this.y=a -this.T()}, -sho(a){if(a===this.z)return -this.z=a -this.T()}, -sWG(a){if(J.e(a,this.Q))return -this.Q=a -this.T()}, -sra(a){if(a===this.as)return -this.as=a -this.T()}, -sYd(a){if(a===this.at)return -this.at=a -this.T()}, -YY(a,b){var s,r,q,p,o=this,n=o.b -if(n.gb4(n)===B.H){n=o.c -if(n.gb4(n)===B.H){n=o.d -n=n.gb4(n)!==B.H}else n=!0}else n=!0 -if(n){s=$.ad().b1() -n=o.r -n.toString -r=o.w -r.toString -q=o.a -q=A.E(n,r,q.gl(q)) -r=o.x -r.toString -n=o.d -n=A.E(q,r,n.gl(n)) -r=o.y -r.toString -q=o.c -q=A.E(n,r,q.gl(q)) -q.toString -s.saf(0,q) -q=o.z -q.toString -n=o.as -n.toString -if(!n){n=o.at -n.toString}else n=!0 -if(n)p=q -else{n=o.b -p=new A.ay(0,q,t.Y).a7(0,n.gl(n))}if(p>0)a.iZ(b.Y(0,B.e),p,s)}}, -n(){var s=this,r=s.a -if(r!=null)r.a.H(0,s.gcJ()) -r=s.b -if(r!=null)r.a.H(0,s.gcJ()) -r=s.c -if(r!=null)r.a.H(0,s.gcJ()) -r=s.d -if(r!=null)r.a.H(0,s.gcJ()) -s.d3()}, -eE(a){return!0}, -w2(a){return null}, -gxJ(){return null}, -Eg(a){return!1}, -k(a){return"#"+A.aV(this)}} -A.WK.prototype={ -aD(a){var s=new A.ZT(!0,this.e,null,this.r,B.bp,B.aG,null,A.af(t.T)) -s.aC() -s.saW(null) -return s}} -A.ZT.prototype={ -c2(a,b){var s,r=this,q=$.aED -$.aED=!1 -if(r.gq(r).t(0,b)){s=r.co(a,b)||r.v===B.aG -if((s||r.v===B.bX)&&!$.aEC){$.aEC=!0 -a.E(0,new A.pZ(b,r))}}else s=!1 -if(q){$.aED=!0 -$.aEC=!1}return s}} -A.Fc.prototype={ -ae(){return new A.x9(new A.ah4(),A.aE(t.S),B.H,null,null,B.i)}} -A.x9.prototype={ -gaj6(){this.a.toString -this.f===$&&A.c() -return B.F_}, -ga9o(){this.a.toString -this.f===$&&A.c() -return!0}, -gHU(){var s=this.a.c -return s==null?null.a_d():s}, -gmp(){var s,r=this,q=r.w -if(q==null){q=A.bO(null,B.dU,B.j2,null,r) -q.bO() -s=q.d6$ -s.b=!0 -s.a.push(r.gake()) -r.w=q}return q}, -akf(a){var s,r,q,p,o,n,m,l,k,j,i=this -$label0$0:{s=new A.k5(A.aLm(i.Q),A.aLm(a)) -r=A.cO("#0#1",new A.apy(s)) -q=A.cO("#0#3",new A.apz(r)) -p=A.cO("#0#4",new A.apA(s)) -o=A.cO("#0#6",new A.apB(p)) -n=A.cO("#0#7",new A.apC(r)) -m=A.cO("#0#8",new A.apD(p)) -if(q.aQ()&&o.aQ()){B.b.F($.tb,i) -l=i.d -k=l.a -if(k!=null)k.oy() -else l.b=null -break $label0$0}if(n.aQ()&&m.aQ()){l=i.d -k=l.a -j=$.aDP+1 -if(k!=null){$.aDP=j -k.a13(0,j)}else l.b=$.aDP=j -$.tb.push(i) -A.aln(i.gHU()) -break $label0$0}if(!(q.aQ()&&m.aQ()))l=n.aQ()&&o.aQ() -else l=!0 -if(l)break $label0$0}i.Q=a}, -aih(a,b){var s,r,q=this,p=new A.apF(q,a) -$label0$0:{s=q.gmp().Q -s===$&&A.c() -r=A.cO("#0#2",new A.apE(s)) -if(r.aQ()&&b.a>0){if(q.r==null)q.r=A.cM(b,p) -break $label0$0}if(r.aQ()||B.aM===s||B.aN===s||B.W===s)p.$0()}}, -SJ(a){return this.aih(null,a)}, -q1(a){var s=this,r=s.r -if(r!=null)r.bb(0) -s.r=null -r=s.w -if(r==null)r=null -else{r=r.Q -r===$&&A.c()}switch(r){case null:case void 0:case B.aN:case B.H:break -case B.aM:case B.W:if(a.a>0){r=s.gmp() -s.r=A.cM(a,r.ga__(r))}else s.gmp().de(0) -break}}, -akd(a){var s,r=this -r.a.toString -r.f===$&&A.c() -switch(1){case 1:s=r.x -if(s==null)s=r.x=A.af1(r,null,B.OC) -s.p1=r.gads() -s.p2=r.gabS() -s.R8=r.gacv() -s.uL(a) -break}}, -abH(a){var s=this,r=s.y -r=r==null?null:r.CW -if(r!==a.gbh()){r=s.x -r=r==null?null:r.CW -r=r===a.gbh()}else r=!0 -if(r)return -if(s.r==null){r=s.gmp().Q -r===$&&A.c() -r=r===B.H}else r=!1 -if(r||!t.pY.b(a))return -s.q1(B.q) -s.z.a0(0)}, -adt(){this.q1(B.q) -this.z.a0(0)}, -abT(){var s=this,r=s.e -r===$&&A.c() -if(!r)return -r=s.gmp().Q -r===$&&A.c() -if(r===B.H){s.ga9o() -r=!0}else r=!1 -if(r){r=s.c -r.toString -A.aD4(r)}s.a.toString -s.SJ(B.q)}, -acw(){if(this.z.a!==0)return -this.q1(this.gaj6())}, -ac_(a){var s,r,q,p,o,n,m=this -m.z.E(0,a.giY(a)) -s=A.b($.tb.slice(0),A.W($.tb)) -for(r=s.length,q=!1,p=0;p")),this.m8(b,s,s,c,r),b.a,s,b.b)}, -ri(a,b){var s=null,r=A.SW(s,s,s,t.oA) -return A.om(new A.f9(r,A.p(r).i("f9<1>")),this.m8(a,s,b,s,r),a.a,s,a.b)}, -rj(a,b){var s=null,r=A.SW(s,s,s,t.oA) -return A.om(new A.f9(r,A.p(r).i("f9<1>")),this.m8(a,b,s,s,r),a.a,s,a.b)}, -m8(a,b,c,d,e){return this.aez(a,b,c,d,e)}, -aez(a,b,c,d,e){var s=0,r=A.I(t.hP),q,p,o,n,m,l,k,j -var $async$m8=A.D(function(f,g){if(f===1)return A.F(g,r) -while(true)switch(s){case 0:l=a.a -k=A.U3().P(l) -s=globalThis.window.flutterCanvasKit!=null||!1?3:5 -break -case 3:p=new A.ae($.ai,t.gO) -o=new A.b3(p,t.XX) -n=A.b3K() -n.open("GET",l,!0) -n.responseType="arraybuffer" -l=t.e -A.aI6(n,"load",l.a(A.bd(new A.agN(n,o,k)))) -A.aI6(n,"error",l.a(A.bd(o.gVF()))) -n.send() -s=6 -return A.K(p,$async$m8) -case 6:p=n.response -p.toString -m=A.dm(t.pI.a(p),0,null) -if(m.byteLength===0){l=A.aCY(n) -l.toString -throw A.d(A.aJH(l,k))}s=b!=null?7:9 -break -case 7:j=b -s=10 -return A.K(A.va(m),$async$m8) -case 10:q=j.$1(g) -s=1 -break -s=8 -break -case 9:s=c!=null?11:13 -break -case 11:j=c -s=14 -return A.K(A.va(m),$async$m8) -case 14:q=j.$1(g) -s=1 -break -s=12 -break -case 13:q=d.$1(m) -s=1 -break -case 12:case 8:s=4 -break -case 5:q=$.ad().Y0(k,new A.agO(e)) -s=1 -break -case 4:case 1:return A.G(q,r)}}) -return A.H($async$m8,r)}, -j(a,b){if(b==null)return!1 -if(J.Y(b)!==A.u(this))return!1 -return b instanceof A.vF&&b.a===this.a&&b.b===this.b}, -gA(a){return A.T(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){return'NetworkImage("'+this.a+'", scale: '+this.b+")"}} -A.agN.prototype={ -$1(a){var s,r,q,p,o=this.a,n=A.aCY(o) -n.toString -s=n>=200&&n<300 -r=n>307&&n<400 -q=s||n===0||n===304||r -p=this.b -if(q)p.dm(0,o) -else{p.lr(a) -o=A.aCY(o) -if(o==null)o=400 -throw A.d(A.aJH(o,this.c))}}, -$S:2} -A.agO.prototype={ -$2(a,b){this.a.E(0,new A.kF(a,b))}, -$S:329} -A.hw.prototype={ -k(a){var s=this -if(s.gkd(s)===0)return A.aCt(s.gkk(),s.gkl()) -if(s.gkk()===0)return A.aCs(s.gkd(s),s.gkl()) -return A.aCt(s.gkk(),s.gkl())+" + "+A.aCs(s.gkd(s),0)}, -j(a,b){var s=this -if(b==null)return!1 -return b instanceof A.hw&&b.gkk()===s.gkk()&&b.gkd(b)===s.gkd(s)&&b.gkl()===s.gkl()}, -gA(a){var s=this -return A.T(s.gkk(),s.gkd(s),s.gkl(),B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.eB.prototype={ -gkk(){return this.a}, -gkd(a){return 0}, -gkl(){return this.b}, -Z(a,b){return new A.eB(this.a-b.a,this.b-b.b)}, -Y(a,b){return new A.eB(this.a+b.a,this.b+b.b)}, -a6(a,b){return new A.eB(this.a*b,this.b*b)}, -o_(a){var s=a.a/2,r=a.b/2 -return new A.k(s+this.a*s,r+this.b*r)}, -AB(a){var s=a.a/2,r=a.b/2 -return new A.k(s+this.a*s,r+this.b*r)}, -a_y(a){var s=a.a,r=(a.c-s)/2,q=a.b,p=(a.d-q)/2 -return new A.k(s+r+this.a*r,q+p+this.b*p)}, -aqX(a,b){var s=b.a,r=a.a,q=(b.c-s-r)/2,p=b.b,o=a.b,n=(b.d-p-o)/2 -s=s+q+this.a*q -p=p+n+this.b*n -return new A.y(s,p,s+r,p+o)}, -P(a){return this}, -k(a){return A.aCt(this.a,this.b)}} -A.fY.prototype={ -gkk(){return 0}, -gkd(a){return this.a}, -gkl(){return this.b}, -Z(a,b){return new A.fY(this.a-b.a,this.b-b.b)}, -Y(a,b){return new A.fY(this.a+b.a,this.b+b.b)}, -a6(a,b){return new A.fY(this.a*b,this.b*b)}, -P(a){var s=this -switch(a.a){case 0:return new A.eB(-s.a,s.b) -case 1:return new A.eB(s.a,s.b)}}, -k(a){return A.aCs(this.a,this.b)}} -A.Hp.prototype={ -a6(a,b){return new A.Hp(this.a*b,this.b*b,this.c*b)}, -P(a){var s=this -switch(a.a){case 0:return new A.eB(s.a-s.b,s.c) -case 1:return new A.eB(s.a+s.b,s.c)}}, -gkk(){return this.a}, -gkd(a){return this.b}, -gkl(){return this.c}} -A.To.prototype={ -k(a){return"TextAlignVertical(y: "+this.a+")"}} -A.wd.prototype={ -I(){return"RenderComparison."+this.b}} -A.Lb.prototype={ -I(){return"Axis."+this.b}} -A.Ua.prototype={ -I(){return"VerticalDirection."+this.b}} -A.tY.prototype={ -I(){return"AxisDirection."+this.b}} -A.Cx.prototype={ -XZ(a,b,c,d){return $.ad().kH(a,!1,c,d)}, -wa(a){return this.XZ(a,!1,null,null)}, -Y_(a,b,c,d){var s=$.ad(),r=a.a -r.toString -return s.kH(r,!1,c,d)}, -ar5(a){return this.Y_(a,!1,null,null)}, -Y1(a,b){return A.a3n(a,b)}, -ar7(a){return this.Y1(a,null)}, -$if4:1} -A.a0l.prototype={ -T(){var s,r,q -for(s=this.a,s=A.db(s,s.r,A.p(s).c),r=s.$ti.c;s.u();){q=s.d;(q==null?r.a(q):q).$0()}}, -U(a,b){this.a.E(0,b)}, -H(a,b){this.a.F(0,b)}} -A.zv.prototype={ -Ep(a){var s=this -return new A.Hq(s.gfI().Z(0,a.gfI()),s.giL().Z(0,a.giL()),s.giG().Z(0,a.giG()),s.gjq().Z(0,a.gjq()),s.gfJ().Z(0,a.gfJ()),s.giK().Z(0,a.giK()),s.gjr().Z(0,a.gjr()),s.giF().Z(0,a.giF()))}, -E(a,b){var s=this -return new A.Hq(s.gfI().Y(0,b.gfI()),s.giL().Y(0,b.giL()),s.giG().Y(0,b.giG()),s.gjq().Y(0,b.gjq()),s.gfJ().Y(0,b.gfJ()),s.giK().Y(0,b.giK()),s.gjr().Y(0,b.gjr()),s.giF().Y(0,b.giF()))}, -k(a){var s,r,q,p,o=this -if(o.gfI().j(0,o.giL())&&o.giL().j(0,o.giG())&&o.giG().j(0,o.gjq()))if(!o.gfI().j(0,B.L))s=o.gfI().a===o.gfI().b?"BorderRadius.circular("+B.d.ad(o.gfI().a,1)+")":"BorderRadius.all("+o.gfI().k(0)+")" -else s=null -else{r=""+"BorderRadius.only(" -if(!o.gfI().j(0,B.L)){r+="topLeft: "+o.gfI().k(0) -q=!0}else q=!1 -if(!o.giL().j(0,B.L)){if(q)r+=", " -r+="topRight: "+o.giL().k(0) -q=!0}if(!o.giG().j(0,B.L)){if(q)r+=", " -r+="bottomLeft: "+o.giG().k(0) -q=!0}if(!o.gjq().j(0,B.L)){if(q)r+=", " -r+="bottomRight: "+o.gjq().k(0)}r+=")" -s=r.charCodeAt(0)==0?r:r}if(o.gfJ().j(0,o.giK())&&o.giK().j(0,o.giF())&&o.giF().j(0,o.gjr()))if(!o.gfJ().j(0,B.L))p=o.gfJ().a===o.gfJ().b?"BorderRadiusDirectional.circular("+B.d.ad(o.gfJ().a,1)+")":"BorderRadiusDirectional.all("+o.gfJ().k(0)+")" -else p=null -else{r=""+"BorderRadiusDirectional.only(" -if(!o.gfJ().j(0,B.L)){r+="topStart: "+o.gfJ().k(0) -q=!0}else q=!1 -if(!o.giK().j(0,B.L)){if(q)r+=", " -r+="topEnd: "+o.giK().k(0) -q=!0}if(!o.gjr().j(0,B.L)){if(q)r+=", " -r+="bottomStart: "+o.gjr().k(0) -q=!0}if(!o.giF().j(0,B.L)){if(q)r+=", " -r+="bottomEnd: "+o.giF().k(0)}r+=")" -p=r.charCodeAt(0)==0?r:r}r=s!=null -if(r&&p!=null)return A.j(s)+" + "+p -if(r)return s -if(p!=null)return p -return"BorderRadius.zero"}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.Y(b)!==A.u(s))return!1 -return b instanceof A.zv&&b.gfI().j(0,s.gfI())&&b.giL().j(0,s.giL())&&b.giG().j(0,s.giG())&&b.gjq().j(0,s.gjq())&&b.gfJ().j(0,s.gfJ())&&b.giK().j(0,s.giK())&&b.gjr().j(0,s.gjr())&&b.giF().j(0,s.giF())}, -gA(a){var s=this -return A.T(s.gfI(),s.giL(),s.giG(),s.gjq(),s.gfJ(),s.giK(),s.gjr(),s.giF(),B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.dc.prototype={ -gfI(){return this.a}, -giL(){return this.b}, -giG(){return this.c}, -gjq(){return this.d}, -gfJ(){return B.L}, -giK(){return B.L}, -gjr(){return B.L}, -giF(){return B.L}, -d0(a){var s=this,r=s.a.iU(0,B.L),q=s.b.iU(0,B.L) -return A.aie(a,s.c.iU(0,B.L),s.d.iU(0,B.L),r,q)}, -Ep(a){if(a instanceof A.dc)return this.Z(0,a) -return this.a1L(a)}, -E(a,b){if(b instanceof A.dc)return this.Y(0,b) -return this.a1K(0,b)}, -Z(a,b){var s=this -return new A.dc(s.a.Z(0,b.a),s.b.Z(0,b.b),s.c.Z(0,b.c),s.d.Z(0,b.d))}, -Y(a,b){var s=this -return new A.dc(s.a.Y(0,b.a),s.b.Y(0,b.b),s.c.Y(0,b.c),s.d.Y(0,b.d))}, -a6(a,b){var s=this -return new A.dc(s.a.a6(0,b),s.b.a6(0,b),s.c.a6(0,b),s.d.a6(0,b))}, -P(a){return this}} -A.Hq.prototype={ -a6(a,b){var s=this -return new A.Hq(s.a.a6(0,b),s.b.a6(0,b),s.c.a6(0,b),s.d.a6(0,b),s.e.a6(0,b),s.f.a6(0,b),s.r.a6(0,b),s.w.a6(0,b))}, -P(a){var s=this -switch(a.a){case 0:return new A.dc(s.a.Y(0,s.f),s.b.Y(0,s.e),s.c.Y(0,s.w),s.d.Y(0,s.r)) -case 1:return new A.dc(s.a.Y(0,s.e),s.b.Y(0,s.f),s.c.Y(0,s.r),s.d.Y(0,s.w))}}, -gfI(){return this.a}, -giL(){return this.b}, -giG(){return this.c}, -gjq(){return this.d}, -gfJ(){return this.e}, -giK(){return this.f}, -gjr(){return this.r}, -giF(){return this.w}} -A.Lt.prototype={ -I(){return"BorderStyle."+this.b}} -A.bk.prototype={ -bw(a,b){var s=Math.max(0,this.b*b),r=b<=0?B.d_:this.c -return new A.bk(this.a,s,r,-1)}, -jb(){switch(this.c.a){case 1:var s=$.ad().b1() -s.saf(0,this.a) -s.seP(this.b) -s.sbC(0,B.Q) -return s -case 0:s=$.ad().b1() -s.saf(0,B.C) -s.seP(0) -s.sbC(0,B.Q) -return s}}, -gel(){return this.b*(1-(1+this.d)/2)}, -gpr(){return this.b*(1+this.d)/2}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.Y(b)!==A.u(s))return!1 -return b instanceof A.bk&&b.a.j(0,s.a)&&b.b===s.b&&b.c===s.c&&b.d===s.d}, -gA(a){var s=this -return A.T(s.a,s.b,s.c,s.d,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -df(){return"BorderSide"}} -A.cp.prototype={ -iP(a,b,c){return null}, -E(a,b){return this.iP(a,b,!1)}, -Y(a,b){var s=this.E(0,b) -if(s==null)s=b.iP(0,this,!0) -return s==null?new A.j5(A.b([b,this],t.N_)):s}, -dP(a,b){if(a==null)return this.bw(0,b) -return null}, -dQ(a,b){if(a==null)return this.bw(0,1-b) -return null}, -io(a,b,c,d){}, -ghL(){return!1}, -k(a){return"ShapeBorder()"}} -A.e8.prototype={ -gjC(){var s=Math.max(this.a.gel(),0) -return new A.aF(s,s,s,s)}, -dP(a,b){if(a==null)return this.bw(0,b) -return null}, -dQ(a,b){if(a==null)return this.bw(0,1-b) -return null}} -A.j5.prototype={ -gjC(){return B.b.vT(this.a,B.z,new A.asm())}, -iP(a,b,c){var s,r,q,p=b instanceof A.j5 -if(!p){s=this.a -r=c?B.b.gL(s):B.b.gM(s) -q=r.iP(0,b,c) -if(q==null)q=b.iP(0,r,!c) -if(q!=null){p=A.a8(s,!0,t.RY) -p[c?p.length-1:0]=q -return new A.j5(p)}}s=A.b([],t.N_) -if(c)B.b.K(s,this.a) -if(p)B.b.K(s,b.a) -else s.push(b) -if(!c)B.b.K(s,this.a) -return new A.j5(s)}, -E(a,b){return this.iP(a,b,!1)}, -bw(a,b){var s=this.a,r=A.W(s).i("a1<1,cp>") -return new A.j5(A.a8(new A.a1(s,new A.asn(b),r),!0,r.i("am.E")))}, -dP(a,b){return A.aLK(a,this,b)}, -dQ(a,b){return A.aLK(this,a,b)}, -ej(a,b){var s,r -for(s=this.a,r=0;r") -return new A.a1(new A.bN(s,r),new A.aso(),r.i("a1")).bH(0," + ")}} -A.asm.prototype={ -$2(a,b){return a.E(0,b.gjC())}, -$S:333} -A.asn.prototype={ -$1(a){return a.bw(0,this.a)}, -$S:334} -A.aso.prototype={ -$1(a){return a.k(0)}, -$S:335} -A.UZ.prototype={} -A.Lx.prototype={ -I(){return"BoxShape."+this.b}} -A.Lu.prototype={ -iP(a,b,c){return null}, -E(a,b){return this.iP(a,b,!1)}, -ej(a,b){var s=$.ad().c_() -s.jv(this.gjC().P(b).Jm(a)) -return s}, -k7(a){return this.ej(a,null)}, -cX(a,b){var s=$.ad().c_() -s.jv(a) -return s}, -jh(a){return this.cX(a,null)}, -io(a,b,c,d){a.cT(b,c)}, -ghL(){return!0}} -A.d1.prototype={ -gjC(){var s,r=this -if(r.gUG()){s=r.a.gel() -return new A.aF(s,s,s,s)}return new A.aF(r.d.gel(),r.a.gel(),r.b.gel(),r.c.gel())}, -goE(){var s,r,q=this -if(q.gtL())if(q.gUG())if(q.guw()){s=q.a.d -r=q.d.d===s&&q.c.d===s&&q.b.d===s}else r=!1 -else r=!1 -else r=!1 -return r}, -gtL(){var s=this,r=s.a.a -return s.d.a.j(0,r)&&s.c.a.j(0,r)&&s.b.a.j(0,r)}, -gUG(){var s=this,r=s.a.b -return s.d.b===r&&s.c.b===r&&s.b.b===r}, -guw(){var s=this,r=s.a.c -return s.d.c===r&&s.c.c===r&&s.b.c===r}, -iP(a,b,c){var s=this -if(b instanceof A.d1&&A.lL(s.a,b.a)&&A.lL(s.b,b.b)&&A.lL(s.c,b.c)&&A.lL(s.d,b.d))return new A.d1(A.jo(s.a,b.a),A.jo(s.b,b.b),A.jo(s.c,b.c),A.jo(s.d,b.d)) -return null}, -E(a,b){return this.iP(a,b,!1)}, -bw(a,b){var s=this -return new A.d1(s.a.bw(0,b),s.b.bw(0,b),s.c.bw(0,b),s.d.bw(0,b))}, -dP(a,b){if(a instanceof A.d1)return A.aCx(a,this,b) -return this.EJ(a,b)}, -dQ(a,b){if(a instanceof A.d1)return A.aCx(this,a,b) -return this.EK(a,b)}, -D0(a,b,c,d,e){var s,r=this -if(r.goE()){s=r.a -switch(s.c.a){case 0:return -case 1:switch(d.a){case 1:A.aHp(a,b,s) -break -case 0:if(c!=null&&!c.j(0,B.am)){A.aHq(a,b,s,c) -return}A.aHr(a,b,s) -break}return}}if(r.gtL()&&r.guw()){s=r.a -switch(s.c.a){case 0:return -case 1:A.aHo(a,b,c,r.c,r.d,r.b,d,e,s) -return}}A.aFH(a,b,r.c,r.d,r.b,r.a)}, -f0(a,b,c){return this.D0(a,b,null,B.D,c)}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.Y(b)!==A.u(s))return!1 -return b instanceof A.d1&&b.a.j(0,s.a)&&b.b.j(0,s.b)&&b.c.j(0,s.c)&&b.d.j(0,s.d)}, -gA(a){var s=this -return A.T(s.a,s.b,s.c,s.d,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){var s,r,q=this -if(q.goE())return"Border.all("+q.a.k(0)+")" -s=A.b([],t.s) -r=q.a -if(!r.j(0,B.n))s.push("top: "+r.k(0)) -r=q.b -if(!r.j(0,B.n))s.push("right: "+r.k(0)) -r=q.c -if(!r.j(0,B.n))s.push("bottom: "+r.k(0)) -r=q.d -if(!r.j(0,B.n))s.push("left: "+r.k(0)) -return"Border("+B.b.bH(s,", ")+")"}, -grL(a){return this.a}} -A.fr.prototype={ -gjC(){var s,r=this -if(r.goE()){s=r.a.gel() -return new A.ff(s,s,s,s)}return new A.ff(r.b.gel(),r.a.gel(),r.c.gel(),r.d.gel())}, -goE(){var s,r,q,p,o=this -if(o.gtL()){s=o.a -r=s.b -q=o.b -if(q.b===r&&o.d.b===r&&o.c.b===r)if(o.guw()){p=s.d -s=q.d===p&&o.d.d===p&&o.c.d===p}else s=!1 -else s=!1}else s=!1 -return s}, -gtL(){var s=this,r=s.a.a -return s.b.a.j(0,r)&&s.d.a.j(0,r)&&s.c.a.j(0,r)}, -guw(){var s=this,r=s.a.c -return s.b.c===r&&s.d.c===r&&s.c.c===r}, -iP(a,b,c){var s,r,q,p=this,o=null -if(b instanceof A.fr){s=p.a -r=b.a -if(A.lL(s,r)&&A.lL(p.b,b.b)&&A.lL(p.c,b.c)&&A.lL(p.d,b.d))return new A.fr(A.jo(s,r),A.jo(p.b,b.b),A.jo(p.c,b.c),A.jo(p.d,b.d)) -return o}if(b instanceof A.d1){s=b.a -r=p.a -if(!A.lL(s,r)||!A.lL(b.c,p.d))return o -q=p.b -if(!q.j(0,B.n)||!p.c.j(0,B.n)){if(!b.d.j(0,B.n)||!b.b.j(0,B.n))return o -return new A.fr(A.jo(s,r),q,p.c,A.jo(b.c,p.d))}return new A.d1(A.jo(s,r),b.b,A.jo(b.c,p.d),b.d)}return o}, -E(a,b){return this.iP(a,b,!1)}, -bw(a,b){var s=this -return new A.fr(s.a.bw(0,b),s.b.bw(0,b),s.c.bw(0,b),s.d.bw(0,b))}, -dP(a,b){if(a instanceof A.fr)return A.aCw(a,this,b) -return this.EJ(a,b)}, -dQ(a,b){if(a instanceof A.fr)return A.aCw(this,a,b) -return this.EK(a,b)}, -D0(a,b,c,d,e){var s,r,q,p=this -if(p.goE()){s=p.a -switch(s.c.a){case 0:return -case 1:switch(d.a){case 1:A.aHp(a,b,s) -break -case 0:if(c!=null&&!c.j(0,B.am)){A.aHq(a,b,s,c) -return}A.aHr(a,b,s) -break}return}}switch(e.a){case 0:r=p.c -q=p.b -break -case 1:r=p.b -q=p.c -break -default:r=null -q=null}if(p.gtL()&&p.guw()){s=p.a -switch(s.c.a){case 0:return -case 1:A.aHo(a,b,c,p.d,r,q,d,e,s) -return}}A.aFH(a,b,p.d,r,q,p.a)}, -f0(a,b,c){return this.D0(a,b,null,B.D,c)}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.Y(b)!==A.u(s))return!1 -return b instanceof A.fr&&b.a.j(0,s.a)&&b.b.j(0,s.b)&&b.c.j(0,s.c)&&b.d.j(0,s.d)}, -gA(a){var s=this -return A.T(s.a,s.b,s.c,s.d,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){var s=this,r=A.b([],t.s),q=s.a -if(!q.j(0,B.n))r.push("top: "+q.k(0)) -q=s.b -if(!q.j(0,B.n))r.push("start: "+q.k(0)) -q=s.c -if(!q.j(0,B.n))r.push("end: "+q.k(0)) -q=s.d -if(!q.j(0,B.n))r.push("bottom: "+q.k(0)) -return"BorderDirectional("+B.b.bH(r,", ")+")"}, -grL(a){return this.a}} -A.bM.prototype={ -ge4(a){var s=this.c -s=s==null?null:s.gjC() -return s==null?B.z:s}, -DP(a,b){var s,r,q -switch(this.w.a){case 1:s=A.l5(a.gaT(),a.gfe()/2) -r=$.ad().c_() -r.nX(s) -return r -case 0:r=this.d -if(r!=null){q=$.ad().c_() -q.eG(r.P(b).d0(a)) -return q}r=$.ad().c_() -r.jv(a) -return r}}, -bw(a,b){var s=this,r=null,q=A.E(r,s.a,b),p=A.aHs(r,s.c,b),o=A.kl(r,s.d,b),n=A.aCy(r,s.e,b) -return new A.bM(q,s.b,p,o,n,r,s.w)}, -gCj(){return this.e!=null}, -dP(a,b){if(a==null)return this.bw(0,b) -if(a instanceof A.bM)return A.aHt(a,this,b) -return this.Nq(a,b)}, -dQ(a,b){if(a==null)return this.bw(0,1-b) -if(a instanceof A.bM)return A.aHt(this,a,b) -return this.Nr(a,b)}, -j(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.Y(b)!==A.u(r))return!1 -if(b instanceof A.bM)if(J.e(b.a,r.a))if(J.e(b.b,r.b))if(J.e(b.c,r.c))if(J.e(b.d,r.d))if(A.d_(b.e,r.e))s=b.w===r.w -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -return s}, -gA(a){var s=this,r=s.e -r=r==null?null:A.cn(r) -return A.T(s.a,s.b,s.c,s.d,r,s.f,null,s.w,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -Kn(a,b,c){var s -switch(this.w.a){case 0:s=this.d -if(s!=null)return s.P(c).d0(new A.y(0,0,0+a.a,0+a.b)).t(0,b) -return!0 -case 1:return b.Z(0,a.jz(B.e)).gcB()<=Math.min(a.a,a.b)/2}}, -vj(a){return new A.FL(this,a)}} -A.FL.prototype={ -RR(a,b,c,d){var s=this.b -switch(s.w.a){case 1:a.iZ(b.gaT(),b.gfe()/2,c) -break -case 0:s=s.d -if(s==null||s.j(0,B.am))a.cT(b,c) -else a.cC(s.P(d).d0(b),c) -break}}, -agk(a,b,c){var s,r,q,p,o,n,m=this.b.e -if(m==null)return -for(s=m.length,r=0;r0?n*0.57735+0.5:0)) -o=b.cz(q.b) -n=q.d -this.RR(a,new A.y(o.a-n,o.b-n,o.c+n,o.d+n),p,c)}}, -age(a,b,c){var s,r,q,p=this,o=p.b,n=o.b -if(n==null)return -if(p.e==null){s=p.a -s.toString -p.e=new A.Ac(n,s)}switch(o.w.a){case 1:r=A.l5(b.gaT(),b.gfe()/2) -q=$.ad().c_() -q.nX(r) -break -case 0:o=o.d -if(o!=null){q=$.ad().c_() -q.eG(o.P(c.d).d0(b))}else q=null -break -default:q=null}p.e.wK(a,b,q,c)}, -n(){var s=this.e -if(s!=null)s.n() -this.Nn()}, -hK(a,b,c){var s,r,q,p=this,o=c.e,n=b.a,m=b.b,l=new A.y(n,m,n+o.a,m+o.b),k=c.d -p.agk(a,l,k) -o=p.b -n=o.a -m=n==null -if(!m||!1){s=p.c -if(s!=null)r=!1 -else r=!0 -if(r){q=$.ad().b1() -if(!m)q.saf(0,n) -p.c=q -n=q}else n=s -n.toString -p.RR(a,l,n,k)}p.age(a,l,c) -n=o.c -if(n!=null){m=o.d -m=m==null?null:m.P(k) -n.D0(a,l,m,o.w,k)}}, -k(a){return"BoxPainter for "+this.b.k(0)}} -A.a5b.prototype={ -I(){return"BoxFit."+this.b}} -A.Ny.prototype={} -A.bv.prototype={ -jb(){var s=$.ad().b1() -s.saf(0,this.a) -s.sCw(new A.r6(this.e,A.b_W(this.c))) -return s}, -bw(a,b){var s=this -return new A.bv(s.d*b,s.e,s.a,s.b.a6(0,b),s.c*b)}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.Y(b)!==A.u(s))return!1 -return b instanceof A.bv&&b.a.j(0,s.a)&&b.b.j(0,s.b)&&b.c===s.c&&b.d===s.d&&b.e===s.e}, -gA(a){var s=this -return A.T(s.a,s.b,s.c,s.d,s.e,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){var s=this -return"BoxShadow("+s.a.k(0)+", "+s.b.k(0)+", "+A.iC(s.c)+", "+A.iC(s.d)+", "+s.e.k(0)+")"}} -A.ej.prototype={ -bw(a,b){return new A.ej(this.b,this.a.bw(0,b))}, -dP(a,b){var s,r -if(a instanceof A.ej){s=A.aR(a.a,this.a,b) -r=A.a3(a.b,this.b,b) -r.toString -return new A.ej(A.R(r,0,1),s)}return this.pw(a,b)}, -dQ(a,b){var s,r -if(a instanceof A.ej){s=A.aR(this.a,a.a,b) -r=A.a3(this.b,a.b,b) -r.toString -return new A.ej(A.R(r,0,1),s)}return this.px(a,b)}, -ej(a,b){var s=$.ad().c_() -s.nX(this.yk(a).cV(-this.a.gel())) -return s}, -k7(a){return this.ej(a,null)}, -cX(a,b){var s=$.ad().c_() -s.nX(this.yk(a)) -return s}, -jh(a){return this.cX(a,null)}, -io(a,b,c,d){if(this.b===0)a.iZ(b.gaT(),b.gfe()/2,c) -else a.qK(this.yk(b),c)}, -ghL(){return!0}, -mx(a){var s=a==null?this.a:a -return new A.ej(this.b,s)}, -f0(a,b,c){var s,r=this.a -switch(r.c.a){case 0:break -case 1:s=r.b*r.d -if(this.b===0)a.iZ(b.gaT(),(b.gfe()+s)/2,r.jb()) -else a.qK(this.yk(b).cV(s/2),r.jb()) -break}}, -ap(a,b){return this.f0(a,b,null)}, -yk(a){var s,r,q,p,o,n,m,l=this.b -if(l===0||a.c-a.a===a.d-a.b)return A.l5(a.gaT(),a.gfe()/2) -s=a.c -r=a.a -q=s-r -p=a.d -o=a.b -n=p-o -l=1-l -if(q").b(b)&&A.aBI(b.b,s.b)}, -gA(a){return A.T(A.u(this),this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){return"ColorSwatch(primary value: "+this.a1Q(0)+")"}} -A.fv.prototype={ -df(){return"Decoration"}, -ge4(a){return B.z}, -gCj(){return!1}, -dP(a,b){return null}, -dQ(a,b){return null}, -Kn(a,b,c){return!0}, -DP(a,b){throw A.d(A.V("This Decoration subclass does not expect to be used for clipping."))}} -A.ns.prototype={ -n(){}} -A.W5.prototype={} -A.v8.prototype={ -I(){return"ImageRepeat."+this.b}} -A.Ac.prototype={ -wK(a,b,c,d){var s,r,q,p=this,o=p.a,n=o.a.P(d) -n.gwi(n) -p.c=n -n.U(0,new A.hH(p.gabM(),null,o.b)) -if(p.d==null)return -s=c!=null -if(s){a.cQ(0) -a.i8(0,c)}r=p.d -q=r.a -A.aON(B.a0,a,null,null,r.c,B.fC,o.d,!1,q,!1,!1,1,b,B.d9,r.b) -if(s)a.cl(0)}, -abN(a,b){var s,r,q=this -if(J.e(q.d,a))return -s=q.d -if(s!=null)if(a.a.Ky(s.a)){r=s.b -s=r===r&&a.c==s.c}else s=!1 -else s=!1 -if(s){a.a.n() -return}s=q.d -if(s!=null)s.a.n() -q.d=a -if(!b)q.b.$0()}, -n(){var s=this.d -if(s!=null)s.a.n() -this.d=null}, -k(a){return"DecorationImagePainter(stream: "+A.j(this.c)+", image: "+A.j(this.d)+") for "+this.a.k(0)}} -A.df.prototype={ -gdO(){var s=this -return s.gfh(s)+s.gfi(s)+s.ghv(s)+s.ghs()}, -alW(a){var s=this -switch(a.a){case 0:return s.gdO() -case 1:return s.gc6(s)+s.gca(s)}}, -E(a,b){var s=this -return new A.pj(s.gfh(s)+b.gfh(b),s.gfi(s)+b.gfi(b),s.ghv(s)+b.ghv(b),s.ghs()+b.ghs(),s.gc6(s)+b.gc6(b),s.gca(s)+b.gca(b))}, -lp(a,b,c){var s=this -return new A.pj(A.R(s.gfh(s),b.a,c.a),A.R(s.gfi(s),b.c,c.b),A.R(s.ghv(s),0,c.c),A.R(s.ghs(),0,c.d),A.R(s.gc6(s),b.b,c.e),A.R(s.gca(s),b.d,c.f))}, -k(a){var s=this -if(s.ghv(s)===0&&s.ghs()===0){if(s.gfh(s)===0&&s.gfi(s)===0&&s.gc6(s)===0&&s.gca(s)===0)return"EdgeInsets.zero" -if(s.gfh(s)===s.gfi(s)&&s.gfi(s)===s.gc6(s)&&s.gc6(s)===s.gca(s))return"EdgeInsets.all("+B.d.ad(s.gfh(s),1)+")" -return"EdgeInsets("+B.d.ad(s.gfh(s),1)+", "+B.d.ad(s.gc6(s),1)+", "+B.d.ad(s.gfi(s),1)+", "+B.d.ad(s.gca(s),1)+")"}if(s.gfh(s)===0&&s.gfi(s)===0)return"EdgeInsetsDirectional("+B.d.ad(s.ghv(s),1)+", "+B.d.ad(s.gc6(s),1)+", "+B.d.ad(s.ghs(),1)+", "+B.d.ad(s.gca(s),1)+")" -return"EdgeInsets("+B.d.ad(s.gfh(s),1)+", "+B.d.ad(s.gc6(s),1)+", "+B.d.ad(s.gfi(s),1)+", "+B.d.ad(s.gca(s),1)+") + EdgeInsetsDirectional("+B.d.ad(s.ghv(s),1)+", 0.0, "+B.d.ad(s.ghs(),1)+", 0.0)"}, -j(a,b){var s=this -if(b==null)return!1 -return b instanceof A.df&&b.gfh(b)===s.gfh(s)&&b.gfi(b)===s.gfi(s)&&b.ghv(b)===s.ghv(s)&&b.ghs()===s.ghs()&&b.gc6(b)===s.gc6(s)&&b.gca(b)===s.gca(s)}, -gA(a){var s=this -return A.T(s.gfh(s),s.gfi(s),s.ghv(s),s.ghs(),s.gc6(s),s.gca(s),B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.aF.prototype={ -gfh(a){return this.a}, -gc6(a){return this.b}, -gfi(a){return this.c}, -gca(a){return this.d}, -ghv(a){return 0}, -ghs(){return 0}, -w3(a){var s=this -return new A.y(a.a-s.a,a.b-s.b,a.c+s.c,a.d+s.d)}, -Jm(a){var s=this -return new A.y(a.a+s.a,a.b+s.b,a.c-s.c,a.d-s.d)}, -E(a,b){if(b instanceof A.aF)return this.Y(0,b) -return this.Ns(0,b)}, -lp(a,b,c){var s=this -return new A.aF(A.R(s.a,b.a,c.a),A.R(s.b,b.b,c.e),A.R(s.c,b.c,c.b),A.R(s.d,b.d,c.f))}, -Z(a,b){var s=this -return new A.aF(s.a-b.a,s.b-b.b,s.c-b.c,s.d-b.d)}, -Y(a,b){var s=this -return new A.aF(s.a+b.a,s.b+b.b,s.c+b.c,s.d+b.d)}, -a6(a,b){var s=this -return new A.aF(s.a*b,s.b*b,s.c*b,s.d*b)}, -P(a){return this}, -oa(a,b,c,d){var s=this,r=b==null?s.a:b,q=d==null?s.b:d,p=c==null?s.c:c -return new A.aF(r,q,p,a==null?s.d:a)}, -vb(a){return this.oa(a,null,null,null)}, -anz(a,b){return this.oa(a,null,null,b)}, -anD(a,b){return this.oa(null,a,b,null)}} -A.ff.prototype={ -ghv(a){return this.a}, -gc6(a){return this.b}, -ghs(){return this.c}, -gca(a){return this.d}, -gfh(a){return 0}, -gfi(a){return 0}, -E(a,b){if(b instanceof A.ff)return this.Y(0,b) -return this.Ns(0,b)}, -Z(a,b){var s=this -return new A.ff(s.a-b.a,s.b-b.b,s.c-b.c,s.d-b.d)}, -Y(a,b){var s=this -return new A.ff(s.a+b.a,s.b+b.b,s.c+b.c,s.d+b.d)}, -a6(a,b){var s=this -return new A.ff(s.a*b,s.b*b,s.c*b,s.d*b)}, -P(a){var s=this -switch(a.a){case 0:return new A.aF(s.c,s.b,s.a,s.d) -case 1:return new A.aF(s.a,s.b,s.c,s.d)}}} -A.pj.prototype={ -a6(a,b){var s=this -return new A.pj(s.a*b,s.b*b,s.c*b,s.d*b,s.e*b,s.f*b)}, -P(a){var s=this -switch(a.a){case 0:return new A.aF(s.d+s.a,s.e,s.c+s.b,s.f) -case 1:return new A.aF(s.c+s.a,s.e,s.d+s.b,s.f)}}, -gfh(a){return this.a}, -gfi(a){return this.b}, -ghv(a){return this.c}, -ghs(){return this.d}, -gc6(a){return this.e}, -gca(a){return this.f}} -A.abw.prototype={ -adS(){return this.b}} -A.P_.prototype={ -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.Y(b)!==A.u(s))return!1 -return b instanceof A.P_&&b.d.j(0,s.d)&&b.e.j(0,s.e)&&b.f===s.f&&A.d_(b.a,s.a)&&A.d_(b.b,s.b)}, -gA(a){var s=this,r=A.cn(s.a),q=A.cn(s.b) -return A.T(s.d,s.e,s.f,s.c,r,q,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){var s=this,r=A.b(["begin: "+s.d.k(0),"end: "+s.e.k(0),"colors: "+A.j(s.a)],t.s) -r.push("stops: "+A.j(s.b)) -r.push("tileMode: "+s.f.k(0)) -return"LinearGradient("+B.b.bH(r,", ")+")"}} -A.adk.prototype={ -a0(a){var s,r,q,p -for(s=this.b,r=s.gaR(s),q=A.p(r),q=q.i("@<1>").a5(q.z[1]),r=new A.bP(J.as(r.a),r.b,q.i("bP<1,2>")),q=q.z[1];r.u();){p=r.a;(p==null?q.a(p):p).n()}s.a0(0) -for(s=this.a,r=s.gaR(s),q=A.p(r),q=q.i("@<1>").a5(q.z[1]),r=new A.bP(J.as(r.a),r.b,q.i("bP<1,2>")),q=q.z[1];r.u();){p=r.a -if(p==null)p=q.a(p) -p.a.H(0,p.b)}s.a0(0) -this.f=0}, -JQ(a){var s,r,q,p=this,o=p.c.F(0,a) -if(o!=null){s=o.a -r=o.d -r===$&&A.c() -if(s.w)A.U(A.a4(u.V)) -B.b.F(s.x,r) -o.O3()}q=p.a.F(0,a) -if(q!=null){q.a.H(0,q.b) -return!0}o=p.b.F(0,a) -if(o!=null){s=p.f -r=o.b -r.toString -p.f=s-r -o.n() -return!0}return!1}, -TP(a,b,c){var s,r=this,q=b.b -if(q!=null&&q<=104857600&&!0){s=r.f -q.toString -r.f=s+q -r.b.m(0,a,b) -r.a7x(c)}else b.n()}, -HV(a,b,c){var s=this.c.bT(0,a,new A.adm(this,b,a)) -if(s.b==null)s.b=c}, -Zn(a,b,c,d){var s,r,q,p,o,n,m,l=this,k=null,j={},i=l.a,h=i.h(0,b),g=h==null?k:h.a -j.a=g -if(g!=null)return g -h=l.b -q=h.F(0,b) -if(q!=null){j=q.a -l.HV(b,j,q.b) -h.m(0,b,q) -return j}p=l.c.h(0,b) -if(p!=null){j=p.a -i=p.b -if(j.w)A.U(A.a4(u.V)) -h=new A.v9(j) -h.yf(j) -l.TP(b,new A.FO(j,i,h),k) -return j}try{g=j.a=c.$0() -l.HV(b,g,k) -h=g}catch(o){s=A.a6(o) -r=A.aJ(o) -d.$2(s,r) -return k}j.b=!1 -n=A.bg("pendingImage") -m=new A.hH(new A.adn(j,l,b,!0,k,n),k,k) -n.b=new A.YS(h,m) -i.m(0,b,n.aI()) -j.a.U(0,m) -return j.a}, -a7x(a){var s,r,q,p,o,n=this,m=n.b,l=A.p(m).i("bm<1>") -while(!0){if(!(n.f>104857600||m.a>1000))break -s=new A.bm(m,l) -r=s.ga9(s) -if(!r.u())A.U(A.cd()) -q=r.gJ(r) -p=m.h(0,q) -s=n.f -o=p.b -o.toString -n.f=s-o -p.n() -m.F(0,q)}}} -A.adm.prototype={ -$0(){return A.b1P(this.b,new A.adl(this.a,this.c))}, -$S:337} -A.adl.prototype={ -$0(){this.a.c.F(0,this.b)}, -$S:0} -A.adn.prototype={ -$2(a,b){var s,r,q,p,o,n=this -if(a!=null){s=a.a -r=s.gce(s)*s.gdg(s)*4 -s.n()}else r=null -s=n.a -q=s.a -if(q.w)A.U(A.a4(u.V)) -p=new A.v9(q) -p.yf(q) -o=new A.FO(q,r,p) -p=n.b -q=n.c -p.HV(q,s.a,r) -if(n.d)p.TP(q,o,n.e) -else o.n() -p.a.F(0,q) -if(!s.b){q=n.f.aI() -q.a.H(0,q.b)}s.b=!0}, -$S:338} -A.V6.prototype={ -n(){$.c6.p1$.push(new A.arT(this))}} -A.arT.prototype={ -$1(a){var s=this.a,r=s.c -if(r!=null)r.n() -s.c=null}, -$S:3} -A.FO.prototype={} -A.y3.prototype={ -a6c(a,b,c){var s=new A.auU(this,b) -this.d=s -if(a.w)A.U(A.a4(u.V)) -a.x.push(s)}, -k(a){return"#"+A.aV(this)}} -A.auU.prototype={ -$0(){var s,r,q -this.b.$0() -s=this.a -r=s.a -q=s.d -q===$&&A.c() -if(r.w)A.U(A.a4(u.V)) -B.b.F(r.x,q) -s.O3()}, -$S:0} -A.YS.prototype={} -A.v6.prototype={ -B1(a){var s=this -return new A.v6(s.a,s.b,s.c,s.d,a,s.f)}, -j(a,b){var s=this -if(b==null)return!1 -if(J.Y(b)!==A.u(s))return!1 -return b instanceof A.v6&&b.a==s.a&&b.b==s.b&&J.e(b.c,s.c)&&b.d==s.d&&J.e(b.e,s.e)&&b.f==s.f}, -gA(a){var s=this -return A.T(s.a,s.b,s.c,s.e,s.f,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){var s,r=this,q=""+"ImageConfiguration(",p=r.a -if(p!=null){q+="bundle: "+p.k(0) -s=!0}else s=!1 -p=r.b -if(p!=null){if(s)q+=", " -p=q+("devicePixelRatio: "+B.d.ad(p,1)) -q=p -s=!0}p=r.c -if(p!=null){if(s)q+=", " -p=q+("locale: "+p.k(0)) -q=p -s=!0}p=r.d -if(p!=null){if(s)q+=", " -p=q+("textDirection: "+p.k(0)) -q=p -s=!0}p=r.e -if(p!=null){if(s)q+=", " -p=q+("size: "+p.k(0)) -q=p -s=!0}p=r.f -if(p!=null){if(s)q+=", " -p=q+("platform: "+p.b) -q=p}q+=")" -return q.charCodeAt(0)==0?q:q}} -A.fx.prototype={ -P(a){var s=new A.adv() -this.a8z(a,new A.ads(this,a,s),new A.adt(this,a,s)) -return s}, -a8z(a,b,c){var s,r,q,p,o,n={} -n.a=null -n.b=!1 -s=new A.adp(n,c) -r=null -try{r=this.wG(a)}catch(o){q=A.a6(o) -p=A.aJ(o) -s.$2(q,p) -return}J.aCn(r,new A.ado(n,this,b,s),t.H).kq(s)}, -x3(a,b,c,d){var s,r -if(b.a!=null){s=$.io.mI$ -s===$&&A.c() -s.Zn(0,c,new A.adq(b),d) -return}s=$.io.mI$ -s===$&&A.c() -r=s.Zn(0,c,new A.adr(this,c),d) -if(r!=null)b.MT(r)}, -rh(a,b,c){throw A.d(A.V("Implement loadBuffer for faster image loading"))}, -ri(a,b){return new A.xp(A.b([],t.XZ),A.b([],t.l))}, -rj(a,b){return new A.xp(A.b([],t.XZ),A.b([],t.l))}, -k(a){return"ImageConfiguration()"}} -A.ads.prototype={ -$2(a,b){this.a.x3(this.b,this.c,a,b)}, -$S(){return A.p(this.a).i("~(fx.T,~(O,d9?))")}} -A.adt.prototype={ -$3(a,b,c){return this.a_K(a,b,c)}, -a_K(a,b,c){var s=0,r=A.I(t.H),q=this,p -var $async$$3=A.D(function(d,e){if(d===1)return A.F(e,r) -while(true)switch(s){case 0:s=2 -return A.K(null,$async$$3) -case 2:p=q.c -if(p.a==null)p.MT(new A.atl(A.b([],t.XZ),A.b([],t.l))) -p=p.a -p.toString -p.x0(A.bu("while resolving an image"),b,null,!0,c) -return A.G(null,r)}}) -return A.H($async$$3,r)}, -$S(){return A.p(this.a).i("at<~>(fx.T?,O,d9?)")}} -A.adp.prototype={ -a_J(a,b){var s=0,r=A.I(t.H),q,p=this,o -var $async$$2=A.D(function(c,d){if(c===1)return A.F(d,r) -while(true)switch(s){case 0:o=p.a -if(o.b){s=1 -break}o.b=!0 -p.b.$3(o.a,a,b) -case 1:return A.G(q,r)}}) -return A.H($async$$2,r)}, -$2(a,b){return this.a_J(a,b)}, -$S:339} -A.ado.prototype={ -$1(a){var s,r,q,p=this -p.a.a=a -try{p.c.$2(a,p.d)}catch(q){s=A.a6(q) -r=A.aJ(q) -p.d.$2(s,r)}}, -$S(){return A.p(this.b).i("b1(fx.T)")}} -A.adq.prototype={ -$0(){var s=this.a.a -s.toString -return s}, -$S:135} -A.adr.prototype={ -$0(){var s=this.a,r=this.b,q=s.rj(r,$.io.gar6()) -if(q instanceof A.xp){q=s.ri(r,$.io.gar4()) -if(q instanceof A.xp)q=s.rh(0,r,$.io.gar1())}return q}, -$S:135} -A.xp.prototype={} -A.kk.prototype={ -j(a,b){var s=this -if(b==null)return!1 -if(J.Y(b)!==A.u(s))return!1 -return b instanceof A.kk&&b.a===s.a&&b.b===s.b&&b.c===s.c}, -gA(a){return A.T(this.a,this.b,this.c,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){return"AssetBundleImageKey(bundle: "+this.a.k(0)+', name: "'+this.b+'", scale: '+A.j(this.c)+")"}} -A.KY.prototype={ -rj(a,b){return A.om(null,this.GM(a,b),a.b,null,a.c)}, -ri(a,b){return A.om(null,this.GN(a,b),a.b,null,a.c)}, -rh(a,b,c){return A.om(null,this.GO(b,c),b.b,null,b.c)}, -fF(a,b,c,d){return this.aex(a,b,c,d)}, -GO(a,b){return this.fF(a,null,null,b)}, -GN(a,b){return this.fF(a,null,b,null)}, -GM(a,b){return this.fF(a,b,null,null)}, -aex(a,b,c,d){var s=0,r=A.I(t.hP),q,p=2,o,n,m,l,k,j,i,h,g -var $async$fF=A.D(function(e,f){if(e===1){o=f -s=p}while(true)switch(s){case 0:s=b!=null?3:4 -break -case 3:n=null -p=6 -s=9 -return A.K(a.a.wn(a.b),$async$fF) -case 9:n=f -p=2 -s=8 -break -case 6:p=5 -i=o -if(A.a6(i) instanceof A.m5){j=$.io.mI$ -j===$&&A.c() -j.JQ(a) -throw i}else throw i -s=8 -break -case 5:s=2 -break -case 8:q=b.$1(n) -s=1 -break -case 4:s=c!=null?10:11 -break -case 10:m=null -p=13 -s=16 -return A.K(a.a.wn(a.b),$async$fF) -case 16:m=f -p=2 -s=15 -break -case 13:p=12 -h=o -if(A.a6(h) instanceof A.m5){j=$.io.mI$ -j===$&&A.c() -j.JQ(a) -throw h}else throw h -s=15 -break -case 12:s=2 -break -case 15:q=c.$1(m) -s=1 -break -case 11:l=null -p=18 -s=21 -return A.K(a.a.jU(0,a.b),$async$fF) -case 21:l=f -p=2 -s=20 -break -case 18:p=17 -g=o -if(A.a6(g) instanceof A.m5){j=$.io.mI$ -j===$&&A.c() -j.JQ(a) -throw g}else throw g -s=20 -break -case 17:s=2 -break -case 20:d.toString -q=d.$1(A.dm(l.buffer,0,null)) -s=1 -break -case 1:return A.G(q,r) -case 2:return A.F(o,r)}}) -return A.H($async$fF,r)}} -A.ol.prototype={ -wG(a){return new A.cW(this,t.Q6)}, -rh(a,b,c){return A.om(null,this.GO(b,c),"MemoryImage("+("#"+A.aV(b.a))+")",null,b.b)}, -ri(a,b){return A.om(null,this.GN(a,b),"MemoryImage("+("#"+A.aV(a.a))+")",null,a.b)}, -rj(a,b){return A.om(null,this.GM(a,b),"MemoryImage("+("#"+A.aV(a.a))+")",null,a.b)}, -fF(a,b,c,d){return this.aey(a,b,c,d)}, -GO(a,b){return this.fF(a,null,null,b)}, -GN(a,b){return this.fF(a,null,b,null)}, -GM(a,b){return this.fF(a,b,null,null)}, -aey(a,b,c,d){var s=0,r=A.I(t.hP),q,p=this,o -var $async$fF=A.D(function(e,f){if(e===1)return A.F(f,r) -while(true)switch(s){case 0:s=b!=null?3:4 -break -case 3:o=b -s=5 -return A.K(A.va(p.a),$async$fF) -case 5:q=o.$1(f) -s=1 -break -case 4:s=c!=null?6:7 -break -case 6:o=c -s=8 -return A.K(A.va(p.a),$async$fF) -case 8:q=o.$1(f) -s=1 -break -case 7:q=d.$1(p.a) -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$fF,r)}, -j(a,b){if(b==null)return!1 -if(J.Y(b)!==A.u(this))return!1 -return b instanceof A.ol&&b.a===this.a&&b.b===this.b}, -gA(a){return A.T(A.fi(this.a),this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){return"MemoryImage("+("#"+A.aV(this.a))+", scale: "+this.b+")"}} -A.atl.prototype={} -A.PS.prototype={ -k(a){return this.b}, -$ibV:1} -A.zo.prototype={ -gre(){return this.a}, -wG(a){var s,r={},q=a.a -if(q==null)q=$.Ky() -r.a=r.b=null -s=t.P -A.aYo(q.arR("AssetManifest.bin",A.b4C(),t.jo).bQ(0,new A.a4q(r,this,a,q),s),new A.a4r(r),s,t.K) -s=r.a -if(s!=null)return s -s=new A.ae($.ai,t.Lv) -r.b=new A.b3(s,t.h8) -return s}, -a7O(a,b,c){var s,r,q,p,o -if(c==null||c.length===0||b.b==null)return new A.nm(null,a) -s=A.aE9(t.i,t.pR) -for(r=c.length,q=0;q(r+q)/2){s=a.h(0,q) -s.toString -return s}else{s=a.h(0,r) -s.toString -return s}}, -j(a,b){if(b==null)return!1 -if(J.Y(b)!==A.u(this))return!1 -return b instanceof A.zo&&b.gre()===this.gre()&&!0}, -gA(a){return A.T(this.gre(),this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){return"AssetImage(bundle: "+A.j(this.b)+', name: "'+this.gre()+'")'}} -A.a4q.prototype={ -$1(a){var s,r,q=this,p=q.b,o=a.a_S(p.gre()),n=p.a7O(p.gre(),q.c,o) -p=n.a -if(p==null)p=1 -s=new A.kk(q.d,n.b,p) -p=q.a -r=p.b -if(r!=null)r.dm(0,s) -else p.a=new A.cW(s,t.WT)}, -$S:341} -A.a4r.prototype={ -$2(a,b){this.a.b.o8(a,b)}, -$S:36} -A.jx.prototype={ -er(a){return new A.jx(this.a.er(0),this.b,this.c)}, -k(a){var s=this.c -s=s!=null?s+" ":"" -return s+this.a.k(0)+" @ "+A.iC(this.b)+"x"}, -gA(a){return A.T(this.a,this.b,this.c,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -j(a,b){var s=this -if(b==null)return!1 -if(J.Y(b)!==A.u(s))return!1 -return b instanceof A.jx&&b.a===s.a&&b.b===s.b&&b.c==s.c}} -A.hH.prototype={ -gA(a){return A.T(this.a,this.b,this.c,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -j(a,b){var s=this -if(b==null)return!1 -if(J.Y(b)!==A.u(s))return!1 -return b instanceof A.hH&&J.e(b.a,s.a)&&J.e(b.b,s.b)&&J.e(b.c,s.c)}, -asC(a,b){return this.a.$2(a,b)}} -A.kF.prototype={} -A.adv.prototype={ -MT(a){var s,r=this -r.a=a -s=r.b -if(s!=null){r.b=null -a.f=!0 -B.b.N(s,a.gAu(a)) -r.a.f=!1}}, -U(a,b){var s=this.a -if(s!=null)return s.U(0,b) -s=this.b;(s==null?this.b=A.b([],t.XZ):s).push(b)}, -H(a,b){var s,r=this.a -if(r!=null)return r.H(0,b) -for(s=0;r=this.b,s")),n),!0,n.i("q.E")) -s=!1 -for(o=m.length,l=0;l")),r),!0,r.i("q.E")) -for(s=q.length,p=0;p=s.a}else r=!0 -if(r){s=p.at -p.PO(new A.jx(s.gj5(s).er(0),p.Q,p.d)) -p.ax=a -s=p.at -p.ay=s.gBp(s) -s=p.at -s.gj5(s).n() -p.at=null -q=B.h.jo(p.ch,p.z.gvV()) -if(p.z.gDl()===-1||q<=p.z.gDl())p.pK() -return}s.toString -r=p.ax -r===$&&A.c() -p.CW=A.cM(new A.b8(B.h.bE(s.a-(a.a-r.a))),new A.agt(p))}, -pK(){var s=0,r=A.I(t.H),q,p=2,o,n=this,m,l,k,j,i -var $async$pK=A.D(function(a,b){if(a===1){o=b -s=p}while(true)switch(s){case 0:j=n.at -if(j!=null)j.gj5(j).n() -n.at=null -p=4 -s=7 -return A.K(n.z.k8(),$async$pK) -case 7:n.at=b -p=2 -s=6 -break -case 4:p=3 -i=o -m=A.a6(i) -l=A.aJ(i) -n.x0(A.bu("resolving an image frame"),m,n.as,!0,l) -s=1 -break -s=6 -break -case 3:s=2 -break -case 6:if(n.z.gvV()===1){if(n.a.length===0){s=1 -break}j=n.at -n.PO(new A.jx(j.gj5(j).er(0),n.Q,n.d)) -j=n.at -j.gj5(j).n() -n.at=null -s=1 -break}n.SC() -case 1:return A.G(q,r) -case 2:return A.F(o,r)}}) -return A.H($async$pK,r)}, -SC(){if(this.cx)return -this.cx=!0 -$.c6.E3(this.gaaQ())}, -PO(a){this.a0K(a);++this.ch}, -U(a,b){var s,r=this -if(r.a.length===0){s=r.z -if(s!=null)s=r.b==null||s.gvV()>1 -else s=!1}else s=!1 -if(s)r.pK() -r.a29(0,b)}, -H(a,b){var s,r=this -r.a2a(0,b) -if(r.a.length===0){s=r.CW -if(s!=null)s.bb(0) -r.CW=null}}, -zf(){var s,r=this -r.a28() -if(r.w){s=r.y -if(s!=null)s.wH(null) -s=r.y -if(s!=null)s.bb(0) -r.y=null}}} -A.agu.prototype={ -$2(a,b){this.a.x0(A.bu("resolving an image codec"),a,this.b,!0,b)}, -$S:36} -A.agv.prototype={ -$2(a,b){this.a.x0(A.bu("loading an image"),a,this.b,!0,b)}, -$S:36} -A.agt.prototype={ -$0(){this.a.SC()}, -$S:0} -A.Xm.prototype={} -A.Xo.prototype={} -A.Xn.prototype={} -A.KH.prototype={} -A.md.prototype={ -j(a,b){var s=this -if(b==null)return!1 -return b instanceof A.md&&b.a===s.a&&b.b==s.b&&b.c==s.c&&b.d===s.d&&A.d_(b.f,s.f)}, -gA(a){var s=this -return A.T(s.a,s.b,s.c,s.d,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){return"InlineSpanSemanticsInformation{text: "+this.a+", semanticsLabel: "+A.j(this.b)+", recognizer: "+A.j(this.c)+"}"}} -A.fz.prototype={ -Mw(a){var s={} -s.a=null -this.b3(new A.adT(s,a,new A.KH())) -return s.a}, -xc(a){var s,r=new A.cf("") -this.v8(r,!0,a) -s=r.a -return s.charCodeAt(0)==0?s:s}, -a_d(){return this.xc(!0)}, -iV(a,b){var s={} -if(b<0)return null -s.a=null -this.b3(new A.adS(s,b,new A.KH())) -return s.a}, -j(a,b){if(b==null)return!1 -if(this===b)return!0 -if(J.Y(b)!==A.u(this))return!1 -return b instanceof A.fz&&J.e(b.a,this.a)}, -gA(a){return J.C(this.a)}} -A.adT.prototype={ -$1(a){var s=a.Mx(this.b,this.c) -this.a.a=s -return s==null}, -$S:67} -A.adS.prototype={ -$1(a){var s=a.VB(this.b,this.c) -this.a.a=s -return s==null}, -$S:67} -A.QS.prototype={ -v8(a,b,c){a.a+=A.bQ(65532)}, -AW(a){a.push(B.GF)}} -A.cF.prototype={ -bw(a,b){var s=this.a.bw(0,b) -return new A.cF(this.b.a6(0,b),s)}, -dP(a,b){var s,r,q=this -if(a instanceof A.cF){s=A.aR(a.a,q.a,b) -r=A.kl(a.b,q.b,b) -r.toString -return new A.cF(r,s)}if(a instanceof A.ej){s=A.aR(a.a,q.a,b) -return new A.fQ(q.b,1-b,a.b,s)}return q.pw(a,b)}, -dQ(a,b){var s,r,q=this -if(a instanceof A.cF){s=A.aR(q.a,a.a,b) -r=A.kl(q.b,a.b,b) -r.toString -return new A.cF(r,s)}if(a instanceof A.ej){s=A.aR(q.a,a.a,b) -return new A.fQ(q.b,b,a.b,s)}return q.px(a,b)}, -mx(a){var s=a==null?this.a:a -return new A.cF(this.b,s)}, -ej(a,b){var s=this.b.P(b).d0(a).cV(-this.a.gel()),r=$.ad().c_() -r.eG(s) -return r}, -k7(a){return this.ej(a,null)}, -cX(a,b){var s=$.ad().c_() -s.eG(this.b.P(b).d0(a)) -return s}, -jh(a){return this.cX(a,null)}, -io(a,b,c,d){var s=this.b -if(s.j(0,B.am))a.cT(b,c) -else a.cC(s.P(d).d0(b),c)}, -ghL(){return!0}, -f0(a,b,c){var s,r,q,p,o=this.a -switch(o.c.a){case 0:break -case 1:s=this.b -if(o.b===0)a.cC(s.P(c).d0(b),o.jb()) -else{r=$.ad().b1() -r.saf(0,o.a) -q=s.P(c).d0(b) -p=q.cV(-o.gel()) -a.oj(q.cV(o.gpr()),p,r)}break}}, -ap(a,b){return this.f0(a,b,null)}, -j(a,b){if(b==null)return!1 -if(J.Y(b)!==A.u(this))return!1 -return b instanceof A.cF&&b.a.j(0,this.a)&&b.b.j(0,this.b)}, -gA(a){return A.T(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){return"RoundedRectangleBorder("+this.a.k(0)+", "+this.b.k(0)+")"}} -A.fQ.prototype={ -bw(a,b){var s=this.a.bw(0,b) -return new A.fQ(this.b.a6(0,b),b,this.d,s)}, -dP(a,b){var s,r,q,p=this -if(a instanceof A.cF){s=A.aR(a.a,p.a,b) -r=A.kl(a.b,p.b,b) -r.toString -return new A.fQ(r,p.c*b,p.d,s)}if(a instanceof A.ej){s=A.aR(a.a,p.a,b) -r=p.c -return new A.fQ(p.b,r+(1-r)*(1-b),a.b,s)}if(a instanceof A.fQ){s=A.aR(a.a,p.a,b) -r=A.kl(a.b,p.b,b) -r.toString -q=A.a3(a.c,p.c,b) -q.toString -return new A.fQ(r,q,p.d,s)}return p.pw(a,b)}, -dQ(a,b){var s,r,q,p=this -if(a instanceof A.cF){s=A.aR(p.a,a.a,b) -r=A.kl(p.b,a.b,b) -r.toString -return new A.fQ(r,p.c*(1-b),p.d,s)}if(a instanceof A.ej){s=A.aR(p.a,a.a,b) -r=p.c -return new A.fQ(p.b,r+(1-r)*b,a.b,s)}if(a instanceof A.fQ){s=A.aR(p.a,a.a,b) -r=A.kl(p.b,a.b,b) -r.toString -q=A.a3(p.c,a.c,b) -q.toString -return new A.fQ(r,q,p.d,s)}return p.px(a,b)}, -uq(a){var s,r,q,p,o,n,m,l,k=this.c -if(k===0||a.c-a.a===a.d-a.b)return a -s=a.c -r=a.a -q=s-r -p=a.d -o=a.b -n=p-o -m=1-this.d -if(q")),!0,t.Q2)}if(s.e.ghL())p.x=A.a8(new A.a1(r,new A.axp(a),A.W(r).i("a1<1,y>")),!0,t.YT) -else p.y=A.a8(new A.a1(r,new A.axq(p,a,b),A.W(r).i("a1<1,vO>")),!0,t.ke)}r=s.e -if(!r.ghL())q=p.r!=null||p.w!=null -else q=!1 -if(q)p.e=r.cX(a,b) -if(s.c!=null)p.f=r.ej(a,b) -p.c=a -p.d=b}, -aiZ(a,b,c){var s,r,q,p,o=this -if(o.w!=null){s=o.b.e -if(s.ghL()){r=0 -while(!0){q=o.w -q.toString -if(!(r>>0)+r+-56613888 -break $label0$0}if(56320===s){r=r.iV(0,a-1) -r.toString -r=(r<<10>>>0)+q+-56613888 -break $label0$0}r=q -break $label0$0}return r}, -ajd(a,b){var s,r=this.a8_(b?a-1:a),q=b?a:a-1,p=this.a.iV(0,q) -if(!(r==null||p==null||A.aLF(r)||A.aLF(p))){q=A.aG("[\\p{Space_Separator}\\p{Punctuation}]",!0,!1,!1,!0) -s=A.bQ(r) -q=!q.b.test(s)}else q=!0 -return q}, -gYH(){var s=this,r=s.c -if(r===$){r!==$&&A.aW() -r=s.c=new A.a1z(s.gajc(),s)}return r}} -A.a1z.prototype={ -fw(a){var s -if(a<0)return null -s=this.b.fw(a) -return s==null||this.a.$2(s,!1)?s:this.fw(s-1)}, -fz(a){var s=this.b.fz(Math.max(a,0)) -return s==null||this.a.$2(s,!0)?s:this.fz(s)}} -A.ayx.prototype={ -no(a){var s -switch(a.a){case 0:s=this.a -s=s.guP(s) -break -case 1:s=this.a -s=s.gXM(s) -break -default:s=null}return s}} -A.ayB.prototype={ -gkQ(){var s,r,q=this.c -if(q===0)return B.e -s=this.a -r=s.a -if(!isFinite(r.gdg(r)))return B.Mu -r=this.b -s=s.a -return new A.k(q*(r-s.gdg(s)),0)}, -ahO(a,b,c){var s,r,q=this,p=q.a,o=A.aMg(a,b,c,p) -if(o===q.b)return!0 -if(!isFinite(q.gkQ().a)){s=p.a -s=!isFinite(s.gdg(s))&&isFinite(a)}else s=!1 -if(s)return!1 -r=p.a.goL() -p=p.a -if(p.gdg(p)-r>-1e-10&&b-r>-1e-10){q.b=o -return!0}return!1}} -A.tx.prototype={} -A.tq.prototype={} -A.Ty.prototype={ -W(){var s=this.b -if(s!=null)s.a.a.n() -this.b=null}, -scW(a,b){var s,r,q=this -if(J.e(q.f,b))return -s=q.f -s=s==null?null:s.a -if(!J.e(s,b.a)){s=q.CW -if(s!=null)s.n() -q.CW=null}s=q.f -s=s==null?null:s.bi(0,b) -r=s==null?B.b4:s -q.f=b -q.r=null -s=r.a -if(s>=3)q.W() -else if(s>=2)q.c=!0}, -gkR(){var s=this.r -if(s==null){s=this.f -s=s==null?null:s.xc(!1) -this.r=s}return s==null?"":s}, -srH(a,b){if(this.w===b)return -this.w=b -this.W()}, -sbF(a){var s,r=this -if(r.x===a)return -r.x=a -r.W() -s=r.CW -if(s!=null)s.n() -r.CW=null}, -srI(a){var s,r=this -if(r.y===a)return -r.y=a -r.W() -s=r.CW -if(s!=null)s.n() -r.CW=null}, -saot(a){if(this.z==a)return -this.z=a -this.W()}, -srk(a,b){if(J.e(this.Q,b))return -this.Q=b -this.W()}, -srl(a){if(this.as==a)return -this.as=a -this.W()}, -slb(a){if(J.e(this.at,a))return -this.at=a -this.W()}, -srJ(a){if(this.ax===a)return -this.ax=a}, -gXV(){var s,r,q,p=this.b -if(p==null)return null -s=p.gkQ() -if(!isFinite(s.a)||!isFinite(s.b))return A.b([],t.Lx) -r=p.d -if(r==null)r=p.d=p.a.a.xt() -if(s.j(0,B.e))return r -q=A.W(r).i("a1<1,es>") -return A.a8(new A.a1(r,new A.apb(s),q),!1,q.i("am.E"))}, -m1(a){if(a==null||a.length===0||A.d_(a,this.ch))return -this.ch=a -this.W()}, -Pr(a4){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1=this,a2=null,a3=a1.f.a -if(a3==null)a3=a2 -else{s=a1.w -r=a1.x -if(r==null)r=a4 -q=a1.y -p=a1.as -o=a1.ay -n=a1.z -m=a1.Q -l=a1.at -k=a3.at -o=k==null?a2:new A.EV(k) -j=a3.w -i=a3.x -h=a3.d -g=a3.r -if(g==null)g=14 -a3=a3.as -if(l==null)l=a2 -else{f=l.a -e=l.gjM() -d=l.d -d=d==null?a2:d*q -c=l.e -b=l.x -a=l.r -a0=l.w -l=l.y -b=$.ad().Wa(f,e,d,a0,a,l,c,b,a2) -l=b}r=A.aDS(n,h,g*q,i,j,a3,m,p,l,s,r,o) -a3=r}if(a3==null){a3=a1.w -s=a1.x -if(s==null)s=a4 -r=a1.y -q=a1.as -p=a1.ay -p=A.aDS(a1.z,a2,14*r,a2,a2,a2,a1.Q,q,a2,a3,s,p) -a3=p}return a3}, -a8C(){return this.Pr(null)}, -gdd(){var s,r,q=this,p=q.CW -if(p==null){p=q.Pr(B.a4) -s=$.ad().B7(p) -p=q.f -if(p==null)r=null -else{p=p.a -r=p==null?null:p.xB(q.y)}if(r!=null)s.rD(r) -s.uN(" ") -p=s.bq() -p.he(B.MK) -q.CW=p}return p.gce(p)}, -Pq(a){var s=this,r=s.a8C(),q=$.ad().B7(r) -r=s.y -a.AM(q,s.ch,r) -s.c=!1 -return q.bq()}, -Cq(a,b){var s,r,q,p,o,n,m,l,k=this,j=k.b,i=j==null -if(!i&&j.ahO(b,a,k.ax))return -s=k.f -if(s==null)throw A.d(A.a4("TextPainter.text must be set to a non-null value before using the TextPainter.")) -r=k.x -if(r==null)throw A.d(A.a4("TextPainter.textDirection must be set to a non-null value before using the TextPainter.")) -q=A.aLc(k.w,r) -if(!(!isFinite(a)&&q!==0))p=a -else p=i?null:Math.ceil(j.a.a.goL()) -o=p==null -k.d=o?a:p -n=i?null:j.a.a -if(n==null)n=k.Pq(s) -n.he(new A.mq(k.d)) -i=new A.ayx(n) -m=A.aMg(b,a,k.ax,i) -if(o&&isFinite(b)){l=Math.ceil(i.a.goL()) -n.he(new A.mq(l)) -k.d=l}k.b=new A.ayB(i,m,q)}, -arB(){return this.Cq(1/0,0)}, -ap(a,b){var s,r,q,p=this,o=p.b -if(o==null)throw A.d(A.a4("TextPainter.paint called when text geometry was not yet calculated.\nPlease call layout() before paint() to position the text before painting it.")) -if(!isFinite(o.gkQ().a)||!isFinite(o.gkQ().b))return -if(p.c){s=o.a -r=s.a -q=p.f -q.toString -q=p.Pq(q) -q.he(new A.mq(p.d)) -s.a=q -r.n()}a.mE(o.a.a,b.Y(0,o.gkQ()))}, -Mo(a){var s=this.f.iV(0,a) -if(s==null)return null -return(s&64512)===55296?a+2:a+1}, -Mp(a){var s=a-1,r=this.f.iV(0,s) -if(r==null)return null -return(r&64512)===56320?a-2:s}, -Qg(a){var s,r,q,p,o,n,m,l,k,j=this,i=j.gkR().length -if(i===0||a>i)return null -s=B.c.iV(j.gkR(),Math.max(0,a-1)) -r=s&64512 -q=r===55296||r===56320||j.f.iV(0,a)===8205||s===8207||s===8206 -p=q?2:1 -o=A.b([],t.Lx) -for(r=-i,n=!q,m=s===10;o.length===0;){l=a-p -o=j.b.a.a.DN(Math.max(0,l),a,B.lT) -if(o.length===0){if(n&&m)break -if(l>>0,n=!q;o.length===0;){m=a+p -o=this.b.a.a.DN(a,m,B.lT) -if(o.length===0){if(n)break -if(m>=r)break -p*=2 -continue}l=B.b.gM(o).e===B.p?B.b.gM(o):B.b.gL(o) -r=l.e -n=r===B.p?l.a:l.c -k=l.b -return new A.tx(new A.k(n,k),r,l.d-k)}return null}, -l2(a,b){var s,r,q,p,o,n,m,l,k,j,i=this,h=null,g=i.b -g.toString -s=a.a<0?B.A4:i.Pe(a) -$label0$0:{r=A.cO("#0#2",new A.ap8(s)) -q=A.cO("#0#4",new A.ap9(s)) -p=A.cO("#0#7",new A.apa(s)) -if(s instanceof A.tq)if(typeof r.aQ()=="number"){o=r.aQ() -n=!0}else{o=h -n=!1}else{o=h -n=!1}if(n){n=i.w -m=i.x -m.toString -l=A.aLc(n,m) -return new A.k(l===0?0:l*g.b,o)}n=s instanceof A.tx -if(n)if(B.p===q.aQ())if(p.aQ() instanceof A.k){k=p.aQ() -m=!0}else{k=h -m=!1}else{k=h -m=!1}else{k=h -m=!1}if(m){j=k -break $label0$0}if(n)if(B.a4===q.aQ())if(p.aQ() instanceof A.k){k=p.aQ() -n=!0}else{k=h -n=!1}else{k=h -n=!1}else{k=h -n=!1}j=n?new A.k(k.a-(b.c-b.a),k.b):h}return new A.k(A.R(j.a+g.gkQ().a,0,g.b),j.b+g.gkQ().b)}, -Mj(a,b){var s,r,q,p,o=null -if(a.a<0)return o -s=this.Pe(a) -r=A.cO("#0#2",new A.ap7(s)) -$label0$0:{if(s instanceof A.tx)if(typeof r.aQ()=="number"){q=r.aQ() -p=!0}else{q=o -p=!1}else{q=o -p=!1}if(p){p=q -break $label0$0}if(s instanceof A.tq){p=o -break $label0$0}p=o}return p}, -Pe(a){var s,r,q=this,p=q.b -if(a.j(0,p.f)){s=q.cx -s===$&&A.c() -return s}r=a.a -switch(a.b.a){case 0:s=q.Qg(r) -if(s==null)s=q.Qf(r) -break -case 1:s=q.Qf(r) -if(s==null)s=q.Qg(r) -break -default:s=null}p.f=a -return q.cx=s==null?B.A4:s}, -pa(a,b,c){var s,r,q=this.b,p=q.gkQ() -if(!isFinite(p.a)||!isFinite(p.b))return A.b([],t.Lx) -s=q.a.a.xu(a.a,a.b,b,c) -if(p.j(0,B.e))r=s -else{r=A.W(s).i("a1<1,es>") -r=A.a8(new A.a1(s,new A.ap6(p),r),!1,r.i("am.E"))}return r}, -l0(a){return this.pa(a,B.d0,B.c9)}, -eC(a){var s=this.b -return s.a.a.eC(a.Z(0,s.gkQ()))}, -qs(){var s,r,q=this.b,p=q.gkQ() -if(!isFinite(p.a)||!isFinite(p.b))return B.Iy -s=q.e -if(s==null){s=q.a.a.qs() -q.e=s}if(p.j(0,B.e))r=s -else{r=A.W(s).i("a1<1,of>") -r=A.a8(new A.a1(s,new A.ap5(p),r),!1,r.i("am.E"))}return r}, -n(){var s=this,r=s.CW -if(r!=null)r.n() -s.CW=null -r=s.b -if(r!=null)r.a.a.n() -s.f=s.b=null}} -A.apb.prototype={ -$1(a){return A.aLd(a,this.a)}, -$S:103} -A.aoZ.prototype={ -$0(){return this.a.a}, -$S:353} -A.ap0.prototype={ -$0(){return this.a.b}, -$S:139} -A.ap_.prototype={ -$0(){return B.aR===this.a.aQ()}, -$S:12} -A.ap1.prototype={ -$0(){return B.p===this.a.aQ()}, -$S:12} -A.ap2.prototype={ -$0(){return B.a4===this.a.aQ()}, -$S:12} -A.ap3.prototype={ -$0(){return B.cS===this.a.aQ()}, -$S:12} -A.ap4.prototype={ -$0(){return B.hL===this.a.aQ()}, -$S:12} -A.ap8.prototype={ -$0(){return t.Wt.a(this.a).a}, -$S:52} -A.ap9.prototype={ -$0(){return t.YL.a(this.a).b}, -$S:139} -A.apa.prototype={ -$0(){return t.YL.a(this.a).a}, -$S:355} -A.ap7.prototype={ -$0(){return t.YL.a(this.a).c}, -$S:52} -A.ap6.prototype={ -$1(a){return A.aLd(a,this.a)}, -$S:103} -A.ap5.prototype={ -$1(a){var s=this.a,r=a.gXD(),q=a.gVf(),p=a.gJn(),o=a.ga_j(),n=a.gce(a),m=a.gdg(a),l=a.gj6(a),k=a.gko(),j=a.gKJ(a) -return $.ad().W4(q,k+s.b,p,r,n,l+s.a,j,o,m)}, -$S:356} -A.hn.prototype={ -gWg(a){return this.e}, -gMb(){return!0}, -jN(a,b){var s -if(t.pY.b(a)){s=this.d -if(s!=null)s.uL(a)}}, -AM(a,b,c){var s,r,q,p,o,n=this.a,m=n!=null -if(m)a.rD(n.xB(c)) -n=this.b -if(n!=null)try{a.uN(n)}catch(q){n=A.a6(q) -if(n instanceof A.iE){s=n -r=A.aJ(q) -A.cY(new A.bH(s,r,"painting library",A.bu("while building a TextSpan"),null,!1)) -a.uN("\ufffd")}else throw q}p=this.c -if(p!=null)for(n=p.length,o=0;oq.a)q=p -if(q===B.b4)return q}s=n.c -if(s!=null)for(r=b.c,o=0;oq.a)q=p -if(q===B.b4)return q}return q}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.Y(b)!==A.u(s))return!1 -if(!s.NA(0,b))return!1 -return b instanceof A.hn&&b.b==s.b&&b.d==s.d&&s.e.j(0,b.e)&&A.d_(b.c,s.c)}, -gA(a){var s=this,r=A.fz.prototype.gA.call(s,s),q=s.c -q=q==null?null:A.cn(q) -return A.T(r,s.b,s.d,s.w,null,null,s.e,q,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -df(){return"TextSpan"}, -$iah:1, -$ikR:1, -gL1(){return null}, -gL2(){return null}} -A.v.prototype={ -gjM(){var s,r=this.e -if(!(this.f==null))if(r==null)r=null -else{s=A.W(r).i("a1<1,n>") -s=A.a8(new A.a1(r,new A.ape(this),s),!0,s.i("am.E")) -r=s}return r}, -gq8(a){var s,r=this.f -if(r!=null){s=this.d -return s==null?null:B.c.bK(s,("packages/"+r+"/").length)}return this.d}, -jB(a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7,c8){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2=this,a3=a2.ay -if(a3==null&&b9==null)s=a6==null?a2.b:a6 -else s=null -r=a2.ch -if(r==null&&a4==null)q=a5==null?a2.c:a5 -else q=null -p=b5==null?a2.r:b5 -o=b8==null?a2.w:b8 -n=b6==null?a2.x:b6 -m=c2==null?a2.y:c2 -l=c8==null?a2.z:c8 -k=c7==null?a2.Q:c7 -j=c0==null?a2.as:c0 -i=c1==null?a2.at:c1 -a3=b9==null?a3:b9 -r=a4==null?r:a4 -h=c6==null?a2.dy:c6 -g=b4==null?a2.fr:b4 -f=b7==null?a2.fx:b7 -e=a8==null?a2.CW:a8 -d=a9==null?a2.cx:a9 -c=b0==null?a2.cy:b0 -b=b1==null?a2.db:b1 -a=b2==null?a2.gq8(a2):b2 -a0=b3==null?a2.e:b3 -a1=c5==null?a2.f:c5 -return A.f6(r,q,s,null,e,d,c,b,a,a0,g,p,n,f,o,a3,j,a2.a,i,m,a2.ax,a2.fy,a1,h,k,l)}, -cH(a){return this.jB(null,null,a,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null)}, -ant(a){return this.jB(null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,a,null,null,null,null,null,null)}, -B3(a,b){return this.jB(null,null,a,null,null,null,null,null,null,null,null,b,null,null,null,null,null,null,null,null,null,null,null,null,null)}, -anr(a){return this.jB(null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,a,null,null,null,null,null,null,null,null)}, -anp(a){return this.jB(null,null,null,null,null,null,null,null,null,null,a,null,null,null,null,null,null,null,null,null,null,null,null,null,null)}, -VY(a,b,c){return this.jB(null,a,null,null,null,null,null,null,b,null,null,c,null,null,null,null,null,null,null,null,null,null,null,null,null)}, -vd(a,b){return this.jB(null,null,null,null,null,null,null,null,null,null,null,a,null,null,b,null,null,null,null,null,null,null,null,null,null)}, -J4(a){return this.jB(null,null,null,null,null,null,null,null,null,null,null,null,null,null,a,null,null,null,null,null,null,null,null,null,null)}, -anq(a){return this.jB(null,null,null,null,null,null,null,null,null,null,null,null,a,null,null,null,null,null,null,null,null,null,null,null,null)}, -ann(a){return this.jB(null,null,null,null,a,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null)}, -b0(a4){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3 -if(a4==null)return this -if(!a4.a)return a4 -s=a4.b -r=a4.c -q=a4.r -p=a4.w -o=a4.x -n=a4.y -m=a4.z -l=a4.Q -k=a4.as -j=a4.at -i=a4.ax -h=a4.ay -g=a4.ch -f=a4.dy -e=a4.fr -d=a4.fx -c=a4.CW -b=a4.cx -a=a4.cy -a0=a4.db -a1=a4.gq8(a4) -a2=a4.e -a3=a4.f -return this.jB(g,r,s,null,c,b,a,a0,a1,a2,e,q,o,d,p,h,k,j,n,i,a4.fy,a3,f,l,m)}, -xB(a){var s,r,q=this,p=q.gjM(),o=q.r -o=o==null?null:o*a -s=q.ch -if(s==null){s=q.c -if(s!=null){r=$.ad().b1() -r.saf(0,s) -s=r}else s=null}return A.aLe(s,q.b,q.CW,q.cx,q.cy,q.db,q.d,p,q.fr,o,q.x,q.fx,q.w,q.ay,q.as,q.at,q.y,q.ax,q.dy,q.Q,q.z)}, -bi(a,b){var s=this -if(s===b)return B.cs -if(s.a!==b.a||s.d!=b.d||s.r!=b.r||s.w!=b.w||s.x!=b.x||s.y!=b.y||s.z!=b.z||s.Q!=b.Q||s.as!=b.as||s.at!=b.at||s.ay!=b.ay||s.ch!=b.ch||!A.d_(s.dy,b.dy)||!A.d_(s.fr,b.fr)||!A.d_(s.fx,b.fx)||!A.d_(s.gjM(),b.gjM())||!1)return B.b4 -if(!J.e(s.b,b.b)||!J.e(s.c,b.c)||!J.e(s.CW,b.CW)||!J.e(s.cx,b.cx)||s.cy!=b.cy||s.db!=b.db)return B.NG -return B.cs}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.Y(b)!==A.u(s))return!1 -return b instanceof A.v&&b.a===s.a&&J.e(b.b,s.b)&&J.e(b.c,s.c)&&b.r==s.r&&b.w==s.w&&b.x==s.x&&b.y==s.y&&b.z==s.z&&b.Q==s.Q&&b.as==s.as&&b.at==s.at&&b.ay==s.ay&&b.ch==s.ch&&A.d_(b.dy,s.dy)&&A.d_(b.fr,s.fr)&&A.d_(b.fx,s.fx)&&J.e(b.CW,s.CW)&&J.e(b.cx,s.cx)&&b.cy==s.cy&&b.db==s.db&&b.d==s.d&&A.d_(b.gjM(),s.gjM())&&b.f==s.f&&!0}, -gA(a){var s,r,q=this,p=null,o=q.gjM(),n=o==null?p:A.cn(o),m=A.T(q.cy,q.db,q.d,n,q.f,q.fy,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a),l=q.dy,k=q.fr,j=q.fx -n=l==null?p:A.cn(l) -s=k==null?p:A.cn(k) -r=j==null?p:A.cn(j) -return A.T(q.a,q.b,q.c,q.r,q.w,q.x,q.y,q.z,q.Q,q.as,q.at,q.ax,q.ay,q.ch,n,s,r,q.CW,q.cx,m)}, -df(){return"TextStyle"}} -A.ape.prototype={ -$1(a){return"packages/"+A.j(this.a.f)+"/"+a}, -$S:31} -A.a0S.prototype={} -A.NS.prototype={ -a5W(a,b,c,d,e){var s=this -s.r=A.aNi(new A.aaK(s),s.gJJ(s),0,10,0)}, -eA(a,b){var s,r,q=this -if(b>q.r)return q.gr2() -s=q.e -r=q.c -return q.d+s*Math.pow(q.b,b)/r-s/r-q.f/2*b*b}, -fk(a,b){var s=this -if(b>s.r)return 0 -return s.e*Math.pow(s.b,b)-s.f*b}, -gr2(){var s=this -if(s.f===0)return s.d-s.e/s.c -return s.eA(0,s.r)}, -a_7(a){var s,r=this,q=r.d -if(a===q)return 0 -s=r.e -if(s!==0)if(s>0)q=ar.gr2() -else q=a>q||a=r.b&&r.c>=r.d -else q=!0 -if(q){n.ff(0) -n=o.bG -o.id=n.a=n.b=new A.Q(A.R(0,r.a,r.b),A.R(0,r.c,r.d)) -o.h7=B.ya -n=o.C$ -if(n!=null)n.he(r) -return}s.bz(r,!0) -switch(o.h7.a){case 0:n=o.bG -s=o.C$ -n.a=n.b=s.gq(s) -o.h7=B.kf -break -case 1:s=o.bG -q=s.b -p=o.C$ -if(!J.e(q,p.gq(p))){s.a=o.gq(o) -q=o.C$ -s.b=q.gq(q) -o.dn=0 -n.kD(0,0) -o.h7=B.ND}else{q=n.x -q===$&&A.c() -if(q===n.b){n=o.C$ -s.a=s.b=n.gq(n)}else{s=n.r -if(!(s!=null&&s.a!=null))n.bW(0)}}break -case 2:s=o.bG -q=s.b -p=o.C$ -if(!J.e(q,p.gq(p))){q=o.C$ -s.a=s.b=q.gq(q) -o.dn=0 -n.kD(0,0) -o.h7=B.NE}else{o.h7=B.kf -s=n.r -if(!(s!=null&&s.a!=null))n.bW(0)}break -case 3:s=o.bG -q=s.b -p=o.C$ -if(!J.e(q,p.gq(p))){q=o.C$ -s.a=s.b=q.gq(q) -o.dn=0 -n.kD(0,0)}else{n.ff(0) -o.h7=B.kf}break}n=o.bG -s=o.cs -s===$&&A.c() -s=n.a7(0,s.gl(s)) -s.toString -o.id=r.aX(s) -o.uO() -if(o.gq(o).a=a.b&&a.c>=a.d -else s=!0 -if(s)return new A.Q(A.R(0,a.a,a.b),A.R(0,a.c,a.d)) -r=p.hQ(a) -switch(q.h7.a){case 0:return a.aX(r) -case 1:if(!J.e(q.bG.b,r))return a.aX(q.gq(q)) -else{p=q.bV -p===$&&A.c() -s=p.x -s===$&&A.c() -if(s===p.b)return a.aX(r)}break -case 3:case 2:if(!J.e(q.bG.b,r))return a.aX(r) -break}p=q.cs -p===$&&A.c() -p=q.bG.a7(0,p.gl(p)) -p.toString -return a.aX(p)}, -ap(a,b){var s,r,q,p=this -if(p.C$!=null){s=p.ci -s===$&&A.c() -s=s&&p.jL!==B.m}else s=!1 -r=p.X1 -if(s){s=p.gq(p) -q=p.cx -q===$&&A.c() -r.saw(0,a.lP(q,b,new A.y(0,0,0+s.a,0+s.b),A.rH.prototype.gfb.call(p),p.jL,r.a))}else{r.saw(0,null) -p.a39(a,b)}}, -n(){this.X1.saw(0,null) -this.h_()}} -A.aiK.prototype={ -$0(){var s=this.a,r=s.bV -r===$&&A.c() -r=r.x -r===$&&A.c() -if(r!==s.dn)s.W()}, -$S:0} -A.wk.prototype={ -Kb(){var s=this,r=s.au$ -r===$&&A.c() -r=r.e -r.toString -r.sls(s.Wc()) -if(s.au$.e.C$!=null)s.a0o()}, -Kk(){}, -Ke(){}, -Wc(){var s,r=$.bi().d.h(0,0),q=r.x -if(q==null){s=self.window.devicePixelRatio -q=s===0?1:s}return new A.Ud(r.giq().eB(0,q),q)}, -aqP(){var s,r=this.aJ$ -if(r!=null){r.ag$=$.aO() -r.aj$=0}r=t.S -s=$.aO() -this.aJ$=new A.PF(new A.ajK(this),new A.ag8(B.bN,A.m(r,t.ZA)),A.m(r,t.xg),s)}, -ad2(){var s=this.au$ -s===$&&A.c() -s=s.e -s.y.ch.E(0,s) -s.y.rE()}, -ad6(a){var s=this.au$ -s===$&&A.c() -s.e.toString -s=$.eF;(s==null?$.eF=A.lZ():s).auS(a)}, -ad4(){var s=this.au$ -s===$&&A.c() -s.e.qp()}, -adE(a){B.Lx.hY("first-frame",null,!1,t.H)}, -ach(a){this.JI() -this.aid()}, -aid(){$.c6.p1$.push(new A.ajJ(this))}, -V4(){--this.b9$ -if(!this.c7$)this.MI()}, -JI(){var s=this,r=s.au$ -r===$&&A.c() -r.Xf() -s.au$.Xe() -s.au$.Xg() -if(s.c7$||s.b9$===0){s.au$.e.an0() -s.au$.Xh() -s.c7$=!0}}, -$iah:1, -$if4:1} -A.ajK.prototype={ -$2(a,b){var s=A.acH(),r=this.a,q=r.au$ -q===$&&A.c() -q.e.c2(s,a) -r.Ey(s,a,b) -return s}, -$S:358} -A.ajJ.prototype={ -$1(a){this.a.aJ$.auM()}, -$S:3} -A.FG.prototype={ -n(){this.a.gur().H(0,this.gcJ()) -this.d3()}} -A.ar.prototype={ -vf(a,b,c,d){var s=this,r=d==null?s.a:d,q=b==null?s.b:b,p=c==null?s.c:c -return new A.ar(r,q,p,a==null?s.d:a)}, -anF(a,b){return this.vf(null,null,a,b)}, -J5(a,b){return this.vf(null,a,null,b)}, -anE(a,b){return this.vf(a,null,b,null)}, -VU(a){return this.vf(a,null,null,null)}, -vc(a){return this.vf(null,a,null,null)}, -Bg(a){var s=this,r=a.gdO(),q=a.gc6(a)+a.gca(a),p=Math.max(0,s.a-r),o=Math.max(0,s.c-q) -return new A.ar(p,Math.max(p,s.b-r),o,Math.max(o,s.d-q))}, -on(a){var s=this,r=a.a,q=a.b,p=a.c,o=a.d -return new A.ar(A.R(s.a,r,q),A.R(s.b,r,q),A.R(s.c,p,o),A.R(s.d,p,o))}, -LP(a,b){var s,r,q=this,p=b==null,o=q.a,n=p?o:A.R(b,o,q.b),m=q.b -p=p?m:A.R(b,o,m) -o=a==null -m=q.c -s=o?m:A.R(a,m,q.d) -r=q.d -return new A.ar(n,p,s,o?r:A.R(a,m,r))}, -xa(a){return this.LP(null,a)}, -Dt(a){return this.LP(a,null)}, -aX(a){var s=this -return new A.Q(A.R(a.a,s.a,s.b),A.R(a.b,s.c,s.d))}, -an3(a){var s,r,q,p,o,n=this,m=n.a,l=n.b -if(m>=l&&n.c>=n.d)return new A.Q(A.R(0,m,l),A.R(0,n.c,n.d)) -s=a.a -r=a.b -q=s/r -if(s>l){r=l/q -s=l}p=n.d -if(r>p){s=p*q -r=p}if(s=s.b&&s.c>=s.d}, -a6(a,b){var s=this -return new A.ar(s.a*b,s.b*b,s.c*b,s.d*b)}, -garn(){var s=this,r=s.a -if(r>=0)if(r<=s.b){r=s.c -r=r>=0&&r<=s.d}else r=!1 -else r=!1 -return r}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.Y(b)!==A.u(s))return!1 -return b instanceof A.ar&&b.a===s.a&&b.b===s.b&&b.c===s.c&&b.d===s.d}, -gA(a){var s=this -return A.T(s.a,s.b,s.c,s.d,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){var s,r=this,q=r.garn()?"":"; NOT NORMALIZED",p=r.a -if(p===1/0&&r.c===1/0)return"BoxConstraints(biggest"+q+")" -if(p===0&&r.b===1/0&&r.c===0&&r.d===1/0)return"BoxConstraints(unconstrained"+q+")" -s=new A.a5a() -return"BoxConstraints("+s.$3(p,r.b,"w")+", "+s.$3(r.c,r.d,"h")+q+")"}} -A.a5a.prototype={ -$3(a,b,c){if(a===b)return c+"="+B.d.ad(a,1) -return B.d.ad(a,1)+"<="+c+"<="+B.d.ad(b,1)}, -$S:359} -A.lM.prototype={ -Iv(a,b,c){if(c!=null){c=A.rd(A.aDU(c)) -if(c==null)return!1}return this.Iw(a,b,c)}, -i4(a,b,c){var s,r=b==null,q=r?c:c.Z(0,b) -r=!r -if(r)this.c.push(new A.yc(new A.k(-b.a,-b.b))) -s=a.$2(this,q) -if(r)this.D7() -return s}, -Iw(a,b,c){var s,r=c==null,q=r?b:A.c5(c,b) -r=!r -if(r)this.c.push(new A.Hn(c)) -s=a.$2(this,q) -if(r)this.D7() -return s}, -V2(a,b,c){var s,r=this -if(b!=null)r.c.push(new A.yc(new A.k(-b.a,-b.b))) -else{c.toString -c=A.rd(A.aDU(c)) -c.toString -r.c.push(new A.Hn(c))}s=a.$1(r) -r.D7() -return s}, -alR(a,b){return this.V2(a,null,b)}, -alQ(a,b){return this.V2(a,b,null)}} -A.pZ.prototype={ -k(a){return"#"+A.aV(this.a)+"@"+this.c.k(0)}} -A.eS.prototype={ -k(a){return"offset="+this.a.k(0)}} -A.A1.prototype={} -A.y_.prototype={ -I(){return"_IntrinsicDimension."+this.b}} -A.H5.prototype={ -j(a,b){if(b==null)return!1 -return b instanceof A.H5&&b.a===this.a&&b.b===this.b}, -gA(a){return A.T(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.A.prototype={ -e7(a){if(!(a.b instanceof A.eS))a.b=new A.eS(B.e)}, -aq(a,b,c){var s=this.fx -if(s==null)s=this.fx=A.m(t.oc,t.i) -return s.bT(0,new A.H5(a,b),new A.aiM(c,b))}, -bf(a){return 0}, -b7(a){return 0}, -b8(a){return 0}, -be(a){return 0}, -hQ(a){var s=this.fy -if(s==null)s=this.fy=A.m(t.k,t.FW) -return s.bT(0,a,new A.aiO(this,a))}, -cg(a){return B.o}, -gq(a){var s=this.id -return s==null?A.U(A.a4("RenderBox was not laid out: "+A.u(this).k(0)+"#"+A.aV(this))):s}, -gnt(){var s=this.gq(this) -return new A.y(0,0,0+s.a,0+s.b)}, -xx(a,b){var s=null -try{s=this.l1(a)}finally{}if(s==null&&!b)return this.gq(this).b -return s}, -no(a){return this.xx(a,!1)}, -l1(a){var s=this.k1 -if(s==null)s=this.k1=A.m(t._0,t.PM) -return s.bT(0,a,new A.aiN(this,a))}, -eS(a){return null}, -ga2(){return t.k.a(A.t.prototype.ga2.call(this))}, -a7V(){var s,r=this,q=r.k1,p=q==null -if(!(!p&&q.a!==0)){s=r.fx -if(!(s!=null&&s.a!==0)){s=r.fy -s=s!=null&&s.a!==0}else s=!0}else s=!0 -if(s){if(!p)q.a0(0) -q=r.fx -if(q!=null)q.a0(0) -q=r.fy -if(q!=null)q.a0(0) -return!0}return!1}, -W(){var s=this -if(s.a7V()&&s.gba(s) instanceof A.t){s.wr() -return}s.a30()}, -bz(a,b){var s,r=this -if(r.id!=null)if(!a.j(0,t.k.a(A.t.prototype.ga2.call(r)))){s=r.k1 -s=s!=null&&s.a!==0}else s=!1 -else s=!1 -if(s){s=r.k1 -if(s!=null)s.a0(0)}r.a3_(a,b)}, -he(a){return this.bz(a,!1)}, -rw(){this.id=this.cg(t.k.a(A.t.prototype.ga2.call(this)))}, -bs(){}, -c2(a,b){var s=this -if(s.id.t(0,b))if(s.co(a,b)||s.j4(b)){a.E(0,new A.pZ(b,s)) -return!0}return!1}, -j4(a){return!1}, -co(a,b){return!1}, -d4(a,b){var s,r=a.b -r.toString -s=t.q.a(r).a -b.aK(0,s.a,s.b)}, -hR(a){var s,r,q,p,o,n=this.bt(0,null) -if(n.h4(n)===0)return B.e -s=new A.bE(new Float64Array(3)) -s.dC(0,0,1) -r=new A.bE(new Float64Array(3)) -r.dC(0,0,0) -q=n.D6(r) -r=new A.bE(new Float64Array(3)) -r.dC(0,0,1) -p=n.D6(r).Z(0,q) -r=new A.bE(new Float64Array(3)) -r.dC(a.a,a.b,0) -o=n.D6(r) -r=o.Z(0,p.l5(s.oi(o)/s.oi(p))).a -return new A.k(r[0],r[1])}, -gkP(){var s=this.gq(this) -return new A.y(0,0,0+s.a,0+s.b)}, -jN(a,b){this.a2Z(a,b)}} -A.aiM.prototype={ -$0(){return this.a.$1(this.b)}, -$S:52} -A.aiO.prototype={ -$0(){return this.a.cg(this.b)}, -$S:360} -A.aiN.prototype={ -$0(){return this.a.eS(this.b)}, -$S:361} -A.cU.prototype={ -Wl(a){var s,r,q,p=this.a3$ -for(s=A.p(this).i("cU.1?");p!=null;){r=s.a(p.b) -q=p.l1(a) -if(q!=null)return q+r.a.b -p=r.ab$}return null}, -Jk(a){var s,r,q,p,o=this.a3$ -for(s=A.p(this).i("cU.1"),r=null;o!=null;){q=o.b -q.toString -s.a(q) -p=o.l1(a) -if(p!=null){p+=q.a.b -r=r!=null?Math.min(r,p):p}o=q.ab$}return r}, -qB(a,b){var s,r,q={},p=q.a=this.d7$ -for(s=A.p(this).i("cU.1");p!=null;p=r){p=p.b -p.toString -s.a(p) -if(a.i4(new A.aiL(q,b,p),p.a,b))return!0 -r=p.cn$ -q.a=r}return!1}, -od(a,b){var s,r,q,p,o,n=this.a3$ -for(s=A.p(this).i("cU.1"),r=b.a,q=b.b;n!=null;){p=n.b -p.toString -s.a(p) -o=p.a -a.dc(n,new A.k(o.a+r,o.b+q)) -n=p.ab$}}} -A.aiL.prototype={ -$2(a,b){return this.a.a.c2(a,b)}, -$S:9} -A.FZ.prototype={ -aa(a){this.tw(0)}} -A.iP.prototype={ -k(a){return this.ts(0)+"; id="+A.j(this.e)}} -A.agf.prototype={ -fU(a,b){var s=this.b.h(0,a) -s.bz(b,!0) -return s.gq(s)}, -hh(a,b){var s=this.b.h(0,a).b -s.toString -t.Wz.a(s).a=b}, -a7q(a,b){var s,r,q,p,o,n,m=this,l=m.b -try{m.b=A.m(t.K,t.x) -for(r=t.Wz,q=b;q!=null;q=n){p=q.b -p.toString -s=r.a(p) -p=m.b -p.toString -o=s.e -o.toString -p.m(0,o,q) -n=s.ab$}m.D5(a)}finally{m.b=l}}, -k(a){return"MultiChildLayoutDelegate"}} -A.D9.prototype={ -e7(a){if(!(a.b instanceof A.iP))a.b=new A.iP(null,null,B.e)}, -siX(a){var s=this,r=s.B -if(r===a)return -if(A.u(a)!==A.u(r)||a.la(r))s.W() -s.B=a -s.y!=null}, -ai(a){this.a4g(a)}, -aa(a){this.a4h(0)}, -bf(a){var s=A.iF(a,1/0),r=s.aX(new A.Q(A.R(1/0,s.a,s.b),A.R(1/0,s.c,s.d))).a -if(isFinite(r))return r -return 0}, -b7(a){var s=A.iF(a,1/0),r=s.aX(new A.Q(A.R(1/0,s.a,s.b),A.R(1/0,s.c,s.d))).a -if(isFinite(r))return r -return 0}, -b8(a){var s=A.iF(1/0,a),r=s.aX(new A.Q(A.R(1/0,s.a,s.b),A.R(1/0,s.c,s.d))).b -if(isFinite(r))return r -return 0}, -be(a){var s=A.iF(1/0,a),r=s.aX(new A.Q(A.R(1/0,s.a,s.b),A.R(1/0,s.c,s.d))).b -if(isFinite(r))return r -return 0}, -cg(a){return a.aX(new A.Q(A.R(1/0,a.a,a.b),A.R(1/0,a.c,a.d)))}, -bs(){var s=this,r=t.k.a(A.t.prototype.ga2.call(s)) -s.id=r.aX(new A.Q(A.R(1/0,r.a,r.b),A.R(1/0,r.c,r.d))) -s.B.a7q(s.gq(s),s.a3$)}, -ap(a,b){this.od(a,b)}, -co(a,b){return this.qB(a,b)}} -A.HP.prototype={ -ai(a){var s,r,q -this.dD(a) -s=this.a3$ -for(r=t.Wz;s!=null;){s.ai(a) -q=s.b -q.toString -s=r.a(q).ab$}}, -aa(a){var s,r,q -this.dE(0) -s=this.a3$ -for(r=t.Wz;s!=null;){s.aa(0) -q=s.b -q.toString -s=r.a(q).ab$}}} -A.ZQ.prototype={} -A.Mt.prototype={ -U(a,b){var s=this.a -return s==null?null:s.U(0,b)}, -H(a,b){var s=this.a -return s==null?null:s.H(0,b)}, -gxJ(){return null}, -Eg(a){return this.eE(a)}, -w2(a){return null}, -k(a){var s=A.aV(this),r=this.a -r=r==null?null:r.k(0) -if(r==null)r="" -return"#"+s+"("+r+")"}} -A.Da.prototype={ -soU(a){var s=this.v -if(s==a)return -this.v=a -this.Pz(a,s)}, -sXm(a){var s=this.V -if(s==a)return -this.V=a -this.Pz(a,s)}, -Pz(a,b){var s=this,r=a==null -if(r)s.av() -else if(b==null||A.u(a)!==A.u(b)||a.eE(b))s.av() -if(s.y!=null){if(b!=null)b.H(0,s.gdR()) -if(!r)a.U(0,s.gdR())}if(r){if(s.y!=null)s.bo()}else if(b==null||A.u(a)!==A.u(b)||a.Eg(b))s.bo()}, -satk(a){if(this.am.j(0,a))return -this.am=a -this.W()}, -bf(a){var s -if(this.C$==null){s=this.am.a -return isFinite(s)?s:0}return this.EG(a)}, -b7(a){var s -if(this.C$==null){s=this.am.a -return isFinite(s)?s:0}return this.EE(a)}, -b8(a){var s -if(this.C$==null){s=this.am.b -return isFinite(s)?s:0}return this.EF(a)}, -be(a){var s -if(this.C$==null){s=this.am.b -return isFinite(s)?s:0}return this.ED(a)}, -ai(a){var s,r=this -r.tB(a) -s=r.v -if(s!=null)s.U(0,r.gdR()) -s=r.V -if(s!=null)s.U(0,r.gdR())}, -aa(a){var s=this,r=s.v -if(r!=null)r.H(0,s.gdR()) -r=s.V -if(r!=null)r.H(0,s.gdR()) -s.nD(0)}, -co(a,b){var s=this.V -if(s!=null){s=s.w2(b) -s=s===!0}else s=!1 -if(s)return!0 -return this.yb(a,b)}, -j4(a){var s=this.v -if(s!=null){s=s.w2(a) -s=s!==!1}else s=!1 -return s}, -bs(){this.pz() -this.bo()}, -v7(a){return a.aX(this.am)}, -RX(a,b,c){A.bg("debugPreviousCanvasSaveCount") -a.cQ(0) -if(!b.j(0,B.e))a.aK(0,b.a,b.b) -c.ap(a,this.gq(this)) -a.cl(0)}, -ap(a,b){var s,r,q=this -if(q.v!=null){s=a.gbU(a) -r=q.v -r.toString -q.RX(s,b,r) -q.T4(a)}q.iC(a,b) -if(q.V!=null){s=a.gbU(a) -r=q.V -r.toString -q.RX(s,b,r) -q.T4(a)}}, -T4(a){}, -eT(a){var s,r=this -r.hp(a) -s=r.v -r.dJ=s==null?null:s.gxJ() -s=r.V -r.eX=s==null?null:s.gxJ() -a.a=!1}, -qk(a,b,c){var s,r,q,p,o=this -o.eb=A.aKs(o.eb,B.o0) -o.fS=A.aKs(o.fS,B.o0) -s=o.eb -r=s!=null&&!s.ga8(s) -s=o.fS -q=s!=null&&!s.ga8(s) -s=A.b([],t.QF) -if(r){p=o.eb -p.toString -B.b.K(s,p)}B.b.K(s,c) -if(q){p=o.fS -p.toString -B.b.K(s,p)}o.NW(a,b,s)}, -qp(){this.EB() -this.fS=this.eb=null}} -A.a6S.prototype={} -A.t6.prototype={ -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.Y(b)!==A.u(s))return!1 -return b instanceof A.t6&&b.a.j(0,s.a)&&b.b==s.b}, -k(a){var s=this -switch(s.b){case B.p:return s.a.k(0)+"-ltr" -case B.a4:return s.a.k(0)+"-rtl" -case null:case void 0:return s.a.k(0)}}, -gA(a){return A.T(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.aqf.prototype={ -gc8(){var s=this -if(!s.f)return!1 -if(s.e.aA.qs()!==s.d)s.f=!1 -return s.f}, -Qu(a){var s,r,q=this,p=q.r,o=p.h(0,a) -if(o!=null)return o -s=new A.k(q.a.a,q.d[a].gko()) -r=new A.aY(s,q.e.aA.eC(s),t.tO) -p.m(0,a,r) -return r}, -gJ(a){return this.c}, -u(){var s,r=this,q=r.b+1 -if(q>=r.d.length)return!1 -s=r.Qu(q);++r.b -r.a=s.a -r.c=s.b -return!0}, -YI(){var s,r=this,q=r.b -if(q<=0)return!1 -s=r.Qu(q-1);--r.b -r.a=s.a -r.c=s.b -return!0}, -asg(a){var s,r=this,q=r.a -if(a>=0){for(s=q.b+a;r.a.bs;)if(!r.YI())break -return!q.j(0,r.a)}} -A.rF.prototype={ -n(){var s,r=this,q=r.B -if(q!=null)q.ch.saw(0,null) -r.B=null -q=r.R -if(q!=null)q.ch.saw(0,null) -r.R=null -r.X0.saw(0,null) -q=r.aY -if(q!=null){q.ag$=$.aO() -q.aj$=0}q=r.b9 -if(q!=null){q.ag$=$.aO() -q.aj$=0}q=r.dH -s=q.ag$=$.aO() -q.aj$=0 -q=r.dA -q.ag$=s -q.aj$=0 -q=r.au -q.ag$=s -q.aj$=0 -q=r.aJ -q.ag$=s -q.aj$=0 -q=r.geQ() -q.ag$=s -q.aj$=0 -r.aA.n() -r.h_()}, -Ua(a){var s,r=this,q=r.ga7n(),p=r.B -if(p==null){s=A.aM6(q) -r.h0(s) -r.B=s}else p.soU(q) -r.a1=a}, -Uf(a){var s,r=this,q=r.ga7o(),p=r.R -if(p==null){s=A.aM6(q) -r.h0(s) -r.R=s}else p.soU(q) -r.ar=a}, -geQ(){var s,r,q=this.az -if(q===$){s=$.ad().b1() -r=$.aO() -this.az!==$&&A.aW() -q=this.az=new A.FP(s,B.e,r)}return q}, -ga7n(){var s=this,r=s.aY -if(r==null){r=A.b([],t.xT) -if(s.V)r.push(s.geQ()) -r=s.aY=new A.xy(r,$.aO())}return r}, -ga7o(){var s=this,r=s.b9 -if(r==null){r=A.b([s.au,s.aJ],t.xT) -if(!s.V)r.push(s.geQ()) -r=s.b9=new A.xy(r,$.aO())}return r}, -sDs(a){return}, -srJ(a){var s=this.aA -if(s.ax===a)return -s.srJ(a) -this.kL()}, -sqF(a,b){if(this.ag===b)return -this.ag=b -this.kL()}, -sasn(a){if(this.aB===a)return -this.aB=a -this.W()}, -sasm(a){return}, -rY(a){var s=this.aA.b.a.a.DV(a) -return A.cq(B.l,s.a,s.b,!1)}, -akT(a){var s,r,q,p,o,n,m=this -if(!m.b6.gc8()){m.dH.sl(0,!1) -m.dA.sl(0,!1) -return}s=m.gq(m) -r=new A.y(0,0,0+s.a,0+s.b) -s=m.aA -q=m.b6 -p=m.op -p===$&&A.c() -o=s.l2(new A.bf(q.a,q.e),p) -m.dH.sl(0,r.cV(0.5).t(0,o.Y(0,a))) -p=m.b6 -n=s.l2(new A.bf(p.b,p.e),m.op) -m.dA.sl(0,r.cV(0.5).t(0,n.Y(0,a)))}, -mm(a,b){var s,r -if(a.gc8()){s=this.aN.a.c.a.a.length -a=a.B2(Math.min(a.c,s),Math.min(a.d,s))}r=this.aN.a.c.a.ia(a) -this.aN.fX(r,b)}, -av(){this.a31() -var s=this.B -if(s!=null)s.av() -s=this.R -if(s!=null)s.av()}, -kL(){this.c0=this.c7=null -this.W()}, -ye(){var s=this -s.NU() -s.aA.W() -s.c0=s.c7=null}, -scW(a,b){var s=this,r=s.aA -if(J.e(r.f,b))return -s.hG=null -r.scW(0,b) -s.JS=s.fm=s.eW=null -s.kL() -s.bo()}, -srH(a,b){var s=this.aA -if(s.w===b)return -s.srH(0,b) -this.kL()}, -sbF(a){var s=this.aA -if(s.x===a)return -s.sbF(a) -this.kL() -this.bo()}, -srk(a,b){var s=this.aA -if(J.e(s.Q,b))return -s.srk(0,b) -this.kL()}, -slb(a){var s=this.aA -if(J.e(s.at,a))return -s.slb(a) -this.kL()}, -sa18(a){var s=this,r=s.c5 -if(r===a)return -if(s.y!=null)r.H(0,s.gzS()) -s.c5=a -if(s.y!=null){s.geQ().sEf(s.c5.a) -s.c5.U(0,s.gzS())}}, -aj7(){this.geQ().sEf(this.c5.a)}, -scj(a){if(this.d8===a)return -this.d8=a -this.bo()}, -sapi(a){if(this.h9===a)return -this.h9=a -this.W()}, -sLv(a,b){if(this.C===b)return -this.C=b -this.bo()}, -srl(a){var s,r=this -if(r.ah==a)return -r.ah=a -s=a===1?1:null -r.aA.srl(s) -r.kL()}, -sasa(a){return}, -sJR(a){return}, -srI(a){var s=this.aA -if(s.y===a)return -s.srI(a) -this.kL()}, -st5(a){var s=this -if(s.b6.j(0,a))return -s.b6=a -s.aJ.sC6(a) -s.av() -s.bo()}, -sct(a,b){var s=this,r=s.dq -if(r===b)return -if(s.y!=null)r.H(0,s.gdR()) -s.dq=b -if(s.y!=null)b.U(0,s.gdR()) -s.W()}, -sanZ(a){if(this.dI===a)return -this.dI=a -this.W()}, -sanY(a){return}, -sat1(a){var s=this -if(s.V===a)return -s.V=a -s.b9=s.aY=null -s.Ua(s.a1) -s.Uf(s.ar)}, -sa1u(a){if(this.am===a)return -this.am=a -this.av()}, -saoy(a){if(this.br===a)return -this.br=a -this.av()}, -saou(a){var s=this -if(s.eb===a)return -s.eb=a -s.kL() -s.bo()}, -geD(){var s=this.eb -return s}, -l0(a){var s,r -this.js() -s=this.aA.l0(a) -r=A.W(s).i("a1<1,es>") -return A.a8(new A.a1(s,new A.aiS(this),r),!0,r.i("am.E"))}, -eT(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d=this -d.hp(a) -s=d.aA -r=s.f -r.toString -q=A.b([],t.O_) -r.AW(q) -d.f9=q -if(B.b.dN(q,new A.aiR())&&A.bA()!==B.c3){a.c=a.a=!0 -return}r=d.eW -if(r==null){p=new A.cf("") -o=A.b([],t.oU) -for(r=d.f9,n=r.length,m=0,l=0,k="";lh){d=c1[h].dy -d=d!=null&&d.t(0,new A.ms(i,b8))}else d=!1 -if(!d)break -b=c1[h] -d=s.b -d.toString -m.a(d) -b6.push(b);++h}b8=s.b -b8.toString -s=n.a(b8).ab$;++i}else{a=b7.l0(new A.hm(j,e,B.l,!1,c,d)) -if(a.length===0)continue -d=B.b.gM(a) -a0=new A.y(d.a,d.b,d.c,d.d) -a1=B.b.gM(a).e -for(d=A.W(a),c=d.i("hk<1>"),a2=new A.hk(a,1,b5,c),a2.tC(a,1,b5,d.c),a2=new A.bz(a2,a2.gp(a2),c.i("bz")),c=c.i("am.E");a2.u();){d=a2.d -if(d==null)d=c.a(d) -a0=a0.jK(new A.y(d.a,d.b,d.c,d.d)) -a1=d.e}d=a0.a -c=Math.max(0,d) -a2=a0.b -a3=Math.max(0,a2) -d=Math.min(a0.c-d,o.a(A.t.prototype.ga2.call(b4)).b) -a2=Math.min(a0.d-a2,o.a(A.t.prototype.ga2.call(b4)).d) -a4=Math.floor(c)-4 -a5=Math.floor(a3)-4 -d=Math.ceil(c+d)+4 -a2=Math.ceil(a3+a2)+4 -a6=new A.y(a4,a5,d,a2) -a7=A.l6() -a8=k+1 -a7.k2=new A.rk(k,b5) -a7.e=!0 -a7.b_=l -a3=f.b -b8=a3==null?b8:a3 -a7.RG=new A.d0(b8,f.f) -a9=f.c -if(a9!=null){b8=a9.bd -if(b8!=null){a7.fD(B.cR,b8) -a7.w=b8 -a7.bc(B.ks,!0)}}b8=b9.r -if(b8!=null){b0=b8.ed(a6) -if(b0.a>=b0.c||b0.b>=b0.d)b8=!(a4>=d||a5>=a2) -else b8=!1 -a7.bc(B.hy,b8)}b1=A.bg("newChild") -b8=b4.dr -d=b8==null?b5:b8.a!==0 -if(d===!0){b8.toString -d=new A.bm(b8,A.p(b8).i("bm<1>")) -b2=d.ga9(d) -if(!b2.u())A.U(A.cd()) -b8=b8.F(0,b2.gJ(b2)) -b8.toString -if(b1.b!==b1)A.U(A.mj(b1.a)) -b1.b=b8}else{b3=new A.mP() -b8=A.DY(b3,b4.a8F(b3)) -if(b1.b!==b1)A.U(A.mj(b1.a)) -b1.b=b8}if(b8===b1)A.U(A.fB(b1.a)) -J.aH7(b8,a7) -if(!b8.e.j(0,a6)){b8.e=a6 -b8.i1()}b8=b1.b -if(b8===b1)A.U(A.fB(b1.a)) -d=b8.a -d.toString -r.m(0,d,b8) -b8=b1.b -if(b8===b1)A.U(A.fB(b1.a)) -b6.push(b8) -k=a8 -l=a1}}b4.dr=r -b9.lV(0,b6,c0)}, -a8F(a){return new A.aiQ(this,a)}, -ad8(a){this.mm(a,B.a8)}, -ac6(a){var s=this,r=s.aA.Mo(s.b6.d) -if(r==null)return -s.mm(A.cq(B.l,!a?r:s.b6.c,r,!1),B.a8)}, -ac2(a){var s=this,r=s.aA.Mp(s.b6.d) -if(r==null)return -s.mm(A.cq(B.l,!a?r:s.b6.c,r,!1),B.a8)}, -ac8(a){var s,r=this,q=r.b6.gdz(),p=r.Qh(r.aA.b.a.a.l4(q).b) -if(p==null)return -s=a?r.b6.c:p.a -r.mm(A.cq(B.l,s,p.a,!1),B.a8)}, -ac4(a){var s,r=this,q=r.b6.gdz(),p=r.Qj(r.aA.b.a.a.l4(q).a-1) -if(p==null)return -s=a?r.b6.c:p.a -r.mm(A.cq(B.l,s,p.a,!1),B.a8)}, -Qh(a){var s,r,q -for(s=this.aA;!0;){r=s.b.a.a.l4(new A.bf(a,B.l)) -q=r.a -if(!(q>=0&&r.b>=0)||q===r.b)return null -if(!this.RP(r))return r -a=r.b}}, -Qj(a){var s,r,q -for(s=this.aA;a>=0;){r=s.b.a.a.l4(new A.bf(a,B.l)) -q=r.a -if(!(q>=0&&r.b>=0)||q===r.b)return null -if(!this.RP(r))return r -a=q-1}return null}, -RP(a){var s,r,q,p -for(s=a.a,r=a.b,q=this.aA;s=m.gkR().length)return A.x3(new A.bf(m.gkR().length,B.aa)) -s=m.b.a.a.l4(a) -switch(a.b.a){case 0:r=n-1 -break -case 1:r=n -break -default:r=null}if(r>0&&A.aLb(m.gkR().charCodeAt(r))){m=s.a -q=o.Qj(m) -switch(A.bA().a){case 2:if(q==null){p=o.Qh(m) -if(p==null)return A.mL(B.l,n) -return A.cq(B.l,n,p.b,!1)}return A.cq(B.l,q.a,n,!1) -case 0:if(o.C){if(q==null)return A.cq(B.l,n,n+1,!1) -return A.cq(B.l,q.a,n,!1)}break -case 1:case 4:case 3:case 5:break}}return A.cq(B.l,s.a,s.b,!1)}, -tV(a,b){var s=this,r=Math.max(0,a-(1+s.dI)),q=Math.min(b,r),p=s.ah!==1?r:1/0,o=s.h9?r:q -s.aA.Cq(p,o) -s.c0=b -s.c7=a}, -PL(){return this.tV(1/0,0)}, -PM(a){return this.tV(a,0)}, -js(){var s=t.k,r=s.a(A.t.prototype.ga2.call(this)) -this.tV(s.a(A.t.prototype.ga2.call(this)).b,r.a)}, -a87(){var s,r,q=this -switch(A.bA().a){case 2:case 4:s=q.dI -r=q.aA.gdd() -q.op=new A.y(0,0,s,0+(r+2)) -break -case 0:case 1:case 3:case 5:s=q.dI -r=q.aA.gdd() -q.op=new A.y(0,2,s,2+(r-4)) -break}}, -a9d(){var s=this.aA.f -s=s==null?null:s.b3(new A.aiP()) -return s!==!1}, -cg(a){var s,r,q,p,o=this,n=o.JS -if(!(n==null?o.JS=o.a9d():n))return B.o -n=o.aA -s=a.b -n.m1(o.oH(s,A.pE())) -r=a.a -o.tV(s,r) -if(o.h9)q=s -else{n=n.b -p=n.b -n=n.a.a -Math.ceil(n.gce(n)) -q=A.R(p+(1+o.dI),r,s)}return new A.Q(q,A.R(o.zu(s),a.c,a.d))}, -bs(){var s,r,q,p,o,n,m=this,l=t.k.a(A.t.prototype.ga2.call(m)),k=l.b,j=m.oH(k,A.tL()) -m.aoT=j -s=m.aA -s.m1(j) -m.js() -j=s.gXV() -j.toString -m.Z5(j) -m.a87() -j=s.b -r=j.b -j=j.a.a -j=Math.ceil(j.gce(j)) -if(m.h9)q=k -else{s=s.b -p=s.b -s=s.a.a -Math.ceil(s.gce(s)) -q=A.R(p+(1+m.dI),l.a,k)}m.id=new A.Q(q,A.R(m.zu(k),l.c,l.d)) -o=new A.Q(r+(1+m.dI),j) -n=A.u0(o) -j=m.B -if(j!=null)j.he(n) -j=m.R -if(j!=null)j.he(n) -m.fS=m.aax(o) -m.dq.qi(m.ga9j()) -m.dq.qf(0,m.fS)}, -MW(a,b,c,d){var s,r,q,p=this -if(a===B.nm){p.kw=B.e -p.JT=null -p.BC=p.BD=p.BE=!1}s=a!==B.jg -p.dJ=s -p.X_=d -if(s){p.eX=c -if(d!=null){s=A.a7T(B.n7,B.z,d) -s.toString -r=s}else r=B.n7 -s=p.geQ() -q=p.op -q===$&&A.c() -s.sXc(r.w3(q).cz(b))}else p.geQ().sXc(null) -p.geQ().w=p.X_==null}, -Ea(a,b,c){return this.MW(a,b,c,null)}, -aeq(a,b){var s,r,q,p,o,n=this.aA.l2(a,B.u) -for(s=b.length,r=n.b,q=0;p=b.length,qr)return new A.aY(J.aGT(o),new A.k(n.a,o.gko()),t.DC)}s=Math.max(0,p-1) -r=p!==0?B.b.gL(b).gko()+B.b.gL(b).gJn():0 -return new A.aY(s,new A.k(n.a,r),t.DC)}, -PN(a,b){var s,r,q=this,p=b.Y(0,q.gf5()),o=q.dJ -if(!o)q.akT(p) -s=q.B -r=q.R -if(r!=null)a.dc(r,b) -q.aA.ap(a.gbU(a),p) -q.YX(a,p) -if(s!=null)a.dc(s,b)}, -d4(a,b){if(a===this.B||a===this.R)return -this.Wk(a,b)}, -ap(a,b){var s,r,q,p,o,n,m=this -m.js() -s=(m.fS>0||!m.gf5().j(0,B.e))&&m.ha!==B.m -r=m.X0 -if(s){s=m.cx -s===$&&A.c() -q=m.gq(m) -r.saw(0,a.lP(s,b,new A.y(0,0,0+q.a,0+q.b),m.ga9i(),m.ha,r.a))}else{r.saw(0,null) -m.PN(a,b)}p=m.b6 -s=p.gc8() -if(s){s=m.DR(p) -o=s[0].a -r=A.R(o.a,0,m.gq(m).a) -q=A.R(o.b,0,m.gq(m).b) -a.nb(A.aDu(m.am,new A.k(r,q).Y(0,b)),A.t.prototype.gfb.call(m),B.e) -if(s.length===2){n=s[1].a -s=A.R(n.a,0,m.gq(m).a) -r=A.R(n.b,0,m.gq(m).b) -a.nb(A.aDu(m.br,new A.k(s,r).Y(0,b)),A.t.prototype.gfb.call(m),B.e)}}}, -lv(a){var s,r=this -switch(r.ha.a){case 0:return null -case 1:case 2:case 3:if(r.fS>0||!r.gf5().j(0,B.e)){s=r.gq(r) -s=new A.y(0,0,0+s.a,0+s.b)}else s=null -return s}}} -A.aiS.prototype={ -$1(a){var s=this.a -return new A.es(a.a+s.gf5().a,a.b+s.gf5().b,a.c+s.gf5().a,a.d+s.gf5().b,a.e)}, -$S:103} -A.aiR.prototype={ -$1(a){return a.c!=null}, -$S:363} -A.aiQ.prototype={ -$0(){var s=this.a,r=s.dr.h(0,this.b) -r.toString -s.nA(s,r.e)}, -$S:0} -A.aiT.prototype={ -$2(a,b){var s=a==null?null:a.jK(new A.y(b.a,b.b,b.c,b.d)) -return s==null?new A.y(b.a,b.b,b.c,b.d):s}, -$S:364} -A.aiP.prototype={ -$1(a){var s,r -if(a instanceof A.k8){s=a.b -$label0$0:{if(B.hh===s||B.hi===s||B.hj===s){r=!1 -break $label0$0}if(B.hk===s||B.hl===s||B.cp===s){r=!0 -break $label0$0}r=null}}else r=!0 -return r}, -$S:67} -A.ZR.prototype={ -gba(a){return t.CA.a(A.t.prototype.gba.call(this,this))}, -geZ(){return!0}, -gka(){return!0}, -soU(a){var s,r=this,q=r.B -if(a===q)return -r.B=a -s=a.eE(q) -if(s)r.av() -if(r.y!=null){s=r.gdR() -q.H(0,s) -a.U(0,s)}}, -ap(a,b){var s=this,r=t.CA.a(A.t.prototype.gba.call(s,s)),q=s.B -if(r!=null){r.js() -q.hK(a.gbU(a),s.gq(s),r)}}, -ai(a){this.dD(a) -this.B.U(0,this.gdR())}, -aa(a){this.B.H(0,this.gdR()) -this.dE(0)}, -cg(a){return new A.Q(A.R(1/0,a.a,a.b),A.R(1/0,a.c,a.d))}} -A.oE.prototype={} -A.IU.prototype={ -sC5(a){if(J.e(a,this.w))return -this.w=a -this.T()}, -sC6(a){if(J.e(a,this.x))return -this.x=a -this.T()}, -sMO(a){if(this.y===a)return -this.y=a -this.T()}, -sMP(a){if(this.z===a)return -this.z=a -this.T()}, -hK(a,b,c){var s,r,q,p,o,n,m,l,k,j=this,i=j.x,h=j.w -if(i==null||h==null||i.a===i.b)return -s=j.r -s.saf(0,h) -r=c.aA -q=r.pa(A.cq(B.l,i.a,i.b,!1),j.y,j.z) -for(p=q.length,o=0;o>>16&255,o>>>8&255,o&255)}if(r||l==null||!i.r)return -r=A.iQ(s,B.dp) -k=i.y -if(k===$){j=$.ad().b1() -i.y!==$&&A.aW() -i.y=j -k=j}k.saf(0,l) -a.cC(r,k)}, -eE(a){var s=this -if(s===a)return!1 -return!(a instanceof A.FP)||a.r!==s.r||a.w!==s.w||!J.e(a.z,s.z)||!J.e(a.Q,s.Q)||!a.as.j(0,s.as)||!J.e(a.at,s.at)||!J.e(a.ax,s.ax)}} -A.xy.prototype={ -U(a,b){var s,r,q -for(s=this.r,r=s.length,q=0;q")) -s=this.r -p=A.W(s) -o=new J.dj(s,s.length,p.i("dj<1>")) -s=p.c -r=r.c -while(!0){if(!(q.u()&&o.u()))break -p=o.d -if(p==null)p=s.a(p) -n=q.d -if(p.eE(n==null?r.a(n):n))return!0}return!1}} -A.HR.prototype={ -ai(a){this.dD(a) -$.io.vK$.a.E(0,this.gzK())}, -aa(a){$.io.vK$.a.F(0,this.gzK()) -this.dE(0)}} -A.HS.prototype={ -ai(a){var s,r,q -this.a4i(a) -s=this.a3$ -for(r=t.ot;s!=null;){s.ai(a) -q=s.b -q.toString -s=r.a(q).ab$}}, -aa(a){var s,r,q -this.a4j(0) -s=this.a3$ -for(r=t.ot;s!=null;){s.aa(0) -q=s.b -q.toString -s=r.a(q).ab$}}} -A.ZS.prototype={} -A.Dc.prototype={ -a63(a){var s,r,q,p,o=this -try{r=o.B -if(r!==""){q=$.aPJ() -s=$.ad().B7(q) -s.rD($.aPK()) -s.uN(r) -r=s.bq() -o.R!==$&&A.cQ() -o.R=r}else{o.R!==$&&A.cQ() -o.R=null}}catch(p){}}, -b7(a){return 1e5}, -be(a){return 1e5}, -gka(){return!0}, -j4(a){return!0}, -cg(a){return a.aX(B.P7)}, -ap(a,b){var s,r,q,p,o,n,m,l,k,j=this -try{p=a.gbU(a) -o=j.gq(j) -n=b.a -m=b.b -l=$.ad().b1() -l.saf(0,$.aPI()) -p.cT(new A.y(n,m,n+o.a,m+o.b),l) -p=j.R -p===$&&A.c() -if(p!=null){s=j.gq(j).a -r=0 -q=0 -if(s>328){s-=128 -r+=64}p.he(new A.mq(s)) -if(j.gq(j).b>96+p.gce(p)+12)q+=96 -a.gbU(a).mE(p,b.Y(0,new A.k(r,q)))}}catch(k){}}} -A.NC.prototype={ -I(){return"FlexFit."+this.b}} -A.hD.prototype={ -k(a){return this.ts(0)+"; flex="+A.j(this.e)+"; fit="+A.j(this.f)}} -A.P8.prototype={ -I(){return"MainAxisSize."+this.b}} -A.r3.prototype={ -I(){return"MainAxisAlignment."+this.b}} -A.q9.prototype={ -I(){return"CrossAxisAlignment."+this.b}} -A.Dd.prototype={ -sarW(a){if(this.R!==a){this.R=a -this.W()}}, -sJe(a){if(this.ar!==a){this.ar=a -this.W()}}, -e7(a){if(!(a.b instanceof A.hD))a.b=new A.hD(null,null,B.e)}, -yS(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h,g=this -if(g.ar===B.fo)return 0 -s=g.B -r=g.a3$ -if(s===c){for(s=t.US,q=0,p=0,o=0;r!=null;){n=r.b -n.toString -m=s.a(n).e -if(m==null)m=0 -q+=m -if(m>0){n=a.$2(r,b) -l=r.b -l.toString -l=s.a(l).e -o=Math.max(o,n/(l==null?0:l))}else p+=a.$2(r,b) -n=r.b -n.toString -r=s.a(n).ab$}return o*q+p}else{for(s=t.US,q=0,p=0,k=0;r!=null;){n=r.b -n.toString -m=s.a(n).e -if(m==null)m=0 -q+=m -j=A.bg("mainSize") -i=A.bg("crossSize") -if(m===0){switch(g.B.a){case 0:n=r.aq(B.a_,1/0,r.gbm()) -if(j.b!==j)A.U(A.mj(j.a)) -j.b=n -n=a.$2(r,n) -if(i.b!==i)A.U(A.mj(i.a)) -i.b=n -break -case 1:n=r.aq(B.aU,1/0,r.gbZ()) -if(j.b!==j)A.U(A.mj(j.a)) -j.b=n -n=a.$2(r,n) -if(i.b!==i)A.U(A.mj(i.a)) -i.b=n -break}n=j.b -if(n===j)A.U(A.fB(j.a)) -p+=n -n=i.b -if(n===i)A.U(A.fB(i.a)) -k=Math.max(k,A.lE(n))}n=r.b -n.toString -r=s.a(n).ab$}h=Math.max(0,(b-p)/q) -r=g.a3$ -for(;r!=null;){n=r.b -n.toString -m=s.a(n).e -if(m==null)m=0 -if(m>0)k=Math.max(k,A.lE(a.$2(r,h*m))) -n=r.b -n.toString -r=s.a(n).ab$}return k}}, -bf(a){return this.yS(new A.aiX(),a,B.aC)}, -b7(a){return this.yS(new A.aiV(),a,B.aC)}, -b8(a){return this.yS(new A.aiW(),a,B.aq)}, -be(a){return this.yS(new A.aiU(),a,B.aq)}, -eS(a){if(this.B===B.aC)return this.Jk(a) -return this.Wl(a)}, -yO(a){switch(this.B.a){case 0:return a.b -case 1:return a.a}}, -yU(a){switch(this.B.a){case 0:return a.a -case 1:return a.b}}, -cg(a){var s -if(this.ar===B.fo)return B.o -s=this.Pi(a,A.pE()) -switch(this.B.a){case 0:return a.aX(new A.Q(s.a,s.b)) -case 1:return a.aX(new A.Q(s.b,s.a))}}, -Pi(a2,a3){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c=this,b=null,a=c.B===B.aC?a2.b:a2.d,a0=a<1/0,a1=c.a3$ -for(s=t.US,r=a2.b,q=a2.d,p=b,o=0,n=0,m=0;a1!=null;){l=a1.b -l.toString -s.a(l) -k=l.e -if(k==null)k=0 -if(k>0){o+=k -p=a1}else{if(c.ar===B.iO)switch(c.B.a){case 0:j=A.eR(q,b) -break -case 1:j=A.eR(b,r) -break -default:j=b}else switch(c.B.a){case 0:j=new A.ar(0,1/0,0,q) -break -case 1:j=new A.ar(0,r,0,1/0) -break -default:j=b}i=a3.$2(a1,j) -m+=c.yU(i) -n=Math.max(n,c.yO(i))}a1=l.ab$}h=Math.max(0,(a0?a:0)-m) -if(o>0){g=a0?h/o:0/0 -a1=c.a3$ -for(f=0;a1!=null;){l=a1.b -l.toString -k=s.a(l).e -if(k==null)k=0 -if(k>0){if(a0)e=a1===p?h-f:g*k -else e=1/0 -d=A.bg("minChildExtent") -l=a1.b -l.toString -l=s.a(l).f -switch((l==null?B.e0:l).a){case 0:if(d.b!==d)A.U(A.mj(d.a)) -d.b=e -break -case 1:if(d.b!==d)A.U(A.mj(d.a)) -d.b=0 -break}if(c.ar===B.iO)switch(c.B.a){case 0:l=d.b -if(l===d)A.U(A.fB(d.a)) -j=new A.ar(l,e,q,q) -break -case 1:l=d.b -if(l===d)A.U(A.fB(d.a)) -j=new A.ar(r,r,l,e) -break -default:j=b}else switch(c.B.a){case 0:l=d.b -if(l===d)A.U(A.fB(d.a)) -j=new A.ar(l,e,0,q) -break -case 1:l=d.b -if(l===d)A.U(A.fB(d.a)) -j=new A.ar(0,r,l,e) -break -default:j=b}i=a3.$2(a1,j) -m+=c.yU(i) -f+=e -n=Math.max(n,c.yO(i))}l=a1.b -l.toString -a1=s.a(l).ab$}}return new A.auQ(a0&&c.a1===B.K?a:m,n,m)}, -bs(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a=this,a0="RenderBox was not laid out: ",a1=t.k.a(A.t.prototype.ga2.call(a)),a2=a.Pi(a1,A.tL()),a3=a2.a,a4=a2.b -if(a.ar===B.fo){s=a.a3$ -for(r=t.US,q=0,p=0,o=0;s!=null;){n=a.au -n.toString -m=s.xx(n,!0) -if(m!=null){q=Math.max(q,m) -p=Math.max(m,p) -n=s.id -o=Math.max((n==null?A.U(A.a4(a0+A.u(s).k(0)+"#"+A.aV(s))):n).b-m,o) -a4=Math.max(p+o,a4)}n=s.b -n.toString -s=r.a(n).ab$}}else q=0 -switch(a.B.a){case 0:a.id=a1.aX(new A.Q(a3,a4)) -a3=a.gq(a).a -a4=a.gq(a).b -break -case 1:a.id=a1.aX(new A.Q(a4,a3)) -a3=a.gq(a).b -a4=a.gq(a).a -break}l=a3-a2.c -a.aY=Math.max(0,-l) -k=Math.max(0,l) -j=A.bg("leadingSpace") -i=A.bg("betweenSpace") -r=A.aNy(a.B,a.az,a.aJ) -h=r===!1 -switch(a.R.a){case 0:j.scM(0) -i.scM(0) -break -case 1:j.scM(k) -i.scM(0) -break -case 2:j.scM(k/2) -i.scM(0) -break -case 3:j.scM(0) -r=a.dG$ -i.scM(r>1?k/(r-1):0) -break -case 4:r=a.dG$ -i.scM(r>0?k/r:0) -j.scM(i.aI()/2) -break -case 5:r=a.dG$ -i.scM(r>0?k/(r+1):0) -j.scM(i.aI()) -break}g=h?a3-j.aI():j.aI() -s=a.a3$ -for(r=t.US,n=a4/2,f=i.a;s!=null;){e=s.b -e.toString -r.a(e) -d=a.ar -switch(d.a){case 0:case 1:if(A.aNy(A.b5F(a.B),a.az,a.aJ)===(d===B.iN))c=0 -else{d=s.id -c=a4-a.yO(d==null?A.U(A.a4(a0+A.u(s).k(0)+"#"+A.aV(s))):d)}break -case 2:d=s.id -c=n-a.yO(d==null?A.U(A.a4(a0+A.u(s).k(0)+"#"+A.aV(s))):d)/2 -break -case 3:c=0 -break -case 4:if(a.B===B.aC){d=a.au -d.toString -m=s.xx(d,!0) -c=m!=null?q-m:0}else c=0 -break -default:c=null}if(h){d=s.id -g-=a.yU(d==null?A.U(A.a4(a0+A.u(s).k(0)+"#"+A.aV(s))):d)}switch(a.B.a){case 0:e.a=new A.k(g,c) -break -case 1:e.a=new A.k(c,g) -break}if(h){d=i.b -if(d===i)A.U(A.fB(f)) -g-=d}else{d=s.id -d=a.yU(d==null?A.U(A.a4(a0+A.u(s).k(0)+"#"+A.aV(s))):d) -b=i.b -if(b===i)A.U(A.fB(f)) -g+=d+b}s=e.ab$}}, -co(a,b){return this.qB(a,b)}, -ap(a,b){var s,r,q,p=this -if(!(p.aY>1e-10)){p.od(a,b) -return}s=p.gq(p) -if(s.ga8(s))return -s=p.c7 -r=p.cx -r===$&&A.c() -q=p.gq(p) -s.saw(0,a.lP(r,b,new A.y(0,0,0+q.a,0+q.b),p.gWm(),p.b9,s.a))}, -n(){this.c7.saw(0,null) -this.a4m()}, -lv(a){var s,r=this -switch(r.b9.a){case 0:return null -case 1:case 2:case 3:if(r.aY>1e-10){s=r.gq(r) -s=new A.y(0,0,0+s.a,0+s.b)}else s=null -return s}}, -df(){return this.a32()}} -A.aiX.prototype={ -$2(a,b){return a.aq(B.V,b,a.gbj())}, -$S:55} -A.aiV.prototype={ -$2(a,b){return a.aq(B.a_,b,a.gbm())}, -$S:55} -A.aiW.prototype={ -$2(a,b){return a.aq(B.ab,b,a.gby())}, -$S:55} -A.aiU.prototype={ -$2(a,b){return a.aq(B.aU,b,a.gbZ())}, -$S:55} -A.auQ.prototype={} -A.ZU.prototype={ -ai(a){var s,r,q -this.dD(a) -s=this.a3$ -for(r=t.US;s!=null;){s.ai(a) -q=s.b -q.toString -s=r.a(q).ab$}}, -aa(a){var s,r,q -this.dE(0) -s=this.a3$ -for(r=t.US;s!=null;){s.aa(0) -q=s.b -q.toString -s=r.a(q).ab$}}} -A.ZV.prototype={} -A.HT.prototype={ -n(){var s,r,q -for(s=this.aoY$,r=s.length,q=0;q>")) -this.hH(new A.KP(s,c.i("KP<0>")),b,!0,c) -return s.length===0?null:B.b.gM(s).a}, -a6C(a){var s,r=this -if(!r.w&&r.x!=null){s=r.x -s.toString -a.UY(s) -return}r.i3(a) -r.w=!1}, -df(){var s=this.a21() -return s+(this.y==null?" DETACHED":"")}} -A.aeF.prototype={ -$0(){this.b.$1(this.a)}, -$S:0} -A.aeG.prototype={ -$0(){var s=this.a -s.a.F(0,this.b) -s.uD(-1)}, -$S:0} -A.OS.prototype={ -saw(a,b){var s=this.a -if(b==s)return -if(s!=null)if(--s.f===0)s.n() -this.a=b -if(b!=null)++b.f}, -k(a){var s=this.a -return"LayerHandle("+(s!=null?s.k(0):"DISPOSED")+")"}} -A.QD.prototype={ -sZ1(a){var s -this.eK() -s=this.ay -if(s!=null)s.n() -this.ay=a}, -n(){this.sZ1(null) -this.NC()}, -i3(a){var s=this.ay -s.toString -a.UV(B.e,s,this.ch,this.CW)}, -hH(a,b,c){return!1}} -A.eW.prototype={ -u0(a){var s -this.a2l(a) -if(!a)return -s=this.ax -for(;s!=null;){s.u0(!0) -s=s.Q}}, -amj(a){var s=this -s.DI() -s.i3(a) -if(s.b>0)s.u0(!0) -s.w=!1 -return a.bq()}, -n(){this.Lz() -this.a.a0(0) -this.NC()}, -DI(){var s,r=this -r.a2o() -s=r.ax -for(;s!=null;){s.DI() -r.w=r.w||s.w -s=s.Q}}, -hH(a,b,c,d){var s,r,q -for(s=this.ay,r=a.a;s!=null;s=s.as){if(s.hH(a,b,!0,d))return!0 -q=r.length -if(q!==0)return!1}return!1}, -ai(a){var s -this.a2m(a) -s=this.ax -for(;s!=null;){s.ai(a) -s=s.Q}}, -aa(a){var s -this.a2n(0) -s=this.ax -for(;s!=null;){s.aa(0) -s=s.Q}this.u0(!1)}, -AF(a,b){var s,r=this -if(!r.gqe())r.eK() -s=b.b -if(s!==0)r.uD(s) -b.r=r -s=r.y -if(s!=null)b.ai(s) -r.kU(b) -s=b.as=r.ay -if(s!=null)s.Q=b -r.ay=b -if(r.ax==null)r.ax=b -b.e.saw(0,b)}, -fp(){var s,r,q=this.ax -for(;q!=null;){s=q.z -r=this.z -if(s<=r){q.z=r+1 -q.fp()}q=q.Q}}, -kU(a){var s=a.z,r=this.z -if(s<=r){a.z=r+1 -a.fp()}}, -Rl(a){var s,r=this -if(!r.gqe())r.eK() -s=a.b -if(s!==0)r.uD(-s) -a.r=null -if(r.y!=null)a.aa(0)}, -Lz(){var s,r=this,q=r.ax -for(;q!=null;q=s){s=q.Q -q.Q=q.as=null -r.Rl(q) -q.e.saw(0,null)}r.ay=r.ax=null}, -i3(a){this.iQ(a)}, -iQ(a){var s=this.ax -for(;s!=null;){s.a6C(a) -s=s.Q}}, -qh(a,b){}} -A.kU.prototype={ -sct(a,b){if(!b.j(0,this.k3))this.eK() -this.k3=b}, -hH(a,b,c,d){return this.nC(a,b.Z(0,this.k3),!0,d)}, -qh(a,b){var s=this.k3 -b.aK(0,s.a,s.b)}, -i3(a){var s=this,r=s.k3 -s.sfO(a.Lq(r.a,r.b,t.Ff.a(s.x))) -s.iQ(a) -a.ex()}} -A.ui.prototype={ -hH(a,b,c,d){if(!this.k3.t(0,b))return!1 -return this.nC(a,b,!0,d)}, -i3(a){var s=this,r=s.k3 -r.toString -s.sfO(a.Zi(r,s.k4,t.GB.a(s.x))) -s.iQ(a) -a.ex()}} -A.ug.prototype={ -hH(a,b,c,d){if(!this.k3.t(0,b))return!1 -return this.nC(a,b,!0,d)}, -i3(a){var s=this,r=s.k3 -r.toString -s.sfO(a.Zh(r,s.k4,t.cW.a(s.x))) -s.iQ(a) -a.ex()}} -A.uf.prototype={ -hH(a,b,c,d){if(!this.k3.t(0,b))return!1 -return this.nC(a,b,!0,d)}, -i3(a){var s=this,r=s.k3 -r.toString -s.sfO(a.Zg(r,s.k4,t.L5.a(s.x))) -s.iQ(a) -a.ex()}} -A.te.prototype={ -sbL(a,b){var s=this -if(b.j(0,s.b_))return -s.b_=b -s.aG=!0 -s.eK()}, -i3(a){var s,r,q=this -q.bn=q.b_ -if(!q.k3.j(0,B.e)){s=q.k3 -s=A.ml(s.a,s.b,0) -r=q.bn -r.toString -s.da(0,r) -q.bn=s}q.sfO(a.wT(q.bn.a,t.qf.a(q.x))) -q.iQ(a) -a.ex()}, -HW(a){var s,r=this -if(r.aG){s=r.b_ -s.toString -r.al=A.rd(A.aDU(s)) -r.aG=!1}s=r.al -if(s==null)return null -return A.c5(s,a)}, -hH(a,b,c,d){var s=this.HW(b) -if(s==null)return!1 -return this.a2F(a,s,!0,d)}, -qh(a,b){var s=this.bn -if(s==null){s=this.b_ -s.toString -b.da(0,s)}else b.da(0,s)}} -A.Cq.prototype={ -sIx(a,b){var s=this,r=s.b_ -if(b!=r){if(b===255||r===255)s.sfO(null) -s.b_=b -s.eK()}}, -i3(a){var s,r,q,p=this -if(p.ax==null){p.sfO(null) -return}s=p.b_ -s.toString -r=p.k3 -q=p.x -if(s<255)p.sfO(a.Zj(s,r,t.Zr.a(q))) -else p.sfO(a.Lq(r.a,r.b,t.Ff.a(q))) -p.iQ(a) -a.ex()}} -A.E2.prototype={ -i3(a){var s,r,q=this,p=q.k3 -p.toString -s=q.k4 -s.toString -r=q.ok -r.toString -q.sfO(a.Zl(p,s,r,t.M9.a(q.x))) -q.iQ(a) -a.ex()}} -A.zs.prototype={ -sBM(a,b){if(!b.j(0,this.k3)){this.k3=b -this.eK()}}, -i3(a){var s=this,r=s.k3 -r.toString -s.sfO(a.Zf(r,s.k4,t.tX.a(s.x))) -s.iQ(a) -a.ex()}} -A.Bx.prototype={ -k(a){var s=A.aV(this),r=this.a!=null?"":"" -return"#"+s+"("+r+")"}} -A.Bz.prototype={ -soI(a){var s=this,r=s.k3 -if(r===a)return -if(s.y!=null){if(r.a===s)r.a=null -a.a=s}s.k3=a}, -sct(a,b){if(b.j(0,this.k4))return -this.k4=b -this.eK()}, -ai(a){this.a1T(a) -this.k3.a=this}, -aa(a){var s=this.k3 -if(s.a===this)s.a=null -this.a1U(0)}, -hH(a,b,c,d){return this.nC(a,b.Z(0,this.k4),!0,d)}, -i3(a){var s,r=this -if(!r.k4.j(0,B.e)){s=r.k4 -r.sfO(a.wT(A.ml(s.a,s.b,0).a,t.qf.a(r.x)))}else r.sfO(null) -r.iQ(a) -if(!r.k4.j(0,B.e))a.ex()}, -qh(a,b){var s -if(!this.k4.j(0,B.e)){s=this.k4 -b.aK(0,s.a,s.b)}}} -A.AV.prototype={ -HW(a){var s,r,q,p,o=this -if(o.R8){s=o.Mm() -s.toString -o.p4=A.rd(s) -o.R8=!1}if(o.p4==null)return null -r=new A.jZ(new Float64Array(4)) -r.xT(a.a,a.b,0,1) -s=o.p4.a7(0,r).a -q=s[0] -p=o.p1 -return new A.k(q-p.a,s[1]-p.b)}, -hH(a,b,c,d){var s -if(this.k3.a==null)return!1 -s=this.HW(b) -if(s==null)return!1 -return this.nC(a,s,!0,d)}, -Mm(){var s,r -if(this.p3==null)return null -s=this.p2 -r=A.ml(-s.a,-s.b,0) -s=this.p3 -s.toString -r.da(0,s) -return r}, -a9u(){var s,r,q,p,o,n,m=this -m.p3=null -s=m.k3.a -if(s==null)return -r=t.KV -q=A.b([s],r) -p=A.b([m],r) -A.aam(s,m,q,p) -o=A.aIL(q) -s.qh(null,o) -r=m.p1 -o.aK(0,r.a,r.b) -n=A.aIL(p) -if(n.h4(n)===0)return -n.da(0,o) -m.p3=n -m.R8=!0}, -gqe(){return!0}, -i3(a){var s,r,q=this -if(q.k3.a==null&&!0){q.p2=q.p3=null -q.R8=!0 -q.sfO(null) -return}q.a9u() -s=q.p3 -r=t.qf -if(s!=null){q.p2=q.ok -q.sfO(a.wT(s.a,r.a(q.x))) -q.iQ(a) -a.ex()}else{q.p2=null -s=q.ok -q.sfO(a.wT(A.ml(s.a,s.b,0).a,r.a(q.x))) -q.iQ(a) -a.ex()}q.R8=!0}, -qh(a,b){var s=this.p3 -if(s!=null)b.da(0,s) -else{s=this.ok -b.da(0,A.ml(s.a,s.b,0))}}} -A.zh.prototype={ -hH(a,b,c,d){var s,r,q,p=this,o=p.nC(a,b,!0,d),n=a.a -if(n.length!==0&&!0)return o -s=p.k4 -if(s!=null){r=p.ok -q=r.a -r=r.b -s=!new A.y(q,r,q+s.a,r+s.b).t(0,b)}else s=!1 -if(s)return o -if(A.cG(p.$ti.c)===A.cG(d)){o=o||!1 -n.push(new A.zi(d.a(p.k3),b.Z(0,p.ok),d.i("zi<0>")))}return o}} -A.XJ.prototype={} -A.kN.prototype={} -A.Di.prototype={ -e7(a){if(!(a.b instanceof A.kN))a.b=new A.kN(null,null,B.e)}, -shx(a){if(this.B===a)return -this.B=a -this.W()}, -cg(a){var s,r,q,p,o,n=this,m=n.a3$ -switch(n.B.a){case 1:case 3:s=a.d -r=A.eR(s,null) -for(q=A.p(n).i("aj.1"),p=0;m!=null;){p+=m.hQ(r).a -o=m.b -o.toString -m=q.a(o).ab$}return a.aX(new A.Q(p,s)) -case 0:case 2:s=a.b -r=A.eR(null,s) -for(q=A.p(n).i("aj.1"),p=0;m!=null;){p+=m.hQ(r).b -o=m.b -o.toString -m=q.a(o).ab$}return a.aX(new A.Q(s,p))}}, -bs(){var s,r,q,p,o,n,m,l=this,k=null,j="RenderBox was not laid out: ",i=t.k.a(A.t.prototype.ga2.call(l)),h=l.a3$ -switch(l.B.a){case 1:s=i.d -r=A.eR(s,k) -for(q=t.U9,p=0;h!=null;){h.bz(r,!0) -o=h.b -o.toString -q.a(o) -o.a=new A.k(p,0) -n=h.id -p+=(n==null?A.U(A.a4(j+A.u(h).k(0)+"#"+A.aV(h))):n).a -h=o.ab$}l.id=i.aX(new A.Q(p,s)) -break -case 3:s=i.d -r=A.eR(s,k) -for(q=t.U9,p=0;h!=null;){h.bz(r,!0) -o=h.b -o.toString -q.a(o) -n=h.id -p+=(n==null?A.U(A.a4(j+A.u(h).k(0)+"#"+A.aV(h))):n).a -h=o.ab$}h=l.a3$ -for(m=0;h!=null;){o=h.b -o.toString -q.a(o) -n=h.id -m+=(n==null?A.U(A.a4(j+A.u(h).k(0)+"#"+A.aV(h))):n).a -o.a=new A.k(p-m,0) -h=o.ab$}l.id=i.aX(new A.Q(p,s)) -break -case 2:s=i.b -r=A.eR(k,s) -for(q=t.U9,p=0;h!=null;){h.bz(r,!0) -o=h.b -o.toString -q.a(o) -o.a=new A.k(0,p) -n=h.id -p+=(n==null?A.U(A.a4(j+A.u(h).k(0)+"#"+A.aV(h))):n).b -h=o.ab$}l.id=i.aX(new A.Q(s,p)) -break -case 0:s=i.b -r=A.eR(k,s) -for(q=t.U9,p=0;h!=null;){h.bz(r,!0) -o=h.b -o.toString -q.a(o) -n=h.id -p+=(n==null?A.U(A.a4(j+A.u(h).k(0)+"#"+A.aV(h))):n).b -h=o.ab$}h=l.a3$ -for(m=0;h!=null;){o=h.b -o.toString -q.a(o) -n=h.id -m+=(n==null?A.U(A.a4(j+A.u(h).k(0)+"#"+A.aV(h))):n).b -o.a=new A.k(0,p-m) -h=o.ab$}l.id=i.aX(new A.Q(s,p)) -break}}, -yQ(a){var s,r,q,p=this.a3$ -for(s=t.U9,r=0;p!=null;){r=Math.max(r,A.lE(a.$1(p))) -q=p.b -q.toString -p=s.a(q).ab$}return r}, -yR(a){var s,r,q,p=this.a3$ -for(s=t.U9,r=0;p!=null;){r+=a.$1(p) -q=p.b -q.toString -p=s.a(q).ab$}return r}, -bf(a){switch(A.bs(this.B).a){case 0:return this.yR(new A.aj8(a)) -case 1:return this.yQ(new A.aj9(a))}}, -b7(a){switch(A.bs(this.B).a){case 0:return this.yR(new A.aj4(a)) -case 1:return this.yQ(new A.aj5(a))}}, -b8(a){switch(A.bs(this.B).a){case 0:return this.yR(new A.aj6(a)) -case 1:return this.yQ(new A.aj7(a))}}, -be(a){switch(A.bs(this.B).a){case 0:return this.yR(new A.aj2(a)) -case 1:return this.yQ(new A.aj3(a))}}, -eS(a){return this.Wl(a)}, -ap(a,b){this.od(a,b)}, -co(a,b){return this.qB(a,b)}} -A.aj8.prototype={ -$1(a){return a.aq(B.V,this.a,a.gbj())}, -$S:14} -A.aj9.prototype={ -$1(a){return a.aq(B.V,this.a,a.gbj())}, -$S:14} -A.aj4.prototype={ -$1(a){return a.aq(B.a_,this.a,a.gbm())}, -$S:14} -A.aj5.prototype={ -$1(a){return a.aq(B.a_,this.a,a.gbm())}, -$S:14} -A.aj6.prototype={ -$1(a){return a.aq(B.ab,this.a,a.gby())}, -$S:14} -A.aj7.prototype={ -$1(a){return a.aq(B.ab,this.a,a.gby())}, -$S:14} -A.aj2.prototype={ -$1(a){return a.aq(B.aU,this.a,a.gbZ())}, -$S:14} -A.aj3.prototype={ -$1(a){return a.aq(B.aU,this.a,a.gbZ())}, -$S:14} -A.ZW.prototype={ -ai(a){var s,r,q -this.dD(a) -s=this.a3$ -for(r=t.U9;s!=null;){s.ai(a) -q=s.b -q.toString -s=r.a(q).ab$}}, -aa(a){var s,r,q -this.dE(0) -s=this.a3$ -for(r=t.U9;s!=null;){s.aa(0) -q=s.b -q.toString -s=r.a(q).ab$}}} -A.ZX.prototype={} -A.Yo.prototype={ -atT(a){var s=this.a -this.a=a -return s}, -k(a){var s="#",r=A.aV(this.b),q=this.a.a -return s+A.aV(this)+"("+("latestEvent: "+(s+r))+", "+("annotations: [list of "+q+"]")+")"}} -A.Yp.prototype={ -giY(a){var s=this.c -return s.giY(s)}} -A.PF.prototype={ -R_(a){var s,r,q,p,o,n,m=t._h,l=A.kM(null,null,m,t.xV) -for(s=a.a,r=s.length,q=0;q") -this.b.app(a.giY(a),a.d,A.iN(new A.bm(s,r),new A.agb(),r.i("q.E"),t.Pb))}, -auT(a,b){var s,r,q,p,o,n=this,m={} -if(a.gcp(a)!==B.b3)return -if(t.ks.b(a))return -m.a=null -if(t.PB.b(a))m.a=A.acH() -else{s=a.grO() -m.a=b==null?n.a.$2(a.gbv(a),s):b}r=a.giY(a) -q=n.c -p=q.h(0,r) -if(!A.aZq(p,a))return -o=q.a -new A.age(m,n,p,a,r).$0() -if(o!==0!==(q.a!==0))n.T()}, -auM(){new A.agc(this).$0()}} -A.agb.prototype={ -$1(a){return a.gWg(a)}, -$S:366} -A.age.prototype={ -$0(){var s=this -new A.agd(s.a,s.b,s.c,s.d,s.e).$0()}, -$S:0} -A.agd.prototype={ -$0(){var s,r,q,p,o,n=this,m=null,l=n.c -if(l==null){s=n.d -if(t.PB.b(s))return -n.b.c.m(0,n.e,new A.Yo(A.kM(m,m,t._h,t.xV),s))}else{s=n.d -if(t.PB.b(s))n.b.c.F(0,s.giY(s))}r=n.b -q=r.c.h(0,n.e) -if(q==null){l.toString -q=l}p=q.b -q.b=s -o=t.PB.b(s)?A.kM(m,m,t._h,t.xV):r.R_(n.a.a) -r.QC(new A.Yp(q.atT(o),o,p,s))}, -$S:0} -A.agc.prototype={ -$0(){var s,r,q,p,o,n,m -for(s=this.a,r=s.c,r=r.gaR(r),q=A.p(r),q=q.i("@<1>").a5(q.z[1]),r=new A.bP(J.as(r.a),r.b,q.i("bP<1,2>")),q=q.z[1];r.u();){p=r.a -if(p==null)p=q.a(p) -o=p.b -n=s.a9M(p) -m=p.a -p.a=n -s.QC(new A.Yp(m,n,o,null))}}, -$S:0} -A.ag9.prototype={ -$2(a,b){var s -if(!this.a.ak(0,a))if(a.gMb()&&a.gL2(a)!=null){s=a.gL2(a) -s.toString -s.$1(this.b.bA(this.c.h(0,a)))}}, -$S:367} -A.aga.prototype={ -$1(a){return!this.a.ak(0,a)}, -$S:368} -A.a28.prototype={} -A.cE.prototype={ -aa(a){}, -k(a){return""}} -A.vM.prototype={ -dc(a,b){var s,r=this -if(a.geZ()){r.y0() -if(!a.cy){s=a.ay -s===$&&A.c() -s=!s}else s=!0 -if(s)A.aJQ(a,null,!0) -else if(a.db)A.aZH(a) -s=a.ch.a -s.toString -t.gY.a(s) -s.sct(0,b) -r.V6(s)}else{s=a.ay -s===$&&A.c() -if(s){a.ch.saw(0,null) -a.Hb(r,b)}else a.Hb(r,b)}}, -V6(a){a.ez(0) -this.a.AF(0,a)}, -gbU(a){var s,r,q=this -if(q.e==null){q.c=A.aZK(q.b) -s=$.ad() -r=s.W8() -q.d=r -q.e=s.W3(r,null) -r=q.c -r.toString -q.a.AF(0,r)}s=q.e -s.toString -return s}, -y0(){var s,r=this -if(r.e==null)return -s=r.c -s.toString -s.sZ1(r.d.vB()) -r.e=r.d=r.c=null}, -N_(){var s=this.c -if(s!=null)if(!s.ch){s.ch=!0 -s.eK()}}, -rC(a,b,c,d){var s,r=this -if(a.ax!=null)a.Lz() -r.y0() -r.V6(a) -s=r.anQ(a,d==null?r.b:d) -b.$2(s,c) -s.y0()}, -nb(a,b,c){return this.rC(a,b,c,null)}, -anQ(a,b){return new A.vM(a,b)}, -lP(a,b,c,d,e,f){var s,r,q=this -if(e===B.m){d.$2(q,b) -return null}s=c.cz(b) -if(a){r=f==null?new A.ui(B.S,A.m(t.S,t.M),A.af(t.kd)):f -if(!s.j(0,r.k3)){r.k3=s -r.eK()}if(e!==r.k4){r.k4=e -r.eK()}q.rC(r,d,b,s) -return r}else{q.amQ(s,e,s,new A.ahf(q,d,b)) -return null}}, -Lp(a,b,c,d,e,f,g){var s,r,q,p=this -if(f===B.m){e.$2(p,b) -return null}s=c.cz(b) -r=d.cz(b) -if(a){q=g==null?new A.ug(B.cA,A.m(t.S,t.M),A.af(t.kd)):g -if(!r.j(0,q.k3)){q.k3=r -q.eK()}if(f!==q.k4){q.k4=f -q.eK()}p.rC(q,e,b,s) -return q}else{p.amO(r,f,s,new A.ahe(p,e,b)) -return null}}, -atq(a,b,c,d,e,f){return this.Lp(a,b,c,d,e,B.cA,f)}, -Lo(a,b,c,d,e,f,g){var s,r,q,p=this -if(f===B.m){e.$2(p,b) -return null}s=c.cz(b) -r=d.cz(b) -if(a){q=g==null?new A.uf(B.cA,A.m(t.S,t.M),A.af(t.kd)):g -if(r!==q.k3){q.k3=r -q.eK()}if(f!==q.k4){q.k4=f -q.eK()}p.rC(q,e,b,s) -return q}else{p.amM(r,f,s,new A.ahd(p,e,b)) -return null}}, -atp(a,b,c,d,e,f){return this.Lo(a,b,c,d,e,B.cA,f)}, -wU(a,b,c,d,e){var s,r=this,q=b.a,p=b.b,o=A.ml(q,p,0) -o.da(0,c) -o.aK(0,-q,-p) -if(a){s=e==null?A.aLn(null):e -s.sbL(0,o) -r.rC(s,d,b,A.aJq(o,r.b)) -return s}else{q=r.gbU(r) -q.cQ(0) -q.a7(0,o.a) -d.$2(r,b) -r.gbU(r).cl(0) -return null}}, -Zk(a,b,c,d){var s=d==null?A.aDN():d -s.sIx(0,b) -s.sct(0,a) -this.nb(s,c,B.e) -return s}, -k(a){return"PaintingContext#"+A.fi(this)+"(layer: "+this.a.k(0)+", canvas bounds: "+this.b.k(0)+")"}} -A.ahf.prototype={ -$0(){return this.b.$2(this.a,this.c)}, -$S:0} -A.ahe.prototype={ -$0(){return this.b.$2(this.a,this.c)}, -$S:0} -A.ahd.prototype={ -$0(){return this.b.$2(this.a,this.c)}, -$S:0} -A.a6u.prototype={} -A.CM.prototype={ -rE(){var s=this.cx -if(s!=null)s.a.JO()}, -sau7(a){var s=this.e -if(s===a)return -if(s!=null)s.aa(0) -this.e=a -a.ai(this)}, -Xf(){var s,r,q,p,o,n,m,l,k,j,i,h=this -try{for(o=t.TT;n=h.r,n.length!==0;){s=n -h.r=A.b([],o) -n=s -m=new A.ahB() -if(!!n.immutable$list)A.U(A.V("sort")) -l=n.length-1 -if(l-0<=32)A.t1(n,0,l,m) -else A.t0(n,0,l,m) -for(r=0;r")) -i.tC(m,l,k,j.c) -B.b.K(n,i) -break}}q=J.aN(s,r) -if(q.z&&q.y===h)q.aen()}h.f=!1}for(o=h.CW,o=A.db(o,o.r,A.p(o).c),n=o.$ti.c;o.u();){m=o.d -p=m==null?n.a(m):m -p.Xf()}}finally{h.f=!1}}, -a9p(a){try{a.$0()}finally{this.f=!0}}, -Xe(){var s,r,q,p,o=this.z -B.b.dX(o,new A.ahA()) -for(s=o.length,r=0;r0){if(s.at==null){r=t.bu -s.at=new A.DZ(s.c,A.aE(r),A.m(t.S,r),A.aE(r),$.aO()) -s.b.$0()}}else{r=s.at -if(r!=null){r.n() -s.at=null -s.d.$0()}}}, -Xh(){var s,r,q,p,o,n,m,l,k=this -if(k.at==null)return -try{p=k.ch -o=A.a8(p,!0,A.p(p).c) -B.b.dX(o,new A.ahD()) -s=o -p.a0(0) -for(p=s,n=p.length,m=0;m0;n=m){m=n-1 -r[n].d4(r[m],o)}return o}, -lv(a){return null}, -Jo(a){return null}, -eT(a){}, -xL(a){var s,r=this -if(r.y.at==null)return -s=r.fr -if(s!=null&&!s.y)s.a0A(a) -else if(r.gba(r)!=null)r.gba(r).xL(a)}, -gzN(){var s,r=this -if(r.dx==null){s=A.l6() -r.dx=s -r.eT(s)}s=r.dx -s.toString -return s}, -qp(){this.dy=!0 -this.fr=null -this.b3(new A.ajh())}, -bo(){var s,r,q,p,o=this,n=o.y -if(n==null||n.at==null){o.dx=null -return}if(o.fr!=null){n=o.dx -n=n==null?null:n.a -s=n===!0}else s=!1 -n=o.dx -r=(n==null?null:n.k1)!=null||o.gzN().k1!=null -o.dx=null -q=o.gzN().a&&s -p=o -while(!0){if(p.gba(p) instanceof A.t)n=r||!q -else n=!1 -if(!n)break -if(p!==o&&p.dy)break -p.dy=!0 -if(q)r=!1 -p=p.gba(p) -if(p.dx==null){n=A.l6() -p.dx=n -p.eT(n)}q=p.dx.a -if(q&&p.fr==null)return}if(p!==o&&o.fr!=null&&o.dy)o.y.ch.F(0,o) -if(!p.dy){p.dy=!0 -n=o.y -if(n!=null){n.ch.E(0,p) -o.y.rE()}}}, -akV(){var s,r,q,p,o,n,m,l=this,k=null -if(l.z)return -s=l.fr -r=s==null -if(r)q=k -else{q=s.ch -if(q==null)q=k -else q=q.Q||q.y}s=r?k:s.z -p=t.pp.a(l.Qp(s===!0,q===!0)) -s=t.QF -o=A.b([],s) -n=A.b([],s) -s=l.fr -r=s==null -q=r?k:s.f -m=r?k:s.r -s=r?k:s.w -p.qr(s==null?0:s,m,q,o,n)}, -Qp(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=this,d={},c=e.gzN() -d.a=c.d -d.b=!c.e&&!c.a -s=a||c.b -r=b||c.p4 -q=A.b([],t.q1) -p=c.c||!(e.gba(e) instanceof A.t) -o=c.k1!=null -n=t.pp -m=A.m(t.ZX,n) -l=t.CZ -k=A.b([],l) -j=A.b([],t.i1) -i=c.bS -i=i==null?null:i.a!==0 -e.fu(new A.ajc(d,e,r,s,q,k,j,c,i===!0,o,m)) -if(p)for(n=k.length,h=0;h"))) -for(i=g.b,f=i.length,h=0;h#"+A.aV(this)}, -k(a){return this.df()}, -eO(a,b,c,d){var s,r=this -if(r.gba(r) instanceof A.t){s=r.gba(r) -s.toString -s.eO(a,b==null?r:b,c,d)}}, -tg(){return this.eO(B.aD,null,B.q,null)}, -nz(a){return this.eO(B.aD,null,B.q,a)}, -pm(a,b,c){return this.eO(a,null,b,c)}, -nA(a,b){return this.eO(B.aD,a,B.q,b)}, -$iah:1} -A.ajf.prototype={ -$0(){var s=A.b([],t.E),r=this.a -s.push(A.aCN("The following RenderObject was being processed when the exception was fired",B.EL,r)) -s.push(A.aCN("RenderObject",B.EM,r)) -return s}, -$S:25} -A.aji.prototype={ -$0(){this.b.$1(this.c.a(this.a.ga2()))}, -$S:0} -A.ajg.prototype={ -$1(a){var s -a.U4() -s=a.cx -s===$&&A.c() -if(s)this.a.cx=!0}, -$S:13} -A.ajh.prototype={ -$1(a){a.qp()}, -$S:13} -A.ajc.prototype={ -$1(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f=this,e=a.Qp(f.d,f.c) -if(e.a){B.b.a0(f.e) -B.b.a0(f.f) -B.b.a0(f.r) -if(!f.w.a)f.a.a=!0}for(s=e.gYF(),r=s.length,q=f.f,p=f.y,o=f.x,n=f.b,m=f.w,l=f.e,k=f.z,j=0;j1){b=new A.a_F() -b.Pj(a3,a4,c)}else b=a2 -c=b.c -c===$&&A.c() -a=b.d -a===$&&A.c() -a0=A.fD(c,a) -e=e==null?a0:e.jK(a0) -c=b.b -if(c!=null){a1=A.fD(b.c,c) -f=f==null?a1:f.ed(a1)}c=b.a -if(c!=null){a1=A.fD(b.c,c) -g=g==null?a1:g.ed(a1)}d=d.c -if(d!=null)l.K(0,d)}}if(h!=null)j=!(e.a>=e.c||e.b>=e.d) -else j=!1 -if(j){if(i==null||a6.t(0,i.b))i=A.DY(a2,B.b.gM(o).gpl()) -a6.E(0,i.b) -i.dy=l -if(!i.e.j(0,e)){i.e=e -i.i1()}if(!A.aDC(i.d,a2)){i.d=null -i.i1()}i.f=f -i.r=g -for(k=k.ga9(m);k.u();){j=k.gJ(k) -if(j.gi9()!=null)B.b.gM(j.b).fr=i}i.a_u(0,h) -a5.push(i)}}}, -qr(a,b,a0,a1,a2){var s,r,q,p,o,n,m,l,k,j,i,h,g,f=this,e=null,d=A.aE(t.S),c=f.y -for(s=f.x,r=s.length,q=0;q");s.u();){n=s.gJ(s) -if(n instanceof A.tF){if(n.z){m=n.b -m=B.b.gM(m).fr!=null&&d.t(0,B.b.gM(m).fr.b)}else m=!1 -if(m)B.b.gM(n.b).fr=null}m=n.b -l=new A.hk(r,1,e,p) -l.tC(r,1,e,o) -B.b.K(m,l) -n.qr(a+f.f.y1,b,a0,a1,a2)}return}k=f.a8e(b,a0) -s=f.e -r=!s -if(r){if(k==null)p=e -else{p=k.d -p===$&&A.c() -if(!p.ga8(p)){p=k.c -p===$&&A.c() -p=p.Yq()}else p=!0}p=p===!0}else p=!1 -if(p)return -p=f.b -o=B.b.gM(p) -if(o.fr==null)o.fr=A.DY(e,B.b.gM(p).gpl()) -j=B.b.gM(p).fr -j.sKz(s) -j.dy=f.c -j.w=a -if(a!==0){f.yG() -s=f.f -s.sjH(0,s.y1+a)}if(k!=null){s=k.d -s===$&&A.c() -j.sbl(0,s) -s=k.c -s===$&&A.c() -j.sbL(0,s) -j.f=k.b -j.r=k.a -if(r&&k.e){f.yG() -f.f.bc(B.hy,!0)}}s=t.QF -i=A.b([],s) -f.RB(j.f,j.r,a2,d) -for(r=J.as(c);r.u();){o=r.gJ(r) -if(o instanceof A.tF){if(o.z){n=o.b -n=B.b.gM(n).fr!=null&&d.t(0,B.b.gM(n).fr.b)}else n=!1 -if(n)B.b.gM(o.b).fr=null}h=A.b([],s) -n=j.f -o.qr(0,j.r,n,i,h) -B.b.K(a2,h)}s=f.f -if(s.a)B.b.gM(p).qk(j,f.f,i) -else j.lV(0,i,s) -a1.push(j) -for(s=a2.length,r=t.g3,q=0;q1){s=new A.a_F() -s.Pj(b,a,r) -r=s}else r=null -return r}, -gi9(){return this.z?null:this.f}, -K(a,b){var s,r,q,p,o,n,m=this -for(s=b.length,r=m.y,q=0;q0;){r=c[s];--s -q=c[s] -a=r.Jo(q) -if(a!=null){m.b=a -m.a=A.aMa(m.a,r.lv(q))}else m.b=A.aMa(m.b,r.lv(q)) -l=$.aQs() -l.e6() -A.b25(r,q,m.c,l) -m.b=A.aMb(m.b,l) -m.a=A.aMb(m.a,l)}p=B.b.gM(c) -l=m.b -l=l==null?p.gnt():l.ed(p.gnt()) -m.d=l -o=m.a -if(o!=null){n=o.ed(l) -if(n.ga8(n)){l=m.d -l=!l.ga8(l)}else l=!1 -m.e=l -if(!l)m.d=n}}} -A.a_0.prototype={} -A.ms.prototype={ -j(a,b){if(b==null)return!1 -return b instanceof A.ms&&b.b===this.b}, -gA(a){return A.T(B.UY,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.j0.prototype={ -aa(a){this.a=this.b=null -this.a4Y(0)}, -k(a){var s=A.j(this.b),r=this.a -r=r==null?"not laid out":"offset: "+r.k(0) -return"widget: "+s+", "+r}} -A.Rt.prototype={ -e7(a){if(!(a.b instanceof A.j0))a.b=new A.j0(null,null)}, -oH(a,b){var s,r=A.b([],t.UY),q=this.a3$,p=A.p(this).i("aj.1") -while(q!=null){r.push(A.b_p(q,a,b)) -s=q.b -s.toString -q=p.a(s).ab$}return r}, -Z5(a){var s,r,q,p,o,n,m=this.a3$ -for(s=a.length,r=t.ot,q=A.p(this).i("aj.1"),p=0;ph){d=c1[h].dy -d=d!=null&&d.t(0,new A.ms(i,b8))}else d=!1 -if(!d)break -b=c1[h] -d=s.b -d.toString -if(m.a(d).a!=null)b6.push(b);++h}b8=s.b -b8.toString -s=n.a(b8).ab$;++i}else{a=o.a(A.t.prototype.ga2.call(b4)) -b7.m1(b4.aj) -a0=a.b -a0=b4.aJ||b4.au===B.aZ?a0:1/0 -b7.Cq(a0,a.a) -a1=b7.pa(new A.hm(j,e,B.l,!1,c,d),B.d0,B.c9) -if(a1.length===0)continue -d=B.b.gM(a1) -a2=new A.y(d.a,d.b,d.c,d.d) -a3=B.b.gM(a1).e -for(d=A.W(a1),c=d.i("hk<1>"),a=new A.hk(a1,1,b5,c),a.tC(a1,1,b5,d.c),a=new A.bz(a,a.gp(a),c.i("bz")),c=c.i("am.E");a.u();){d=a.d -if(d==null)d=c.a(d) -a2=a2.jK(new A.y(d.a,d.b,d.c,d.d)) -a3=d.e}d=a2.a -c=Math.max(0,d) -a=a2.b -a0=Math.max(0,a) -d=Math.min(a2.c-d,o.a(A.t.prototype.ga2.call(b4)).b) -a=Math.min(a2.d-a,o.a(A.t.prototype.ga2.call(b4)).d) -a4=Math.floor(c)-4 -a5=Math.floor(a0)-4 -d=Math.ceil(c+d)+4 -a=Math.ceil(a0+a)+4 -a6=new A.y(a4,a5,d,a) -a7=A.l6() -a8=k+1 -a7.k2=new A.rk(k,b5) -a7.e=!0 -a7.b_=l -a0=f.b -b8=a0==null?b8:a0 -a7.RG=new A.d0(b8,f.f) -a9=f.c -if(a9!=null){b8=a9.bd -if(b8!=null){a7.fD(B.cR,b8) -a7.w=b8 -a7.bc(B.ks,!0)}}b8=b9.r -if(b8!=null){b0=b8.ed(a6) -if(b0.a>=b0.c||b0.b>=b0.d)b8=!(a4>=d||a5>=a) -else b8=!1 -a7.bc(B.hy,b8)}b1=A.bg("newChild") -b8=b4.aB -d=b8==null?b5:b8.a!==0 -if(d===!0){b8.toString -d=new A.bm(b8,A.p(b8).i("bm<1>")) -b2=d.ga9(d) -if(!b2.u())A.U(A.cd()) -b8=b8.F(0,b2.gJ(b2)) -b8.toString -if(b1.b!==b1)A.U(A.mj(b1.a)) -b1.b=b8}else{b3=new A.mP() -b8=A.DY(b3,b4.ago(b3)) -if(b1.b!==b1)A.U(A.mj(b1.a)) -b1.b=b8}if(b8===b1)A.U(A.fB(b1.a)) -J.aH7(b8,a7) -if(!b8.e.j(0,a6)){b8.e=a6 -b8.i1()}b8=b1.b -if(b8===b1)A.U(A.fB(b1.a)) -d=b8.a -d.toString -r.m(0,d,b8) -b8=b1.b -if(b8===b1)A.U(A.fB(b1.a)) -b6.push(b8) -k=a8 -l=a3}}b4.aB=r -b9.lV(0,b6,c0)}, -ago(a){return new A.ajk(this,a)}, -qp(){this.EB() -this.aB=null}} -A.ajn.prototype={ -$1(a){return a.x=null}, -$S:373} -A.ajo.prototype={ -$1(a){var s=a.w -s===$&&A.c() -return s.c!==B.ds}, -$S:374} -A.ajm.prototype={ -$2(a,b){return new A.Q(a.aq(B.V,1/0,a.gbj()),0)}, -$S:74} -A.ajl.prototype={ -$2(a,b){return new A.Q(a.aq(B.a_,1/0,a.gbm()),0)}, -$S:74} -A.ajj.prototype={ -$1(a){var s,r -if(a instanceof A.k8){s=a.b -$label0$0:{if(B.hh===s||B.hi===s||B.hj===s){r=!1 -break $label0$0}if(B.hk===s||B.hl===s||B.cp===s){r=!0 -break $label0$0}r=null}}else r=!0 -return r}, -$S:67} -A.ajk.prototype={ -$0(){var s=this.a,r=s.aB.h(0,this.b) -r.toString -s.nA(s,r.e)}, -$S:0} -A.mZ.prototype={ -gl(a){var s=this.w -s===$&&A.c() -return s}, -agp(){var s=this,r=s.Qo(),q=s.w -q===$&&A.c() -if(q.j(0,r))return -s.w=r -s.T()}, -Qo(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c=this,b=c.d -if(b==null||c.e==null)return B.yk -s=b.a -r=c.e.a -b=c.b -q=b.yW(new A.bf(s,B.l)) -p=s===r?q:b.yW(new A.bf(r,B.l)) -o=b.B -n=o.x -n.toString -m=s>r!==(B.a4===n) -l=A.ml(c.gjt().a,c.gjt().b,0) -l.h4(l) -k=A.cq(B.l,s,r,!1) -j=A.b([],t.AO) -for(b=b.l0(k),n=b.length,i=0;ir&&s.b>r)return B.b5}p=A.bg("start") -o=A.bg("end") -r=l.a -q=s.b -if(r>q)p.b=o.b=new A.bf(r,B.l) -else{p.b=new A.bf(m,B.l) -o.b=new A.bf(q,B.aa)}n.d=p.aI() -n.e=o.aI() -return B.aK}, -abd(a,b,c){var s,r,q,p,o,n,m,l=this,k=l.b,j=k.bt(0,null) -if(j.h4(j)===0)switch(c){case B.hv:case B.eE:return B.b6 -case B.hw:case B.eD:return B.b5}s=A.c5(j,new A.k(a,0)).a -switch(c){case B.hv:case B.hw:if(b){k=l.e -k.toString -r=k}else{k=l.d -k.toString -r=k}q=l.adC(r,!1,s) -p=q.a -o=q.b -break -case B.eD:case B.eE:n=l.e -if(n==null){n=new A.bf(l.a.b,B.aa) -l.e=n -r=n}else r=n -n=l.d -if(n==null){l.d=r -m=r}else m=n -p=k.eC(new A.k(s,k.yW(b?r:m).b-k.B.gdd()/2)) -o=B.aK -break -default:p=null -o=null}if(b)l.e=p -else l.d=p -return o}, -abI(a,b,c){var s,r,q,p,o,n,m=this,l=m.e -if(l==null){l=m.a -l=a?new A.bf(l.a,B.l):new A.bf(l.b,B.aa) -m.e=l -s=l}else s=l -l=m.d -if(l==null){m.d=s -r=s}else r=l -s=b?s:r -if(a&&s.a===m.a.b)return B.b5 -l=!a -if(l&&s.a===m.a.a)return B.b6 -switch(c){case B.Qg:l=m.a -q=m.GY(s,a,new A.u6(B.c.S(m.c,l.a,l.b))) -p=B.aK -break -case B.Qh:l=m.b.B -o=l.f -o.toString -q=m.GY(s,a,new A.xo(o,l.b.a.a).gYH()) -p=B.aK -break -case B.Qi:q=m.af5(s,a,new A.vn(m)) -p=B.aK -break -case B.Qj:o=m.a -n=o.a -o=o.b -q=m.GY(s,a,new A.Ak(B.c.S(m.c,n,o))) -if(a&&q.a===o)p=B.b5 -else p=l&&q.a===n?B.b6:B.aK -break -default:p=null -q=null}if(b)m.e=q -else m.d=q -return p}, -GY(a,b,c){var s,r=a.a -if(b){r=c.fz(r) -s=r==null?this.a.b:r}else{r=c.fw(r-1) -s=r==null?this.a.a:r}return new A.bf(s,B.l)}, -af5(a,b,c){var s,r,q,p,o=this -switch(a.b.a){case 0:s=a.a -if(s<1&&!b)return B.eQ -r=o.a.a -s=new A.u6(o.c).fw(r+s) -if(s==null)s=r -q=Math.max(0,s)-1 -break -case 1:q=a.a -break -default:q=null}if(b){s=c.fz(q) -p=s==null?o.a.b:s}else{s=c.fw(q) -p=s==null?o.a.a:s}return new A.bf(p,B.l)}, -adC(a,b,c){var s,r,q,p,o,n=this,m=n.b,l=m.B.qs(),k=m.l2(a,B.u),j=l.length,i=j-1 -for(s=k.b,r=0;rs){i=J.aGT(q) -break}}if(b&&i===l.length-1)p=new A.bf(n.a.b,B.aa) -else if(!b&&i===0)p=new A.bf(n.a.a,B.l) -else p=n.P_(m.eC(new A.k(c,l[b?i+1:i-1].gko()))) -m=p.a -j=n.a -if(m===j.a)o=B.b6 -else o=m===j.b?B.b5:B.aK -return new A.aY(p,o,t.UH)}, -ah5(a){var s,r,q,p,o=this -if(o.d==null||o.e==null)return!1 -s=A.bg("currentStart") -r=A.bg("currentEnd") -q=o.d -q.toString -p=o.e -p.toString -if(A.aEF(q,p)>0){s.b=q -r.b=p}else{s.b=p -r.b=q}return A.aEF(s.aI(),a)>=0&&A.aEF(r.aI(),a)<=0}, -bt(a,b){var s=A.ml(this.gjt().a,this.gjt().b,0) -s.da(0,this.b.bt(0,b)) -return s}, -kS(a,b){if(this.b.y==null)return}, -gjt(){var s,r,q,p,o,n,m=this,l=m.x -if(l==null){l=m.b -s=m.a -r=s.a -q=l.l0(A.cq(B.l,r,s.b,!1)) -if(q.length!==0){l=B.b.gM(q) -p=new A.y(l.a,l.b,l.c,l.d) -for(o=1;o=q)return r.a -s=this.EG(a) -r=this.v -q=r.a -if(!(q>=1/0))return A.R(s,q,r.b) -return s}, -b7(a){var s,r=this.v,q=r.b -if(q<1/0&&r.a>=q)return r.a -s=this.EE(a) -r=this.v -q=r.a -if(!(q>=1/0))return A.R(s,q,r.b) -return s}, -b8(a){var s,r=this.v,q=r.d -if(q<1/0&&r.c>=q)return r.c -s=this.EF(a) -r=this.v -q=r.c -if(!(q>=1/0))return A.R(s,q,r.d) -return s}, -be(a){var s,r=this.v,q=r.d -if(q<1/0&&r.c>=q)return r.c -s=this.ED(a) -r=this.v -q=r.c -if(!(q>=1/0))return A.R(s,q,r.d) -return s}, -bs(){var s=this,r=t.k.a(A.t.prototype.ga2.call(s)),q=s.C$,p=s.v -if(q!=null){q.bz(p.on(r),!0) -q=s.C$ -s.id=q.gq(q)}else s.id=p.on(r).aX(B.o)}, -cg(a){var s=this.C$,r=this.v -if(s!=null)return s.hQ(r.on(a)) -else return r.on(a).aX(B.o)}} -A.Rv.prototype={ -sKR(a,b){if(this.v===b)return -this.v=b -this.W()}, -sKP(a,b){if(this.V===b)return -this.V=b -this.W()}, -Ro(a){var s,r,q=a.a,p=a.b -p=p<1/0?p:A.R(this.v,q,p) -s=a.c -r=a.d -return new A.ar(q,p,s,r<1/0?r:A.R(this.V,s,r))}, -tO(a,b){var s=this.C$ -if(s!=null)return a.aX(b.$2(s,this.Ro(a))) -return this.Ro(a).aX(B.o)}, -cg(a){return this.tO(a,A.pE())}, -bs(){this.id=this.tO(t.k.a(A.t.prototype.ga2.call(this)),A.tL())}} -A.Dh.prototype={ -sa1x(a){if(a==this.v)return -this.v=a -this.W()}, -sa1w(a){return}, -bf(a){return this.b7(a)}, -b7(a){var s=this.C$ -if(s==null)return 0 -return A.aj1(s.aq(B.a_,a,s.gbm()),this.v)}, -b8(a){var s,r=this -if(r.C$==null)return 0 -if(!isFinite(a))a=r.b7(1/0) -s=r.C$ -return A.aj1(s.aq(B.ab,a,s.gby()),r.V)}, -be(a){var s,r=this -if(r.C$==null)return 0 -if(!isFinite(a))a=r.b7(1/0) -s=r.C$ -return A.aj1(s.aq(B.aU,a,s.gbZ()),r.V)}, -tO(a,b){var s=this.C$ -if(s!=null){if(!(a.a>=a.b))a=a.xa(A.aj1(s.aq(B.a_,a.d,s.gbm()),this.v)) -s=this.C$ -s.toString -return b.$2(s,a)}else return new A.Q(A.R(0,a.a,a.b),A.R(0,a.c,a.d))}, -cg(a){return this.tO(a,A.pE())}, -bs(){this.id=this.tO(t.k.a(A.t.prototype.ga2.call(this)),A.tL())}} -A.Rx.prototype={ -gkn(){return this.C$!=null&&this.v>0}, -geZ(){return this.C$!=null&&this.v>0}, -soR(a,b){var s,r,q,p,o=this -if(o.V===b)return -s=o.C$!=null -r=s&&o.v>0 -q=o.v -o.V=b -p=B.d.bE(A.a3d(b,0,1)*255) -o.v=p -if(r!==(s&&p>0))o.n2() -o.Yz() -if(q!==0!==(o.v!==0)&&!0)o.bo()}, -sAC(a){return}, -oV(a){return this.v>0}, -rN(a){var s=a==null?A.aDN():a -s.sIx(0,this.v) -return s}, -ap(a,b){if(this.C$==null||this.v===0)return -this.iC(a,b)}, -fu(a){var s,r=this.C$ -if(r!=null)s=this.v!==0||!1 -else s=!1 -if(s){r.toString -a.$1(r)}}} -A.D7.prototype={ -geZ(){if(this.C$!=null){var s=this.K_$ -s.toString}else s=!1 -return s}, -rN(a){var s=a==null?A.aDN():a -s.sIx(0,this.qU$) -return s}, -soR(a,b){var s=this,r=s.qV$ -if(r===b)return -if(s.y!=null&&r!=null)r.H(0,s.gAa()) -s.qV$=b -if(s.y!=null)b.U(0,s.gAa()) -s.I4()}, -sAC(a){if(!1===this.K0$)return -this.K0$=!1 -this.bo()}, -I4(){var s,r=this,q=r.qU$,p=r.qV$ -p=r.qU$=B.d.bE(A.a3d(p.gl(p),0,1)*255) -if(q!==p){s=r.K_$ -p=p>0 -r.K_$=p -if(r.C$!=null&&s!==p)r.n2() -r.Yz() -if(q===0||r.qU$===0)r.bo()}}, -oV(a){var s=this.qV$ -return s.gl(s)>0}, -fu(a){var s,r=this.C$ -if(r!=null)if(this.qU$===0){s=this.K0$ -s.toString}else s=!0 -else s=!1 -if(s){r.toString -a.$1(r)}}} -A.Rf.prototype={} -A.RE.prototype={ -sa0Z(a){if(J.e(this.v,a))return -this.v=a -this.av()}, -smu(a){if(this.V===a)return -this.V=a -this.av()}, -gkn(){return this.C$!=null}, -ap(a,b){var s,r,q,p,o,n=this -if(n.C$!=null){s=t.uv -if(s.a(A.t.prototype.gaw.call(n,n))==null)n.ch.saw(0,new A.E2(A.m(t.S,t.M),A.af(t.kd))) -r=s.a(A.t.prototype.gaw.call(n,n)) -r.toString -q=n.gq(n) -q=n.v.$1(new A.y(0,0,0+q.a,0+q.b)) -if(q!=r.k3){r.k3=q -r.eK()}q=n.gq(n) -p=b.a -o=b.b -q=new A.y(p,o,p+q.a,o+q.b) -if(!q.j(0,r.k4)){r.k4=q -r.eK()}q=n.V -if(q!==r.ok){r.ok=q -r.eK()}s=s.a(A.t.prototype.gaw.call(n,n)) -s.toString -a.nb(s,A.fj.prototype.gfb.call(n),b)}else n.ch.saw(0,null)}} -A.Rh.prototype={ -sBM(a,b){if(this.v.j(0,b))return -this.v=b -this.av()}, -smu(a){if(this.V===a)return -this.V=a -this.av()}, -gkn(){return this.C$!=null}, -ap(a,b){var s,r,q,p=this -if(p.C$!=null){s=t.m2 -if(s.a(A.t.prototype.gaw.call(p,p))==null)p.ch.saw(0,A.aHi(null)) -s.a(A.t.prototype.gaw.call(p,p)).sBM(0,p.v) -r=s.a(A.t.prototype.gaw.call(p,p)) -q=p.V -if(q!==r.k4){r.k4=q -r.eK()}s=s.a(A.t.prototype.gaw.call(p,p)) -s.toString -a.nb(s,A.fj.prototype.gfb.call(p),b)}else p.ch.saw(0,null)}} -A.A6.prototype={ -U(a,b){return null}, -H(a,b){return null}, -k(a){return"CustomClipper"}} -A.oQ.prototype={ -DO(a){return this.b.cX(new A.y(0,0,0+a.a,0+a.b),this.c)}, -Eh(a){if(A.u(a)!==B.Vh)return!0 -t.jH.a(a) -return!a.b.j(0,this.b)||a.c!=this.c}} -A.yk.prototype={ -sqq(a){var s,r=this,q=r.v -if(q==a)return -r.v=a -s=a==null -if(s||q==null||A.u(a)!==A.u(q)||a.Eh(q))r.pS() -if(r.y!=null){if(q!=null)q.H(0,r.gzb()) -if(!s)a.U(0,r.gzb())}}, -ai(a){var s -this.tB(a) -s=this.v -if(s!=null)s.U(0,this.gzb())}, -aa(a){var s=this.v -if(s!=null)s.H(0,this.gzb()) -this.nD(0)}, -pS(){this.V=null -this.av() -this.bo()}, -sjA(a){if(a!==this.am){this.am=a -this.av()}}, -bs(){var s=this,r=s.id!=null?s.gq(s):null -s.pz() -if(!J.e(r,s.gq(s)))s.V=null}, -kj(){var s,r=this -if(r.V==null){s=r.v -s=s==null?null:s.DO(r.gq(r)) -r.V=s==null?r.gtS():s}}, -lv(a){var s,r=this -switch(r.am.a){case 0:return null -case 1:case 2:case 3:if(r.v==null)s=null -else{s=r.gq(r) -s=new A.y(0,0,0+s.a,0+s.b)}if(s==null){s=r.gq(r) -s=new A.y(0,0,0+s.a,0+s.b)}return s}}, -n(){this.e1=null -this.h_()}} -A.Rl.prototype={ -gtS(){var s=this.gq(this) -return new A.y(0,0,0+s.a,0+s.b)}, -c2(a,b){var s=this -if(s.v!=null){s.kj() -if(!s.V.t(0,b))return!1}return s.kb(a,b)}, -ap(a,b){var s,r,q=this,p=q.C$ -if(p!=null){s=q.ch -if(q.am!==B.m){q.kj() -p=q.cx -p===$&&A.c() -r=q.V -r.toString -s.saw(0,a.lP(p,b,r,A.fj.prototype.gfb.call(q),q.am,t.VX.a(s.a)))}else{a.dc(p,b) -s.saw(0,null)}}else q.ch.saw(0,null)}} -A.Rk.prototype={ -sIJ(a,b){if(this.bG.j(0,b))return -this.bG=b -this.pS()}, -sbF(a){if(this.ci==a)return -this.ci=a -this.pS()}, -gtS(){var s=this.bG,r=this.gq(this) -return s.d0(new A.y(0,0,0+r.a,0+r.b))}, -c2(a,b){var s=this -if(s.v!=null){s.kj() -if(!s.V.t(0,b))return!1}return s.kb(a,b)}, -ap(a,b){var s,r,q=this,p=q.C$ -if(p!=null){s=q.ch -if(q.am!==B.m){q.kj() -p=q.cx -p===$&&A.c() -r=q.V -s.saw(0,a.Lp(p,b,new A.y(r.a,r.b,r.c,r.d),r,A.fj.prototype.gfb.call(q),q.am,t.eG.a(s.a)))}else{a.dc(p,b) -s.saw(0,null)}}else q.ch.saw(0,null)}} -A.Rj.prototype={ -gtS(){var s=$.ad().c_(),r=this.gq(this) -s.jv(new A.y(0,0,0+r.a,0+r.b)) -return s}, -c2(a,b){var s=this -if(s.v!=null){s.kj() -if(!s.V.t(0,b))return!1}return s.kb(a,b)}, -ap(a,b){var s,r,q,p=this,o=p.C$ -if(o!=null){s=p.ch -if(p.am!==B.m){p.kj() -o=p.cx -o===$&&A.c() -r=p.gq(p) -q=p.V -q.toString -s.saw(0,a.Lo(o,b,new A.y(0,0,0+r.a,0+r.b),q,A.fj.prototype.gfb.call(p),p.am,t.JG.a(s.a)))}else{a.dc(o,b) -s.saw(0,null)}}else p.ch.saw(0,null)}} -A.I1.prototype={ -sjH(a,b){if(this.bG===b)return -this.bG=b -this.av()}, -sdu(a,b){if(this.ci.j(0,b))return -this.ci=b -this.av()}, -saf(a,b){if(this.dn.j(0,b))return -this.dn=b -this.av()}, -eT(a){this.hp(a) -a.sjH(0,this.bG)}} -A.Ry.prototype={ -scr(a,b){if(this.JY===b)return -this.JY=b -this.pS()}, -sIJ(a,b){if(J.e(this.JZ,b))return -this.JZ=b -this.pS()}, -gtS(){var s,r,q=this,p=q.gq(q),o=0+p.a -p=0+p.b -switch(q.JY.a){case 0:s=q.JZ -if(s==null)s=B.am -return s.d0(new A.y(0,0,o,p)) -case 1:s=(o-0)/2 -r=(p-0)/2 -return new A.jJ(0,0,o,p,s,r,s,r,s,r,s,r,s===r)}}, -c2(a,b){var s=this -if(s.v!=null){s.kj() -if(!s.V.t(0,b))return!1}return s.kb(a,b)}, -ap(a,b){var s,r,q,p,o,n,m,l,k,j=this -if(j.C$==null){j.ch.saw(0,null) -return}j.kj() -s=j.V.cz(b) -r=$.ad() -q=r.c_() -q.eG(s) -p=a.gbU(a) -o=j.bG -if(o!==0&&!0){n=j.ci -m=j.dn -p.qM(q,n,o,(m.gl(m)>>>24&255)!==255)}l=j.am===B.d4 -if(!l){r=r.b1() -r.saf(0,j.dn) -p.cC(s,r)}r=j.cx -r===$&&A.c() -o=j.gq(j) -n=j.V -n.toString -m=j.ch -k=t.eG.a(m.a) -m.saw(0,a.Lp(r,b,new A.y(0,0,0+o.a,0+o.b),n,new A.ajp(j,l),j.am,k))}} -A.ajp.prototype={ -$2(a,b){var s,r -if(this.b){s=a.gbU(a) -r=$.ad().b1() -r.saf(0,this.a.dn) -s.qL(r)}this.a.iC(a,b)}, -$S:8} -A.Rz.prototype={ -gtS(){var s=$.ad().c_(),r=this.gq(this) -s.jv(new A.y(0,0,0+r.a,0+r.b)) -return s}, -c2(a,b){var s=this -if(s.v!=null){s.kj() -if(!s.V.t(0,b))return!1}return s.kb(a,b)}, -ap(a,b){var s,r,q,p,o,n,m,l,k=this -if(k.C$==null){k.ch.saw(0,null) -return}k.kj() -s=k.gq(k) -r=b.a -q=b.b -p=k.V.cz(b) -o=a.gbU(a) -if(k.bG!==0&&!0){o.cT(new A.y(r,q,r+s.a,q+s.b).cV(20),$.aRv()) -s=k.ci -r=k.bG -q=k.dn -o.qM(p,s,r,(q.gl(q)>>>24&255)!==255)}n=k.am===B.d4 -if(!n){s=$.ad().b1() -s.saf(0,k.dn) -o.cY(p,s)}s=k.cx -s===$&&A.c() -r=k.gq(k) -q=k.V -q.toString -m=k.ch -l=t.JG.a(m.a) -m.saw(0,a.Lo(s,b,new A.y(0,0,0+r.a,0+r.b),q,new A.ajq(k,n),k.am,l))}} -A.ajq.prototype={ -$2(a,b){var s,r -if(this.b){s=a.gbU(a) -r=$.ad().b1() -r.saf(0,this.a.dn) -s.qL(r)}this.a.iC(a,b)}, -$S:8} -A.My.prototype={ -I(){return"DecorationPosition."+this.b}} -A.Ro.prototype={ -saO(a){var s,r=this -if(a.j(0,r.V))return -s=r.v -if(s!=null)s.n() -r.v=null -r.V=a -r.av()}, -sbv(a,b){if(b===this.am)return -this.am=b -this.av()}, -sls(a){if(a.j(0,this.br))return -this.br=a -this.av()}, -aa(a){var s=this,r=s.v -if(r!=null)r.n() -s.v=null -s.nD(0) -s.av()}, -j4(a){var s=this -return s.V.Kn(s.gq(s),a,s.br.d)}, -ap(a,b){var s,r,q=this -if(q.v==null)q.v=q.V.vj(q.gdR()) -s=q.br.B1(q.gq(q)) -if(q.am===B.br){r=q.v -r.toString -r.hK(a.gbU(a),b,s) -if(q.V.gCj())a.N_()}q.iC(a,b) -if(q.am===B.mZ){r=q.v -r.toString -r.hK(a.gbU(a),b,s) -if(q.V.gCj())a.N_()}}} -A.RI.prototype={ -sYU(a,b){return}, -sh1(a){var s=this -if(J.e(s.V,a))return -s.V=a -s.av() -s.bo()}, -sbF(a){var s=this -if(s.am==a)return -s.am=a -s.av() -s.bo()}, -gkn(){return!1}, -sbL(a,b){var s,r=this -if(J.e(r.e1,b))return -s=new A.b6(new Float64Array(16)) -s.aS(b) -r.e1=s -r.av() -r.bo()}, -smR(a){return}, -gFS(){var s,r,q=this,p=q.V,o=p==null?null:p.P(q.am) -if(o==null)return q.e1 -s=new A.b6(new Float64Array(16)) -s.e6() -r=o.AB(q.gq(q)) -s.aK(0,r.a,r.b) -p=q.e1 -p.toString -s.da(0,p) -s.aK(0,-r.a,-r.b) -return s}, -c2(a,b){return this.co(a,b)}, -co(a,b){var s=this.br?this.gFS():null -return a.Iv(new A.ajG(this),b,s)}, -ap(a,b){var s,r,q,p,o,n,m,l=this -if(l.C$!=null){s=l.gFS() -s.toString -r=A.afy(s) -if(r==null){q=s.Wr() -if(q===0||!isFinite(q)){l.ch.saw(0,null) -return}p=l.cx -p===$&&A.c() -o=A.fj.prototype.gfb.call(l) -n=l.ch -m=n.a -n.saw(0,a.wU(p,b,s,o,m instanceof A.te?m:null))}else{l.iC(a,b.Y(0,r)) -l.ch.saw(0,null)}}}, -d4(a,b){var s=this.gFS() -s.toString -b.da(0,s)}} -A.ajG.prototype={ -$2(a,b){return this.a.yb(a,b)}, -$S:9} -A.Rr.prototype={ -sauH(a){var s=this -if(s.v.j(0,a))return -s.v=a -s.av() -s.bo()}, -c2(a,b){return this.co(a,b)}, -co(a,b){var s=this,r=s.V?new A.k(s.v.a*s.gq(s).a,s.v.b*s.gq(s).b):null -return a.i4(new A.aiZ(s),r,b)}, -ap(a,b){var s=this -if(s.C$!=null)s.iC(a,new A.k(b.a+s.v.a*s.gq(s).a,b.b+s.v.b*s.gq(s).b))}, -d4(a,b){var s=this -b.aK(0,s.v.a*s.gq(s).a,s.v.b*s.gq(s).b)}} -A.aiZ.prototype={ -$2(a,b){return this.a.yb(a,b)}, -$S:9} -A.RA.prototype={ -v7(a){return new A.Q(A.R(1/0,a.a,a.b),A.R(1/0,a.c,a.d))}, -jN(a,b){var s,r=this,q=null -if(t.pY.b(a)){s=r.cI -return s==null?q:s.$1(a)}if(t.n2.b(a))return q -if(t.oN.b(a)){s=r.bV -return s==null?q:s.$1(a)}if(t.XA.b(a))return q -if(t.Ko.b(a)){s=r.bG -return s==null?q:s.$1(a)}if(t.w5.b(a)){s=r.ci -return s==null?q:s.$1(a)}if(t.DB.b(a))return q -if(t.WQ.b(a))return q -if(t.ks.b(a)){s=r.jL -return s==null?q:s.$1(a)}}} -A.Dj.prototype={ -c2(a,b){return this.a37(a,b)&&!0}, -jN(a,b){var s=this.bV -if(s!=null&&t.XA.b(a))return s.$1(a)}, -gWg(a){return this.bG}, -gMb(){return this.ci}, -ai(a){this.tB(a) -this.ci=!0}, -aa(a){this.ci=!1 -this.nD(0)}, -v7(a){return new A.Q(A.R(1/0,a.a,a.b),A.R(1/0,a.c,a.d))}, -$ikR:1, -gL1(a){return this.e_}, -gL2(a){return this.cs}} -A.RD.prototype={ -geZ(){return!0}} -A.De.prototype={ -sXO(a){if(a===this.v)return -this.v=a -this.bo()}, -sKp(a){return}, -c2(a,b){return!this.v&&this.kb(a,b)}, -fu(a){this.py(a)}, -eT(a){var s -this.hp(a) -if(this.v)s=!0 -else s=!1 -a.b=s}} -A.Dk.prototype={ -sCG(a){var s=this -if(a===s.v)return -s.v=a -s.W() -s.wr()}, -bf(a){if(this.v)return 0 -return this.EG(a)}, -b7(a){if(this.v)return 0 -return this.EE(a)}, -b8(a){if(this.v)return 0 -return this.EF(a)}, -be(a){if(this.v)return 0 -return this.ED(a)}, -eS(a){if(this.v)return null -return this.a4p(a)}, -gka(){return this.v}, -cg(a){if(this.v)return new A.Q(A.R(0,a.a,a.b),A.R(0,a.c,a.d)) -return this.a36(a)}, -rw(){this.a2X()}, -bs(){var s,r=this -if(r.v){s=r.C$ -if(s!=null)s.he(t.k.a(A.t.prototype.ga2.call(r)))}else r.pz()}, -c2(a,b){return!this.v&&this.kb(a,b)}, -oV(a){return!this.v}, -ap(a,b){if(this.v)return -this.iC(a,b)}, -fu(a){if(this.v)return -this.py(a)}} -A.D5.prototype={ -sUN(a){if(this.v===a)return -this.v=a -this.bo()}, -sKp(a){return}, -c2(a,b){var s=this -return s.v?s.gq(s).t(0,b):s.kb(a,b)}, -fu(a){this.py(a)}, -eT(a){var s -this.hp(a) -if(this.v)s=!0 -else s=!1 -a.b=s}} -A.mz.prototype={ -sauU(a){if(A.Kl(a,this.cI))return -this.cI=a -this.bo()}, -slM(a){var s,r=this -if(J.e(r.e_,a))return -s=r.e_ -r.e_=a -if(a!=null!==(s!=null))r.bo()}, -sn4(a){var s,r=this -if(J.e(r.bV,a))return -s=r.bV -r.bV=a -if(a!=null!==(s!=null))r.bo()}, -sYM(a){var s,r=this -if(J.e(r.cs,a))return -s=r.cs -r.cs=a -if(a!=null!==(s!=null))r.bo()}, -sYS(a){var s,r=this -if(J.e(r.bG,a))return -s=r.bG -r.bG=a -if(a!=null!==(s!=null))r.bo()}, -eT(a){var s,r=this -r.hp(a) -if(r.e_!=null){s=r.cI -s=s==null||s.t(0,B.cR)}else s=!1 -if(s)a.slM(r.e_) -if(r.bV!=null){s=r.cI -s=s==null||s.t(0,B.ym)}else s=!1 -if(s)a.sn4(r.bV) -if(r.cs!=null){s=r.cI -if(s==null||s.t(0,B.eJ))a.sCU(r.gagV()) -s=r.cI -if(s==null||s.t(0,B.eI))a.sCT(r.gagT())}if(r.bG!=null){s=r.cI -if(s==null||s.t(0,B.eG))a.sCV(r.gagX()) -s=r.cI -if(s==null||s.t(0,B.eH))a.sCS(r.gagR())}}, -agU(){var s,r,q,p=this -if(p.cs!=null){s=p.gq(p).a*-0.8 -r=p.cs -r.toString -q=p.gq(p).jz(B.e) -q=A.c5(p.bt(0,null),q) -r.$1(new A.ky(null,new A.k(s,0),s,q))}}, -agW(){var s,r,q,p=this -if(p.cs!=null){s=p.gq(p).a*0.8 -r=p.cs -r.toString -q=p.gq(p).jz(B.e) -q=A.c5(p.bt(0,null),q) -r.$1(new A.ky(null,new A.k(s,0),s,q))}}, -agY(){var s,r,q,p=this -if(p.bG!=null){s=p.gq(p).b*-0.8 -r=p.bG -r.toString -q=p.gq(p).jz(B.e) -q=A.c5(p.bt(0,null),q) -r.$1(new A.ky(null,new A.k(0,s),s,q))}}, -agS(){var s,r,q,p=this -if(p.bG!=null){s=p.gq(p).b*0.8 -r=p.bG -r.toString -q=p.gq(p).jz(B.e) -q=A.c5(p.bt(0,null),q) -r.$1(new A.ky(null,new A.k(0,s),s,q))}}} -A.Do.prototype={ -sZc(a){var s=this -if(s.v===a)return -s.v=a -s.TZ(a) -s.bo()}, -san5(a){if(this.V===a)return -this.V=a -this.bo()}, -saoQ(a){if(this.am===a)return -this.am=a -this.bo()}, -saoK(a){if(this.br===a)return -this.br=a -this.bo()}, -same(a){return}, -TZ(a){var s=this,r=a.fy -r=a.fx -r=r==null?null:new A.d0(r,B.at) -s.dJ=r -r=a.id -r=a.go -r=r==null?null:new A.d0(r,B.at) -s.eX=r -s.eb=null -s.fS=null -r=a.p1 -r=a.ok -r=r==null?null:new A.d0(r,B.at) -s.ha=r}, -sbF(a){if(this.f9==a)return -this.f9=a -this.bo()}, -fu(a){if(this.br)return -this.py(a)}, -eT(a){var s,r,q=this -q.hp(a) -a.a=q.V -a.c=q.am -a.b=!1 -s=q.v.a -if(s!=null){a.bc(B.kt,!0) -a.bc(B.kp,s)}s=q.v.b -if(s!=null){a.bc(B.hx,!0) -a.bc(B.yw,s)}s=q.v.c -if(s!=null){a.bc(B.hx,!0) -a.bc(B.yy,s)}s=q.v.d -if(s!=null){a.bc(B.ku,!0) -a.bc(B.kq,s)}s=q.v.e -if(s!=null)a.bc(B.yA,s) -s=q.v.f -if(s!=null)a.bc(B.yD,s) -s=q.v.w -if(s!=null)a.bc(B.yB,s) -s=q.v.as -if(s!=null)a.bc(B.yv,s) -s=q.v.at -if(s!=null)a.bc(B.kr,s) -s=q.v.db -if(s!=null)a.bc(B.ys,s) -s=q.dJ -if(s!=null){a.RG=s -a.e=!0}s=q.eX -if(s!=null){a.rx=s -a.e=!0}s=q.eb -if(s!=null){a.ry=s -a.e=!0}s=q.fS -if(s!=null){a.to=s -a.e=!0}s=q.ha -if(s!=null){a.x1=s -a.e=!0}s=q.v -r=s.p2 -if(r!=null){a.x2=r -a.e=!0}s.p3!=null -s=q.v.cx -if(s!=null)a.bc(B.yu,s) -s=q.v.cy -if(s!=null)a.bc(B.yz,s) -s=q.v.dx -if(s!=null)a.bc(B.yx,s) -s=q.v.fr -if(s!=null)a.sBa(s) -s=q.f9 -if(s!=null){a.b_=s -a.e=!0}s=q.v -r=s.R8 -if(r!=null){a.k2=r -a.e=!0}s=s.RG -if(s!=null)a.Iu(s) -if(q.v.rx!=null)a.slM(q.gah_()) -if(q.v.ry!=null)a.sn4(q.gagN()) -if(q.v.az!=null)a.sCL(q.gagL()) -if(q.v.b_!=null)a.sCI(0,q.gagF()) -if(q.v.bn!=null)a.sCJ(0,q.gagH()) -if(q.v.al!=null)a.sCR(0,q.gagP()) -if(q.v.a1!=null)a.sCK(q.gagJ())}, -ah0(){var s=this.v.rx -if(s!=null)s.$0()}, -agO(){var s=this.v.ry -if(s!=null)s.$0()}, -agM(){var s=this.v.az -if(s!=null)s.$0()}, -agG(){var s=this.v.b_ -if(s!=null)s.$0()}, -agI(){var s=this.v.bn -if(s!=null)s.$0()}, -agQ(){var s=this.v.al -if(s!=null)s.$0()}, -agK(){var s=this.v.a1 -if(s!=null)s.$0()}} -A.Ri.prototype={ -samf(a){return}, -eT(a){this.hp(a) -a.d=!0}} -A.Rw.prototype={ -eT(a){this.hp(a) -a.e=a.p4=a.a=!0}} -A.Rp.prototype={ -saoL(a){if(a===this.v)return -this.v=a -this.bo()}, -fu(a){if(this.v)return -this.py(a)}} -A.Rs.prototype={ -sC9(a,b){if(b===this.v)return -this.v=b -this.bo()}, -eT(a){this.hp(a) -a.k3=this.v -a.e=!0}} -A.Ru.prototype={ -soI(a){var s=this,r=s.v -if(r===a)return -r.d=null -s.v=a -r=s.V -if(r!=null)a.d=r -s.av()}, -gkn(){return!0}, -bs(){var s=this -s.pz() -s.V=s.gq(s) -s.v.d=s.gq(s)}, -ap(a,b){var s=this.ch,r=s.a,q=this.v -if(r==null)s.saw(0,A.aDu(q,b)) -else{t.rf.a(r) -r.soI(q) -r.sct(0,b)}s=s.a -s.toString -a.nb(s,A.fj.prototype.gfb.call(this),B.e)}} -A.Rq.prototype={ -soI(a){if(this.v===a)return -this.v=a -this.av()}, -sa1b(a){return}, -sct(a,b){if(this.am.j(0,b))return -this.am=b -this.av()}, -sarD(a){if(this.br.j(0,a))return -this.br=a -this.av()}, -sapf(a){if(this.e1.j(0,a))return -this.e1=a -this.av()}, -aa(a){this.ch.saw(0,null) -this.nD(0)}, -gkn(){return!0}, -Mg(){var s=t.RC.a(A.t.prototype.gaw.call(this,this)) -s=s==null?null:s.Mm() -if(s==null){s=new A.b6(new Float64Array(16)) -s.e6()}return s}, -c2(a,b){if(this.v.a==null&&!0)return!1 -return this.co(a,b)}, -co(a,b){return a.Iv(new A.aiY(this),b,this.Mg())}, -ap(a,b){var s,r=this,q=r.v.d,p=q==null?r.am:r.br.AB(q).Z(0,r.e1.AB(r.gq(r))).Y(0,r.am),o=t.RC -if(o.a(A.t.prototype.gaw.call(r,r))==null)r.ch.saw(0,new A.AV(r.v,!1,b,p,A.m(t.S,t.M),A.af(t.kd))) -else{s=o.a(A.t.prototype.gaw.call(r,r)) -if(s!=null){s.k3=r.v -s.k4=!1 -s.p1=p -s.ok=b}}o=o.a(A.t.prototype.gaw.call(r,r)) -o.toString -a.rC(o,A.fj.prototype.gfb.call(r),B.e,B.NC)}, -d4(a,b){b.da(0,this.Mg())}} -A.aiY.prototype={ -$2(a,b){return this.a.yb(a,b)}, -$S:9} -A.D8.prototype={ -sl(a,b){if(this.v.j(0,b))return -this.v=b -this.av()}, -sa1k(a){return}, -ap(a,b){var s=this,r=s.v,q=s.gq(s) -a.nb(new A.zh(r,q,b,A.m(t.S,t.M),A.af(t.kd),s.$ti.i("zh<1>")),A.fj.prototype.gfb.call(s),b)}, -gkn(){return!0}} -A.ZJ.prototype={ -ai(a){var s=this -s.tB(a) -s.qV$.U(0,s.gAa()) -s.I4()}, -aa(a){this.qV$.H(0,this.gAa()) -this.nD(0)}, -ap(a,b){if(this.qU$===0)return -this.iC(a,b)}} -A.I2.prototype={ -ai(a){var s -this.dD(a) -s=this.C$ -if(s!=null)s.ai(a)}, -aa(a){var s -this.dE(0) -s=this.C$ -if(s!=null)s.aa(0)}} -A.I3.prototype={ -eS(a){var s=this.C$ -s=s==null?null:s.l1(a) -return s==null?this.ya(a):s}} -A.oN.prototype={ -I(){return"SelectionResult."+this.b}} -A.eJ.prototype={$iaa:1} -A.Sf.prototype={ -sp0(a){var s=this,r=s.qY$ -if(a==r)return -if(a==null)s.H(0,s.gSU()) -else if(r==null)s.U(0,s.gSU()) -s.ST() -s.qY$=a -s.SV()}, -SV(){var s=this -if(s.qY$==null){s.or$=!1 -return}if(s.or$&&!s.gl(s).e){s.qY$.F(0,s) -s.or$=!1}else if(!s.or$&&s.gl(s).e){s.qY$.E(0,s) -s.or$=!0}}, -ST(){var s=this -if(s.or$){s.qY$.F(0,s) -s.or$=!1}}} -A.DW.prototype={ -I(){return"SelectionEventType."+this.b}} -A.x2.prototype={ -I(){return"TextGranularity."+this.b}} -A.akV.prototype={} -A.zV.prototype={} -A.rT.prototype={} -A.wv.prototype={ -I(){return"SelectionExtendDirection."+this.b}} -A.DX.prototype={ -I(){return"SelectionStatus."+this.b}} -A.oM.prototype={ -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.Y(b)!==A.u(s))return!1 -return b instanceof A.oM&&J.e(b.a,s.a)&&J.e(b.b,s.b)&&b.d===s.d&&b.c===s.c&&b.e===s.e}, -gA(a){var s=this -return A.T(s.a,s.b,s.d,s.c,s.e,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.rU.prototype={ -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.Y(b)!==A.u(s))return!1 -return b instanceof A.rU&&b.a.j(0,s.a)&&b.b===s.b&&b.c===s.c}, -gA(a){return A.T(this.a,this.b,this.c,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.F2.prototype={ -I(){return"TextSelectionHandleType."+this.b}} -A.rH.prototype={ -bf(a){var s=this.C$ -s=s==null?null:s.aq(B.V,a,s.gbj()) -return s==null?0:s}, -b7(a){var s=this.C$ -s=s==null?null:s.aq(B.a_,a,s.gbm()) -return s==null?0:s}, -b8(a){var s=this.C$ -s=s==null?null:s.aq(B.ab,a,s.gby()) -return s==null?0:s}, -be(a){var s=this.C$ -s=s==null?null:s.aq(B.aU,a,s.gbZ()) -return s==null?0:s}, -eS(a){var s,r,q=this.C$ -if(q!=null){s=q.l1(a) -r=q.b -r.toString -t.q.a(r) -if(s!=null)s+=r.a.b}else s=this.ya(a) -return s}, -ap(a,b){var s,r=this.C$ -if(r!=null){s=r.b -s.toString -a.dc(r,t.q.a(s).a.Y(0,b))}}, -co(a,b){var s,r=this.C$ -if(r!=null){s=r.b -s.toString -t.q.a(s) -return a.i4(new A.ajr(b,s,r),s.a,b)}return!1}} -A.ajr.prototype={ -$2(a,b){return this.c.c2(a,b)}, -$S:9} -A.Dl.prototype={ -mn(){var s=this -if(s.v!=null)return -s.v=s.V.P(s.am)}, -se4(a,b){var s=this -if(s.V.j(0,b))return -s.V=b -s.v=null -s.W()}, -sbF(a){var s=this -if(s.am==a)return -s.am=a -s.v=null -s.W()}, -bf(a){var s,r,q,p -this.mn() -s=this.v -r=s.a+s.c -q=s.b -s=s.d -p=this.C$ -if(p!=null)return p.aq(B.V,Math.max(0,a-(q+s)),p.gbj())+r -return r}, -b7(a){var s,r,q,p -this.mn() -s=this.v -r=s.a+s.c -q=s.b -s=s.d -p=this.C$ -if(p!=null)return p.aq(B.a_,Math.max(0,a-(q+s)),p.gbm())+r -return r}, -b8(a){var s,r,q,p -this.mn() -s=this.v -r=s.a -q=s.c -p=s.b+s.d -s=this.C$ -if(s!=null)return s.aq(B.ab,Math.max(0,a-(r+q)),s.gby())+p -return p}, -be(a){var s,r,q,p -this.mn() -s=this.v -r=s.a -q=s.c -p=s.b+s.d -s=this.C$ -if(s!=null)return s.aq(B.aU,Math.max(0,a-(r+q)),s.gbZ())+p -return p}, -cg(a){var s,r,q,p=this -p.mn() -if(p.C$==null){s=p.v -return a.aX(new A.Q(s.a+s.c,s.b+s.d))}s=p.v -s.toString -r=a.Bg(s) -q=p.C$.hQ(r) -s=p.v -return a.aX(new A.Q(s.a+q.a+s.c,s.b+q.b+s.d))}, -bs(){var s,r,q,p,o,n,m=this,l=t.k.a(A.t.prototype.ga2.call(m)) -m.mn() -if(m.C$==null){s=m.v -m.id=l.aX(new A.Q(s.a+s.c,s.b+s.d)) -return}s=m.v -s.toString -r=l.Bg(s) -m.C$.bz(r,!0) -s=m.C$ -q=s.b -q.toString -t.q.a(q) -p=m.v -o=p.a -q.a=new A.k(o,p.b) -s=s.gq(s) -p=m.v -q=p.c -p=p.b -n=m.C$ -m.id=l.aX(new A.Q(o+s.a+q,p+n.gq(n).b+m.v.d))}} -A.Re.prototype={ -mn(){var s=this -if(s.v!=null)return -s.v=s.V.P(s.am)}, -sh1(a){var s=this -if(s.V.j(0,a))return -s.V=a -s.v=null -s.W()}, -sbF(a){var s=this -if(s.am==a)return -s.am=a -s.v=null -s.W()}, -uO(){var s,r,q,p,o=this -o.mn() -s=o.C$.b -s.toString -t.q.a(s) -r=o.v -r.toString -q=o.gq(o) -p=o.C$ -s.a=r.o_(t.EP.a(q.Z(0,p.gq(p))))}} -A.RB.prototype={ -sav3(a){if(this.bV==a)return -this.bV=a -this.W()}, -saqm(a){if(this.cs==a)return -this.cs=a -this.W()}, -cg(a){var s,r,q=this,p=q.bV!=null||a.b===1/0,o=q.cs!=null||a.d===1/0,n=q.C$ -if(n!=null){s=n.hQ(new A.ar(0,a.b,0,a.d)) -if(p){n=q.bV -if(n==null)n=1 -n=s.a*n}else n=1/0 -if(o){r=q.cs -if(r==null)r=1 -r=s.b*r}else r=1/0 -return a.aX(new A.Q(n,r))}n=p?0:1/0 -return a.aX(new A.Q(n,o?0:1/0))}, -bs(){var s,r,q=this,p=t.k.a(A.t.prototype.ga2.call(q)),o=q.bV!=null||p.b===1/0,n=q.cs!=null||p.d===1/0,m=q.C$ -if(m!=null){m.bz(new A.ar(0,p.b,0,p.d),!0) -if(o){m=q.C$ -m=m.gq(m) -s=q.bV -if(s==null)s=1 -s=m.a*s -m=s}else m=1/0 -if(n){s=q.C$ -s=s.gq(s) -r=q.cs -if(r==null)r=1 -r=s.b*r -s=r}else s=1/0 -q.id=p.aX(new A.Q(m,s)) -q.uO()}else{m=o?0:1/0 -q.id=p.aX(new A.Q(m,n?0:1/0))}}} -A.Rm.prototype={ -sasc(a,b){if(this.bV===b)return -this.bV=b -this.W()}, -sKR(a,b){if(this.cs===b)return -this.cs=b -this.W()}, -sas8(a,b){if(this.bG===b)return -this.bG=b -this.W()}, -sKP(a,b){if(this.ci===b)return -this.ci=b -this.W()}, -gka(){return!0}, -cg(a){return new A.Q(A.R(1/0,a.a,a.b),A.R(1/0,a.c,a.d))}, -bs(){var s,r,q,p,o=this,n=o.C$ -if(n!=null){t.k.a(A.t.prototype.ga2.call(o)) -s=o.bV -r=o.cs -q=o.bG -p=o.ci -n.bz(new A.ar(s,r,q,p),!0) -o.uO()}}} -A.alV.prototype={ -ns(a){return new A.Q(A.R(1/0,a.a,a.b),A.R(1/0,a.c,a.d))}, -nn(a){return a}, -nq(a,b){return B.e}} -A.Db.prototype={ -siX(a){var s=this,r=s.v -if(r===a)return -if(A.u(a)!==A.u(r)||a.la(r))s.W() -s.v=a -s.y!=null}, -ai(a){this.O7(a)}, -aa(a){this.O8(0)}, -bf(a){var s=A.iF(a,1/0),r=s.aX(this.v.ns(s)).a -if(isFinite(r))return r -return 0}, -b7(a){var s=A.iF(a,1/0),r=s.aX(this.v.ns(s)).a -if(isFinite(r))return r -return 0}, -b8(a){var s=A.iF(1/0,a),r=s.aX(this.v.ns(s)).b -if(isFinite(r))return r -return 0}, -be(a){var s=A.iF(1/0,a),r=s.aX(this.v.ns(s)).b -if(isFinite(r))return r -return 0}, -cg(a){return a.aX(this.v.ns(a))}, -bs(){var s,r,q,p,o,n=this,m=t.k,l=m.a(A.t.prototype.ga2.call(n)) -n.id=l.aX(n.v.ns(l)) -if(n.C$!=null){s=n.v.nn(m.a(A.t.prototype.ga2.call(n))) -m=n.C$ -m.toString -l=s.a -r=s.b -q=l>=r -m.bz(s,!(q&&s.c>=s.d)) -m=n.C$.b -m.toString -t.q.a(m) -p=n.v -o=n.gq(n) -if(q&&s.c>=s.d)l=new A.Q(A.R(0,l,r),A.R(0,s.c,s.d)) -else{l=n.C$ -l=l.gq(l)}m.a=p.nq(o,l)}}} -A.I5.prototype={ -ai(a){var s -this.dD(a) -s=this.C$ -if(s!=null)s.ai(a)}, -aa(a){var s -this.dE(0) -s=this.C$ -if(s!=null)s.aa(0)}} -A.O7.prototype={ -I(){return"GrowthDirection."+this.b}} -A.oR.prototype={ -gYl(){return!1}, -am1(a,b){var s=this.w -switch(A.bs(this.a).a){case 0:return new A.ar(b,a,s,s) -case 1:return new A.ar(s,s,b,a)}}, -am0(){return this.am1(1/0,0)}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(!(b instanceof A.oR))return!1 -return b.a===s.a&&b.b===s.b&&b.d===s.d&&b.f===s.f&&b.r===s.r&&b.w===s.w&&b.x===s.x&&b.y===s.y&&b.Q===s.Q&&b.z===s.z}, -gA(a){var s=this -return A.T(s.a,s.b,s.d,s.f,s.r,s.w,s.x,s.y,s.Q,s.z,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){var s=this,r=A.b([s.a.k(0),s.b.k(0),s.c.k(0),"scrollOffset: "+B.d.ad(s.d,1),"remainingPaintExtent: "+B.d.ad(s.r,1)],t.s),q=s.f -if(q!==0)r.push("overlap: "+B.d.ad(q,1)) -r.push("crossAxisExtent: "+B.d.ad(s.w,1)) -r.push("crossAxisDirection: "+s.x.k(0)) -r.push("viewportMainAxisExtent: "+B.d.ad(s.y,1)) -r.push("remainingCacheExtent: "+B.d.ad(s.Q,1)) -r.push("cacheOrigin: "+B.d.ad(s.z,1)) -return"SliverConstraints("+B.b.bH(r,", ")+")"}} -A.SA.prototype={ -df(){return"SliverGeometry"}} -A.wF.prototype={} -A.SB.prototype={ -k(a){return A.u(this.a).k(0)+"@(mainAxis: "+A.j(this.c)+", crossAxis: "+A.j(this.d)+")"}} -A.oS.prototype={ -k(a){var s=this.a -return"layoutOffset="+(s==null?"None":B.d.ad(s,1))}} -A.mH.prototype={} -A.oT.prototype={ -k(a){return"paintOffset="+this.a.k(0)}} -A.mI.prototype={} -A.dn.prototype={ -ga2(){return t.r.a(A.t.prototype.ga2.call(this))}, -gnt(){return this.gkP()}, -gkP(){var s=this,r=t.r -switch(A.bs(r.a(A.t.prototype.ga2.call(s)).a).a){case 0:return new A.y(0,0,0+s.fx.c,0+r.a(A.t.prototype.ga2.call(s)).w) -case 1:return new A.y(0,0,0+r.a(A.t.prototype.ga2.call(s)).w,0+s.fx.c)}}, -rw(){}, -XI(a,b,c){var s=this -if(c>=0&&c=0&&br;j=h,i=o){o=a3.XY(p,!0) -if(o==null){n=a3.a3$ -k=n.b -k.toString -m.a(k).a=0 -if(r===0){n.bz(p,!0) -o=a3.a3$ -if(a5.a==null)a5.a=o -i=o -break}else{a3.fx=A.t_(a4,!1,a4,a4,0,0,0,0,-r) -return}}n=a3.a3$ -n.toString -h=j-a3.oT(n) -if(h<-1e-10){a3.fx=A.t_(a4,!1,a4,a4,0,0,0,0,-h) -a7=a3.a3$.b -a7.toString -m.a(a7).a=0 -return}n=o.b -n.toString -m.a(n).a=h -if(a5.a==null)a5.a=o}if(r<1e-10)while(!0){n=a3.a3$ -n.toString -n=n.b -n.toString -m.a(n) -k=n.b -k.toString -if(!(k>0))break -n=n.a -n.toString -o=a3.XY(p,!0) -k=a3.a3$ -k.toString -h=n-a3.oT(k) -k=a3.a3$.b -k.toString -m.a(k).a=0 -if(h<-1e-10){a3.fx=A.t_(a4,!1,a4,a4,0,0,0,0,-h) -return}}if(i==null){o.bz(p,!0) -a5.a=o}a5.b=!0 -a5.c=o -n=o.b -n.toString -m.a(n) -k=n.b -k.toString -a5.d=k -n=n.a -n.toString -a5.e=n+a3.oT(o) -g=new A.aju(a5,a3,p) -for(f=0;a5.es+a6.r||s>0,a4,a4,a,a1,0,a,a4) -if(a===n)a7.R8=!0 -a7.Ju()}} -A.aju.prototype={ -$0(){var s,r,q,p=this.a,o=p.c,n=p.a -if(o==n)p.b=!1 -s=this.b -o=o.b -o.toString -r=p.c=A.p(s).i("aj.1").a(o).ab$ -o=r==null -if(o)p.b=!1 -q=++p.d -if(!p.b){if(!o){o=r.b -o.toString -o=t.U.a(o).b -o.toString -q=o!==q -o=q}else o=!0 -q=this.c -if(o){r=s.aqZ(q,n,!0) -p.c=r -if(r==null)return!1}else r.bz(q,!0) -o=p.a=p.c}else o=r -n=o.b -n.toString -t.U.a(n) -q=p.e -n.a=q -p.e=q+s.oT(o) -return!0}, -$S:12} -A.kL.prototype={$icE:1} -A.ajy.prototype={ -e7(a){}} -A.l9.prototype={ -k(a){var s=this.b,r=this.vQ$?"keepAlive; ":"" -return"index="+A.j(s)+"; "+r+this.a3F(0)}} -A.wf.prototype={ -e7(a){if(!(a.b instanceof A.l9))a.b=new A.l9(!1,null,null)}, -h0(a){var s -this.NV(a) -s=a.b -s.toString -if(!t.U.a(s).c)this.al.Jp(t.x.a(a))}, -Kt(a,b,c){this.Et(0,b,c)}, -wy(a,b){var s,r=this,q=a.b -q.toString -t.U.a(q) -if(!q.c){r.a1W(a,b) -r.al.Jp(a) -r.W()}else{s=r.aG -if(s.h(0,q.b)===a)s.F(0,q.b) -r.al.Jp(a) -q=q.b -q.toString -s.m(0,q,a)}}, -F(a,b){var s=b.b -s.toString -t.U.a(s) -if(!s.c){this.a1X(0,b) -return}this.aG.F(0,s.b) -this.jF(b)}, -FE(a,b){this.Cg(new A.ajv(this,a,b),t.r)}, -Pv(a){var s,r=this,q=a.b -q.toString -t.U.a(q) -if(q.vQ$){r.F(0,a) -s=q.b -s.toString -r.aG.m(0,s,a) -a.b=q -r.NV(a) -q.c=!0}else r.al.ZE(a)}, -ai(a){var s,r,q -this.a4q(a) -for(s=this.aG,s=s.gaR(s),r=A.p(s),r=r.i("@<1>").a5(r.z[1]),s=new A.bP(J.as(s.a),s.b,r.i("bP<1,2>")),r=r.z[1];s.u();){q=s.a;(q==null?r.a(q):q).ai(a)}}, -aa(a){var s,r,q -this.a4r(0) -for(s=this.aG,s=s.gaR(s),r=A.p(s),r=r.i("@<1>").a5(r.z[1]),s=new A.bP(J.as(s.a),s.b,r.i("bP<1,2>")),r=r.z[1];s.u();){q=s.a;(q==null?r.a(q):q).aa(0)}}, -fp(){this.Np() -var s=this.aG -s.gaR(s).N(0,this.gLx())}, -b3(a){var s -this.y5(a) -s=this.aG -s.gaR(s).N(0,a)}, -fu(a){this.y5(a)}, -alH(a,b){var s -this.FE(a,null) -s=this.a3$ -if(s!=null){s=s.b -s.toString -t.U.a(s).a=b -return!0}this.al.R8=!0 -return!1}, -UT(){return this.alH(0,0)}, -XY(a,b){var s,r,q,p=this,o=p.a3$ -o.toString -o=o.b -o.toString -s=t.U -o=s.a(o).b -o.toString -r=o-1 -p.FE(r,null) -o=p.a3$ -o.toString -q=o.b -q.toString -q=s.a(q).b -q.toString -if(q===r){o.bz(a,b) -return p.a3$}p.al.R8=!0 -return null}, -aqZ(a,b,c){var s,r,q,p=b.b -p.toString -s=t.U -p=s.a(p).b -p.toString -r=p+1 -this.FE(r,b) -p=b.b -p.toString -q=A.p(this).i("aj.1").a(p).ab$ -if(q!=null){p=q.b -p.toString -p=s.a(p).b -p.toString -p=p===r}else p=!1 -if(p){q.bz(a,c) -return q}this.al.R8=!0 -return null}, -IY(a,b){var s={} -s.a=a -s.b=b -this.Cg(new A.ajx(s,this),t.r)}, -oT(a){switch(A.bs(t.r.a(A.t.prototype.ga2.call(this)).a).a){case 0:return a.gq(a).a -case 1:return a.gq(a).b}}, -Ko(a,b,c){var s,r,q=this.d7$,p=A.aHu(a) -for(s=A.p(this).i("aj.1");q!=null;){if(this.aqw(p,q,b,c))return!0 -r=q.b -r.toString -q=s.a(r).cn$}return!1}, -IT(a){var s=a.b -s.toString -return t.U.a(s).a}, -oV(a){var s=t.MR.a(a.b) -return(s==null?null:s.b)!=null&&!this.aG.ak(0,s.b)}, -d4(a,b){if(!this.oV(a))b.N2() -else this.alZ(a,b)}, -ap(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d=this,c=null -if(d.a3$==null)return -s=t.r -switch(A.lD(s.a(A.t.prototype.ga2.call(d)).a,s.a(A.t.prototype.ga2.call(d)).b).a){case 0:r=b.Y(0,new A.k(0,d.fx.c)) -q=B.uo -p=B.df -o=!0 -break -case 1:r=b -q=B.df -p=B.bx -o=!1 -break -case 2:r=b -q=B.bx -p=B.df -o=!1 -break -case 3:r=b.Y(0,new A.k(d.fx.c,0)) -q=B.ur -p=B.bx -o=!0 -break -default:o=c -r=o -p=r -q=p}n=d.a3$ -for(m=A.p(d).i("aj.1"),l=t.U;n!=null;){k=n.b -k.toString -k=l.a(k).a -k.toString -j=k-s.a(A.t.prototype.ga2.call(d)).d -k=r.a -i=q.a -k=k+i*j+p.a*0 -h=r.b -g=q.b -h=h+g*j+p.b*0 -f=new A.k(k,h) -if(o){e=d.oT(n) -f=new A.k(k+i*e,h+g*e)}if(j0)a.dc(n,f) -k=n.b -k.toString -n=m.a(k).ab$}}} -A.ajv.prototype={ -$1(a){var s=this.a,r=s.aG,q=this.b,p=this.c -if(r.ak(0,q)){r=r.F(0,q) -r.toString -q=r.b -q.toString -t.U.a(q) -s.jF(r) -r.b=q -s.Et(0,r,p) -q.c=!1}else s.al.anP(q,p)}, -$S:146} -A.ajx.prototype={ -$1(a){var s,r,q -for(s=this.a,r=this.b;s.a>0;){q=r.a3$ -q.toString -r.Pv(q);--s.a}for(;s.b>0;){q=r.d7$ -q.toString -r.Pv(q);--s.b}s=r.aG -s=s.gaR(s) -q=A.p(s).i("aL") -B.b.N(A.a8(new A.aL(s,new A.ajw(),q),!0,q.i("q.E")),r.al.gatK())}, -$S:146} -A.ajw.prototype={ -$1(a){var s=a.b -s.toString -return!t.U.a(s).vQ$}, -$S:379} -A.I7.prototype={ -ai(a){var s,r,q -this.dD(a) -s=this.a3$ -for(r=t.U;s!=null;){s.ai(a) -q=s.b -q.toString -s=r.a(q).ab$}}, -aa(a){var s,r,q -this.dE(0) -s=this.a3$ -for(r=t.U;s!=null;){s.aa(0) -q=s.b -q.toString -s=r.a(q).ab$}}} -A.a_5.prototype={} -A.a_6.prototype={} -A.a_Y.prototype={ -aa(a){this.tw(0)}} -A.a_Z.prototype={} -A.Dp.prototype={ -gIF(){var s=this,r=t.r -switch(A.lD(r.a(A.t.prototype.ga2.call(s)).a,r.a(A.t.prototype.ga2.call(s)).b).a){case 0:return s.c5.d -case 1:return s.c5.a -case 2:return s.c5.b -case 3:return s.c5.c}}, -galS(){var s=this,r=t.r -switch(A.lD(r.a(A.t.prototype.ga2.call(s)).a,r.a(A.t.prototype.ga2.call(s)).b).a){case 0:return s.c5.b -case 1:return s.c5.c -case 2:return s.c5.d -case 3:return s.c5.a}}, -ganW(){switch(A.bs(t.r.a(A.t.prototype.ga2.call(this)).a).a){case 0:var s=this.c5 -return s.gc6(s)+s.gca(s) -case 1:return this.c5.gdO()}}, -e7(a){if(!(a.b instanceof A.oT))a.b=new A.oT(B.e)}, -bs(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0=this,a1=null,a2=t.r,a3=a2.a(A.t.prototype.ga2.call(a0)),a4=a0.gIF() -a0.galS() -s=a0.c5 -s.toString -r=s.alW(A.bs(a2.a(A.t.prototype.ga2.call(a0)).a)) -q=a0.ganW() -if(a0.C$==null){p=a0.kp(a3,0,r) -a0.fx=A.t_(a0.v0(a3,0,r),!1,a1,a1,r,Math.min(p,a3.r),0,r,a1) -return}o=a0.kp(a3,0,a4) -n=a3.f -if(n>0)n=Math.max(0,n-o) -a2=a0.C$ -a2.toString -s=Math.max(0,a3.d-a4) -m=Math.min(0,a3.z+a4) -l=a3.r -k=a0.kp(a3,0,a4) -j=a3.Q -i=a0.v0(a3,0,a4) -h=Math.max(0,a3.w-q) -g=a3.a -f=a3.b -a2.bz(new A.oR(g,f,a3.c,s,a4+a3.e,n,l-k,h,a3.x,a3.y,m,j-i),!0) -e=a0.C$.fx -a2=e.y -if(a2!=null){a0.fx=A.t_(a1,!1,a1,a1,0,0,0,0,a2) -return}a2=e.a -s=a4+a2 -m=r+a2 -d=a0.kp(a3,s,m) -c=o+d -b=a0.v0(a3,0,a4) -a=a0.v0(a3,s,m) -s=e.c -k=e.d -p=Math.min(o+Math.max(s,k+d),l) -l=e.b -k=Math.min(c+k,p) -j=Math.min(a+b+e.z,j) -i=e.e -s=Math.max(c+s,o+e.r) -a0.fx=A.t_(j,e.x,s,k,r+i,p,l,m,a1) -m=a0.C$.b -m.toString -t.jB.a(m) -switch(A.lD(g,f).a){case 0:s=a0.c5 -l=s.a -a2=s.d+a2 -m.a=new A.k(l,a0.kp(a3,a2,a2+s.b)) -break -case 1:m.a=new A.k(a0.kp(a3,0,a0.c5.a),a0.c5.b) -break -case 2:a2=a0.c5 -m.a=new A.k(a2.a,a0.kp(a3,0,a2.b)) -break -case 3:s=a0.c5 -a2=s.c+a2 -m.a=new A.k(a0.kp(a3,a2,a2+s.a),a0.c5.b) -break}}, -Ko(a,b,c){var s,r,q,p=this,o=p.C$ -if(o!=null&&o.fx.r>0){o=o.b -o.toString -t.jB.a(o) -s=p.kp(t.r.a(A.t.prototype.ga2.call(p)),0,p.gIF()) -r=p.C$ -r.toString -r=p.amG(r) -o=o.a -q=p.C$.gaqv() -a.c.push(new A.yc(new A.k(-o.a,-o.b))) -q.$3$crossAxisPosition$mainAxisPosition(a,b-r,c-s) -a.D7()}return!1}, -amG(a){var s=this,r=t.r -switch(A.lD(r.a(A.t.prototype.ga2.call(s)).a,r.a(A.t.prototype.ga2.call(s)).b).a){case 0:case 2:return s.c5.a -case 3:case 1:return s.c5.b}}, -IT(a){return this.gIF()}, -d4(a,b){var s=a.b -s.toString -s=t.jB.a(s).a -b.aK(0,s.a,s.b)}, -ap(a,b){var s,r=this.C$ -if(r!=null&&r.fx.w){s=r.b -s.toString -a.dc(r,b.Y(0,t.jB.a(s).a))}}} -A.RH.prototype={ -ajf(){if(this.c5!=null)return -this.c5=this.d8}, -se4(a,b){var s=this -if(s.d8.j(0,b))return -s.d8=b -s.c5=null -s.W()}, -sbF(a){var s=this -if(s.h9===a)return -s.h9=a -s.c5=null -s.W()}, -bs(){this.ajf() -this.a3a()}} -A.a_4.prototype={ -ai(a){var s -this.dD(a) -s=this.C$ -if(s!=null)s.ai(a)}, -aa(a){var s -this.dE(0) -s=this.C$ -if(s!=null)s.aa(0)}} -A.Rd.prototype={ -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -return b instanceof A.Rd&&b.a===s.a&&b.b===s.b&&b.c===s.c&&b.d===s.d}, -gA(a){var s=this -return A.T(s.a,s.b,s.c,s.d,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){var s=this -return"RelativeRect.fromLTRB("+B.d.ad(s.a,1)+", "+B.d.ad(s.b,1)+", "+B.d.ad(s.c,1)+", "+B.d.ad(s.d,1)+")"}} -A.e2.prototype={ -gCl(){var s=this -return s.e!=null||s.f!=null||s.r!=null||s.w!=null||s.x!=null||s.y!=null}, -k(a){var s=this,r=A.b([],t.s),q=s.e -if(q!=null)r.push("top="+A.iC(q)) -q=s.f -if(q!=null)r.push("right="+A.iC(q)) -q=s.r -if(q!=null)r.push("bottom="+A.iC(q)) -q=s.w -if(q!=null)r.push("left="+A.iC(q)) -q=s.x -if(q!=null)r.push("width="+A.iC(q)) -q=s.y -if(q!=null)r.push("height="+A.iC(q)) -if(r.length===0)r.push("not positioned") -r.push(s.ts(0)) -return B.b.bH(r,"; ")}} -A.Ep.prototype={ -I(){return"StackFit."+this.b}} -A.wg.prototype={ -e7(a){if(!(a.b instanceof A.e2))a.b=new A.e2(null,null,B.e)}, -ajj(){var s=this -if(s.R!=null)return -s.R=s.a1.P(s.ar)}, -sh1(a){var s=this -if(s.a1.j(0,a))return -s.a1=a -s.R=null -s.W()}, -sbF(a){var s=this -if(s.ar==a)return -s.ar=a -s.R=null -s.W()}, -sBO(a){if(this.az!==a){this.az=a -this.W()}}, -sjA(a){var s=this -if(a!==s.aJ){s.aJ=a -s.av() -s.bo()}}, -bf(a){return A.rI(this.a3$,new A.ajC(a))}, -b7(a){return A.rI(this.a3$,new A.ajA(a))}, -b8(a){return A.rI(this.a3$,new A.ajB(a))}, -be(a){return A.rI(this.a3$,new A.ajz(a))}, -eS(a){return this.Jk(a)}, -cg(a){return this.Ti(a,A.pE())}, -Ti(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=this -e.ajj() -if(e.dG$===0){s=a.a -r=a.b -q=A.R(1/0,s,r) -p=a.c -o=a.d -n=A.R(1/0,p,o) -return isFinite(q)&&isFinite(n)?new A.Q(A.R(1/0,s,r),A.R(1/0,p,o)):new A.Q(A.R(0,s,r),A.R(0,p,o))}m=a.a -l=a.c -switch(e.az.a){case 0:k=new A.ar(0,a.b,0,a.d) -break -case 1:k=A.u0(new A.Q(A.R(1/0,m,a.b),A.R(1/0,l,a.d))) -break -case 2:k=a -break -default:k=null}j=e.a3$ -for(s=t.Q,i=l,h=m,g=!1;j!=null;){r=j.b -r.toString -s.a(r) -if(!r.gCl()){f=b.$2(j,k) -h=Math.max(h,f.a) -i=Math.max(i,f.b) -g=!0}j=r.ab$}return g?new A.Q(h,i):new A.Q(A.R(1/0,m,a.b),A.R(1/0,l,a.d))}, -bs(){var s,r,q,p,o,n,m,l=this,k="RenderBox was not laid out: ",j=t.k.a(A.t.prototype.ga2.call(l)) -l.B=!1 -l.id=l.Ti(j,A.tL()) -s=l.a3$ -for(r=t.Q,q=t.EP;s!=null;){p=s.b -p.toString -r.a(p) -if(!p.gCl()){o=l.R -o.toString -n=l.id -if(n==null)n=A.U(A.a4(k+A.u(l).k(0)+"#"+A.aV(l))) -m=s.id -p.a=o.o_(q.a(n.Z(0,m==null?A.U(A.a4(k+A.u(s).k(0)+"#"+A.aV(s))):m)))}else{o=l.id -if(o==null)o=A.U(A.a4(k+A.u(l).k(0)+"#"+A.aV(l))) -n=l.R -n.toString -l.B=A.aKt(s,p,o,n)||l.B}s=p.ab$}}, -co(a,b){return this.qB(a,b)}, -D3(a,b){this.od(a,b)}, -ap(a,b){var s,r=this,q=r.aJ!==B.m&&r.B,p=r.au -if(q){q=r.cx -q===$&&A.c() -s=r.gq(r) -p.saw(0,a.lP(q,b,new A.y(0,0,0+s.a,0+s.b),r.gYZ(),r.aJ,p.a))}else{p.saw(0,null) -r.D3(a,b)}}, -n(){this.au.saw(0,null) -this.h_()}, -lv(a){var s,r=this -switch(r.aJ.a){case 0:return null -case 1:case 2:case 3:if(r.B){s=r.gq(r) -s=new A.y(0,0,0+s.a,0+s.b)}else s=null -return s}}} -A.ajC.prototype={ -$1(a){return a.aq(B.V,this.a,a.gbj())}, -$S:14} -A.ajA.prototype={ -$1(a){return a.aq(B.a_,this.a,a.gbm())}, -$S:14} -A.ajB.prototype={ -$1(a){return a.aq(B.ab,this.a,a.gby())}, -$S:14} -A.ajz.prototype={ -$1(a){return a.aq(B.aU,this.a,a.gbZ())}, -$S:14} -A.Dg.prototype={ -fu(a){if(this.ha!=null&&this.a3$!=null)a.$1(this.Ff())}, -Ff(){var s,r=this.a3$,q=t.Q,p=this.ha,o=0 -while(!0){if(r!=null){p.toString -s=o=a||l>=b.length||!J.e(s,b[l]) -else s=!1 -if(s){s=j.B[m] -s.toString -p.E(0,s)}}for(o=0;i=o*a,i=s||o>=j.a1||!J.e(j.B[n+o*s],k) -else s=!1 -if(s)if(!p.F(0,b[l])){s=b[l] -s.toString -j.h0(s)}}++o}p.N(0,j.gaos()) -j.R=a -j.a1=B.h.jo(b.length,a) -j.B=A.a8(b,!0,t.Qv) -j.W()}, -MS(a,b,c){var s=this,r=a+b*s.R,q=s.B[r] -if(q==c)return -if(q!=null)s.jF(q) -B.b.m(s.B,r,c) -if(c!=null)s.h0(c)}, -ai(a){var s,r,q,p -this.dD(a) -for(s=this.B,r=s.length,q=0;q0){n=isFinite(p)?p:o -if(0p){i=l-p -h=q -while(!0){if(!(i>1e-10&&s>1e-10))break -for(g=0,r=0;r1e-10&&h>0))break -j=i/h -for(c=0,r=0;r0)if(b<=j){i-=b -a1[r]=f}else{i-=j -a1[r]=a0-j;++c}}h=c}}return a1}, -cg(a){var s,r,q,p,o,n,m,l,k,j=this -if(j.a1*j.R===0)return a.aX(B.o) -s=j.Fu(a) -r=B.b.vT(s,0,new A.ajE()) -for(q=t.o3,p=0,o=0;o=0;--p){o=p+1 -q[p]=q[o]+s[o]}a2.aU=new A.bN(q,A.W(q).i("bN<1>")) -a2.aN=B.b.gM(q)+B.b.gM(s) -break -case 1:q[0]=0 -for(p=1;p=0;--s){q=this.B[s] -if(q!=null){p=q.b -p.toString -r.a(p) -if(a.i4(new A.ajF(b,p,q),p.a,b))return!0}}return!1}, -ap(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=this -if(e.a1*e.R===0){s=b.a -r=b.b -q=e.aN -q===$&&A.c() -e.au.YV(a.gbU(a),new A.y(s,r,s+q,r+0),B.o1,B.o1) -return}if(e.aY!=null){p=a.gbU(a) -for(s=e.aB,r=b.a,q=b.b,o=e.gdR(),n=0;n")).N(0,a)}, -shx(a){if(a===this.B)return -this.B=a -this.W()}, -sWd(a){if(a===this.R)return -this.R=a -this.W()}, -sct(a,b){var s=this,r=s.a1 -if(b===r)return -if(s.y!=null)r.H(0,s.gCv()) -s.a1=b -if(s.y!=null)b.U(0,s.gCv()) -s.W()}, -samq(a){if(250===this.ar)return -this.ar=250 -this.W()}, -samr(a){if(a===this.aJ)return -this.aJ=a -this.W()}, -sjA(a){var s=this -if(a!==s.au){s.au=a -s.av() -s.bo()}}, -ai(a){this.a4u(a) -this.a1.U(0,this.gCv())}, -aa(a){this.a1.H(0,this.gCv()) -this.a4v(0)}, -bf(a){return 0}, -b7(a){return 0}, -b8(a){return 0}, -be(a){return 0}, -geZ(){return!0}, -KI(a,b,c,d,e,f,g,h,a0,a1,a2){var s,r,q,p,o,n,m,l,k=this,j=A.b4z(k.a1.k4,e),i=f+h -for(s=f,r=0;c!=null;){q=a2<=0?0:a2 -p=Math.max(b,-q) -o=b-p -c.bz(new A.oR(k.B,e,j,q,r,i-s,Math.max(0,a1-s+f),d,k.R,g,p,Math.max(0,a0+o)),!0) -n=c.fx -m=n.y -if(m!=null)return m -l=s+n.b -if(n.w||a2>0)k.M3(c,l,e) -else k.M3(c,-a2+f,e) -i=Math.max(l+n.c,i) -m=n.a -a2-=m -r+=m -s+=n.d -m=n.z -if(m!==0){a0-=m-o -b=Math.min(p+m,0)}k.a_p(e,n) -c=a.$1(c)}return 0}, -lv(a){var s,r,q,p,o,n,m=this -switch(m.au.a){case 0:return null -case 1:case 2:case 3:break}s=m.gq(m) -r=0+s.a -q=0+s.b -s=t.r -if(s.a(A.t.prototype.ga2.call(a)).f===0||!isFinite(s.a(A.t.prototype.ga2.call(a)).y))return new A.y(0,0,r,q) -p=s.a(A.t.prototype.ga2.call(a)).y-s.a(A.t.prototype.ga2.call(a)).r+s.a(A.t.prototype.ga2.call(a)).f -switch(A.lD(m.B,s.a(A.t.prototype.ga2.call(a)).b).a){case 2:o=0+p -n=0 -break -case 0:q-=p -n=0 -o=0 -break -case 1:n=0+p -o=0 -break -case 3:r-=p -n=0 -o=0 -break -default:n=0 -o=0}return new A.y(n,o,r,q)}, -Jo(a){var s,r,q,p,o=this -if(o.az==null){s=o.gq(o) -return new A.y(0,0,0+s.a,0+s.b)}switch(A.bs(o.B).a){case 1:o.gq(o) -o.gq(o) -s=o.az -s.toString -r=o.gq(o) -q=o.gq(o) -p=o.az -p.toString -return new A.y(0,0-s,0+r.a,0+q.b+p) -case 0:o.gq(o) -s=o.az -s.toString -o.gq(o) -r=o.gq(o) -q=o.az -q.toString -return new A.y(0-s,0,0+r.a+q,0+o.gq(o).b)}}, -ap(a,b){var s,r,q,p=this -if(p.a3$==null)return -s=p.gXH()&&p.au!==B.m -r=p.aY -if(s){s=p.cx -s===$&&A.c() -q=p.gq(p) -r.saw(0,a.lP(s,b,new A.y(0,0,0+q.a,0+q.b),p.gagf(),p.au,r.a))}else{r.saw(0,null) -p.RS(a,b)}}, -n(){this.aY.saw(0,null) -this.h_()}, -RS(a,b){var s,r,q,p,o,n,m -for(s=this.gIU(),r=s.length,q=b.a,p=b.b,o=0;o0}, -$S:380} -A.ajH.prototype={ -$1(a){var s=this,r=s.c,q=s.a,p=s.b.VH(r,q.b) -return r.XI(s.d,q.a,p)}, -$S:145} -A.Dr.prototype={ -e7(a){if(!(a.b instanceof A.mI))a.b=new A.mI(null,null,B.e)}, -sIy(a){if(a===this.f9)return -this.f9=a -this.W()}, -saT(a){if(a==this.dr)return -this.dr=a -this.W()}, -gka(){return!0}, -cg(a){return new A.Q(A.R(1/0,a.a,a.b),A.R(1/0,a.c,a.d))}, -bs(){var s,r,q,p,o,n,m,l,k,j=this -switch(A.bs(j.B).a){case 1:j.a1.qi(j.gq(j).b) -break -case 0:j.a1.qi(j.gq(j).a) -break}if(j.dr==null){j.mQ=j.hG=0 -j.ou=!1 -j.a1.qf(0,0) -return}switch(A.bs(j.B).a){case 1:s=j.gq(j).b -r=j.gq(j).a -break -case 0:s=j.gq(j).a -r=j.gq(j).b -break -default:s=null -r=null}j.dr.toString -q=0 -do{p=j.a1.at -p.toString -o=j.F2(s,r,p+0) -if(o!==0)j.a1.W0(o) -else{p=j.a1 -n=j.hG -n===$&&A.c() -m=j.f9 -n=Math.min(0,n+s*m) -l=j.mQ -l===$&&A.c() -if(p.qf(n,Math.max(0,l-s*(1-m))))break}k=q+1 -if(k<10){q=k -continue}else break}while(!0)}, -F2(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=this -e.mQ=e.hG=0 -e.ou=!1 -s=a*e.f9-c -r=A.R(s,0,a) -q=a-s -p=A.R(q,0,a) -switch(e.aJ.a){case 0:e.az=e.ar -break -case 1:e.az=a*e.ar -break}o=e.az -o.toString -n=a+2*o -m=s+o -l=A.R(m,0,n) -k=A.R(n-m,0,n) -j=e.dr.b -j.toString -i=A.p(e).i("aj.1").a(j).cn$ -j=i==null -if(!j){h=Math.max(a,s) -g=e.KI(e.gamE(),A.R(q,-o,0),i,b,B.nx,p,a,0,l,r,h-a) -if(g!==0)return-g}q=e.dr -o=-s -h=Math.max(0,o) -o=j?Math.min(0,o):0 -j=s>=a?s:r -f=e.az -f.toString -return e.KI(e.gVv(),A.R(s,-f,0),q,b,B.fH,j,a,o,k,p,h)}, -gXH(){return this.ou}, -a_p(a,b){var s,r=this -switch(a.a){case 0:s=r.mQ -s===$&&A.c() -r.mQ=s+b.a -break -case 1:s=r.hG -s===$&&A.c() -r.hG=s-b.a -break}if(b.x)r.ou=!0}, -M3(a,b,c){var s=a.b -s.toString -t.jB.a(s).a=this.VG(a,b,c)}, -Lg(a){var s=a.b -s.toString -return t.jB.a(s).a}, -MJ(a,b){var s,r,q,p,o=this -switch(t.r.a(A.t.prototype.ga2.call(a)).b.a){case 0:s=o.dr -for(r=A.p(o).i("aj.1"),q=0;s!==a;){q+=s.fx.a -p=s.b -p.toString -s=r.a(p).ab$}return q+b -case 1:r=o.dr.b -r.toString -p=A.p(o).i("aj.1") -s=p.a(r).cn$ -for(q=0;s!==a;){q-=s.fx.a -r=s.b -r.toString -s=p.a(r).cn$}return q-b}}, -YD(a){var s,r,q,p=this -switch(t.r.a(A.t.prototype.ga2.call(a)).b.a){case 0:s=p.dr -for(r=A.p(p).i("aj.1");s!==a;){s.fx.toString -q=s.b -q.toString -s=r.a(q).ab$}return 0 -case 1:r=p.dr.b -r.toString -q=A.p(p).i("aj.1") -s=q.a(r).cn$ -for(;s!==a;){s.fx.toString -r=s.b -r.toString -s=q.a(r).cn$}return 0}}, -d4(a,b){var s=a.b -s.toString -s=t.jB.a(s).a -b.aK(0,s.a,s.b)}, -VH(a,b){var s,r=a.b -r.toString -t.jB.a(r) -s=t.r -switch(A.lD(s.a(A.t.prototype.ga2.call(a)).a,s.a(A.t.prototype.ga2.call(a)).b).a){case 2:return b-r.a.b -case 1:return b-r.a.a -case 0:return a.fx.c-(b-r.a.b) -case 3:return a.fx.c-(b-r.a.a)}}, -gIU(){var s,r,q=this,p=A.b([],t.Ry),o=q.a3$ -if(o==null)return p -for(s=A.p(q).i("aj.1");o!=q.dr;){o.toString -p.push(o) -r=o.b -r.toString -o=s.a(r).ab$}o=q.d7$ -for(;!0;){o.toString -p.push(o) -if(o===q.dr)return p -r=o.b -r.toString -o=s.a(r).cn$}}, -gVy(){var s,r,q,p=this,o=A.b([],t.Ry) -if(p.a3$==null)return o -s=p.dr -for(r=A.p(p).i("aj.1");s!=null;){o.push(s) -q=s.b -q.toString -s=r.a(q).ab$}q=p.dr.b -q.toString -s=r.a(q).cn$ -for(;s!=null;){o.push(s) -q=s.b -q.toString -s=r.a(q).cn$}return o}} -A.RF.prototype={ -e7(a){if(!(a.b instanceof A.mH))a.b=new A.mH(null,null)}, -bs(){var s,r,q,p,o,n,m,l,k,j,i,h=this,g=t.k.a(A.t.prototype.ga2.call(h)) -if(h.a3$==null){switch(A.bs(h.B).a){case 1:h.id=new A.Q(g.b,g.c) -break -case 0:h.id=new A.Q(g.a,g.d) -break}h.a1.qi(0) -h.dr=h.f9=0 -h.hG=!1 -h.a1.qf(0,0) -return}switch(A.bs(h.B).a){case 1:s=g.d -r=g.b -break -case 0:s=g.b -r=g.d -break -default:s=null -r=null}q=g.a -p=g.b -o=g.c -n=g.d -m=null -do{l=h.a1.at -l.toString -k=h.F2(s,r,l) -if(k!==0)h.a1.W0(k) -else{switch(A.bs(h.B).a){case 1:l=h.dr -l===$&&A.c() -m=A.R(l,o,n) -break -case 0:l=h.dr -l===$&&A.c() -m=A.R(l,q,p) -break}h.a1.qi(m) -l=h.a1 -j=h.f9 -j===$&&A.c() -i=l.qf(0,Math.max(0,j-m)) -if(i)break}}while(!0) -switch(A.bs(h.B).a){case 1:h.id=new A.Q(A.R(r,q,p),A.R(m,o,n)) -break -case 0:h.id=new A.Q(A.R(m,q,p),A.R(r,o,n)) -break}}, -F2(a,b,c){var s,r,q,p,o,n=this -n.dr=n.f9=0 -n.hG=c<0 -switch(n.aJ.a){case 0:n.az=n.ar -break -case 1:n.az=a*n.ar -break}s=n.a3$ -r=Math.max(0,c) -q=Math.min(0,c) -p=Math.max(0,-c) -o=n.az -o.toString -return n.KI(n.gVv(),-o,s,b,B.fH,p,a,q,a+2*o,a+q,r)}, -gXH(){return this.hG}, -a_p(a,b){var s=this,r=s.f9 -r===$&&A.c() -s.f9=r+b.a -if(b.x)s.hG=!0 -r=s.dr -r===$&&A.c() -s.dr=r+b.e}, -M3(a,b,c){var s=a.b -s.toString -t.Xp.a(s).a=b}, -Lg(a){var s=a.b -s.toString -s=t.Xp.a(s).a -s.toString -return this.VG(a,s,B.fH)}, -MJ(a,b){var s,r,q,p=this.a3$ -for(s=A.p(this).i("aj.1"),r=0;p!==a;){r+=p.fx.a -q=p.b -q.toString -p=s.a(q).ab$}return r+b}, -YD(a){var s,r,q=this.a3$ -for(s=A.p(this).i("aj.1");q!==a;){q.fx.toString -r=q.b -r.toString -q=s.a(r).ab$}return 0}, -d4(a,b){var s=this.Lg(t.nl.a(a)) -b.aK(0,s.a,s.b)}, -VH(a,b){var s,r=this,q=a.b -q.toString -t.Xp.a(q) -s=t.r -switch(A.lD(s.a(A.t.prototype.ga2.call(a)).a,s.a(A.t.prototype.ga2.call(a)).b).a){case 2:case 1:q=q.a -q.toString -return b-q -case 0:s=r.gq(r) -q=q.a -q.toString -return s.b-b-q -case 3:s=r.gq(r) -q=q.a -q.toString -return s.a-b-q}}, -gIU(){var s,r,q=A.b([],t.Ry),p=this.d7$ -for(s=A.p(this).i("aj.1");p!=null;){q.push(p) -r=p.b -r.toString -p=s.a(r).cn$}return q}, -gVy(){var s,r,q=A.b([],t.Ry),p=this.a3$ -for(s=A.p(this).i("aj.1");p!=null;){q.push(p) -r=p.b -r.toString -p=s.a(r).ab$}return q}} -A.jc.prototype={ -ai(a){var s,r,q -this.dD(a) -s=this.a3$ -for(r=A.p(this).i("jc.0");s!=null;){s.ai(a) -q=s.b -q.toString -s=r.a(q).ab$}}, -aa(a){var s,r,q -this.dE(0) -s=this.a3$ -for(r=A.p(this).i("jc.0");s!=null;){s.aa(0) -q=s.b -q.toString -s=r.a(q).ab$}}} -A.DL.prototype={ -I(){return"ScrollDirection."+this.b}} -A.iw.prototype={ -wz(a,b,c,d){var s=d.a===B.q.a -if(s){this.eI(b) -return A.dt(null,t.H)}else return this.i5(b,c,d)}, -k(a){var s=this,r=A.b([],t.s) -s.a3A(r) -r.push(A.u(s.w).k(0)) -r.push(s.r.k(0)) -r.push(A.j(s.fr)) -r.push(s.k4.k(0)) -return"#"+A.aV(s)+"("+B.b.bH(r,", ")+")"}, -dZ(a){var s=this.at -if(s!=null)a.push("offset: "+B.d.ad(s,1))}} -A.aqm.prototype={ -I(){return"WrapAlignment."+this.b}} -A.Ul.prototype={ -I(){return"WrapCrossAlignment."+this.b}} -A.Ib.prototype={} -A.lr.prototype={} -A.Ds.prototype={ -sBm(a,b){if(this.B===b)return -this.B=b -this.W()}, -sh1(a){if(this.R===a)return -this.R=a -this.W()}, -sa1r(a,b){if(this.a1===b)return -this.a1=b -this.W()}, -sau9(a){if(this.ar===a)return -this.ar=a -this.W()}, -saue(a){if(this.az===a)return -this.az=a -this.W()}, -sJe(a){if(this.aJ===a)return -this.aJ=a -this.W()}, -e7(a){if(!(a.b instanceof A.lr))a.b=new A.lr(null,null,B.e)}, -bf(a){var s,r,q,p,o=this -switch(o.B.a){case 0:s=o.a3$ -for(r=A.p(o).i("aj.1"),q=0;s!=null;){q=Math.max(q,s.aq(B.V,1/0,s.gbj())) -p=s.b -p.toString -s=r.a(p).ab$}return q -case 1:return o.tM(new A.ar(0,1/0,0,a)).a}}, -b7(a){var s,r,q,p,o=this -switch(o.B.a){case 0:s=o.a3$ -for(r=A.p(o).i("aj.1"),q=0;s!=null;){q+=s.aq(B.a_,1/0,s.gbm()) -p=s.b -p.toString -s=r.a(p).ab$}return q -case 1:return o.tM(new A.ar(0,1/0,0,a)).a}}, -b8(a){var s,r,q,p,o=this -switch(o.B.a){case 0:return o.tM(new A.ar(0,a,0,1/0)).b -case 1:s=o.a3$ -for(r=A.p(o).i("aj.1"),q=0;s!=null;){q=Math.max(q,s.aq(B.ab,1/0,s.gby())) -p=s.b -p.toString -s=r.a(p).ab$}return q}}, -be(a){var s,r,q,p,o=this -switch(o.B.a){case 0:return o.tM(new A.ar(0,a,0,1/0)).b -case 1:s=o.a3$ -for(r=A.p(o).i("aj.1"),q=0;s!=null;){q+=s.aq(B.aU,1/0,s.gbZ()) -p=s.b -p.toString -s=r.a(p).ab$}return q}}, -eS(a){return this.Jk(a)}, -Gc(a){switch(this.B.a){case 0:return a.a -case 1:return a.b}}, -Ga(a){switch(this.B.a){case 0:return a.b -case 1:return a.a}}, -aay(a,b){switch(this.B.a){case 0:return new A.k(a,b) -case 1:return new A.k(b,a)}}, -aae(a,b,c){var s=b-c -switch(this.aJ.a){case 0:return a?s:0 -case 1:return a?0:s -case 2:return s/2}}, -cg(a){return this.tM(a)}, -tM(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f=this -switch(f.B.a){case 0:s=a.b -r=new A.ar(0,s,0,1/0) -break -case 1:s=a.d -r=new A.ar(0,1/0,0,s) -break -default:r=null -s=0}q=f.a3$ -for(p=A.p(f).i("aj.1"),o=0,n=0,m=0,l=0,k=0;q!=null;){j=A.aHx(q,r) -i=f.Gc(j) -h=f.Ga(j) -if(k>0&&m+i+f.a1>s){o=Math.max(o,m) -n+=l+f.az -m=0 -l=0 -k=0}m+=i -l=Math.max(l,h) -if(k>0)m+=f.a1;++k -g=q.b -g.toString -q=p.a(g).ab$}n+=l -o=Math.max(o,m) -switch(f.B.a){case 0:return a.aX(new A.Q(o,n)) -case 1:return a.aX(new A.Q(n,o))}}, -bs(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3=this,b4="RenderBox was not laid out: ",b5=t.k.a(A.t.prototype.ga2.call(b3)) -b3.c7=!1 -s=b3.a3$ -if(s==null){b3.id=new A.Q(A.R(0,b5.a,b5.b),A.R(0,b5.c,b5.d)) -return}switch(b3.B.a){case 0:r=b5.b -q=new A.ar(0,r,0,1/0) -p=b3.au===B.a4&&!0 -o=b3.aY===B.l2&&!0 -break -case 1:r=b5.d -q=new A.ar(0,1/0,0,r) -p=b3.aY===B.l2&&!0 -o=b3.au===B.a4&&!0 -break -default:q=null -r=0 -p=!1 -o=!1}n=b3.a1 -m=b3.az -l=A.b([],t.M6) -for(k=t.Qy,j=0,i=0,h=0,g=0,f=0;s!=null;){s.bz(q,!0) -e=s.id -d=b3.Gc(e==null?A.U(A.a4(b4+A.u(s).k(0)+"#"+A.aV(s))):e) -e=s.id -c=b3.Ga(e==null?A.U(A.a4(b4+A.u(s).k(0)+"#"+A.aV(s))):e) -if(f>0&&h+n+d>r){j=Math.max(j,h) -i+=g -if(l.length!==0)i+=m -l.push(new A.Ib(h,g,f)) -h=0 -g=0 -f=0}h+=d -if(f>0)h+=n -g=Math.max(g,c);++f -e=s.b -e.toString -k.a(e) -e.e=l.length -s=e.ab$}if(f>0){j=Math.max(j,h) -i+=g -if(l.length!==0)i+=m -l.push(new A.Ib(h,g,f))}b=l.length -switch(b3.B.a){case 0:b3.id=b5.aX(new A.Q(j,i)) -a=b3.gq(b3).a -a0=b3.gq(b3).b -break -case 1:b3.id=b5.aX(new A.Q(i,j)) -a=b3.gq(b3).b -a0=b3.gq(b3).a -break -default:a=0 -a0=0}b3.c7=a1?a1/(b-1):0 -a2=0 -break -case 4:a3=a1/b -a2=a3/2 -break -case 5:a3=a1/(b+1) -a2=a3 -break -default:a2=0 -a3=0}a3+=m -a4=o?a0-a2:a2 -s=b3.a3$ -for(a5=0;a51?a7/(f-1):0 -a8=0 -break -case 4:a9=a7/f -a8=a9/2 -break -case 5:a9=a7/(f+1) -a8=a9 -break -default:a8=0 -a9=0}a9+=n -b0=p?a-a8:a8 -if(o)a4-=g -for(;s!=null;){e=s.b -e.toString -k.a(e) -if(e.e!==a5)break -b1=s.id -d=b3.Gc(b1==null?A.U(A.a4(b4+A.u(s).k(0)+"#"+A.aV(s))):b1) -b1=s.id -b2=b3.aae(o,g,b3.Ga(b1==null?A.U(A.a4(b4+A.u(s).k(0)+"#"+A.aV(s))):b1)) -if(p)b0-=d -e.a=b3.aay(b0,a4+b2) -b0=p?b0-a9:b0+(d+a9) -s=e.ab$}a4=o?a4-a3:a4+(g+a3)}}, -co(a,b){return this.qB(a,b)}, -ap(a,b){var s,r=this,q=r.c7&&r.b9!==B.m,p=r.c0 -if(q){q=r.cx -q===$&&A.c() -s=r.gq(r) -p.saw(0,a.lP(q,b,new A.y(0,0,0+s.a,0+s.b),r.gWm(),r.b9,p.a))}else{p.saw(0,null) -r.od(a,b)}}, -n(){this.c0.saw(0,null) -this.h_()}} -A.a_c.prototype={ -ai(a){var s,r,q -this.dD(a) -s=this.a3$ -for(r=t.Qy;s!=null;){s.ai(a) -q=s.b -q.toString -s=r.a(q).ab$}}, -aa(a){var s,r,q -this.dE(0) -s=this.a3$ -for(r=t.Qy;s!=null;){s.aa(0) -q=s.b -q.toString -s=r.a(q).ab$}}} -A.a_d.prototype={} -A.xP.prototype={} -A.rP.prototype={ -I(){return"SchedulerPhase."+this.b}} -A.aho.prototype={} -A.f4.prototype={ -ZK(a){var s=this.fx$ -B.b.F(s,a) -if(s.length===0){s=$.bi() -s.ay=null -s.ch=$.ai}}, -a9y(a){var s,r,q,p,o,n,m,l,k=this.fx$,j=A.a8(k,!0,t.xt) -for(p=j.length,o=0;o0)return!1 -if(j)A.U(A.a4(l)) -s=k.yF(0) -j=s.b -if(m.go$.$2$priority$scheduler(j,m)){try{if(k.c===0)A.U(A.a4(l));++k.d -k.yF(0) -p=k.c-1 -o=k.yF(p) -k.b[p]=null -k.c=p -if(p>0)k.a6Y(o,0) -j=s -j.f.dm(0,j.avG())}catch(n){r=A.a6(n) -q=A.aJ(n) -j=A.bu("during a task callback") -A.cY(new A.bH(r,q,"scheduler library",j,null,!1))}return k.c!==0}return!1}, -t3(a,b){var s,r=this -r.l6() -s=++r.k2$ -r.k3$.m(0,s,new A.xP(a)) -return r.k2$}, -E3(a){return this.t3(a,!1)}, -gaoA(){var s=this -if(s.p2$==null){if(s.p4$===B.dr)s.l6() -s.p2$=new A.b3(new A.ae($.ai,t.c),t.h) -s.p1$.push(new A.akq(s))}return s.p2$.a}, -gXn(){return this.R8$}, -T0(a){if(this.R8$===a)return -this.R8$=a -if(a)this.l6()}, -WU(){var s=$.bi() -if(s.w==null){s.w=this.gaaV() -s.x=$.ai}if(s.y==null){s.y=this.gabn() -s.z=$.ai}}, -JO(){switch(this.p4$.a){case 0:case 4:this.l6() -return -case 1:case 2:case 3:return}}, -l6(){var s,r=this -if(!r.p3$)s=!(A.f4.prototype.gXn.call(r)&&r.V$) -else s=!0 -if(s)return -r.WU() -$.bi().l6() -r.p3$=!0}, -a0o(){if(this.p3$)return -this.WU() -$.bi().l6() -this.p3$=!0}, -MI(){var s,r,q=this -if(q.RG$||q.p4$!==B.dr)return -q.RG$=!0 -s=A.aLi() -s.y_(0,"Warm-up frame") -r=q.p3$ -A.cM(B.q,new A.aks(q)) -A.cM(B.q,new A.akt(q,r)) -q.arS(new A.aku(q,s))}, -Os(a){var s=this.rx$ -return A.d2(B.d.bE((s==null?B.q:new A.b8(a.a-s.a)).a/1)+this.ry$.a,0,0)}, -aaW(a){if(this.RG$){this.y1$=!0 -return}this.Xr(a)}, -abo(){var s=this -if(s.y1$){s.y1$=!1 -s.p1$.push(new A.akp(s)) -return}s.Xt()}, -Xr(a){var s,r,q=this -if(q.rx$==null)q.rx$=a -r=a==null -q.x1$=q.Os(r?q.to$:a) -if(!r)q.to$=a -q.p3$=!1 -try{q.p4$=B.NU -s=q.k3$ -q.k3$=A.m(t.S,t.h1) -J.fX(s,new A.akr(q)) -q.k4$.a0(0)}finally{q.p4$=B.NV}}, -atY(a){var s=this,r=s.b_$,q=r==null -if(!q&&r!==a)return null -if(r===a)++s.bn$ -else if(q){s.b_$=a -s.bn$=1}return new A.aho(s.ga9_())}, -a90(){if(--this.bn$===0){this.b_$=null -$.bi()}}, -Xt(){var s,r,q,p,o,n,m,l=this -try{l.p4$=B.kj -for(p=l.ok$,o=p.length,n=0;n0&&r<4){s=s.x1$ -s.toString -q.c=s}s=q.a -s.toString -return s}, -tn(a,b){var s=this,r=s.a -if(r==null)return -s.c=s.a=null -s.DG() -if(b)r.TI(s) -else r.TJ()}, -ff(a){return this.tn(a,!1)}, -ak6(a){var s,r=this -r.e=null -s=r.c -if(s==null)s=r.c=a -r.d.$1(new A.b8(a.a-s.a)) -if(!r.b&&r.a!=null&&r.e==null)r.e=$.c6.t3(r.gA3(),!0)}, -DG(){var s,r=this.e -if(r!=null){s=$.c6 -s.k3$.F(0,r) -s.k4$.E(0,r) -this.e=null}}, -n(){var s=this,r=s.a -if(r!=null){s.a=null -s.DG() -r.TI(s)}}, -aus(a,b){var s=""+"Ticker()" -return s.charCodeAt(0)==0?s:s}, -k(a){return this.aus(a,!1)}} -A.t9.prototype={ -TJ(){this.c=!0 -this.a.fN(0) -var s=this.b -if(s!=null)s.fN(0)}, -TI(a){var s -this.c=!1 -s=this.b -if(s!=null)s.lr(new A.F8(a))}, -av2(a){var s,r,q=this,p=new A.apk(a) -if(q.b==null){s=q.b=new A.b3(new A.ae($.ai,t.c),t.h) -r=q.c -if(r!=null)if(r)s.fN(0) -else s.lr(B.Ur)}q.b.a.hj(0,p,p,t.H)}, -o5(a,b){return this.a.a.o5(a,b)}, -kq(a){return this.o5(a,null)}, -hj(a,b,c,d){return this.a.a.hj(0,b,c,d)}, -bQ(a,b,c){return this.hj(a,b,null,c)}, -fY(a){return this.a.a.fY(a)}, -k(a){var s=A.aV(this),r=this.c -if(r==null)r="active" -else r=r?"complete":"canceled" -return"#"+s+"("+r+")"}, -$iat:1} -A.apk.prototype={ -$1(a){this.a.$0()}, -$S:20} -A.F8.prototype={ -k(a){var s=this.a -if(s!=null)return"This ticker was canceled: "+s.k(0) -return'The ticker was canceled before the "orCancel" property was first used.'}, -$ibV:1} -A.Sg.prototype={ -gur(){var s,r=this.JV$ -if(r===$){s=A.eu($.bi().a.c,t.y) -this.JV$!==$&&A.aW() -this.JV$=s -r=s}return r}, -a8R(){--this.JW$ -this.gur().sl(0,this.JW$>0)}, -QT(){var s,r=this -if($.bi().a.c){if(r.BF$==null){++r.JW$ -r.gur().sl(0,!0) -r.BF$=new A.alc(r.ga8Q())}}else{s=r.BF$ -if(s!=null)s.a.$0() -r.BF$=null}}, -ad_(a){var s,r,q=a.d -if(t.V4.b(q)){s=B.az.h5(q) -if(J.e(s,B.dG))s=q -r=new A.wx(a.a,a.b,a.c,s)}else r=a -s=this.au$ -s===$&&A.c() -s=s.at -if(s!=null)s.atb(r.c,r.a,r.d)}} -A.alc.prototype={} -A.jR.prototype={ -k(a){return"SemanticsTag("+this.a+")"}} -A.u8.prototype={} -A.LG.prototype={} -A.d0.prototype={ -Y(a,b){var s,r,q,p,o,n,m,l=this.a,k=l.length -if(k===0)return b -s=b.a -if(s.length===0)return this -r=A.a8(this.b,!0,t.Vc) -q=b.b -p=q.length -if(p!==0)for(o=0;o=0;--o)r[o]=n[q-o-1].b}n=a3.fr -m=n.length -if(m!==0){l=new Int32Array(m) -for(o=0;o0?r[n-1].p2:null -if(n!==0)if(J.Y(l)===J.Y(o)){if(l!=null)o.toString -k=!0}else k=!1 -else k=!0 -if(!k&&p.length!==0){if(o!=null){if(!!p.immutable$list)A.U(A.V("sort")) -s=p.length-1 -if(s-0<=32)A.t1(p,0,s,J.yJ()) -else A.t0(p,0,s,J.yJ())}B.b.K(q,p) -B.b.a0(p)}p.push(new A.n2(m,l,n))}if(o!=null)B.b.jl(p) -B.b.K(q,p) -s=t.rB -return A.a8(new A.a1(q,new A.ale(),s),!0,s.i("am.E"))}, -a0A(a){if(this.ay==null)return -B.lF.eN(0,a.a_b(this.b))}, -df(){return"SemanticsNode#"+this.b}, -auo(a,b,c){return new A.a_E(a,this,b,!0,!0,null,c)}, -a_9(a){return this.auo(B.EI,null,a)}} -A.alg.prototype={ -$1(a){var s,r,q,p=this.a -p.a=p.a|a.fr -s=p.b -r=a.z -q=a.dx -p.b=s|(r?q&$.a3B():q) -if(p.x==null)p.x=a.p1 -if(p.z==null)p.z=a.p3 -if(p.Q==null)p.Q=a.R8 -if(p.as==null)p.as=a.RG -if(p.at==null)p.at=a.rx -if(p.ax==null)p.ax=a.ry -if(p.ay==null)p.ay=a.to -p.ch=a.x1 -p.CW=a.x2 -if(p.cx==null)p.cx=a.xr -if(p.d.a==="")p.d=a.fy -if(p.e.a==="")p.e=a.go -if(p.f.a==="")p.f=a.id -if(p.w==="")p.w=a.k2 -s=a.dy -if(s!=null){r=p.y;(r==null?p.y=A.aE(t.g3):r).K(0,s)}for(s=this.b.db,s=A.fh(s,s.r,A.p(s).c),r=this.c;s.u();)r.E(0,A.aHQ(s.d)) -a.ok!=null -s=p.c -r=p.x -p.c=A.azQ(a.fx,a.p1,s,r) -r=p.r -s=p.x -p.r=A.azQ(a.k1,a.p1,r,s) -p.cy=Math.max(p.cy,a.k4+a.k3) -return!0}, -$S:107} -A.ale.prototype={ -$1(a){return a.a}, -$S:386} -A.mS.prototype={ -bi(a,b){return B.d.bi(this.b,b.b)}, -$ic9:1} -A.k9.prototype={ -bi(a,b){return B.d.bi(this.a,b.a)}, -a1q(){var s,r,q,p,o,n,m,l,k,j=A.b([],t.TV) -for(s=this.c,r=s.length,q=0;q") -return A.a8(new A.i8(n,new A.axn(),s),!0,s.i("q.E"))}, -a1p(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3=this.c,a4=a3.length -if(a4<=1)return a3 -s=t.S -r=A.m(s,t.bu) -q=A.m(s,s) -for(p=this.b,o=p===B.a4,p=p===B.p,n=a4,m=0;m2.356194490192345 -else a0=!1 -if(a||a0)q.m(0,l.b,f.b)}}a1=A.b([],t.t) -a2=A.b(a3.slice(0),A.W(a3)) -B.b.dX(a2,new A.axj()) -new A.a1(a2,new A.axk(),A.W(a2).i("a1<1,o>")).N(0,new A.axm(A.aE(s),q,a1)) -a3=t.qn -a3=A.a8(new A.a1(a1,new A.axl(r),a3),!0,a3.i("am.E")) -a4=A.W(a3).i("bN<1>") -return A.a8(new A.bN(a3,a4),!0,a4.i("am.E"))}, -$ic9:1} -A.axn.prototype={ -$1(a){return a.a1p()}, -$S:225} -A.axj.prototype={ -$2(a,b){var s,r,q=a.e,p=A.tG(a,new A.k(q.a,q.b)) -q=b.e -s=A.tG(b,new A.k(q.a,q.b)) -r=B.d.bi(p.b,s.b) -if(r!==0)return-r -return-B.d.bi(p.a,s.a)}, -$S:108} -A.axm.prototype={ -$1(a){var s=this,r=s.a -if(r.t(0,a))return -r.E(0,a) -r=s.b -if(r.ak(0,a)){r=r.h(0,a) -r.toString -s.$1(r)}s.c.push(a)}, -$S:49} -A.axk.prototype={ -$1(a){return a.b}, -$S:389} -A.axl.prototype={ -$1(a){var s=this.a.h(0,a) -s.toString -return s}, -$S:390} -A.azL.prototype={ -$1(a){return a.a1q()}, -$S:225} -A.n2.prototype={ -bi(a,b){var s,r=this.b -if(r==null||b.b==null)return this.c-b.c -r.toString -s=b.b -s.toString -return r.bi(0,s)}, -$ic9:1} -A.DZ.prototype={ -n(){var s=this -s.b.a0(0) -s.c.a0(0) -s.d.a0(0) -s.d3()}, -a0C(){var s,r,q,p,o,n,m,l,k,j,i,h,g=this,f=g.b -if(f.a===0)return -s=A.aE(t.S) -r=A.b([],t.QF) -for(q=A.p(f).i("aL<1>"),p=q.i("q.E"),o=g.d;f.a!==0;){n=A.a8(new A.aL(f,new A.alk(g),q),!0,p) -f.a0(0) -o.a0(0) -m=new A.all() -if(!!n.immutable$list)A.U(A.V("sort")) -l=n.length-1 -if(l-0<=32)A.t1(n,0,l,m) -else A.t0(n,0,l,m) -B.b.K(r,n) -for(m=n.length,k=0;k#"+A.aV(this)}} -A.alk.prototype={ -$1(a){return!this.a.d.t(0,a)}, -$S:107} -A.all.prototype={ -$2(a,b){return a.CW-b.CW}, -$S:108} -A.alm.prototype={ -$2(a,b){return a.CW-b.CW}, -$S:108} -A.alj.prototype={ -$1(a){if(a.cy.ak(0,this.b)){this.a.a=a -return!1}return!0}, -$S:107} -A.jQ.prototype={ -nF(a,b){var s=this -s.f.m(0,a,b) -s.r=s.r|a.a -s.e=!0}, -fD(a,b){this.nF(a,new A.al1(b))}, -slM(a){a.toString -this.fD(B.cR,a) -this.w=a}, -sn4(a){a.toString -this.fD(B.ym,a)}, -sCT(a){this.fD(B.eI,a)}, -sCL(a){this.fD(B.Oh,a)}, -sCU(a){this.fD(B.eJ,a)}, -sCV(a){this.fD(B.eG,a)}, -sCS(a){this.fD(B.eH,a)}, -sL5(a){this.fD(B.yo,a)}, -sL_(a){this.fD(B.yl,a)}, -sCI(a,b){this.fD(B.Oi,b)}, -sCJ(a,b){this.fD(B.Ol,b)}, -sCR(a,b){this.fD(B.Od,b)}, -sCP(a){this.nF(B.Oj,new A.al5(a))}, -sCN(a){this.nF(B.Om,new A.al3(a))}, -sCQ(a){this.nF(B.Ok,new A.al6(a))}, -sCO(a){this.nF(B.Oc,new A.al4(a))}, -sCX(a){this.nF(B.Oe,new A.al7(a))}, -sCY(a){this.nF(B.Of,new A.al8(a))}, -sCK(a){this.fD(B.yn,a)}, -sL0(a){this.fD(B.yp,a)}, -sa0r(a){if(a==this.k4)return -this.k4=a -this.e=!0}, -sa0s(a){if(a==this.ok)return -this.ok=a -this.e=!0}, -sKQ(a){return}, -sBa(a){if(a==this.p3)return -this.p3=a -this.e=!0}, -sjH(a,b){if(b===this.y1)return -this.y1=b -this.e=!0}, -Iu(a){var s=this.bS;(s==null?this.bS=A.aE(t.g3):s).E(0,a)}, -bc(a,b){var s=this,r=s.bk,q=a.a -if(b)s.bk=r|q -else s.bk=r&~q -s.e=!0}, -Ya(a){var s=this -if(a==null||!a.e||!s.e)return!0 -if((s.r&a.r)!==0)return!1 -if((s.bk&a.bk)!==0)return!1 -if(s.p3!=null&&a.p3!=null)return!1 -if(s.rx.a.length!==0&&a.rx.a.length!==0)return!1 -return!0}, -q9(a){var s,r,q,p=this -if(!a.e)return -s=a.f -if(a.b)s.N(0,new A.al2(p)) -else p.f.K(0,s) -s=p.r -r=a.b -q=a.r -p.r=s|(r?q&$.a3B():q) -p.R8.K(0,a.R8) -p.bk=p.bk|a.bk -if(p.bn==null)p.bn=a.bn -if(p.al==null)p.al=a.al -if(p.aG==null)p.aG=a.aG -if(p.bd==null)p.bd=a.bd -if(p.xr==null)p.xr=a.xr -if(p.k3==null)p.k3=a.k3 -if(p.ok==null)p.ok=a.ok -if(p.k4==null)p.k4=a.k4 -p.p1=a.p1 -p.p2=a.p2 -if(p.p3==null)p.p3=a.p3 -s=p.b_ -if(s==null){s=p.b_=a.b_ -p.e=!0}if(p.k2==null)p.k2=a.k2 -r=p.RG -p.RG=A.azQ(a.RG,a.b_,r,s) -if(p.rx.a==="")p.rx=a.rx -if(p.ry.a==="")p.ry=a.ry -if(p.to.a==="")p.to=a.to -s=p.x1 -r=p.b_ -p.x1=A.azQ(a.x1,a.b_,s,r) -if(p.x2==="")p.x2=a.x2 -p.y2=Math.max(p.y2,a.y2+a.y1) -p.e=p.e||a.e}, -ank(){var s=this,r=A.l6() -r.a=s.a -r.c=s.c -r.d=s.d -r.e=s.e -r.p4=s.p4 -r.b_=s.b_ -r.k2=s.k2 -r.RG=s.RG -r.ry=s.ry -r.rx=s.rx -r.to=s.to -r.x1=s.x1 -r.xr=s.xr -r.x2=s.x2 -r.y1=s.y1 -r.y2=s.y2 -r.bk=s.bk -r.bS=s.bS -r.bn=s.bn -r.al=s.al -r.aG=s.aG -r.bd=s.bd -r.r=s.r -r.k3=s.k3 -r.ok=s.ok -r.k4=s.k4 -r.p1=s.p1 -r.p2=s.p2 -r.p3=s.p3 -r.f.K(0,s.f) -r.R8.K(0,s.R8) -r.b=s.b -return r}} -A.al1.prototype={ -$1(a){this.a.$0()}, -$S:6} -A.al5.prototype={ -$1(a){a.toString -this.a.$1(A.fb(a))}, -$S:6} -A.al3.prototype={ -$1(a){a.toString -this.a.$1(A.fb(a))}, -$S:6} -A.al6.prototype={ -$1(a){a.toString -this.a.$1(A.fb(a))}, -$S:6} -A.al4.prototype={ -$1(a){a.toString -this.a.$1(A.fb(a))}, -$S:6} -A.al7.prototype={ -$1(a){var s,r,q -a.toString -s=J.yS(t.f.a(a),t.N,t.S) -r=s.h(0,"base") -r.toString -q=s.h(0,"extent") -q.toString -this.a.$1(A.cq(B.l,r,q,!1))}, -$S:6} -A.al8.prototype={ -$1(a){a.toString -this.a.$1(A.aQ(a))}, -$S:6} -A.al2.prototype={ -$2(a,b){if(($.a3B()&a.a)>0)this.a.f.m(0,a,b)}, -$S:392} -A.a6T.prototype={ -I(){return"DebugSemanticsDumpOrder."+this.b}} -A.wy.prototype={ -bi(a,b){var s=this.aon(b) -return s}, -$ic9:1} -A.rk.prototype={ -aon(a){var s=a.b,r=this.b -if(s===r)return 0 -return B.h.bi(r,s)}} -A.a_D.prototype={} -A.a_G.prototype={} -A.a_H.prototype={} -A.ala.prototype={ -a_b(a){var s=A.l(["type",this.a,"data",this.xw()],t.N,t.z) -if(a!=null)s.m(0,"nodeId",a) -return s}, -aur(){return this.a_b(null)}, -k(a){var s,r,q=A.b([],t.s),p=this.xw(),o=p.gbI(p),n=A.a8(o,!0,A.p(o).i("q.E")) -B.b.jl(n) -for(o=n.length,s=0;s#"+A.aV(this)+"()"}} -A.a5u.prototype={ -oJ(a,b){if(b)return this.a.bT(0,a,new A.a5v(this,a)) -return this.Nm(a,!0)}, -arP(a){return this.oJ(a,!0)}, -arR(a,b,c){var s,r={},q=this.c -if(q.ak(0,a)){r=q.h(0,a) -r.toString -return c.i("at<0>").a(r)}r.a=r.b=null -this.jU(0,a).bQ(0,b,c).hj(0,new A.a5w(r,this,a,c),new A.a5x(r),t.H) -s=r.a -if(s!=null)return s -s=new A.ae($.ai,c.i("ae<0>")) -r.b=new A.b3(s,c.i("b3<0>")) -q.m(0,a,s) -return r.b.a}} -A.a5v.prototype={ -$0(){return this.a.Nm(this.b,!0)}, -$S:393} -A.a5w.prototype={ -$1(a){var s=this,r=new A.cW(a,s.d.i("cW<0>")),q=s.a -q.a=r -s.b.c.m(0,s.c,r) -q=q.b -if(q!=null)q.dm(0,a)}, -$S(){return this.d.i("b1(0)")}} -A.a5x.prototype={ -$2(a,b){this.a.b.o8(a,b)}, -$S:36} -A.ahE.prototype={ -jU(a,b){var s,r=B.d2.cm(A.a1A(null,A.lA(B.dc,b,B.A,!1),null).e),q=$.fH.eW$ -q===$&&A.c() -s=q.xK(0,"flutter/assets",A.rh(r.buffer,0,null)).bQ(0,new A.ahF(b),t.V4) -return s}, -wn(a){return this.arN(a)}, -arN(a){var s=0,r=A.I(t.SG),q,p=this,o,n -var $async$wn=A.D(function(b,c){if(b===1)return A.F(c,r) -while(true)switch(s){case 0:o=A -n=A -s=3 -return A.K(p.jU(0,a),$async$wn) -case 3:q=o.va(n.dm(c.buffer,0,null)) -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$wn,r)}} -A.ahF.prototype={ -$1(a){if(a==null)throw A.d(A.uU(A.b([A.b3k(this.a),A.bu("The asset does not exist or has empty data.")],t.E))) -return a}, -$S:394} -A.xv.prototype={ -a_S(a){var s,r,q,p=this.b -if(!p.ak(0,a)){s=this.a -r=J.X(s) -if(r.h(s,a)==null)return null -q=r.h(s,a) -if(q==null)q=[] -q=J.fW(t.VG.a(q),t.pE) -p.m(0,a,q.ew(q,new A.ar1(a),t.pR).eM(0)) -r.F(s,a)}p=p.h(0,a) -p.toString -return p}, -$ia4t:1} -A.ar1.prototype={ -$1(a){var s,r=J.X(a),q=r.h(a,"asset") -q.toString -A.aQ(q) -s=r.h(a,"dpr") -r=r.h(a,"asset") -r.toString -A.aQ(r) -return new A.nm(A.b2E(s),r)}, -$S:395} -A.nm.prototype={} -A.zq.prototype={ -cq(){var s,r,q=this -if(q.a){s=A.m(t.N,t.z) -s.m(0,"uniqueIdentifier",q.b) -s.m(0,"hints",q.c) -s.m(0,"editingValue",q.d.nh(0)) -r=q.e -if(r!=null)s.m(0,"hintText",r)}else s=null -return s}} -A.a5_.prototype={} -A.wz.prototype={ -adU(){var s,r,q=this,p=t.v3,o=new A.abP(A.m(p,t.bd),A.aE(t.SQ),A.b([],t.sA)) -q.dA$!==$&&A.cQ() -q.dA$=o -s=$.aC6() -r=A.b([],t.K0) -q.aA$!==$&&A.cQ() -q.aA$=new A.OM(o,s,r,A.aE(p)) -p=q.dA$ -p===$&&A.c() -p.yd().bQ(0,new A.alt(q),t.P)}, -vX(){var s=$.Ky() -s.a.a0(0) -s.b.a0(0) -s.c.a0(0)}, -mW(a){return this.aq7(a)}, -aq7(a){var s=0,r=A.I(t.H),q,p=this -var $async$mW=A.D(function(b,c){if(b===1)return A.F(c,r) -while(true)switch(s){case 0:switch(A.aQ(J.aN(t.a.a(a),"type"))){case"memoryPressure":p.vX() -break}s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$mW,r)}, -a6w(){var s=A.bg("controller") -s.scM(A.SW(null,new A.als(s),null,t.hz)) -return J.aGX(s.aI())}, -atv(){if(this.fy$==null)$.bi() -return}, -Gn(a){return this.abR(a)}, -abR(a){var s=0,r=A.I(t.u),q,p=this,o,n -var $async$Gn=A.D(function(b,c){if(b===1)return A.F(c,r) -while(true)switch(s){case 0:a.toString -o=A.b_S(a) -n=p.fy$ -o.toString -B.b.N(p.aa6(n,o),p.gapm()) -q=null -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$Gn,r)}, -aa6(a,b){var s,r,q,p -if(a===b)return B.IH -if(a===B.il&&b===B.f4)return B.HO -s=A.b([],t.QP) -if(a==null)s.push(b) -else{r=B.b.d9(B.fU,a) -q=B.b.d9(B.fU,b) -if(r>q)for(p=q;p") -r=A.hJ(new A.bm(e,s),s.i("q.E")) -q=A.b([],t.K0) -p=e.h(0,d) -o=$.fH.to$ -n=a.a -if(n==="")n=f -if(a instanceof A.l3)if(p==null){m=new A.qV(d,c,n,o,!1) -r.E(0,d)}else m=new A.Bw(d,p,n,o,!1) -else if(p==null)m=f -else{m=new A.o9(d,p,f,o,!1) -r.F(0,d)}for(s=this.c.d,l=A.p(s).i("bm<1>"),k=l.i("q.E"),j=r.oh(A.hJ(new A.bm(s,l),k)),j=j.ga9(j),i=this.e;j.u();){h=j.gJ(j) -if(h.j(0,d))q.push(new A.o9(h,c,f,o,!0)) -else{g=e.h(0,h) -g.toString -i.push(new A.o9(h,g,f,o,!0))}}for(e=A.hJ(new A.bm(s,l),k).oh(r),e=e.ga9(e);e.u();){l=e.gJ(e) -k=s.h(0,l) -k.toString -i.push(new A.qV(l,k,f,o,!0))}if(m!=null)i.push(m) -B.b.K(i,q)}} -A.XG.prototype={} -A.aeA.prototype={ -k(a){return"KeyboardInsertedContent("+this.a+", "+this.b+", "+A.j(this.c)+")"}, -j(a,b){var s,r,q=this -if(b==null)return!1 -if(J.Y(b)!==A.u(q))return!1 -if(b instanceof A.aeA)if(b.a===q.a)if(b.b===q.b){s=b.c -r=q.c -r=s==null?r==null:s===r -s=r}else s=!1 -else s=!1 -else s=!1 -return s}, -gA(a){return A.T(this.a,this.b,this.c,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.aeB.prototype={} -A.i.prototype={ -gA(a){return B.h.gA(this.a)}, -j(a,b){if(b==null)return!1 -if(this===b)return!0 -if(J.Y(b)!==A.u(this))return!1 -return b instanceof A.i&&b.a===this.a}} -A.r.prototype={ -gA(a){return B.h.gA(this.a)}, -j(a,b){if(b==null)return!1 -if(this===b)return!0 -if(J.Y(b)!==A.u(this))return!1 -return b instanceof A.r&&b.a===this.a}} -A.XH.prototype={} -A.kQ.prototype={ -k(a){return"MethodCall("+this.a+", "+A.j(this.b)+")"}} -A.ov.prototype={ -k(a){var s=this -return"PlatformException("+s.a+", "+A.j(s.b)+", "+A.j(s.c)+", "+A.j(s.d)+")"}, -$ibV:1} -A.C0.prototype={ -k(a){return"MissingPluginException("+A.j(this.a)+")"}, -$ibV:1} -A.amP.prototype={ -h5(a){if(a==null)return null -return B.cw.cm(A.dm(a.buffer,a.byteOffset,a.byteLength))}, -cD(a){if(a==null)return null -return A.rh(B.d2.cm(a).buffer,0,null)}} -A.ae9.prototype={ -cD(a){if(a==null)return null -return B.iv.cD(B.ar.j0(a))}, -h5(a){var s -if(a==null)return a -s=B.iv.h5(a) -s.toString -return B.ar.ea(0,s)}} -A.aeb.prototype={ -jI(a){var s=B.cz.cD(A.l(["method",a.a,"args",a.b],t.N,t.X)) -s.toString -return s}, -iW(a){var s,r,q,p=null,o=B.cz.h5(a) -if(!t.f.b(o))throw A.d(A.bW("Expected method call Map, got "+A.j(o),p,p)) -s=J.X(o) -r=s.h(o,"method") -q=s.h(o,"args") -if(typeof r=="string")return new A.kQ(r,q) -throw A.d(A.bW("Invalid method call: "+A.j(o),p,p))}, -Jj(a){var s,r,q,p=null,o=B.cz.h5(a) -if(!t.j.b(o))throw A.d(A.bW("Expected envelope List, got "+A.j(o),p,p)) -s=J.X(o) -if(s.gp(o)===1)return s.h(o,0) -if(s.gp(o)===3)if(typeof s.h(o,0)=="string")r=s.h(o,1)==null||typeof s.h(o,1)=="string" -else r=!1 -else r=!1 -if(r){r=A.aQ(s.h(o,0)) -q=A.au(s.h(o,1)) -throw A.d(A.e9(r,s.h(o,2),q,p))}if(s.gp(o)===4)if(typeof s.h(o,0)=="string")if(s.h(o,1)==null||typeof s.h(o,1)=="string")r=s.h(o,3)==null||typeof s.h(o,3)=="string" -else r=!1 -else r=!1 -else r=!1 -if(r){r=A.aQ(s.h(o,0)) -q=A.au(s.h(o,1)) -throw A.d(A.e9(r,s.h(o,2),q,A.au(s.h(o,3))))}throw A.d(A.bW("Invalid envelope: "+A.j(o),p,p))}, -vA(a){var s=B.cz.cD([a]) -s.toString -return s}, -om(a,b,c){var s=B.cz.cD([a,c,b]) -s.toString -return s}, -WR(a,b){return this.om(a,null,b)}} -A.Er.prototype={ -cD(a){var s -if(a==null)return null -s=A.aqp(64) -this.c4(0,s,a) -return s.mC()}, -h5(a){var s,r -if(a==null)return null -s=new A.D3(a) -r=this.cK(0,s) -if(s.b=b.a.byteLength)throw A.d(B.bd) -return this.j9(b.pe(0),b)}, -j9(a,b){var s,r,q,p,o,n,m,l,k=this -switch(a){case 0:return null -case 1:return!0 -case 2:return!1 -case 3:s=b.b -r=$.eg() -q=b.a.getInt32(s,B.ay===r) -b.b+=4 -return q -case 4:return b.DT(0) -case 6:b.ki(8) -s=b.b -r=$.eg() -q=b.a.getFloat64(s,B.ay===r) -b.b+=8 -return q -case 5:case 7:p=k.fo(b) -return B.cw.cm(b.pf(p)) -case 8:return b.pf(k.fo(b)) -case 9:p=k.fo(b) -b.ki(4) -s=b.a -o=A.aJA(s.buffer,s.byteOffset+b.b,p) -b.b=b.b+4*p -return o -case 10:return b.DU(k.fo(b)) -case 14:p=k.fo(b) -b.ki(4) -s=b.a -r=s.buffer -s=s.byteOffset+b.b -A.K3(r,s,p) -o=new Float32Array(r,s,p) -b.b=b.b+4*p -return o -case 11:p=k.fo(b) -b.ki(8) -s=b.a -o=A.aJy(s.buffer,s.byteOffset+b.b,p) -b.b=b.b+8*p -return o -case 12:p=k.fo(b) -n=A.aT(p,null,!1,t.X) -for(s=b.a,m=0;m=s.byteLength)A.U(B.bd) -b.b=r+1 -n[m]=k.j9(s.getUint8(r),b)}return n -case 13:p=k.fo(b) -s=t.X -n=A.m(s,s) -for(s=b.a,m=0;m=s.byteLength)A.U(B.bd) -b.b=r+1 -r=k.j9(s.getUint8(r),b) -l=b.b -if(l>=s.byteLength)A.U(B.bd) -b.b=l+1 -n.m(0,r,k.j9(s.getUint8(l),b))}return n -default:throw A.d(B.bd)}}, -hl(a,b){var s,r -if(b<254)a.cf(0,b) -else{s=a.d -if(b<=65535){a.cf(0,254) -r=$.eg() -s.setUint16(0,b,B.ay===r) -a.ut(a.e,0,2)}else{a.cf(0,255) -r=$.eg() -s.setUint32(0,b,B.ay===r) -a.ut(a.e,0,4)}}}, -fo(a){var s,r,q=a.pe(0) -switch(q){case 254:s=a.b -r=$.eg() -q=a.a.getUint16(s,B.ay===r) -a.b+=2 -return q -case 255:s=a.b -r=$.eg() -q=a.a.getUint32(s,B.ay===r) -a.b+=4 -return q -default:return q}}} -A.amw.prototype={ -$2(a,b){var s=this.a,r=this.b -s.c4(0,r,a) -s.c4(0,r,b)}, -$S:86} -A.amy.prototype={ -jI(a){var s=A.aqp(64) -B.az.c4(0,s,a.a) -B.az.c4(0,s,a.b) -return s.mC()}, -iW(a){var s,r,q -a.toString -s=new A.D3(a) -r=B.az.cK(0,s) -q=B.az.cK(0,s) -if(typeof r=="string"&&s.b>=a.byteLength)return new A.kQ(r,q) -else throw A.d(B.nt)}, -vA(a){var s=A.aqp(64) -s.cf(0,0) -B.az.c4(0,s,a) -return s.mC()}, -om(a,b,c){var s=A.aqp(64) -s.cf(0,1) -B.az.c4(0,s,a) -B.az.c4(0,s,c) -B.az.c4(0,s,b) -return s.mC()}, -WR(a,b){return this.om(a,null,b)}, -Jj(a){var s,r,q,p,o,n -if(a.byteLength===0)throw A.d(B.FJ) -s=new A.D3(a) -if(s.pe(0)===0)return B.az.cK(0,s) -r=B.az.cK(0,s) -q=B.az.cK(0,s) -p=B.az.cK(0,s) -o=s.b=a.byteLength -else n=!1 -if(n)throw A.d(A.e9(r,p,A.au(q),o)) -else throw A.d(B.FK)}} -A.ag8.prototype={ -app(a,b,c){var s,r,q,p -if(t.PB.b(b)){this.b.F(0,a) -return}s=this.b -r=s.h(0,a) -q=A.b1v(c) -if(q==null)q=this.a -if(J.e(r==null?null:t.ZC.a(r.a),q))return -p=q.B8(a) -s.m(0,a,p) -B.MF.cZ("activateSystemCursor",A.l(["device",p.b,"kind",t.ZC.a(p.a).a],t.N,t.z),t.H)}} -A.C2.prototype={} -A.cT.prototype={ -k(a){var s=this.gqA() -return s}} -A.W9.prototype={ -B8(a){throw A.d(A.cu(null))}, -gqA(){return"defer"}} -A.a0m.prototype={} -A.oX.prototype={ -gqA(){return"SystemMouseCursor("+this.a+")"}, -B8(a){return new A.a0m(this,a)}, -j(a,b){if(b==null)return!1 -if(J.Y(b)!==A.u(this))return!1 -return b instanceof A.oX&&b.a===this.a}, -gA(a){return B.c.gA(this.a)}} -A.Yn.prototype={} -A.hx.prototype={ -guW(){var s=$.fH.eW$ -s===$&&A.c() -return s}, -eN(a,b){return this.a0x(0,b,this.$ti.i("1?"))}, -a0x(a,b,c){var s=0,r=A.I(c),q,p=this,o,n -var $async$eN=A.D(function(d,e){if(d===1)return A.F(e,r) -while(true)switch(s){case 0:o=p.b -n=o -s=3 -return A.K(p.guW().xK(0,p.a,o.cD(b)),$async$eN) -case 3:q=n.h5(e) -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$eN,r)}, -Eb(a){this.guW().tc(this.a,new A.a4X(this,a))}} -A.a4X.prototype={ -$1(a){return this.a_G(a)}, -a_G(a){var s=0,r=A.I(t.CD),q,p=this,o,n -var $async$$1=A.D(function(b,c){if(b===1)return A.F(c,r) -while(true)switch(s){case 0:o=p.a.b -n=o -s=3 -return A.K(p.b.$1(o.h5(a)),$async$$1) -case 3:q=n.cD(c) -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$$1,r)}, -$S:152} -A.jA.prototype={ -guW(){var s,r=this.c -if(r==null){s=$.fH.eW$ -s===$&&A.c() -r=s}return r}, -hY(a,b,c,d){return this.aec(a,b,c,d,d.i("0?"))}, -aec(a,b,c,d,e){var s=0,r=A.I(e),q,p=this,o,n,m,l -var $async$hY=A.D(function(f,g){if(f===1)return A.F(g,r) -while(true)switch(s){case 0:o=p.b -n=o.jI(new A.kQ(a,b)) -m=p.a -s=3 -return A.K(p.guW().xK(0,m,n),$async$hY) -case 3:l=g -if(l==null){if(c){q=null -s=1 -break}throw A.d(A.aDG("No implementation found for method "+a+" on channel "+m))}q=d.i("0?").a(o.Jj(l)) -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$hY,r)}, -cZ(a,b,c){return this.hY(a,b,!1,c)}, -wc(a,b,c,d){return this.ard(a,b,c,d,c.i("@<0>").a5(d).i("az<1,2>?"))}, -Kv(a,b,c){return this.wc(a,null,b,c)}, -ard(a,b,c,d,e){var s=0,r=A.I(e),q,p=this,o -var $async$wc=A.D(function(f,g){if(f===1)return A.F(g,r) -while(true)switch(s){case 0:s=3 -return A.K(p.cZ(a,b,t.f),$async$wc) -case 3:o=g -q=o==null?null:J.yS(o,c,d) -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$wc,r)}, -nw(a){var s=this.guW() -s.tc(this.a,new A.afW(this,a))}, -yY(a,b){return this.aaS(a,b)}, -aaS(a,b){var s=0,r=A.I(t.CD),q,p=2,o,n=this,m,l,k,j,i,h,g,f,e -var $async$yY=A.D(function(c,d){if(c===1){o=d -s=p}while(true)switch(s){case 0:h=n.b -g=h.iW(a) -p=4 -e=h -s=7 -return A.K(b.$1(g),$async$yY) -case 7:k=e.vA(d) -q=k -s=1 -break -p=2 -s=6 -break -case 4:p=3 -f=o -k=A.a6(f) -if(k instanceof A.ov){m=k -k=m.a -i=m.b -q=h.om(k,m.c,i) -s=1 -break}else if(k instanceof A.C0){q=null -s=1 -break}else{l=k -h=h.WR("error",J.di(l)) -q=h -s=1 -break}s=6 -break -case 3:s=2 -break -case 6:case 1:return A.G(q,r) -case 2:return A.F(o,r)}}) -return A.H($async$yY,r)}} -A.afW.prototype={ -$1(a){return this.a.yY(a,this.b)}, -$S:152} -A.jG.prototype={ -cZ(a,b,c){return this.are(a,b,c,c.i("0?"))}, -kI(a,b){return this.cZ(a,null,b)}, -are(a,b,c,d){var s=0,r=A.I(d),q,p=this -var $async$cZ=A.D(function(e,f){if(e===1)return A.F(f,r) -while(true)switch(s){case 0:q=p.a2r(a,b,!0,c) -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$cZ,r)}} -A.Nl.prototype={ -atA(a){var s=this,r=new A.jA(s.a,s.b,null),q=A.bg("controller") -q.b=new A.dG(new A.a9f(s,q,r,a),new A.a9g(s,r,a),t.zr) -return J.aGX(q.aI())}} -A.a9f.prototype={ -$0(){var s=0,r=A.I(t.H),q=1,p,o=this,n,m,l,k,j,i,h -var $async$$0=A.D(function(a,b){if(a===1){p=b -s=q}while(true)switch(s){case 0:i=$.fH.eW$ -i===$&&A.c() -l=o.a -k=l.a -i.tc(k,new A.a9e(l,o.b)) -q=3 -s=6 -return A.K(o.c.hY("listen",o.d,!1,t.H),$async$$0) -case 6:q=1 -s=5 -break -case 3:q=2 -h=p -n=A.a6(h) -m=A.aJ(h) -i=A.bu("while activating platform stream on channel "+k) -A.cY(new A.bH(n,m,"services library",i,null,!1)) -s=5 -break -case 2:s=1 -break -case 5:return A.G(null,r) -case 1:return A.F(p,r)}}) -return A.H($async$$0,r)}, -$S:15} -A.a9e.prototype={ -$1(a){return this.a_H(a)}, -a_H(a){var s=0,r=A.I(t.P),q,p=this,o,n,m -var $async$$1=A.D(function(b,c){if(b===1)return A.F(c,r) -while(true)switch(s){case 0:if(a==null)J.a3K(p.b.aI()) -else try{J.dV(p.b.aI(),p.a.b.Jj(a))}catch(l){m=A.a6(l) -if(m instanceof A.ov){o=m -p.b.aI().km(o)}else throw l}q=null -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$$1,r)}, -$S:403} -A.a9g.prototype={ -$0(){var s=0,r=A.I(t.H),q=1,p,o=this,n,m,l,k,j,i -var $async$$0=A.D(function(a,b){if(a===1){p=b -s=q}while(true)switch(s){case 0:j=$.fH.eW$ -j===$&&A.c() -l=o.a.a -j.tc(l,null) -q=3 -s=6 -return A.K(o.b.hY("cancel",o.c,!1,t.H),$async$$0) -case 6:q=1 -s=5 -break -case 3:q=2 -i=p -n=A.a6(i) -m=A.aJ(i) -j=A.bu("while de-activating platform stream on channel "+l) -A.cY(new A.bH(n,m,"services library",j,null,!1)) -s=5 -break -case 2:s=1 -break -case 5:return A.G(null,r) -case 1:return A.F(p,r)}}) -return A.H($async$$0,r)}, -$S:15} -A.qW.prototype={ -I(){return"KeyboardSide."+this.b}} -A.ig.prototype={ -I(){return"ModifierKey."+this.b}} -A.D0.prototype={ -gasf(){var s,r,q=A.m(t.xS,t.LE) -for(s=0;s<9;++s){r=B.o6[s] -if(this.arm(r))q.m(0,r,B.da)}return q}} -A.jK.prototype={} -A.aii.prototype={ -$0(){var s,r,q,p=this.b,o=J.X(p),n=A.au(o.h(p,"key")),m=n==null -if(!m){s=n.length -s=s!==0&&s===1}else s=!1 -if(s)this.a.a=n -s=A.au(o.h(p,"code")) -if(s==null)s="" -m=m?"":n -r=A.dz(o.h(p,"location")) -if(r==null)r=0 -q=A.dz(o.h(p,"metaState")) -if(q==null)q=0 -p=A.dz(o.h(p,"keyCode")) -return new A.R9(s,m,r,q,p==null?0:p)}, -$S:404} -A.l3.prototype={} -A.w9.prototype={} -A.ain.prototype={ -apV(a){var s,r,q,p,o,n,m,l,k,j,i=this -if(a instanceof A.l3){p=a.c -i.d.m(0,p.gjY(),p.gwp())}else if(a instanceof A.w9)i.d.F(0,a.c.gjY()) -i.ajQ(a) -for(p=i.a,o=A.a8(p,!0,t.iS),n=o.length,m=0;m")),e),a0=a1 instanceof A.l3 -if(a0)a.E(0,g.gjY()) -for(s=g.a,r=null,q=0;q<9;++q){p=B.o6[q] -o=$.aPG() -n=o.h(0,new A.dq(p,B.bY)) -if(n==null)continue -m=B.u6.h(0,s) -if(n.t(0,m==null?new A.r(98784247808+B.c.gA(s)):m))r=p -if(f.h(0,p)===B.da){c.K(0,n) -if(n.dN(0,a.ghB(a)))continue}l=f.h(0,p)==null?A.aE(e):o.h(0,new A.dq(p,f.h(0,p))) -if(l==null)continue -for(o=A.p(l),m=new A.jb(l,l.r,o.i("jb<1>")),m.c=l.e,o=o.c;m.u();){k=m.d -if(k==null)k=o.a(k) -j=$.aPF().h(0,k) -j.toString -d.m(0,k,j)}}i=b.h(0,B.cM)!=null&&!J.e(b.h(0,B.cM),B.ef) -for(e=$.aG7(),e=A.fh(e,e.r,A.p(e).c);e.u();){a=e.d -h=i&&a.j(0,B.cM) -if(!c.t(0,a)&&!h)b.F(0,a)}b.F(0,B.et) -b.K(0,d) -if(a0&&r!=null&&!b.ak(0,g.gjY())){e=g.gjY().j(0,B.dm) -if(e)b.m(0,g.gjY(),g.gwp())}}} -A.dq.prototype={ -j(a,b){if(b==null)return!1 -if(J.Y(b)!==A.u(this))return!1 -return b instanceof A.dq&&b.a===this.a&&b.b==this.b}, -gA(a){return A.T(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.ZA.prototype={} -A.Zz.prototype={} -A.R9.prototype={ -gjY(){var s=this.a,r=B.u6.h(0,s) -return r==null?new A.r(98784247808+B.c.gA(s)):r}, -gwp(){var s,r=this.b,q=B.Li.h(0,r),p=q==null?null:q[this.c] -if(p!=null)return p -s=B.L1.h(0,r) -if(s!=null)return s -if(r.length===1)return new A.i(r.toLowerCase().charCodeAt(0)) -return new A.i(B.c.gA(this.a)+98784247808)}, -arm(a){var s=this -switch(a.a){case 0:return(s.d&4)!==0 -case 1:return(s.d&1)!==0 -case 2:return(s.d&2)!==0 -case 3:return(s.d&8)!==0 -case 5:return(s.d&16)!==0 -case 4:return(s.d&32)!==0 -case 6:return(s.d&64)!==0 -case 7:case 8:return!1}}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.Y(b)!==A.u(s))return!1 -return b instanceof A.R9&&b.a===s.a&&b.b===s.b&&b.c===s.c&&b.d===s.d&&b.e===s.e}, -gA(a){var s=this -return A.T(s.a,s.b,s.c,s.d,s.e,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.Dv.prototype={ -gau6(){var s=this -if(s.c)return new A.cW(s.a,t.hr) -if(s.b==null){s.b=new A.b3(new A.ae($.ai,t.X6),t.F0) -s.yX()}return s.b.a}, -yX(){var s=0,r=A.I(t.H),q,p=this,o -var $async$yX=A.D(function(a,b){if(a===1)return A.F(b,r) -while(true)switch(s){case 0:s=3 -return A.K(B.k5.kI("get",t.pE),$async$yX) -case 3:o=b -if(p.b==null){s=1 -break}p.RY(o) -case 1:return A.G(q,r)}}) -return A.H($async$yX,r)}, -RY(a){var s,r=a==null -if(!r){s=J.aN(a,"enabled") -s.toString -A.fb(s)}else s=!1 -this.apX(r?null:t.nc.a(J.aN(a,"data")),s)}, -apX(a,b){var s,r,q=this,p=q.c&&b -q.d=p -if(p)$.c6.p1$.push(new A.ajS(q)) -s=q.a -if(b){p=q.a8H(a) -r=t.N -if(p==null){p=t.X -p=A.m(p,p)}r=new A.dO(p,q,null,"root",A.m(r,t.z4),A.m(r,t.I1)) -p=r}else p=null -q.a=p -q.c=!0 -r=q.b -if(r!=null)r.dm(0,p) -q.b=null -if(q.a!=s){q.T() -if(s!=null)s.n()}}, -GW(a){return this.aeX(a)}, -aeX(a){var s=0,r=A.I(t.H),q=this,p -var $async$GW=A.D(function(b,c){if(b===1)return A.F(c,r) -while(true)switch(s){case 0:p=a.a -switch(p){case"push":q.RY(t.pE.a(a.b)) -break -default:throw A.d(A.cu(p+" was invoked but isn't implemented by "+A.u(q).k(0)))}return A.G(null,r)}}) -return A.H($async$GW,r)}, -a8H(a){if(a==null)return null -return t.J1.a(B.az.h5(A.rh(a.buffer,a.byteOffset,a.byteLength)))}, -a0p(a){var s=this -s.r.E(0,a) -if(!s.f){s.f=!0 -$.c6.p1$.push(new A.ajT(s))}}, -PG(){var s,r,q,p,o,n=this -if(!n.f)return -n.f=!1 -for(s=n.r,r=A.db(s,s.r,A.p(s).c),q=r.$ti.c;r.u();){p=r.d;(p==null?q.a(p):p).w=!1}s.a0(0) -o=B.az.cD(n.a.a) -B.k5.cZ("put",A.dm(o.buffer,o.byteOffset,o.byteLength),t.H)}, -ap9(){if($.c6.p3$)return -this.PG()}} -A.ajS.prototype={ -$1(a){this.a.d=!1}, -$S:3} -A.ajT.prototype={ -$1(a){return this.a.PG()}, -$S:3} -A.dO.prototype={ -guk(){var s=J.KB(this.a,"c",new A.ajP()) -s.toString -return t.pE.a(s)}, -gmj(){var s=J.KB(this.a,"v",new A.ajQ()) -s.toString -return t.pE.a(s)}, -atI(a,b,c){var s=this,r=J.yV(s.gmj(),b),q=c.i("0?").a(J.pL(s.gmj(),b)) -if(J.iD(s.gmj()))J.pL(s.a,"v") -if(r)s.pT() -return q}, -amI(a,b){var s,r,q,p,o=this,n=o.f -if(n.ak(0,a)||!J.yV(o.guk(),a)){n=t.N -s=new A.dO(A.m(n,t.X),null,null,a,A.m(n,t.z4),A.m(n,t.I1)) -o.h0(s) -return s}r=t.N -q=o.c -p=J.aN(o.guk(),a) -p.toString -s=new A.dO(t.pE.a(p),q,o,a,A.m(r,t.z4),A.m(r,t.I1)) -n.m(0,a,s) -return s}, -h0(a){var s=this,r=a.d -if(r!==s){if(r!=null)r.zz(a) -a.d=s -s.Og(a) -if(a.c!=s.c)s.Se(a)}}, -a99(a){this.zz(a) -a.d=null -if(a.c!=null){a.Hv(null) -a.UA(this.gSd())}}, -pT(){var s,r=this -if(!r.w){r.w=!0 -s=r.c -if(s!=null)s.a0p(r)}}, -Se(a){a.Hv(this.c) -a.UA(this.gSd())}, -Hv(a){var s=this,r=s.c -if(r==a)return -if(s.w)if(r!=null)r.r.F(0,s) -s.c=a -if(s.w&&a!=null){s.w=!1 -s.pT()}}, -zz(a){var s,r,q,p=this -if(J.e(p.f.F(0,a.e),a)){J.pL(p.guk(),a.e) -s=p.r -r=s.h(0,a.e) -if(r!=null){q=J.bR(r) -p.PX(q.dT(r)) -if(q.ga8(r))s.F(0,a.e)}if(J.iD(p.guk()))J.pL(p.a,"c") -p.pT() -return}s=p.r -q=s.h(0,a.e) -if(q!=null)J.pL(q,a) -q=s.h(0,a.e) -q=q==null?null:J.iD(q) -if(q===!0)s.F(0,a.e)}, -Og(a){var s=this -if(s.f.ak(0,a.e)){J.dV(s.r.bT(0,a.e,new A.ajO()),a) -s.pT() -return}s.PX(a) -s.pT()}, -PX(a){this.f.m(0,a.e,a) -J.hv(this.guk(),a.e,a.a)}, -UB(a,b){var s,r,q=this.f -q=q.gaR(q) -s=this.r -s=s.gaR(s) -r=q.K4(0,new A.i8(s,new A.ajR(),A.p(s).i("i8"))) -J.fX(b?A.a8(r,!1,A.p(r).i("q.E")):r,a)}, -UA(a){return this.UB(a,!1)}, -atP(a){var s,r=this -if(a===r.e)return -s=r.d -if(s!=null)s.zz(r) -r.e=a -s=r.d -if(s!=null)s.Og(r)}, -n(){var s,r=this -r.UB(r.ga98(),!0) -r.f.a0(0) -r.r.a0(0) -s=r.d -if(s!=null)s.zz(r) -r.d=null -r.Hv(null) -r.x=!0}, -k(a){return"RestorationBucket(restorationId: "+this.e+", owner: "+A.j(this.b)+")"}} -A.ajP.prototype={ -$0(){var s=t.X -return A.m(s,s)}, -$S:155} -A.ajQ.prototype={ -$0(){var s=t.X -return A.m(s,s)}, -$S:155} -A.ajO.prototype={ -$0(){return A.b([],t.QT)}, -$S:408} -A.ajR.prototype={ -$1(a){return a}, -$S:409} -A.oU.prototype={ -j(a,b){var s,r -if(b==null)return!1 -if(this===b)return!0 -if(b instanceof A.oU){s=b.a -r=this.a -s=s.a===r.a&&s.b===r.b&&A.d_(b.b,this.b)}else s=!1 -return s}, -gA(a){var s=this.a -return A.T(s.a,s.b,A.cn(this.b),B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.El.prototype={ -j(a,b){if(b==null)return!1 -if(this===b)return!0 -return b instanceof A.El&&b.a===this.a&&A.d_(b.b,this.b)}, -gA(a){return A.T(this.a,A.cn(this.b),B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.a6Z.prototype={ -By(a,b){return this.aoR(a,b)}, -aoR(a0,a1){var s=0,r=A.I(t.EZ),q,p=2,o,n=this,m,l,k,j,i,h,g,f,e,d,c,b,a -var $async$By=A.D(function(a2,a3){if(a2===1){o=a3 -s=p}while(true)switch(s){case 0:d=null -c=a0.S9("-") -p=4 -m=n.b -m===$&&A.c() -a=t.j -s=7 -return A.K(m.cZ("SpellCheck.initiateSpellCheck",A.b([c,a1],t.s),t.z),$async$By) -case 7:d=a.a(a3) -p=2 -s=6 -break -case 4:p=3 -b=o -q=null -s=1 -break -s=6 -break -case 3:s=2 -break -case 6:k=A.b([],t.bt) -for(m=J.as(d),j=t.f,i=t.N,h=t.z,g=t.j;m.u();){f=A.qY(j.a(m.gJ(m)),i,h) -k.push(new A.oU(new A.cb(A.ef(f.h(0,"startIndex")),A.ef(f.h(0,"endIndex"))),J.fW(g.a(f.h(0,"suggestions")),i)))}m=n.a -if(m!=null){j=m.a -e=A.d_(m.b,k) -if(j===a1&&e)k=A.aWY(n.a.b,k)}n.a=new A.El(a1,k) -q=k -s=1 -break -case 1:return A.G(q,r) -case 2:return A.F(o,r)}}) -return A.H($async$By,r)}} -A.a4o.prototype={} -A.lf.prototype={ -TK(){var s,r,q,p,o=this,n=o.a -n=n==null?null:n.a -s=o.e -s=s==null?null:s.a -r=o.f.I() -q=o.r.I() -p=o.c -p=p==null?null:p.I() -return A.l(["systemNavigationBarColor",n,"systemNavigationBarDividerColor",null,"systemStatusBarContrastEnforced",o.w,"statusBarColor",s,"statusBarBrightness",r,"statusBarIconBrightness",q,"systemNavigationBarIconBrightness",p,"systemNavigationBarContrastEnforced",o.d],t.N,t.z)}, -k(a){return"SystemUiOverlayStyle("+this.TK().k(0)+")"}, -gA(a){var s=this -return A.T(s.a,s.b,s.d,s.e,s.f,s.r,s.w,s.c,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -j(a,b){var s,r=this -if(b==null)return!1 -if(J.Y(b)!==A.u(r))return!1 -if(b instanceof A.lf)if(J.e(b.a,r.a))if(J.e(b.e,r.e))if(b.r===r.r)if(b.f===r.f)s=b.c==r.c -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -return s}} -A.anK.prototype={ -$0(){if(!J.e($.wU,$.aEd)){B.b2.cZ("SystemChrome.setSystemUIOverlayStyle",$.wU.TK(),t.H) -$.aEd=$.wU}$.wU=null}, -$S:0} -A.T6.prototype={ -I(){return"SystemSoundType."+this.b}} -A.it.prototype={ -fw(a){var s -if(a<0)return null -s=this.t0(a).a -return s>=0?s:null}, -fz(a){var s=this.t0(Math.max(0,a)).b -return s>=0?s:null}, -t0(a){var s,r=this.fw(a) -if(r==null)r=-1 -s=this.fz(a) -return new A.cb(r,s==null?-1:s)}} -A.u6.prototype={ -fw(a){var s -if(a<0)return null -s=this.a -return A.amO(s,Math.min(a,s.length)).b}, -fz(a){var s,r=this.a -if(a>=r.length)return null -s=A.amO(r,Math.max(0,a+1)) -return s.b+s.gJ(s).length}, -t0(a){var s,r,q,p=this -if(a<0){s=p.fz(a) -return new A.cb(-1,s==null?-1:s)}else{s=p.a -if(a>=s.length){s=p.fw(a) -return new A.cb(s==null?-1:s,-1)}}r=A.amO(s,a) -s=r.b -if(s!==r.c)s=new A.cb(s,s+r.gJ(r).length) -else{q=p.fz(a) -s=new A.cb(s,q==null?-1:q)}return s}} -A.vn.prototype={ -t0(a){return this.a.rY(new A.bf(Math.max(a,0),B.l))}} -A.Cy.prototype={ -fw(a){var s,r,q -if(a<0||this.a.length===0)return null -s=this.a -r=s.length -if(a>=r)return r -if(a===0)return 0 -if(a>1&&s.charCodeAt(a)===10&&s.charCodeAt(a-1)===13)q=a-2 -else q=A.aEg(s.charCodeAt(a))?a-1:a -for(;q>0;){if(A.aEg(s.charCodeAt(q)))return q+1;--q}return Math.max(q,0)}, -fz(a){var s,r=this.a,q=r.length -if(a>=q||q===0)return null -if(a<0)return 0 -for(s=a;!A.aEg(r.charCodeAt(s));){++s -if(s===q)return s}return s=s?null:s}} -A.hm.prototype={ -glm(){var s,r=this -if(!r.gc8()||r.c===r.d)s=r.e -else s=r.c=n&&o<=p.b)return p -s=p.c -r=p.d -q=s<=r -if(o<=n){if(b)return p.qw(a.b,p.b,o) -n=q?o:s -return p.B2(n,q?r:o)}if(b)return p.qw(a.b,n,o) -n=q?s:o -return p.B2(n,q?o:r)}, -WY(a){if(this.gdz().j(0,a))return this -return this.any(a.b,a.a)}} -A.p_.prototype={} -A.Tr.prototype={} -A.Tq.prototype={} -A.Ts.prototype={} -A.x0.prototype={} -A.a0F.prototype={} -A.Pp.prototype={ -I(){return"MaxLengthEnforcement."+this.b}} -A.p0.prototype={} -A.Yr.prototype={} -A.aym.prototype={} -A.Ns.prototype={ -apj(a,b){var s,r,q,p,o,n,m,l,k,j=this,i=null,h=b.b -h=h.gc8()?new A.Yr(h.c,h.d):i -s=b.c -s=s.gc8()&&s.a!==s.b?new A.Yr(s.a,s.b):i -r=new A.aym(b,new A.cf(""),h,s) -s=b.a -q=B.c.nY(j.a,s) -for(h=new A.a0c(q.a,q.b,q.c),p=i;h.u();p=o){o=h.d -o.toString -n=p==null?i:p.a+p.c.length -if(n==null)n=0 -m=o.a -j.Hg(!1,n,m,r) -j.Hg(!0,m,m+o.c.length,r)}h=p==null?i:p.a+p.c.length -if(h==null)h=0 -j.Hg(!1,h,s.length,r) -s=r.e=!0 -l=r.c -k=r.d -h=r.b.a -s=(k!=null?k.a===k.b:s)?B.b7:new A.cb(k.a,k.b) -if(l==null)o=B.eS -else{o=r.a.b -o=A.cq(o.e,l.a,l.b,o.f)}return new A.dg(h.charCodeAt(0)==0?h:h,o,s)}, -Hg(a,b,c,d){var s,r,q,p -if(a)s=b===c?"":this.c -else s=B.c.S(d.a.a,b,c) -d.b.a+=s -if(s.length===c-b)return -r=new A.a9u(b,c,s) -q=d.c -p=q==null -if(!p)q.a=q.a+r.$1(d.a.b.c) -if(!p)q.b=q.b+r.$1(d.a.b.d) -q=d.d -p=q==null -if(!p)q.a=q.a+r.$1(d.a.c.a) -if(!p)q.b=q.b+r.$1(d.a.c.b)}} -A.a9u.prototype={ -$1(a){var s=this,r=s.a,q=a<=r&&a=r.a&&s<=this.a.length}else r=!1 -return r}, -ZR(a,b){var s,r,q,p,o=this -if(!a.gc8())return o -s=a.a -r=a.b -q=B.c.hM(o.a,s,r,b) -if(r-s===b.length)return o.anx(q) -s=new A.aop(a,b) -r=o.b -p=o.c -return new A.dg(q,A.cq(B.l,s.$1(r.c),s.$1(r.d),!1),new A.cb(s.$1(p.a),s.$1(p.b)))}, -nh(a){var s=this.b,r=this.c -return A.l(["text",this.a,"selectionBase",s.c,"selectionExtent",s.d,"selectionAffinity",s.e.I(),"selectionIsDirectional",s.f,"composingBase",r.a,"composingExtent",r.b],t.N,t.z)}, -k(a){return"TextEditingValue(text: \u2524"+this.a+"\u251c, selection: "+this.b.k(0)+", composing: "+this.c.k(0)+")"}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -return b instanceof A.dg&&b.a===s.a&&b.b.j(0,s.b)&&b.c.j(0,s.c)}, -gA(a){var s=this.b,r=this.c -return A.T(B.c.gA(this.a),s.gA(s),A.T(B.h.gA(r.a),B.h.gA(r.b),B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a),B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.aop.prototype={ -$1(a){var s=this.a,r=s.a,q=a<=r&&a") -l=p.f -k=A.p(l).i("bm<1>") -j=k.i("eG>") -q=A.a8(new A.eG(new A.aL(new A.bm(l,k),new A.aoQ(p,A.a8(new A.a1(n,new A.aoR(),m),!0,m.i("am.E"))),k.i("aL")),new A.aoS(p),j),!0,j.i("q.E")) -s=1 -break}else if(b==="TextInputClient.scribbleInteractionBegan"){p.r=!0 -s=1 -break}else if(b==="TextInputClient.scribbleInteractionFinished"){p.r=!1 -s=1 -break}n=p.d -if(n==null){s=1 -break}if(b==="TextInputClient.requestExistingInputState"){m=p.e -m===$&&A.c() -p.F1(n,m) -p.zP(p.d.r.a.c.a) -s=1 -break}n=t.j -o=n.a(a.b) -if(b===u.o){n=t.a -i=n.a(J.aN(o,1)) -for(m=J.bh(i),l=J.as(m.gbI(i));l.u();)A.aL6(n.a(m.h(i,l.gJ(l)))) -s=1 -break}m=J.X(o) -h=A.ef(m.h(o,0)) -l=p.d -if(h!==l.f){s=1 -break}switch(b){case"TextInputClient.updateEditingState":g=A.aL6(t.a.a(m.h(o,1))) -$.cv().akz(g,$.a3x()) -break -case u.s:f=A.b([],t.sD) -l=t.a -for(n=J.as(n.a(J.aN(l.a(m.h(o,1)),"deltas")));n.u();)f.push(A.b0A(l.a(n.gJ(n)))) -t.Je.a(p.d.r).avH(f) -break -case"TextInputClient.performAction":if(A.aQ(m.h(o,1))==="TextInputAction.commitContent"){n=t.a.a(m.h(o,2)) -m=J.X(n) -A.aQ(m.h(n,"mimeType")) -A.aQ(m.h(n,"uri")) -if(m.h(n,"data")!=null)new Uint8Array(A.jg(A.cZ(t.JY.a(m.h(n,"data")),!0,t.S))) -p.d.r.a.toString}else p.d.r.ata(A.b4q(A.aQ(m.h(o,1)))) -break -case"TextInputClient.performSelectors":e=J.fW(n.a(m.h(o,1)),t.N) -e.N(e,p.d.r.gatc()) -break -case"TextInputClient.performPrivateCommand":n=t.a -d=n.a(m.h(o,1)) -m=p.d.r -l=J.X(d) -A.aQ(l.h(d,"action")) -if(l.h(d,"data")!=null)n.a(l.h(d,"data")) -m.a.toString -break -case"TextInputClient.updateFloatingCursor":n=l.r -l=A.b4p(A.aQ(m.h(o,1))) -m=t.a.a(m.h(o,2)) -if(l===B.jf){k=J.X(m) -c=new A.k(A.kb(k.h(m,"X")),A.kb(k.h(m,"Y")))}else c=B.e -n.auQ(new A.aih(c,l)) -break -case"TextInputClient.onConnectionClosed":n=l.r -if(n.ghX()){n.z.toString -n.fy=n.z=$.cv().d=null -n.yJ(B.kL,!0)}break -case"TextInputClient.showAutocorrectionPromptRect":l.r.a15(A.ef(m.h(o,1)),A.ef(m.h(o,2))) -break -case"TextInputClient.showToolbar":l.r.iw() -break -case"TextInputClient.insertTextPlaceholder":l.r.ar0(new A.Q(A.kb(m.h(o,1)),A.kb(m.h(o,2)))) -break -case"TextInputClient.removeTextPlaceholder":l.r.ZJ() -break -default:throw A.d(A.aDG(null))}case 1:return A.G(q,r)}}) -return A.H($async$Gq,r)}, -aib(){if(this.w)return -this.w=!0 -A.ey(new A.aoU(this))}, -aiM(a,b){var s,r,q,p,o,n,m,l,k,j -for(s=this.b,s=A.db(s,s.r,A.p(s).c),r=t.jl,q=t.H,p=s.$ti.c,o=t.N,n=t.z;s.u();){m=s.d -if(m==null)p.a(m) -m=$.cv() -l=m.c -l===$&&A.c() -k=m.d.f -j=b.cq() -if(m.a!==$.a3x())j.m(0,"inputType",A.l(["name","TextInputType.none","signed",null,"decimal",null],o,n)) -l.cZ("TextInput.setClient",A.b([k,j],r),q)}}, -P1(){var s,r,q,p,o=this -o.d.toString -for(s=o.b,s=A.db(s,s.r,A.p(s).c),r=t.H,q=s.$ti.c;s.u();){p=s.d -if(p==null)q.a(p) -p=$.cv().c -p===$&&A.c() -p.kI("TextInput.clearClient",r)}o.d=null -o.aib()}, -aky(a){var s,r,q,p,o,n,m,l -for(s=this.b,s=A.db(s,s.r,A.p(s).c),r=t.H,q=s.$ti.c,p=t.N,o=t.z;s.u();){n=s.d -if(n==null)q.a(n) -n=$.cv() -m=n.c -m===$&&A.c() -l=a.cq() -if(n.a!==$.a3x())l.m(0,"inputType",A.l(["name","TextInputType.none","signed",null,"decimal",null],p,o)) -m.cZ("TextInput.updateConfig",l,r)}}, -zP(a){var s,r,q,p -for(s=this.b,s=A.db(s,s.r,A.p(s).c),r=t.H,q=s.$ti.c;s.u();){p=s.d -if(p==null)q.a(p) -p=$.cv().c -p===$&&A.c() -p.cZ("TextInput.setEditingState",a.nh(0),r)}}, -HF(){var s,r,q,p -for(s=this.b,s=A.db(s,s.r,A.p(s).c),r=t.H,q=s.$ti.c;s.u();){p=s.d -if(p==null)q.a(p) -p=$.cv().c -p===$&&A.c() -p.kI("TextInput.show",r)}}, -adJ(){var s,r,q,p -for(s=this.b,s=A.db(s,s.r,A.p(s).c),r=t.H,q=s.$ti.c;s.u();){p=s.d -if(p==null)q.a(p) -p=$.cv().c -p===$&&A.c() -p.kI("TextInput.hide",r)}}, -aiQ(a,b){var s,r,q,p,o,n,m,l,k -for(s=this.b,s=A.db(s,s.r,A.p(s).c),r=a.a,q=a.b,p=b.a,o=t.N,n=t.z,m=t.H,l=s.$ti.c;s.u();){k=s.d -if(k==null)l.a(k) -k=$.cv().c -k===$&&A.c() -k.cZ("TextInput.setEditableSizeAndTransform",A.l(["width",r,"height",q,"transform",p],o,n),m)}}, -aiN(a){var s,r,q,p,o,n,m,l,k,j -for(s=this.b,s=A.db(s,s.r,A.p(s).c),r=a.a,q=a.c-r,p=a.b,o=a.d-p,n=t.N,m=t.z,l=t.H,k=s.$ti.c;s.u();){j=s.d -if(j==null)k.a(j) -j=$.cv().c -j===$&&A.c() -j.cZ("TextInput.setMarkedTextRect",A.l(["width",q,"height",o,"x",r,"y",p],n,m),l)}}, -aiL(a){var s,r,q,p,o,n,m,l,k,j -for(s=this.b,s=A.db(s,s.r,A.p(s).c),r=a.a,q=a.c-r,p=a.b,o=a.d-p,n=t.N,m=t.z,l=t.H,k=s.$ti.c;s.u();){j=s.d -if(j==null)k.a(j) -j=$.cv().c -j===$&&A.c() -j.cZ("TextInput.setCaretRect",A.l(["width",q,"height",o,"x",r,"y",p],n,m),l)}}, -aiU(a){var s,r,q -for(s=this.b,s=A.db(s,s.r,A.p(s).c),r=s.$ti.c;s.u();){q=s.d;(q==null?r.a(q):q).a0T(a)}}, -aiV(a,b,c,d,e){var s,r,q,p,o,n,m,l,k -for(s=this.b,s=A.db(s,s.r,A.p(s).c),r=d.a,q=e.a,p=t.N,o=t.z,n=t.H,m=c==null,l=s.$ti.c;s.u();){k=s.d -if(k==null)l.a(k) -k=$.cv().c -k===$&&A.c() -k.cZ("TextInput.setStyle",A.l(["fontFamily",a,"fontSize",b,"fontWeightIndex",m?null:c.a,"textAlignIndex",r,"textDirectionIndex",q],p,o),n)}}, -ahM(){var s,r,q,p -for(s=this.b,s=A.db(s,s.r,A.p(s).c),r=t.H,q=s.$ti.c;s.u();){p=s.d -if(p==null)q.a(p) -p=$.cv().c -p===$&&A.c() -p.kI("TextInput.requestAutofill",r)}}, -akz(a,b){var s,r,q,p -if(this.d==null)return -for(s=$.cv().b,s=A.db(s,s.r,A.p(s).c),r=s.$ti.c,q=t.H;s.u();){p=s.d -if((p==null?r.a(p):p)!==b){p=$.cv().c -p===$&&A.c() -p.cZ("TextInput.setEditingState",a.nh(0),q)}}$.cv().d.r.auP(a)}} -A.aoT.prototype={ -$0(){var s=null -return A.b([A.kt("call",this.a,!0,B.bq,s,!1,s,s,B.aO,s,!1,!0,!0,B.bV,s,t.Pw)],t.E)}, -$S:25} -A.aoR.prototype={ -$1(a){return a}, -$S:410} -A.aoQ.prototype={ -$1(a){var s,r,q,p=this.b,o=p[0],n=p[1],m=p[2] -p=p[3] -s=this.a.f -r=s.h(0,a) -p=r==null?null:r.ari(new A.y(o,n,o+m,n+p)) -if(p!==!0)return!1 -p=s.h(0,a) -q=p==null?null:p.gln(p) -if(q==null)q=B.u -if(!q.j(0,B.u))p=isNaN(q.a)||isNaN(q.b)||isNaN(q.c)||isNaN(q.d)||q.gYe(q) -else p=!0 -return!p}, -$S:23} -A.aoS.prototype={ -$1(a){var s,r,q=this.a.f.h(0,a),p=q.gln(q) -q=[a] -s=p.a -r=p.b -B.b.K(q,[s,r,p.c-s,p.d-r]) -return q}, -$S:411} -A.aoU.prototype={ -$0(){var s=this.a -s.w=!1 -if(s.d==null)s.adJ()}, -$S:0} -A.EX.prototype={} -A.YV.prototype={ -a0T(a){var s,r=$.cv().c -r===$&&A.c() -s=A.W(a).i("a1<1,B>") -r.cZ("TextInput.setSelectionRects",A.a8(new A.a1(a,new A.avO(),s),!0,s.i("am.E")),t.H)}} -A.avO.prototype={ -$1(a){var s=a.b,r=s.a,q=s.b -return A.b([r,q,s.c-r,s.d-q,a.a,a.c.a],t.a0)}, -$S:412} -A.a2g.prototype={} -A.TX.prototype={ -I(){return"UndoDirection."+this.b}} -A.TY.prototype={ -gakm(){var s=this.a -s===$&&A.c() -return s}, -Gr(a){return this.adA(a)}, -adA(a){var s=0,r=A.I(t.z),q,p=this,o,n -var $async$Gr=A.D(function(b,c){if(b===1)return A.F(c,r) -while(true)switch(s){case 0:n=t.j.a(a.b) -if(a.a==="UndoManagerClient.handleUndo"){o=p.b -o.toString -o.apQ(p.ak8(A.aQ(J.aN(n,0)))) -s=1 -break}throw A.d(A.aDG(null)) -case 1:return A.G(q,r)}}) -return A.H($async$Gr,r)}, -ak8(a){switch(a){case"undo":return B.VK -case"redo":return B.VL}throw A.d(A.uU(A.b([A.nM("Unknown undo direction: "+a)],t.E)))}} -A.apW.prototype={} -A.aA9.prototype={ -$1(a){this.a.scM(a) -return!1}, -$S:18} -A.bj.prototype={} -A.br.prototype={ -fj(a){this.b=a}, -lF(a,b){return this.gjR()}, -u5(a,b){var s=this -if(A.p(s).i("dr").b(s))return s.lG(0,a,b) -return s.lF(0,a)}, -gjR(){return!0}, -qu(a){return!0}, -LT(a,b){return this.qu(a)?B.e2:B.fI}, -u4(a,b){var s=this -if(A.p(s).i("dr").b(s))return s.ef(a,b) -return s.ee(a)}, -In(a){var s=this.a -s.b=!0 -s.a.push(a) -return null}, -Di(a){return this.a.F(0,a)}, -dM(a){return new A.HD(this,a,!1,!1,!1,!1,new A.b7(A.b([],t.g),t.d),A.p(this).i("HD"))}} -A.dr.prototype={ -lG(a,b,c){return this.a1E(0,b)}, -lF(a,b){return this.lG(a,b,null)}, -dM(a){return new A.HE(this,a,!1,!1,!1,!1,new A.b7(A.b([],t.g),t.d),A.p(this).i("HE"))}} -A.cH.prototype={ -ee(a){return this.c.$1(a)}} -A.a3W.prototype={ -Y7(a,b,c){return a.u4(b,c)}, -ara(a,b,c){if(a.u5(b,c))return new A.k5(!0,a.u4(b,c)) -return B.NB}} -A.lJ.prototype={ -ae(){return new A.Fz(A.aE(t.od),new A.O(),B.i)}} -A.a3Y.prototype={ -$1(a){t.L1.a(a.gaF()) -return!1}, -$S:73} -A.a40.prototype={ -$1(a){var s=this,r=A.a3X(t.L1.a(a.gaF()),s.b,s.d) -if(r!=null){s.c.y7(a,null) -s.a.a=r -return!0}return!1}, -$S:73} -A.a3Z.prototype={ -$1(a){var s=A.a3X(t.L1.a(a.gaF()),this.b,this.c) -if(s!=null){this.a.a=s -return!0}return!1}, -$S:73} -A.a4_.prototype={ -$1(a){var s=this,r=s.b,q=A.a3X(t.L1.a(a.gaF()),r,s.d),p=q!=null -if(p&&q.u5(r,s.c))s.a.a=A.aCo(a).Y7(q,r,s.c) -return p}, -$S:73} -A.a41.prototype={ -$1(a){var s=this,r=s.b,q=A.a3X(t.L1.a(a.gaF()),r,s.d),p=q!=null -if(p&&q.u5(r,s.c))s.a.a=A.aCo(a).Y7(q,r,s.c) -return p}, -$S:73} -A.Fz.prototype={ -aE(){this.aV() -this.TX()}, -aaI(a){this.ao(new A.aqu(this))}, -TX(){var s,r,q,p,o=this,n=o.a.d -n=n.gaR(n) -s=A.hJ(n,A.p(n).i("q.E")) -r=o.d.oh(s) -n=o.d -n.toString -q=s.oh(n) -for(n=r.ga9(r),p=o.gQy();n.u();)n.gJ(n).Di(p) -for(n=q.ga9(q);n.u();)n.gJ(n).In(p) -o.d=s}, -aM(a){this.b2(a) -this.TX()}, -n(){var s,r,q,p,o=this -o.aP() -for(s=o.d,s=A.db(s,s.r,A.p(s).c),r=o.gQy(),q=s.$ti.c;s.u();){p=s.d;(p==null?q.a(p):p).Di(r)}o.d=null}, -G(a){var s=this.a -return new A.Fy(null,s.d,this.e,s.e,null)}} -A.aqu.prototype={ -$0(){this.a.e=new A.O()}, -$S:0} -A.Fy.prototype={ -cP(a){var s -if(this.w===a.w)s=!A.aBI(a.r,this.r) -else s=!0 -return s}} -A.qB.prototype={ -ae(){return new A.GH(new A.bB(null,t.C),B.i)}} -A.GH.prototype={ -aE(){this.aV() -$.c6.p1$.push(new A.atF(this)) -$.av.ah$.f.a.d.E(0,this.gQJ())}, -n(){$.av.ah$.f.a.d.F(0,this.gQJ()) -this.aP()}, -Uc(a){this.ze(new A.atD(this))}, -abG(a){if(this.c==null)return -this.Uc(a)}, -a6j(a){if(!this.e)this.ze(new A.aty(this))}, -a6l(a){if(this.e)this.ze(new A.atz(this))}, -abC(a){var s,r=this -if(r.f!==a){r.ze(new A.atx(r,a)) -s=r.a.Q -if(s!=null)s.$1(r.f)}}, -Rw(a,b){var s,r,q,p,o,n,m=this,l=new A.atC(m),k=new A.atB(m,new A.atA(m)) -if(a==null){s=m.a -s.toString -r=s}else r=a -q=l.$1(r) -p=k.$1(r) -if(b!=null)b.$0() -s=m.a -s.toString -o=l.$1(s) -s=m.a -s.toString -n=k.$1(s) -if(p!==n)m.a.y.$1(n) -if(q!==o){l=m.a.z -if(l!=null)l.$1(o)}}, -ze(a){return this.Rw(null,a)}, -aeO(a){return this.Rw(a,null)}, -aM(a){this.b2(a) -if(this.a.c!==a.c)$.c6.p1$.push(new A.atE(this,a))}, -ga6h(){var s,r=this.c -r.toString -r=A.ct(r,B.dB) -s=r==null?null:r.ax -switch((s==null?B.cL:s).a){case 0:return this.a.c -case 1:return!0}}, -G(a){var s,r,q,p=this,o=null,n=p.a,m=n.as -n=n.d -s=p.ga6h() -r=p.a -q=A.jB(A.uV(!1,s,r.ax,o,!0,!0,n,!0,o,p.gabB(),o,o,o,o),m,p.r,p.ga6i(),p.ga6k(),o) -n=r.c -if(n)m=r.w.a!==0 -else m=!1 -if(m)q=A.pM(r.w,q) -n -return q}} -A.atF.prototype={ -$1(a){var s=$.av.ah$.f.a.b -if(s==null)s=A.tu() -this.a.Uc(s)}, -$S:3} -A.atD.prototype={ -$0(){var s=$.av.ah$.f.a.b -switch((s==null?A.tu():s).a){case 0:this.a.d=!1 -break -case 1:this.a.d=!0 -break}}, -$S:0} -A.aty.prototype={ -$0(){this.a.e=!0}, -$S:0} -A.atz.prototype={ -$0(){this.a.e=!1}, -$S:0} -A.atx.prototype={ -$0(){this.a.f=this.b}, -$S:0} -A.atC.prototype={ -$1(a){var s=this.a -return s.e&&a.c&&s.d}, -$S:109} -A.atA.prototype={ -$1(a){var s,r=this.a.c -r.toString -r=A.ct(r,B.dB) -s=r==null?null:r.ax -switch((s==null?B.cL:s).a){case 0:return a.c -case 1:return!0}}, -$S:109} -A.atB.prototype={ -$1(a){var s=this.a -return s.f&&s.d&&this.b.$1(a)}, -$S:109} -A.atE.prototype={ -$1(a){this.a.aeO(this.b)}, -$S:3} -A.Ui.prototype={ -ee(a){a.avq() -return null}} -A.Ai.prototype={ -qu(a){return this.c}, -ee(a){}} -A.ni.prototype={} -A.nt.prototype={} -A.hC.prototype={} -A.MQ.prototype={} -A.mx.prototype={} -A.R2.prototype={ -lG(a,b,c){var s,r,q,p,o,n=$.av.ah$.f.c -if(n==null||n.e==null)return!1 -for(s=t.vz,r=0;r<2;++r){q=B.Ik[r] -p=n.e -p.toString -o=A.aCq(p,q,s) -if(o!=null&&o.u5(q,c)){this.e=o -this.f=q -return!0}}return!1}, -lF(a,b){return this.lG(a,b,null)}, -ef(a,b){var s,r=this.e -r===$&&A.c() -s=this.f -s===$&&A.c() -r.u4(s,b)}, -ee(a){return this.ef(a,null)}} -A.yf.prototype={ -Rd(a,b,c){var s -a.fj(this.gmz()) -s=a.u4(b,c) -a.fj(null) -return s}, -ef(a,b){var s=this,r=A.aCp(s.gwq(),A.p(s).c) -return r==null?s.Y9(a,s.b,b):s.Rd(r,a,b)}, -ee(a){return this.ef(a,null)}, -gjR(){var s,r,q=this,p=A.aCq(q.gwq(),null,A.p(q).c) -if(p!=null){p.fj(q.gmz()) -s=p.gjR() -p.fj(null) -r=s}else r=q.gmz().gjR() -return r}, -lG(a,b,c){var s,r=this,q=A.aCp(r.gwq(),A.p(r).c),p=q==null -if(!p)q.fj(r.gmz()) -s=(p?r.gmz():q).u5(b,c) -if(!p)q.fj(null) -return s}, -lF(a,b){return this.lG(a,b,null)}, -qu(a){var s,r=this,q=A.aCp(r.gwq(),A.p(r).c),p=q==null -if(!p)q.fj(r.gmz()) -s=(p?r.gmz():q).qu(a) -if(!p)q.fj(null) -return s}} -A.HD.prototype={ -Y9(a,b,c){var s=this.e -if(b==null)return s.ee(a) -else return s.ee(a)}, -gmz(){return this.e}, -gwq(){return this.f}} -A.HE.prototype={ -Rd(a,b,c){var s -c.toString -a.fj(new A.G_(c,this.e,new A.b7(A.b([],t.g),t.d),this.$ti.i("G_<1>"))) -s=a.u4(b,c) -a.fj(null) -return s}, -Y9(a,b,c){var s=this.e -if(b==null)return s.ef(a,c) -else return s.ef(a,c)}, -gmz(){return this.e}, -gwq(){return this.f}} -A.G_.prototype={ -fj(a){this.d.fj(a)}, -lF(a,b){return this.d.lG(0,b,this.c)}, -gjR(){return this.d.gjR()}, -qu(a){return this.d.qu(a)}, -In(a){var s -this.a1D(a) -s=this.d.a -s.b=!0 -s.a.push(a)}, -Di(a){this.a1F(a) -this.d.a.F(0,a)}, -ee(a){return this.d.ef(a,this.c)}} -A.Ur.prototype={} -A.Up.prototype={} -A.Xy.prototype={} -A.JS.prototype={ -fj(a){this.Nl(a) -this.e.fj(a)}} -A.JT.prototype={ -fj(a){this.Nl(a) -this.e.fj(a)}} -A.z9.prototype={ -ae(){return new A.UE(null,null,B.i)}} -A.UE.prototype={ -G(a){var s=this.a -return new A.UD(B.a0,s.e,s.f,null,this,B.S,s.c,null)}} -A.UD.prototype={ -aD(a){var s=this -return A.b_o(s.e,s.y,s.f,s.r,s.w,A.dd(a),s.x)}, -aH(a,b){var s,r=this -b.sh1(r.e) -b.sBp(0,r.r) -b.sau4(r.w) -b.sao_(0,r.f) -b.sav0(r.x) -b.sbF(A.dd(a)) -s=r.y -if(s!==b.jL){b.jL=s -b.av() -b.bo()}}} -A.a1P.prototype={ -n(){var s=this,r=s.cb$ -if(r!=null)r.H(0,s.giM()) -s.cb$=null -s.aP()}, -bY(){this.cR() -this.cA() -this.iN()}} -A.zg.prototype={ -aD(a){var s=new A.D8(this.e,!0,null,A.af(t.T),this.$ti.i("D8<1>")) -s.aC() -s.saW(null) -return s}, -aH(a,b){b.sl(0,this.e) -b.sa1k(!0)}} -A.Fu.prototype={ -ae(){return new A.Jm(B.i)}} -A.Jm.prototype={ -gadV(){$.av.toString -var s=$.bi() -if(s.gJl()!=="/"){$.av.toString -s=s.gJl()}else{this.a.toString -$.av.toString -s=s.gJl()}return s}, -aE(){var s=this -s.aV() -s.akO() -$.av.toString -s.r=s.Su($.bi().a.f,s.a.fy) -$.av.c1$.push(s)}, -aM(a){this.b2(a) -this.Um(a)}, -n(){B.b.F($.av.c1$,this) -var s=this.d -if(s!=null)s.n() -this.aP()}, -P2(){var s=this.d -if(s!=null)s.n() -this.e=this.d=null}, -Um(a){var s,r=this -r.a.toString -if(r.gUz()){r.P2() -if(r.f!=null){r.a.toString -a.toString -s=!1}else s=!0 -if(s){s=r.a.c -r.f=new A.m8(r,t.TX)}}else{r.P2() -r.f=null}}, -akO(){return this.Um(null)}, -gUz(){var s=this.a -if(s.Q==null){s=s.as -s=s==null?null:s.gc3(s) -if(s!==!0){this.a.toString -s=!1}else s=!0}else s=!0 -return s}, -afx(a){var s=this,r=a.a,q=r==="/"&&s.a.Q!=null?new A.azj(s):s.a.as.h(0,r) -if(q!=null)return s.a.f.$1$2(a,q,t.z) -s.a.toString -return null}, -ag6(a){return this.a.at.$1(a)}, -Bi(){var s=0,r=A.I(t.y),q,p=this,o,n -var $async$Bi=A.D(function(a,b){if(a===1)return A.F(b,r) -while(true)switch(s){case 0:p.a.toString -o=p.f -n=o==null?null:o.gO() -if(n==null){q=!1 -s=1 -break}q=n.YE() -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$Bi,r)}, -vx(a){return this.aof(a)}, -aof(a){var s=0,r=A.I(t.y),q,p=this,o,n,m,l -var $async$vx=A.D(function(b,c){if(b===1)return A.F(c,r) -while(true)switch(s){case 0:p.a.toString -o=p.f -n=o==null?null:o.gO() -if(n==null){q=!1 -s=1 -break}m=a.glW() -o=m.gdL(m).length===0?"/":m.gdL(m) -l=m.gp_() -l=l.ga8(l)?null:m.gp_() -o=A.a1A(m.gkE().length===0?null:m.gkE(),o,l).guA() -o=n.Hy(A.jf(o,0,o.length,B.A,!1),null,t.X) -o.toString -n.n9(o) -q=!0 -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$vx,r)}, -Su(a,b){this.a.toString -return A.b4I(a,b)}, -Wu(a){var s=this,r=s.Su(a,s.a.fy) -if(!r.j(0,s.r))s.ao(new A.azl(s,r))}, -G(a){var s,r,q,p,o,n,m,l,k,j,i=this,h=null,g={} -g.a=null -i.a.toString -if(i.gUz()){s=i.f -r=i.gadV() -q=i.a -q=q.ay -q.toString -g.a=A.aDb(!0,A.aJD(B.m,r,s,q,A.aOG(),i.gafw(),i.gag5(),!0,"nav"),"Navigator Scope",h,h)}else i.a.toString -g.b=null -s=i.a -s.toString -p=new A.eT(new A.azk(g,i),h) -g.b=p -g.b=A.jr(p,h,h,B.bm,!0,s.cy,h,h,B.aH) -s=i.a -r=s.CW -s=s.db -s=A.ao(255,s.gl(s)>>>16&255,s.gl(s)>>>8&255,s.gl(s)&255) -g=g.b -q=i.a -q.toString -o=i.r -o.toString -n=A.b1b() -m=A.qZ($.aQc(),t.A,t.od) -m.m(0,B.kY,new A.DH(new A.b7(A.b([],t.g),t.d)).dM(a)) -l=A.aE_() -k=t.a9 -j=A.b([],k) -B.b.K(j,i.a.dy) -j.push(B.D1) -k=A.b(j.slice(0),k) -return new A.Dy(new A.E4(A.alK(new A.MD(A.pM(m,A.aII(new A.Th(new A.E5(new A.BM(o,k,new A.TK(r,s,g,h),h),h),h),l)),h),"",n),h),q.p3,h)}} -A.azj.prototype={ -$1(a){var s=this.a.a.Q -s.toString -return s}, -$S:7} -A.azl.prototype={ -$0(){this.a.r=this.b}, -$S:0} -A.azk.prototype={ -$1(a){return this.b.a.ch.$2(a,this.a.a)}, -$S:7} -A.a33.prototype={} -A.lc.prototype={ -ae(){var s=this.$ti -return new A.IK(B.i,s.i("@").a5(s.i("lc.S")).i("IK<1,2>"))}} -A.IK.prototype={ -aE(){var s,r=this -r.aV() -s=r.a -s.toString -s=A.aHg(A.p(s).c) -r.e=s -r.tF()}, -aM(a){var s,r=this -r.b2(a) -if(a.c!==r.a.c){if(r.d!=null){r.OD() -r.a.toString -s=r.e -s===$&&A.c() -r.e=new A.dH(B.iM,s.b,s.c,s.d,s.$ti)}r.tF()}}, -G(a){var s,r=this.a -r.toString -s=this.e -s===$&&A.c() -return r.IN(a,s)}, -n(){this.OD() -this.aP()}, -tF(){var s,r=this -r.d=r.a.c.n1(new A.axE(r),new A.axF(r),new A.axG(r)) -r.a.toString -s=r.e -s===$&&A.c() -r.e=new A.dH(B.fm,s.b,s.c,s.d,s.$ti)}, -OD(){var s=this.d -if(s!=null){s.bb(0) -this.d=null}}} -A.axE.prototype={ -$1(a){var s=this.a -s.ao(new A.axD(s,a))}, -$S(){return this.a.$ti.i("~(1)")}} -A.axD.prototype={ -$0(){var s=this.a,r=s.a -r.toString -s.e===$&&A.c() -s.e=new A.dH(B.mL,this.b,null,null,A.p(r).i("dH<1>"))}, -$S:0} -A.axG.prototype={ -$2(a,b){var s=this.a -s.ao(new A.axB(s,a,b))}, -$S:36} -A.axB.prototype={ -$0(){var s=this.a,r=s.a -r.toString -s.e===$&&A.c() -s.e=new A.dH(B.mL,null,this.b,this.c,A.p(r).i("dH<1>"))}, -$S:0} -A.axF.prototype={ -$0(){var s=this.a -s.ao(new A.axC(s))}, -$S:0} -A.axC.prototype={ -$0(){var s,r=this.a -r.a.toString -s=r.e -s===$&&A.c() -r.e=new A.dH(B.fn,s.b,s.c,s.d,s.$ti)}, -$S:0} -A.um.prototype={ -I(){return"ConnectionState."+this.b}} -A.dH.prototype={ -k(a){var s=this -return"AsyncSnapshot("+s.a.k(0)+", "+A.j(s.b)+", "+A.j(s.c)+", "+A.j(s.d)+")"}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -return s.$ti.b(b)&&b.a===s.a&&J.e(b.b,s.b)&&J.e(b.c,s.c)&&b.d==s.d}, -gA(a){return A.T(this.a,this.b,this.c,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.Eu.prototype={ -IN(a,b){return this.e.$2(a,b)}} -A.uZ.prototype={ -ae(){return new A.GK(B.i,this.$ti.i("GK<1>"))}} -A.GK.prototype={ -aE(){var s,r=this -r.aV() -r.a.toString -s=A.aHg(r.$ti.c) -r.e=s -r.tF()}, -aM(a){var s,r=this -r.b2(a) -if(a.c!=r.a.c){if(r.d!=null){r.d=null -s=r.e -s===$&&A.c() -r.e=new A.dH(B.iM,s.b,s.c,s.d,s.$ti)}r.tF()}}, -G(a){var s,r=this.a -r.toString -s=this.e -s===$&&A.c() -return r.d.$2(a,s)}, -n(){this.d=null -this.aP()}, -tF(){var s,r=this,q=r.a.c -if(q!=null){s=r.d=new A.O() -q.hj(0,new A.atL(r,s),new A.atM(r,s),t.H) -q=r.e -q===$&&A.c() -if(q.a!==B.fn)r.e=new A.dH(B.fm,q.b,q.c,q.d,q.$ti)}}} -A.atL.prototype={ -$1(a){var s=this.a -if(s.d===this.b)s.ao(new A.atK(s,a))}, -$S(){return this.a.$ti.i("b1(1)")}} -A.atK.prototype={ -$0(){var s=this.a -s.e=new A.dH(B.fn,this.b,null,null,s.$ti.i("dH<1>"))}, -$S:0} -A.atM.prototype={ -$2(a,b){var s=this.a -if(s.d===this.b)s.ao(new A.atJ(s,a,b))}, -$S:36} -A.atJ.prototype={ -$0(){var s=this.a -s.e=new A.dH(B.fn,null,this.b,this.c,s.$ti.i("dH<1>"))}, -$S:0} -A.tX.prototype={ -ae(){return new A.FD(B.i)}} -A.FD.prototype={ -aE(){this.aV() -this.OE()}, -aM(a){this.b2(a) -this.OE()}, -OE(){this.e=new A.eH(this.ga6q(),this.a.c,null,t.Jd)}, -n(){var s,r,q=this.d -if(q!=null)for(q=A.fh(q,q.r,A.p(q).c);q.u();){s=q.d -r=this.d.h(0,s) -r.toString -s.H(0,r)}this.aP()}, -a6r(a){var s,r=this,q=a.a,p=r.d -if(p==null)p=r.d=A.m(t.I_,t.M) -p.m(0,q,r.a8w(q)) -p=r.d.h(0,q) -p.toString -q.U(0,p) -if(!r.f){r.f=!0 -s=r.Q6() -if(s!=null)r.Ug(s) -else $.c6.p1$.push(new A.arc(r))}return!1}, -Q6(){var s={},r=this.c -r.toString -s.a=null -r.b3(new A.arh(s)) -return t.xO.a(s.a)}, -Ug(a){var s,r -this.c.toString -s=this.f -r=this.e -r===$&&A.c() -a.OB(t.Fw.a(A.aYR(r,s)))}, -a8w(a){var s=A.bg("callback"),r=new A.arg(this,a,s) -s.scM(r) -return r}, -G(a){var s=this.f,r=this.e -r===$&&A.c() -return new A.Bs(s,r,null)}} -A.arc.prototype={ -$1(a){var s,r=this.a -if(r.c==null)return -s=r.Q6() -s.toString -r.Ug(s)}, -$S:3} -A.arh.prototype={ -$1(a){this.a.a=a}, -$S:10} -A.arg.prototype={ -$0(){var s=this.a,r=this.b -s.d.F(0,r) -r.H(0,this.c.aI()) -if(s.d.a===0)if($.c6.p4$.a<3)s.ao(new A.are(s)) -else{s.f=!1 -A.ey(new A.arf(s))}}, -$S:0} -A.are.prototype={ -$0(){this.a.f=!1}, -$S:0} -A.arf.prototype={ -$0(){var s=this.a -if(s.c!=null&&s.d.a===0)s.ao(new A.ard(s))}, -$S:0} -A.ard.prototype={ -$0(){}, -$S:0} -A.vk.prototype={} -A.Bt.prototype={ -n(){this.T() -this.d3()}} -A.pR.prototype={ -tZ(){var s=new A.Bt($.aO()) -this.ib$=s -this.c.f6(new A.vk(s))}, -p8(){var s,r=this -if(r.gxo()){if(r.ib$==null)r.tZ()}else{s=r.ib$ -if(s!=null){s.T() -s.d3() -r.ib$=null}}}, -G(a){if(this.gxo()&&this.ib$==null)this.tZ() -return B.X6}} -A.YE.prototype={ -G(a){throw A.d(A.AS("Widgets that mix AutomaticKeepAliveClientMixin into their State must call super.build() but must ignore the return value of the superclass."))}} -A.a1s.prototype={ -MU(a,b){}, -oQ(a){A.aMi(this,new A.az6(this,a))}} -A.az6.prototype={ -$1(a){var s=a.z -if(s!=null&&s.t(0,this.a))a.bu()}, -$S:10} -A.az5.prototype={ -$1(a){A.aMi(a,this.a)}, -$S:10} -A.a1t.prototype={ -bN(a){return new A.a1s(A.hG(t.v,t.X),this,B.R)}} -A.iG.prototype={ -cP(a){return this.w!==a.w}} -A.Q2.prototype={ -aD(a){var s=this.e -s=new A.Rx(B.d.bE(A.a3d(s,0,1)*255),s,!1,null,A.af(t.T)) -s.aC() -s.saW(null) -return s}, -aH(a,b){b.soR(0,this.e) -b.sAC(!1)}} -A.wA.prototype={ -aD(a){var s=new A.RE(this.e,B.ip,null,A.af(t.T)) -s.aC() -s.saW(null) -return s}, -aH(a,b){b.sa0Z(this.e) -b.smu(B.ip)}} -A.Le.prototype={ -aD(a){var s=new A.Rh(this.e,B.cZ,null,A.af(t.T)) -s.aC() -s.saW(null) -return s}, -aH(a,b){b.sBM(0,this.e) -b.smu(B.cZ)}} -A.A8.prototype={ -aD(a){var s=new A.Da(this.e,this.f,this.r,!1,!1,null,A.af(t.T)) -s.aC() -s.saW(null) -return s}, -aH(a,b){b.soU(this.e) -b.sXm(this.f) -b.satk(this.r) -b.e1=b.br=!1}, -vy(a){a.soU(null) -a.sXm(null)}} -A.uh.prototype={ -aD(a){var s=new A.Rl(null,this.f,null,A.af(t.T)) -s.aC() -s.saW(null) -return s}, -aH(a,b){b.sqq(null) -b.sjA(this.f)}, -vy(a){a.sqq(null)}} -A.LY.prototype={ -aD(a){var s=new A.Rk(this.e,A.dd(a),null,this.r,null,A.af(t.T)) -s.aC() -s.saW(null) -return s}, -aH(a,b){b.sIJ(0,this.e) -b.sjA(this.r) -b.sqq(null) -b.sbF(A.dd(a))}} -A.ue.prototype={ -aD(a){var s=new A.Rj(this.e,this.f,null,A.af(t.T)) -s.aC() -s.saW(null) -return s}, -aH(a,b){b.sqq(this.e) -b.sjA(this.f)}, -vy(a){a.sqq(null)}} -A.a69.prototype={ -$1(a){return A.a67(this.c,this.b,new A.oQ(this.a,A.dd(a)))}, -$S:420} -A.QA.prototype={ -aD(a){var s=this,r=new A.Ry(s.e,s.r,s.w,s.y,s.x,null,s.f,null,A.af(t.T)) -r.aC() -r.saW(null) -return r}, -aH(a,b){var s=this -b.scr(0,s.e) -b.sjA(s.f) -b.sIJ(0,s.r) -b.sjH(0,s.w) -b.saf(0,s.x) -b.sdu(0,s.y)}} -A.QB.prototype={ -aD(a){var s=this,r=new A.Rz(s.r,s.x,s.w,s.e,s.f,null,A.af(t.T)) -r.aC() -r.saW(null) -return r}, -aH(a,b){var s=this -b.sqq(s.e) -b.sjA(s.f) -b.sjH(0,s.r) -b.saf(0,s.w) -b.sdu(0,s.x)}} -A.td.prototype={ -aD(a){var s=this,r=A.dd(a),q=new A.RI(s.w,null,A.af(t.T)) -q.aC() -q.saW(null) -q.sbL(0,s.e) -q.sh1(s.r) -q.sbF(r) -q.smR(s.x) -q.sYU(0,null) -return q}, -aH(a,b){var s=this -b.sbL(0,s.e) -b.sYU(0,null) -b.sh1(s.r) -b.sbF(A.dd(a)) -b.br=s.w -b.smR(s.x)}} -A.uk.prototype={ -aD(a){var s=new A.Ru(this.e,null,A.af(t.T)) -s.aC() -s.saW(null) -return s}, -aH(a,b){b.soI(this.e)}} -A.M7.prototype={ -aD(a){var s=new A.Rq(this.e,!1,this.x,B.cX,B.cX,null,A.af(t.T)) -s.aC() -s.saW(null) -return s}, -aH(a,b){b.soI(this.e) -b.sa1b(!1) -b.sct(0,this.x) -b.sarD(B.cX) -b.sapf(B.cX)}} -A.NR.prototype={ -aD(a){var s=new A.Rr(this.e,this.f,null,A.af(t.T)) -s.aC() -s.saW(null) -return s}, -aH(a,b){b.sauH(this.e) -b.V=this.f}} -A.bY.prototype={ -aD(a){var s=new A.Dl(this.e,A.dd(a),null,A.af(t.T)) -s.aC() -s.saW(null) -return s}, -aH(a,b){b.se4(0,this.e) -b.sbF(A.dd(a))}} -A.fd.prototype={ -aD(a){var s=new A.RB(this.f,this.r,this.e,A.dd(a),null,A.af(t.T)) -s.aC() -s.saW(null) -return s}, -aH(a,b){b.sh1(this.e) -b.sav3(this.f) -b.saqm(this.r) -b.sbF(A.dd(a))}} -A.q1.prototype={} -A.i6.prototype={ -aD(a){var s=new A.Db(this.e,null,A.af(t.T)) -s.aC() -s.saW(null) -return s}, -aH(a,b){b.siX(this.e)}} -A.By.prototype={ -o1(a){var s,r,q=a.b -q.toString -t.Wz.a(q) -s=this.f -if(q.e!==s){q.e=s -r=a.gba(a) -if(r instanceof A.t)r.W()}}} -A.A7.prototype={ -aD(a){var s=new A.D9(this.e,0,null,null,A.af(t.T)) -s.aC() -s.K(0,null) -return s}, -aH(a,b){b.siX(this.e)}} -A.e1.prototype={ -aD(a){return A.aKq(A.eR(this.f,this.e))}, -aH(a,b){b.sV3(A.eR(this.f,this.e))}, -df(){var s,r=this,q=r.e -if(q===1/0&&r.f===1/0)s="SizedBox.expand" -else s=q===0&&r.f===0?"SizedBox.shrink":"SizedBox" -q=r.a -return q==null?s:s+"-"+q.k(0)}} -A.ft.prototype={ -aD(a){return A.aKq(this.e)}, -aH(a,b){b.sV3(this.e)}} -A.OY.prototype={ -aD(a){var s=new A.Rv(this.e,this.f,null,A.af(t.T)) -s.aC() -s.saW(null) -return s}, -aH(a,b){b.sKR(0,this.e) -b.sKP(0,this.f)}} -A.Q7.prototype={ -aD(a){var s=this,r=new A.Rm(s.f,s.r,s.w,s.x,s.e,A.dd(a),null,A.af(t.T)) -r.aC() -r.saW(null) -return r}, -aH(a,b){var s=this -b.sh1(s.e) -b.sasc(0,s.f) -b.sKR(0,s.r) -b.sas8(0,s.w) -b.sKP(0,s.x) -b.sbF(A.dd(a))}} -A.vG.prototype={ -aD(a){var s=new A.Dk(this.e,null,A.af(t.T)) -s.aC() -s.saW(null) -return s}, -aH(a,b){b.sCG(this.e)}, -bN(a){return new A.YK(this,B.R)}} -A.YK.prototype={} -A.OA.prototype={ -aD(a){var s=null,r=this.e -if(r===0)r=s -r=new A.Dh(r,s,s,A.af(t.T)) -r.aC() -r.saW(s) -return r}, -aH(a,b){var s=this.e -b.sa1x(s===0?null:s) -b.sa1w(null)}} -A.SD.prototype={ -aD(a){var s=a.an(t.I) -s.toString -s=new A.RH(this.e,s.w,null,A.af(t.T)) -s.aC() -s.saW(null) -return s}, -aH(a,b){var s -b.se4(0,this.e) -s=a.an(t.I) -s.toString -b.sbF(s.w)}} -A.P1.prototype={ -aD(a){var s=new A.Di(A.aB6(a,B.aq,!1),0,null,null,A.af(t.T)) -s.aC() -s.K(0,null) -return s}, -aH(a,b){b.shx(A.aB6(a,B.aq,!1))}} -A.Eo.prototype={ -aD(a){var s=A.dd(a) -return A.b_u(this.e,null,this.w,this.r,s)}, -aH(a,b){var s -b.sh1(this.e) -s=A.dd(a) -b.sbF(s) -b.sBO(this.r) -b.sjA(this.w)}} -A.Ot.prototype={ -G(a){var s,r,q=this.w,p=q.length,o=J.ae6(p,t.l7) -for(s=this.r,r=0;r0&&n.b>0){n=a.gbU(a) -s=o.gq(o) -r=b.a -q=b.b -p=$.ad().b1() -p.saf(0,o.cI) -n.cT(new A.y(r,q,r+s.a,q+s.b),p)}n=o.C$ -if(n!=null)a.dc(n,b)}} -A.azn.prototype={ -$1(a){var s=a==null?t.K.a(a):a -return this.a.mW(s)}, -$S:421} -A.fO.prototype={ -Bi(){return A.dt(!1,t.y)}, -vx(a){var s=a.glW(),r=s.gdL(s).length===0?"/":s.gdL(s),q=s.gp_() -q=q.ga8(q)?null:s.gp_() -r=A.a1A(s.gkE().length===0?null:s.gkE(),r,q).guA() -A.jf(r,0,r.length,B.A,!1) -return A.dt(!1,t.y)}, -Jq(){}, -Ww(){}, -Wv(){}, -Wu(a){}, -Wt(a){}, -Jw(){var s=0,r=A.I(t.s1),q -var $async$Jw=A.D(function(a,b){if(a===1)return A.F(b,r) -while(true)switch(s){case 0:q=B.ly -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$Jw,r)}} -A.Fv.prototype={ -BX(){var s=0,r=A.I(t.s1),q,p=this,o,n,m,l -var $async$BX=A.D(function(a,b){if(a===1)return A.F(b,r) -while(true)switch(s){case 0:o=p.c1$,n=o.length,m=!1,l=0 -case 3:if(!(l"))}, -aD(a){return this.d}, -aH(a,b){}, -am7(a,b){var s,r={} -r.a=b -if(b==null){a.Yw(new A.aja(r,this,a)) -s=r.a -s.toString -a.v_(s,new A.ajb(r))}else{b.p2=this -b.cN()}r=r.a -r.toString -return r}, -df(){return this.e}} -A.aja.prototype={ -$0(){var s=this.b,r=A.b_r(s,s.$ti.c) -this.a.a=r -r.r=this.c}, -$S:0} -A.ajb.prototype={ -$0(){var s=this.a.a -s.toString -s.O6(null,null) -s.zx()}, -$S:0} -A.oF.prototype={ -b3(a){var s=this.p1 -if(s!=null)a.$1(s)}, -ie(a){this.p1=null -this.jm(a)}, -eg(a,b){this.O6(a,b) -this.zx()}, -bB(a,b){this.kc(0,b) -this.zx()}, -jX(){var s=this,r=s.p2 -if(r!=null){s.p2=null -s.kc(0,s.$ti.i("rG<1>").a(r)) -s.zx()}s.EC()}, -zx(){var s,r,q,p,o,n,m,l=this -try{o=l.p1 -n=l.f -n.toString -l.p1=l.dV(o,l.$ti.i("rG<1>").a(n).c,B.dG)}catch(m){s=A.a6(m) -r=A.aJ(m) -o=A.bu("attaching to the render tree") -q=new A.bH(s,r,"widgets library",o,null,!1) -A.cY(q) -p=A.AF(q) -l.p1=l.dV(null,p,B.dG)}}, -ga_(){return this.$ti.i("aD<1>").a(A.b9.prototype.ga_.call(this))}, -ih(a,b){var s=this.$ti -s.i("aD<1>").a(A.b9.prototype.ga_.call(this)).saW(s.c.a(a))}, -il(a,b,c){}, -ja(a,b){this.$ti.i("aD<1>").a(A.b9.prototype.ga_.call(this)).saW(null)}} -A.Uj.prototype={$iah:1} -A.I_.prototype={ -eg(a,b){this.m6(a,b)}} -A.Jn.prototype={ -ig(){this.a1H() -$.h5=this -var s=$.bi() -s.Q=this.gack() -s.as=$.ai}, -M1(){this.a1J() -this.G1()}} -A.Jo.prototype={ -ig(){this.a5_() -$.c6=this}, -oA(){this.a1I()}} -A.Jp.prototype={ -ig(){var s,r=this -r.a51() -$.fH=r -r.eW$!==$&&A.cQ() -r.eW$=B.CV -s=new A.Dv(A.aE(t.z4),$.aO()) -B.k5.nw(s.gaeW()) -r.fm$=s -r.adU() -s=$.aJa -if(s==null)s=$.aJa=A.b([],t.iM) -s.push(r.ga6v()) -B.AD.Eb(new A.azn(r)) -B.AC.Eb(r.gabQ()) -B.b2.nw(r.gaci()) -$.cv() -r.atv() -r.Ca()}, -oA(){this.a52()}} -A.Jq.prototype={ -ig(){this.a53() -$.io=this -var s=t.K -this.mI$=new A.adk(A.m(s,t.Sc),A.m(s,t.B6),A.m(s,t.pt))}, -vX(){this.a3C() -var s=this.mI$ -s===$&&A.c() -s.a0(0)}, -mW(a){return this.aq8(a)}, -aq8(a){var s=0,r=A.I(t.H),q,p=this -var $async$mW=A.D(function(b,c){if(b===1)return A.F(c,r) -while(true)switch(s){case 0:s=3 -return A.K(p.a3D(a),$async$mW) -case 3:switch(A.aQ(J.aN(t.a.a(a),"type"))){case"fontsChange":p.vK$.T() -break}s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$mW,r)}} -A.Jr.prototype={ -ig(){var s,r,q=this -q.a56() -$.al0=q -s=$.bi() -q.JX$=s.a.a -s.p2=q.gad0() -r=$.ai -s.p3=r -s.p4=q.gacZ() -s.R8=r -q.QT()}} -A.Js.prototype={ -ig(){var s,r,q,p,o=this -o.a57() -$.RK=o -s=t.TT -o.au$=new A.CM(o.gad1(),o.gad5(),o.gad3(),A.b([],s),A.b([],s),A.b([],s),A.aE(t.I9),A.aE(t.sv)) -s=$.bi() -s.f=o.gapH() -r=s.r=$.ai -s.go=o.gaqg() -s.id=r -s.k3=o.gapP() -s.k4=r -r=o.Wc() -s=s.d.h(0,0) -s.toString -s=new A.RJ(B.o,r,s,null,A.af(t.T)) -s.aC() -s.saW(null) -r=o.au$ -r===$&&A.c() -r.sau7(s) -s=o.au$.e -s.Q=s -s.y.r.push(s) -r=s.Ud() -s.ch.saw(0,r) -s.y.Q.push(s) -o.ok$.push(o.gacg()) -o.aqP() -o.p1$.push(o.gadD()) -s=o.au$ -q=o.ar$ -if(q===$){p=new A.FG(o,$.aO()) -o.gur().U(0,p.gcJ()) -o.ar$!==$&&A.aW() -o.ar$=p -q=p}s.ai(q)}, -oA(){this.a54()}} -A.Jt.prototype={ -Kb(){var s,r,q -this.a3c() -for(s=this.c1$,r=s.length,q=0;q=s.b&&s.c>=s.d) -else s=!0}else s=!1 -if(s)m=new A.OY(0,0,new A.ft(B.lQ,n,n),n) -else{s=o.d -if(s!=null)m=new A.fd(s,n,n,m,n)}r=o.gaga() -if(r!=null)m=new A.bY(r,m,n) -s=o.f -if(s!=null)m=new A.q4(s,m,n) -s=o.as -if(s!==B.m){q=A.dd(a) -p=o.r -p.toString -m=A.a67(m,s,new A.W4(q==null?B.p:q,p))}s=o.r -if(s!=null)m=A.kq(m,s,B.br) -s=o.w -if(s!=null)m=A.kq(m,s,B.mZ) -s=o.x -if(s!=null)m=new A.ft(s,m,n) -s=o.y -if(s!=null)m=new A.bY(s,m,n) -s=o.z -if(s!=null)m=A.TP(o.Q,m,s,!0) -m.toString -return m}} -A.W4.prototype={ -DO(a){return this.c.DP(new A.y(0,0,0+a.a,0+a.b),this.b)}, -Eh(a){return!a.c.j(0,this.c)||a.b!==this.b}} -A.q7.prototype={ -I(){return"ContextMenuButtonType."+this.b}} -A.eD.prototype={ -j(a,b){var s=this -if(b==null)return!1 -if(J.Y(b)!==A.u(s))return!1 -return b instanceof A.eD&&b.c==s.c&&J.e(b.a,s.a)&&b.b===s.b}, -gA(a){return A.T(this.c,this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){return"ContextMenuButtonItem "+this.b.k(0)+", "+A.j(this.c)}} -A.Ma.prototype={ -N5(a,b,c){var s,r -A.aHF() -s=A.af8(b,t.N1) -s.toString -r=A.aJF(b) -if(r==null)r=null -else{r=r.c -r.toString}r=A.rl(new A.a6w(A.Ov(b,r),c),!1) -$.uq=r -s.Ks(0,r) -$.lR=this}, -ez(a){if($.lR!==this)return -A.aHF()}} -A.a6w.prototype={ -$1(a){return new A.pb(this.a.a,this.b.$1(a),null)}, -$S:7} -A.nF.prototype={ -xp(a,b,c){return A.a6X(c,this.w,null,this.y,this.x)}, -cP(a){return!J.e(this.w,a.w)||!J.e(this.x,a.x)||!J.e(this.y,a.y)}} -A.a6Y.prototype={ -$1(a){var s=a.an(t.Uf) -if(s==null)s=B.d7 -return A.a6X(this.e,s.w,this.a,this.d,s.x)}, -$S:422} -A.YF.prototype={ -G(a){throw A.d(A.AS("A DefaultSelectionStyle constructed with DefaultSelectionStyle.fallback cannot be incorporated into the widget tree, it is meant only to provide a fallback value returned by DefaultSelectionStyle.of() when no enclosing default selection style is present in a BuildContext."))}} -A.MD.prototype={ -aam(){return $.aPi()}, -G(a){var s=A.alK(this.c,"",this.aam()) -return A.alK(s,"",A.aWZ())}} -A.MI.prototype={ -nn(a){return new A.ar(0,a.b,0,a.d)}, -nq(a,b){var s,r=this.b,q=r.a,p=q+b.a-a.a -r=r.b -s=r+b.b-a.b -if(p>0)q-=p -return new A.k(q,s>0?r-s:r)}, -la(a){return!this.b.j(0,a.b)}} -A.MR.prototype={ -G(a){var s=A.bD(a,null,t.w).w,r=s.a,q=r.a,p=r.b,o=A.aXe(a),n=A.aXc(o,r),m=A.aXd(A.aHY(new A.y(0,0,0+q,0+p),A.aHX(s)),n) -return new A.bY(new A.aF(m.a,m.b,q-m.c,p-m.d),A.kP(this.d,s.atL(m),null),null)}} -A.a7s.prototype={ -$1(a){var s -if(!a.gln(a).gfe().avd(0,0)){a.gavh(a) -s=!1}else s=!0 -return s}, -$S:160} -A.a7t.prototype={ -$1(a){return a.gln(a)}, -$S:424} -A.MS.prototype={ -gb5(a){var s=this.a -if(s==null)return null -s=s.c -s.toString -return s}} -A.uD.prototype={ -ae(){return new A.Gp(A.oA(null),A.oA(null),B.i)}, -apl(a,b,c){return this.d.$3(a,b,c)}, -au3(a,b,c){return this.e.$3(a,b,c)}} -A.Gp.prototype={ -aE(){var s,r=this -r.aV() -s=r.a.c -r.d=s.gb4(s) -s=r.a.c -s.bO() -s=s.d6$ -s.b=!0 -s.a.push(r.gEZ()) -r.TY()}, -OA(a){var s,r=this,q=r.d -q===$&&A.c() -s=r.a7p(a,q) -r.d=s -if(q!==s)r.TY()}, -aM(a){var s,r,q=this -q.b2(a) -s=a.c -if(s!==q.a.c){r=q.gEZ() -s.dU(r) -s=q.a.c -s.bO() -s=s.d6$ -s.b=!0 -s.a.push(r) -r=q.a.c -q.OA(r.gb4(r))}}, -a7p(a,b){switch(a.a){case 0:case 3:return a -case 1:switch(b.a){case 0:case 3:case 1:return a -case 2:return b}break -case 2:switch(b.a){case 0:case 3:case 2:return a -case 1:return b}break}}, -TY(){var s=this,r=s.d -r===$&&A.c() -switch(r.a){case 0:case 1:s.e.sba(0,s.a.c) -s.f.sba(0,B.bS) -break -case 2:case 3:s.e.sba(0,B.dH) -s.f.sba(0,new A.jM(s.a.c,new A.b7(A.b([],t.x8),t.jc),0)) -break}}, -n(){this.a.c.dU(this.gEZ()) -this.aP()}, -G(a){var s=this.a -return s.apl(a,this.e,s.au3(a,this.f,s.f))}} -A.Vl.prototype={ -aD(a){var s=new A.ZL(this.e,this.f,null,A.af(t.T)) -s.aC() -s.saW(null) -return s}, -aH(a,b){var s -this.NY(a,b) -s=this.f -b.am=s -if(!s){s=b.V -if(s!=null)s.$0() -b.V=null}else if(b.V==null)b.av()}} -A.ZL.prototype={ -ap(a,b){var s=this -if(s.am)if(s.V==null)s.V=a.a.alE(s.v) -s.iC(a,b)}} -A.ES.prototype={ -scW(a,b){this.m7(0,this.a.ve(B.b7,B.eS,b))}, -Vn(a,b,c){var s,r,q,p,o=null -if(!this.a.gYb()||!c)return A.c8(o,o,o,b,this.a.a) -s=b.b0(B.zy) -r=this.a -q=r.c -r=r.a -p=q.a -q=q.b -return A.c8(A.b([A.c8(o,o,o,o,B.c.S(r,0,p)),A.c8(o,o,o,s,B.c.S(r,p,q)),A.c8(o,o,o,o,B.c.bK(r,q))],t.Ne),o,o,b,o)}, -st5(a){var s,r,q,p,o=this -if(!o.Yk(a))throw A.d(A.AS("invalid text selection: "+a.k(0))) -s=a.a -r=a.b -if(s===r){q=o.a.c -s=s>=q.a&&r<=q.b}else s=!1 -p=s?o.a.c:B.b7 -o.m7(0,o.a.anB(p,a))}, -Yk(a){var s=this.a.a.length -return a.a<=s&&a.b<=s}} -A.Fb.prototype={} -A.hY.prototype={} -A.at6.prototype={ -fk(a,b){return 0}, -lE(a){return a>=this.b}, -eA(a,b){var s,r,q,p=this.c,o=this.d -if(p[o].a>b){s=o -o=0}else s=11 -for(r=s-1;o=n)return r.h(s,o) -else if(a<=n)q=o-1 -else p=o+1}return null}, -amp(){var s,r=this,q=null,p=r.a.z -if(p===B.zO)return q -s=A.b([],t.ZD) -if(p.b&&r.gBb())s.push(new A.eD(new A.a8e(r),B.mM,q)) -if(p.a&&r.gB_())s.push(new A.eD(new A.a8f(r),B.mN,q)) -if(p.c&&r.grt())s.push(new A.eD(new A.a8g(r),B.mO,q)) -if(p.d&&r.gML())s.push(new A.eD(new A.a8h(r),B.mP,q)) -return s}, -aas(){var s,r,q,p,o,n,m,l=this,k=l.a.c.a.b,j=l.gX().aA.f.a_d(),i=l.a.c.a.a -if(j!==i||!k.gc8()||k.a===k.b)return new A.X8(l.gX().aA.gdd(),l.gX().aA.gdd()) -s=k.a -r=k.b -q=B.c.S(i,s,r) -p=q.length===0 -o=p?B.ct:new A.f5(q) -o=o.gM(o) -n=l.gX().rZ(new A.cb(s,s+o.length)) -s=p?B.ct:new A.f5(q) -s=s.gL(s) -m=l.gX().rZ(new A.cb(r-s.length,r)) -s=n==null?null:n.d-n.b -if(s==null)s=l.gX().aA.gdd() -r=m==null?null:m.d-m.b -return new A.X8(s,r==null?l.gX().aA.gdd():r)}, -gana(){var s,r,q,p,o=this -if(o.gX().qS!=null){s=o.gX().qS -s.toString -return new A.F4(s,null)}r=o.aas() -q=o.a.c.a.b -p=o.gX().DR(q) -return A.b0G(r.b,o.gX(),p,r.a)}, -ganb(){var s,r,q,p,o,n,m,l,k=this,j=null,i=k.amp() -if(i==null){i=k.x.a -s=k.gB_()?new A.a8i(k):j -r=k.gBb()?new A.a8j(k):j -q=k.grt()?new A.a8k(k):j -p=k.gML()?new A.a8l(k):j -o=k.gYu()?new A.a8m(k):j -n=t.ZD -m=A.b([],n) -l=q!=null -if(!l||i!==B.dJ){i=A.b([],n) -if(r!=null)i.push(new A.eD(r,B.mM,j)) -if(s!=null)i.push(new A.eD(s,B.mN,j)) -if(l)i.push(new A.eD(q,B.mO,j)) -if(p!=null)i.push(new A.eD(p,B.mP,j)) -B.b.K(m,i)}if(o!=null)m.push(new A.eD(o,B.Eh,j)) -i=m}return i}, -aE(){var s=this -s.a44() -s.x.U(0,s.gRJ()) -s.a.c.U(0,s.gyA()) -s.a.d.U(0,s.gFR()) -s.gfG().U(0,s.gafp()) -s.r.sl(0,s.a.as) -s.cy=A.aXL(s.a.aN)}, -bu(){var s,r,q,p,o=this -o.di() -s=o.c -s.toString -s=A.ct(s,B.le) -s=s==null?null:s.at -r=o.a -o.db=s===!0?r.CW.b0(B.eT):r.CW -o.c.an(t.BY) -if(!o.CW)o.a.toString -s=o.c -s.toString -q=A.aEj(s) -if(o.fx!==q){o.fx=q -if(o.gzR())o.uu() -else if(!o.fx&&o.d!=null)o.Tl()}if(A.bA()!==B.aL&&A.bA()!==B.aY)return -s=o.c -s.toString -s=A.bD(s,B.A9,t.w).w -p=s.grr(s) -s=o.fr -if(s==null){o.fr=p -return}if(p!==s){o.fr=p -if(A.bA()===B.aL)o.mY(!1) -if(A.bA()===B.aY)o.hc()}}, -aM(a){var s,r,q,p,o=this -o.b2(a) -s=a.c -if(o.a.c!==s){r=o.gyA() -s.H(0,r) -o.a.c.U(0,r) -o.I6()}if(!o.a.c.a.b.j(0,s.a.b)){s=o.Q -if(s!=null)s.bB(0,o.a.c.a)}s=o.Q -if(s!=null)s.sXC(o.a.Q) -s=o.a -s.b9!=a.b9 -r=a.d -if(s.d!==r){s=o.gFR() -r.H(0,s) -o.a.d.U(0,s) -o.p8()}s=o.a -s.toString -if(a.x&&s.d.gcj())$.c6.p1$.push(new A.a8p(o)) -s=o.ghX() -if(s){s=o.a -if(a.x!==s.x){o.z.toString -s=s.b9 -s=(s==null?o:s).gng() -$.cv().aky(s)}}if(o.ghX())o.a.toString -if(!o.a.CW.j(0,a.CW)){s=o.c -s.toString -s=A.ct(s,B.le) -s=s==null?null:s.at -r=o.a -o.db=s===!0?r.CW.b0(B.eT):r.CW -if(o.ghX()){s=o.z -s.toString -r=o.db -q=o.gtW() -s.Ed(r.d,r.r,r.w,o.a.db,q)}}if(o.a.as!==a.as)o.HH() -s=o.a.p1 -if(t.qY.b(s))p=o.grt() -else{s=s==null&&null -p=s===!0}if(o.a.a1&&o.grt()&&p)o.x.ds(0)}, -n(){var s=this,r=s.at -if(r!=null)r.n() -s.a.c.H(0,s.gyA()) -r=s.dy -if(r!=null)r.n() -s.dy=null -s.P5() -r=s.d -if(r!=null)r.bb(0) -s.d=null -r=s.e -if(r!=null)r.n() -s.e=null -r=s.Q -if(r!=null)r.n() -s.Q=null -s.a.d.H(0,s.gFR()) -B.b.F($.av.c1$,s) -r=s.x -r.H(0,s.gRJ()) -r.n() -r=s.r -r.ag$=$.aO() -r.aj$=0 -$.av.ah$.f.H(0,s.gA7()) -s.a45()}, -auP(a){var s,r,q,p,o,n=this,m=n.a.c.a -if(a.a===m.a){s=a.b -r=s.a -q=m.b -p=q.a -s=r===s.b===(p===q.b)&&r===p&&s.e!==q.e}else s=!1 -if(s)a=a.ia(a.b.anm(m.b.e)) -m=n.a -if(m.x)a=m.c.a.ia(a.b) -n.fy=a -if(a.j(0,n.a.c.a))return -m=a.a -s=n.a.c.a -if(m===s.a&&a.c.j(0,s.c)){m=n.z==null?null:$.cv().r -if(m===!0)o=B.hu -else o=n.k1!=null?B.eB:B.a8 -n.yD(a.b,o)}else{if(m!==n.a.c.a.a)n.mY(!1) -n.ry=null -if(n.ghX())n.a.toString -n.p3=0 -n.p4=null -n.aa5(a,B.a8)}if(n.gzR()&&n.d!=null){n.zX(!1) -n.uu()}n.zJ(!0)}, -ata(a){var s=this -switch(a.a){case 12:if(s.a.k1===1)s.yJ(a,!0) -break -case 2:case 3:case 6:case 7:case 4:case 5:s.yJ(a,!0) -break -case 8:case 11:case 9:case 0:case 10:case 1:s.yJ(a,!1) -break}}, -auQ(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f=this,e=null,d=f.dy -if(d==null){d=A.bO(e,e,e,e,f) -d.bO() -s=d.cU$ -s.b=!0 -s.a.push(f.gafv()) -f.dy=d}s=a.b -switch(s.a){case 0:r=d.r -if(r!=null&&r.a!=null){d.ff(0) -f.RM()}f.zX(!1) -f.gkg().sl(0,1) -f.k1=a.a -q=new A.bf(f.gX().b6.c,f.gX().b6.e) -d=f.gX().jg(q) -f.go=d -f.k2=d.gaT().Z(0,new A.k(0,f.gX().aA.gdd()/2)) -f.id=q -d=f.gX() -r=f.k2 -r.toString -p=f.id -p.toString -d.Ea(s,r,p) -break -case 1:d=f.k1 -d.toString -o=a.a.Z(0,d) -n=f.go.gaT().Y(0,o).Z(0,new A.k(0,f.gX().aA.gdd()/2)) -d=f.gX() -r=d.aA -p=r.b.a.a -m=Math.ceil(p.gce(p))-r.gdd()+5 -l=r.b.b+4 -r=d.JT -k=r!=null?n.Z(0,r):B.e -if(d.JU&&k.a>0){d.kw=new A.k(n.a- -4,d.kw.b) -d.JU=!1}else if(d.BC&&k.a<0){d.kw=new A.k(n.a-l,d.kw.b) -d.BC=!1}if(d.BD&&k.b>0){d.kw=new A.k(d.kw.a,n.b- -4) -d.BD=!1}else if(d.BE&&k.b<0){d.kw=new A.k(d.kw.a,n.b-m) -d.BE=!1}r=d.kw -j=n.a-r.a -i=n.b-r.b -h=Math.min(Math.max(j,-4),l) -g=Math.min(Math.max(i,-4),m) -if(j<-4&&k.a<0)d.JU=!0 -else if(j>l&&k.a>0)d.BC=!0 -if(i<-4&&k.b<0)d.BD=!0 -else if(i>m&&k.b>0)d.BE=!0 -d.JT=n -f.k2=new A.k(h,g) -d=f.gX() -r=f.gX() -p=f.k2 -p.toString -p=p.Y(0,new A.k(0,f.gX().aA.gdd()/2)) -f.id=d.fd(A.c5(r.bt(0,e),p)) -p=f.gX() -r=f.k2 -r.toString -d=f.id -d.toString -p.Ea(s,r,d) -break -case 2:f.uu() -if(f.id!=null&&f.k2!=null){f.dy.sl(0,0) -d=f.dy -d.z=B.aB -d.ke(1,B.cc,B.j0)}break}}, -RM(){var s,r,q,p,o=this,n=o.gX(),m=o.id -m.toString -s=n.jg(m).gamx().Z(0,new A.k(0,o.gX().aA.gdd()/2)) -n=o.dy -if(n.gb4(n)===B.W){n=o.gX() -m=o.id -m.toString -n.Ea(B.jg,s,m) -n=o.gX().b6 -if(n.a===n.b){n=o.id -n.toString -o.yD(A.x3(n),B.eB)}o.k2=o.k1=o.id=o.go=null}else{n=o.dy.x -n===$&&A.c() -m=o.k2 -r=A.a3(m.a,s.a,n) -r.toString -m=A.a3(m.b,s.b,n) -m.toString -q=o.gX() -p=o.id -p.toString -q.MW(B.jf,new A.k(r,m),p,n)}}, -yJ(a,b){var s,r,q,p,o,n=this,m=n.a.c -m.m7(0,m.a.VS(B.b7)) -if(b){switch(a.a){case 0:case 1:case 2:case 3:case 4:case 5:case 8:case 9:case 10:case 11:case 12:n.a.d.ni() -break -case 6:m=n.a.d -p=m.e -p.toString -A.uW(p).zk(m,!0) -break -case 7:m=n.a.d -p=m.e -p.toString -A.uW(p).zk(m,!1) -break}b=!0}m=n.a -s=m.RG -if(s==null)return -try{s.$1(m.c.a.a)}catch(o){r=A.a6(o) -q=A.aJ(o) -m=A.bu("while calling onSubmitted for "+a.k(0)) -A.cY(new A.bH(r,q,"widgets",m,null,!1))}if(b)n.aif()}, -I6(){var s,r=this -if(r.k3>0||!r.ghX())return -s=r.a.c.a -if(s.j(0,r.fy))return -r.z.toString -$.cv().zP(s) -r.fy=s}, -Qi(a){var s,r,q,p,o,n,m,l,k=this -B.b.gbD(k.gfG().f) -s=k.gX() -r=s.gq(s) -if(k.a.k1===1){s=a.c -q=a.a -p=r.a -o=s-q>=p?p/2-a.gaT().a:A.R(0,s-p,q) -n=B.df}else{m=A.aKo(a.gaT(),Math.max(a.d-a.b,k.gX().aA.gdd()),a.c-a.a) -s=m.d -q=m.b -p=r.b -o=s-q>=p?p/2-m.gaT().b:A.R(0,s-p,q) -n=B.bx}s=B.b.gbD(k.gfG().f).at -s.toString -q=B.b.gbD(k.gfG().f).z -q.toString -p=B.b.gbD(k.gfG().f).Q -p.toString -l=A.R(o+s,q,p) -p=B.b.gbD(k.gfG().f).at -p.toString -return new A.rK(l,a.cz(n.a6(0,p-l)))}, -zs(){var s,r,q,p,o,n=this -if(!n.ghX()){s=n.a -r=s.c.a -s=s.b9;(s==null?n:s).gng() -s=n.a.b9 -s=(s==null?n:s).gng() -q=A.aL9(n) -$.cv().F1(q,s) -s=q -n.z=s -n.Us() -n.SF() -s=n.z -s.toString -p=n.db -p===$&&A.c() -o=n.gtW() -s.Ed(p.d,p.r,p.w,n.a.db,o) -o=$.cv() -o.zP(r) -o.HF() -s=n.a.b9 -if((s==null?n:s).gng().e.a){n.z.toString -o.ahM()}n.fy=r}else{n.z.toString -$.cv().HF()}}, -P5(){var s,r,q=this -if(q.ghX()){s=q.z -s.toString -r=$.cv() -if(r.d===s)r.P1() -q.R8=q.fy=q.z=null -q.ZJ()}}, -aif(){if(this.k4)return -this.k4=!0 -A.ey(this.gahR())}, -ahS(){var s,r,q,p,o,n=this -n.k4=!1 -if(n.ghX())s=!1 -else s=!0 -if(s)return -s=n.z -s.toString -r=$.cv() -if(r.d===s)r.P1() -n.fy=n.z=null -s=n.a.b9;(s==null?n:s).gng() -s=n.a.b9 -s=(s==null?n:s).gng() -q=A.aL9(n) -r.F1(q,s) -p=q -n.z=p -r.HF() -s=n.db -s===$&&A.c() -o=n.gtW() -p.Ed(s.d,s.r,s.w,n.a.db,o) -r.zP(n.a.c.a) -n.fy=n.a.c.a}, -akn(){this.ok=!1 -$.av.ah$.f.H(0,this.gA7())}, -LE(){var s=this -if(s.a.d.gcj())s.zs() -else{s.ok=!0 -$.av.ah$.f.U(0,s.gA7()) -s.a.d.kW()}}, -Ue(){var s,r,q=this -if(q.Q!=null){s=q.a.d.gcj() -r=q.Q -if(s){r.toString -r.bB(0,q.a.c.a)}else{r.n() -q.Q=null}}}, -afq(){var s=this.Q -if(s!=null){s.nU() -s=s.e -s===$&&A.c() -s.cN()}this.R8=null}, -FF(){var s,r,q,p,o,n,m,l,k,j,i,h=this,g=h.a,f=g.aU,e=h.c -e.toString -s=g.c.a -r=h.gX() -q=h.a -p=q.p1 -o=q.ar -n=q.to -q=q.dH -m=t.y -l=A.eu(!1,m) -k=A.eu(!1,m) -m=A.eu(!1,m) -j=new A.TA(e,r,p,h,new A.a7Y(h,f),s,l,k,m) -s=j.gUt() -r.dH.U(0,s) -r.dA.U(0,s) -j.I9() -s=j.gaaO() -r=r.qS -i=A.eu(B.KP,t.wf) -j.e!==$&&A.cQ() -j.e=new A.Se(e,i,new A.r2(),q,B.eR,0,l,j.gacV(),j.gacX(),s,B.eR,0,k,j.gacP(),j.gacR(),s,m,B.Iw,g,h.ax,h.ay,h.ch,p,h,o,n,h.x,r,new A.Ma(),new A.Ma()) -return j}, -yD(a,b){var s,r,q,p,o,n=this -if(!n.a.c.Yk(a))return -n.a.c.st5(a) -switch(b){case null:case void 0:case B.yi:case B.a5:case B.eB:case B.aJ:case B.hu:case B.ah:case B.av:n.LE() -break -case B.a8:if(n.a.d.gcj())n.LE() -break}q=n.a -q.toString -p=n.Q -if(p==null)n.Q=n.FF() -else p.bB(0,q.c.a) -q=n.Q -q.toString -q.sXC(n.a.Q) -q=n.Q -q.nU() -q=q.e -q===$&&A.c() -q.a19() -try{n.a.ry.$2(a,b)}catch(o){s=A.a6(o) -r=A.aJ(o) -q=A.bu("while calling onSelectionChanged for "+A.j(b)) -A.cY(new A.bH(s,r,"widgets",q,null,!1))}if(n.gzR()&&n.d!=null){n.zX(!1) -n.uu()}}, -zJ(a){if(this.p1)return -this.p1=!0 -$.c6.p1$.push(new A.a85(this,a))}, -Jq(){var s,r=this,q=r.c -if(q==null)return -s=A.Fs(q) -s.toString -q=r.p2 -q===$&&A.c() -if(q!==s.f.d){$.c6.p1$.push(new A.a8o(r)) -if(r.p2>>16&255,q.gl(q)>>>8&255,q.gl(q)&255) -r.geQ().sIQ(q) -if(s.a.as){r=s.gkg().x -r===$&&A.c() -r=r>0}else r=!1 -s.r.sl(0,r)}, -gzR(){var s,r -if(this.a.d.gcj()){s=this.a -r=s.c.a.b -s=r.a===r.b&&s.as&&this.fx}else s=!1 -return s}, -uu(){var s,r=this -if(!r.a.as)return -if(!r.fx)return -s=r.d -if(s!=null)s.bb(0) -r.gkg().sl(0,1) -if(r.a.al)r.gkg().Iz(r.gRe()).a.a.fY(r.gRL()) -else r.d=A.aLj(B.cC,new A.a89(r))}, -H5(){var s,r=this,q=r.p3 -if(q>0){$.av.toString -$.bi();--q -r.p3=q -if(q===0)r.ao(new A.a82())}if(r.a.al){q=r.d -if(q!=null)q.bb(0) -r.d=A.cM(B.q,new A.a83(r))}else{q=r.d -q=q==null?null:q.b!=null -if(q!==!0&&r.fx)r.d=A.aLj(B.cC,new A.a84(r)) -q=r.gkg() -s=r.gkg().x -s===$&&A.c() -q.sl(0,s===0?1:0)}}, -zX(a){var s,r=this -r.gkg().sl(0,0) -s=r.d -if(s!=null)s.bb(0) -r.d=null -if(a)r.p3=0}, -Tl(){return this.zX(!0)}, -HH(){var s=this -if(!s.gzR())s.Tl() -else if(s.d==null)s.uu()}, -Py(){var s,r,q,p=this -if(p.a.d.gcj()&&!p.a.c.a.b.gc8()){s=p.gyA() -p.a.c.H(0,s) -r=p.a.c -q=p.Ov() -q.toString -r.st5(q) -p.a.c.U(0,s)}p.I6() -p.HH() -p.Ue() -p.ao(new A.a7Z()) -p.gIe().a1y()}, -a9k(){var s,r,q,p=this -if(p.a.d.gcj()&&p.a.d.an4())p.zs() -else if(!p.a.d.gcj()){p.P5() -s=p.a.c -s.m7(0,s.a.VS(B.b7))}p.HH() -p.Ue() -s=p.a.d.gcj() -r=$.av -if(s){r.c1$.push(p) -s=p.c -s.toString -p.p2=A.Fs(s).f.d -if(!p.a.x)p.zJ(!0) -q=p.Ov() -if(q!=null)p.yD(q,null)}else{B.b.F(r.c1$,p) -p.ao(new A.a80(p))}p.p8()}, -Ov(){var s,r=this.a -if(r.a1&&r.k1===1&&!this.ok)s=A.cq(B.l,0,r.c.a.a.length,!1) -else s=!r.c.a.b.gc8()?A.mL(B.l,this.a.c.a.a.length):null -return s}, -a86(a){if(this.gX().y==null||!this.ghX())return -this.Us()}, -Us(){var s=this.gX(),r=s.gq(s),q=this.gX().bt(0,null) -s=this.z -if(!r.j(0,s.a)||!q.j(0,s.b)){s.a=r -s.b=q -$.cv().aiQ(r,q)}}, -SG(a){var s,r,q,p=this -if(!p.ghX())return -p.akU() -s=p.a.c.a.c -r=p.gX().rZ(s) -if(r==null){q=s.gc8()?s.a:0 -r=p.gX().jg(new A.bf(q,B.l))}p.z.a0G(r) -p.akw() -$.c6.p1$.push(p.gaie())}, -SF(){return this.SG(null)}, -Up(a0){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b=this,a=null -b.a.toString -s=A.bA() -if(s!==B.aL)return -if(B.b.gbD(b.gfG().f).k4!==B.hr)return -s=b.gX().aA.f -s.toString -r=b.a.db -q=b.gtW() -p=b.a.fx -if(p==null){p=b.c -p.toString -p=A.ct(p,B.bQ) -p=p==null?a:p.c -if(p==null)p=1}b.a.toString -o=b.c -o.toString -o=A.aCK(o) -n=b.a.glb() -m=b.rx -l=b.gX() -k=new A.ax6(r,q,p,o,a,n,m,l.gq(l),s) -if(a0)j=B.b4 -else{r=b.R8 -r=r==null?a:r.IZ(k) -j=r==null?B.b4:r}if(j.a<3)return -b.R8=k -i=A.b([],t.u1) -h=s.xc(!1) -g=new A.Ex(h,0,0) -for(f=0;g.EX(1,g.c);f=e){s=g.d -e=f+(s==null?g.d=B.c.S(h,g.b,g.c):s).length -s=b.gX() -r=f1){m=n.a.c.a.b -m=m.a!==m.b||m.c===0}else m=!0 -if(m)return -m=n.a.c.a -s=m.a -m=m.b.c -r=A.amO(s,m) -q=r.b -if(m===s.length)r.Sx(2,q) -else{r.Sx(1,q) -r.EX(1,r.b)}m=r.a -q=B.c.S(m,0,r.b) -p=new A.f5(r.gJ(r)) -p=p.gL(p) -o=new A.f5(r.gJ(r)) -n.fX(new A.dg(q+p+o.gM(o)+B.c.bK(m,r.c),A.mL(B.l,r.b+r.gJ(r).length),B.b7),B.a8)}, -Sn(a){var s=this.a.c.a,r=a.a.ZR(a.c,a.b) -this.fX(r,a.d) -if(r.j(0,s))this.Py()}, -aim(a){if(a.a)this.i7(new A.bf(this.a.c.a.a.length,B.l)) -else this.i7(B.eQ)}, -aik(a){var s,r,q,p,o,n,m,l=this -if(a.b!==B.eA)return -s=B.b.gbD(l.gfG().f) -if(l.a.k1===1){r=l.gfG() -q=s.Q -q.toString -r.eI(q) -return}r=s.Q -r.toString -if(r===0){r=s.z -r.toString -r=r===0}else r=!1 -if(r)return -p=t._N.a(l.as.gO()) -p.toString -o=A.akw(p,a) -r=s.at -r.toString -q=s.z -q.toString -n=s.Q -n.toString -m=A.R(r+o,q,n) -if(m===r)return -l.gfG().eI(m)}, -a9D(a){var s,r,q,p,o,n,m,l,k,j,i=this -if(i.a.k1===1)return -s=i.gX().jg(i.a.c.a.b.gdz()) -r=t._N.a(i.as.gO()) -r.toString -q=A.akw(r,new A.eI(a.gBQ(a)?B.U:B.X,B.eA)) -p=B.b.gbD(i.gfG().f) -if(a.gBQ(a)){o=i.a.c.a -if(o.b.d>=o.a.length)return -o=s.b+q -n=p.Q -n.toString -m=i.gX() -m=m.gq(m) -l=p.at -l.toString -k=o+l>=n+m.b?new A.bf(i.a.c.a.a.length,B.l):i.gX().fd(A.c5(i.gX().bt(0,null),new A.k(s.a,o))) -j=i.a.c.a.b.J3(k.a)}else{if(i.a.c.a.b.d<=0)return -o=s.b+q -n=p.at -n.toString -k=o+n<=0?B.eQ:i.gX().fd(A.c5(i.gX().bt(0,null),new A.k(s.a,o))) -j=i.a.c.a.b.J3(k.a)}i.i7(j.gdz()) -i.fX(i.a.c.a.ia(j),B.a8)}, -akR(a){var s=a.b -this.i7(s.gdz()) -this.fX(a.a.ia(s),a.c)}, -gIe(){var s,r=this,q=r.xr -if(q===$){s=A.b([],t.g) -r.xr!==$&&A.aW() -q=r.xr=new A.Jf(r,new A.b7(s,t.d),t.Wp)}return q}, -adL(a){var s=this.Q -if(s==null)s=null -else{s=s.e -s===$&&A.c() -s=s.gDA()}if(s===!0){this.mY(!1) -return null}s=this.c -s.toString -return A.pN(s,a,t.xm)}, -a8M(a){switch(A.bA().a){case 0:case 2:case 1:switch(a.gcp(a).a){case 0:this.a.d.ni() -break -case 1:case 2:case 3:case 5:this.a.d.ni() -break -case 4:throw A.d(A.cu("Unexpected pointer down event for trackpad"))}break -case 3:case 4:case 5:this.a.d.ni() -break}}, -ga6g(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0=this,b1=b0.y1 -if(b1===$){s=t.g -r=A.b([],s) -q=t.d -b1=b0.x1 -if(b1===$){p=A.b([],s) -b0.x1!==$&&A.aW() -b1=b0.x1=new A.cH(b0.gahH(),new A.b7(p,q),t.Tx)}o=b0.x2 -if(o===$){p=A.b([],s) -b0.x2!==$&&A.aW() -o=b0.x2=new A.cH(b0.gakQ(),new A.b7(p,q),t.ZQ)}p=A.b([],s) -n=A.b([],s) -m=b0.ga7w() -l=b0.gaf1() -k=A.b([],s) -j=b0.c -j.toString -j=new A.mU(b0,m,l,new A.b7(k,q),t.dA).dM(j) -k=b0.gafc() -i=A.b([],s) -h=b0.c -h.toString -h=new A.mU(b0,k,l,new A.b7(i,q),t.Uz).dM(h) -i=b0.gaer() -g=b0.gaf3() -f=A.b([],s) -e=b0.c -e.toString -e=new A.mU(b0,i,g,new A.b7(f,q),t.Fb).dM(e) -m=A.pu(b0,m,l,!1,!1,!1,t._w) -f=b0.c -f.toString -f=m.dM(f) -m=A.b([],s) -d=b0.c -d.toString -d=new A.cH(b0.ga9C(),new A.b7(m,q),t.vr).dM(d) -m=A.pu(b0,k,l,!1,!0,!1,t.P9) -c=b0.c -c.toString -c=m.dM(c) -m=b0.gagq() -b=A.pu(b0,m,l,!1,!0,!1,t.cP) -a=b0.c -a.toString -a=b.dM(a) -b=A.pu(b0,i,g,!1,!0,!1,t.OO) -a0=b0.c -a0.toString -a0=b.dM(a0) -b=b0.gIe() -a1=b0.c -a1.toString -a1=b.dM(a1) -b=b0.gIe() -a2=b0.c -a2.toString -a2=b.dM(a2) -m=A.pu(b0,m,l,!1,!0,!1,t.b5) -b=b0.c -b.toString -b=m.dM(b) -m=b0.ga91() -a3=A.pu(b0,m,l,!1,!0,!1,t.HH) -a4=b0.c -a4.toString -a4=a3.dM(a4) -l=A.pu(b0,k,l,!1,!0,!1,t.eI) -k=b0.c -k.toString -k=l.dM(k) -l=A.b([],s) -a3=b0.c -a3.toString -a3=new A.cH(b0.gail(),new A.b7(l,q),t.sl).dM(a3) -l=A.b([],s) -i=A.pu(b0,i,g,!1,!0,!0,t.oB) -a5=b0.c -a5.toString -a5=i.dM(a5) -g=A.pu(b0,m,g,!0,!0,!0,t.bh) -m=b0.c -m.toString -m=g.dM(m) -g=A.b([],s) -i=b0.c -i.toString -i=new A.a_A(b0,new A.b7(g,q)).dM(i) -g=A.b([],s) -a6=b0.c -a6.toString -a6=new A.VF(b0,new A.b7(g,q)).dM(a6) -g=A.b([],s) -a7=b0.c -a7.toString -a7=new A.cH(new A.a7X(b0),new A.b7(g,q),t.gv).dM(a7) -a8=b0.to -if(a8===$){s=A.b([],s) -b0.to!==$&&A.aW() -a8=b0.to=new A.cH(b0.gaki(),new A.b7(s,q),t.j5)}s=b0.c -s.toString -a9=A.l([B.VD,new A.Ai(!1,new A.b7(r,q)),B.Vd,b1,B.Vr,o,B.zU,new A.Ah(!0,new A.b7(p,q)),B.kV,new A.cH(b0.gadK(),new A.b7(n,q),t.Dn),B.UO,j,B.VI,h,B.UP,e,B.UF,f,B.UT,d,B.UB,c,B.UH,a,B.UD,a0,B.VA,a1,B.VB,a2,B.VG,b,B.UC,a4,B.VE,k,B.UG,a3,B.kY,new A.cH(b0.gaij(),new A.b7(l,q),t.fn),B.VF,a5,B.VC,m,B.Vg,i,B.UM,a6,B.V9,a7,B.Vl,a8.dM(s)],t.A,t.od) -b0.y1!==$&&A.aW() -b0.y1=a9 -b1=a9}return b1}, -G(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f=this,e=null -f.Es(a) -s=f.a.p1 -r=f.ghX() -q=f.a -q=q.xr -if(q==null)q=B.kG -p=f.ga6g() -o=f.a -n=o.c -m=o.d -l=o.cx -o=o.k1!==1?B.U:B.cY -k=f.gfG() -j=f.a -i=j.aJ -h=j.ar -j=j.c0 -g=A.S4(a).VW(!1,f.a.k1!==1) -return new A.Vl(f.ga85(),r,A.EU(A.jB(A.pM(p,new A.xc(n,new A.a8b(f),new A.a8c(f),m,l,A.uV(!1,e,A.aE4(o,B.S,k,h,!0,f.as,i,j,g,e,new A.a8d(f,s)),e,e,e,m,!1,e,e,e,e,e,e),e,t.pm)),q,e,e,e,e),e,f.ga8L()),e)}, -Vm(){var s,r,q,p,o,n,m,l=this,k=null,j=l.a -j.toString -s=l.rx -if(s>=0&&s<=j.c.a.a.length){r=A.b([],t.s6) -j=l.a -q=j.c.a.a.length-l.rx -if(j.k1!==1){r.push(B.Xg) -j=l.gX() -r.push(new A.k8(new A.Q(j.gq(j).a,0),B.ai,B.cp,k,k))}else r.push(B.Xh) -j=l.db -j===$&&A.c() -s=A.b([A.c8(k,k,k,k,B.c.S(l.a.c.a.a,0,q))],t.VO) -B.b.K(s,r) -s.push(A.c8(k,k,k,k,B.c.bK(l.a.c.a.a,q))) -return A.c8(s,k,k,j,k)}p=!j.x&&j.d.gcj() -if(l.gTg()){o=!l.a.c.a.gYb()||!p -j=l.a.c.a -s=l.db -s===$&&A.c() -n=l.cy -n===$&&A.c() -n=n.c -n.toString -m=l.dx -m.toString -return A.b4N(j,o,s,n,m)}j=l.a.c -s=l.c -s.toString -n=l.db -n===$&&A.c() -return j.Vn(s,n,p)}} -A.a81.prototype={ -$0(){}, -$S:0} -A.a8n.prototype={ -$1(a){var s=this.a -if(s.c!=null)s.i7(s.a.c.a.b.gdz())}, -$S:3} -A.a8r.prototype={ -$1(a){var s=this.a -if(s.c!=null)s.i7(s.a.c.a.b.gdz())}, -$S:3} -A.a8e.prototype={ -$0(){this.a.Bc(B.av)}, -$S:0} -A.a8f.prototype={ -$0(){this.a.B0(B.av)}, -$S:0} -A.a8g.prototype={ -$0(){this.a.oW(B.av)}, -$S:0} -A.a8h.prototype={ -$0(){this.a.E6(B.av)}, -$S:0} -A.a8i.prototype={ -$0(){return this.a.B0(B.av)}, -$S:0} -A.a8j.prototype={ -$0(){return this.a.Bc(B.av)}, -$S:0} -A.a8k.prototype={ -$0(){return this.a.oW(B.av)}, -$S:0} -A.a8l.prototype={ -$0(){return this.a.E6(B.av)}, -$S:0} -A.a8m.prototype={ -$0(){return this.a.ajn(B.av)}, -$S:0} -A.a8p.prototype={ -$1(a){this.a.zs()}, -$S:3} -A.a7Y.prototype={ -$1(a){return this.b.$2(a,this.a)}, -$S:7} -A.a85.prototype={ -$1(a){var s,r,q,p,o,n,m,l,k,j,i,h=this.a -h.p1=!1 -s=$.av.ah$.z.h(0,h.w) -s=s==null?null:s.ga_() -t.CA.a(s) -if(s!=null){r=s.b6.gc8() -r=!r||h.gfG().f.length===0}else r=!0 -if(r)return -q=s.aA.gdd() -p=h.a.R.d -r=h.Q -if((r==null?null:r.c)!=null){o=r.c.rW(q).b -n=Math.max(o,48) -p=Math.max(o/2-h.Q.c.rV(B.eR,q).b+n/2,p)}m=h.a.R.vb(p) -l=h.Qi(s.jg(s.b6.gdz())) -k=h.a.c.a.b -if(k.a===k.b)j=l.b -else{i=s.l0(k) -if(i.length===0)j=l.b -else if(k.c>>16&255,p.gl(p)>>>8&255,p.gl(p)&255) -n=b5.a -m=n.id -l=n.y -k=n.x -n=n.d.gcj() -j=b5.a -i=j.k1 -h=j.k2 -j=j.glb() -g=b5.Q -if(g==null)g=b4 -else{g=g.e -g===$&&A.c() -g=$.lR===g.p1}if(g===!0){b5.cy===$&&A.c() -g=b5.a -f=g.ok -e=f -f=g -g=e}else{g=b5.a -f=g.ok -e=f -f=g -g=e}f=f.fx -if(f==null){f=A.ct(b9,B.bQ) -f=f==null?b4:f.c -if(f==null)f=1}d=b5.a.db -c=b5.gtW() -b5.a.toString -b=A.aCK(b9) -a=b5.a -a0=a.w -a1=a.e -a2=a.y2 -a3=a.b_ -a4=a.bn -a5=a.aG -if(a5==null)a5=B.e -a6=a.bS -a7=a.bk -a8=a.bd -if(a.a1)a=!0 -else a=!1 -a9=b5.c -a9.toString -a9=A.bD(a9,B.bP,t.w).w -b0=b5.ry -b1=b5.a -b2=b1.go -b1=b1.c7 -b3=A.aLD(q,f) -return new A.uk(b5.ax,new A.bL(A.c7(b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b7,b8,b4,b4,b4,b4,b4,b4,b4,b4,b6,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4),!1,!1,!1,!1,new A.Ig(new A.Gq(q,o,p,b5.ay,b5.ch,m,b5.r,l,k,n,i,h,!1,j,g,f,d,c,b4,a1,!1,b,a0,c0,!0,a2,a3,a4,a5,a8,a6,a7,a,b5,a9.b,b0,b2,b1,b3,r),s,r,new A.a8a(b5),!0,b4),b4),b4)}, -$S:441} -A.a8a.prototype={ -$0(){var s=this.a -s.zs() -s.Up(!0)}, -$S:0} -A.Gq.prototype={ -aD(a){var s,r,q=this,p=null,o=q.ax,n=A.BN(a),m=q.f.b,l=A.aMf(),k=A.aMf(),j=t.y,i=A.eu(!0,j) -j=A.eu(!0,j) -s=A.af(t.O5) -r=o===1?1:p -r=A.aoY(p,n,r,q.CW,q.e,q.db,q.dx,q.fy,q.cy,q.go) -o=new A.rF(l,k,!0,q.RG,q.fr,!1,q.R8,i,j,r,q.z,q.at,q.Q,q.as,o,q.ay,!1,m,q.id,q.k2,q.k3,q.p1,q.w,q.x,q.p4,q.to,B.e,s,0,p,p,!1,A.af(t.T)) -o.aC() -l.sC5(q.cx) -l.sC6(m) -l.sMO(q.p2) -l.sMP(q.p3) -k.sC5(q.ry) -k.sC6(q.rx) -o.geQ().sIQ(q.r) -o.geQ().sWi(q.k4) -o.geQ().sWh(q.ok) -o.geQ().sVj(q.y) -o.Ua(p) -o.Uf(p) -o.K(0,p) -return o}, -aH(a,b){var s,r,q=this -b.scW(0,q.e) -b.geQ().sIQ(q.r) -b.sa1u(q.w) -b.saoy(q.x) -b.geQ().sVj(q.y) -b.sa18(q.z) -b.sapi(q.Q) -b.sLv(0,q.as) -b.scj(q.at) -b.srl(q.ax) -b.sasa(q.ay) -b.sJR(!1) -b.slb(q.CW) -s=b.aJ -s.sC5(q.cx) -b.srI(q.cy) -b.srH(0,q.db) -b.sbF(q.dx) -r=A.BN(a) -b.srk(0,r) -b.st5(q.f.b) -b.sct(0,q.id) -b.aj=!0 -b.sDs(q.fy) -b.srJ(q.go) -b.sasn(q.fr) -b.sasm(!1) -b.sanZ(q.k2) -b.sanY(q.k3) -b.geQ().sWi(q.k4) -b.geQ().sWh(q.ok) -s.sMO(q.p2) -s.sMP(q.p3) -b.saou(q.p4) -b.aN=q.R8 -b.sqF(0,q.RG) -b.sat1(q.p1) -s=b.au -s.sC5(q.ry) -r=q.to -if(r!==b.ha){b.ha=r -b.av() -b.bo()}s.sC6(q.rx)}} -A.ax6.prototype={ -IZ(a){var s,r,q=this -if(a===q)return B.cs -if(q.a===a.a)if(q.b===a.b){if(q.c===a.c)s=!B.zu.j(0,B.zu)||!q.f.j(0,a.f)||q.r!==a.r||!q.w.j(0,a.w) -else s=!0 -r=s}else r=!0 -else r=!0 -return r?B.b4:q.x.bi(0,a.x)}} -A.Ig.prototype={ -ae(){var s=$.aM8 -$.aM8=s+1 -return new A.a_s(B.h.k(s),B.i)}, -auR(){return this.f.$0()}} -A.a_s.prototype={ -aE(){var s=this -s.aV() -s.a.toString -$.cv().f.m(0,s.d,s)}, -aM(a){this.b2(a) -this.a.toString}, -n(){$.cv().f.F(0,this.d) -this.aP()}, -gX(){var s=this.a.e -s=$.av.ah$.z.h(0,s) -s=s==null?null:s.ga_() -return t.CA.a(s)}, -ari(a){var s,r,q,p,o,n=this,m=n.gln(n),l=n.gX() -l=l==null?null:l.C -if(l===!0)return!1 -if(m.j(0,B.u))return!1 -if(!m.wJ(a))return!1 -s=m.ed(a) -r=A.acH() -l=$.av -l.toString -q=s.gaT() -p=n.c -p.toString -p=A.Fs(p).a -o=l.au$ -o===$&&A.c() -o.e.c2(r,q) -l.Ey(r,q,p) -return B.b.dN(r.a,new A.ax7(n))}, -gln(a){var s=t.Qv.a(this.c.ga_()) -if(s==null||this.c==null||s.y==null)return B.u -return A.fD(s.bt(0,null),new A.y(0,0,0+s.gq(s).a,0+s.gq(s).b))}, -G(a){return this.a.c}, -$iaKz:1} -A.ax7.prototype={ -$1(a){return a.a.j(0,this.a.gX())}, -$S:442} -A.k8.prototype={ -AM(a,b,c){var s=this.a,r=s!=null -if(r)a.rD(s.xB(c)) -s=this.x -a.UW(s.a,s.b,this.b,c) -if(r)a.ex()}} -A.mU.prototype={ -ef(a,b){var s,r,q,p,o,n=this.e,m=n.a.c.a.b -if(!m.gc8())return null -s=n.OM() -r=m.a -q=m.b -if(r!==q){r=s.fw(r) -if(r==null)r=n.a.c.a.a.length -q=s.fz(q-1) -if(q==null)q=0 -b.toString -return A.pN(b,new A.jL(n.a.c.a,"",new A.cb(r,q),B.a8),t.UM)}r=a.a -p=this.r.$3(m.glm(),r,this.f.$0()).a -q=m.c -if(r){r=s.fw(q) -if(r==null)r=n.a.c.a.a.length}else{r=s.fz(q-1) -if(r==null)r=0}o=A.cq(B.l,r,p,!1) -b.toString -return A.pN(b,new A.jL(n.a.c.a,"",o,B.a8),t.UM)}, -ee(a){return this.ef(a,null)}, -gjR(){var s=this.e.a -return!s.x&&s.c.a.b.gc8()}} -A.Je.prototype={ -ef(a,b){var s,r,q,p,o,n,m,l,k=this,j=k.e,i=j.a,h=i.c.a,g=h.b,f=a.b||!i.a1 -i=g.a -s=g.b -r=i===s -if(!r&&!k.f&&f){b.toString -return A.pN(b,new A.j2(h,A.mL(B.l,a.a?s:i),B.a8),t.gU)}q=g.gdz() -if(a.d){i=a.a -if(i){h=j.gX().rY(q).b -if(new A.bf(h,B.aa).j(0,q)){s=j.a.c.a.a -h=h!==s.length&&s.charCodeAt(q.a)!==10}else h=!1}else h=!1 -if(h)q=new A.bf(q.a,B.l) -else{if(!i){i=j.gX().rY(q).a -i=new A.bf(i,B.l).j(0,q)&&i!==0&&j.a.c.a.a.charCodeAt(q.a-1)!==10}else i=!1 -if(i)q=new A.bf(q.a,B.aa)}}i=k.r -if(i){h=g.c -s=g.d -p=a.a?h>s:h"))}, -gjw(){var s,r,q=this.x -if(q==null){s=A.b([],t.bp) -r=this.Q -for(;r!=null;){s.push(r) -r=r.Q}this.x=s -q=s}return q}, -gcj(){if(!this.gmX()){var s=this.w -if(s==null)s=null -else{s=s.c -s=s==null?null:B.b.t(s.gjw(),this)}s=s===!0}else s=!0 -return s}, -gmX(){var s=this.w -return(s==null?null:s.c)===this}, -goO(){return this.gh6()}, -gh6(){var s,r,q,p -for(s=this.gjw(),r=s.length,q=0;q#"+s+q}, -$iaa:1} -A.aag.prototype={ -$1(a){return!a.giz()&&a.gdl()}, -$S:29} -A.nR.prototype={ -goO(){return this}, -gxg(){if(!this.gdl())return B.C3 -return A.ds.prototype.gxg.call(this)}, -ta(a){if(a.Q==null)this.zB(a) -if(this.gcj())a.le(!0) -else a.q3()}, -am8(a,b){var s,r=this -if(b.Q==null)r.zB(b) -s=r.w -if(s!=null)s.f.push(new A.UT(r,b)) -s=r.w -if(s!=null)s.zc()}, -le(a){var s,r,q=this,p=q.fr -while(!0){if((p.length!==0?B.b.gL(p):null)!=null)s=!(p.length!==0?B.b.gL(p):null).gdl() -else s=!1 -if(!s)break -p.pop()}r=p.length!==0?B.b.gL(p):null -if(!a||r==null){if(q.gdl()){q.q3() -q.Rt(q)}return}r.le(!0)}} -A.nQ.prototype={ -I(){return"FocusHighlightMode."+this.b}} -A.aaf.prototype={ -I(){return"FocusHighlightStrategy."+this.b}} -A.AT.prototype={ -n(){var s=this.a,r=$.fH.aA$ -r===$&&A.c() -if(J.e(r.a,s.gXw())){$.h5.aG$.b.F(0,s.gXx()) -r=$.fH.aA$ -r===$&&A.c() -r.a=null}s.d=new A.v0(A.kM(null,null,t.Su,t.S),t.op) -this.d3()}, -zc(){if(this.r)return -this.r=!0 -A.ey(this.ga6N())}, -a6O(){var s,r,q,p,o,n,m,l,k,j,i,h=this -h.r=!1 -s=h.c -for(r=h.f,q=r.length,p=h.b,o=0;o"))),o=null;l.u();o=n){n=l.gJ(l) -if(o==r){l=b?B.cP:B.cQ -m.a.$2$alignmentPolicy(n,l) -return!0}}return!1}} -A.aal.prototype={ -$1(a){var s,r,q,p,o,n,m -for(s=a.c,r=s.length,q=this.b,p=this.a,o=0;o")) -if(!o.ga8(o))q=o}if(b===B.zR){n=J.lI(q) -q=new A.bN(n,A.W(n).i("bN<1>"))}m=J.a3M(q,new A.a7o(new A.y(f.gbl(f).a,-1/0,f.gbl(f).c,1/0))) -if(!m.ga8(m)){p=B.b.gM(A.aX9(f.gbl(f).gaT(),m)) -break}p=B.b.gM(A.aXa(f.gbl(f).gaT(),q)) -break -case 1:case 3:q=j.ajg(b,f.gbl(f),h.gxg()) -if(q.length===0){p=i -break}if(r!=null&&!r.d.gID()){o=new A.aL(q,new A.a7p(r),A.W(q).i("aL<1>")) -if(!o.ga8(o))q=o}if(b===B.Uz){n=J.lI(q) -q=new A.bN(n,A.W(n).i("bN<1>"))}m=J.a3M(q,new A.a7q(new A.y(-1/0,f.gbl(f).b,1/0,f.gbl(f).d))) -if(!m.ga8(m)){p=B.b.gM(A.aX8(f.gbl(f).gaT(),m)) -break}p=B.b.gM(A.aXb(f.gbl(f).gaT(),q)) -break -default:p=i}if(p!=null){n=j.vJ$ -l=n.h(0,h) -k=new A.xD(b,f) -if(l!=null)l.a.push(k) -else n.m(0,h,new A.Wf(A.b([k],t.Kj))) -switch(g){case 0:case 3:j.a.$2$alignmentPolicy(p,B.cQ) -break -case 2:case 1:j.a.$2$alignmentPolicy(p,B.cP) -break}return!0}return!1}} -A.aw7.prototype={ -$1(a){return a.b===this.a}, -$S:446} -A.a7i.prototype={ -$2(a,b){if(this.a)if(this.b)return B.d.bi(a.gbl(a).b,b.gbl(b).b) -else return B.d.bi(b.gbl(b).d,a.gbl(a).d) -else if(this.b)return B.d.bi(a.gbl(a).a,b.gbl(b).a) -else return B.d.bi(b.gbl(b).c,a.gbl(a).c)}, -$S:46} -A.a7k.prototype={ -$2(a,b){var s=a.gbl(a).gaT(),r=b.gbl(b).gaT(),q=this.a,p=A.aCP(q,s,r) -if(p===0)return A.aCO(q,s,r) -return p}, -$S:46} -A.a7j.prototype={ -$2(a,b){var s=a.gbl(a).gaT(),r=b.gbl(b).gaT(),q=this.a,p=A.aCO(q,s,r) -if(p===0)return A.aCP(q,s,r) -return p}, -$S:46} -A.a7l.prototype={ -$2(a,b){var s,r,q,p=this.a,o=a.gbl(a),n=b.gbl(b),m=o.a,l=p.a,k=o.c -m=Math.abs(m-l)=s.c}, -$S:29} -A.a7e.prototype={ -$2(a,b){return B.d.bi(a.gbl(a).gaT().a,b.gbl(b).gaT().a)}, -$S:46} -A.a7f.prototype={ -$1(a){var s=this.a -return!a.gbl(a).j(0,s)&&a.gbl(a).gaT().b<=s.b}, -$S:29} -A.a7g.prototype={ -$1(a){var s=this.a -return!a.gbl(a).j(0,s)&&a.gbl(a).gaT().b>=s.d}, -$S:29} -A.a7h.prototype={ -$2(a,b){return B.d.bi(a.gbl(a).gaT().b,b.gbl(b).gaT().b)}, -$S:46} -A.a7b.prototype={ -$1(a){var s,r,q=this,p=q.b.a.pop().b,o=p.e -o.toString -o=A.iT(o) -s=$.av.ah$.f.c.e -s.toString -if(o!=A.iT(s)){o=q.a -s=q.c -o.pu(s) -o.vJ$.F(0,s) -return!1}switch(a.a){case 0:case 3:r=B.cQ -break -case 1:case 2:r=B.cP -break -default:r=null}q.a.a.$2$alignmentPolicy(p,r) -return!0}, -$S:448} -A.a7n.prototype={ -$1(a){var s=a.e -s.toString -return A.iT(s)===this.a}, -$S:29} -A.a7o.prototype={ -$1(a){var s=a.gbl(a).ed(this.a) -return!s.ga8(s)}, -$S:29} -A.a7p.prototype={ -$1(a){var s=a.e -s.toString -return A.iT(s)===this.a}, -$S:29} -A.a7q.prototype={ -$1(a){var s=a.gbl(a).ed(this.a) -return!s.ga8(s)}, -$S:29} -A.ee.prototype={ -gWy(){var s=this.d -if(s==null){s=this.c.e -s.toString -s=this.d=new A.aw5().$1(s)}s.toString -return s}} -A.aw4.prototype={ -$1(a){var s=a.gWy() -return A.og(s,A.W(s).c)}, -$S:449} -A.aw6.prototype={ -$2(a,b){switch(this.a.a){case 1:return B.d.bi(a.b.a,b.b.a) -case 0:return B.d.bi(b.b.c,a.b.c)}}, -$S:167} -A.aw5.prototype={ -$1(a){var s,r=A.b([],t.vl),q=t.I,p=a.fv(q) -for(;p!=null;){r.push(q.a(p.gaF())) -s=A.b3x(p) -p=s==null?null:s.fv(q)}return r}, -$S:451} -A.lu.prototype={ -gbl(a){var s,r,q,p,o=this -if(o.b==null)for(s=o.a,r=A.W(s).i("a1<1,y>"),s=new A.a1(s,new A.aw2(),r),s=new A.bz(s,s.gp(s),r.i("bz")),r=r.i("am.E");s.u();){q=s.d -if(q==null)q=r.a(q) -p=o.b -if(p==null){o.b=q -p=q}o.b=p.jK(q)}s=o.b -s.toString -return s}} -A.aw2.prototype={ -$1(a){return a.b}, -$S:452} -A.aw3.prototype={ -$2(a,b){switch(this.a.a){case 1:return B.d.bi(a.gbl(a).a,b.gbl(b).a) -case 0:return B.d.bi(b.gbl(b).c,a.gbl(a).c)}}, -$S:453} -A.aiA.prototype={ -a80(a){var s,r,q,p,o,n=B.b.gM(a).a,m=t.qi,l=A.b([],m),k=A.b([],t.jE) -for(s=a.length,r=0;r") -return A.a8(new A.aL(b,new A.aiD(new A.y(-1/0,s.b,1/0,s.d)),r),!0,r.i("q.E"))}, -$S:454} -A.aiD.prototype={ -$1(a){var s=a.b.ed(this.a) -return!s.ga8(s)}, -$S:455} -A.AU.prototype={ -ae(){return new A.X0(B.i)}} -A.GG.prototype={} -A.X0.prototype={ -gcv(a){var s,r,q,p=this,o=p.d -if(o===$){s=p.a.c -r=A.b([],t.bp) -q=$.aO() -p.d!==$&&A.aW() -o=p.d=new A.GG(s,!1,!0,!0,!0,null,null,r,q)}return o}, -n(){this.gcv(this).n() -this.aP()}, -aM(a){var s=this -s.b2(a) -if(a.c!==s.a.c)s.gcv(s).dy=s.a.c}, -G(a){var s=null,r=this.gcv(this) -return A.uV(!1,!1,this.a.f,s,!0,!0,r,!1,s,s,s,s,s,!0)}} -A.RL.prototype={ -ee(a){a.avE(a.gcv(a))}} -A.rj.prototype={} -A.PU.prototype={ -ee(a){var s=$.av.ah$.f.c,r=s.e -r.toString -return A.uW(r).zk(s,!0)}, -LT(a,b){return b?B.e2:B.fI}} -A.rC.prototype={} -A.QZ.prototype={ -ee(a){var s=$.av.ah$.f.c,r=s.e -r.toString -return A.uW(r).zk(s,!1)}, -LT(a,b){return b?B.e2:B.fI}} -A.nH.prototype={} -A.Ah.prototype={ -ee(a){var s,r -if(!this.c){s=$.av.ah$.f.c -r=s.e -r.toString -A.uW(r).aqC(s,a.a)}}} -A.X1.prototype={} -A.ZC.prototype={ -IS(a,b){var s -this.a26(a,b) -s=this.vJ$.h(0,b) -if(s!=null){s=s.a -if(!!s.fixed$length)A.U(A.V("removeWhere")) -B.b.ml(s,new A.aw7(a),!0)}}} -A.a2j.prototype={} -A.a2k.prototype={} -A.kE.prototype={ -gO(){var s,r=$.av.ah$.z.h(0,this) -if(r instanceof A.hQ){s=r.ok -s.toString -if(A.p(this).c.b(s))return s}return null}} -A.bB.prototype={ -k(a){var s=this,r=s.a,q=r!=null?" "+r:"" -if(A.u(s)===B.V2)return"[GlobalKey#"+A.aV(s)+q+"]" -return"["+("#"+A.aV(s))+q+"]"}} -A.m8.prototype={ -j(a,b){if(b==null)return!1 -if(J.Y(b)!==A.u(this))return!1 -return this.$ti.b(b)&&b.a===this.a}, -gA(a){return A.pI(this.a)}, -k(a){var s="GlobalObjectKey",r=B.c.jJ(s,">")?B.c.S(s,0,-8):s -return"["+r+" "+("#"+A.aV(this.a))+"]"}} -A.h.prototype={ -df(){var s=this.a -return s==null?"Widget":"Widget-"+s.k(0)}, -j(a,b){if(b==null)return!1 -return this.tu(0,b)}, -gA(a){return A.O.prototype.gA.call(this,this)}} -A.ak.prototype={ -bN(a){return new A.wL(this,B.R)}} -A.a5.prototype={ -bN(a){return A.b0e(this)}} -A.axA.prototype={ -I(){return"_StateLifecycle."+this.b}} -A.a9.prototype={ -aE(){}, -aM(a){}, -ao(a){a.$0() -this.c.cN()}, -eH(){}, -bY(){}, -n(){}, -bu(){}} -A.aU.prototype={} -A.dZ.prototype={ -bN(a){return new A.ro(this,B.R,A.p(this).i("ro"))}} -A.bb.prototype={ -bN(a){return A.aYF(this)}} -A.an.prototype={ -aH(a,b){}, -vy(a){}} -A.OV.prototype={ -bN(a){return new A.OU(this,B.R)}} -A.b2.prototype={ -bN(a){return new A.E8(this,B.R)}} -A.eo.prototype={ -bN(a){return A.aZr(this)}} -A.xK.prototype={ -I(){return"_ElementLifecycle."+this.b}} -A.Xp.prototype={ -TW(a){a.b3(new A.aug(this,a)) -a.lU()}, -akr(){var s,r,q,p=this -p.a=!0 -r=p.b -q=A.a8(r,!0,A.p(r).c) -B.b.dX(q,A.aB0()) -s=q -r.a0(0) -try{r=s -new A.bN(r,A.by(r).i("bN<1>")).N(0,p.gakp())}finally{p.a=!1}}} -A.aug.prototype={ -$1(a){this.a.TW(a)}, -$S:10} -A.a5m.prototype={ -MH(a){var s=this -if(a.at){s.e=!0 -return}if(!s.d&&s.a!=null){s.d=!0 -s.a.$0()}s.c.push(a) -a.at=!0}, -Yw(a){try{a.$0()}finally{}}, -v_(a,b){var s,r,q,p,o,n,m,l,k,j=this,i={},h=b==null -if(h&&j.c.length===0)return -try{j.d=!0 -if(!h){i.a=null -j.e=!1 -try{b.$0()}finally{}}h=j.c -B.b.dX(h,A.aB0()) -j.e=!1 -i.b=h.length -i.c=0 -for(o=0;o=l){m=j.e -m.toString}else m=!0 -if(m){if(!!h.immutable$list)A.U(A.V("sort")) -o=l-1 -if(o-0<=32)A.t1(h,0,o,A.aB0()) -else A.t0(h,0,o,A.aB0()) -o=j.e=!1 -i.b=h.length -while(!0){m=i.c -if(!(m>0?h[m-1].as:o))break -i.c=m-1}o=m}}}finally{for(h=j.c,o=h.length,k=0;k").a5(e.z[1]),g=new A.bP(J.as(g.a),g.b,e.i("bP<1,2>")),e=e.z[1];g.u();){q=g.a -if(q==null)q=e.a(q) -if(!a2.t(0,q)){q.a=null -q.vs() -m=l.r.b -if(q.w===B.cV){q.eH() -q.b3(A.aB1())}m.b.E(0,q)}}return d}, -DH(a,b,c){return this.a_l(a,b,c,null)}, -eg(a,b){var s,r,q,p=this -p.a=a -p.d=b -p.w=B.cV -s=a!=null -if(s){r=a.e -r===$&&A.c();++r}else r=1 -p.e=r -if(s)p.r=a.r -q=p.gaF().a -if(q instanceof A.kE)p.r.z.m(0,q,p) -p.I3() -p.IE()}, -bB(a,b){this.f=b}, -a_t(a,b){new A.a8H(b).$1(a)}, -I8(a){this.d=a}, -U5(a){var s=a+1,r=this.e -r===$&&A.c() -if(r")),s=s.c;p.u();){r=p.d;(r==null?s.a(r):r).al.F(0,q)}q.y=null -q.w=B.Wr}, -lU(){var s=this,r=s.f,q=r==null?null:r.a -if(q instanceof A.kE){r=s.r.z -if(J.e(r.h(0,q),s))r.F(0,q)}s.z=s.f=null -s.w=B.A3}, -gq(a){var s=this.ga_() -if(s instanceof A.A)return s.gq(s) -return null}, -mA(a,b){var s=this.z;(s==null?this.z=A.d5(t.pq):s).E(0,a) -a.M4(this,b) -return t.WB.a(a.gaF())}, -Bh(a){return this.mA(a,null)}, -an(a){var s=this.y,r=s==null?null:s.h(0,A.cG(a)) -if(r!=null)return a.a(this.mA(r,null)) -this.Q=!0 -return null}, -DS(a){var s=this.fv(a) -s=s==null?null:s.gaF() -return a.i("0?").a(s)}, -fv(a){var s=this.y -return s==null?null:s.h(0,A.cG(a))}, -IE(){var s=this.a -this.c=s==null?null:s.c}, -I3(){var s=this.a -this.y=s==null?null:s.y}, -X8(a){var s,r=this.a -while(!0){s=r==null -if(!(!s&&A.u(r.gaF())!==A.cG(a)))break -r=r.a}s=s?null:r.gaF() -return a.i("0?").a(s)}, -vS(a){var s,r,q=this.a -for(;s=q==null,!s;){if(q instanceof A.hQ){r=q.ok -r.toString -r=a.b(r)}else r=!1 -if(r)break -q=q.a}t.lE.a(q) -if(s)s=null -else{s=q.ok -s.toString}return a.i("0?").a(s)}, -ap4(a){var s,r,q=this.a -for(s=null;q!=null;){if(q instanceof A.hQ){r=q.ok -r.toString -r=a.b(r)}else r=!1 -if(r)s=q -q=q.a}if(s==null)r=null -else{r=s.ok -r.toString}return a.i("0?").a(r)}, -r3(a){var s=this.a -for(;s!=null;){if(s instanceof A.b9&&a.b(s.ga_()))return a.a(s.ga_()) -s=s.a}return null}, -je(a){var s=this.a -while(!0){if(!(s!=null&&a.$1(s)))break -s=s.a}}, -bu(){this.cN()}, -f6(a){var s=this.c -if(s!=null)s.f6(a)}, -df(){var s=this.f -s=s==null?null:s.df() -return s==null?"#"+A.aV(this)+"(DEFUNCT)":s}, -cN(){var s=this -if(s.w!==B.cV)return -if(s.as)return -s.as=!0 -s.r.MH(s)}, -Dd(a){var s -if(this.w===B.cV)s=!this.as&&!a -else s=!0 -if(s)return -try{this.jX()}finally{}}, -Zv(){return this.Dd(!1)}, -jX(){this.as=!1}, -$iS:1} -A.a8D.prototype={ -$1(a){this.a.a=a}, -$S:10} -A.a8B.prototype={ -$1(a){this.a.push(a) -return!0}, -$S:18} -A.a8A.prototype={ -$1(a){var s=null -return A.kt("",a,!0,B.bq,s,!1,s,s,B.aO,s,!1,!0,!0,B.iZ,s,t.v)}, -$S:456} -A.a8F.prototype={ -$1(a){var s=this.a.t(0,a) -return s?null:a}, -$S:687} -A.a8G.prototype={ -$2(a,b){var s=this.a -return s!=null?s[a]:new A.o1(b,a,t.Bc)}, -$S:458} -A.a8H.prototype={ -$1(a){a.I8(this.a) -if(!(a instanceof A.b9))a.b3(this)}, -$S:10} -A.a8y.prototype={ -$1(a){a.U5(this.a)}, -$S:10} -A.a8C.prototype={ -$1(a){a.vs()}, -$S:10} -A.a8z.prototype={ -$1(a){a.AI(this.a)}, -$S:10} -A.Nj.prototype={ -aD(a){var s=this.d,r=new A.Dc(s,A.af(t.T)) -r.aC() -r.a63(s) -return r}} -A.A_.prototype={ -eg(a,b){this.Nw(a,b) -this.FZ()}, -FZ(){this.Zv()}, -jX(){var s,r,q,p,o,n,m=this,l=null -try{l=m.bq() -m.gaF()}catch(o){s=A.a6(o) -r=A.aJ(o) -n=A.AF(A.aFc(A.bu("building "+m.k(0)),s,r,new A.a6n())) -l=n}finally{m.Ex()}try{m.ay=m.dV(m.ay,l,m.d)}catch(o){q=A.a6(o) -p=A.aJ(o) -n=A.AF(A.aFc(A.bu("building "+m.k(0)),q,p,new A.a6o())) -l=n -m.ay=m.dV(null,l,m.d)}}, -b3(a){var s=this.ay -if(s!=null)a.$1(s)}, -ie(a){this.ay=null -this.jm(a)}} -A.a6n.prototype={ -$0(){var s=A.b([],t.E) -return s}, -$S:25} -A.a6o.prototype={ -$0(){var s=A.b([],t.E) -return s}, -$S:25} -A.wL.prototype={ -bq(){return t.Iz.a(this.gaF()).G(this)}, -bB(a,b){this.y8(0,b) -this.Dd(!0)}} -A.hQ.prototype={ -bq(){return this.ok.G(this)}, -FZ(){this.ok.aE() -this.ok.bu() -this.a1R()}, -jX(){var s=this -if(s.p1){s.ok.bu() -s.p1=!1}s.a1S()}, -bB(a,b){var s,r,q,p=this -p.y8(0,b) -s=p.ok -r=s.a -r.toString -q=p.f -q.toString -s.a=t.d2.a(q) -s.aM(r) -p.Dd(!0)}, -bY(){this.y6() -this.ok.bY() -this.cN()}, -eH(){this.ok.eH() -this.Nt()}, -lU(){var s=this -s.tt() -s.ok.n() -s.ok=s.ok.c=null}, -mA(a,b){return this.y7(a,b)}, -Bh(a){return this.mA(a,null)}, -bu(){this.Nu() -this.p1=!0}} -A.CT.prototype={ -bq(){return t.yH.a(this.gaF()).b}, -bB(a,b){var s=this,r=t.yH.a(s.gaF()) -s.y8(0,b) -s.xl(r) -s.Dd(!0)}, -xl(a){this.oQ(a)}} -A.ro.prototype={ -OB(a){this.b3(new A.ahi(a))}, -oQ(a){var s=this.f -s.toString -this.OB(this.$ti.i("dZ<1>").a(s))}} -A.ahi.prototype={ -$1(a){if(a instanceof A.b9)this.a.o1(a.ga_()) -else a.b3(this)}, -$S:10} -A.fy.prototype={ -I3(){var s=this,r=s.a,q=r==null?null:r.y -if(q==null)q=B.MN -s.y=q.ats(0,A.u(s.gaF()),s)}, -MU(a,b){this.al.m(0,a,b)}, -M4(a,b){this.MU(a,null)}, -KY(a,b){b.bu()}, -xl(a){if(t.WB.a(this.gaF()).cP(a))this.a2R(a)}, -oQ(a){var s,r,q -for(s=this.al,r=A.p(s),s=new A.xT(s,s.Fv(),r.i("xT<1>")),r=r.c;s.u();){q=s.d -this.KY(a,q==null?r.a(q):q)}}} -A.b9.prototype={ -ga_(){var s=this.ay -s.toString -return s}, -a9L(){var s=this.a -while(!0){if(!(s!=null&&!(s instanceof A.b9)))break -s=s.a}return t.p2.a(s)}, -a9K(){var s,r={},q=r.a=this.a -r.b=null -while(!0){if(!(q!=null&&!(q instanceof A.b9)))break -if(q instanceof A.ro){r.b=q -break}s=q.a -r.a=s -q=s}return r.b}, -eg(a,b){var s=this -s.Nw(a,b) -s.ay=t.F5.a(s.gaF()).aD(s) -s.AI(b) -s.Ex()}, -bB(a,b){this.y8(0,b) -this.S3()}, -jX(){this.S3()}, -S3(){var s=this -t.F5.a(s.gaF()).aH(s,s.ga_()) -s.Ex()}, -eH(){this.Nt()}, -lU(){var s=this,r=t.F5.a(s.gaF()) -s.tt() -r.vy(s.ga_()) -s.ay.n() -s.ay=null}, -I8(a){var s,r=this,q=r.d -r.a22(a) -s=r.CW -s.toString -s.il(r.ga_(),q,r.d)}, -AI(a){var s,r,q=this -q.d=a -s=q.CW=q.a9L() -if(s!=null)s.ih(q.ga_(),a) -r=q.a9K() -if(r!=null){s=r.f -s.toString -t.IL.a(s).o1(q.ga_())}}, -vs(){var s=this,r=s.CW -if(r!=null){r.ja(s.ga_(),s.d) -s.CW=null}s.d=null}} -A.ajW.prototype={} -A.OU.prototype={ -ie(a){this.jm(a)}, -ih(a,b){}, -il(a,b,c){}, -ja(a,b){}} -A.E8.prototype={ -b3(a){var s=this.p1 -if(s!=null)a.$1(s)}, -ie(a){this.p1=null -this.jm(a)}, -eg(a,b){var s,r,q=this -q.m6(a,b) -s=q.p1 -r=q.f -r.toString -q.p1=q.dV(s,t.Mp.a(r).c,null)}, -bB(a,b){var s,r,q=this -q.kc(0,b) -s=q.p1 -r=q.f -r.toString -q.p1=q.dV(s,t.Mp.a(r).c,null)}, -ih(a,b){var s=this.ay -s.toString -t.GM.a(s).saW(a)}, -il(a,b,c){}, -ja(a,b){var s=this.ay -s.toString -t.GM.a(s).saW(null)}} -A.ih.prototype={ -ga_(){return t.pU.a(A.b9.prototype.ga_.call(this))}, -gfM(a){var s=this.p1 -s===$&&A.c() -return new A.aL(s,new A.agg(this),A.W(s).i("aL<1>"))}, -ih(a,b){var s=this.ga_(),r=b.a -s.Kt(0,a,r==null?null:r.ga_())}, -il(a,b,c){var s=this.ga_(),r=c.a -s.wy(a,r==null?null:r.ga_())}, -ja(a,b){this.ga_().F(0,a)}, -b3(a){var s,r,q,p,o=this.p1 -o===$&&A.c() -s=o.length -r=this.p2 -q=0 -for(;q") -h.d=new A.aX(t.o.a(p),new A.f8(new A.eX(new A.e7(n,1,B.B)),o,m),m.i("aX"))}}if(s)s=!(isFinite(q.a)&&isFinite(q.b)) -else s=!0 -h.w=s}, -y_(a,b){var s,r,q,p=this -p.f=b -switch(b.a.a){case 1:s=p.e -s===$&&A.c() -s.sba(0,new A.jM(b.gjx(b),new A.b7(A.b([],t.x8),t.jc),0)) -r=!1 -break -case 0:s=p.e -s===$&&A.c() -s.sba(0,b.gjx(b)) -r=!0 -break -default:r=null}s=p.f -p.b=s.vl(s.gXp(),p.f.gDv()) -p.f.f.En(r) -p.f.r.Em() -s=p.f -q=A.rl(p.ga7b(),!1) -p.r=q -s.b.Ks(0,q) -q=p.e -q===$&&A.c() -q.bO() -q=q.cU$ -q.b=!0 -q.a.push(p.gYR())}, -k(a){var s,r,q,p,o,n=this.f -n===$&&A.c() -s=n.d.b -r=n.e.b -n=n.f.a.c.k(0) -q=s.k(0) -p=r.k(0) -o=this.e -o===$&&A.c() -return"HeroFlight(for: "+n+", from: "+q+", to: "+p+" "+A.j(o.c)+")"}} -A.au5.prototype={ -$2(a,b){var s,r=null,q=this.a,p=q.b -p===$&&A.c() -s=q.e -s===$&&A.c() -s=p.a7(0,s.gl(s)) -s.toString -p=q.f -p===$&&A.c() -p=p.c -return A.w1(p.b-s.d,A.v5(A.iI(!1,b,q.d),!0,r),r,r,s.a,p.a-s.c,s.b,r)}, -$S:478} -A.au6.prototype={ -$0(){var s,r=this.a -r.x=!1 -this.b.cx.H(0,this) -s=r.e -s===$&&A.c() -r.S2(s.gb4(s))}, -$S:0} -A.v1.prototype={ -Bl(){var s,r,q,p=$.ke() -A.kA(this) -if(p.a.get(this).cx.a)return -p=this.b -p=p.gaR(p) -s=A.p(p).i("aL") -r=A.a8(new A.aL(p,new A.abW(),s),!1,s.i("q.E")) -for(p=r.length,q=0;q"),a=t.k2;s.u();){a0=s.gJ(s) -a1=a0.a -a2=a0.b -a3=k.h(0,a1) -a4=j.h(0,a1) -if(a3==null)a5=null -else{a0=o.id -if(a0==null)a0=A.U(A.a4("RenderBox was not laid out: "+A.u(o).k(0)+"#"+A.aV(o))) -a3.a.toString -a2.a.toString -a5=new A.au4(b2,q,a0,b0,b1,a2,a3,p,r,b3,a4!=null)}if(a5!=null&&a5.gc8()){k.F(0,a1) -if(a4!=null){a0=a4.f -a0===$&&A.c() -a6=a0.a -if(a6===B.cF&&a5.a===B.cG){a0=a4.e -a0===$&&A.c() -a0.sba(0,new A.jM(a5.gjx(a5),new A.b7(A.b([],h),g),0)) -a0=a4.b -a0===$&&A.c() -a4.b=new A.Dx(a0,a0.b,a0.a,a)}else{a6=a6===B.cG&&a5.a===B.cF -a7=a4.e -if(a6){a7===$&&A.c() -a0=a5.gjx(a5) -a6=a4.f -a6=a6.gjx(a6) -a6=a6.gl(a6) -a7.sba(0,new A.aX(c.a(a0),new A.ay(a6,1,d),b)) -a0=a4.f -a6=a0.f -a7=a5.r -if(a6!==a7){a6.qO(!0) -a7.Em() -a0=a4.f -a6=a4.b -a6===$&&A.c() -a4.b=a0.vl(a6.b,a5.gDv())}else{a6=a4.b -a6===$&&A.c() -a4.b=a0.vl(a6.b,a6.a)}}else{a6=a4.b -a6===$&&A.c() -a7===$&&A.c() -a4.b=a0.vl(a6.a7(0,a7.gl(a7)),a5.gDv()) -a4.c=null -a0=a5.a -a6=a4.e -if(a0===B.cG)a6.sba(0,new A.jM(a5.gjx(a5),new A.b7(A.b([],h),g),0)) -else a6.sba(0,a5.gjx(a5)) -a4.f.f.qO(!0) -a4.f.r.qO(!0) -a5.f.En(a0===B.cF) -a5.r.Em() -a0=a4.r.f.gO() -if(a0!=null)a0.Rs()}}a4.f=a5}else{a0=new A.mX(i,B.dH) -a6=A.b([],h) -a7=new A.b7(a6,g) -a8=new A.CS(a7,new A.b7(A.b([],f),e),0) -a8.a=B.H -a8.b=0 -a8.bO() -a7.b=!0 -a6.push(a0.gaaN()) -a0.e=a8 -a0.y_(0,a5) -j.m(0,a1,a0)}}else if(a4!=null)a4.w=!0}for(s=k.gaR(k),s=s.ga9(s);s.u();)s.gJ(s).WS()}, -abz(a){var s=a.f -s===$&&A.c() -this.b.F(0,s.f.a.c)}, -a8K(a,b,c,d,e){var s=t.rA.a(e.gaF()),r=A.ct(e,null),q=A.ct(d,null) -if(r==null||q==null)return s.e -return A.jn(b,new A.abU(r,c,q.f,r.f,b,s),null)}} -A.abW.prototype={ -$1(a){var s=a.f -s===$&&A.c() -if(s.y)if(s.a===B.cG){s=a.e -s===$&&A.c() -s=s.gb4(s)===B.H}else s=!1 -else s=!1 -return s}, -$S:481} -A.abV.prototype={ -$1(a){var s=this,r=s.b -if(r.a==null||s.c.a==null)return -s.a.Tj(r,s.c,s.d,s.e)}, -$S:3} -A.abU.prototype={ -$2(a,b){var s=this,r=s.c,q=s.d,p=s.e -r=s.b===B.cF?new A.At(r,q).a7(0,p.gl(p)):new A.At(q,r).a7(0,p.gl(p)) -return A.kP(s.f.e,s.a.qv(r),null)}, -$S:482} -A.qL.prototype={ -G(a){return this.c}} -A.dK.prototype={ -G(a){var s,r,q,p,o,n,m,l,k,j,i,h,g=this,f=null,e=a.an(t.I) -e.toString -s=e.w -r=A.adi(a) -q=g.d -if(q==null)q=r.a -p=r.b -o=r.c -n=r.d -m=r.e -e=r.r -l=e==null?f:A.R(e,0,1) -if(l==null)l=1 -k=g.x -if(k==null){e=r.f -e.toString -k=e}if(l!==1)k=A.ao(B.d.bE(255*((k.gl(k)>>>24&255)/255*l)),k.gl(k)>>>16&255,k.gl(k)>>>8&255,k.gl(k)&255) -e=g.c -j=A.bQ(e.a) -i=A.b([],t.uf) -if(p!=null)i.push(new A.nS("FILL",p)) -if(o!=null)i.push(new A.nS("wght",o)) -if(n!=null)i.push(new A.nS("GRAD",n)) -if(m!=null)i.push(new A.nS("opsz",m)) -h=A.ajV(f,f,f,B.Qv,f,f,!0,f,A.c8(f,f,f,A.f6(f,f,k,f,f,f,f,f,e.b,f,f,q,f,i,f,f,f,!1,f,f,f,f,e.c,r.w,f,f),j),B.aR,s,f,1,B.aH) -if(e.d)switch(s.a){case 0:e=new A.b6(new Float64Array(16)) -e.e6() -e.m0(0,-1,1,1) -h=A.TP(B.a0,h,e,!1) -break -case 1:break}e=A.cz(A.km(h,f,f),q,q) -return new A.bL(A.c7(f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,g.z,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f),!1,!1,!1,!1,new A.nN(!0,e,f),f)}} -A.cy.prototype={ -j(a,b){var s=this -if(b==null)return!1 -if(J.Y(b)!==A.u(s))return!1 -return b instanceof A.cy&&b.a===s.a&&b.b===s.b&&b.c==s.c&&b.d===s.d&&A.d_(null,null)}, -gA(a){var s=this -return A.T(s.a,s.b,s.c,s.d,A.cn(B.IK),B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){return"IconData(U+"+B.c.rs(B.h.jc(this.a,16).toUpperCase(),5,"0")+")"}} -A.qQ.prototype={ -cP(a){return!this.w.j(0,a.w)}, -xp(a,b,c){return A.v3(c,this.w,null)}} -A.adh.prototype={ -$1(a){return A.v3(this.c,A.aIZ(a).b0(this.b),this.a)}, -$S:483} -A.d6.prototype={ -vi(a,b,c,d,e,f,g,h){var s,r=this,q=g==null?r.a:g,p=b==null?r.b:b,o=h==null?r.c:h,n=c==null?r.d:c,m=e==null?r.e:e,l=a==null?r.f:a -if(d==null){s=r.r -s=s==null?null:A.R(s,0,1)}else s=d -return new A.d6(q,p,o,n,m,l,s,f==null?r.w:f)}, -cH(a){return this.vi(a,null,null,null,null,null,null,null)}, -b0(a){var s=a.r -s=s==null?null:A.R(s,0,1) -return this.vi(a.f,a.b,a.d,s,a.e,a.w,a.a,a.c)}, -P(a){return this}, -j(a,b){var s,r,q=this -if(b==null)return!1 -if(J.Y(b)!==A.u(q))return!1 -if(b instanceof A.d6)if(b.a==q.a)if(b.b==q.b)if(b.c==q.c)if(b.d==q.d)if(b.e==q.e)if(J.e(b.f,q.f)){s=b.r -s=s==null?null:A.R(s,0,1) -r=q.r -s=s==(r==null?null:A.R(r,0,1))&&A.d_(b.w,q.w)}else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -else s=!1 -return s}, -gA(a){var s,r=this,q=r.r -q=q==null?null:A.R(q,0,1) -s=r.w -s=s==null?null:A.cn(s) -return A.T(r.a,r.b,r.c,r.d,r.e,r.f,q,s,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.Xl.prototype={} -A.nZ.prototype={ -ae(){return new A.GT(B.i)}} -A.GT.prototype={ -aE(){var s=this -s.aV() -$.av.c1$.push(s) -s.z=new A.MS(s,t.uZ)}, -n(){var s,r=this -B.b.F($.av.c1$,r) -r.ajs() -s=r.at -if(s!=null)s.n() -s=r.z -s===$&&A.c() -s.a=null -r.Ho(null) -r.aP()}, -bu(){var s,r=this -r.akE() -r.Ss() -s=r.c -s.toString -if(A.aEj(s))r.aew() -else r.Tn(!0) -r.di()}, -aM(a){var s=this -s.b2(a) -if(s.r)s.a.toString -if(!s.a.c.j(0,a.c))s.Ss()}, -akE(){var s=this.c -s.toString -s=A.ct(s,B.WL) -s=s==null?null:s.z -if(s==null){s=$.al0.JX$ -s===$&&A.c() -s=(s.a&2)!==0}this.w=s}, -Ss(){var s,r,q,p,o=this,n=o.z -n===$&&A.c() -s=o.a -r=s.c -q=o.c -q.toString -p=s.r -if(p!=null&&s.w!=null){p.toString -s=s.w -s.toString -s=new A.Q(p,s)}else s=null -o.al_(new A.DI(n,r,t.JE).P(A.tJ(q,s)))}, -aav(a){var s=this,r=s.ax -if(r==null||a){s.as=s.Q=null -s.a.toString -r=s.ax=new A.hH(s.gabO(),null,null)}r.toString -return r}, -yT(){return this.aav(!1)}, -abP(a,b){this.ao(new A.auc(this,a,b))}, -Ho(a){var s=this.e -$.c6.p1$.push(new A.aud(s)) -this.e=a}, -al_(a){var s,r,q=this,p=q.d -if(p==null)s=null -else{s=p.a -if(s==null)s=p}r=a.a -if(s===(r==null?a:r))return -if(q.r){p.toString -p.H(0,q.yT())}q.a.toString -q.ao(new A.aue(q)) -q.ao(new A.auf(q)) -q.d=a -if(q.r)a.U(0,q.yT())}, -aew(){var s,r=this -if(r.r)return -s=r.d -s.toString -s.U(0,r.yT()) -s=r.at -if(s!=null)s.n() -r.at=null -r.r=!0}, -Tn(a){var s,r,q=this -if(!q.r)return -if(a)if(q.at==null){s=q.d -s=(s==null?null:s.a)!=null}else s=!1 -else s=!1 -if(s){s=q.d.a -if(s.w)A.U(A.a4(u.V)) -r=new A.v9(s) -r.yf(s) -q.at=r}s=q.d -s.toString -s.H(0,q.yT()) -q.r=!1}, -ajs(){return this.Tn(!1)}, -G(a){var s,r,q,p,o,n,m,l=this,k=null -if(l.Q!=null)l.a.toString -s=l.e -r=s==null -q=r?k:s.a -p=r?k:s.c -o=l.a -n=o.r -o=o.w -s=r?k:s.b -if(s==null)s=1 -r=l.w -r===$&&A.c() -m=new A.R8(q,p,n,o,s,k,k,B.fC,k,k,B.a0,B.d9,k,!1,r,!1,k) -m=new A.bL(A.c7(k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,!0,k,k,k,"",k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k),!1,!1,!1,!1,m,k) -return m}} -A.auc.prototype={ -$0(){var s,r=this.a -r.Ho(this.b) -r.as=r.Q=r.f=null -s=r.x -r.x=s==null?0:s+1 -r.y=B.e1.xD(r.y,this.c)}, -$S:0} -A.aud.prototype={ -$1(a){var s=this.a -if(s!=null)s.a.n() -return null}, -$S:3} -A.aue.prototype={ -$0(){this.a.Ho(null)}, -$S:0} -A.auf.prototype={ -$0(){var s=this.a -s.x=s.f=null -s.y=!1}, -$S:0} -A.a22.prototype={} -A.pY.prototype={ -e2(a){var s=A.nr(this.a,this.b,a) -s.toString -return s}} -A.lT.prototype={ -e2(a){var s=A.a6V(this.a,this.b,a) -s.toString -return s}} -A.At.prototype={ -e2(a){var s=A.a7T(this.a,this.b,a) -s.toString -return s}} -A.lX.prototype={ -e2(a){var s=A.ek(this.a,this.b,a) -s.toString -return s}} -A.pW.prototype={ -e2(a){return A.nq(this.a,this.b,a)}} -A.rc.prototype={ -e2(b0){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4=new A.bE(new Float64Array(3)),a5=new A.bE(new Float64Array(3)),a6=A.aKm(),a7=A.aKm(),a8=new A.bE(new Float64Array(3)),a9=new A.bE(new Float64Array(3)) -this.a.Wj(a4,a6,a8) -this.b.Wj(a5,a7,a9) -s=1-b0 -r=a4.l5(s).Y(0,a5.l5(b0)) -q=a6.l5(s).Y(0,a7.l5(b0)) -p=new Float64Array(4) -o=new A.oB(p) -o.aS(q) -o.wB(0) -n=a8.l5(s).Y(0,a9.l5(b0)) -s=new Float64Array(16) -q=new A.b6(s) -m=p[0] -l=p[1] -k=p[2] -j=p[3] -i=m+m -h=l+l -g=k+k -f=m*i -e=m*h -d=m*g -c=l*h -b=l*g -a=k*g -a0=j*i -a1=j*h -a2=j*g -a3=r.a -s[0]=1-(c+a) -s[1]=e+a2 -s[2]=d-a1 -s[3]=0 -s[4]=e-a2 -s[5]=1-(f+a) -s[6]=b+a0 -s[7]=0 -s[8]=d+a1 -s[9]=b-a0 -s[10]=1-(f+c) -s[11]=0 -s[12]=a3[0] -s[13]=a3[1] -s[14]=a3[2] -s[15]=1 -q.bw(0,n) -return q}} -A.t7.prototype={ -e2(a){var s=A.bp(this.a,this.b,a) -s.toString -return s}} -A.Os.prototype={} -A.vb.prototype={ -gnI(){var s,r=this,q=r.d -if(q===$){s=A.bO(null,r.a.d,null,null,r) -r.d!==$&&A.aW() -r.d=s -q=s}return q}, -geF(){var s,r=this,q=r.e -if(q===$){s=r.gnI() -q=r.e=A.ci(r.a.c,s,null)}return q}, -aE(){var s,r=this -r.aV() -s=r.gnI() -s.bO() -s=s.d6$ -s.b=!0 -s.a.push(new A.adB(r)) -r.Pk() -r.JA()}, -aM(a){var s,r=this -r.b2(a) -if(r.a.c!==a.c){r.geF().n() -s=r.gnI() -r.e=A.ci(r.a.c,s,null)}r.gnI().e=r.a.d -if(r.Pk()){r.lD(new A.adA(r)) -s=r.gnI() -s.sl(0,0) -s.bW(0) -r.JA()}}, -n(){this.geF().n() -this.gnI().n() -this.a46()}, -al3(a,b){var s -if(a==null)return -s=this.geF() -a.sIG(a.a7(0,s.gl(s))) -a.sbg(0,b)}, -Pk(){var s={} -s.a=!1 -this.lD(new A.adz(s,this)) -return s.a}, -JA(){}} -A.adB.prototype={ -$1(a){switch(a.a){case 3:this.a.a.toString -break -case 0:case 1:case 2:break}}, -$S:5} -A.adA.prototype={ -$3(a,b,c){this.a.al3(a,b) -return a}, -$S:180} -A.adz.prototype={ -$3(a,b,c){var s -if(b!=null){if(a==null)a=c.$1(b) -s=a.b -if(!J.e(b,s==null?a.a:s))this.a.a=!0 -else if(a.b==null)a.sbg(0,a.a)}else a=null -return a}, -$S:180} -A.tS.prototype={ -aE(){this.a2b() -var s=this.gnI() -s.bO() -s=s.cU$ -s.b=!0 -s.a.push(this.gaaL())}, -aaM(){this.ao(new A.a4b())}} -A.a4b.prototype={ -$0(){}, -$S:0} -A.z1.prototype={ -ae(){return new A.Ux(null,null,B.i)}} -A.Ux.prototype={ -lD(a){var s,r,q=this,p=null,o=q.CW -q.a.toString -s=t.ZU -q.CW=s.a(a.$3(o,p,new A.aqC())) -o=q.cx -q.a.toString -r=t.Om -q.cx=r.a(a.$3(o,p,new A.aqD())) -o=t.ms -q.cy=o.a(a.$3(q.cy,q.a.y,new A.aqE())) -q.db=o.a(a.$3(q.db,q.a.z,new A.aqF())) -q.dx=t.YY.a(a.$3(q.dx,q.a.Q,new A.aqG())) -o=q.dy -q.a.toString -q.dy=r.a(a.$3(o,p,new A.aqH())) -o=q.fr -q.a.toString -q.fr=t.ka.a(a.$3(o,p,new A.aqI())) -o=q.fx -q.a.toString -q.fx=s.a(a.$3(o,p,new A.aqJ()))}, -G(a){var s,r,q,p,o,n,m,l=this,k=null,j=l.geF(),i=l.CW -i=i==null?k:i.a7(0,j.gl(j)) -s=l.cx -s=s==null?k:s.a7(0,j.gl(j)) -r=l.cy -r=r==null?k:r.a7(0,j.gl(j)) -q=l.db -q=q==null?k:q.a7(0,j.gl(j)) -p=l.dx -p=p==null?k:p.a7(0,j.gl(j)) -o=l.dy -o=o==null?k:o.a7(0,j.gl(j)) -n=l.fr -n=n==null?k:n.a7(0,j.gl(j)) -m=l.fx -m=m==null?k:m.a7(0,j.gl(j)) -return A.cC(i,l.a.r,B.m,k,p,r,q,k,o,s,n,m,k)}} -A.aqC.prototype={ -$1(a){return new A.nj(t.pC.a(a),null)}, -$S:181} -A.aqD.prototype={ -$1(a){return new A.lX(t.A0.a(a),null)}, -$S:111} -A.aqE.prototype={ -$1(a){return new A.lT(t.Hw.a(a),null)}, -$S:183} -A.aqF.prototype={ -$1(a){return new A.lT(t.Hw.a(a),null)}, -$S:183} -A.aqG.prototype={ -$1(a){return new A.pY(t.k.a(a),null)}, -$S:488} -A.aqH.prototype={ -$1(a){return new A.lX(t.A0.a(a),null)}, -$S:111} -A.aqI.prototype={ -$1(a){return new A.rc(t.xV.a(a),null)}, -$S:489} -A.aqJ.prototype={ -$1(a){return new A.nj(t.pC.a(a),null)}, -$S:181} -A.z6.prototype={ -ae(){return new A.UA(null,null,B.i)}} -A.UA.prototype={ -lD(a){this.CW=t.Om.a(a.$3(this.CW,this.a.r,new A.aqM()))}, -G(a){var s,r=this.CW -r.toString -s=this.geF() -return new A.bY(J.aGN(r.a7(0,s.gl(s)),B.z,B.lg),this.a.w,null)}} -A.aqM.prototype={ -$1(a){return new A.lX(t.A0.a(a),null)}, -$S:111} -A.z8.prototype={ -ae(){return new A.UC(null,null,B.i)}} -A.UC.prototype={ -lD(a){var s,r=this,q=null,p=t.ir -r.CW=p.a(a.$3(r.CW,r.a.w,new A.aqR())) -r.cx=p.a(a.$3(r.cx,r.a.x,new A.aqS())) -s=r.cy -r.a.toString -r.cy=p.a(a.$3(s,q,new A.aqT())) -s=r.db -r.a.toString -r.db=p.a(a.$3(s,q,new A.aqU())) -s=r.dx -r.a.toString -r.dx=p.a(a.$3(s,q,new A.aqV())) -s=r.dy -r.a.toString -r.dy=p.a(a.$3(s,q,new A.aqW()))}, -G(a){var s,r,q,p,o,n,m=this,l=null,k=m.CW -if(k==null)k=l -else{s=m.geF() -s=k.a7(0,s.gl(s)) -k=s}s=m.cx -if(s==null)s=l -else{r=m.geF() -r=s.a7(0,r.gl(r)) -s=r}r=m.cy -if(r==null)r=l -else{q=m.geF() -q=r.a7(0,q.gl(q)) -r=q}q=m.db -if(q==null)q=l -else{p=m.geF() -p=q.a7(0,p.gl(p)) -q=p}p=m.dx -if(p==null)p=l -else{o=m.geF() -o=p.a7(0,o.gl(o)) -p=o}o=m.dy -if(o==null)o=l -else{n=m.geF() -n=o.a7(0,n.gl(n)) -o=n}return A.w1(q,m.a.r,o,l,k,r,s,p)}} -A.aqR.prototype={ -$1(a){return new A.ay(A.ka(a),null,t.Y)}, -$S:34} -A.aqS.prototype={ -$1(a){return new A.ay(A.ka(a),null,t.Y)}, -$S:34} -A.aqT.prototype={ -$1(a){return new A.ay(A.ka(a),null,t.Y)}, -$S:34} -A.aqU.prototype={ -$1(a){return new A.ay(A.ka(a),null,t.Y)}, -$S:34} -A.aqV.prototype={ -$1(a){return new A.ay(A.ka(a),null,t.Y)}, -$S:34} -A.aqW.prototype={ -$1(a){return new A.ay(A.ka(a),null,t.Y)}, -$S:34} -A.z5.prototype={ -ae(){return new A.Uz(null,null,B.i)}} -A.Uz.prototype={ -lD(a){this.z=t.ir.a(a.$3(this.z,this.a.w,new A.aqL()))}, -JA(){var s=this.geF(),r=this.z -r.toString -this.Q=new A.aX(t.o.a(s),r,A.p(r).i("aX"))}, -G(a){var s=this.Q -s===$&&A.c() -return A.iI(!1,this.a.r,s)}} -A.aqL.prototype={ -$1(a){return new A.ay(A.ka(a),null,t.Y)}, -$S:34} -A.z2.prototype={ -ae(){return new A.Uy(null,null,B.i)}} -A.Uy.prototype={ -lD(a){this.CW=t.Dh.a(a.$3(this.CW,this.a.w,new A.aqK()))}, -G(a){var s,r=null,q=this.CW -q.toString -s=this.geF() -s=q.a7(0,s.gl(s)) -return A.jr(this.a.r,r,r,B.bm,!0,s,r,r,B.aH)}} -A.aqK.prototype={ -$1(a){return new A.t7(t.em.a(a),null)}, -$S:490} -A.z7.prototype={ -ae(){return new A.UB(null,null,B.i)}} -A.UB.prototype={ -lD(a){var s=this,r=s.CW -s.a.toString -s.CW=t.eJ.a(a.$3(r,B.am,new A.aqN())) -s.cx=t.ir.a(a.$3(s.cx,s.a.z,new A.aqO())) -r=t.YJ -s.cy=r.a(a.$3(s.cy,s.a.Q,new A.aqP())) -s.db=r.a(a.$3(s.db,s.a.at,new A.aqQ()))}, -G(a){var s,r,q,p,o,n=this,m=n.a,l=m.w -m=m.x -s=n.CW -s.toString -r=n.geF() -r=s.a7(0,r.gl(r)) -s=n.cx -s.toString -q=n.geF() -q=s.a7(0,q.gl(q)) -s=n.a.Q -p=n.db -p.toString -o=n.geF() -o=p.a7(0,o.gl(o)) -o.toString -return new A.QA(l,m,r,q,s,o,n.a.r,null)}} -A.aqN.prototype={ -$1(a){return new A.pW(t.m_.a(a),null)}, -$S:491} -A.aqO.prototype={ -$1(a){return new A.ay(A.ka(a),null,t.Y)}, -$S:34} -A.aqP.prototype={ -$1(a){return new A.hy(t.n8.a(a),null)}, -$S:79} -A.aqQ.prototype={ -$1(a){return new A.hy(t.n8.a(a),null)}, -$S:79} -A.xY.prototype={ -n(){var s=this,r=s.cb$ -if(r!=null)r.H(0,s.giM()) -s.cb$=null -s.aP()}, -bY(){this.cR() -this.cA() -this.iN()}} -A.kG.prototype={ -bN(a){return new A.Bc(A.hG(t.v,t.X),this,B.R,A.p(this).i("Bc"))}} -A.Bc.prototype={ -M4(a,b){var s=this.al,r=this.$ti,q=r.i("ca<1>?").a(s.h(0,a)),p=q==null -if(!p&&q.ga8(q))return -if(b==null)s.m(0,a,A.d5(r.c)) -else{p=p?A.d5(r.c):q -p.E(0,r.c.a(b)) -s.m(0,a,p)}}, -KY(a,b){var s,r=this.$ti,q=r.i("ca<1>?").a(this.al.h(0,b)) -if(q==null)return -if(!q.ga8(q)){s=this.f -s.toString -s=r.i("kG<1>").a(s).a_s(a,q) -r=s}else r=!0 -if(r)b.bu()}} -A.kH.prototype={ -cP(a){return a.f!==this.f}, -bN(a){var s=new A.xZ(A.hG(t.v,t.X),this,B.R,A.p(this).i("xZ")) -this.f.U(0,s.gGs()) -return s}} -A.xZ.prototype={ -bB(a,b){var s,r,q=this,p=q.f -p.toString -s=q.$ti.i("kH<1>").a(p).f -r=b.f -if(s!==r){p=q.gGs() -s.H(0,p) -r.U(0,p)}q.NP(0,b)}, -bq(){var s,r=this -if(r.aB){s=r.f -s.toString -r.Nz(r.$ti.i("kH<1>").a(s)) -r.aB=!1}return r.NO()}, -adB(){this.aB=!0 -this.cN()}, -oQ(a){this.Nz(a) -this.aB=!1}, -lU(){var s=this,r=s.f -r.toString -s.$ti.i("kH<1>").a(r).f.H(0,s.gGs()) -s.tt()}} -A.dl.prototype={} -A.adH.prototype={ -$1(a){var s,r,q -if(a.j(0,this.a))return!1 -if(a instanceof A.fy&&a.gaF() instanceof A.dl){s=t.og.a(a.gaF()) -r=A.u(s) -q=this.c -if(!q.t(0,r)){q.E(0,r) -this.d.push(s)}}return!0}, -$S:18} -A.LE.prototype={} -A.pb.prototype={ -G(a){var s,r,q,p=this.d -for(s=this.c,r=s.length,q=0;qMath.abs(0))return B.hZ -else return B.f0}, -afO(a){var s,r,q=this -q.a.toString -s=q.y -s===$&&A.c() -r=s.r -if(r!=null&&r.a!=null){s.ff(0) -s=q.y -s.sl(0,s.a) -s=q.r -if(s!=null)s.a.H(0,q.gzn()) -q.r=null}s=q.z -s===$&&A.c() -r=s.r -if(r!=null&&r.a!=null){s.ff(0) -s=q.z -s.sl(0,s.a) -s=q.w -if(s!=null)s.a.H(0,q.gzr()) -q.w=null}q.Q=q.ch=null -q.at=q.d.a.pb() -q.as=q.d.hO(a.b) -q.ax=q.ay}, -afQ(a){var s,r,q,p,o,n,m=this,l=m.d.a.pb(),k=m.x=a.c,j=m.d.hO(k),i=m.ch -if(i===B.f0)i=m.ch=m.Q7(a) -else if(i==null){i=m.Q7(a) -m.ch=i}if(!m.yN(i)){m.a.toString -return}switch(m.ch.a){case 1:i=m.at -i.toString -s=m.d -s.sl(0,m.GU(s.a,i*a.d/l)) -r=m.d.hO(k) -i=m.d -s=i.a -q=m.as -q.toString -i.sl(0,m.pU(s,r.Z(0,q))) -p=m.d.hO(k) -k=m.as -k.toString -if(!A.aFd(k).j(0,A.aFd(p)))m.as=p -break -case 2:i=a.r -if(i===0){m.a.toString -return}s=m.ax -s.toString -o=s+i -i=m.d -i.sl(0,m.aeM(i.a,m.ay-o,k)) -m.ay=o -break -case 0:if(a.d!==1){m.a.toString -return}if(m.Q==null){i=m.as -i.toString -m.Q=A.b3E(i,j)}i=m.as -i.toString -n=j.Z(0,i) -i=m.d -i.sl(0,m.pU(i.a,n)) -m.as=m.d.hO(k) -break}m.a.toString}, -afM(a){var s,r,q,p,o,n,m,l,k,j,i,h=this -h.a.toString -h.as=h.ax=h.at=null -s=h.r -if(s!=null)s.a.H(0,h.gzn()) -s=h.w -if(s!=null)s.a.H(0,h.gzr()) -s=h.y -s===$&&A.c() -s.sl(0,s.a) -s=h.z -s===$&&A.c() -s.sl(0,s.a) -if(!h.yN(h.ch)){h.Q=null -return}s=h.ch -if(s===B.f0){s=a.a.a -if(s.gcB()<50){h.Q=null -return}r=h.d.a.DZ().a -q=r[0] -r=r[1] -h.a.toString -p=A.aaJ(0.0000135,q,s.a,0) -h.a.toString -o=A.aaJ(0.0000135,r,s.b,0) -s=s.gcB() -h.a.toString -n=A.aN1(s,0.0000135,10) -s=p.gr2() -m=o.gr2() -l=t.Ni -k=A.ci(B.cc,h.y,null) -h.r=new A.aX(k,new A.ay(new A.k(q,r),new A.k(s,m),l),l.i("aX")) -h.y.e=A.d2(0,B.d.bE(n*1000),0) -k.U(0,h.gzn()) -h.y.bW(0)}else if(s===B.hZ){s=a.b -r=Math.abs(s) -if(r<0.1){h.Q=null -return}j=h.d.a.pb() -h.a.toString -i=A.aaJ(0.0026999999999999997,j,s/10,0) -h.a.toString -n=A.aN1(r,0.0000135,0.1) -s=i.eA(0,n) -r=t.Y -q=A.ci(B.cc,h.z,null) -h.w=new A.aX(q,new A.ay(j,s,r),r.i("aX")) -h.z.e=A.d2(0,B.d.bE(n*1000),0) -q.U(0,h.gzr()) -h.z.bW(0)}}, -ae8(a){var s,r,q,p,o,n,m,l=this -if(t.Mj.b(a)){if(a.gcp(a)===B.aQ){l.a.toString -s=!0}else s=!1 -if(s){l.a.toString -s=a.gbv(a).Y(0,a.gjk()) -r=a.gjk() -q=A.rs(a.gbL(a),null,r,s) -if(!l.yN(B.f0)){l.a.toString -return}s=l.d -s.toString -p=s.hO(a.gd_()) -s=l.d -s.toString -o=s.hO(a.gd_().Z(0,q)) -s=l.d -s.sl(0,l.pU(s.a,o.Z(0,p))) -l.a.toString -return}if(a.gjk().b===0)return -s=a.gjk() -l.a.toString -n=Math.exp(-s.b/200)}else if(t.RH.b(a))n=a.ghT(a) -else return -l.a.toString -if(!l.yN(B.hZ)){l.a.toString -return}s=l.d -s.toString -p=s.hO(a.gd_()) -s=l.d -s.sl(0,l.GU(s.a,n)) -s=l.d -s.toString -m=s.hO(a.gd_()) -s=l.d -s.sl(0,l.pU(s.a,m.Z(0,p))) -l.a.toString}, -aff(){var s,r,q,p,o=this,n=o.y -n===$&&A.c() -n=n.r -if(!(n!=null&&n.a!=null)){o.Q=null -n=o.r -if(n!=null)n.a.H(0,o.gzn()) -o.r=null -n=o.y -n.sl(0,n.a) -return}n=o.d.a.DZ().a -s=n[0] -n=n[1] -r=o.d.hO(new A.k(s,n)) -n=o.d -n.toString -s=o.r -q=s.b -s=s.a -p=n.hO(q.a7(0,s.gl(s))).Z(0,r) -s=o.d -s.sl(0,o.pU(s.a,p))}, -afK(){var s,r,q,p,o,n=this,m=n.z -m===$&&A.c() -m=m.r -if(!(m!=null&&m.a!=null)){n.Q=null -m=n.w -if(m!=null)m.a.H(0,n.gzr()) -n.w=null -m=n.z -m.sl(0,m.a) -return}m=n.w -s=m.b -m=m.a -r=s.a7(0,m.gl(m)) -m=n.d.a.pb() -s=n.d -s.toString -q=n.x -q===$&&A.c() -p=s.hO(q) -q=n.d -q.sl(0,n.GU(q.a,r/m)) -o=n.d.hO(n.x) -m=n.d -m.sl(0,n.pU(m.a,o.Z(0,p)))}, -ag4(){this.ao(new A.auC())}, -aE(){var s,r=this,q=null -r.aV() -r.a.toString -s=A.b0X() -r.d=s -s.U(0,r.gRO()) -r.y=A.bO(q,q,q,q,r) -r.z=A.bO(q,q,q,q,r)}, -aM(a){this.b2(a) -this.a.toString}, -n(){var s=this,r=s.y -r===$&&A.c() -r.n() -r=s.z -r===$&&A.c() -r.n() -s.d.H(0,s.gRO()) -s.a.toString -r=s.d -r.toString -r.ag$=$.aO() -r.aj$=0 -s.a5s()}, -G(a){var s,r,q=this,p=null,o=q.a -o.toString -s=q.d.a -r=new A.Xz(o.x,q.e,B.S,!1,s,p,p) -return A.vt(B.bD,A.hF(B.aG,r,B.a1,!1,p,p,p,p,p,p,p,p,p,p,p,q.gafL(),q.gafN(),q.gafP(),p,p,p,p,p,p,p,p,!1,new A.k(0,-0.005)),q.f,p,p,p,q.gae7(),p)}} -A.auC.prototype={ -$0(){}, -$S:0} -A.Xz.prototype={ -G(a){var s=this,r=A.TP(s.w,new A.oa(s.c,s.d),s.r,!0) -return A.M_(new A.Q7(B.cX,0,1/0,0,1/0,r,null),s.e)}} -A.TS.prototype={ -hO(a){var s=this.a,r=new A.b6(new Float64Array(16)) -if(r.h4(s)===0)A.U(A.dW(s,"other","Matrix cannot be inverted")) -s=new A.bE(new Float64Array(3)) -s.dC(a.a,a.b,0) -s=r.l_(s).a -return new A.k(s[0],s[1])}} -A.GM.prototype={ -I(){return"_GestureType."+this.b}} -A.ahg.prototype={ -I(){return"PanAxis."+this.b}} -A.JO.prototype={ -bY(){this.cR() -this.cA() -this.ep()}, -n(){var s=this,r=s.aZ$ -if(r!=null)r.H(0,s.ge8()) -s.aZ$=null -s.aP()}} -A.nB.prototype={ -bN(a){return new A.y1(this,B.R,A.p(this).i("y1"))}} -A.y1.prototype={ -ga_(){return this.$ti.i("iq<1,t>").a(A.b9.prototype.ga_.call(this))}, -b3(a){var s=this.p1 -if(s!=null)a.$1(s)}, -ie(a){this.p1=null -this.jm(a)}, -eg(a,b){var s=this -s.m6(a,b) -s.$ti.i("iq<1,t>").a(A.b9.prototype.ga_.call(s)).M2(s.gRm())}, -bB(a,b){var s,r=this -r.kc(0,b) -s=r.$ti.i("iq<1,t>") -s.a(A.b9.prototype.ga_.call(r)).M2(r.gRm()) -s=s.a(A.b9.prototype.ga_.call(r)) -s.BI$=!0 -s.W()}, -jX(){var s=this.$ti.i("iq<1,t>").a(A.b9.prototype.ga_.call(this)) -s.BI$=!0 -s.W() -this.EC()}, -lU(){this.$ti.i("iq<1,t>").a(A.b9.prototype.ga_.call(this)).M2(null) -this.a34()}, -ael(a){this.r.v_(this,new A.auN(this,a))}, -ih(a,b){this.$ti.i("iq<1,t>").a(A.b9.prototype.ga_.call(this)).saW(a)}, -il(a,b,c){}, -ja(a,b){this.$ti.i("iq<1,t>").a(A.b9.prototype.ga_.call(this)).saW(null)}} -A.auN.prototype={ -$0(){var s,r,q,p,o,n,m,l,k=this,j=null -try{o=k.a -n=o.f -n.toString -j=o.$ti.i("nB<1>").a(n).c.$2(o,k.b) -o.f.toString}catch(m){s=A.a6(m) -r=A.aJ(m) -l=A.AF(A.aNp(A.bu("building "+k.a.f.k(0)),s,r,new A.auO())) -j=l}try{o=k.a -o.p1=o.dV(o.p1,j,null)}catch(m){q=A.a6(m) -p=A.aJ(m) -o=k.a -l=A.AF(A.aNp(A.bu("building "+o.f.k(0)),q,p,new A.auP())) -j=l -o.p1=o.dV(null,j,o.d)}}, -$S:0} -A.auO.prototype={ -$0(){var s=A.b([],t.E) -return s}, -$S:25} -A.auP.prototype={ -$0(){var s=A.b([],t.E) -return s}, -$S:25} -A.iq.prototype={ -M2(a){if(J.e(a,this.K1$))return -this.K1$=a -this.W()}} -A.ob.prototype={ -aD(a){var s=new A.HX(null,!0,null,null,A.af(t.T)) -s.aC() -return s}} -A.HX.prototype={ -bf(a){return 0}, -b7(a){return 0}, -b8(a){return 0}, -be(a){return 0}, -cg(a){return B.o}, -bs(){var s=this,r=t.k,q=r.a(A.t.prototype.ga2.call(s)) -if(s.BI$||!r.a(A.t.prototype.ga2.call(s)).j(0,s.X3$)){s.X3$=r.a(A.t.prototype.ga2.call(s)) -s.BI$=!1 -r=s.K1$ -r.toString -s.Cg(r,A.p(s).i("iq.0"))}r=s.C$ -if(r!=null){r.bz(q,!0) -r=s.C$ -s.id=q.aX(r.gq(r))}else s.id=new A.Q(A.R(1/0,q.a,q.b),A.R(1/0,q.c,q.d))}, -eS(a){var s=this.C$ -if(s!=null)return s.l1(a) -return this.ya(a)}, -co(a,b){var s=this.C$ -s=s==null?null:s.c2(a,b) -return s===!0}, -ap(a,b){var s=this.C$ -if(s!=null)a.dc(s,b)}} -A.a2p.prototype={ -ai(a){var s -this.dD(a) -s=this.C$ -if(s!=null)s.ai(a)}, -aa(a){var s -this.dE(0) -s=this.C$ -if(s!=null)s.aa(0)}} -A.a2q.prototype={} -A.yg.prototype={} -A.aAk.prototype={ -$1(a){return this.a.a=a}, -$S:47} -A.aAl.prototype={ -$1(a){return a.b}, -$S:496} -A.aAm.prototype={ -$1(a){var s,r,q,p -for(s=J.X(a),r=this.a,q=this.b,p=0;ps.b?B.he:B.hd}, -vh(a,b,c,d,e){var s=this,r=c==null?s.c:c,q=b==null?s.f:b,p=e==null?s.r:e,o=d==null?s.e:d,n=a==null?s.ch:a -return new A.BW(s.a,s.b,r,s.d,o,q,p,s.w,!1,s.y,s.z,s.Q,s.as,s.at,s.ax,s.ay,n)}, -o9(a){return this.vh(null,null,a,null,null)}, -qv(a){return this.vh(null,a,null,null,null)}, -anH(a,b){return this.vh(null,null,null,a,b)}, -anG(a,b){return this.vh(null,a,null,null,b)}, -anK(a,b,c,d){return this.vh(a,b,null,c,d)}, -LB(a,b,c,d){var s,r,q,p,o,n,m=this,l=null -if(!(b||d||c||a))return m -s=m.f -r=b?0:l -q=d?0:l -p=c?0:l -r=s.oa(a?0:l,r,p,q) -q=m.r -p=b?Math.max(0,q.a-s.a):l -o=d?Math.max(0,q.b-s.b):l -n=c?Math.max(0,q.c-s.c):l -return m.anG(r,q.oa(a?Math.max(0,q.d-s.d):l,p,n,o))}, -atO(a){return this.LB(a,!1,!1,!1)}, -ZN(a,b,c,d){var s,r,q,p,o,n,m=this,l=null -if(!b)!d -s=m.r -r=b?Math.max(0,s.a-m.e.a):l -q=d?Math.max(0,s.b-m.e.b):l -p=c?Math.max(0,s.c-m.e.c):l -o=m.e -n=Math.max(0,s.d-o.d) -s=s.oa(n,r,p,q) -r=b?0:l -q=d?0:l -p=c?0:l -return m.anH(o.oa(0,r,p,q),s)}, -ZM(a){return this.ZN(a,!1,!1,!1)}, -atL(a){var s,r,q,p,o,n,m,l,k,j,i,h=this,g=a.c,f=a.a,e=a.d,d=a.b,c=h.a -if(new A.Q(g-f,e-d).j(0,c)&&new A.k(f,d).j(0,B.e))return h -s=c.a-g -r=c.b-e -g=h.f -e=Math.max(0,g.a-f) -c=Math.max(0,g.b-d) -q=Math.max(0,g.c-s) -g=Math.max(0,g.d-r) -p=h.r -o=Math.max(0,p.a-f) -n=Math.max(0,p.b-d) -m=Math.max(0,p.c-s) -p=Math.max(0,p.d-r) -l=h.e -f=Math.max(0,l.a-f) -d=Math.max(0,l.b-d) -k=Math.max(0,l.c-s) -l=Math.max(0,l.d-r) -j=h.ch -i=A.W(j).i("aL<1>") -return h.anK(A.a8(new A.aL(j,new A.afz(a),i),!0,i.i("q.E")),new A.aF(e,c,q,g),new A.aF(f,d,k,l),new A.aF(o,n,m,p))}, -j(a,b){var s=this -if(b==null)return!1 -if(J.Y(b)!==A.u(s))return!1 -return b instanceof A.BW&&b.a.j(0,s.a)&&b.b===s.b&&b.c===s.c&&b.d===s.d&&b.f.j(0,s.f)&&b.r.j(0,s.r)&&b.e.j(0,s.e)&&b.w.j(0,s.w)&&b.Q===s.Q&&b.as===s.as&&b.z===s.z&&b.y===s.y&&b.at===s.at&&b.ax===s.ax&&b.ay.j(0,s.ay)&&A.d_(b.ch,s.ch)}, -gA(a){var s=this -return A.T(s.a,s.b,s.c,s.d,s.f,s.r,s.e,!1,s.Q,s.as,s.z,s.y,s.at,s.ax,s.ay,A.cn(s.ch),B.a,B.a,B.a,B.a)}, -k(a){var s=this -return"MediaQueryData("+B.b.bH(A.b(["size: "+s.a.k(0),"devicePixelRatio: "+B.d.ad(s.b,1),"textScaleFactor: "+B.d.ad(s.c,1),"platformBrightness: "+s.d.k(0),"padding: "+s.f.k(0),"viewPadding: "+s.r.k(0),"viewInsets: "+s.e.k(0),"systemGestureInsets: "+s.w.k(0),"alwaysUse24HourFormat: false","accessibleNavigation: "+s.y,"highContrast: "+s.Q,"disableAnimations: "+s.as,"invertColors: "+s.z,"boldText: "+s.at,"navigationMode: "+s.ax.b,"gestureSettings: "+s.ay.k(0),"displayFeatures: "+A.j(s.ch)],t.s),", ")+")"}} -A.afz.prototype={ -$1(a){return this.a.wJ(a.gln(a))}, -$S:160} -A.re.prototype={ -cP(a){return!this.w.j(0,a.w)}, -a_s(a6,a7){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5 -for(s=a7.ga9(a7),r=this.w,q=a6.w,p=r.ch!==q.ch,o=r.ay,n=q.ay,m=r.ax!==q.ax,l=r.at!==q.at,k=r.as!==q.as,j=r.Q!==q.Q,i=r.z!==q.z,h=r.y!==q.y,g=r.r,f=q.r,e=r.w,d=q.w,c=r.e,b=q.e,a=r.f,a0=q.f,a1=r.d!==q.d,a2=r.c!==q.c,a3=r.b!==q.b,r=r.a,q=q.a,a4=r.a,r=r.b;s.u();){a5=s.gJ(s) -if(a5 instanceof A.eP)switch(a5.a){case 0:if(!(q.a===a4&&q.b===r))return!0 -break -case 1:a5=a4>r?B.he:B.hd -if(a5!==(q.a>q.b?B.he:B.hd))return!0 -break -case 2:if(a3)return!0 -break -case 3:if(a2)return!0 -break -case 4:if(a1)return!0 -break -case 5:if(!a.j(0,a0))return!0 -break -case 6:if(!c.j(0,b))return!0 -break -case 7:if(!e.j(0,d))return!0 -break -case 8:if(!g.j(0,f))return!0 -break -case 9:break -case 10:if(h)return!0 -break -case 11:if(i)return!0 -break -case 12:if(j)return!0 -break -case 13:if(k)return!0 -break -case 14:if(l)return!0 -break -case 15:if(m)return!0 -break -case 16:if(!o.j(0,n))return!0 -break -case 17:if(p)return!0 -break}}return!1}} -A.agI.prototype={ -I(){return"NavigationMode."+this.b}} -A.Ho.prototype={ -ae(){return new A.Yc(B.i)}} -A.Yc.prototype={ -aE(){this.aV() -$.av.c1$.push(this)}, -bu(){this.di() -this.akL() -this.uC()}, -aM(a){var s,r=this -r.b2(a) -s=r.a -s.toString -if(r.e==null||a.c!==s.c)r.uC()}, -akL(){var s,r=this -r.a.toString -s=r.c -s.toString -s=A.ct(s,null) -r.d=s -r.e=null}, -uC(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=this,d=null,c=e.a.c,b=e.d,a=c.giq(),a0=c.x -if(a0==null){a0=self.window.devicePixelRatio -if(a0===0)a0=1}a0=a.eB(0,a0) -a=c.x -if(a==null){a=self.window.devicePixelRatio -if(a===0)a=1}s=b==null -r=s?d:b.c -if(r==null)r=c.b.a.e -q=s?d:b.d -if(q==null)q=c.b.a.d -c.gnV() -p=c.x -if(p==null){p=self.window.devicePixelRatio -if(p===0)p=1}p=A.a7S(B.eU,p) -c.gnV() -o=c.x -if(o==null){o=self.window.devicePixelRatio -if(o===0)o=1}o=A.a7S(B.eU,o) -n=c.f -m=c.x -if(m==null){m=self.window.devicePixelRatio -if(m===0)m=1}m=A.a7S(n,m) -c.gnV() -n=c.x -if(n==null){n=self.window.devicePixelRatio -if(n===0)n=1}n=A.a7S(B.eU,n) -l=s?d:b.y -if(l==null)l=(c.b.a.a.a&1)!==0 -k=s?d:b.z -if(k==null)k=(c.b.a.a.a&2)!==0 -j=s?d:b.as -if(j==null)j=(c.b.a.a.a&4)!==0 -i=s?d:b.at -if(i==null)i=(c.b.a.a.a&8)!==0 -h=s?d:b.Q -if(h==null)h=(c.b.a.a.a&32)!==0 -g=s&&d -b=s?d:b.ax -if(b==null)b=B.cL -c.gnV() -c.gnV() -f=new A.BW(a0,a,r,q,m,p,o,n,g===!0,l,k,h,j,i,b,new A.MJ(d),B.IE) -if(!f.j(0,e.e))e.ao(new A.avo(e,f))}, -Jq(){this.uC()}, -Ww(){if(this.d==null)this.uC()}, -Wv(){if(this.d==null)this.uC()}, -n(){B.b.F($.av.c1$,this) -this.aP()}, -G(a){var s=this.e -s.toString -return A.kP(this.a.e,s,null)}} -A.avo.prototype={ -$0(){this.a.e=this.b}, -$S:0} -A.a26.prototype={} -A.PD.prototype={ -G(a){var s,r,q,p,o,n,m,l,k,j=this,i=null -switch(A.bA().a){case 1:case 3:case 5:s=!1 -break -case 0:case 2:case 4:s=!0 -break -default:s=i}r=j.d&&s -q=new A.ag4(j,a) -p=r&&j.r!=null?q:i -o=r&&j.r!=null?q:i -n=r?j.r:i -if(r&&j.r!=null){m=a.an(t.I) -m.toString -m=m.w}else m=i -l=j.c -l=A.jB(new A.ft(B.lQ,l==null?i:new A.q4(l,i,i),i),B.bN,i,i,i,i) -p=A.c7(i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,n,i,i,i,i,i,i,i,i,i,i,i,i,o,i,i,i,i,i,i,i,i,i,i,i,p,i,i,i,i,i,i,m,i,i,i,i) -k=!r||!1 -return A.aW2(new A.nN(k,new A.Yl(new A.bL(p,!1,!1,!1,!1,l,i),q,i),i))}} -A.ag4.prototype={ -$0(){if(this.a.d)A.aJG(this.b) -else A.T7(B.Q9)}, -$S:0} -A.KN.prototype={ -G(a){var s=t.Bs.a(this.c) -return A.aDH(!0,null,s.gl(s),this.e,null,this.f,null)}} -A.xs.prototype={ -ii(a){if(this.al==null)return!1 -return this.pv(a)}, -Xz(a){}, -XA(a,b){var s=this.al -if(s!=null)this.cw("onAnyTapUp",s)}, -BZ(a,b,c){}} -A.UJ.prototype={ -VM(){var s=t.S,r=A.d5(s) -return new A.xs(B.aE,18,B.ci,A.m(s,t.SP),r,null,null,A.yP(),A.m(s,t.F))}, -XU(a){a.al=this.a}} -A.Yl.prototype={ -G(a){return new A.l2(this.c,A.l([B.Vw,new A.UJ(this.d)],t.A,t.xR),B.aG,!1,null)}} -A.PR.prototype={ -G(a){var s,r,q=this,p=a.an(t.I) -p.toString -s=A.b([],t.p) -r=q.c -if(r!=null)s.push(A.aeI(r,B.ic)) -r=q.d -if(r!=null)s.push(A.aeI(r,B.id)) -r=q.e -if(r!=null)s.push(A.aeI(r,B.ie)) -return new A.A7(new A.ayS(q.f,q.r,p.w),s,null)}} -A.J3.prototype={ -I(){return"_ToolbarSlot."+this.b}} -A.ayS.prototype={ -D5(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=this -if(e.b.h(0,B.ic)!=null){s=a.a -r=a.b -q=e.fU(B.ic,new A.ar(0,s,r,r)).a -switch(e.f.a){case 0:p=s-q -break -case 1:p=0 -break -default:p=null}e.hh(B.ic,new A.k(p,0))}else q=0 -if(e.b.h(0,B.ie)!=null){o=e.fU(B.ie,A.pX(a)) -switch(e.f.a){case 0:n=0 -break -case 1:n=a.a-o.a -break -default:n=null}m=o.a -e.hh(B.ie,new A.k(n,(a.b-o.b)/2))}else m=0 -if(e.b.h(0,B.id)!=null){s=a.a -r=e.e -l=Math.max(s-q-m-r*2,0) -k=e.fU(B.id,A.pX(a).vc(l)) -j=q+r -if(e.d){i=k.a -h=(s-i)/2 -g=s-m -if(h+i>g)h=g-i-r -else if(h=1)return!0}return!1}, -gwd(){var s=this.a -if(s==null)return!1 -s=s.Q_(A.aEE(this)) -s=s==null?null:s.gYh() -return s===!0}} -A.ak_.prototype={ -$1(a){var s,r=this.a.a -if(r==null)s=null -else{r.a.toString -s=!0}if(s===!0){r=r.y.gh6() -if(r!=null)r.kW()}}, -$S:27} -A.ajZ.prototype={ -$1(a){var s=this.a.a -if(s!=null){s=s.y.gh6() -if(s!=null)s.kW()}}, -$S:27} -A.jN.prototype={ -k(a){var s=this.a -s=s==null?"none":'"'+s+'"' -return"RouteSettings("+s+", "+A.j(this.b)+")"}} -A.oo.prototype={} -A.qK.prototype={ -cP(a){return a.f!=this.f}} -A.ajY.prototype={} -A.TT.prototype={} -A.ME.prototype={} -A.Ch.prototype={ -ae(){var s=null,r=A.b([],t.uD),q=$.aO(),p=t.p6 -return new A.jE(r,A.aE(t.Ez),new A.Xc(q),A.oh(s,p),A.oh(s,p),A.qA(!0,"Navigator",!0,!0,s,s,!1),new A.Du(0,q,t.dZ),A.eu(!1,t.y),A.aE(t.S),s,A.m(t.yb,t.M),s,!0,s,s,s,B.i)}, -asA(a,b){return this.Q.$2(a,b)}} -A.agM.prototype={ -$1(a){return a==null}, -$S:501} -A.fR.prototype={ -I(){return"_RouteLifecycle."+this.b}} -A.YA.prototype={} -A.k7.prototype={ -gei(){var s,r -if(this.c){s=t.sd.a(this.a.b) -s.gei() -r=A.j(s.gei()) -return"p+"+r}r=this.b -if(r!=null)return"r+"+r.gZY() -return null}, -apT(a,b,c,d){var s,r,q,p=this,o=p.d,n=p.a -n.a=b -n.n_() -s=p.d -if(s===B.Af||s===B.Ag){r=n.vw() -p.d=B.Ah -r.av2(new A.awT(p,b))}else{n.Jv(c) -p.d=B.dC}if(a)n.vu(null) -s=o===B.Xe||o===B.Ag -q=b.w -if(s)q.fC(0,new A.Hy(n,d)) -else q.fC(0,new A.yb(n,d))}, -apS(a,b){var s,r=this -r.d=B.Xa -s=r.a -if((s.d.a.a&30)!==0)return!0 -if(!s.oe(r.w)){r.d=B.dC -return!1}r.w=null -return!0}, -ez(a){if(this.d.a>=10)return -this.x=!0 -this.d=B.Ae}, -n(){var s,r,q,p,o,n,m,l=this,k={} -l.d=B.Xc -s=l.a -r=s.gD_() -q=new A.awR() -p=A.W(r) -o=new A.aL(r,q,p.i("aL<1>")) -if(!o.ga9(o).u()){l.d=B.i3 -s.n() -return}k.a=o.gp(o) -n=s.a -n.f.E(0,l) -for(s=B.b.ga9(r),p=new A.fN(s,q,p.i("fN<1>"));p.u();){r=s.gJ(s) -m=A.bg("listener") -q=new A.awS(k,l,r,m,n) -m.b=q -r.d.U(0,q)}}, -gav4(){var s=this.d.a -return s<=7&&s>=1}, -gYh(){var s=this.d.a -return s<=10&&s>=1}} -A.awT.prototype={ -$0(){var s=this.a -if(s.d===B.Ah){s.d=B.dC -this.b.G0()}}, -$S:0} -A.awR.prototype={ -$1(a){return a.d.a!=null}, -$S:502} -A.awS.prototype={ -$0(){var s=this,r=s.a;--r.a -s.c.d.H(0,s.d.aI()) -if(r.a===0)return A.ey(new A.awQ(s.b,s.e))}, -$S:0} -A.awQ.prototype={ -$0(){var s=this.a -if(!this.b.f.F(0,s))return -s.d=B.i3 -s.a.n()}, -$S:0} -A.awU.prototype={ -$1(a){return a.a===this.a}, -$S:65} -A.pk.prototype={} -A.yb.prototype={ -oP(a){a.zi(this.b,this.a,B.cF,!1)}} -A.ya.prototype={ -oP(a){var s=$.ke() -A.kA(a) -if(!s.a.get(a).cx.a)a.zi(this.a,this.b,B.cG,!1)}} -A.Hx.prototype={ -oP(a){}} -A.Hy.prototype={ -oP(a){var s=this.a,r=s.goD() -if(r)a.zi(this.b,s,B.cF,!1)}} -A.jE.prototype={ -aE(){var s,r,q,p,o,n=this -n.aV() -for(s=n.a.x,r=s.length,q=0;q0?s[r-1]:a -o=A.b([],t.uD) -$label0$1:for(s=b.x,n=b.w,m=a,l=m,k=!1,j=!1;r>=0;){switch(q.d.a){case 1:i=b.md(r-1,A.pH()) -h=i>=0?b.e[i]:a -h=h==null?a:h.a -g=q.a -g.a=b -g.n_() -q.d=B.Xd -n.fC(0,new A.yb(g,h)) -continue $label0$1 -case 2:if(k||l==null){h=q.a -h.vt() -q.d=B.dC -if(l==null)h.vu(a) -continue $label0$1}break -case 3:case 4:case 6:h=p==null?a:p.a -i=b.md(r-1,A.pH()) -g=i>=0?b.e[i]:a -g=g==null?a:g.a -q.apT(l==null,b,h,g) -if(q.d===B.dC)continue $label0$1 -break -case 5:if(!j&&m!=null){q.a.qG(m) -q.f=m}j=!0 -break -case 7:if(!j&&m!=null){q.a.qG(m) -q.f=m}k=!0 -j=!0 -break -case 8:i=b.md(r,A.Ki()) -h=i>=0?b.e[i]:a -if(!q.apS(b,h==null?a:h.a))continue $label0$1 -if(!j){if(m!=null){q.a.qG(m) -q.f=m}m=q.a}h=q.a -i=b.md(r,A.Ki()) -g=i>=0?b.e[i]:a -s.fC(0,new A.ya(h,g==null?a:g.a)) -if(q.d===B.li)continue $label0$1 -k=!0 -break -case 11:break -case 9:h=q.a -g=q.w -if(g==null)g=a -h=h.d.a -if((h.a&30)!==0)A.U(A.a4("Future already completed")) -h.iE(g) -q.w=null -q.d=B.Ae -continue $label0$1 -case 10:if(!j){if(m!=null)q.a.qG(m) -m=a}i=b.md(r,A.Ki()) -h=i>=0?b.e[i]:a -h=h==null?a:h.a -q.d=B.Xb -if(q.x)s.fC(0,new A.Hx(q.a,h)) -continue $label0$1 -case 12:if(!k&&l!=null)break -q.d=B.li -continue $label0$1 -case 13:o.push(B.b.ck(b.e,r)) -q=l -break -case 14:case 15:case 0:break}--r -f=r>0?b.e[r-1]:a -l=q -q=p -p=f}b.a9X() -b.a9Z() -if(b.a.as){e=b.u9(A.pH()) -d=e==null?a:e.a.b.a -if(d!=null&&d!==b.ax){A.aL1(!1,a,A.fo(d,0,a)) -b.ax=d}}for(s=o.length,c=0;c=0;){s=m.e[k] -r=s.d.a -if(!(r<=12&&r>=3)){--k -continue}q=m.aaC(k+1,A.aOH()) -r=q==null -p=r?l:q.a -o=s.r -if(p!=o){if(!((r?l:q.a)==null&&s.f===o)){p=s.a -p.vu(r?l:q.a)}s.r=r?l:q.a}--k -n=m.md(k,A.aOH()) -r=n>=0?m.e[n]:l -p=r==null -o=p?l:r.a -if(o!=s.e){o=s.a -o.vv(p?l:r.a) -s.e=p?l:r.a}}}, -Qm(a,b){a=this.md(a,b) -return a>=0?this.e[a]:null}, -md(a,b){while(!0){if(!(a>=0&&!b.$1(this.e[a])))break;--a}return a}, -aaC(a,b){var s -while(!0){s=this.e -if(!(a?") -q=r.a(this.a.r.$1(s)) -return q==null&&!b?r.a(this.a.w.$1(s)):q}, -Hy(a,b,c){return this.zH(a,!1,b,c)}, -ato(a){var s=A.aM7(a,B.Af,!1,null) -this.e.push(s) -this.G0() -this.F7() -return a.d.a}, -n9(a){return this.ato(a,t.X)}, -wu(a){var s=0,r=A.I(t.y),q,p=this,o,n -var $async$wu=A.D(function(b,c){if(b===1)return A.F(c,r) -while(true)$async$outer:switch(s){case 0:n=p.u9(A.pH()) -if(n==null){q=!1 -s=1 -break}s=3 -return A.K(n.a.jf(),$async$wu) -case 3:o=c -if(p.c==null){q=!0 -s=1 -break}if(n!==p.u9(A.pH())){q=!0 -s=1 -break}switch(o.a){case 2:q=!1 -s=1 -break $async$outer -case 0:p.Ll(a) -q=!0 -s=1 -break $async$outer -case 1:q=!0 -s=1 -break $async$outer}case 1:return A.G(q,r)}}) -return A.H($async$wu,r)}, -YE(){return this.wu(null,t.X)}, -as2(a){return this.wu(a,t.X)}, -Z4(a){var s=this,r=B.b.arx(s.e,A.pH()) -if(r.c){s.a.toString -if(null.$2(r.a,a)&&r.d===B.dC)r.d=B.lj}else{r.w=a -r.d=B.lj}if(r.d===B.lj)s.yL(!1) -s.F7()}, -ex(){return this.Z4(null,t.X)}, -Ll(a){return this.Z4(a,t.X)}, -X6(a){var s,r=this,q=B.b.Kr(r.e,A.aEE(a)),p=r.e[q] -if(p.c&&p.d.a<8){s=r.Qm(q-1,A.Ki()) -s=s==null?null:s.a -r.x.fC(0,new A.ya(a,s))}p.d=B.li -if(!r.ch)r.yL(!1)}, -sUy(a){this.CW=a -this.cx.sl(0,a>0)}, -aog(){var s,r,q,p,o,n,m=this -m.sUy(m.CW+1) -if(m.CW===1){s=m.md(m.e.length-1,A.Ki()) -r=m.e[s].a -q=!r.ga_x()&&s>0?m.Qm(s-1,A.Ki()).a:null -p=m.as -p===$&&A.c() -o=p.length -n=0 -for(;n7){h=i.a -h.c.sl(0,b) -continue}if(i.c){l=l||r.length!==J.b4(p) -if(r.length!==0){g=m==null?b:m.gei() -o.m(0,g,r) -n.F(0,g)}k=i.gei()!=null -h=i.a -f=k?i.gei():b -h.c.sl(0,f) -if(k){r=A.b([],s) -h=c.y -h.toString -p=J.aN(h,i.gei()) -if(p==null)p=B.fW}else{r=B.fW -p=B.fW}m=i -continue}if(k){h=i.b -h=h==null?b:h.gYj() -k=h===!0}else k=!1 -h=i.a -f=k?i.gei():b -h.c.sl(0,f) -if(k){h=i.b -f=h.b -h=f==null?h.b=h.AX():f -if(!l){f=J.X(p) -e=f.gp(p) -d=r.length -l=e<=d||!J.e(f.h(p,d),h)}else l=!0 -B.b.E(r,h)}}l=l||r.length!==J.b4(p) -c.a9H(r,m,o,n) -if(l||n.gc3(n)){c.y=o -c.T()}}, -a9H(a,b,c,d){var s -if(a.length!==0){s=b==null?null:b.gei() -c.m(0,s,a) -d.F(0,s)}}, -a0(a){if(this.y==null)return -this.y=null -this.T()}, -ZZ(a,b){var s,r,q,p,o,n=A.b([],t.uD) -if(this.y!=null)s=a!=null&&a.gei()==null -else s=!0 -if(s)return n -s=this.y -s.toString -r=J.aN(s,a==null?null:a.gei()) -if(r==null)return n -for(s=J.as(r);s.u();){q=A.b21(s.gJ(s)) -p=q.Jd(b) -o=$.aCa() -n.push(new A.k7(p,q,!1,B.lh,o,o,o))}return n}, -vk(){return null}, -ov(a){a.toString -return J.aVm(t.f.a(a),new A.aua(),t.u,t.UX)}, -w6(a){this.y=a}, -p7(){return this.y}, -gqN(a){return this.y!=null}} -A.aua.prototype={ -$2(a,b){return new A.aY(A.au(a),A.cZ(t.j.a(b),!0,t.K),t.qE)}, -$S:506} -A.avD.prototype={ -$2(a,b){if(!a.a)a.H(0,b)}, -$S:43} -A.Hz.prototype={ -bY(){this.cR() -this.cA() -this.ep()}, -n(){var s=this,r=s.aZ$ -if(r!=null)r.H(0,s.ge8()) -s.aZ$=null -s.aP()}} -A.HA.prototype={ -aM(a){this.b2(a) -this.og()}, -bu(){var s,r,q,p,o=this -o.di() -s=o.bP$ -r=o.glQ() -q=o.c -q.toString -q=A.oI(q) -o.fQ$=q -p=o.mq(q,r) -if(r){o.is(s,o.eu$) -o.eu$=!1}if(p)if(s!=null)s.n()}, -n(){var s,r=this -r.fP$.N(0,new A.avD()) -s=r.bP$ -if(s!=null)s.n() -r.bP$=null -r.a4a()}} -A.PV.prototype={ -k(a){var s=A.b([],t.s) -this.dZ(s) -return"Notification("+B.b.bH(s,", ")+")"}, -dZ(a){}} -A.eH.prototype={ -bN(a){return new A.HB(this,B.R,this.$ti.i("HB<1>"))}} -A.HB.prototype={ -YO(a){var s,r=this.f -r.toString -s=this.$ti -s.i("eH<1>").a(r) -if(s.c.b(a))return r.d.$1(a) -return!1}, -oQ(a){}} -A.iL.prototype={} -A.a2c.prototype={} -A.mo.prototype={ -soS(a){var s -if(this.b===a)return -this.b=a -s=this.e -if(s!=null)s.Px()}, -soK(a){if(this.c)return -this.c=!0 -this.e.Px()}, -U(a,b){this.d.U(0,b)}, -H(a,b){this.d.H(0,b)}, -ez(a){var s,r=this.e -r.toString -this.e=null -if(r.c==null)return -B.b.F(r.d,this) -s=$.c6 -if(s.p4$===B.kj)s.p1$.push(new A.ah3(r)) -else r.Rq()}, -cN(){var s=this.f.gO() -if(s!=null)s.Rs()}, -k(a){return"#"+A.aV(this)+"(opaque: "+this.b+"; maintainState: "+this.c+")"}, -$iaa:1} -A.ah3.prototype={ -$1(a){this.a.Rq()}, -$S:3} -A.mY.prototype={ -ae(){return new A.yd(B.i)}} -A.yd.prototype={ -ag9(a,b){var s,r,q,p=this.e -if(p==null)p=this.e=new A.r_(t.oM) -s=p.b===0?null:p.gL(p) -r=b.a -while(!0){q=s==null -if(!(!q&&s.a>r))break -s=s.gZb()}if(q){p.GB(p.c,b,!0) -p.c=b}else s.j1$.GB(s.j2$,b,!1)}, -gui(){var s,r=this,q=r.f -if(q===$){s=r.FD(!1) -r.f!==$&&A.aW() -r.f=s -q=s}return q}, -FD(a){return new A.iy(this.a8x(a),t.bm)}, -a8x(a){var s=this -return function(){var r=a -var q=0,p=2,o,n,m,l -return function $async$FD(b,c,d){if(c===1){o=d -q=p}while(true)switch(q){case 0:l=s.e -if(l==null||l.b===0){q=1 -break}n=r?l.gL(l):l.gM(l) -case 3:if(!(n!=null)){q=4 -break}m=n.d -n=r?n.gZb():n.gj8(n) -q=m!=null?5:6 -break -case 5:q=7 -return b.b=m,1 -case 7:case 6:q=3 -break -case 4:case 1:return 0 -case 2:return b.c=o,3}}}}, -aE(){var s,r=this -r.aV() -r.a.c.d.sl(0,r) -s=r.c.r3(t.im) -s.toString -r.d=s}, -aM(a){var s,r=this -r.b2(a) -if(a.d!==r.a.d){s=r.c.r3(t.im) -s.toString -r.d=s}}, -n(){var s,r=this -r.a.c.d.sl(0,null) -s=r.a.c -if(s.r){s=s.d -s.ag$=$.aO() -s.aj$=0}r.e=null -r.aP()}, -G(a){var s=this.a,r=s.e,q=this.d -q===$&&A.c() -return new A.ta(r,new A.tB(q,this,s.c.a.$1(a),null),null)}, -Rs(){this.ao(new A.avI())}} -A.avI.prototype={ -$0(){}, -$S:0} -A.vH.prototype={ -ae(){return new A.vJ(A.b([],t.wi),null,null,B.i)}} -A.vJ.prototype={ -aE(){this.aV() -this.XX(0,this.a.c)}, -GD(a,b){if(a!=null)return B.b.d9(this.d,a) -return this.d.length}, -XW(a,b,c){b.e=this -this.ao(new A.ah8(this,c,null,b))}, -Ks(a,b){return this.XW(a,b,null)}, -XX(a,b){var s,r=b.length -if(r===0)return -for(s=0;s"),s=new A.bN(s,r),s=new A.bz(s,s.gp(s),r.i("bz")),r=r.i("am.E"),q=!0,p=0;s.u();){o=s.d -if(o==null)o=r.a(o) -if(q){++p -m.push(new A.mY(o,n,!0,o.f)) -q=!o.b||!1}else if(o.c)m.push(new A.mY(o,n,!1,o.f))}s=t.MV -return new A.J1(m.length-p,n.a.d,A.a8(new A.bN(m,s),!1,s.i("am.E")),null)}} -A.ah8.prototype={ -$0(){var s=this,r=s.a -B.b.eY(r.d,r.GD(s.b,s.c),s.d)}, -$S:0} -A.ah7.prototype={ -$0(){var s=this,r=s.a -B.b.fn(r.d,r.GD(s.b,s.c),s.d)}, -$S:0} -A.ah9.prototype={ -$0(){var s,r,q=this,p=q.a,o=p.d -B.b.a0(o) -s=q.b -B.b.K(o,s) -r=q.c -r.ZD(s) -B.b.fn(o,p.GD(q.d,q.e),r)}, -$S:0} -A.ah6.prototype={ -$0(){}, -$S:0} -A.ah5.prototype={ -$0(){}, -$S:0} -A.J1.prototype={ -bN(a){return new A.a0W(A.d5(t.v),this,B.R)}, -aD(a){var s=a.an(t.I) -s.toString -s=new A.pr(s.w,this.e,this.f,A.af(t.O5),0,null,null,A.af(t.T)) -s.aC() -s.K(0,null) -return s}, -aH(a,b){var s=this.e -if(b.a1!==s){b.a1=s -b.W()}s=a.an(t.I) -s.toString -b.sbF(s.w) -s=this.f -if(s!==b.ar){b.ar=s -b.av() -b.bo()}}} -A.a0W.prototype={ -ga_(){return t.im.a(A.ih.prototype.ga_.call(this))}, -ih(a,b){var s,r -this.NE(a,b) -s=a.b -s.toString -t.i9.a(s) -r=this.f -r.toString -s.at=t.KJ.a(t.f1.a(r).c[b.b]).c}, -il(a,b,c){this.NF(a,b,c)}} -A.tC.prototype={ -e7(a){if(!(a.b instanceof A.e2))a.b=new A.e2(null,null,B.e)}, -gka(){return!0}, -bs(){var s,r,q,p,o,n,m,l=this,k="RenderBox was not laid out: ",j=l.tJ(),i=j.ga9(j) -j=l.ga2() -s=A.u0(new A.Q(A.R(1/0,j.a,j.b),A.R(1/0,j.c,j.d))) -j=l.ga_6() -r=j.B -if(r==null)r=j.B=B.bR.P(j.R) -for(j=t.Q,q=t.EP;i.u();){p=i.gJ(i) -o=p.b -o.toString -j.a(o) -if(!o.gCl()){p.bz(s,!0) -n=l.id -if(n==null)n=A.U(A.a4(k+A.u(l).k(0)+"#"+A.aV(l))) -m=p.id -o.a=r.o_(q.a(n.Z(0,m==null?A.U(A.a4(k+A.u(p).k(0)+"#"+A.aV(p))):m)))}else{n=l.id -A.aKt(p,o,n==null?A.U(A.a4(k+A.u(l).k(0)+"#"+A.aV(l))):n,r)}}}, -co(a,b){var s,r,q,p=this.Fg(),o=p.ga9(p) -p=t.Q -s=!1 -while(!0){if(!(!s&&o.u()))break -r=o.gJ(o) -q=r.b -q.toString -s=a.i4(new A.awC(r),p.a(q).a,b)}return s}, -ap(a,b){var s,r,q,p,o,n -for(s=this.tJ(),s=s.ga9(s),r=t.Q,q=b.a,p=b.b;s.u();){o=s.gJ(s) -n=o.b -n.toString -n=r.a(n).a -a.dc(o,new A.k(n.a+q,n.b+p))}}} -A.awC.prototype={ -$2(a,b){return this.a.c2(a,b)}, -$S:9} -A.yA.prototype={} -A.pr.prototype={ -ga_6(){return this}, -e7(a){if(!(a.b instanceof A.yA))a.b=new A.yA(null,null,B.e)}, -ai(a){var s,r,q,p,o -this.a5A(a) -s=this.a3$ -for(r=t.i9;s!=null;){q=s.b -q.toString -r.a(q) -p=q.at -if(p==null)o=null -else{p=p.d.a.gui() -o=new A.je(p.a(),p.$ti.i("je<1>"))}if(o!=null)for(;o.u();)o.b.ai(a) -s=q.ab$}}, -aa(a){var s,r,q,p -this.a5B(0) -s=this.a3$ -for(r=t.i9;s!=null;){q=s.b -q.toString -r.a(q) -p=q.at -if(p!=null)p.d.a.gui().N(0,A.b6x()) -s=q.ab$}}, -fp(){return this.b3(this.gLx())}, -sbF(a){var s=this -if(s.R===a)return -s.R=a -s.B=null -s.W()}, -EP(a){this.az=!0 -this.h0(a) -a.v.W() -this.az=!1}, -Hk(a){this.az=!0 -this.jF(a) -this.az=!1}, -W(){if(this.az)return -this.tz()}, -gnJ(){var s,r,q,p,o=this -if(o.a1===A.aj.prototype.gVw.call(o))return null -s=A.aj.prototype.gap6.call(o,o) -for(r=o.a1,q=t.Q;r>0;--r){p=s.b -p.toString -s=q.a(p).ab$}return s}, -bf(a){return A.rI(this.gnJ(),new A.awG(a))}, -b7(a){return A.rI(this.gnJ(),new A.awE(a))}, -b8(a){return A.rI(this.gnJ(),new A.awF(a))}, -be(a){return A.rI(this.gnJ(),new A.awD(a))}, -eS(a){var s,r,q,p,o=this.gnJ() -for(s=t.Q,r=null;o!=null;){q=o.b -q.toString -s.a(q) -p=o.l1(a) -if(p!=null){p+=q.a.b -r=r!=null?Math.min(r,p):p}o=q.ab$}return r}, -cg(a){return new A.Q(A.R(1/0,a.a,a.b),A.R(1/0,a.c,a.d))}, -tJ(){return new A.iy(this.a7M(),t.bm)}, -a7M(){var s=this -return function(){var r=0,q=1,p,o,n,m,l,k -return function $async$tJ(a,b,c){if(b===1){p=c -r=q}while(true)switch(r){case 0:k=s.gnJ() -o=t.i9 -case 2:if(!(k!=null)){r=3 -break}r=4 -return a.b=k,1 -case 4:n=k.b -n.toString -o.a(n) -m=n.at -if(m==null)l=null -else{m=m.d.a.gui() -l=new A.je(m.a(),m.$ti.i("je<1>"))}r=l!=null?5:6 -break -case 5:case 7:if(!l.u()){r=8 -break}r=9 -return a.b=l.b,1 -case 9:r=7 -break -case 8:case 6:k=n.ab$ -r=2 -break -case 3:return 0 -case 1:return a.c=p,3}}}}, -Fg(){return new A.iy(this.a7L(),t.bm)}, -a7L(){var s=this -return function(){var r=0,q=1,p,o,n,m,l,k,j,i,h -return function $async$Fg(a,b,c){if(b===1){p=c -r=q}while(true)switch(r){case 0:i=s.a1===A.aj.prototype.gVw.call(s)?null:s.d7$ -h=s.dG$-s.a1 -o=t.i9 -case 2:if(!(i!=null)){r=3 -break}n=i.b -n.toString -o.a(n) -m=n.at -if(m==null)l=null -else{m=m.d.a -k=m.r -if(k===$){j=m.FD(!0) -m.r!==$&&A.aW() -m.r=j -k=j}l=new A.je(k.a(),k.$ti.i("je<1>"))}r=l!=null?4:5 -break -case 4:case 6:if(!l.u()){r=7 -break}r=8 -return a.b=l.b,1 -case 8:r=6 -break -case 7:case 5:r=9 -return a.b=i,1 -case 9:--h -i=h<=0?null:n.cn$ -r=2 -break -case 3:return 0 -case 1:return a.c=p,3}}}}, -ap(a,b){var s,r,q=this,p=q.aJ -if(q.ar!==B.m){s=q.cx -s===$&&A.c() -r=q.gq(q) -p.saw(0,a.lP(s,b,new A.y(0,0,0+r.a,0+r.b),A.tC.prototype.gfb.call(q),q.ar,p.a))}else{p.saw(0,null) -q.a4s(a,b)}}, -n(){this.aJ.saw(0,null) -this.h_()}, -b3(a){var s,r,q,p=this.a3$ -for(s=t.i9;p!=null;){a.$1(p) -r=p.b -r.toString -s.a(r) -q=r.at -if(q!=null)q.d.a.gui().N(0,a) -p=r.ab$}}, -fu(a){var s,r,q,p=this.gnJ() -for(s=t.i9;p!=null;){a.$1(p) -r=p.b -r.toString -s.a(r) -q=r.at -if(q!=null)q.d.a.gui().N(0,a) -p=r.ab$}}, -lv(a){var s -switch(this.ar.a){case 0:return null -case 1:case 2:case 3:s=this.gq(this) -return new A.y(0,0,0+s.a,0+s.b)}}} -A.awG.prototype={ -$1(a){return a.aq(B.V,this.a,a.gbj())}, -$S:14} -A.awE.prototype={ -$1(a){return a.aq(B.a_,this.a,a.gbm())}, -$S:14} -A.awF.prototype={ -$1(a){return a.aq(B.ab,this.a,a.gby())}, -$S:14} -A.awD.prototype={ -$1(a){return a.aq(B.aU,this.a,a.gbZ())}, -$S:14} -A.ah4.prototype={ -k(a){return"OverlayPortalController"+(this.a!=null?"":" DETACHED")}} -A.Cu.prototype={ -ae(){return new A.YP(B.i)}} -A.YP.prototype={ -aaw(a,b){var s,r,q=this,p=q.f,o=A.cO("marker",new A.avJ(q,!1)) -if(p!=null)if(q.e){s=o.aQ() -s=p.b===s.r&&p.c===s.f -r=s}else r=!0 -else r=!1 -q.e=!1 -if(r)return p -return q.f=new A.pn(a,o.aQ().r,o.aQ().f)}, -aE(){this.aV() -this.T6(this.a.c)}, -T6(a){var s,r=a.b,q=this.d -if(q!=null)s=r!=null&&r>q -else s=!0 -if(s)this.d=r -a.b=null -a.a=this}, -bu(){this.di() -this.e=!0}, -aM(a){var s,r,q=this -q.b2(a) -if(!q.e){q.a.toString -s=!1}else s=!0 -q.e=s -s=a.c -r=q.a.c -if(s!==r){s.a=null -q.T6(r)}}, -n(){this.a.c.a=null -this.f=null -this.aP()}, -a13(a,b){this.ao(new A.avL(this,b)) -this.f=null}, -oy(){this.ao(new A.avK(this)) -this.f=null}, -G(a){var s,r,q=this,p=null,o=q.d -if(o==null)return new A.ye(p,q.a.e,p,p) -q.a.toString -s=q.aaw(o,!1) -r=q.a -return new A.ye(new A.W8(new A.eT(r.d,p),p),r.e,s,p)}} -A.avJ.prototype={ -$0(){var s=this.a.c -s.toString -return A.b2_(s,this.b)}, -$S:507} -A.avL.prototype={ -$0(){this.a.d=this.b}, -$S:0} -A.avK.prototype={ -$0(){this.a.d=null}, -$S:0} -A.pn.prototype={ -Oq(a){var s,r=this -r.d=a -r.b.ag9(0,r) -s=r.c -s.av() -s.n2() -s.bo()}, -Sj(a){var s,r=this -r.d=null -s=r.b.e -if(s!=null)s.F(0,r) -s=r.c -s.av() -s.n2() -s.bo()}, -k(a){var s=A.aV(this) -return"_OverlayEntryLocation["+s+"] "}} -A.tB.prototype={ -cP(a){return a.f!==this.f||a.r!==this.r}} -A.ye.prototype={ -bN(a){return new A.YO(this,B.R)}, -aD(a){var s=new A.HY(null,A.af(t.T)) -s.aC() -s.saW(null) -return s}} -A.YO.prototype={ -ga_(){return t.SN.a(A.b9.prototype.ga_.call(this))}, -eg(a,b){var s,r=this -r.m6(a,b) -s=r.f -s.toString -t.eU.a(s) -r.p2=r.dV(r.p2,s.d,null) -r.p1=r.dV(r.p1,s.c,s.e)}, -bB(a,b){var s=this -s.kc(0,b) -s.p2=s.dV(s.p2,b.d,null) -s.p1=s.dV(s.p1,b.c,b.e)}, -ie(a){this.p2=null -this.jm(a)}, -b3(a){var s=this.p2,r=this.p1 -if(s!=null)a.$1(s) -if(r!=null)a.$1(r)}, -bY(){var s,r,q -this.y6() -s=this.p1 -if(s!=null){r=t.Kp.a(s.ga_()) -if(r!=null){q=s.d -q.toString -t.Vl.a(q) -q.c.EP(r) -q.d=r}}}, -eH(){var s,r,q=this.p1 -if(q!=null){s=t.Kp.a(q.ga_()) -if(s!=null){r=q.d -r.toString -t.Vl.a(r) -r.c.Hk(s) -r.d=null}}this.a33()}, -ih(a,b){var s=t.SN -if(b!=null){s=s.a(A.b9.prototype.ga_.call(this)) -t.Lj.a(a) -s.v=a -b.Oq(a) -b.c.EP(a)}else s.a(A.b9.prototype.ga_.call(this)).saW(a)}, -il(a,b,c){var s=b.c,r=c.c -if(s!==r){s.Hk(a) -r.EP(a)}if(b.b!==c.b||b.a!==c.a){b.Sj(a) -c.Oq(a)}}, -ja(a,b){if(b==null){t.SN.a(A.b9.prototype.ga_.call(this)).saW(null) -return}t.Lj.a(a) -b.Sj(a) -b.c.Hk(a) -t.SN.a(A.b9.prototype.ga_.call(this)).v=null}} -A.W8.prototype={ -aD(a){var s,r=a.r3(t.SN) -r.toString -s=new A.pq(r,null,A.af(t.T)) -s.aC() -s.saW(null) -return r.v=s}, -aH(a,b){}} -A.pq.prototype={ -tJ(){var s=this.C$ -return s==null?B.C4:A.aYO(1,new A.awm(s),t.x)}, -Fg(){return this.tJ()}, -ga_6(){var s=this.d -return s instanceof A.pr?s:A.U(A.AS(A.j(s)+" of "+this.k(0)+" is not a _RenderTheater"))}, -fp(){this.v.kU(this) -this.NZ()}, -wr(){var s=this -if(s.V)return -s.am=s.V=!0 -s.tz() -s.v.W() -s.V=!1}, -W(){this.am=!0 -this.tz()}, -arC(){var s,r=t.gW.a(this.d) -if(r==null||this.y==null)return -s=t.k.a(A.t.prototype.ga2.call(r)) -this.EA(A.u0(new A.Q(A.R(1/0,s.a,s.b),A.R(1/0,s.c,s.d))),!1)}, -bz(a,b){var s,r=this,q=r.am||!t.k.a(A.t.prototype.ga2.call(r)).j(0,a) -r.br=!0 -r.EA(a,b) -r.am=r.br=!1 -if(q){s=r.d -s.toString -t.im.a(s).Cg(new A.awn(r),t.k)}}, -he(a){return this.bz(a,!1)}, -rw(){var s=t.k.a(A.t.prototype.ga2.call(this)) -this.id=new A.Q(A.R(1/0,s.a,s.b),A.R(1/0,s.c,s.d))}, -bs(){var s=this -if(s.br){s.am=!1 -return}if(s.C$==null){s.am=!1 -return}s.a4t() -s.am=!1}, -d4(a,b){var s,r=a.b -r.toString -s=t.q.a(r).a -b.aK(0,s.a,s.b)}} -A.awm.prototype={ -$1(a){return this.a}, -$S:508} -A.awn.prototype={ -$1(a){var s=this.a -s.am=!0 -s.tz()}, -$S:509} -A.HY.prototype={ -fp(){this.NZ() -var s=this.v -if(s!=null&&s.y!=null)this.kU(s)}, -bs(){this.pz() -var s=this.v -if(s!=null)s.arC()}} -A.YQ.prototype={ -bY(){this.cR() -this.cA() -this.ep()}, -n(){var s=this,r=s.aZ$ -if(r!=null)r.H(0,s.ge8()) -s.aZ$=null -s.aP()}} -A.a2n.prototype={} -A.a2o.prototype={} -A.JW.prototype={ -ai(a){var s,r,q -this.dD(a) -s=this.a3$ -for(r=t.Q;s!=null;){s.ai(a) -q=s.b -q.toString -s=r.a(q).ab$}}, -aa(a){var s,r,q -this.dE(0) -s=this.a3$ -for(r=t.Q;s!=null;){s.aa(0) -q=s.b -q.toString -s=r.a(q).ab$}}} -A.a2u.prototype={} -A.B2.prototype={ -ae(){var s=t.y -return new A.GO(A.l([!1,!0,!0,!0],s,s),null,null,B.i)}, -n3(a){return A.Kk().$1(a)}} -A.GO.prototype={ -aE(){var s,r,q=this -q.aV() -s=q.a -r=s.f -q.d=A.aLR(A.bs(s.e),r,q) -r=q.a -s=r.f -s=A.aLR(A.bs(r.e),s,q) -q.e=s -r=q.d -r.toString -q.f=new A.ty(A.b([r,s],t.Eo))}, -aM(a){var s,r=this -r.b2(a) -if(!a.f.j(0,r.a.f)||A.bs(a.e)!==A.bs(r.a.e)){s=r.d -s.toString -s.saf(0,r.a.f) -s=r.d -s.toString -s.sVi(A.bs(r.a.e)) -s=r.e -s.toString -s.saf(0,r.a.f) -s=r.e -s.toString -s.sVi(A.bs(r.a.e))}}, -Ha(a){var s,r,q,p,o,n,m,l,k,j,i=this -if(!i.a.n3(a))return!1 -s=a.a -r=s.e -if(A.bs(r)!==A.bs(i.a.e))return!1 -q=i.d -q.toString -p=s.c -p.toString -o=s.a -o.toString -q.e=-Math.min(p-o,q.d) -o=i.e -o.toString -s=s.b -s.toString -o.e=-Math.min(s-p,o.d) -if(a instanceof A.kW){s=a.e -if(s<0)n=q -else if(s>0)n=o -else n=null -m=n===q -q=i.c -q.f6(new A.Cv(m,0)) -q=i.w -q.m(0,m,!0) -q.h(0,m).toString -n.d=0 -i.w.h(0,m).toString -q=a.f -if(q!==0){s=n.c -if(s!=null)s.bb(0) -n.c=null -l=A.R(Math.abs(q),100,1e4) -s=n.f -if(n.a===B.i_)r=0.3 -else{r=n.r -r===$&&A.c() -q=r.a -q=r.b.a7(0,q.gl(q)) -r=q}s.a=r -r.toString -s.b=A.R(l*0.00006,r,0.5) -r=n.w -s=n.x -s===$&&A.c() -q=s.a -r.a=s.b.a7(0,q.gl(q)) -r.b=Math.min(0.025+75e-8*l*l,1) -r=n.b -r===$&&A.c() -r.e=A.d2(0,B.d.bE(0.15+l*0.02),0) -r.kD(0,0) -n.as=0.5 -n.a=B.Wz}else{q=a.d -if(q!=null){p=a.b.ga_() -p.toString -t.x.a(p) -k=p.gq(p) -j=p.hR(q.d) -switch(A.bs(r).a){case 0:n.toString -r=k.b -n.Zd(0,Math.abs(s),k.a,A.R(j.b,0,r),r) -break -case 1:n.toString -r=k.a -n.Zd(0,Math.abs(s),k.b,A.R(j.a,0,r),r) -break}}}}else{if(!(a instanceof A.oL&&a.d!=null))s=a instanceof A.jP&&a.d!=null -else s=!0 -if(s){if(q.a===B.i0)q.nO(B.dW) -s=i.e -if(s.a===B.i0)s.nO(B.dW)}}i.r=A.u(a) -return!1}, -n(){this.d.n() -this.e.n() -this.a5n()}, -G(a){var s=this,r=null,q=s.a,p=s.d,o=s.e,n=q.e,m=s.f -return new A.eH(s.gH9(),new A.ir(A.kp(new A.ir(q.w,r),new A.X7(p,o,n,m),r,r,B.o),r),r,t.WA)}} -A.xS.prototype={ -I(){return"_GlowState."+this.b}} -A.GN.prototype={ -saf(a,b){if(this.ax.j(0,b))return -this.ax=b -this.T()}, -sVi(a){if(this.ay===a)return -this.ay=a -this.T()}, -n(){var s=this,r=s.b -r===$&&A.c() -r.n() -r=s.y -r===$&&A.c() -r.w.d5$.F(0,r) -r.O2() -r=s.c -if(r!=null)r.bb(0) -s.d3()}, -Zd(a,b,c,d,e){var s,r,q,p=this,o=p.c -if(o!=null)o.bb(0) -p.at=p.at+b/200 -o=p.f -s=p.r -s===$&&A.c() -r=s.b -s=s.a -o.a=r.a7(0,s.gl(s)) -o.b=Math.min(r.a7(0,s.gl(s))+b/c*0.8,0.5) -q=Math.min(c,e*0.20096189432249995) -s=p.w -r=p.x -r===$&&A.c() -o=r.b -r=r.a -s.a=o.a7(0,r.gl(r)) -s.b=Math.max(1-1/(0.7*Math.sqrt(p.at*q)),A.lE(o.a7(0,r.gl(r)))) -r=d/e -p.Q=r -if(r!==p.as){o=p.y -o===$&&A.c() -if(!o.garq())o.tl(0)}else{o=p.y -o===$&&A.c() -o.ff(0) -p.z=null}o=p.b -o===$&&A.c() -o.e=B.cB -if(p.a!==B.i0){o.kD(0,0) -p.a=B.i0}else{o=o.r -if(!(o!=null&&o.a!=null))p.T()}p.c=A.cM(B.cB,new A.au_(p))}, -Fb(a){var s=this -if(a!==B.W)return -switch(s.a.a){case 1:s.nO(B.dW) -break -case 3:s.a=B.i_ -s.at=0 -break -case 2:case 0:break}}, -nO(a){var s,r,q=this,p=q.a -if(p===B.A7||p===B.i_)return -p=q.c -if(p!=null)p.bb(0) -q.c=null -p=q.f -s=q.r -s===$&&A.c() -r=s.a -p.a=s.b.a7(0,r.gl(r)) -p.b=0 -p=q.w -r=q.x -r===$&&A.c() -s=r.a -p.a=r.b.a7(0,s.gl(s)) -p.b=0 -p=q.b -p===$&&A.c() -p.e=a -p.kD(0,0) -q.a=B.A7}, -ak5(a){var s,r=this,q=r.z -if(q!=null){q=q.a -s=r.Q -r.as=s-(s-r.as)*Math.pow(2,-(a.a-q)/$.aQm().a) -r.T()}if(A.Kj(r.Q,r.as,0.001)){q=r.y -q===$&&A.c() -q.ff(0) -r.z=null}else r.z=a}, -ap(a,b){var s,r,q,p,o,n,m,l,k,j=this,i=j.r -i===$&&A.c() -s=i.a -if(J.e(i.b.a7(0,s.gl(s)),0))return -s=b.a -r=b.b -q=s>r?r/s:1 -p=s*3/2 -o=Math.min(r,s*0.20096189432249995) -r=j.x -r===$&&A.c() -n=r.a -n=r.b.a7(0,n.gl(n)) -r=j.as -m=$.ad().b1() -l=j.ax -k=i.a -m.saf(0,A.ao(B.d.bE(255*i.b.a7(0,k.gl(k))),l.gl(l)>>>16&255,l.gl(l)>>>8&255,l.gl(l)&255)) -a.cQ(0) -a.aK(0,0,j.d+j.e) -a.f2(0,1,n*q) -a.mw(new A.y(0,0,0+s,0+o)) -a.iZ(new A.k(s/2*(0.5+r),o-p),p,m) -a.cl(0)}, -k(a){return"_GlowController(color: "+this.ax.k(0)+", axis: "+this.ay.b+")"}} -A.au_.prototype={ -$0(){return this.a.nO(B.ft)}, -$S:0} -A.X7.prototype={ -RU(a,b,c,d,e){var s -if(c==null)return -switch(A.lD(d,e).a){case 0:c.ap(a,b) -break -case 2:a.cQ(0) -a.aK(0,0,b.b) -a.f2(0,1,-1) -c.ap(a,b) -a.cl(0) -break -case 3:a.cQ(0) -a.ne(0,1.5707963267948966) -a.f2(0,1,-1) -c.ap(a,new A.Q(b.b,b.a)) -a.cl(0) -break -case 1:a.cQ(0) -s=b.a -a.aK(0,s,0) -a.ne(0,1.5707963267948966) -c.ap(a,new A.Q(b.b,s)) -a.cl(0) -break}}, -ap(a,b){var s=this,r=s.d -s.RU(a,b,s.b,r,B.nx) -s.RU(a,b,s.c,r,B.fH)}, -eE(a){return a.b!=this.b||a.c!=this.c}, -k(a){return"_GlowingOverscrollIndicatorPainter("+A.j(this.b)+", "+A.j(this.c)+")"}} -A.a0a.prototype={ -I(){return"_StretchDirection."+this.b}} -A.Ew.prototype={ -ae(){return new A.IN(null,null,B.i)}, -n3(a){return A.Kk().$1(a)}} -A.IN.prototype={ -gnS(){var s,r,q,p,o,n,m=this,l=null,k=m.d -if(k===$){s=t.Y -r=new A.ay(0,0,s) -q=new A.IM(r,B.lp,B.cW,$.aO()) -p=A.bO(l,l,l,l,m) -p.bO() -o=p.d6$ -o.b=!0 -o.a.push(q.gFa()) -q.a!==$&&A.cQ() -q.a=p -n=A.ci(B.cc,p,l) -n.a.U(0,q.gcJ()) -t.o.a(n) -q.b!==$&&A.cQ() -q.b=new A.aX(n,r,s.i("aX")) -m.d!==$&&A.aW() -m.d=q -k=q}return k}, -Ha(a){var s,r,q,p,o,n,m,l=this -if(!l.a.n3(a))return!1 -s=a.a -if(A.bs(s.e)!==A.bs(l.a.c))return!1 -if(a instanceof A.kW){l.f=a -J.Y(l.e) -r=a.e -q=l.c -q.f6(new A.Cv(r<0,0)) -l.w=!0 -r=l.r+=r -q=a.f -if(q!==0){s=l.gnS() -r=l.r -p=A.R(Math.abs(q),1,1e4) -q=s.c -o=s.b -o===$&&A.c() -n=o.a -q.a=o.b.a7(0,n.gl(n)) -q.b=Math.min(0.016+1.01/p,1) -q=s.a -q===$&&A.c() -q.e=A.d2(0,B.d.bE(p*0.02),0) -q.kD(0,0) -s.d=B.Xi -s.f=r>0?B.cW:B.Aj}else if(a.d!=null){s=s.d -s.toString -m=A.R(Math.abs(r)/s,0,1) -l.gnS().atn(0,m,l.r)}}else if(a instanceof A.oL||a instanceof A.jP){l.r=0 -s=l.gnS() -if(s.d===B.lq)s.nO(B.j1)}l.e=a -return!1}, -aab(a){switch(this.a.c.a){case 0:return a===B.cW?B.lv:B.lu -case 1:return a===B.cW?B.dE:B.cy -case 2:return a===B.cW?B.lu:B.lv -case 3:return a===B.cW?B.cy:B.dE}}, -n(){var s=this.gnS(),r=s.a -r===$&&A.c() -r.n() -s.d3() -this.a5I()}, -G(a){var s={},r=A.bD(a,B.i1,t.w).w -s.a=null -return new A.eH(this.gH9(),A.jn(this.gnS(),new A.axJ(s,this,r.a),null),null,t.WA)}} -A.axJ.prototype={ -$2(a,b){var s,r,q,p,o,n,m=this,l=m.b,k=l.gnS().b -k===$&&A.c() -s=k.a -s=k.b.a7(0,s.gl(s)) -switch(A.bs(l.a.c).a){case 0:r=1+s -m.a.a=m.c.a -q=1 -break -case 1:q=1+s -m.a.a=m.c.b -r=1 -break -default:r=1 -q=1}p=l.aab(l.gnS().f) -k=l.f -if(k==null)o=null -else{k=k.a.d -k.toString -o=k}if(o==null)o=m.a.a -k=A.vy(r,q,1) -l=l.a -n=A.TP(p,l.f,k,!0) -return A.M_(n,s!==0&&o!==m.a.a?l.e:B.m)}, -$S:511} -A.yu.prototype={ -I(){return"_StretchState."+this.b}} -A.IM.prototype={ -atn(a,b,c){var s,r,q,p=this,o=c>0?B.cW:B.Aj -if(p.f!==o&&p.d===B.lr)return -p.f=o -p.e=b -s=p.c -r=p.b -r===$&&A.c() -q=r.a -s.a=r.b.a7(0,q.gl(q)) -q=p.e -s.b=0.016*q+0.016*(1-Math.exp(-q*8.237217661997105)) -q=p.a -q===$&&A.c() -q.e=B.j1 -if(p.d!==B.lq){q.kD(0,0) -p.d=B.lq}else{s=q.r -if(!(s!=null&&s.a!=null))p.T()}}, -Fb(a){var s=this -if(a!==B.W)return -switch(s.d.a){case 1:s.nO(B.j1) -break -case 3:s.d=B.lp -s.e=0 -break -case 2:case 0:break}}, -nO(a){var s,r,q=this,p=q.d -if(p===B.lr||p===B.lp)return -p=q.c -s=q.b -s===$&&A.c() -r=s.a -p.a=s.b.a7(0,r.gl(r)) -p.b=0 -p=q.a -p===$&&A.c() -p.e=a -p.kD(0,0) -q.d=B.lr}, -n(){var s=this.a -s===$&&A.c() -s.n() -this.d3()}, -k(a){return"_StretchController()"}} -A.Cv.prototype={ -dZ(a){this.a4e(a) -a.push("side: "+(this.a?"leading edge":"trailing edge"))}} -A.HF.prototype={ -dZ(a){var s,r -this.Ez(a) -s=this.hE$ -r=s===0?"local":"remote" -a.push("depth: "+s+" ("+r+")")}} -A.JK.prototype={ -bY(){this.cR() -this.cA() -this.ep()}, -n(){var s=this,r=s.aZ$ -if(r!=null)r.H(0,s.ge8()) -s.aZ$=null -s.aP()}} -A.K_.prototype={ -bY(){this.cR() -this.cA() -this.ep()}, -n(){var s=this,r=s.aZ$ -if(r!=null)r.H(0,s.ge8()) -s.aZ$=null -s.aP()}} -A.II.prototype={ -j(a,b){if(b==null)return!1 -if(J.Y(b)!==A.u(this))return!1 -return b instanceof A.II&&A.d_(b.a,this.a)}, -gA(a){return A.cn(this.a)}, -k(a){return"StorageEntryIdentifier("+B.b.bH(this.a,":")+")"}} -A.rm.prototype={ -Ow(a){var s=A.b([],t.g8) -if(A.aJN(a,s))a.je(new A.aha(s)) -return s}, -aty(a){var s -if(this.a==null)return null -s=this.Ow(a) -return s.length!==0?this.a.h(0,new A.II(s)):null}} -A.aha.prototype={ -$1(a){return A.aJN(a,this.a)}, -$S:18} -A.vK.prototype={ -G(a){return this.c}} -A.kX.prototype={ -goS(){return!0}, -go4(){return!1}, -AR(a){return a instanceof A.kX}, -Vs(a){return a instanceof A.kX}} -A.afE.prototype={} -A.ahI.prototype={} -A.MC.prototype={ -GV(a){return this.aeV(a)}, -aeV(a){var s=0,r=A.I(t.H),q,p=this,o,n,m -var $async$GV=A.D(function(b,c){if(b===1)return A.F(c,r) -while(true)switch(s){case 0:n=A.ef(a.b) -m=p.a -if(!m.ak(0,n)){s=1 -break}m=m.h(0,n) -m.toString -o=a.a -if(o==="Menu.selectedCallback"){m.gavA().$0() -m.gasK() -o=$.av.ah$.f.c.e -o.toString -A.aVP(o,m.gasK(),t.vz)}else if(o==="Menu.opened")m.gavz(m).$0() -else if(o==="Menu.closed")m.gavy(m).$0() -case 1:return A.G(q,r)}}) -return A.H($async$GV,r)}} -A.w4.prototype={ -cP(a){return this.f!=a.f}} -A.oH.prototype={ -ae(){return new A.a_h(null,A.m(t.yb,t.M),null,!0,null,B.i)}} -A.a_h.prototype={ -gei(){return this.a.d}, -is(a,b){}, -G(a){return A.U0(this.bP$,this.a.c)}} -A.Fm.prototype={ -cP(a){return a.f!=this.f}} -A.Dy.prototype={ -ae(){return new A.I9(B.i)}} -A.I9.prototype={ -bu(){var s,r=this -r.di() -s=r.c -s.toString -r.r=A.oI(s) -r.GP() -if(r.d==null){r.a.toString -r.d=!1}}, -aM(a){this.b2(a) -this.GP()}, -gRh(){this.a.toString -return!1}, -GP(){var s,r=this -if(r.gRh()&&!r.w){r.w=!0;++$.RK.b9$ -s=$.fH.fm$ -s===$&&A.c() -s.gau6().bQ(0,new A.awL(r),t.P)}}, -ahG(){var s,r=this -r.e=!1 -r.f=null -s=$.fH.fm$ -s===$&&A.c() -s.H(0,r.gHp()) -r.GP()}, -n(){if(this.e){var s=$.fH.fm$ -s===$&&A.c() -s.H(0,this.gHp())}this.aP()}, -G(a){var s,r,q=this,p=q.d -p.toString -if(p&&q.gRh())return B.ai -p=q.r -if(p==null)p=q.f -s=q.a -r=s.d -return A.U0(p,new A.oH(s.c,r,null))}} -A.awL.prototype={ -$1(a){var s,r=this.a -r.w=!1 -if(r.c!=null){s=$.fH.fm$ -s===$&&A.c() -s.U(0,r.gHp()) -r.ao(new A.awK(r,a))}$.RK.V4()}, -$S:512} -A.awK.prototype={ -$0(){var s=this.a -s.f=this.b -s.e=!0 -s.d=!1}, -$S:0} -A.dN.prototype={ -gqN(a){return!0}, -n(){var s=this,r=s.c -if(r!=null)r.aks(s) -s.d3() -s.a=!0}} -A.iR.prototype={ -Jy(a){}, -nd(a,b){var s,r,q=this,p=q.bP$ -p=p==null?null:J.yV(p.gmj(),b) -s=p===!0 -r=s?a.ov(J.aN(q.bP$.gmj(),b)):a.vk() -if(a.b==null){a.b=b -a.c=q -p=new A.ajU(q,a) -a.U(0,p) -q.fP$.m(0,a,p)}a.w6(r) -if(!s&&a.gqN(a)&&q.bP$!=null)q.I5(a)}, -og(){var s,r,q=this -if(q.fQ$!=null){s=q.bP$ -s=s==null?null:s.e -s=s==q.gei()||q.glQ()}else s=!0 -if(s)return -r=q.bP$ -if(q.mq(q.fQ$,!1))if(r!=null)r.n()}, -glQ(){var s,r,q=this -if(q.eu$)return!0 -if(q.gei()==null)return!1 -s=q.c -s.toString -r=A.oI(s) -if(r!=q.fQ$){if(r==null)s=null -else{s=r.c -s=s==null?null:s.d -s=s===!0}s=s===!0}else s=!1 -return s}, -mq(a,b){var s,r,q=this -if(q.gei()==null||a==null)return q.T2(null,b) -if(b||q.bP$==null){s=q.gei() -s.toString -return q.T2(a.amI(s,q),b)}s=q.bP$ -s.toString -r=q.gei() -r.toString -s.atP(r) -r=q.bP$ -r.toString -a.h0(r) -return!1}, -T2(a,b){var s,r=this,q=r.bP$ -if(a==q)return!1 -r.bP$=a -if(!b){if(a!=null){s=r.fP$ -new A.bm(s,A.p(s).i("bm<1>")).N(0,r.gakM())}r.Jy(q)}return!0}, -I5(a){var s,r=a.gqN(a),q=this.bP$ -if(r){if(q!=null){r=a.b -r.toString -s=a.p7() -if(!J.e(J.aN(q.gmj(),r),s)||!J.yV(q.gmj(),r)){J.hv(q.gmj(),r,s) -q.pT()}}}else if(q!=null){r=a.b -r.toString -q.atI(0,r,t.K)}}, -aks(a){var s=this.fP$.F(0,a) -s.toString -a.H(0,s) -a.c=a.b=null}} -A.ajU.prototype={ -$0(){var s=this.a -if(s.bP$==null)return -s.I5(this.b)}, -$S:0} -A.azy.prototype={ -$2(a,b){if(!a.a)a.H(0,b)}, -$S:43} -A.a2v.prototype={ -aM(a){this.b2(a) -this.og()}, -bu(){var s,r,q,p,o=this -o.di() -s=o.bP$ -r=o.glQ() -q=o.c -q.toString -q=A.oI(q) -o.fQ$=q -p=o.mq(q,r) -if(r){o.is(s,o.eu$) -o.eu$=!1}if(p)if(s!=null)s.n()}, -n(){var s,r=this -r.fP$.N(0,new A.azy()) -s=r.bP$ -if(s!=null)s.n() -r.bP$=null -r.aP()}} -A.d7.prototype={ -sl(a,b){var s=this.y -if(b==null?s!=null:b!==s){this.y=b -this.JB(s)}}, -w6(a){this.y=a}} -A.k6.prototype={ -vk(){return this.cy}, -JB(a){this.T()}, -ov(a){return A.p(this).i("k6.T").a(a)}, -p7(){var s=this.y -return s==null?A.p(this).i("d7.T").a(s):s}} -A.I8.prototype={ -ov(a){return this.a4w(a)}, -p7(){var s=this.a4x() -s.toString -return s}} -A.Du.prototype={} -A.Dt.prototype={} -A.rJ.prototype={ -w6(a){var s=this,r=s.y -if(r!=null)r.H(0,s.gcJ()) -s.y=a -a.U(0,s.gcJ())}, -n(){this.a3g() -var s=this.y -if(s!=null)s.H(0,this.gcJ())}} -A.wl.prototype={ -w6(a){this.yB() -this.a3f(a)}, -n(){this.yB() -this.EH()}, -yB(){var s=this.y -if(s!=null)A.ey(s.gcL())}} -A.azz.prototype={ -$2(a,b){if(!a.a)a.H(0,b)}, -$S:43} -A.rM.prototype={ -glW(){return this.b}} -A.RS.prototype={ -ae(){return new A.ym(new A.a_e($.aO()),null,A.m(t.yb,t.M),null,!0,null,B.i,this.$ti.i("ym<1>"))}} -A.RQ.prototype={ -I(){return"RouteInformationReportingType."+this.b}} -A.ym.prototype={ -gei(){return this.a.r}, -aE(){var s,r=this -r.aV() -s=r.a.c -if(s!=null)s.U(0,r.gz0()) -r.a.f.alB(r.gGi()) -r.a.e.U(0,r.gGo())}, -is(a,b){var s,r,q=this,p=q.f -q.nd(p,"route") -s=p.y -r=s==null -if((r?A.p(p).i("d7.T").a(s):s)!=null){p=r?A.p(p).i("d7.T").a(s):s -p.toString -q.zw(p,new A.ax0(q))}else{p=q.a.c -if(p!=null)q.zw(p.a,new A.ax1(q))}}, -aig(){var s=this -if(s.w||s.a.c==null)return -s.w=!0 -$.c6.p1$.push(s.gahK())}, -ahL(a){var s,r,q,p,o=this -o.w=!1 -s=o.f -r=s.y -q=r==null -if((q?A.p(s).i("d7.T").a(r):r)!=null){s=q?A.p(s).i("d7.T").a(r):r -s.toString -r=o.a.c -r.toString -q=o.e -q.toString -if(q!==B.NO)p=q===B.kh&&r.b.glW().j(0,s.glW()) -else p=!0 -B.hc.kI("selectMultiEntryHistory",t.H) -A.aL1(p,s.c,s.glW()) -r.b=r.a=s}o.e=B.kh}, -ahW(){this.a.e.gavr() -this.a.toString -return null}, -zg(){var s=this -s.f.sl(0,s.ahW()) -if(s.e==null)s.e=B.kh -s.aig()}, -bu(){var s,r=this -r.r=!0 -r.a5C() -s=r.a.c -if(s!=null&&r.r)r.zw(s.a,new A.ax_(r)) -r.r=!1 -r.zg()}, -aM(a){var s,r,q,p=this -p.a5D(a) -s=p.a -r=a.c -q=s.c==r -if(q)s.f===a.f -p.d=new A.O() -if(!q){s=r==null -if(!s)r.H(0,p.gz0()) -q=p.a.c -if(q!=null)q.U(0,p.gz0()) -s=s?null:r.a -r=p.a.c -if(s!=(r==null?null:r.a))p.QS()}s=a.f -if(p.a.f!==s){r=p.gGi() -s.atJ(r) -p.a.f.alB(r)}p.a.toString -s=p.gGo() -a.e.H(0,s) -p.a.e.U(0,s) -p.zg()}, -n(){var s=this,r=s.a.c -if(r!=null)r.H(0,s.gz0()) -s.a.f.atJ(s.gGi()) -s.a.e.H(0,s.gGo()) -s.d=null -s.a5E()}, -zw(a,b){var s,r,q=this -q.r=!1 -q.d=new A.O() -s=q.a.d -s.toString -r=q.c -r.toString -s.avB(a,r).bQ(0,q.ahf(q.d,b),t.H)}, -ahf(a,b){return new A.awY(this,a,b)}, -QS(){var s=this -s.r=!0 -s.zw(s.a.c.a,new A.awV(s))}, -aaU(){var s=this -s.d=new A.O() -return s.a.e.avC().bQ(0,s.acD(s.d),t.y)}, -acD(a){return new A.awW(this,a)}, -Sz(){this.ao(new A.awZ()) -this.zg() -return new A.cW(null,t.b6)}, -acE(){this.ao(new A.awX()) -this.zg()}, -G(a){var s=this.bP$,r=this.a,q=r.c,p=r.f,o=r.d -r=r.e -return A.U0(s,new A.a_m(q,p,o,r,this,new A.eT(r.gavp(),null),null))}} -A.ax0.prototype={ -$0(){return this.a.a.e.gavg()}, -$S(){return this.a.$ti.i("at<~>(1)()")}} -A.ax1.prototype={ -$0(){return this.a.a.e.gavf()}, -$S(){return this.a.$ti.i("at<~>(1)()")}} -A.ax_.prototype={ -$0(){return this.a.a.e.ga0O()}, -$S(){return this.a.$ti.i("at<~>(1)()")}} -A.awY.prototype={ -$1(a){var s=0,r=A.I(t.H),q,p=this,o,n -var $async$$1=A.D(function(b,c){if(b===1)return A.F(c,r) -while(true)switch(s){case 0:o=p.a -n=p.b -if(o.d!=n){s=1 -break}s=3 -return A.K(p.c.$0().$1(a),$async$$1) -case 3:if(o.d==n)o.Sz() -case 1:return A.G(q,r)}}) -return A.H($async$$1,r)}, -$S(){return this.a.$ti.i("at<~>(1)")}} -A.awV.prototype={ -$0(){return this.a.a.e.ga0O()}, -$S(){return this.a.$ti.i("at<~>(1)()")}} -A.awW.prototype={ -$1(a){var s=this.a -if(this.b!=s.d)return new A.cW(!0,t.d9) -s.Sz() -return new A.cW(a,t.d9)}, -$S:514} -A.awZ.prototype={ -$0(){}, -$S:0} -A.awX.prototype={ -$0(){}, -$S:0} -A.a_m.prototype={ -cP(a){if(this.f==a.f)this.r===a.r -return!0}} -A.a_e.prototype={ -vk(){return null}, -JB(a){this.T()}, -ov(a){var s,r -if(a==null)return null -t.W.a(a) -s=J.bR(a) -r=A.au(s.gM(a)) -if(r==null)return null -return new A.rM(A.fo(r,0,null),s.gL(a))}, -p7(){var s,r=this,q=r.y,p=q==null -if((p?A.p(r).i("d7.T").a(q):q)==null)q=null -else{q=(p?A.p(r).i("d7.T").a(q):q).glW().k(0) -s=r.y -q=[q,(s==null?A.p(r).i("d7.T").a(s):s).c]}return q}} -A.yF.prototype={ -aM(a){this.b2(a) -this.og()}, -bu(){var s,r,q,p,o=this -o.di() -s=o.bP$ -r=o.glQ() -q=o.c -q.toString -q=A.oI(q) -o.fQ$=q -p=o.mq(q,r) -if(r){o.is(s,o.eu$) -o.eu$=!1}if(p)if(s!=null)s.n()}, -n(){var s,r=this -r.fP$.N(0,new A.azz()) -s=r.bP$ -if(s!=null)s.n() -r.bP$=null -r.aP()}} -A.vI.prototype={ -gD_(){return this.e}, -n_(){var s,r=this,q=A.rl(r.ga77(),!1) -r.ok=q -r.goK() -s=A.rl(r.ga79(),!0) -r.p2=s -B.b.K(r.e,A.b([q,s],t.wi)) -r.a3t()}, -oe(a){var s,r=this -r.a3o(a) -s=r.at.Q -s===$&&A.c() -if(s===B.H&&!r.Q)r.a.X6(r) -return!0}, -n(){var s,r,q,p,o -for(s=this.e,r=s.length,q=0;q"))}} -A.k4.prototype={ -aE(){var s,r,q=this -q.aV() -s=A.b([],t.Eo) -r=q.a.c.go -if(r!=null)s.push(r) -r=q.a.c.id -if(r!=null)s.push(r) -q.e=new A.ty(s)}, -aM(a){this.b2(a) -this.U9()}, -bu(){this.di() -this.d=null -this.U9()}, -U9(){var s,r,q=this.a.c,p=q.fx -if(!(p!=null)){q.a.a.toString -p=B.UA}s=this.f -s.dy=p -if(q.goD()){this.a.c.a.a.toString -r=!0}else r=!1 -if(r){r=q.a.y.gh6() -if(r!=null)r.ta(s)}}, -aa4(){this.ao(new A.avq(this))}, -n(){this.f.n() -this.aP()}, -gTa(){var s=this.a.c.go -if((s==null?null:s.gb4(s))!==B.aN){s=this.a.c.a -s=s==null?null:s.cx.a -s=s===!0}else s=!0 -return s}, -G(a){var s,r,q=this,p=null,o=q.a.c,n=o.goD(),m=q.a.c -if(!m.gKl()){m=m.kx$ -m=m!=null&&m.length!==0}else m=!0 -s=q.a.c -s=s.gKl()||s.oq$>0 -r=q.a.c -return A.jn(o.c,new A.avu(q),new A.Hr(n,m,s,o,new A.vG(r.fy,new A.vK(new A.eT(new A.avv(q),p),r.k4,p),p),p))}} -A.avq.prototype={ -$0(){this.a.d=null}, -$S:0} -A.avu.prototype={ -$2(a,b){var s=this.a.a.c.c.a -b.toString -return new A.oH(b,s,null)}, -$S:515} -A.avv.prototype={ -$1(a){var s,r=null,q=A.l([B.kV,new A.Wh(a,new A.b7(A.b([],t.g),t.d))],t.A,t.od),p=this.a,o=p.e -o===$&&A.c() -s=p.d -if(s==null)s=p.d=new A.ir(new A.eT(new A.avs(p),r),p.a.c.k3) -return A.pM(q,A.aK4(A.aDb(!1,new A.ir(A.jn(o,new A.avt(p),s),r),r,r,p.f),p.r))}, -$S:516} -A.avt.prototype={ -$2(a,b){var s,r,q=this.a,p=q.a.c,o=p.go -o.toString -s=p.id -s.toString -r=p.a -r=r==null?null:r.cx -if(r==null)r=A.eu(!1,t.y) -return p.AQ(a,o,s,A.jn(r,new A.avr(q),b))}, -$S:97} -A.avr.prototype={ -$2(a,b){var s=this.a,r=s.gTa() -s.f.sdl(!r) -return A.v5(b,r,null)}, -$S:517} -A.avs.prototype={ -$1(a){var s,r=this.a.a.c,q=r.go -q.toString -s=r.id -s.toString -return r.uY(a,q,s)}, -$S:7} -A.dL.prototype={ -ao(a){var s,r=this.k2 -if(r.gO()!=null){r=r.gO() -if(r.a.c.goD())if(!r.gTa()){r.a.c.a.a.toString -s=!0}else s=!1 -else s=!1 -if(s){s=r.a.c.a.y.gh6() -if(s!=null)s.ta(r.f)}r.ao(a)}else a.$0()}, -AQ(a,b,c,d){return d}, -n_(){var s=this -s.a3S() -s.go=A.oA(A.ec.prototype.gjx.call(s,s)) -s.id=A.oA(A.ec.prototype.gMK.call(s))}, -vw(){var s,r=this,q=r.k2 -if(q.gO()!=null){r.a.a.toString -s=!0}else s=!1 -if(s){s=r.a.y.gh6() -if(s!=null)s.ta(q.gO().f)}return r.a3R()}, -vt(){var s,r=this,q=r.k2 -if(q.gO()!=null){r.a.a.toString -s=!0}else s=!1 -if(s){s=r.a.y.gh6() -if(s!=null)s.ta(q.gO().f)}r.a3P()}, -sCG(a){var s,r=this -if(r.fy===a)return -r.ao(new A.ag6(r,a)) -s=r.go -s.toString -s.sba(0,r.fy?B.dH:A.ec.prototype.gjx.call(r,r)) -s=r.id -s.toString -s.sba(0,r.fy?B.bS:A.ec.prototype.gMK.call(r)) -r.v1()}, -jf(){var s=0,r=A.I(t.oj),q,p=this,o,n,m -var $async$jf=A.D(function(a,b){if(a===1)return A.F(b,r) -while(true)switch(s){case 0:p.k2.gO() -o=A.a8(p.k1,!0,t.Ev),n=o.length,m=0 -case 3:if(!(m>>24&255)!==0&&!n.fy){s=n.go -s.toString -r=n.gmt().a -r=A.ao(0,r>>>16&255,r>>>8&255,r&255) -q=n.gmt() -p=t.IC.i("f8") -t.o.a(s) -o=new A.KN(n.go4(),n.gqn(),!0,new A.aX(s,new A.f8(new A.eX(B.aD),new A.hy(r,q),p),p.i("aX")),m)}else o=A.aDH(!0,m,m,n.go4(),m,n.gqn(),m) -s=n.go -if(s.gb4(s)!==B.aN){s=n.go -s=s.gb4(s)===B.H}else s=!0 -o=A.v5(o,s,m) -s=n.go4() -if(s)o=new A.bL(A.c7(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,B.uv,m,m,m,m,m,m),!1,!1,!1,!1,o,m) -return o}, -a7a(a){var s=this,r=null,q=s.p1 -if(q==null)q=s.p1=new A.bL(A.c7(r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,B.MI,r,r,r,r,r,r),!1,!1,!1,!1,new A.y9(s,s.k2,A.p(s).i("y9")),r) -return q}, -k(a){return"ModalRoute("+this.b.k(0)+", animation: "+A.j(this.as)+")"}} -A.ag6.prototype={ -$0(){this.a.fy=this.b}, -$S:0} -A.ag5.prototype={ -$0(){}, -$S:0} -A.CQ.prototype={ -goS(){return!1}, -goK(){return!0}} -A.D_.prototype={ -go4(){return!0}, -gqn(){return this.c1}, -gmt(){return this.b6}, -grM(a){return this.dq}, -uY(a,b,c){var s=null,r=this.ah.$3(a,b,c) -return new A.bL(A.c7(s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,!0,s,s,s,s,s,s,s,s,s),!1,!0,!1,!1,new A.MR(this.v,r,s),s)}, -AQ(a,b,c,d){return this.dI.$4(a,b,c,d)}} -A.y8.prototype={ -jf(){var s=0,r=A.I(t.oj),q,p=this,o -var $async$jf=A.D(function(a,b){if(a===1)return A.F(b,r) -while(true)switch(s){case 0:o=p.kx$ -if(o!=null&&o.length!==0){q=B.yb -s=1 -break}q=p.a3u() -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$jf,r)}, -oe(a){var s,r,q=this,p=q.kx$ -if(p!=null&&p.length!==0){s=p.pop() -s.b=null -s.avk() -r=s.c&&--q.oq$===0 -if(q.kx$.length===0||r)q.v1() -return!1}q.a3Q(a) -return!0}} -A.RX.prototype={ -G(a){var s,r,q,p=this,o=A.bD(a,B.bo,t.w).w.f,n=p.r,m=Math.max(o.a,n.a),l=p.d,k=l?o.b:0 -k=Math.max(k,n.b) -s=Math.max(o.c,n.c) -r=p.f -q=r?o.d:0 -return new A.bY(new A.aF(m,k,s,Math.max(q,n.d)),A.aDD(p.x,a,r,!0,!0,l),null)}} -A.S2.prototype={ -ZW(){}, -WC(a,b){if(b!=null)b.f6(new A.DP(null,a,b,0))}, -WD(a,b,c){b.f6(A.aE3(b,null,null,a,c))}, -Bn(a,b,c){b.f6(new A.kW(null,c,0,a,b,0))}, -WB(a,b){b.f6(new A.oL(null,a,b,0))}, -uT(){}, -n(){}, -k(a){return"#"+A.aV(this)}} -A.nY.prototype={ -uT(){this.a.ji(0)}, -gl9(){return!1}, -gjT(){return!1}, -ghk(){return 0}} -A.acI.prototype={ -gl9(){return!1}, -gjT(){return!1}, -ghk(){return 0}, -n(){this.b.$0() -this.yc()}} -A.akC.prototype={ -a6E(a,b){var s,r,q=this -if(b==null)return a -if(a===0){if(q.d!=null)if(q.r==null){s=q.e -s=b.a-s.a>5e4}else s=!1 -else s=!1 -if(s)q.r=0 -return 0}else{s=q.r -if(s==null)return a -else{s+=a -q.r=s -r=q.d -r.toString -if(Math.abs(s)>r){q.r=null -s=Math.abs(a) -if(s>24)return a -else return Math.min(r/3,s)*J.i4(a)}else return 0}}}, -bB(a,b){var s,r,q,p,o=this -o.x=b -s=b.c -s.toString -r=s===0 -if(!r)o.e=b.a -q=b.a -if(o.f)if(r)if(q!=null){r=o.e -r=q.a-r.a>2e4}else r=!0 -else r=!1 -else r=!1 -if(r)o.f=!1 -p=o.a6E(s,q) -if(p===0)return -s=o.a -if(A.aAz(s.w.a.c))p=-p -s.M9(p>0?B.kk:B.kl) -r=s.at -r.toString -s.EI(r-s.r.IC(s,p))}, -n(){this.x=null -this.b.$0()}, -k(a){return"#"+A.aV(this)}} -A.a7N.prototype={ -WC(a,b){var s=t.uL.a(this.b.x) -if(b!=null)b.f6(new A.DP(s,a,b,0))}, -WD(a,b,c){b.f6(A.aE3(b,null,t.zk.a(this.b.x),a,c))}, -Bn(a,b,c){b.f6(new A.kW(t.zk.a(this.b.x),c,0,a,b,0))}, -WB(a,b){var s=this.b.x -b.f6(new A.oL(s instanceof A.i7?s:null,a,b,0))}, -gl9(){var s=this.b -return(s==null?null:s.w)!==B.aQ}, -gjT(){return!0}, -ghk(){return 0}, -n(){this.b=null -this.yc()}, -k(a){return"#"+A.aV(this)+"("+A.j(this.b)+")"}} -A.Lg.prototype={ -ZW(){var s=this.a,r=this.b -r===$&&A.c() -s.ji(r.ghk())}, -uT(){var s=this.a,r=this.b -r===$&&A.c() -s.ji(r.ghk())}, -HR(){var s=this.b -s===$&&A.c() -s=s.x -s===$&&A.c() -if(!(Math.abs(this.a.EI(s))<1e-10)){s=this.a -s.iR(new A.nY(s))}}, -HA(){this.a.ji(0)}, -Bn(a,b,c){var s=this.b -s===$&&A.c() -b.f6(new A.kW(null,c,s.ghk(),a,b,0))}, -gjT(){return!0}, -ghk(){var s=this.b -s===$&&A.c() -return s.ghk()}, -n(){var s=this.b -s===$&&A.c() -s.n() -this.yc()}, -k(a){var s=A.aV(this),r=this.b -r===$&&A.c() -return"#"+s+"("+r.k(0)+")"}, -gl9(){return this.c}} -A.N1.prototype={ -HR(){var s=this.a,r=this.c -r===$&&A.c() -r=r.x -r===$&&A.c() -if(s.EI(r)!==0){s=this.a -s.iR(new A.nY(s))}}, -HA(){var s=this.a,r=this.c -r===$&&A.c() -s.ji(r.ghk())}, -Bn(a,b,c){var s=this.c -s===$&&A.c() -b.f6(new A.kW(null,c,s.ghk(),a,b,0))}, -gl9(){return!0}, -gjT(){return!0}, -ghk(){var s=this.c -s===$&&A.c() -return s.ghk()}, -n(){var s=this.b -s===$&&A.c() -s.fN(0) -s=this.c -s===$&&A.c() -s.n() -this.yc()}, -k(a){var s=A.aV(this),r=this.c -r===$&&A.c() -return"#"+s+"("+r.k(0)+")"}} -A.DI.prototype={ -x3(a,b,c,d){var s,r=this -if(b.a==null){s=$.io.mI$ -s===$&&A.c() -s=s.a.h(0,c)!=null||s.b.h(0,c)!=null}else s=!0 -if(s){r.b.x3(a,b,c,d) -return}s=r.a -if(s.gb5(s)==null)return -s=s.gb5(s) -s.toString -if(A.b_E(s)){$.c6.E3(new A.aky(r,a,b,c,d)) -return}r.b.x3(a,b,c,d)}, -rh(a,b,c){return this.b.rh(0,b,c)}, -ri(a,b){return this.b.ri(a,b)}, -rj(a,b){return this.b.rj(a,b)}, -wG(a){return this.b.wG(a)}} -A.aky.prototype={ -$1(a){var s=this -A.ey(new A.akx(s.a,s.b,s.c,s.d,s.e))}, -$S:3} -A.akx.prototype={ -$0(){var s=this -return s.a.x3(s.b,s.c,s.d,s.e)}, -$S:0} -A.KL.prototype={ -I(){return"AndroidOverscrollIndicator."+this.b}} -A.S3.prototype={ -qx(a,b,c,d,e,f,g){return new A.azo(this,g,c,d,e,b,f,a)}, -VW(a,b){return this.qx(null,null,a,null,null,null,b)}, -W_(a,b,c,d){return this.qx(null,null,a,b,c,null,d)}, -l3(a){return A.bA()}, -gmD(){return B.yG}, -gwR(){return A.cJ([B.bi,B.bw],t.bd)}, -AP(a,b,c){var s=null -switch(this.l3(a).a){case 3:case 4:case 5:return A.b_j(b,c.b,B.bC,s,s,A.Kk(),B.q,s,s,s,s,B.dW,s) -case 0:case 1:case 2:return b}}, -AO(a,b,c){switch(this.l3(a).a){case 2:case 3:case 4:case 5:return b -case 0:switch(1){case 1:break}break -case 1:break}return A.aIR(c.a,b,B.j)}, -DK(a){switch(this.l3(a).a){case 2:return new A.akz() -case 4:return new A.akA() -case 0:case 1:case 3:case 5:return new A.akB()}}, -pd(a){switch(this.l3(a).a){case 2:return B.AY -case 4:return B.AZ -case 0:case 1:case 3:case 5:return B.Db}}, -N3(a){return!1}, -k(a){return"ScrollBehavior"}} -A.akz.prototype={ -$1(a){return A.aYz(a.gcp(a))}, -$S:518} -A.akA.prototype={ -$1(a){var s=a.gcp(a),r=t.av -return new A.vw(A.aT(20,null,!1,r),s,A.aT(20,null,!1,r))}, -$S:519} -A.akB.prototype={ -$1(a){return new A.hq(a.gcp(a),A.aT(20,null,!1,t.av))}, -$S:188} -A.azo.prototype={ -gmD(){var s=this.f -return s==null?B.yG:s}, -gwR(){var s=this.r -return s==null?A.cJ([B.bi,B.bw],t.bd):s}, -AO(a,b,c){if(this.c)return this.a.AO(a,b,c) -return b}, -AP(a,b,c){if(this.b)return this.a.AP(a,b,c) -return b}, -qx(a,b,c,d,e,f,g){var s=this,r=s.gmD(),q=s.gwR(),p=d==null?s.d:d,o=e==null?s.e:e,n=s.w -if(n==null)n=B.ih -return s.a.qx(n,r,!1,p,o,q,g)}, -VW(a,b){return this.qx(null,null,a,null,null,null,b)}, -W_(a,b,c,d){return this.qx(null,null,a,b,c,null,d)}, -l3(a){var s=this.e -return s==null?this.a.l3(a):s}, -pd(a){var s=this.d -return s==null?this.a.pd(a):s}, -N3(a){var s=this -return A.u(a.a)!==A.u(s.a)||a.b!==s.b||a.c!==s.c||!A.Kl(a.gmD(),s.gmD())||!A.Kl(a.gwR(),s.gwR())||a.d!=s.d||a.e!=s.e||!1}, -DK(a){return this.a.DK(a)}, -k(a){return"_WrappedScrollBehavior"}} -A.DJ.prototype={ -cP(a){var s=this.f,r=a.f -if(A.u(s)===A.u(r))s=s!==r&&s.N3(r) -else s=!0 -return s}} -A.DK.prototype={ -i5(a,b,c){return this.alX(a,b,c)}, -alX(a,b,c){var s=0,r=A.I(t.H),q=this,p,o,n -var $async$i5=A.D(function(d,e){if(d===1)return A.F(e,r) -while(true)switch(s){case 0:n=A.b([],t.mo) -for(p=q.f,o=0;o#"+A.aV(this)+"("+B.b.bH(r,", ")+")"}} -A.amb.prototype={ -gBv(){return null}, -k(a){var s=A.b([],t.s) -this.dZ(s) -return"#"+A.aV(this)+"("+B.b.bH(s,", ")+")"}, -dZ(a){var s,r,q -try{s=this.gBv() -if(s!=null)a.push("estimated child count: "+A.j(s))}catch(q){r=A.a6(q) -a.push("estimated child count: EXCEPTION ("+J.Y(r).k(0)+")")}}} -A.yn.prototype={} -A.ama.prototype={ -X9(a){return null}, -IL(a,b){var s,r,q,p,o,n,m,l,k=null -if(b>=0)p=b>=this.b -else p=!0 -if(p)return k -s=null -try{s=this.a.$2(a,b)}catch(o){r=A.a6(o) -q=A.aJ(o) -n=new A.bH(r,q,"widgets library",A.bu("building"),k,!1) -A.cY(n) -s=A.AF(n)}if(s==null)return k -if(s.a!=null){p=s.a -p.toString -m=new A.yn(p)}else m=k -p=s -s=new A.ir(p,k) -l=A.aF7(s,b) -if(l!=null)s=new A.Bb(l,s,k) -p=s -s=new A.tX(new A.yp(p,k),k) -return new A.oa(s,m)}, -gBv(){return this.b}, -N4(a){return!0}} -A.amc.prototype={ -a9P(a){var s,r,q,p=null,o=this.r -if(!o.ak(0,a)){s=o.h(0,p) -s.toString -for(r=this.f,q=s;q=this.f.length)return o -s=this.f[b] -r=s.a -q=r!=null?new A.yn(r):o -s=new A.ir(s,o) -p=A.aF7(s,b) -s=p!=null?new A.Bb(p,s,o):s -return new A.oa(new A.tX(new A.yp(s,o),o),q)}, -gBv(){return this.f.length}, -N4(a){return this.f!==a.f}} -A.yp.prototype={ -ae(){return new A.Is(null,B.i)}} -A.Is.prototype={ -gxo(){return this.r}, -arJ(a){return new A.axh(this,a)}, -Ab(a,b){var s,r=this -if(b){s=r.d;(s==null?r.d=A.aE(t.x9):s).E(0,a)}else{s=r.d -if(s!=null)s.F(0,a)}s=r.d -s=s==null?null:s.a!==0 -s=s===!0 -if(r.r!==s){r.r=s -r.p8()}}, -bu(){var s,r,q,p=this -p.di() -s=p.c -s.toString -r=A.Sd(s) -s=p.f -if(s!=r){if(s!=null){q=p.e -if(q!=null)new A.bm(q,A.p(q).i("bm<1>")).N(0,s.gLy(s))}p.f=r -if(r!=null){s=p.e -if(s!=null)new A.bm(s,A.p(s).i("bm<1>")).N(0,r.gi2(r))}}}, -E(a,b){var s,r=this,q=r.arJ(b) -b.U(0,q) -s=r.e;(s==null?r.e=A.m(t.x9,t.M):s).m(0,b,q) -r.f.E(0,b) -if(b.gl(b).c!==B.ds)r.Ab(b,!0)}, -F(a,b){var s=this.e -if(s==null)return -s=s.F(0,b) -s.toString -b.H(0,s) -this.f.F(0,b) -this.Ab(b,!1)}, -n(){var s,r,q=this,p=q.e -if(p!=null){for(p=A.fh(p,p.r,A.p(p).c);p.u();){s=p.d -q.f.F(0,s) -r=q.e.h(0,s) -r.toString -s.H(0,r)}q.e=null}q.d=null -q.aP()}, -G(a){var s=this -s.Es(a) -if(s.f==null)return s.a.c -return A.aKC(s.a.c,s)}} -A.axh.prototype={ -$0(){var s=this.b,r=this.a -if(s.gl(s).c!==B.ds)r.Ab(s,!0) -else r.Ab(s,!1)}, -$S:0} -A.a2z.prototype={ -aE(){this.aV() -if(this.r)this.tZ()}, -eH(){var s=this.ib$ -if(s!=null){s.T() -s.d3() -this.ib$=null}this.pA()}} -A.mB.prototype={ -kr(){var s=this,r=null,q=s.gKm()?s.gik():r,p=s.gKm()?s.gij():r,o=s.gXE()?s.gdS():r,n=s.gXG()?s.gxn():r,m=s.ghx(),l=s.gqF(s) -return new A.Nz(q,p,o,n,m,l)}, -gLd(){var s=this -return s.gdS()s.gij()}, -gID(){var s=this -return s.gdS()===s.gik()||s.gdS()===s.gij()}, -goo(){var s=this -return s.gxn()-A.R(s.gik()-s.gdS(),0,s.gxn())-A.R(s.gdS()-s.gij(),0,s.gxn())}} -A.Nz.prototype={ -gik(){var s=this.a -s.toString -return s}, -gij(){var s=this.b -s.toString -return s}, -gKm(){return this.a!=null&&this.b!=null}, -gdS(){var s=this.c -s.toString -return s}, -gXE(){return this.c!=null}, -gxn(){var s=this.d -s.toString -return s}, -gXG(){return this.d!=null}, -k(a){var s=this -return"FixedScrollMetrics("+B.d.ad(Math.max(s.gdS()-s.gik(),0),1)+"..["+B.d.ad(s.goo(),1)+"].."+B.d.ad(Math.max(s.gij()-s.gdS(),0),1)+")"}, -ghx(){return this.e}, -gqF(a){return this.f}} -A.WR.prototype={} -A.hW.prototype={} -A.Ug.prototype={ -YO(a){if(t.rS.b(a))++a.hE$ -return!1}} -A.he.prototype={ -dZ(a){this.a4P(a) -a.push(this.a.k(0))}} -A.DP.prototype={ -dZ(a){var s -this.tA(a) -s=this.d -if(s!=null)a.push(s.k(0))}} -A.jP.prototype={ -dZ(a){var s -this.tA(a) -a.push("scrollDelta: "+A.j(this.e)) -s=this.d -if(s!=null)a.push(s.k(0))}} -A.kW.prototype={ -dZ(a){var s,r=this -r.tA(a) -a.push("overscroll: "+B.d.ad(r.e,1)) -a.push("velocity: "+B.d.ad(r.f,1)) -s=r.d -if(s!=null)a.push(s.k(0))}} -A.oL.prototype={ -dZ(a){var s -this.tA(a) -s=this.d -if(s!=null)a.push(s.k(0))}} -A.U7.prototype={ -dZ(a){this.tA(a) -a.push("direction: "+this.d.k(0))}} -A.Ij.prototype={ -dZ(a){var s,r -this.Ez(a) -s=this.hE$ -r=s===0?"local":"remote" -a.push("depth: "+s+" ("+r+")")}} -A.Ii.prototype={ -cP(a){return this.f!==a.f}} -A.pi.prototype={ -arI(a,b){return this.a.$1(b)}} -A.DM.prototype={ -ae(){return new A.DN(new A.r_(t.z_),B.i)}} -A.DN.prototype={ -H(a,b){var s,r,q=this.d -q.toString -q=A.b1O(q,q.$ti.c) -s=q.$ti.c -for(;q.u();){r=q.c -if(r==null)r=s.a(r) -if(J.e(r.a,b)){q=r.j1$ -q.toString -q.TU(A.p(r).i("ie.E").a(r)) -return}}}, -RI(a){var s,r,q,p,o,n,m,l,k=this.d -if(k.b===0)return -p=A.a8(k,!0,t.Sx) -for(k=p.length,o=0;oMath.max(Math.abs(s.a),Math.abs(s.b))}return s.Zx(a,b,c)}, -uS(a,b){var s=this.a -if(s==null)return 0 -return s.uS(a,b)}, -Az(a,b,c,d){var s=this.a -if(s==null){s=b.c -s.toString -return s}return s.Az(a,b,c,d)}, -B5(a,b){var s=this.a -if(s==null)return null -return s.B5(a,b)}, -gtj(){var s=this.a -s=s==null?null:s.gtj() -return s==null?$.aPN():s}, -Dz(a){var s=this.a -s=s==null?null:s.Dz(a) -if(s==null){s=a.w.f -s===$&&A.c() -s=new A.TM(1/s,1/(0.05*s))}return s}, -gKT(){var s=this.a -s=s==null?null:s.gKT() -return s==null?18:s}, -gCA(){var s=this.a -s=s==null?null:s.gCA() -return s==null?50:s}, -gws(){var s=this.a -s=s==null?null:s.gws() -return s==null?8000:s}, -IR(a){var s=this.a -if(s==null)return 0 -return s.IR(a)}, -gJG(){var s=this.a -return s==null?null:s.gJG()}, -k(a){var s=this.a -if(s==null)return"ScrollPhysics" -return"ScrollPhysics -> "+s.k(0)}} -A.R7.prototype={ -uU(a){return new A.R7(this.uZ(a))}, -Az(a,b,c,d){var s,r,q,p,o,n,m,l -if(d!==0){s=!1 -r=!1}else{s=!0 -r=!0}q=c.a -q.toString -p=b.a -p.toString -if(q===p){o=c.b -o.toString -n=b.b -n.toString -n=o===n -o=n}else o=!1 -if(o)s=!1 -o=c.c -o.toString -n=b.c -n.toString -if(o!==n){if(isFinite(q)){n=c.b -n.toString -if(isFinite(n))if(isFinite(p)){n=b.b -n.toString -n=isFinite(n)}else n=!1 -else n=!1}else n=!1 -if(n)r=!1 -s=!1}n=om}else m=!0 -if(m)r=!1 -if(s){if(n&&p>q)return p-(q-o) -q=c.b -q.toString -if(o>q){n=b.b -n.toString -n=n0&&b<0))n=p>0&&b>0 -else n=!0 -s=a.ax -if(n){s.toString -m=this.Xo((o-Math.abs(b))/s)}else{s.toString -m=this.Xo(o/s)}l=J.i4(b) -if(n&&this.b===B.ye)return l*Math.abs(b) -return l*A.aW6(o,Math.abs(b),m)}, -uS(a,b){return 0}, -B5(a,b){var s,r,q,p,o,n,m,l=this.Dz(a) -if(Math.abs(b)>=l.c||a.gLd()){switch(this.b.a){case 1:s=1400 -break -case 0:s=0 -break -default:s=null}r=this.gtj() -q=a.at -q.toString -p=a.z -p.toString -o=a.Q -o.toString -n=new A.a59(p,o,r,l) -if(qo){n.f=new A.rS(o,A.a06(r,q-o,b),B.c4) -n.r=-1/0}else{q=n.e=A.aaJ(0.135,q,b,s) -m=q.gr2() -if(b>0&&m>o){p=q.a_7(o) -n.r=p -n.f=new A.rS(o,A.a06(r,o-o,Math.min(q.fk(0,p),5000)),B.c4)}else if(b<0&&mr)q=r -else q=o -r=a.z -r.toString -if(s0){r=a.at -r.toString -p=a.Q -p.toString -p=r>=p -r=p}else r=!1 -if(r)return o -if(b<0){r=a.at -r.toString -p=a.z -p.toString -p=r<=p -r=p}else r=!1 -if(r)return o -r=a.at -r.toString -r=new A.a61(r,b,n) -p=$.aC0() -s=p*0.35*Math.pow(s/2223.8657884799995,1/(p-1)) -r.e=s -r.f=b*s/p -return r}} -A.z0.prototype={ -uU(a){return new A.z0(this.uZ(a))}, -m3(a){return!0}} -A.rR.prototype={ -I(){return"ScrollPositionAlignmentPolicy."+this.b}} -A.mC.prototype={ -a64(a,b,c,d,e){var s,r,q,p=this -if(d!=null)p.q9(d) -if(p.at==null){s=p.w -r=s.c -r.toString -r=A.aJP(r) -if(r==null)q=null -else{s=s.c -s.toString -q=r.aty(s)}if(q!=null)p.at=q}}, -gik(){var s=this.z -s.toString -return s}, -gij(){var s=this.Q -s.toString -return s}, -gKm(){return this.z!=null&&this.Q!=null}, -gdS(){var s=this.at -s.toString -return s}, -gXE(){return this.at!=null}, -gxn(){var s=this.ax -s.toString -return s}, -gXG(){return this.ax!=null}, -q9(a){var s=this,r=a.z -if(r!=null&&a.Q!=null){r.toString -s.z=r -r=a.Q -r.toString -s.Q=r}r=a.at -if(r!=null)s.at=r -r=a.ax -if(r!=null)s.ax=r -s.fr=a.fr -a.fr=null -if(A.u(a)!==A.u(s))s.fr.ZW() -s.w.MX(s.fr.gl9()) -s.dy.sl(0,s.fr.gjT())}, -gqF(a){var s=this.w.f -s===$&&A.c() -return s}, -a0P(a){var s,r,q,p=this,o=p.at -o.toString -if(a!==o){s=p.r.uS(p,a) -o=p.at -o.toString -r=a-s -p.at=r -if(r!==o){p.I7() -p.No() -r=p.at -r.toString -p.Jz(r-o)}if(Math.abs(s)>1e-10){o=p.fr -o.toString -r=p.kr() -q=$.av.ah$.z.h(0,p.w.Q) -q.toString -o.Bn(r,q,s) -return s}}return 0}, -W0(a){var s=this.at -s.toString -this.at=s+a -this.ch=!0}, -Xl(a){var s=this,r=s.at -r.toString -s.as=a-r -s.at=a -s.I7() -s.No() -$.c6.p1$.push(new A.akG(s))}, -qi(a){if(this.ax!==a){this.ax=a -this.ch=!0}return!0}, -qf(a,b){var s,r,q,p=this -if(!A.Kj(p.z,a,0.001)||!A.Kj(p.Q,b,0.001)||p.ch||p.db!==A.bs(p.ghx())){p.z=a -p.Q=b -p.db=A.bs(p.ghx()) -s=p.ay?p.kr():null -p.ch=!1 -p.CW=!0 -if(p.ay){r=p.cx -r.toString -s.toString -r=!p.anN(r,s)}else r=!1 -if(r)return!1 -p.ay=!0}if(p.CW){p.a3y() -p.w.a0E(p.r.m3(p)) -p.CW=!1}s=p.kr() -if(p.cx!=null){r=Math.max(s.gdS()-s.gik(),0) -q=p.cx -if(r===Math.max(q.gdS()-q.gik(),0))if(s.goo()===p.cx.goo()){r=Math.max(s.gij()-s.gdS(),0) -q=p.cx -r=r===Math.max(q.gij()-q.gdS(),0)&&s.e===p.cx.e}else r=!1 -else r=!1 -r=!r}else r=!0 -if(r){if(!p.cy){A.ey(p.gaoh()) -p.cy=!0}p.cx=p.kr()}return!0}, -anN(a,b){var s=this,r=s.r.Az(s.fr.gjT(),b,a,s.fr.ghk()),q=s.at -q.toString -if(r!==q){s.at=r -return!1}return!0}, -uT(){this.fr.uT() -this.I7()}, -I7(){var s,r,q,p,o,n=this,m=n.w -switch(m.a.c.a){case 0:s=B.eH -r=B.eG -break -case 1:s=B.eI -r=B.eJ -break -case 2:s=B.eG -r=B.eH -break -case 3:s=B.eJ -r=B.eI -break -default:s=null -r=null}q=A.aE(t._S) -p=n.at -p.toString -o=n.z -o.toString -if(p>o)q.E(0,r) -p=n.at -p.toString -o=n.Q -o.toString -if(pr)o=r -break -default:o=m}r=n.at -r.toString -if(o===r)return A.dt(m,t.H) -if(e.a===B.q.a){n.eI(o) -return A.dt(m,t.H)}return n.i5(o,d,e)}, -wz(a,b,c,d){var s,r=this.z -r.toString -s=this.Q -s.toString -b=A.R(b,r,s) -return this.a3U(0,b,c,d)}, -iR(a){var s,r,q=this,p=q.fr -if(p!=null){s=p.gl9() -r=q.fr.gjT() -if(r&&!a.gjT())q.Js() -q.fr.n()}else{r=!1 -s=!1}q.fr=a -if(s!==a.gl9())q.w.MX(q.fr.gl9()) -q.dy.sl(0,q.fr.gjT()) -if(!r&&q.fr.gjT())q.Jx()}, -Jx(){var s=this.fr -s.toString -s.WC(this.kr(),$.av.ah$.z.h(0,this.w.Q))}, -Jz(a){var s,r,q=this.fr -q.toString -s=this.kr() -r=$.av.ah$.z.h(0,this.w.Q) -r.toString -q.WD(s,r,a)}, -Js(){var s,r,q,p=this,o=p.fr -o.toString -s=p.kr() -r=p.w -q=$.av.ah$.z.h(0,r.Q) -q.toString -o.WB(s,q) -q=p.at -q.toString -r.r.sl(0,q) -q=$.fH.fm$ -q===$&&A.c() -q.ap9() -o=r.c -o.toString -o=A.aJP(o) -if(o!=null){s=r.c -s.toString -r=p.at -r.toString -if(o.a==null)o.a=A.m(t.K,t.z) -s=o.Ow(s) -if(s.length!==0)o.a.m(0,new A.II(s),r)}}, -aoi(){var s,r,q -this.cy=!1 -s=this.w.Q -if($.av.ah$.z.h(0,s)!=null){r=this.kr() -q=$.av.ah$.z.h(0,s) -q.toString -s=$.av.ah$.z.h(0,s) -if(s!=null)s.f6(new A.rQ(r,q,0))}}, -n(){var s=this,r=s.fr -if(r!=null)r.n() -s.fr=null -r=s.dy -r.ag$=$.aO() -r.aj$=0 -s.d3()}, -dZ(a){var s,r,q=this -q.a3T(a) -s=q.z -s=s==null?null:B.d.ad(s,1) -r=q.Q -r=r==null?null:B.d.ad(r,1) -a.push("range: "+A.j(s)+".."+A.j(r)) -r=q.ax -a.push("viewport: "+A.j(r==null?null:B.d.ad(r,1)))}} -A.akG.prototype={ -$1(a){this.a.as=0}, -$S:3} -A.rQ.prototype={ -Vd(){return A.aE3(this.b,this.hE$,null,this.a,null)}, -dZ(a){this.a4O(a) -a.push(this.a.k(0))}} -A.Ih.prototype={ -dZ(a){var s,r -this.Ez(a) -s=this.hE$ -r=s===0?"local":"remote" -a.push("depth: "+s+" ("+r+")")}} -A.a_t.prototype={} -A.DO.prototype={ -ghx(){return this.w.a.c}, -q9(a){var s,r=this -r.a3x(a) -r.fr.a=r -r.k4=a.k4 -s=a.ok -if(s!=null){r.ok=s -s.a=r -a.ok=null}}, -iR(a){var s,r=this -r.k3=0 -r.a3z(a) -s=r.ok -if(s!=null)s.n() -r.ok=null -if(!r.fr.gjT())r.M9(B.hr)}, -ji(a){var s,r,q,p=this,o=p.r.B5(p,a) -if(o!=null){s=p.fr -s=s==null?null:s.gl9() -s=new A.Lg(s!==!1,p) -r=A.aHd(null,0,p.w) -r.bO() -q=r.cU$ -q.b=!0 -q.a.push(s.gHQ()) -r.Iz(o).a.a.fY(s.gHz()) -s.b=r -p.iR(s)}else p.iR(new A.nY(p))}, -M9(a){var s,r,q,p=this -if(p.k4===a)return -p.k4=a -s=p.kr() -r=p.w.Q -q=$.av.ah$.z.h(0,r) -q.toString -r=$.av.ah$.z.h(0,r) -if(r!=null)r.f6(new A.U7(a,s,q,0))}, -i5(a,b,c){var s,r,q,p=this,o=p.at -o.toString -if(A.Kj(a,o,p.r.Dz(p).a)){p.eI(a) -return A.dt(null,t.H)}o=p.at -o.toString -s=new A.N1(p) -r=new A.b3(new A.ae($.ai,t.c),t.h) -s.b=r -o=A.aHd("DrivenScrollActivity",o,p.w) -o.bO() -q=o.cU$ -q.b=!0 -q.a.push(s.gHQ()) -o.z=B.aB -o.ke(a,b,c).a.a.fY(s.gHz()) -s.c!==$&&A.cQ() -s.c=o -p.iR(s) -return r.a}, -eI(a){var s,r,q=this -q.iR(new A.nY(q)) -s=q.at -s.toString -if(s!==a){q.Xl(a) -q.Jx() -r=q.at -r.toString -q.Jz(r-s) -q.Js()}q.ji(0)}, -Lk(a){var s,r,q,p,o=this -if(a===0){o.ji(0) -return}s=o.at -s.toString -r=o.z -r.toString -r=Math.max(s+a,r) -q=o.Q -q.toString -p=Math.min(r,q) -if(p!==s){o.iR(new A.nY(o)) -o.M9(-a>0?B.kk:B.kl) -s=o.at -s.toString -o.dy.sl(0,!0) -o.Xl(p) -o.Jx() -r=o.at -r.toString -o.Jz(r-s) -o.Js() -o.ji(0)}}, -n(){var s=this.ok -if(s!=null)s.n() -this.ok=null -this.a3B()}} -A.a59.prototype={ -HG(a){var s,r=this,q=r.r -q===$&&A.c() -if(a>q){if(!isFinite(q))q=0 -r.w=q -q=r.f -q===$&&A.c() -s=q}else{r.w=0 -q=r.e -q===$&&A.c() -s=q}s.a=r.a -return s}, -eA(a,b){return this.HG(b).eA(0,b-this.w)}, -fk(a,b){return this.HG(b).fk(0,b-this.w)}, -lE(a){return this.HG(a).lE(a-this.w)}, -k(a){return"BouncingScrollSimulation(leadingExtent: "+A.j(this.b)+", trailingExtent: "+A.j(this.c)+")"}} -A.a61.prototype={ -eA(a,b){var s,r=this.e -r===$&&A.c() -s=A.R(b/r,0,1) -r=this.f -r===$&&A.c() -return this.b+r*(1-Math.pow(1-s,$.aC0()))}, -fk(a,b){var s=this.e -s===$&&A.c() -return this.c*Math.pow(1-A.R(b/s,0,1),$.aC0()-1)}, -lE(a){var s=this.e -s===$&&A.c() -return a>=s}} -A.S8.prototype={ -I(){return"ScrollViewKeyboardDismissBehavior."+this.b}} -A.S7.prototype={ -amm(a,b,c,d){var s=this -if(s.x)return new A.So(c,b,s.ch,d,null) -return new A.Ft(c,0,b,null,s.Q,s.ch,d,null)}, -G(a){var s,r,q,p,o,n,m,l,k,j,i=this,h=null,g=i.ami(a),f=i.cx -if(f==null){s=A.ct(a,h) -if(s!=null){r=s.f -q=r.anz(0,0) -p=r.anD(0,0) -r=i.c===B.aq -f=r?p:q -g=A.kP(g,s.qv(r?q:p),h)}}o=A.b([f!=null?new A.SD(f,g,h):g],t.p) -r=i.c -n=A.aB6(a,r,!1) -m=i.f -if(m==null)m=i.e==null&&A.aK6(a,r) -l=m?A.w5(a):i.e -k=A.aE4(n,i.ch,l,i.at,!1,h,i.r,i.ay,h,i.as,new A.akH(i,n,o)) -j=m&&l!=null?A.aK5(k):k -if(i.ax===B.O1)return new A.eH(new A.akI(a),j,h,t.kj) -else return j}} -A.akH.prototype={ -$2(a,b){return this.a.amm(a,b,this.b,this.c)}, -$S:523} -A.akI.prototype={ -$1(a){var s=A.aai(this.a) -if(a.d!=null&&s.gcj())s.ni() -return!1}, -$S:524} -A.Lw.prototype={} -A.BF.prototype={ -ami(a){return new A.SC(this.R8,null)}} -A.axb.prototype={ -$2(a,b){if(!a.a)a.H(0,b)}, -$S:43} -A.DQ.prototype={ -ae(){var s=null,r=t.C -return new A.ws(new A.a_f($.aO()),new A.bB(s,r),new A.bB(s,t.hA),new A.bB(s,r),B.u5,s,A.m(t.yb,t.M),s,!0,s,s,s,B.i)}, -auW(a,b){return this.f.$2(a,b)}} -A.akP.prototype={ -$1(a){return null}, -$S:525} -A.Ik.prototype={ -cP(a){return this.r!==a.r}} -A.ws.prototype={ -gWp(){var s,r=this -switch(r.a.c.a){case 2:s=r.d.at -s.toString -return new A.k(0,s) -case 0:s=r.d.at -s.toString -return new A.k(0,-s) -case 3:s=r.d.at -s.toString -return new A.k(-s,0) -case 1:s=r.d.at -s.toString -return new A.k(s,0)}}, -gtX(){var s=this.a.d -if(s==null){s=this.x -s.toString}return s}, -gei(){return this.a.z}, -Ui(){var s,r,q,p=this,o=p.a.Q -if(o==null){o=p.c -o.toString -o=A.S4(o)}p.w=o -s=p.c -s.toString -s=o.pd(s) -p.e=s -o=p.a -r=o.e -if(r!=null)p.e=new A.z0(r.uZ(s)) -else{o=o.Q -if(o!=null){s=p.c -s.toString -p.e=o.pd(s).uU(p.e)}}q=p.d -if(q!=null){p.gtX().vr(0,q) -A.ey(q.gcL())}o=p.gtX() -s=p.e -s.toString -r=new A.DO(B.hr,s,p,!0,null,A.eu(!1,t.y),$.aO()) -r.a64(p,null,!0,q,s) -if(r.at==null&&!0)r.at=o.a -if(r.fr==null)r.iR(new A.nY(r)) -p.d=r -o=p.gtX() -s=p.d -s.toString -o.ai(s)}, -is(a,b){var s,r,q,p=this.r -this.nd(p,"offset") -s=p.y -r=s==null -if((r?A.p(p).i("d7.T").a(s):s)!=null){q=this.d -q.toString -p=r?A.p(p).i("d7.T").a(s):s -p.toString -if(b)q.at=p -else q.eI(p)}}, -aE(){if(this.a.d==null)this.x=A.wq(0) -this.aV()}, -bu(){var s=this,r=s.c -r.toString -r=A.ct(r,B.Ac) -s.y=r==null?null:r.ay -r=s.c -r.toString -r=A.ct(r,B.bP) -r=r==null?null:r.b -if(r==null){r=s.c -r.toString -r=A.Fs(r).x -if(r==null){r=self.window.devicePixelRatio -if(r===0)r=1}}s.f=r -s.Ui() -s.a4R()}, -aj5(a){var s,r,q,p=this,o=null,n=p.a,m=n.e -if(m==null){n=n.Q -if(n==null)m=o -else{s=p.c -s.toString -s=n.pd(s) -m=s}}r=a.e -if(r==null){n=a.Q -if(n==null)r=o -else{s=p.c -s.toString -s=n.pd(s) -r=s}}do{n=m==null -s=n?o:A.u(m) -q=r==null -if(s!=(q?o:A.u(r)))return!0 -m=n?o:m.a -r=q?o:r.a}while(m!=null||r!=null) -n=p.a.d -n=n==null?o:A.u(n) -s=a.d -return n!=(s==null?o:A.u(s))}, -aM(a){var s,r,q=this -q.a4S(a) -s=a.d -if(q.a.d!=s){if(s==null){s=q.x -s.toString -r=q.d -r.toString -s.vr(0,r) -q.x.n() -q.x=null}else{r=q.d -r.toString -s.vr(0,r) -if(q.a.d==null)q.x=A.wq(0)}s=q.gtX() -r=q.d -r.toString -s.ai(r)}if(q.aj5(a))q.Ui()}, -n(){var s,r=this,q=r.a.d -if(q!=null){s=r.d -s.toString -q.vr(0,s)}else{q=r.x -if(q!=null){s=r.d -s.toString -q.vr(0,s)}q=r.x -if(q!=null)q.n()}r.d.n() -r.r.n() -r.a4T()}, -a0E(a){var s,r,q=this -if(a===q.ay)s=!a||A.bs(q.a.c)===q.ch -else s=!1 -if(s)return -if(!a){q.at=B.u5 -q.SL()}else{switch(A.bs(q.a.c).a){case 1:q.at=A.l([B.l0,new A.cx(new A.akL(q),new A.akM(q),t.ok)],t.A,t.xR) -break -case 0:q.at=A.l([B.l_,new A.cx(new A.akN(q),new A.akO(q),t.Uv)],t.A,t.xR) -break}a=!0}q.ay=a -q.ch=A.bs(q.a.c) -s=q.Q -if(s.gO()!=null){s=s.gO() -s.HL(q.at) -if(!s.a.f){r=s.c.ga_() -r.toString -t.Wx.a(r) -s.e.am4(r)}}}, -MX(a){var s,r=this -if(r.ax===a)return -r.ax=a -s=r.as -if($.av.ah$.z.h(0,s)!=null){s=$.av.ah$.z.h(0,s).ga_() -s.toString -t.Ro.a(s).sXO(r.ax)}}, -abi(a){var s=this.d,r=s.fr.ghk(),q=new A.acI(this.ga8Y(),s) -s.iR(q) -s.k3=r -this.cx=q}, -aip(a){var s,r,q=this.d,p=q.r,o=p.IR(q.k3) -p=p.gJG() -s=p==null?null:0 -r=new A.akC(q,this.ga8W(),o,p,a.a,o!==0,s,a.d,a) -q.iR(new A.a7N(r,q)) -this.CW=q.ok=r}, -aiq(a){var s=this.CW -if(s!=null)s.bB(0,a)}, -aio(a){var s,r,q,p,o=this.CW -if(o!=null){s=a.b -s.toString -r=-s -if(A.aAz(o.a.w.a.c))r=-r -o.x=a -if(o.f){s=J.i4(r) -q=o.c -p=Math.abs(r)>Math.abs(q)*0.5 -if(s===J.i4(q)&&p)r+=q}o.a.ji(r)}}, -SL(){if($.av.ah$.z.h(0,this.Q)==null)return -var s=this.cx -if(s!=null)s.a.ji(0) -s=this.CW -if(s!=null)s.a.ji(0)}, -a8Z(){this.cx=null}, -a8X(){this.CW=null}, -SQ(a){var s,r=this.d,q=r.at -q.toString -s=r.z -s.toString -s=Math.max(q+a,s) -r=r.Q -r.toString -return Math.min(s,r)}, -SP(a){var s,r,q=A.bg("delta"),p=$.fH.dA$ -p===$&&A.c() -p=p.a -p=p.gaR(p) -s=A.hJ(p,A.p(p).i("q.E")) -p=this.w -p===$&&A.c() -p=p.gwR() -r=s.dN(0,p.ghB(p))&&a.gcp(a)===B.b3 -switch(A.bs(this.a.c).a){case 0:q.b=r?a.gjk().b:a.gjk().a -break -case 1:q.b=r?a.gjk().a:a.gjk().b -break}if(A.aAz(this.a.c))q.b=q.aI()*-1 -return q.aI()}, -ahm(a){var s,r,q,p,o=this -if(t.Mj.b(a)&&o.d!=null){s=o.e -if(s!=null){r=o.d -r.toString -r=!s.m3(r) -s=r}else s=!1 -if(s)return -q=o.SP(a) -p=o.SQ(q) -if(q!==0){s=o.d.at -s.toString -s=p!==s}else s=!1 -if(s)$.h5.bS$.ZA(0,a,o.gair())}else if(t.xb.b(a))o.d.Lk(0)}, -ais(a){var s,r=this,q=r.SP(a),p=r.SQ(q) -if(q!==0){s=r.d.at -s.toString -s=p!==s}else s=!1 -if(s)r.d.Lk(q)}, -acI(a){var s,r -if(a.hE$===0){s=$.av.ah$.z.h(0,this.z) -r=s==null?null:s.ga_() -if(r!=null)r.bo()}return!1}, -G(a){var s,r,q,p,o,n,m,l=this,k=null,j=l.d -j.toString -s=l.at -r=l.a -q=r.w -p=l.ax -p=A.v5(r.auW(a,j),p,l.as) -o=new A.Ik(l,j,A.vt(B.bD,new A.l2(new A.bL(A.c7(k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k),!1,!q,!1,!1,p,k),s,B.aG,q,l.Q),k,k,k,k,l.gahl(),k),k) -j=l.a -if(!j.w){s=l.d -s.toString -l.e.toString -o=new A.eH(l.gacH(),new A.a_u(s,!0,j.x,o,l.z),k,t.ji)}j=j.c -s=l.gtX() -r=l.a.as -n=new A.S9(j,s,r) -j=l.w -j===$&&A.c() -o=j.AP(a,j.AO(a,o,n),n) -m=A.Sd(a) -if(m!=null){j=l.d -j.toString -o=new A.Im(l,j,o,m,k)}return o}} -A.akL.prototype={ -$0(){var s=this.a.w -s===$&&A.c() -return A.aLB(null,s.gmD())}, -$S:172} -A.akM.prototype={ -$1(a){var s,r,q=this.a -a.ax=q.gQD() -a.ay=q.gSN() -a.ch=q.gSO() -a.CW=q.gSM() -a.cx=q.gSK() -s=q.e -a.cy=s==null?null:s.gKT() -s=q.e -a.db=s==null?null:s.gCA() -s=q.e -a.dx=s==null?null:s.gws() -s=q.w -s===$&&A.c() -r=q.c -r.toString -a.fr=s.DK(r) -a.at=q.a.y -a.b=q.y -a.c=q.w.gmD()}, -$S:173} -A.akN.prototype={ -$0(){var s=this.a.w -s===$&&A.c() -return A.acJ(null,s.gmD())}, -$S:174} -A.akO.prototype={ -$1(a){var s,r,q=this.a -a.ax=q.gQD() -a.ay=q.gSN() -a.ch=q.gSO() -a.CW=q.gSM() -a.cx=q.gSK() -s=q.e -a.cy=s==null?null:s.gKT() -s=q.e -a.db=s==null?null:s.gCA() -s=q.e -a.dx=s==null?null:s.gws() -s=q.w -s===$&&A.c() -r=q.c -r.toString -a.fr=s.DK(r) -a.at=q.a.y -a.b=q.y -a.c=q.w.gmD()}, -$S:175} -A.Im.prototype={ -ae(){return new A.a_v(B.i)}} -A.a_v.prototype={ -aE(){var s,r,q,p -this.aV() -s=this.a -r=s.c -s=s.d -q=t.x9 -p=t.i -q=new A.Il(r,new A.a7R(r,30),s,A.m(q,p),A.m(q,p),A.b([],t.D1),A.aE(q),B.Oa,$.aO()) -s.U(0,q.gSE()) -this.d=q}, -aM(a){var s,r -this.b2(a) -s=this.a.d -if(a.d!==s){r=this.d -r===$&&A.c() -r.sbv(0,s)}}, -n(){var s=this.d -s===$&&A.c() -s.n() -this.aP()}, -G(a){var s=this.a,r=s.f,q=this.d -q===$&&A.c() -return new A.wu(r,s.e,q,null)}} -A.Il.prototype={ -sbv(a,b){var s,r=this.id -if(b===r)return -s=this.gSE() -r.H(0,s) -this.id=b -b.U(0,s)}, -aic(){if(this.fr)return -this.fr=!0 -$.c6.p1$.push(new A.ax8(this))}, -Jr(){var s=this,r=s.b,q=A.og(r,A.W(r).c) -r=s.k1 -r.x_(r,new A.ax9(q)) -r=s.k2 -r.x_(r,new A.axa(q)) -s.a2w()}, -Kh(a){var s,r,q,p,o,n=this -if(n.fy==null&&n.fx==null)n.go=n.Qw(a.b) -s=A.a37(n.dx) -r=a.b -q=-s.a -p=-s.b -if(a.a===B.eC){r=n.fy=n.R2(r) -a=new A.rT(new A.k(r.a+q,r.b+p),B.eC)}else{r=n.fx=n.R2(r) -a=new A.rT(new A.k(r.a+q,r.b+p),B.yj)}o=n.a2E(a) -if(o===B.kn){n.dy.e=!1 -return o}if(n.go){r=n.dy -r.a1s(A.aKo(a.b,0,0)) -if(r.e)return B.kn}return o}, -R2(a){var s,r,q,p=this.dx,o=p.c.ga_() -o.toString -t.x.a(o) -s=o.hR(a) -if(!this.go){r=s.b -if(r<0||s.a<0)return A.c5(o.bt(0,null),B.e) -if(r>o.gq(o).b||s.a>o.gq(o).a)return B.Mp}q=A.a37(p) -return A.c5(o.bt(0,null),new A.k(s.a+q.a,s.b+q.b))}, -I1(a,b){var s,r,q,p=this,o=p.dx,n=A.a37(o) -o=o.c.ga_() -o.toString -t.x.a(o) -s=o.bt(0,null) -r=p.d -if(r!==-1)q=p.fx==null||b -else q=!1 -if(q){r=J.jm(p.b[r]).a -r.toString -p.fx=A.c5(s,A.c5(J.aCm(p.b[p.d],o),r.a.Y(0,new A.k(0,-r.b/2))).Y(0,n))}r=p.c -if(r!==-1)q=!0 -else q=!1 -if(q){r=J.jm(p.b[r]).b -r.toString -p.fy=A.c5(s,A.c5(J.aCm(p.b[p.c],o),r.a.Y(0,new A.k(0,-r.b/2))).Y(0,n))}}, -U6(){return this.I1(!0,!0)}, -Ri(a){var s,r,q,p,o,n,m,l,k=this,j=k.b -if(a){s=j[k.c] -r=s.gl(s).b -q=s.gl(s).b.b}else{s=j[k.d] -r=s.gl(s).a -j=s.gl(s).a -q=j==null?null:j.b}if(q==null||r==null)return -j=k.dx -p=j.c.ga_() -p.toString -t.x.a(p) -o=A.c5(s.bt(0,p),r.a) -n=p.gq(p).a -p=p.gq(p).b -switch(j.a.c.a){case 0:m=o.b -l=m-q -if(m>=p&&l<=0)return -if(m>p){j=k.id -n=j.at -n.toString -j.eI(n+p-m) -return}if(l<0){j=k.id -p=j.at -p.toString -j.eI(p+0-l)}return -case 1:r=o.a -if(r>=n&&r<=0)return -if(r>n){j=k.id -p=j.at -p.toString -j.eI(p+r-n) -return}if(r<0){j=k.id -p=j.at -p.toString -j.eI(p+r-0)}return -case 2:m=o.b -l=m-q -if(m>=p&&l<=0)return -if(m>p){j=k.id -n=j.at -n.toString -j.eI(n+m-p) -return}if(l<0){j=k.id -p=j.at -p.toString -j.eI(p+l-0)}return -case 3:r=o.a -if(r>=n&&r<=0)return -if(r>n){j=k.id -p=j.at -p.toString -j.eI(p+n-r) -return}if(r<0){j=k.id -p=j.at -p.toString -j.eI(p+0-r)}return}}, -Qw(a){var s,r=this.dx.c.ga_() -r.toString -t.x.a(r) -s=r.hR(a) -return new A.y(0,0,0+r.gq(r).a,0+r.gq(r).b).t(0,s)}, -hC(a,b){var s,r,q=this -switch(b.a.a){case 0:s=q.dx.d.at -s.toString -q.k1.m(0,a,s) -q.Bu(a) -break -case 1:s=q.dx.d.at -s.toString -q.k2.m(0,a,s) -q.Bu(a) -break -case 5:case 6:q.Bu(a) -s=q.dx -r=s.d.at -r.toString -q.k1.m(0,a,r) -s=s.d.at -s.toString -q.k2.m(0,a,s) -break -case 2:q.k2.F(0,a) -q.k1.F(0,a) -break -case 3:case 4:s=q.dx -r=s.d.at -r.toString -q.k2.m(0,a,r) -s=s.d.at -s.toString -q.k1.m(0,a,s) -break}return q.a2x(a,b)}, -Bu(a){var s,r,q,p,o,n=this,m=n.dx,l=m.d.at -l.toString -s=n.k1.h(0,a) -r=n.fx -if(r!=null)q=s==null||Math.abs(l-s)>1e-10 -else q=!1 -if(q){p=A.a37(m) -a.qI(new A.rT(new A.k(r.a+-p.a,r.b+-p.b),B.yj))}o=n.k2.h(0,a) -r=n.fy -if(r!=null)l=o==null||Math.abs(l-o)>1e-10 -else l=!1 -if(l){p=A.a37(m) -a.qI(new A.rT(new A.k(r.a+-p.a,r.b+-p.b),B.eC))}}, -n(){var s=this -s.k1.a0(0) -s.k2.a0(0) -s.fr=!1 -s.dy.e=!1 -s.a2y()}} -A.ax8.prototype={ -$1(a){var s=this.a -if(!s.fr)return -s.fr=!1 -s.Ac()}, -$S:3} -A.ax9.prototype={ -$2(a,b){return!this.a.t(0,a)}, -$S:191} -A.axa.prototype={ -$2(a,b){return!this.a.t(0,a)}, -$S:191} -A.a_u.prototype={ -aD(a){var s=this.e,r=new A.a_3(s,!0,this.r,null,A.af(t.T)) -r.aC() -r.saW(null) -s.U(0,r.gYB()) -return r}, -aH(a,b){b.salU(!0) -b.sbv(0,this.e) -b.sa0w(this.r)}} -A.a_3.prototype={ -sbv(a,b){var s,r=this,q=r.v -if(b===q)return -s=r.gYB() -q.H(0,s) -r.v=b -b.U(0,s) -r.bo()}, -salU(a){return}, -sa0w(a){if(a==this.am)return -this.am=a -this.bo()}, -eT(a){var s,r,q=this -q.hp(a) -a.a=!0 -if(q.v.ay){a.bc(B.Op,!0) -s=q.v -r=s.at -r.toString -a.al=r -a.e=!0 -r=s.Q -r.toString -a.aG=r -s=s.z -s.toString -a.bd=s -a.sa0r(q.am)}}, -qk(a,b,c){var s,r,q,p,o,n,m,l=this -if(c.length!==0){s=B.b.gM(c).dy -s=!(s!=null&&s.t(0,B.yE))}else s=!0 -if(s){l.br=null -l.NW(a,b,c) -return}s=l.br -if(s==null)s=l.br=A.DY(null,l.gpl()) -s.sKz(a.Q||a.y) -s.sbl(0,a.e) -s=l.br -s.toString -r=t.QF -q=A.b([s],r) -p=A.b([],r) -for(s=c.length,o=null,n=0;n#"+A.aV(r)+"("+B.b.bH(q,", ")+")"}, -gA(a){return A.T(this.a,this.b,null,this.d,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -j(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.Y(b)!==A.u(r))return!1 -if(b instanceof A.S9)if(b.a===r.a)if(b.b===r.b)s=b.d===r.d -else s=!1 -else s=!1 -else s=!1 -return s}} -A.akK.prototype={ -$2(a,b){if(b!=null)this.a.push(a+b.k(0))}, -$S:528} -A.a7R.prototype={ -H4(a,b){switch(b.a){case 0:return a.a -case 1:return a.b}}, -aja(a,b){switch(b.a){case 0:return a.a -case 1:return a.b}}, -a1s(a){var s=this,r=s.a.gWp() -s.d=a.aK(0,r.a,r.b) -if(s.e)return -s.q2()}, -q2(){var s=0,r=A.I(t.H),q,p=this,o,n,m,l,k,j,i,h,g,f,e,d,c -var $async$q2=A.D(function(a,b){if(a===1)return A.F(b,r) -while(true)switch(s){case 0:d=p.a -c=d.c.ga_() -c.toString -t.x.a(c) -o=A.fD(c.bt(0,null),new A.y(0,0,0+c.gq(c).a,0+c.gq(c).b)) -c=p.e=!0 -n=d.gWp() -m=o.a -l=o.b -k=p.H4(new A.k(m+n.a,l+n.b),A.bs(d.a.c)) -j=k+p.aja(new A.Q(o.c-m,o.d-l),A.bs(d.a.c)) -l=p.d -l===$&&A.c() -i=p.H4(new A.k(l.a,l.b),A.bs(d.a.c)) -l=p.d -h=p.H4(new A.k(l.c,l.d),A.bs(d.a.c)) -switch(d.a.c.a){case 0:case 3:if(h>j){m=d.d -l=m.at -l.toString -m=m.z -m.toString -m=l>m}else m=!1 -if(m){g=Math.min(h-j,20) -m=d.d -l=m.z -l.toString -m=m.at -m.toString -f=Math.max(l,m-g)}else{if(im}else m=!1 -if(m){g=Math.min(k-i,20) -m=d.d -l=m.z -l.toString -m=m.at -m.toString -f=Math.max(l,m-g)}else{if(h>j){m=d.d -l=m.at -l.toString -m=m.Q -m.toString -m=l>>24&255)/255*q.gl(q))),r.gl(r)>>>16&255,r.gl(r)>>>8&255,r.gl(r)&255)) -return s}, -RW(a){var s,r,q,p=this -if(a){s=$.ad().b1() -r=p.c -q=p.r -s.saf(0,A.ao(B.d.bE(255*((r.gl(r)>>>24&255)/255*q.gl(q))),r.gl(r)>>>16&255,r.gl(r)>>>8&255,r.gl(r)&255)) -s.sbC(0,B.Q) -s.seP(1) -return s}s=$.ad().b1() -r=p.b -q=p.r -s.saf(0,A.ao(B.d.bE(255*((r.gl(r)>>>24&255)/255*q.gl(q))),r.gl(r)>>>16&255,r.gl(r)>>>8&255,r.gl(r)&255)) -return s}, -agn(){return this.RW(!1)}, -agj(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=this,d=null -e.gzF() -switch(e.gzF().a){case 0:s=e.f -r=e.cy -r===$&&A.c() -q=new A.Q(s,r) -s+=2*e.x -r=e.db.d -r.toString -p=e.dx -p=p===B.U||p===B.X -o=e.Q -n=new A.Q(s,r-(p?o.gc6(o)+o.gca(o):o.gdO())) -r=e.x -m=r+e.Q.a -o=e.cx -o===$&&A.c() -r=m-r -l=e.gz8() -k=new A.k(r,l) -j=k.Y(0,new A.k(s,0)) -i=e.db.d -i.toString -p=e.dx -p=p===B.U||p===B.X -h=e.Q -p=p?h.gc6(h)+h.gca(h):h.gdO() -g=new A.k(r+s,l+(i-p)) -f=o -break -case 1:s=e.f -r=e.cy -r===$&&A.c() -q=new A.Q(s,r) -r=e.x -p=e.db.d -p.toString -o=e.dx -o=o===B.U||o===B.X -l=e.Q -o=o?l.gc6(l)+l.gca(l):l.gdO() -n=new A.Q(s+2*r,p-o) -o=e.f -p=e.x -m=b.a-o-p-e.Q.c -o=e.cx -o===$&&A.c() -p=m-p -r=e.gz8() -k=new A.k(p,r) -s=e.db.d -s.toString -l=e.dx -l=l===B.U||l===B.X -i=e.Q -g=new A.k(p,r+(s-(l?i.gc6(i)+i.gca(i):i.gdO()))) -j=k -f=o -break -case 2:s=e.cy -s===$&&A.c() -q=new A.Q(s,e.f) -s=e.db.d -s.toString -r=e.dx -r=r===B.U||r===B.X -p=e.Q -r=r?p.gc6(p)+p.gca(p):p.gdO() -p=e.f -o=e.x -p+=2*o -n=new A.Q(s-r,p) -r=e.cx -r===$&&A.c() -f=o+e.Q.b -o=e.gz8() -s=f-e.x -k=new A.k(o,s) -j=k.Y(0,new A.k(0,p)) -l=e.db.d -l.toString -i=e.dx -i=i===B.U||i===B.X -h=e.Q -g=new A.k(o+(l-(i?h.gc6(h)+h.gca(h):h.gdO())),s+p) -m=r -break -case 3:s=e.cy -s===$&&A.c() -q=new A.Q(s,e.f) -s=e.db.d -s.toString -r=e.dx -r=r===B.U||r===B.X -p=e.Q -r=r?p.gc6(p)+p.gca(p):p.gdO() -p=e.f -o=e.x -n=new A.Q(s-r,p+2*o) -r=e.cx -r===$&&A.c() -f=b.b-p-o-e.Q.d -o=e.gz8() -p=f-e.x -k=new A.k(o,p) -s=e.db.d -s.toString -l=e.dx -l=l===B.U||l===B.X -i=e.Q -g=new A.k(o+(s-(l?i.gc6(i)+i.gca(i):i.gdO())),p) -j=k -m=r -break -default:g=d -j=g -k=j -n=k -q=n -f=q -m=f}s=k.a -r=k.b -e.ch=new A.y(s,r,s+n.a,r+n.b) -e.CW=new A.y(m,f,m+q.a,f+q.b) -s=e.r -if(s.gl(s)!==0){s=e.ch -s.toString -a.cT(s,e.agn()) -a.hD(j,g,e.RW(!0)) -s=e.y -if(s!=null){r=e.CW -r.toString -a.cC(A.iQ(r,s),e.gRV()) -return}s=e.CW -s.toString -a.cT(s,e.gRV()) -return}}, -ap(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g=this,f=g.dx -if(f!=null){s=g.db -if(s!=null){r=s.b -r.toString -s=s.a -s.toString -s=r<=s}else s=!0}else s=!0 -if(s)return -s=g.db.d -s.toString -f=f===B.U||f===B.X -r=g.Q -f=f?r.gc6(r)+r.gca(r):r.gdO() -if(s-f-2*g.w<=0)return -f=g.db -s=f.b -s.toString -if(s==1/0||s==-1/0)return -f=f.goo() -s=g.dx -s=s===B.U||s===B.X -r=g.Q -s=s?r.gc6(r)+r.gca(r):r.gdO() -r=g.db -q=r.b -q.toString -p=r.a -p.toString -r=r.d -r.toString -o=g.dx -o=o===B.U||o===B.X -n=g.Q -o=o?n.gc6(n)+n.gca(n):n.gdO() -m=A.R((f-s)/(q-p+r-o),0,1) -o=g.db.d -o.toString -f=g.dx -f=f===B.U||f===B.X -s=g.Q -f=f?s.gc6(s)+s.gca(s):s.gdO() -f=Math.min(o-f-2*g.w,g.at) -o=g.db.d -o.toString -s=g.dx -s=s===B.U||s===B.X -r=g.Q -s=s?r.gc6(r)+r.gca(r):r.gdO() -l=Math.max(f,(o-s-2*g.w)*m) -s=g.db.goo() -o=g.db.d -o.toString -f=g.as -r=g.dx -r=r===B.U||r===B.X -q=g.Q -r=r?q.gc6(q)+q.gca(q):q.gdO() -k=Math.min(f,o-r-2*g.w) -f=g.dx -f=f===B.X||f===B.c8 -r=g.db -if((f?Math.max(r.gij()-r.gdS(),0):Math.max(r.gdS()-r.gik(),0))>0){f=g.dx -f=f===B.X||f===B.c8 -r=g.db -r=(f?Math.max(r.gdS()-r.gik(),0):Math.max(r.gij()-r.gdS(),0))>0 -f=r}else f=!1 -j=f?k:k*(1-A.R(1-s/o,0,0.2)/0.2) -f=g.db.d -f.toString -s=g.dx -s=s===B.U||s===B.X -r=g.Q -s=s?r.gc6(r)+r.gca(r):r.gdO() -s=A.R(l,j,f-s-2*g.w) -g.cy=s -f=g.db -r=f.b -r.toString -q=f.a -q.toString -i=r-q -if(i>0){r=f.c -r.toString -h=A.R((r-q)/i,0,1)}else h=0 -r=g.dx -q=r===B.X -p=q||r===B.c8?1-h:h -f=f.d -f.toString -r=r===B.U||q -q=g.Q -r=r?q.gc6(q)+q.gca(q):q.gdO() -g.cx=p*(f-r-2*g.w-s)+g.gaeo() -return g.agj(a,b)}, -Mz(a){var s,r,q,p,o=this,n=o.db,m=n.b -m.toString -s=n.a -s.toString -n=n.d -n.toString -r=o.dx -r=r===B.U||r===B.X -q=o.Q -r=r?q.gc6(q)+q.gca(q):q.gdO() -q=o.w -p=o.cy -p===$&&A.c() -return(m-s)*a/(n-r-2*q-p)}, -w2(a){var s,r,q=this -if(q.CW==null)return null -if(!q.ay){s=q.r -if(s.gl(s)!==0){s=q.db -r=s.a -r.toString -s=s.b -s.toString -s=r===s}else s=!0}else s=!0 -if(s)return!1 -return q.ch.t(0,a)}, -XK(a,b,c){var s,r,q,p=this,o=p.ch -if(o==null)return!1 -if(p.ay)return!1 -s=p.db -r=s.a -r.toString -s=s.b -s.toString -if(r===s)return!1 -q=o.jK(A.l5(p.CW.gaT(),24)) -s=p.r -if(s.gl(s)===0){if(c&&b===B.b3)return q.t(0,a) -return!1}switch(b.a){case 0:case 4:return q.t(0,a) -case 1:case 2:case 3:case 5:return o.t(0,a)}}, -aqy(a,b){return this.XK(a,b,!1)}, -XL(a,b){var s,r,q=this -if(q.CW==null)return!1 -if(q.ay)return!1 -s=q.r -if(s.gl(s)===0)return!1 -s=q.db -r=s.a -r.toString -s=s.b -s.toString -if(r===s)return!1 -switch(b.a){case 0:case 4:s=q.CW -return s.jK(A.l5(s.gaT(),24)).t(0,a) -case 1:case 2:case 3:case 5:return q.CW.t(0,a)}}, -eE(a){var s,r=this -if(r.a.j(0,a.a))if(r.b.j(0,a.b))if(r.c.j(0,a.c))if(r.e==a.e)if(r.f===a.f)if(r.r===a.r)if(r.w===a.w)if(r.x===a.x)if(J.e(r.y,a.y))if(r.Q.j(0,a.Q))if(r.as===a.as)if(r.at===a.at)s=r.ay!==a.ay -else s=!0 -else s=!0 -else s=!0 -else s=!0 -else s=!0 -else s=!0 -else s=!0 -else s=!0 -else s=!0 -else s=!0 -else s=!0 -else s=!0 -return s}, -Eg(a){return!1}, -gxJ(){return null}, -k(a){return"#"+A.aV(this)}, -n(){this.r.a.H(0,this.gcJ()) -this.d3()}} -A.akT.prototype={ -$1(a){var s,r -if(a!=null){s=a.b -s.toString -r=a.a -r.toString -r=s>r -s=r}else s=!1 -return s}, -$S:529} -A.wa.prototype={ -ae(){return A.b_k(t.jV)}, -n3(a){return this.cx.$1(a)}} -A.l4.prototype={ -gnP(){var s=this.a.d -if(s==null){s=this.c -s.toString -s=A.w5(s)}return s}, -gpn(){var s=this.a.e -return s===!0}, -gTc(){if(this.gpn())this.a.toString -return!1}, -gol(){this.a.toString -return!0}, -aE(){var s,r,q,p,o=this,n=null -o.aV() -s=A.bO(n,o.a.ay,n,n,o) -s.bO() -r=s.d6$ -r.b=!0 -r.a.push(o.gal6()) -o.x=s -s=o.y=A.ci(B.af,s,n) -r=o.a -q=r.w -if(q==null)q=6 -p=r.r -r=r.db -r=new A.wt(B.iC,B.C,B.C,n,q,s,0,0,p,n,B.z,18,18,r,$.aO()) -s.a.U(0,r.gcJ()) -o.at!==$&&A.cQ() -o.at=r}, -bu(){this.di()}, -al7(a){if(a!==B.H)if(this.gnP()!=null)this.gol()}, -xk(){var s,r=this,q=r.at -q===$&&A.c() -r.a.toString -q.saf(0,B.iC) -r.a.toString -q.sauF(null) -if(r.gTc()){r.a.toString -s=B.Di}else s=B.C -q.sk5(s) -if(r.gTc()){r.a.toString -s=B.Ec}else s=B.C -q.sa_f(s) -s=r.c.an(t.I) -s.toString -q.sbF(s.w) -s=r.a.w -q.sLM(s==null?6:s) -q.swV(r.a.r) -r.a.toString -s=r.c -s.toString -s=A.bD(s,B.bo,t.w).w -q.se4(0,s.f) -q.sE4(r.a.db) -r.a.toString -q.sKM(0) -r.a.toString -q.scr(0,null) -r.a.toString -q.sJf(0) -r.a.toString -q.sKV(0,18) -r.a.toString -q.sYG(18) -q.sXN(!r.gol())}, -aM(a){var s,r=this -r.b2(a) -s=r.a.e -if(s!=a.e)if(s===!0){s=r.w -if(s!=null)s.bb(0) -s=r.x -s===$&&A.c() -s.z=B.aB -s.ke(1,B.B,null)}else{s=r.x -s===$&&A.c() -s.de(0)}}, -akP(a){var s,r,q,p,o,n=this,m=B.b.gbD(n.r.f),l=A.bg("primaryDeltaFromDragStart"),k=A.bg("primaryDeltaFromLastDragUpdate") -switch(m.w.a.c.a){case 0:s=a.b -l.b=n.d.b-s -k.b=n.e.b-s -break -case 1:s=a.a -l.b=s-n.d.a -k.b=s-n.e.a -break -case 2:s=a.b -l.b=s-n.d.b -k.b=s-n.e.b -break -case 3:s=a.a -l.b=n.d.a-s -k.b=n.e.a-s -break}s=n.at -s===$&&A.c() -r=l.aI() -q=n.f -q.toString -p=s.Mz(r+q) -if(l.aI()>0){r=m.at -r.toString -r=pr}else r=!1 -else r=!0 -if(r){r=m.at -r.toString -p=r+s.Mz(k.aI())}s=m.at -s.toString -if(p!==s){o=p-m.r.uS(m,p) -s=n.c -s.toString -s=A.S4(s) -r=n.c -r.toString -switch(s.l3(r).a){case 1:case 3:case 4:case 5:s=m.z -s.toString -r=m.Q -r.toString -o=A.R(o,s,r) -break -case 2:case 0:break}m.eI(o)}}, -zh(){var s,r=this -if(!r.gpn()){s=r.w -if(s!=null)s.bb(0) -r.w=A.cM(r.a.ch,new A.aix(r))}}, -nr(){var s=this.r.f -if(s.length!==0)return A.bs(B.b.gbD(s).ghx()) -return null}, -C_(){if(this.nr()==null)return -var s=this.w -if(s!=null)s.bb(0)}, -C1(a){var s,r,q,p,o,n,m=this -m.r=m.gnP() -if(m.nr()==null)return -s=m.w -if(s!=null)s.bb(0) -s=m.x -s===$&&A.c() -s.bW(0) -m.e=m.d=a -s=m.at -s===$&&A.c() -r=s.db -q=r.b -q.toString -p=r.a -p.toString -o=q-p -if(o>0){q=r.c -q.toString -n=A.R(q/o,0,1)}else n=0 -r=r.d -r.toString -q=s.dx -q=q===B.U||q===B.X -p=s.Q -q=q?p.gc6(p)+p.gca(p):p.gdO() -p=s.w -s=s.cy -s===$&&A.c() -m.f=n*(r-q-2*p-s) -m.as=!0}, -aqh(a){var s,r=this -if(J.e(r.e,a))return -s=B.b.gbD(r.r.f) -if(!s.r.m3(s))return -if(r.nr()==null)return -r.akP(a) -r.e=a}, -C0(a,b){var s=this -s.as=!1 -if(s.nr()==null)return -s.zh() -s.r=s.f=s.e=s.d=null}, -ady(a){var s,r,q,p,o,n=this,m=n.gnP() -n.r=m -s=B.b.gbD(m.f) -if(!s.r.m3(s))return -m=s.w -switch(m.a.c.a){case 0:case 2:r=n.at -r===$&&A.c() -r=r.cx -r===$&&A.c() -q=a.c.b>r?B.U:B.X -break -case 3:case 1:r=n.at -r===$&&A.c() -r=r.cx -r===$&&A.c() -q=a.c.a>r?B.cY:B.c8 -break -default:q=null}m=$.av.ah$.z.h(0,m.Q) -m.toString -p=A.iT(m) -p.toString -o=A.akw(p,new A.eI(q,B.eA)) -m=B.b.gbD(n.r.f) -r=B.b.gbD(n.r.f).at -r.toString -m.wz(0,r+o,B.iQ,B.aE)}, -HE(a){var s,r,q=this.gnP() -if(q==null)return!0 -s=q.f -r=s.length -if(r>1)return!1 -return r===0||A.bs(B.b.gbD(s).ghx())===a}, -aiu(a){var s,r,q=this,p=q.a -p.toString -if(!p.n3(a.Vd()))return!1 -if(q.gpn()){p=q.x -p===$&&A.c() -s=p.Q -s===$&&A.c() -if(s!==B.aM&&s!==B.W)p.bW(0)}r=a.a -p=r.e -if(q.HE(A.bs(p))){s=q.at -s===$&&A.c() -s.ft(0,r,p)}return!1}, -acK(a){var s,r,q,p=this -if(!p.a.n3(a))return!1 -s=a.a -r=s.b -r.toString -q=s.a -q.toString -if(r<=q){r=p.x -r===$&&A.c() -q=r.Q -q===$&&A.c() -if(q!==B.H&&q!==B.aN)r.de(0) -r=s.e -if(p.HE(A.bs(r))){q=p.at -q===$&&A.c() -q.ft(0,s,r)}return!1}if(a instanceof A.jP||a instanceof A.kW){r=p.x -r===$&&A.c() -q=r.Q -q===$&&A.c() -if(q!==B.aM&&q!==B.W)r.bW(0) -r=p.w -if(r!=null)r.bb(0) -r=s.e -if(p.HE(A.bs(r))){q=p.at -q===$&&A.c() -q.ft(0,s,r)}}else if(a instanceof A.oL)if(p.d==null)p.zh() -return!1}, -gaa9(){var s=this,r=A.m(t.A,t.xR) -if(s.gnP()==null||!s.gol())return r -r.m(0,B.Vy,new A.cx(new A.ait(s),new A.aiu(s),t.ff)) -r.m(0,B.Vz,new A.cx(new A.aiv(s),new A.aiw(s),t.Bk)) -return r}, -Yf(a,b,c){var s,r=this.z -if($.av.ah$.z.h(0,r)==null)return!1 -s=A.aF4(r,a) -r=this.at -r===$&&A.c() -return r.XK(s,b,!0)}, -K8(a){var s,r=this -if(r.Yf(a.gbv(a),a.gcp(a),!0)){r.Q=!0 -s=r.x -s===$&&A.c() -s.bW(0) -s=r.w -if(s!=null)s.bb(0)}else if(r.Q){r.Q=!1 -r.zh()}}, -K9(a){this.Q=!1 -this.zh()}, -S5(a){var s=A.bs(B.b.gbD(this.r.f).ghx())===B.aC?a.gjk().a:a.gjk().b -return A.aAz(B.b.gbD(this.r.f).w.a.c)?s*-1:s}, -Tx(a){var s,r=B.b.gbD(this.r.f).at -r.toString -s=B.b.gbD(this.r.f).z -s.toString -s=Math.max(r+a,s) -r=B.b.gbD(this.r.f).Q -r.toString -return Math.min(s,r)}, -acs(a){var s,r,q,p=this -p.r=p.gnP() -s=p.S5(a) -r=p.Tx(s) -if(s!==0){q=B.b.gbD(p.r.f).at -q.toString -q=r!==q}else q=!1 -if(q)B.b.gbD(p.r.f).Lk(s)}, -aiw(a){var s,r,q,p,o=this -o.r=o.gnP() -s=o.at -s===$&&A.c() -s=s.w2(a.gd_()) -if(s===!0){s=o.r -if(s!=null)if(s.f.length!==0)s=!0 -else s=!1 -else s=!1}else s=!1 -if(s){r=B.b.gbD(o.r.f) -if(t.Mj.b(a)){if(!r.r.m3(r))return -q=o.S5(a) -p=o.Tx(q) -if(q!==0){s=r.at -s.toString -s=p!==s}else s=!1 -if(s)$.h5.bS$.ZA(0,a,o.gacr())}else if(t.xb.b(a)){s=r.at -s.toString -r.eI(s)}}}, -n(){var s=this,r=s.x -r===$&&A.c() -r.n() -r=s.w -if(r!=null)r.bb(0) -r=s.at -r===$&&A.c() -r.r.a.H(0,r.gcJ()) -r.d3() -s.a4f()}, -G(a){var s,r,q=this,p=null -q.xk() -s=q.gaa9() -r=q.at -r===$&&A.c() -return new A.eH(q.gait(),new A.eH(q.gacJ(),new A.ir(A.vt(B.bD,new A.l2(A.jB(A.kp(new A.ir(q.a.c,p),r,q.z,p,B.o),B.bp,p,p,new A.aiy(q),new A.aiz(q)),s,p,!1,p),p,p,p,p,q.gaiv(),p),p),p,t.WA),p,t.ji)}} -A.aix.prototype={ -$0(){var s=this.a,r=s.x -r===$&&A.c() -r.de(0) -s.w=null}, -$S:0} -A.ait.prototype={ -$0(){var s=this.a,r=s.a.CW,q=t.S,p=A.d5(q),o=A.aOy() -return new A.lx(s.z,r,null,B.ci,A.m(q,t.SP),p,s,null,o,A.m(q,t.F))}, -$S:530} -A.aiu.prototype={ -$1(a){var s=this.a -a.p2=s.gXB() -a.p3=new A.aiq(s) -a.p4=new A.air(s) -a.RG=new A.ais(s)}, -$S:531} -A.aiq.prototype={ -$1(a){return this.a.C1(a.b)}, -$S:66} -A.air.prototype={ -$1(a){return this.a.aqh(a.b)}, -$S:77} -A.ais.prototype={ -$1(a){return this.a.C0(a.b,a.c)}, -$S:116} -A.aiv.prototype={ -$0(){var s=this.a,r=t.S,q=A.d5(r) -return new A.ly(s.z,B.aE,18,B.ci,A.m(r,t.SP),q,s,null,A.yP(),A.m(r,t.F))}, -$S:533} -A.aiw.prototype={ -$1(a){a.al=this.a.gadx()}, -$S:534} -A.aiy.prototype={ -$1(a){var s -switch(a.gcp(a).a){case 1:case 4:s=this.a -if(s.gol())s.K9(a) -break -case 2:case 3:case 5:case 0:break}}, -$S:44} -A.aiz.prototype={ -$1(a){var s -switch(a.gcp(a).a){case 1:case 4:s=this.a -if(s.gol())s.K8(a) -break -case 2:case 3:case 5:case 0:break}}, -$S:535} -A.lx.prototype={ -ii(a){if(!this.Gx(this.dH,a.gbv(a),a.gcp(a)))return!1 -return this.a2q(a)}, -Gx(a,b,c){var s -if($.av.ah$.z.h(0,a)==null)return!1 -s=t.ip.a($.av.ah$.z.h(0,a).gaF()).f -s.toString -return t.sm.a(s).XL(A.aF4(a,b),c)}} -A.ly.prototype={ -ii(a){if(!this.Gx(this.fR,a.gbv(a),a.gcp(a)))return!1 -return this.a3K(a)}, -Gx(a,b,c){var s,r -if($.av.ah$.z.h(0,a)==null)return!1 -s=t.ip.a($.av.ah$.z.h(0,a).gaF()).f -s.toString -t.sm.a(s) -r=A.aF4(a,b) -return s.aqy(r,c)&&!s.XL(r,c)}} -A.yi.prototype={ -bY(){this.cR() -this.cA() -this.ep()}, -n(){var s=this,r=s.aZ$ -if(r!=null)r.H(0,s.ge8()) -s.aZ$=null -s.aP()}} -A.vC.prototype={ -E(a,b){this.Q.E(0,b) -this.SI()}, -F(a,b){var s,r,q=this -if(q.Q.F(0,b))return -s=B.b.d9(q.b,b) -B.b.ck(q.b,s) -r=q.c -if(s<=r)q.c=r-1 -r=q.d -if(s<=r)q.d=r-1 -b.H(0,q.gGp()) -q.SI()}, -SI(){var s,r -if(!this.y){this.y=!0 -s=new A.agw(this) -r=$.c6 -if(r.p4$===B.yc)A.ey(s) -else r.p1$.push(s)}}, -a9W(){var s,r,q,p,o,n,m,l,k=this,j=k.Q,i=A.a8(j,!0,A.p(j).c) -B.b.dX(i,k.gFq()) -s=k.b -k.b=A.b([],t.D1) -r=k.d -q=k.c -j=k.gGp() -p=0 -o=0 -while(!0){n=i.length -if(!(pMath.min(n,l))k.Bu(m) -m.U(0,j) -B.b.E(k.b,m);++p}}k.c=q -k.d=r -k.Q=A.aE(t.x9)}, -Jr(){this.Ac()}, -Ac(){var s=this,r=s.a0f() -if(!s.at.j(0,r)){s.at=r -s.T()}s.akA()}, -gamY(){return this.gFq()}, -a83(a,b){var s=A.fD(a.bt(0,null),new A.y(0,0,0+a.gq(a).a,0+a.gq(a).b)),r=A.fD(b.bt(0,null),new A.y(0,0,0+b.gq(b).a,0+b.gq(b).b)),q=A.aZt(s,r) -if(q!==0)return q -return A.aZs(s,r)}, -acM(){if(this.x)return -this.Ac()}, -a0f(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d=this,c=null,b=d.c -if(b===-1||d.d===-1||d.b.length===0)return new A.oM(c,c,B.ds,B.jA,d.b.length!==0) -if(!d.as){b=d.Ou(d.d,b) -d.d=b -d.c=d.Ou(d.c,b)}s=J.jm(d.b[d.d]) -b=d.c -r=d.d -q=b>=r -while(!0){if(!(r!==d.c&&s.a==null))break -r+=q?1:-1 -s=J.jm(d.b[r])}b=s.a -if(b!=null){p=d.b[r] -o=d.a.ga_() -o.toString -n=A.c5(p.bt(0,t.x.a(o)),b.a) -m=isFinite(n.a)&&isFinite(n.b)?new A.rU(n,b.b,b.c):c}else m=c -l=J.jm(d.b[d.c]) -k=d.c -while(!0){if(!(k!==d.d&&l.b==null))break -k+=q?-1:1 -l=J.jm(d.b[k])}b=l.b -if(b!=null){p=d.b[k] -o=d.a.ga_() -o.toString -j=A.c5(p.bt(0,t.x.a(o)),b.a) -i=isFinite(j.a)&&isFinite(j.b)?new A.rU(j,b.b,b.c):c}else i=c -h=A.b([],t.AO) -g=d.gaqj()?new A.y(0,0,0+d.gVN().a,0+d.gVN().b):c -for(f=d.d;f<=d.c;++f){e=J.jm(d.b[f]).d -b=new A.a1(e,new A.agx(d,f,g),A.W(e).i("a1<1,y>")).NB(0,new A.agy()) -B.b.K(h,A.a8(b,!0,b.$ti.i("q.E")))}return new A.oM(m,i,!s.j(0,l)?B.ko:s.c,h,!0)}, -Ou(a,b){var s=b>a -while(!0){if(!(a!==b&&J.jm(this.b[a]).c!==B.ko))break -a+=s?1:-1}return a}, -kS(a,b){return}, -akA(){var s,r=this,q=null,p=r.e,o=r.r,n=r.d -if(n===-1||r.c===-1){n=r.f -if(n!=null){n.kS(q,q) -r.f=null}n=r.w -if(n!=null){n.kS(q,q) -r.w=null}return}if(!J.e(r.b[n],r.f)){n=r.f -if(n!=null)n.kS(q,q)}if(!J.e(r.b[r.c],r.w)){n=r.w -if(n!=null)n.kS(q,q)}n=r.b -s=r.d -n=r.f=n[s] -if(s===r.c){r.w=n -n.kS(p,o) -return}n.kS(p,q) -n=r.b[r.c] -r.w=n -n.kS(q,o)}, -aq5(a){var s,r,q,p=this -for(s=p.b,r=s.length,q=0;q")).N(0,new A.agA(n)) -n.d=n.c=r}return B.aK}else if(s===B.b5){n.d=n.c=r-1 -return B.aK}}return B.aK}, -apo(a){var s,r,q,p=this -for(s=p.b,r=s.length,q=0;q0&&r===B.b6))break;--s -r=p.hC(p.b[s],a)}if(a.gjS())p.c=s -else p.d=s -return r}, -apq(a){var s,r,q,p=this -if(p.d===-1)switch(a.gBm(a)){case B.hv:case B.eE:p.d=p.c=p.b.length -break -case B.hw:case B.eD:p.d=p.c=0 -break}s=a.gjS()?p.c:p.d -r=p.hC(p.b[s],a) -switch(a.gBm(a)){case B.hv:if(r===B.b6)if(s>0){--s -r=p.hC(p.b[s],a.ano(B.eE))}break -case B.hw:if(r===B.b5){q=p.b -if(s=0&&n==null))break -r=o.b=q.hC(s[p],a) -switch(r.a){case 2:case 3:case 4:n=r -break -case 0:if(m===!1){++p -n=B.aK}else if(p===q.b.length-1)n=r -else{++p -m=!0}break -case 1:if(m===!0){--p -n=B.aK}else if(p===0)n=r -else{--p -m=!1}break}}if(b)q.c=p -else q.d=p -n.toString -return n}, -amZ(a,b){return this.gamY().$2(a,b)}} -A.agw.prototype={ -$1(a){var s=this.a -if(!s.y)return -s.y=!1 -if(s.Q.a!==0)s.a9W() -s.Jr()}, -$0(){return this.$1(null)}, -$C:"$1", -$R:0, -$D(){return[null]}, -$S:161} -A.agx.prototype={ -$1(a){var s,r=this.a,q=r.b[this.b] -r=r.a.ga_() -r.toString -s=A.fD(q.bt(0,t.x.a(r)),a) -r=this.c -if(r!=null)return r.ed(s) -return s}, -$S:537} -A.agy.prototype={ -$1(a){return a.gwf(a)&&!a.ga8(a)}, -$S:538} -A.agz.prototype={ -$1(a){return a!==this.a.b[this.b]}, -$S:539} -A.agA.prototype={ -$1(a){return this.a.hC(a,B.Dd)}, -$S:71} -A.Yq.prototype={} -A.wu.prototype={ -ae(){return new A.a_C(A.aE(t.M),null,!1,B.i)}} -A.a_C.prototype={ -aE(){var s,r,q,p=this -p.aV() -s=p.a -r=s.e -if(r!=null){q=p.c -q.toString -r.a=q -s=s.c -if(s!=null)p.sp0(s)}}, -aM(a){var s,r,q,p,o,n=this -n.b2(a) -s=a.e -if(s!=n.a.e){r=s==null -if(!r){s.a=null -n.d.N(0,s.gZF(s))}q=n.a.e -if(q!=null){p=n.c -p.toString -q.a=p -n.d.N(0,q.gAu(q))}s=r?null:s.at -r=n.a.e -if(!J.e(s,r==null?null:r.at))for(s=n.d,s=A.a8(s,!1,A.p(s).c),r=s.length,o=0;op.gq(p).a)){s=p.C$ -s=r+s.gq(s).b>p.gq(p).b}else s=!0}else s=!0}else s=!0 -return s}}, -ap(a,b){var s,r,q,p,o,n=this -if(n.C$!=null){s=n.R.at -s.toString -r=n.uh(s) -s=new A.aww(n,r) -q=n.ar -if(n.T9(r)){p=n.cx -p===$&&A.c() -o=n.gq(n) -q.saw(0,a.lP(p,b,new A.y(0,0,0+o.a,0+o.b),s,n.a1,q.a))}else{q.saw(0,null) -s.$2(a,b)}}}, -n(){this.ar.saw(0,null) -this.h_()}, -d4(a,b){var s,r=this.R.at -r.toString -s=this.uh(r) -b.aK(0,s.a,s.b)}, -lv(a){var s=this,r=s.R.at -r.toString -r=s.T9(s.uh(r)) -if(r){r=s.gq(s) -return new A.y(0,0,0+r.a,0+r.b)}return null}, -co(a,b){var s,r=this -if(r.C$!=null){s=r.R.at -s.toString -return a.i4(new A.awv(r,b),r.uh(s),b)}return!1}, -pc(a,b,c){var s,r,q,p,o,n,m,l=this -if(c==null)c=a.gkP() -if(!(a instanceof A.A)){s=l.R.at -s.toString -return new A.rK(s,c)}r=A.fD(a.bt(0,l.C$),c) -s=l.C$ -q=s.gq(s) -switch(l.B.a){case 0:p=l.gq(l).b -s=r.d -o=q.b-s -n=s-r.b -break -case 1:p=l.gq(l).a -o=r.a -n=r.c-o -break -case 2:p=l.gq(l).b -o=r.b -n=r.d-o -break -case 3:p=l.gq(l).a -s=r.c -o=q.a-s -n=s-r.a -break -default:o=null -n=null -p=null}m=o-(p-n)*b -return new A.rK(m,r.cz(l.uh(m)))}, -eO(a,b,c,d){this.NX(a,null,c,A.aKu(a,b,c,this.R,d,this))}, -tg(){return this.eO(B.aD,null,B.q,null)}, -nz(a){return this.eO(B.aD,null,B.q,a)}, -pm(a,b,c){return this.eO(a,null,b,c)}, -nA(a,b){return this.eO(B.aD,a,B.q,b)}, -Jo(a){var s,r,q=this,p=q.gRv(),o=q.R.at -o.toString -s=p-o -switch(q.B.a){case 0:q.gq(q) -q.gq(q) -p=q.gq(q) -o=q.gq(q) -r=q.R.at -r.toString -return new A.y(0,0-s,0+p.a,0+o.b+r) -case 1:q.gq(q) -p=q.R.at -p.toString -q.gq(q) -return new A.y(0-p,0,0+q.gq(q).a+s,0+q.gq(q).b) -case 2:q.gq(q) -q.gq(q) -p=q.R.at -p.toString -return new A.y(0,0-p,0+q.gq(q).a,0+q.gq(q).b+s) -case 3:q.gq(q) -q.gq(q) -p=q.gq(q) -o=q.R.at -o.toString -return new A.y(0-s,0,0+p.a+o,0+q.gq(q).b)}}, -$iD6:1} -A.aww.prototype={ -$2(a,b){var s=this.a.C$ -s.toString -a.dc(s,b.Y(0,this.b))}, -$S:8} -A.awv.prototype={ -$2(a,b){return this.a.C$.c2(a,b)}, -$S:9} -A.JV.prototype={ -ai(a){var s -this.dD(a) -s=this.C$ -if(s!=null)s.ai(a)}, -aa(a){var s -this.dE(0) -s=this.C$ -if(s!=null)s.aa(0)}} -A.a2A.prototype={} -A.a2B.prototype={} -A.SE.prototype={} -A.wH.prototype={ -bN(a){return A.aKR(this,!1)}} -A.SC.prototype={ -bN(a){return A.aKR(this,!0)}, -aD(a){var s=new A.RG(t.dq.a(a),A.m(t.S,t.x),0,null,null,A.af(t.T)) -s.aC() -return s}} -A.wG.prototype={ -ga_(){return t.Ss.a(A.b9.prototype.ga_.call(this))}, -bB(a,b){var s,r,q=this.f -q.toString -t.M0.a(q) -this.kc(0,b) -s=b.d -r=q.d -if(s!==r)q=A.u(s)!==A.u(r)||s.N4(r) -else q=!1 -if(q)this.jX()}, -jX(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a=this,a0={} -a.EC() -a.p3=null -a0.a=!1 -try{i=t.S -s=A.aE9(i,t.Dv) -r=A.hG(i,t.i) -i=a.f -i.toString -q=t.M0.a(i) -p=new A.amg(a0,a,s,q,r) -for(i=a.p2,h=i.$ti,h=h.i("@<1>").a5(h.i("fS<1,2>")).i("n0<1,2>"),h=A.a8(new A.n0(i,h),!0,h.i("q.E")),g=h.length,f=t.MR,e=a.p1,d=0;d").a5(g.i("fS<1,2>")).i("n0<1,2>")).N(0,p) -if(!a0.a&&a.R8){b=i.Yt() -k=b==null?-1:b -j=k+1 -J.hv(s,j,i.h(0,j)) -p.$1(j)}}finally{a.p4=null -a.ga_()}}, -anP(a,b){this.r.v_(this,new A.amd(this,b,a))}, -dV(a,b,c){var s,r,q,p,o=null -if(a==null)s=o -else{s=a.ga_() -s=s==null?o:s.b}r=t.MR -r.a(s) -q=this.a23(a,b,c) -if(q==null)p=o -else{p=q.ga_() -p=p==null?o:p.b}r.a(p) -if(s!=p&&s!=null&&p!=null)p.a=s.a -return q}, -ie(a){this.p2.F(0,a.d) -this.jm(a)}, -ZE(a){var s,r=this -r.ga_() -s=a.b -s.toString -s=t.U.a(s).b -s.toString -r.r.v_(r,new A.amh(r,s))}, -aoH(a,b,c,d,e){var s,r,q=this.f -q.toString -s=t.M0 -r=s.a(q).d.gBv() -q=this.f -q.toString -s.a(q) -d.toString -q=A.b07(b,c,d,e,r) -return q}, -Ju(){var s=this.p2 -s.ap7() -s.Yt() -s=this.f -s.toString -t.M0.a(s)}, -Jp(a){var s=a.b -s.toString -t.U.a(s).b=this.p4}, -ih(a,b){this.ga_().Et(0,t.x.a(a),this.p3)}, -il(a,b,c){this.ga_().wy(t.x.a(a),this.p3)}, -ja(a,b){this.ga_().F(0,t.x.a(a))}, -b3(a){var s=this.p2,r=s.$ti -r=r.i("@<1>").a5(r.z[1]).i("tE<1,2>") -r=A.c3(new A.tE(s,r),r.i("q.E"),t.v) -B.b.N(A.a8(r,!0,A.p(r).i("q.E")),a)}} -A.amg.prototype={ -$1(a){var s,r,q,p,o=this,n=o.b -n.p4=a -q=n.p2 -if(q.h(0,a)!=null&&!J.e(q.h(0,a),o.c.h(0,a))){q.m(0,a,n.dV(q.h(0,a),null,a)) -o.a.a=!0}s=n.dV(o.c.h(0,a),o.d.d.IL(n,a),a) -if(s!=null){p=o.a -p.a=p.a||!J.e(q.h(0,a),s) -q.m(0,a,s) -q=s.ga_().b -q.toString -r=t.U.a(q) -if(a===0)r.a=0 -else{q=o.e -if(q.ak(0,a))r.a=q.h(0,a)}if(!r.c)n.p3=t.Qv.a(s.ga_())}else{o.a.a=!0 -q.F(0,a)}}, -$S:49} -A.ame.prototype={ -$0(){return null}, -$S:16} -A.amf.prototype={ -$0(){return this.a.p2.h(0,this.b)}, -$S:545} -A.amd.prototype={ -$0(){var s,r,q,p=this,o=p.a -o.p3=p.b==null?null:t.Qv.a(o.p2.h(0,p.c-1).ga_()) -s=null -try{q=o.f -q.toString -r=t.M0.a(q) -q=o.p4=p.c -s=o.dV(o.p2.h(0,q),r.d.IL(o,q),q)}finally{o.p4=null}q=p.c -o=o.p2 -if(s!=null)o.m(0,q,s) -else o.F(0,q)}, -$S:0} -A.amh.prototype={ -$0(){var s,r,q,p=this -try{r=p.a -q=r.p4=p.b -s=r.dV(r.p2.h(0,q),null,q)}finally{p.a.p4=null}p.a.p2.F(0,p.b)}, -$S:0} -A.Bs.prototype={ -o1(a){var s,r,q=a.b -q.toString -t.Cl.a(q) -s=this.f -if(q.vQ$!==s){q.vQ$=s -r=a.gba(a) -if(r instanceof A.t&&!s)r.W()}}} -A.Ef.prototype={} -A.hP.prototype={ -bN(a){var s=A.p(this),r=t.v -return new A.Eg(A.m(s.i("hP.0"),r),A.m(t.D2,r),this,B.R,s.i("@").a5(s.i("hP.1")).i("Eg<1,2>"))}} -A.la.prototype={ -gfM(a){var s=this.e0$ -return s.gaR(s)}, -fp(){J.fX(this.gfM(this),this.gLx())}, -b3(a){J.fX(this.gfM(this),a)}, -zO(a,b){var s=this.e0$,r=s.h(0,b) -if(r!=null){this.jF(r) -s.F(0,b)}if(a!=null){s.m(0,b,a) -this.h0(a)}}} -A.Eg.prototype={ -ga_(){return this.$ti.i("la<1,2>").a(A.b9.prototype.ga_.call(this))}, -b3(a){var s=this.p1 -s.gaR(s).N(0,a)}, -ie(a){this.p1.F(0,a.d) -this.jm(a)}, -eg(a,b){this.m6(a,b) -this.U3()}, -bB(a,b){this.kc(0,b) -this.U3()}, -U3(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f=this,e=f.f -e.toString -s=f.$ti -s.i("hP<1,2>").a(e) -r=f.p2 -q=t.v -f.p2=A.m(t.D2,q) -p=f.p1 -s=s.c -f.p1=A.m(s,q) -for(q=e.gNe(),o=q.length,n=0;n").a(A.b9.prototype.ga_.call(this)).zO(a,b)}, -ja(a,b){var s=this.$ti.i("la<1,2>") -if(s.a(A.b9.prototype.ga_.call(this)).e0$.h(0,b)===a)s.a(A.b9.prototype.ga_.call(this)).zO(null,b)}, -il(a,b,c){var s=this.$ti.i("la<1,2>").a(A.b9.prototype.ga_.call(this)) -if(s.e0$.h(0,b)===a)s.zO(null,b) -s.zO(a,c)}} -A.Iz.prototype={ -aH(a,b){return this.NY(a,b)}} -A.SF.prototype={ -I(){return"SnapshotMode."+this.b}} -A.Ej.prototype={ -sAA(a){return}} -A.SH.prototype={ -aD(a){var s=new A.yl(A.bD(a,B.bP,t.w).w.b,this.w,this.e,this.f,!0,null,A.af(t.T)) -s.aC() -s.saW(null) -return s}, -aH(a,b){t.xL.a(b) -b.sanc(0,this.e) -b.sase(0,this.f) -b.sqF(0,A.bD(a,B.bP,t.w).w.b) -b.soU(this.w) -b.sam9(!0)}} -A.yl.prototype={ -sqF(a,b){var s,r=this -if(b===r.v)return -r.v=b -s=r.dJ -if(s==null)return -else{s.n() -r.dJ=null -r.av()}}, -soU(a){var s,r=this,q=r.V -if(a===q)return -s=r.gdR() -q.H(0,s) -r.V=a -if(A.u(q)!==A.u(r.V)||r.V.eE(q))r.av() -if(r.y!=null)r.V.U(0,s)}, -sanc(a,b){var s,r=this,q=r.am -if(b===q)return -s=r.gzp() -q.H(0,s) -r.am=b -if(r.y!=null)b.U(0,s)}, -sase(a,b){if(b===this.br)return -this.br=b -this.av()}, -sam9(a){return}, -ai(a){var s=this -s.am.U(0,s.gzp()) -s.V.U(0,s.gdR()) -s.tB(a)}, -aa(a){var s,r=this -r.eb=!1 -r.am.H(0,r.gzp()) -r.V.H(0,r.gdR()) -s=r.dJ -if(s!=null)s.n() -r.eX=r.dJ=null -r.nD(0)}, -n(){var s,r=this -r.am.H(0,r.gzp()) -r.V.H(0,r.gdR()) -s=r.dJ -if(s!=null)s.n() -r.eX=r.dJ=null -r.h_()}, -afJ(){var s,r=this -r.eb=!1 -s=r.dJ -if(s!=null)s.n() -r.eX=r.dJ=null -r.av()}, -ap(a,b){var s=this,r=s.gq(s) -if(r.ga8(r)){r=s.dJ -if(r!=null)r.n() -s.eX=s.dJ=null -return}r=s.dJ -if(r!=null)r.n() -s.eX=s.dJ=null -s.V.wK(a,b,s.gq(s),A.fj.prototype.gfb.call(s)) -return}} -A.SG.prototype={} -A.Gf.prototype={ -U(a,b){}, -n(){}, -H(a,b){}, -$iaa:1, -$iaH:1} -A.SQ.prototype={ -G(a){return A.iH(B.ai,1)}} -A.Ek.prototype={ -anL(a,b,c,d){var s=this -if(!s.e)return B.eO -return new A.Ek(c,s.b,s.c,s.d,!0)}, -anw(a){return this.anL(null,null,a,null)}, -k(a){var s=this -return B.c.jd(" spell check enabled : "+s.e+"\n spell check service : "+A.j(s.a)+"\n misspelled text style : "+A.j(s.c)+"\n spell check suggestions toolbar builder: "+A.j(s.d)+"\n")}, -j(a,b){var s -if(b==null)return!1 -if(this===b)return!0 -if(b instanceof A.Ek)if(b.a==this.a)s=b.e===this.e -else s=!1 -else s=!1 -return s}, -gA(a){var s=this -return A.T(s.a,s.c,s.d,s.e,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.lh.prototype={ -k(a){var s=""+"TableRow(",r=this.b -if(r!=null)s+=r.k(0)+", " -r=this.c -s=(r.length===0?s+"no children":s+A.j(r))+")" -return s.charCodeAt(0)==0?s:s}} -A.i1.prototype={} -A.ED.prototype={ -bN(a){return new A.a0p(B.IA,A.d5(t.v),this,B.R)}, -aD(a){var s,r,q,p,o=this,n=o.c,m=n.length -n=m!==0?n[0].c.length:0 -s=a.an(t.I) -s.toString -s=s.w -r=A.tJ(a,null) -q=A.b([],t.B) -p=A.hG(t.S,t.PA) -n=new A.wh(B.Iz,n,m,p,o.e,s,o.r,r,o.w,null,q,A.af(t.T)) -n.aC() -m=A.b([],t.iG) -B.b.sp(m,n.R*n.a1) -n.B=m -n.sa_4(o.y) -return n}, -aH(a,b){var s,r=this,q=null -b.samW(q) -b.sao8(r.e) -s=a.an(t.I) -s.toString -b.sbF(s.w) -b.samg(0,r.r) -b.sa_4(r.y) -b.sls(A.tJ(a,q)) -b.sao9(r.w) -b.sLK(0,q)}} -A.anM.prototype={ -$1(a){return a.b!=null}, -$S:546} -A.anN.prototype={ -$1(a){return a.b}, -$S:547} -A.a0p.prototype={ -ga_(){return t.Jc.a(A.b9.prototype.ga_.call(this))}, -eg(a,b){var s,r,q=this,p={} -q.p2=!0 -q.m6(a,b) -p.a=-1 -s=q.f -s.toString -s=t.On.a(s).c -r=A.W(s).i("a1<1,i1>") -q.p1=A.a8(new A.a1(s,new A.ay3(p,q),r),!1,r.i("am.E")) -q.Uk() -q.p2=!1}, -ih(a,b){var s=t.Jc -s.a(A.b9.prototype.ga_.call(this)) -if(!(a.b instanceof A.lg))a.b=new A.lg(B.e) -if(!this.p2)s.a(A.b9.prototype.ga_.call(this)).MS(b.a,b.b,a)}, -il(a,b,c){}, -ja(a,b){t.Jc.a(A.b9.prototype.ga_.call(this)).MS(b.a,b.b,null)}, -bB(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c=this -c.p2=!0 -s=t.pN -r=A.m(t.f0,s) -for(q=c.p1,p=q.length,o=0;o")) -m=A.b([],t.lD) -for(q=b.c,l=c.p3,k=t.PN,j=0;j"));q.u();)c.DH(p.gJ(p),B.o_,l) -c.p1=m -c.Uk() -l.a0(0) -c.kc(0,b) -c.p2=!1}, -Uk(){var s=t.Jc.a(A.b9.prototype.ga_.call(this)),r=this.p1,q=r.length!==0?r[0].b.length:0,p=A.W(r).i("i8<1,A>") -s.a0J(q,A.a8(new A.i8(r,new A.ay1(),p),!0,p.i("q.E")))}, -b3(a){var s,r,q,p -for(s=this.p1,r=A.W(s),r=r.i("@<1>").a5(r.i("ap")),s=new A.uL(B.b.ga9(s),new A.ay6(),B.iu,r.i("uL<1,2>")),q=this.p3,r=r.z[1];s.u();){p=s.d -if(p==null)p=r.a(p) -if(!q.t(0,p))a.$1(p)}}, -ie(a){this.p3.E(0,a) -this.jm(a) -return!0}} -A.ay3.prototype={ -$1(a){var s,r,q,p={} -p.a=0 -s=this.a;++s.a -r=a.c -q=A.W(r).i("a1<1,ap>") -return new A.i1(null,A.a8(new A.a1(r,new A.ay2(p,s,this.b),q),!1,q.i("am.E")))}, -$S:548} -A.ay2.prototype={ -$1(a){return this.c.r8(a,new A.yw(this.a.a++,this.b.a))}, -$S:549} -A.ay4.prototype={ -$1(a){return!0}, -$S:550} -A.ay5.prototype={ -$1(a){return!this.a.t(0,a)}, -$S:551} -A.ay1.prototype={ -$1(a){var s=a.b -return new A.a1(s,new A.ay0(),A.W(s).i("a1<1,A>"))}, -$S:552} -A.ay0.prototype={ -$1(a){var s=a.ga_() -s.toString -return t.x.a(s)}, -$S:553} -A.ay6.prototype={ -$1(a){return a.b}, -$S:554} -A.T9.prototype={ -o1(a){var s=a.b -s.toString -t.o3.a(s)}} -A.yw.prototype={ -j(a,b){if(b==null)return!1 -if(J.Y(b)!==A.u(this))return!1 -return b instanceof A.yw&&this.a===b.a&&this.b===b.b}, -gA(a){return A.T(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.a2H.prototype={} -A.Gm.prototype={ -I(){return"_DragState."+this.b}} -A.EG.prototype={} -A.EJ.prototype={} -A.EI.prototype={} -A.EK.prototype={} -A.EH.prototype={} -A.IR.prototype={ -gwj(){var s=this.BJ$ -return s==null?A.aE(t.bd):s}, -hb(a){var s,r,q=this -if(t.n2.b(a)){s=A.pC(a.gcp(a),q.b) -r=q.BK$ -if(a.gbv(a).Z(0,r.b).gcB()>s){q.yv() -q.vM$=q.vL$=null}}else if(t.oN.b(a)){q.qZ$=a -if(q.lz$!=null){q.yv() -if(q.os$==null)q.os$=A.cM(B.bC,q.ga8i())}}else if(t.Ko.b(a))q.A_()}, -ir(a){this.A_()}, -adH(a){var s=this.vL$ -s.toString -if(a===s)return!0 -else return!1}, -aeg(a){var s=this.vM$ -if(s==null)return!1 -return a.Z(0,s).gcB()<=100}, -yv(){var s=this.os$ -if(s!=null){s.bb(0) -this.os$=null}}, -a8j(){}, -A_(){var s=this -s.yv() -s.vM$=s.BK$=s.vL$=null -s.kz$=0 -s.qZ$=s.lz$=s.BJ$=null}} -A.zu.prototype={ -abm(){var s=this -if(s.cy!=null)s.cw("onDragUpdate",new A.a4V(s)) -s.p2=s.p3=null}, -ii(a){var s=this -if(s.fy==null)switch(a.gdY(a)){case 1:if(s.ch==null&&s.cx==null&&s.cy==null&&s.db==null&&s.CW==null&&s.dx==null)return!1 -break -default:return!1}else if(a.gbh()!==s.fy)return!1 -return s.pv(a)}, -hw(a){var s,r=this -if(r.k1===B.f_){r.a3V(a) -r.fy=a.gbh() -r.ok=r.k4=0 -r.k1=B.lc -s=a.gbv(a) -r.k3=new A.fE(a.gd_(),s) -r.go=A.cM(B.aE,new A.a4W(r,a))}}, -r5(a){if(a.gdY(a)!==1)if(!this.fx)this.NG(a)}, -iO(a){var s,r=this -if(a!==r.fy)return -r.zY() -r.p4.E(0,a) -s=r.lz$ -if(s!=null)r.OU(s) -r.fx=!0 -s=r.k2 -if(s!=null)r.EN(s) -s=r.qZ$ -if(s!=null)r.OV(s)}, -qH(a){var s,r=this -switch(r.k1.a){case 0:r.Tt() -r.P(B.ac) -break -case 1:if(r.dy)if(r.fx){if(r.lz$!=null){if(!r.p4.F(0,a))r.Dn(a,B.ac) -r.k1=B.hW -s=r.lz$ -s.toString -r.EN(s) -r.OP()}}else{r.Tt() -r.P(B.ac)}else{s=r.qZ$ -if(s!=null)r.OV(s)}break -case 2:r.OP() -break}r.zY() -r.k1=B.f_ -r.dy=!1}, -hb(a){var s,r,q,p,o,n,m=this -if(a.gbh()!==m.fy)return -m.a4W(a) -if(t.n2.b(a)){s=A.pC(a.gcp(a),m.b) -if(!m.dy){r=m.k3 -r===$&&A.c() -r=a.gbv(a).Z(0,r.b).gcB()>s}else r=!0 -m.dy=r -r=m.k1 -if(r===B.hW)m.OQ(a) -else if(r===B.lc){if(m.k2==null){if(a.gbL(a)==null)q=null -else{r=a.gbL(a) -r.toString -q=A.rd(r)}p=m.Tu(a.gkK()) -r=m.k4 -r===$&&A.c() -o=A.rs(q,null,p,a.gd_()).gcB() -n=m.Tv(p) -m.k4=r+o*J.i4(n==null?1:n) -r=m.ok -r===$&&A.c() -m.ok=r+A.rs(q,null,a.gkK(),a.gd_()).gcB()*B.h.gEj(1) -if(!m.Tw(a.gcp(a)))r=m.fx&&Math.abs(m.ok)>A.aAJ(a.gcp(a),m.b) -else r=!0 -if(r){m.k2=a -m.k1=B.hW -if(!m.fx)m.P(B.bt)}}r=m.k2 -if(r!=null)m.EN(r)}}else if(t.oN.b(a)){r=m.k1 -if(r===B.lc)m.y3(a) -else if(r===B.hW)m.HM(a.gbh())}else if(t.Ko.b(a)){m.k1=B.f_ -m.HM(a.gbh())}}, -ir(a){var s=this -if(a!==s.fy)return -s.a4X(a) -s.zY() -s.HM(a) -s.zE() -s.zD()}, -n(){this.zY() -this.zD() -this.a3W()}, -EN(a){var s,r,q,p,o,n=this -if(!n.fx)return -if(n.at===B.a1){s=n.k3 -s===$&&A.c() -r=a.gqC() -n.k3=s.Y(0,new A.fE(a.gkK(),r))}n.a7z(a) -if(!a.gkK().j(0,B.e)){if(a.gbL(a)!=null){s=a.gbL(a) -s.toString -q=A.rd(s)}else q=null -s=n.k3 -s===$&&A.c() -p=s.a.Y(0,a.gkK()) -o=A.rs(q,null,a.gkK(),p) -s=a.gkK() -n.p1=n.k3.Y(0,new A.fE(s,o)) -n.OQ(a) -n.p1=null}}, -OU(a){var s,r,q,p,o,n=this -if(n.fr)return -s=a.gbv(a) -r=a.gd_() -q=n.e.h(0,a.gbh()) -q.toString -p=n.kz$ -o=n.gwj() -if(n.ch!=null)n.cw("onTapDown",new A.a4T(n,new A.EG(s,r,q,p,o))) -n.fr=!0}, -OV(a){var s,r,q,p,o,n=this -if(!n.fx)return -s=a.gcp(a) -r=a.gbv(a) -q=a.gd_() -p=n.kz$ -o=n.gwj() -if(n.CW!=null)n.cw("onTapUp",new A.a4U(n,new A.EJ(r,q,s,p,o))) -n.zE() -if(!n.p4.F(0,a.gbh()))n.Dn(a.gbh(),B.ac)}, -a7z(a){var s,r,q,p=this -if(p.cx!=null){s=a.gfV(a) -r=p.k3 -r===$&&A.c() -q=p.e.h(0,a.gbh()) -q.toString -p.cw("onDragStart",new A.a4R(p,new A.EI(s,r.b,r.a,q,p.kz$,p.gwj())))}p.k2=null}, -OQ(a){var s,r,q,p,o,n,m,l=this,k=l.p1,j=k!=null?k.b:a.gbv(a) -k=l.p1 -s=k!=null?k.a:a.gd_() -k=a.gfV(a) -r=a.gkK() -q=l.e.h(0,a.gbh()) -q.toString -p=l.k3 -p===$&&A.c() -p=j.Z(0,p.b) -o=s.Z(0,l.k3.a) -n=l.kz$ -m=l.gwj() -if(l.cy!=null)l.cw("onDragUpdate",new A.a4S(l,new A.EK(k,r,j,s,q,p,o,n,m)))}, -OP(){var s,r=this,q=r.p3 -if(q!=null){q.bb(0) -r.abm()}q=r.kz$ -s=r.gwj() -if(r.db!=null)r.cw("onDragEnd",new A.a4Q(r,new A.EH(0,q,s))) -r.zE() -r.zD()}, -Tt(){var s,r=this -if(!r.fr)return -s=r.dx -if(s!=null)r.cw("onCancel",s) -r.zD() -r.zE()}, -HM(a){this.iA(a) -if(!this.p4.F(0,a))this.Dn(a,B.ac)}, -zE(){this.fx=this.fr=!1 -this.fy=null}, -zD(){return}, -zY(){var s=this.go -if(s!=null){s.bb(0) -this.go=null}}} -A.a4V.prototype={ -$0(){var s=this.a,r=s.cy -r.toString -s=s.p2 -s.toString -return r.$1(s)}, -$S:0} -A.a4W.prototype={ -$0(){var s=this.a,r=s.lz$ -if(r!=null){s.OU(r) -if(s.kz$>1)s.P(B.bt)}return null}, -$S:0} -A.a4T.prototype={ -$0(){return this.a.ch.$1(this.b)}, -$S:0} -A.a4U.prototype={ -$0(){return this.a.CW.$1(this.b)}, -$S:0} -A.a4R.prototype={ -$0(){return this.a.cx.$1(this.b)}, -$S:0} -A.a4S.prototype={ -$0(){return this.a.cy.$1(this.b)}, -$S:0} -A.a4Q.prototype={ -$0(){return this.a.db.$1(this.b)}, -$S:0} -A.li.prototype={ -Tw(a){var s=this.k4 -s===$&&A.c() -return Math.abs(s)>A.pC(a,this.b)}, -Tu(a){return new A.k(a.a,0)}, -Tv(a){return a.a}} -A.lj.prototype={ -Tw(a){var s=this.k4 -s===$&&A.c() -return Math.abs(s)>A.aAJ(a,this.b)}, -Tu(a){return a}, -Tv(a){return null}} -A.FF.prototype={ -hw(a){var s,r=this -r.tv(a) -s=r.os$ -if(s!=null&&s.b==null)r.A_() -r.qZ$=null -if(r.lz$!=null)s=!(r.os$!=null&&r.aeg(a.gbv(a))&&r.adH(a.gdY(a))) -else s=!1 -if(s)r.kz$=1 -else ++r.kz$ -r.yv() -r.lz$=a -s=$.fH.dA$ -s===$&&A.c() -s=s.a -s=s.gaR(s) -r.BJ$=A.hJ(s,A.p(s).i("q.E")) -r.vL$=a.gdY(a) -r.vM$=a.gbv(a) -r.BK$=new A.fE(a.gd_(),a.gbv(a))}, -n(){this.A_() -this.jn()}} -A.a0r.prototype={} -A.a0s.prototype={} -A.a0t.prototype={} -A.a0u.prototype={} -A.a0v.prototype={} -A.Th.prototype={ -aD(a){var s=new A.Dq(new A.uN(new WeakMap(),t.ii),A.aE(t.Cn),A.m(t.X,t.hh),B.bD,null,A.af(t.T)) -s.aC() -s.saW(null) -return s}, -aH(a,b){}} -A.Dq.prototype={ -DF(a){var s -this.e_.F(0,a) -s=this.bV -s.h(0,a.ci).F(0,a) -if(s.h(0,a.ci).a===0)s.F(0,a.ci)}, -c2(a,b){var s,r,q=this -if(!q.gq(q).t(0,b))return!1 -s=q.co(a,b)||q.v===B.aG -if(s){r=new A.pZ(b,q) -q.cI.m(0,r,a) -a.E(0,r)}return s}, -jN(a,b){var s,r,q,p,o,n,m,l,k=this -if(!t.pY.b(a)||a.gdY(a)!==1)return -s=k.e_ -if(s.a===0)return -A.kA(b) -r=k.cI.a.get(b) -if(r==null)return -q=k.aaB(s,r.a) -p=t.Cn -o=A.alu(q,q.gH1(),A.p(q).c,p).P4() -n=A.aE(p) -for(q=o.ga9(o),p=k.bV;q.u();){m=q.gJ(q) -m=p.h(0,m.ci) -m.toString -n.K(0,m)}l=s.oh(n) -for(s=l.ga9(l);s.u();){q=s.gJ(s).e_ -if(q!=null)q.$1(a)}for(s=A.db(n,n.r,n.$ti.c),q=s.$ti.c;s.u();){p=s.d -if(p==null)q.a(p)}}, -aaB(a,b){var s,r,q,p,o=A.aE(t.zE) -for(s=b.length,r=this.e_,q=0;q")),s.i("a1u<1>")),B.i,s.i("xd<1>"))}} -A.xd.prototype={ -gak1(){var s=this.e -s===$&&A.c() -return s}, -guB(){var s=this.a.r,r=this.x -if(r==null){s=$.aO() -s=new A.Fl(new A.aH(s),new A.aH(s),B.VM,s) -this.x=s}else s=r -return s}, -xh(){var s,r,q,p=this,o=p.d -if(o.gvn()==null)return -s=p.f -r=s==null -q=r?null:s.b!=null -if(q===!0){if(!r)s.bb(0) -p.HY(0,o.gvn())}else p.HY(0,o.xh()) -p.Ad()}, -wX(){this.HY(0,this.d.wX()) -this.Ad()}, -Ad(){var s=this.guB(),r=this.d,q=r.a,p=q.length!==0&&r.b>0 -s.sl(0,new A.xe(p,r.gVr())) -if(A.bA()!==B.aL)return -s=$.aGc() -if(s.b===this){q=q.length!==0&&r.b>0 -r=r.gVr() -s=s.a -s===$&&A.c() -s.cZ("UndoManager.setUndoState",A.l(["canUndo",q,"canRedo",r],t.N,t.y),t.H)}}, -akl(a){this.xh()}, -ahr(a){this.wX()}, -HY(a,b){var s=this -if(b==null)return -if(J.e(b,s.w))return -s.w=b -s.r=!0 -try{s.a.e.$1(b)}finally{s.r=!1}}, -S8(){var s,r=this -if(J.e(r.a.c.a,r.w))return -if(r.r)return -s=r.a -s=s.d.$2(r.w,s.c.a) -if(!(s==null?!0:s))return -s=r.a.c.a -r.w=s -r.f=r.ak2(s)}, -QI(){if(!this.a.f.gcj())return -$.aGc().b=this -this.Ad()}, -apQ(a){switch(a.a){case 0:this.xh() -break -case 1:this.wX() -break}}, -aE(){var s,r=this -r.aV() -s=A.b4m(B.cC,new A.apV(r),r.$ti.c) -r.e!==$&&A.cQ() -r.e=s -r.S8() -r.a.c.U(0,r.gHh()) -r.QI() -r.a.f.U(0,r.gGk()) -r.guB().w.U(0,r.ga_i()) -r.guB().x.U(0,r.gZz())}, -aM(a){var s,r,q=this -q.b2(a) -s=a.c -if(q.a.c!==s){r=q.d -B.b.a0(r.a) -r.b=-1 -r=q.gHh() -s.H(0,r) -q.a.c.U(0,r)}s=a.f -if(q.a.f!==s){r=q.gGk() -s.H(0,r) -q.a.f.U(0,r)}q.a.toString}, -n(){var s,r=this -r.a.c.H(0,r.gHh()) -r.a.f.H(0,r.gGk()) -r.guB().w.H(0,r.ga_i()) -r.guB().x.H(0,r.gZz()) -s=r.x -if(s!=null)s.n() -s=r.f -if(s!=null)s.bb(0) -r.aP()}, -G(a){var s=t.g,r=t.d -return A.pM(A.l([B.Vq,new A.cH(this.gakk(),new A.b7(A.b([],s),r),t._n).dM(a),B.Vc,new A.cH(this.gahq(),new A.b7(A.b([],s),r),t.fN).dM(a)],t.A,t.od),this.a.w)}, -ak2(a){return this.gak1().$1(a)}} -A.apV.prototype={ -$1(a){var s=this.a -s.d.n9(a) -s.Ad()}, -$S(){return this.a.$ti.i("~(1)")}} -A.xe.prototype={ -k(a){return"UndoHistoryValue(canUndo: "+this.a+", canRedo: "+this.b+")"}, -j(a,b){if(b==null)return!1 -if(this===b)return!0 -return b instanceof A.xe&&b.a===this.a&&b.b===this.b}, -gA(a){var s=this.a?519018:218159 -return A.T(s,this.b?519018:218159,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.Fl.prototype={ -n(){var s=this.w,r=$.aO() -s.ag$=r -s.aj$=0 -s=this.x -s.ag$=r -s.aj$=0 -this.d3()}} -A.a1u.prototype={ -gvn(){var s=this.a -return s.length===0?null:s[this.b]}, -gVr(){var s=this.a.length -return s!==0&&this.b"))}} -A.yD.prototype={ -aE(){var s,r=this -r.aV() -s=r.a.c -r.d=s.a -s.U(0,r.gId())}, -aM(a){var s,r,q=this -q.b2(a) -s=a.c -if(s!==q.a.c){r=q.gId() -s.H(0,r) -s=q.a.c -q.d=s.a -s.U(0,r)}}, -n(){this.a.c.H(0,this.gId()) -this.aP()}, -al9(){this.ao(new A.azh(this))}, -G(a){var s,r=this.a -r.toString -s=this.d -s===$&&A.c() -return r.d.$3(a,s,null)}} -A.azh.prototype={ -$0(){var s=this.a -s.d=s.a.c.a}, -$S:0} -A.Uc.prototype={ -G(a){var s=this.c -return new A.Jk(s,new A.Ho(s,this.d,null),null)}} -A.Jk.prototype={ -cP(a){return this.f!==a.f}} -A.Ft.prototype={ -aD(a){var s=this,r=s.e,q=A.aqg(a,r),p=A.af(t.O5) -r=new A.Dr(s.r,r,q,s.w,250,B.ix,s.Q,p,0,null,null,A.af(t.T)) -r.aC() -r.K(0,null) -q=r.a3$ -if(q!=null)r.dr=q -return r}, -aH(a,b){var s=this,r=s.e -b.shx(r) -r=A.aqg(a,r) -b.sWd(r) -b.sIy(s.r) -b.sct(0,s.w) -b.samq(s.y) -b.samr(B.ix) -b.sjA(s.Q)}, -bN(a){return new A.a1D(A.d5(t.v),this,B.R)}} -A.a1D.prototype={ -ga_(){return t.E1.a(A.ih.prototype.ga_.call(this))}, -eg(a,b){var s=this -s.bk=!0 -s.a2t(a,b) -s.U1() -s.bk=!1}, -bB(a,b){var s=this -s.bk=!0 -s.a2v(0,b) -s.U1() -s.bk=!1}, -U1(){var s,r=this,q=r.f -q.toString -t.Oo.a(q) -q=r.gfM(r) -s=t.E1 -if(!q.ga8(q)){q=s.a(A.ih.prototype.ga_.call(r)) -s=r.gfM(r) -q.saT(t.IT.a(s.gM(s).ga_())) -r.B=0}else{s.a(A.ih.prototype.ga_.call(r)).saT(null) -r.B=null}}, -ih(a,b){var s=this -s.NE(a,b) -if(!s.bk&&b.b===s.B)t.E1.a(A.ih.prototype.ga_.call(s)).saT(t.IT.a(a))}, -il(a,b,c){this.NF(a,b,c)}, -ja(a,b){var s=this -s.a2u(a,b) -if(!s.bk&&t.E1.a(A.ih.prototype.ga_.call(s)).dr===a)t.E1.a(A.ih.prototype.ga_.call(s)).saT(null)}} -A.So.prototype={ -aD(a){var s=this.e,r=A.aqg(a,s),q=A.af(t.O5) -s=new A.RF(s,r,this.r,250,B.ix,this.w,q,0,null,null,A.af(t.T)) -s.aC() -s.K(0,null) -return s}, -aH(a,b){var s=this.e -b.shx(s) -s=A.aqg(a,s) -b.sWd(s) -b.sct(0,this.r) -b.sjA(this.w)}} -A.a31.prototype={} -A.a32.prototype={} -A.Uh.prototype={ -G(a){var s=this.e,r=new A.a1E(s,!0,A.v5(this.c,!1,null),null) -return new A.Jl(s,r,null)}} -A.aqh.prototype={ -$1(a){this.a.a=a -return!1}, -$S:18} -A.Jl.prototype={ -cP(a){return this.f!==a.f}} -A.a1E.prototype={ -aD(a){var s=new A.a_b(this.e,!0,null,A.af(t.T)) -s.aC() -s.saW(null) -return s}, -aH(a,b){b.sauY(0,this.e) -b.sarX(!0)}} -A.a_b.prototype={ -sauY(a,b){if(b===this.v)return -this.v=b -this.av()}, -sarX(a){return}, -fu(a){this.py(a)}, -ap(a,b){if(!this.v)return -this.iC(a,b)}} -A.xn.prototype={ -AM(a,b,c){var s,r=this.a,q=r!=null -if(q)a.rD(r.xB(c)) -b.toString -s=b[a.gZ3()] -r=s.a -a.UX(r.a,r.b,this.b,s.d,s.c) -if(q)a.ex()}, -b3(a){return a.$1(this)}, -Mx(a,b){var s=b.a -if(a.a===s)return this -b.a=s+1 -return null}, -VB(a,b){var s=b.a -b.a=s+1 -return a-s===0?65532:null}, -bi(a,b){var s,r,q,p,o,n=this -if(n===b)return B.cs -if(A.u(b)!==A.u(n))return B.b4 -s=n.a -r=s==null -q=b.a -if(r!==(q==null))return B.b4 -t.a7.a(b) -if(!n.e.tu(0,b.e)||n.b!==b.b)return B.b4 -if(!r){q.toString -p=s.bi(0,q) -o=p.a>0?p:B.cs -if(o===B.b4)return o}else o=B.cs -return o}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.Y(b)!==A.u(s))return!1 -if(!s.NA(0,b))return!1 -return b instanceof A.k8&&b.e.tu(0,s.e)&&b.b===s.b&&!0}, -gA(a){var s=this -return A.T(A.fz.prototype.gA.call(s,s),s.e,s.b,s.c,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.aqj.prototype={ -$1(a){var s,r=null -if(a instanceof A.k8){s=this.a.a++ -this.b.push(new A.a1H(a,new A.bL(A.c7(r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,new A.ms(s,"PlaceholderSpanIndexSemanticsTag("+s+")"),r,r,r,r,r),!1,!1,!1,!1,new A.US(a,this.c,a.e,r),r),r))}return!0}, -$S:67} -A.a1H.prototype={ -o1(a){var s=a.b -s.toString -t.ot.a(s).b=this.f}} -A.US.prototype={ -aD(a){var s=this.e -s=new A.I4(this.f,s.b,s.c,null,A.af(t.T)) -s.aC() -return s}, -aH(a,b){var s=this.e -b.sh1(s.b) -b.sko(s.c) -b.shT(0,this.f)}} -A.I4.prototype={ -shT(a,b){if(b===this.B)return -this.B=b -this.W()}, -sh1(a){if(this.R===a)return -this.R=a -this.W()}, -sko(a){return}, -be(a){var s=this.C$ -s=s==null?null:s.be(a/this.B) -if(s==null)s=0 -return s*this.B}, -b7(a){var s=this.C$ -s=s==null?null:s.b7(a/this.B) -if(s==null)s=0 -return s*this.B}, -b8(a){var s=this.C$ -s=s==null?null:s.b8(a/this.B) -if(s==null)s=0 -return s*this.B}, -bf(a){var s=this.C$ -s=s==null?null:s.bf(a/this.B) -if(s==null)s=0 -return s*this.B}, -eS(a){var s=this.C$,r=s==null?null:s.l1(a) -$label0$0:{if(r==null){s=this.ya(a) -break $label0$0}s=this.B*r -break $label0$0}return s}, -cg(a){var s=this.C$,r=s==null?null:s.cg(new A.ar(0,a.b/this.B,0,1/0)) -if(r==null)r=B.o -return a.aX(r.a6(0,this.B))}, -bs(){var s,r=this,q=r.C$ -if(q==null)return -s=t.k -q.bz(new A.ar(0,s.a(A.t.prototype.ga2.call(r)).b/r.B,0,1/0),!0) -r.id=s.a(A.t.prototype.ga2.call(r)).aX(q.gq(q).a6(0,r.B))}, -d4(a,b){var s=this.B -b.f2(0,s,s)}, -ap(a,b){var s,r,q,p=this,o=p.C$ -if(o==null){p.ch.saw(0,null) -return}s=p.B -if(s===1){a.dc(o,b) -p.ch.saw(0,null) -return}r=p.cx -r===$&&A.c() -q=p.ch -q.saw(0,a.wU(r,b,A.vy(s,s,1),new A.awu(o),t.zV.a(q.a)))}, -co(a,b){var s,r=this.C$ -if(r==null)return!1 -s=this.B -return a.Iv(new A.awt(r),b,A.vy(s,s,1))}} -A.awu.prototype={ -$2(a,b){return a.dc(this.a,b)}, -$S:8} -A.awt.prototype={ -$2(a,b){return this.a.c2(a,b)}, -$S:9} -A.a2s.prototype={ -ai(a){var s -this.dD(a) -s=this.C$ -if(s!=null)s.ai(a)}, -aa(a){var s -this.dE(0) -s=this.C$ -if(s!=null)s.aa(0)}} -A.Fx.prototype={ -ae(){return new A.a1K(B.i)}} -A.a1K.prototype={ -bu(){var s,r,q=this -q.di() -s=q.a -s.toString -r=q.d -if(r!=null)B.b.F(r.k1,s.d) -s=q.c -s.toString -s=q.d=A.PE(s,t.X) -r=q.a -r.toString -if(s!=null)s.k1.push(r.d)}, -aM(a){var s,r=this -r.b2(a) -s=a.d -if(!J.e(r.a.d,s)&&r.d!=null){B.b.F(r.d.k1,s) -s=r.a -s.toString -r.d.k1.push(s.d)}}, -n(){var s,r=this.a -r.toString -s=this.d -if(s!=null)B.b.F(s.k1,r.d) -this.aP()}, -G(a){return this.a.c}} -A.Oc.prototype={ -a8o(a){var s,r={},q=r.a=A.b([],t.Ne),p=new A.abZ(r,this,A.b([],t.ko),q) -for(s=J.as(a);s.u();)p.$1(s.gJ(s)) -return q}, -G(a){var s,r=this,q=null,p=r.e,o=p.h(0,"root") -o=o==null?q:o.b -s=A.f6(q,q,o==null?B.k:o,q,q,q,q,q,"monospace",q,q,q,q,q,q,q,q,!0,q,q,q,q,q,q,q,q).b0(r.r) -p=p.h(0,"root") -p=p==null?q:p.c -if(p==null)p=B.j -o=$.aSO().at3(0,r.c,r.d).b -o.toString -return A.cC(q,A.ajV(q,q,q,B.bm,q,q,!0,q,A.c8(r.a8o(o),q,q,s,q),B.aR,q,q,1,B.aH),B.m,p,q,q,q,q,q,r.f,q,q,q)}} -A.abZ.prototype={ -$1(a){var s,r,q,p,o=this,n=null,m=a.b -if(m!=null){s=o.a.a -r=a.a -s.push(r==null?A.c8(n,n,n,n,m):A.c8(n,n,n,o.b.e.h(0,r),m))}else{m=a.c -if(m!=null){q=A.b([],t.Ne) -s=o.a -r=s.a -p=a.a -p.toString -r.push(A.c8(q,n,n,o.b.e.h(0,p),n)) -p=o.c -p.push(s.a) -s.a=q -J.fX(m,new A.ac_(s,o,a,p,o.d))}}}, -$S:567} -A.ac_.prototype={ -$1(a){var s,r,q=this -q.b.$1(a) -s=q.c.c -s.toString -if(a===J.lH(s)){s=q.d -r=s.length===0?q.e:s.pop() -q.a.a=r}}, -$S:198} -A.aBq.prototype={ -$4(a,b,c,d){if(a.gdB()==="http"||a.gdB()==="https")return A.aDj(a.k(0),d,c) -else if(a.gdB()==="data")return A.b3H(a,c,d) -else if(a.gdB()==="resource")return A.Op(a.gdL(a),d,c) -else if(a.gdB()==="http"||a.gdB()==="https")return A.aDj(a.k(0),d,c) -else return A.aDj(A.b6j(A.aFp(),a.k(0)),d,c)}, -$S:569} -A.aBr.prototype={ -$2(a,b){var s,r -switch(b){case B.Ln:s=window.navigator.userAgent -s.toString -r=B.c.t(s,"Mac OS X")?A.aJi(A.fu(a)):A.aDB(A.a2(a)) -break -case B.Lm:r=A.aJi(A.fu(a)) -break -case B.Ll:default:r=A.aDB(A.a2(a))}s=A.ct(a,B.bQ) -s=s==null?null:s.c -return r.o9(s==null?1:s)}, -$S:570} -A.FH.prototype={} -A.a0q.prototype={} -A.H0.prototype={} -A.afk.prototype={ -G(a){var s,r,q,p=this -B.b.a0(p.at) -s=p.ax -B.b.a0(s) -B.b.a0(p.ay) -B.b.a0(p.ch) -B.b.a0(p.CW) -p.dx=!1 -s.push(new A.FH(null,A.b([],t.p))) -for(r=a.length,q=0;q") -i=A.a8(new A.a1(k,new A.afl(),j),!0,j.i("am.E"))}else i=A.b([l],r) -B.b.E(i,m.e) -g.push(h.yr(h.RC(i),b))}else if(g.length!==0&&B.b.gL(g) instanceof A.mF&&m instanceof A.mF){l=q.a(g.pop()).d -k=l.c -i=k!=null?A.cZ(k,!0,p):A.b([l],r) -k=m.d -if(k!=null)i.push(k) -g.push(h.yr(h.RC(i),b))}else g.push(m)}return g}, -Tz(a){switch(this.UH(a).a){case 0:return B.aR -case 2:return B.bl -case 1:return B.hL -case 4:return B.cS -case 3:return B.cS -case 5:return B.cS}}, -UH(a){var s=this -switch(a){case"p":return s.c.rx -case"h1":return s.c.ry -case"h2":return s.c.to -case"h3":return s.c.x1 -case"h4":return s.c.x2 -case"h5":return s.c.xr -case"h6":return s.c.y1 -case"ul":return s.c.y2 -case"ol":return s.c.b_ -case"blockquote":return s.c.bn -case"pre":return s.c.al -case"hr":break -case"li":break}return B.Z}, -ajW(a){var s=this -switch(a){case"p":return s.c.c -case"h1":return s.c.f -case"h2":return s.c.w -case"h3":return s.c.y -case"h4":return s.c.Q -case"h5":return s.c.at -case"h6":return s.c.ay}return B.z}, -RC(a){var s,r,q,p,o,n,m=null,l=a.length -if(l<2)return A.c8(a,m,m,m,m) -s=A.b([B.b.gM(a)],t.Ne) -for(r=1;r") -k=A.a54(A.a8(new A.a1(l,A.aOv(),h),!0,h.i("am.E")),m).Z0() -m.RZ(k) -j=m.a9G(k) -h=i.a -i.d=new A.afk(i,!1,s,h.y,h.at,h.ax,h.ay,h.ch,h.CW,!1,h.cy,h.x,!1,A.b([],r),A.b([],t.vB),A.b([],t.EM),A.b([],t.an),A.b([],t.vf),A.wq(0)).G(j)}, -PE(){var s,r,q=this.e -if(q.length===0)return -s=A.cZ(q,!0,t.nd) -B.b.a0(q) -for(q=s.length,r=0;r") -b=document -g=b.querySelector("#toast-content") -if(b.querySelector("#toast-content")!=null){g.toString -J.tQ(g)}f=b.createElement("script") -f.id="toast-content" -B.NW.a0L(f," var toastElement = Toastify({\n text: '"+h+"',\n gravity: '"+A.j(n)+"',\n position: '"+m+"',\n duration: "+j+",\n close: "+A.j(i)+',\n backgroundColor: "'+l+'",\n });\n toastElement.showToast();\n ') -p=b.querySelector("head") -p.toString -J.aGP(p).E(0,f) -if(k!=null){b=b.querySelector(".toastify") -b.toString -e=B.h.jc(k,16) -p=B.c.bK(e,2) -d=B.c.S(e,0,2) -b=b.style -b.toString -c=B.Ei.a6X(b,"color") -b.setProperty(c,"#"+(p+d),"")}q=!0 -s=1 -break $async$outer -default:throw A.d(A.e9("Unimplemented","The fluttertoast plugin for web doesn't implement the method '"+b+"'",null,null))}case 1:return A.G(q,r)}}) -return A.H($async$Ka,r)}, -Cd(){var s=0,r=A.I(t.H),q,p,o,n,m,l -var $async$Cd=A.D(function(a,b){if(a===1)return A.F(b,r) -while(true)switch(s){case 0:o=A.b([],t.mo) -n=A.b([],t._B) -m=document -l=m.createElement("link") -l.id="toast-css" -q=t.N -B.H4.sql(l,A.l(["rel","stylesheet"],q,q)) -l.href="assets/packages/fluttertoast/assets/toastify.css" -n.push(l) -p=m.createElement("script") -p.async=!0 -p.src="assets/packages/fluttertoast/assets/toastify.js" -q=new A.Gw(p,"load",!1,t.rF) -o.push(q.gM(q)) -n.push(p) -m=m.querySelector("head") -m.toString -J.aGP(m).K(0,n) -s=2 -return A.K(A.kD(o,t.H),$async$Cd) -case 2:return A.G(null,r)}}) -return A.H($async$Cd,r)}} -A.aBs.prototype={ -$0(){return this.a.fN(0)}, -$S:0} -A.aBt.prototype={ -$1(a){return"https://accounts.google.com/gsi/client"}, -$S:31} -A.TV.prototype={ -k(a){return"TrustedTypesException: "+this.a}, -$ibV:1} -A.O3.prototype={ -k(a){return"GoogleSignInAuthentication:"+this.a.k(0)}} -A.h6.prototype={ -gAK(){var s=0,r=A.I(t.x2),q,p=this,o -var $async$gAK=A.D(function(a,b){if(a===1)return A.F(b,r) -while(true)switch(s){case 0:if(!J.e(p.r.y,p))throw A.d(A.a4("User is no longer signed in.")) -s=3 -return A.K($.a3u().t1(p.b,!0),$async$gAK) -case 3:o=b -if(o.a==null)o.a=p.f -q=new A.O3(o) -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$gAK,r)}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(!(b instanceof A.h6))return!1 -return s.a==b.a&&s.b===b.b&&s.c===b.c&&s.d==b.d&&s.e==b.e&&s.f==b.f}, -gA(a){var s=this -return A.T(s.a,s.b,s.c,s.d,s.f,s.e,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){var s=this -return"GoogleSignInAccount:"+A.l(["displayName",s.a,"email",s.b,"id",s.c,"photoUrl",s.d,"serverAuthCode",s.e],t.N,t.z).k(0)}} -A.O2.prototype={ -pE(a){var s=0,r=A.I(t.z1),q,p=this,o -var $async$pE=A.D(function(b,c){if(b===1)return A.F(c,r) -while(true)switch(s){case 0:s=3 -return A.K(p.yH(),$async$pE) -case 3:s=4 -return A.K(a.$0(),$async$pE) -case 4:o=c -q=p.SZ(o!=null&&o instanceof A.f2?A.aIT(p,o):null) -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$pE,r)}, -SZ(a){var s=this -if(!J.e(a,s.y)){s.y=a -s.r.E(0,a)}return s.y}, -yH(){var s=0,r=A.I(t.H),q,p=this,o -var $async$yH=A.D(function(a,b){if(a===1)return A.F(b,r) -while(true)switch(s){case 0:o=p.w -q=o==null?p.w=p.yC().kq(new A.abs(p)):o -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$yH,r)}, -yC(){var s=0,r=A.I(t.H),q=this,p -var $async$yC=A.D(function(a,b){if(a===1)return A.F(b,r) -while(true)switch(s){case 0:s=2 -return A.K($.a3u().w5(new A.alS(B.cm,B.OL,null,q.d,null,!1)),$async$yC) -case 2:p=$.a3u().ga_v() -if(p!=null)new A.fq(new A.abr(q),p,p.$ti.i("fq")).N(0,q.gaiO()) -return A.G(null,r)}}) -return A.H($async$yC,r)}, -ER(a,b){return this.a6y(a,!0)}, -a6y(a,b){var s=0,r=A.I(t.z1),q,p=this,o,n -var $async$ER=A.D(function(c,d){if(c===1)return A.F(d,r) -while(true)switch(s){case 0:o=p.x -n=o==null?p.pE(a):o.bQ(0,new A.abq(p,!0,a),t.z1) -p.x=A.aYt(n) -q=n -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$ER,r)}, -hU(){return this.ER($.a3u().gN8(),!0).o5(new A.abu(),new A.abv())}} -A.abs.prototype={ -$1(a){this.a.w=null -throw A.d(a)}, -$S:575} -A.abr.prototype={ -$1(a){return a!=null?A.aIT(this.a,a):null}, -$S:576} -A.abt.prototype={ -$1(a){}, -$S:21} -A.abq.prototype={ -$1(a){var s=this.a,r=s.y -if(r!=null)return r -return s.pE(this.c)}, -$S:577} -A.abv.prototype={ -$1(a){return a instanceof A.ov&&a.a==="sign_in_canceled"}, -$S:59} -A.abu.prototype={ -$1(a){return null}, -$S:21} -A.abo.prototype={ -ga_v(){return null}} -A.Pw.prototype={ -w5(a){return B.k_.hY("init",A.l(["signInOption",a.b.I(),"scopes",a.a,"hostedDomain",a.c,"clientId",a.d,"serverClientId",a.e,"forceCodeForRefreshToken",!1],t.N,t.z),!1,t.H)}, -hU(){return B.k_.Kv("signIn",t.N,t.z).bQ(0,A.b7e(),t.o9)}, -t1(a,b){var s=t.N,r=t.z -return B.k_.wc("getTokens",A.l(["email",a,"shouldRecoverAuth",!0],s,r),s,r).bQ(0,new A.afO(),t.Z6)}} -A.afO.prototype={ -$1(a){var s -a.toString -s=J.X(a) -return new A.nU(A.au(s.h(a,"idToken")),A.au(s.h(a,"accessToken")),A.au(s.h(a,"serverAuthCode")))}, -$S:579} -A.alT.prototype={ -I(){return"SignInOption."+this.b}} -A.alS.prototype={} -A.f2.prototype={ -gA(a){var s=this -return A.b5X(A.b([s.a,s.b,s.c,s.d,s.e,s.f],t._m))}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(!(b instanceof A.f2))return!1 -return b.a==s.a&&b.b===s.b&&b.c===s.c&&b.d==s.d&&b.e==s.e&&b.f==s.f}} -A.nU.prototype={ -gA(a){return A.aN_(A.azN(A.azN(A.azN(0,J.C(this.a)),J.C(this.b)),J.C(this.c)))}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(!(b instanceof A.nU))return!1 -return b.a==s.a&&b.b==s.b&&b.c==s.c}} -A.O4.prototype={ -gXT(){var s,r=this.b -if(r==null)A.U(A.a4("GoogleSignInPlugin::init() or GoogleSignInPlugin::initWithParams() must be called before any other method in this plugin.")) -s=this.a -s===$&&A.c() -return A.kD(A.b([s,r.a],t.mo),t.H)}, -w5(a){return this.aqR(a)}, -aqR(a){var s=0,r=A.I(t.H),q=this,p,o,n,m,l -var $async$w5=A.D(function(b,c){if(b===1)return A.F(c,r) -while(true)switch(s){case 0:l=a.d -q.b=new A.b3(new A.ae($.ai,t.c),t.h) -p=q.a -p===$&&A.c() -s=2 -return A.K(p,$async$w5) -case 2:if(q.d==null){p=new A.NZ(!1,A.cZ(a.a,!0,t.N),q.c) -p.a8h() -o=t.e -n=o.a({client_id:l,auto_select:!0,callback:A.bd(p.gafj()),cancel_on_tap_outside:!1}) -self.google.accounts.id.initialize(n) -m=o.a({client_id:l,callback:A.bd(p.gag2()),scope:" ",error_callback:A.bd(p.gag0()),hosted_domain:a.c}) -p.c=self.google.accounts.oauth2.initTokenClient(m) -q.d=p}q.b.fN(0) -return A.G(null,r)}}) -return A.H($async$w5,r)}, -ahs(){$.aGK() -$.a3I().ZC("gsi_login_button",new A.abp(),!0)}, -hU(){var s=0,r=A.I(t.o9),q,p=this,o,n,m -var $async$hU=A.D(function(a,b){if(a===1)return A.F(b,r) -while(true)switch(s){case 0:s=3 -return A.K(p.gXT(),$async$hU) -case 3:try{n=p.d.hU() -q=n -s=1 -break}catch(l){o=A.a6(l) -n=A.e9(J.di(o),"https://developers.google.com/identity/oauth2/web/guides/error","Exception raised from signIn",null) -throw A.d(n)}case 1:return A.G(q,r)}}) -return A.H($async$hU,r)}, -t1(a,b){return this.a0l(a,!0)}, -a0l(a,b){var s=0,r=A.I(t.Z6),q,p=this,o,n -var $async$t1=A.D(function(c,d){if(c===1)return A.F(d,r) -while(true)switch(s){case 0:s=3 -return A.K(p.gXT(),$async$t1) -case 3:o=p.d -n=o.f -o=o.r -n=n==null?null:n.credential -q=new A.nU(n,o==null?null:o.access_token,null) -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$t1,r)}, -ga_v(){var s=this.c -return new A.dh(s,A.p(s).i("dh<1>"))}} -A.abp.prototype={ -$1(a){var s=self.document,r=A.b(["div"],t.jl),q=t.e.a(A.bq(s,"createElement",r)) -q.setAttribute("style","width: 100%; height: 100%; overflow: hidden; display: flex; flex-wrap: wrap; align-content: center; justify-content: center;") -q.id="sign_in_button_"+a -return q}, -$S:580} -A.NZ.prototype={ -a8h(){var s,r=this,q=null,p=t.uS,o=new A.dG(q,q,p) -r.e=o -r.d=new A.dG(q,q,p) -new A.dh(o,p.i("dh<1>")).KK(new A.abf(r),new A.abg(r)) -p=r.d -new A.dh(p,A.p(p).i("dh<1>")).KK(new A.abh(r),new A.abi(r)) -p=r.d -o=A.p(p).i("dh<1>") -s=r.w -new A.fq(A.b7d(),new A.dh(p,o),o.i("fq")).BT(r.ga7Q()).N(0,s.gi2(s))}, -a7R(a){J.di(a)}, -afk(a){var s=a.error,r=this.d -if(s!=null){r===$&&A.c() -s=a.error -s.toString -r.km(s)}else{r===$&&A.c() -r.E(0,a)}}, -ag3(a){var s=a.error,r=this.e -if(s!=null){r===$&&A.c() -s=a.error -s.toString -r.km(s)}else{r===$&&A.c() -r.E(0,a)}}, -ag1(a){var s=this.e -s===$&&A.c() -s.km(a.type)}, -hU(){var s=0,r=A.I(t.o9),q,p=this,o,n,m,l,k -var $async$hU=A.D(function(a,b){if(a===1)return A.F(b,r) -while(true)switch(s){case 0:l=A.aFx(p.f) -k=p.c -k===$&&A.c() -o=l==null -n=o?"select_account":"" -o=o?null:l.b -m=A.a8(p.b,!0,t.N) -if(p.f==null)B.b.K(m,B.Ib) -k.requestAccessToken(t.e.a({prompt:n,hint:o,scope:B.b.bH(m," ")})) -k=p.e -k===$&&A.c() -k=new A.dh(k,A.p(k).i("dh<1>")) -s=3 -return A.K(k.gM(k),$async$hU) -case 3:q=p.yu() -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$hU,r)}, -yu(){var s=0,r=A.I(t.o9),q,p=this,o -var $async$yu=A.D(function(a,b){if(a===1)return A.F(b,r) -while(true)switch(s){case 0:s=p.f==null&&p.x==null?3:4 -break -case 3:o=p.r -o.toString -s=5 -return A.K(A.aBR(o),$async$yu) -case 5:p.x=b -case 4:o=A.aFx(p.f) -q=o==null?p.x:o -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$yu,r)}} -A.abf.prototype={ -$1(a){this.a.r=a}, -$S:2} -A.abg.prototype={ -$1(a){J.di(a) -this.a.r=null}, -$S:201} -A.abh.prototype={ -$1(a){this.a.f=a}, -$S:2} -A.abi.prototype={ -$1(a){J.di(a) -this.a.f=null}, -$S:201} -A.a46.prototype={} -A.O6.prototype={ -alK(a){return B.b.N(a,new A.abA(this))}, -ZG(a){var s=this.a -B.b.t(s,a) -B.b.F(s,a) -s=this.b -if(!!s.fixed$length)A.U(A.V("removeWhere")) -B.b.ml(s,new A.abH(a),!0) -this.CF()}, -atN(a){return B.b.N(a,new A.abI(this))}, -UQ(a,b){var s=new A.f_(a,b,null) -this.qa(s) -return s}, -qa(a){var s,r={} -r.a=r.b=!1 -s=this.a -B.b.N(s,new A.aby(r,a)) -if(!r.b)s.push(a.a) -if(!r.a)s.push(a.b) -r=this.b -if(!B.b.t(r,a)){r.push(a) -this.CF()}}, -alF(a){return B.b.N(a,new A.abz(this))}, -LA(a,b){var s=this.b -if(!!s.fixed$length)A.U(A.V("removeWhere")) -B.b.ml(s,new A.abG(a,b),!0)}, -Mh(a,b){return A.OB(this.b,new A.abB(a,b))}, -pt(a){var s=this.Ms(a),r=A.W(s).i("a1<1,bT>") -return A.a8(new A.a1(s,new A.abJ(),r),!0,r.i("am.E"))}, -atj(a){var s=this.a_Y(a),r=A.W(s).i("a1<1,bT>") -return A.a8(new A.a1(s,new A.abF(),r),!0,r.i("am.E"))}, -Ms(a){var s=this.b,r=A.W(s).i("aL<1>") -return A.a8(new A.aL(s,new A.abD(a),r),!0,r.i("q.E"))}, -a_Y(a){var s=this.b,r=A.W(s).i("aL<1>") -return A.a8(new A.aL(s,new A.abC(a),r),!0,r.i("q.E"))}, -CF(){return B.b.N(this.c,new A.abE())}, -cq(){var s=this.a,r=t.N,q=this.b -return B.ar.j0(A.l(["nodes",A.a8(new A.a1(s,new A.abK(),A.W(s).i("a1<1,n>")),!0,r),"edges",A.a8(new A.a1(q,new A.abL(),A.W(q).i("a1<1,az>")),!0,t.GU)],r,t.UX))}} -A.abA.prototype={ -$1(a){var s=this.a -s.a.push(a) -s.CF() -return null}, -$S:4} -A.abH.prototype={ -$1(a){var s=this.a -return a.a.j(0,s)||a.b.j(0,s)}, -$S:54} -A.abI.prototype={ -$1(a){return this.a.ZG(a)}, -$S:4} -A.aby.prototype={ -$1(a){var s=this,r=s.a -if(!r.b&&a.j(0,s.b.a)){s.b.a=a -r.b=!0}else if(!r.a&&a.j(0,s.b.b)){s.b.b=a -r.a=!0}}, -$S:4} -A.abz.prototype={ -$1(a){return this.a.qa(a)}, -$S:50} -A.abG.prototype={ -$1(a){return a.a.j(0,this.a)&&a.b.j(0,this.b)}, -$S:54} -A.abB.prototype={ -$1(a){return a.a.j(0,this.a)&&a.b.j(0,this.b)}, -$S:54} -A.abJ.prototype={ -$1(a){return a.b}, -$S:205} -A.abF.prototype={ -$1(a){return a.a}, -$S:205} -A.abD.prototype={ -$1(a){return a.a.j(0,this.a)}, -$S:54} -A.abC.prototype={ -$1(a){return a.b.j(0,this.a)}, -$S:54} -A.abE.prototype={ -$1(a){a.avx()}, -$S:586} -A.abK.prototype={ -$1(a){return B.h.k(a.gA(a))}, -$S:587} -A.abL.prototype={ -$1(a){var s,r,q=a.a -q=B.h.k(q.gA(q)) -s=a.b -r=t.N -return A.l(["from",q,"to",B.h.k(s.gA(s))],r,r)}, -$S:588} -A.bT.prototype={ -j(a,b){var s -if(b==null)return!1 -if(this!==b)s=b instanceof A.bT&&this.gA(this)===b.gA(b) -else s=!0 -return s}, -gA(a){var s=J.C(this.a.a) -return s}, -k(a){return"Node{position: "+this.d.k(0)+", key: "+this.a.k(0)+", _size: "+this.c.k(0)+"}"}} -A.f_.prototype={ -j(a,b){var s -if(b==null)return!1 -if(this!==b)s=b instanceof A.f_&&this.gA(this)===b.gA(b) -else s=!0 -return s}, -gA(a){var s=A.T(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a) -return s}} -A.B3.prototype={ -ae(){return new A.Xa(B.i)}} -A.Xa.prototype={ -G(a){var s=this.a,r=s.a,q=s.c,p=s.d,o=s.e -s=A.b1B(q,s.f) -return new A.X9(q,p,o,s,r)}} -A.X9.prototype={ -aD(a){var s=new A.Rn(0,null,null,A.af(t.T)) -s.aC() -s.R=this.f -s.B=this.e -s.sWM(this.r) -s.K(0,null) -return s}, -aH(a,b){b.B=this.e -b.W() -b.R=this.f -b.W() -b.sWM(this.r)}} -A.au0.prototype={ -$1(a){var s=this.a.$1(a) -this.b.push(s)}, -$S:4} -A.Rn.prototype={ -sWM(a){a.sbC(0,B.Q) -a.stq(B.cu) -this.a1=a -this.av()}, -e7(a){if(!(a.b instanceof A.kS))a.b=new A.kS(null,null,B.e)}, -bs(){var s,r,q,p,o,n,m,l,k=this -if(k.dG$===0){s=t.k.a(A.t.prototype.ga2.call(k)) -k.id=new A.Q(A.R(1/0,s.a,s.b),A.R(1/0,s.c,s.d)) -return}r=k.a3$ -s=t.k.a(A.t.prototype.ga2.call(k)) -q=A.pX(new A.Q(A.R(1/0,s.a,s.b),A.R(1/0,s.c,s.d))) -for(s=t.lk,p=0;r!=null;){o=s.a(r.b) -r.bz(q,!0) -n=k.B -n===$&&A.c() -n=n.a[p] -m=r.id -n.c=m==null?A.U(A.a4("RenderBox was not laid out: "+A.u(r).k(0)+"#"+A.aV(r))):m -r=o.ab$;++p}n=k.R -n===$&&A.c() -m=k.B -m===$&&A.c() -n.w=n.VP(m) -n.fc(0) -n.aqQ() -n.ao0() -n.arA() -n.asl() -n.anj() -n.a1_(10,10) -l=n.ams(n.w) -n.aoa() -n.au1() -k.id=l -r=k.a3$ -for(p=0;r!=null;){o=s.a(r.b) -n=k.B -o.a=n.a[p].d -r=o.ab$;++p}}, -ap(a,b){var s,r,q,p,o=this -a.gbU(a).cQ(0) -a.gbU(a).aK(0,b.a,b.b) -s=o.R -s===$&&A.c() -s=s.y -if(s!=null){r=a.gbU(a) -q=o.B -q===$&&A.c() -p=o.a1 -p===$&&A.c() -s.atQ(0,r,q,p)}a.gbU(a).cl(0) -o.od(a,b)}, -co(a,b){return this.qB(a,b)}} -A.kS.prototype={} -A.a4p.prototype={ -WL(a,b,c,d,e,f){var s,r,q,p=Math.atan2(f-d,e-c)+3.141592653589793,o=p-0.5,n=e+10*Math.cos(o),m=f+10*Math.sin(o) -o=p+0.5 -s=e+10*Math.cos(o) -r=f+10*Math.sin(o) -o=this.a -o.eh(0,e,f) -o.cc(0,n,m) -o.cc(0,s,r) -o.aL(0) -a.cY(o,b) -q=A.b([(e+n+s)/3,(f+m+r)/3],t.B) -o.fc(0) -return q}, -IV(a,b,c,d,e){var s,r,q,p,o,n,m=A.aT(4,0,!1,t.i) -m[0]=a -m[1]=b -s=(b-d)/(a-c) -r=e.c -q=r.b/2 -p=r.a/2 -o=s*p -n=q/s -if(-q<=o&&o<=q){r=e.d.a -if(r>a){m[2]=c-p -m[3]=d-o}else if(rb){m[2]=c-n -m[3]=d-q}}return m}} -A.a7U.prototype={} -A.amT.prototype={ -Ym(){var s=this.x.c -return s===1||s===2}, -ams(a){var s={} -s.a=s.b=1/0 -s.c=s.d=-1/0 -B.b.N(a.a,new A.an2(s)) -return new A.Q(s.d-s.b,s.c-s.a)}, -a1_(a,b){B.b.N(this.f,new A.ant(a,b))}, -fc(a){var s=this -B.b.a0(s.f) -s.d.a0(0) -s.e.a0(0) -s.b.a0(0) -s.c.a0(0) -s.z=1}, -aqQ(){var s=this,r=s.w -r===$&&A.c() -B.b.N(r.a,new A.anf(s)) -B.b.N(s.w.b,new A.ang(s))}, -ao0(){var s=this.w -s===$&&A.c() -B.b.N(s.a,new A.an8(this))}, -Ws(a){var s,r=this,q=r.e -if(q.t(0,a))return -q.E(0,a) -q=r.d -q.E(0,a) -s=r.w -s===$&&A.c() -B.b.N(s.Ms(a),new A.an9(r,a)) -q.F(0,a)}, -arA(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5=this,a6=a5.w -a6===$&&A.c() -if(a6.a.length===0)return -s=a5.VP(a6) -r=a5.Mu(s) -for(a6=a5.f;r.length!==0;){a6.push(r) -s.atN(r) -r=a5.Mu(s)}for(q=t.Nf,p=t._A,o=t.f2,n=a5.b,m=a5.c,l=t.B,k=0;k") -b=A.a8(new A.aL(d,new A.anh(a5,e),c),!0,c.i("q.E")) -c=A.W(b) -a=new J.dj(b,b.length,c.i("dj<1>")) -for(d=c.c;a.u();){a0=a.d -if(a0==null)a0=d.a(a0) -a1=new A.bT(new A.Q(0,0),new A.k(0,0)) -a1.a=new A.et(B.h.gA(B.c.gA("Dummy "+a5.z++)),q) -a2=new A.Ez(A.aE(p),A.b([],o),A.b([],o)) -a2.b=!0 -a2.d=j -B.b.E(h,a1) -n.m(0,a1,a2) -c=a0.a -a1.c=new A.Q(c.c.a,0) -a3=new A.f_(c,a1,null) -a5.w.qa(a3) -c=a5.w -a4=new A.f_(a1,a0.b,null) -c.qa(a4) -m.m(0,a3,new A.oV(A.b([],l))) -m.m(0,a4,new A.oV(A.b([],l))) -B.b.F(a5.w.b,a0)}}}}, -Mu(a){var s,r,q,p=A.m(t._A,t.y) -B.b.N(a.b,new A.anb(p)) -s=a.a -r=A.W(s).i("aL<1>") -q=new A.aL(s,new A.anc(p),r) -q.N(0,new A.and(this)) -return A.a8(q,!0,r.i("q.E"))}, -VP(a){var s=new A.O6(A.b([],t.f2),A.b([],t.zs),A.b([],t.Q1)) -s.alK(a.a) -s.alF(a.b) -return s}, -asl(){var s,r,q,p,o,n=this,m=n.f,l=A.a8(m,!0,t.YN),k=n.w -k===$&&A.c() -B.b.N(k.b,new A.ano(n)) -for(s=0;s<10;++s){n.as5(l,s) -if(!n.auI(l))break}for(l=m.length,k=n.b,r=0;r1;--q){d=l.h(o,q) -d.toString -r.h(0,d).c=k}}J.KD(o,new A.ann(c))}}, -auI(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e -for(s=t._A,r=t.S,q=!1,p=!0;p;)for(p=!1,o=0;othis.We(k,h,i)){g=l.d9(m,i) -f=l.d9(m,h) -e=l.h(m,g) -l.m(m,g,l.h(m,f)) -l.m(m,f,e) -q=!0 -p=!0}}}return q}, -We(a,b,c){var s,r,q={} -q.a=0 -s=this.b -r=s.h(0,b).f -B.b.N(s.h(0,c).f,new A.an6(q,new A.an7(a),r)) -return q.a}, -anj(){var s,r,q,p=this -p.am5() -p.am6() -s=p.w -s===$&&A.c() -r=p.x.c -q=p.a02(s,r===2||r===4) -B.b.N(p.w.a,new A.an3(p,q))}, -am5(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f=this,e=t.te,d=A.b([],e),c=A.b([],e),b=A.b([],e) -e=t.U_ -s=A.b([],e) -r=A.b([],e) -q=A.b([],e) -for(e=t._A,p=t.i,o=0;o<4;++o){d.push(A.m(e,e)) -c.push(A.m(e,e)) -b.push(A.m(e,e)) -r.push(A.m(e,p)) -s.push(A.m(e,p)) -q.push(A.m(e,p)) -n=f.w -n===$&&A.c() -B.b.N(n.a,new A.amU(d,o,c,b,r,s,q))}m=f.Ym() -for(e=f.f,l=0;l<=1;++l){k=l===0 -j=f.arZ(k) -for(p=2*l,i=0;i<=1;++i){h=p+i -g=i===0 -f.auV(d[h],c[h],j,k,g) -n=f.w -n===$&&A.c() -B.b.N(n.a,new A.amV(d,h,q,m,100)) -f.aqA(c[h],d[h],b[h],r[h],q[h],s[h],g,k,e,100)}}f.ama(s,q)}, -ama(a,b){var s,r,q,p,o,n,m,l,k,j,i,h=this,g=t.i,f=A.m(t._A,g) -switch(4){case 4:s=A.aT(4,0,!1,g) -r=A.aT(4,0,!1,g) -for(q=1/0,p=0,o=0;o<4;++o){s[o]=1/0 -r[o]=0 -n=h.w -n===$&&A.c() -B.b.N(n.a,new A.amX(b,o,a,s,r)) -m=r[o]-s[o] -if(m0){k=a[l] -new A.bm(k,A.p(k).i("bm<1>")).N(0,new A.amY(n,a,l))}else{k=a[l] -new A.bm(k,A.p(k).i("bm<1>")).N(0,new A.amZ(n,a,l))}}}j=A.aT(4,0,!1,g) -g=h.w -g===$&&A.c() -B.b.N(g.a,new A.an_(j,a,f)) -break}i=f.gaR(f).kV(0,B.BR) -if(i!==0)new A.bm(f,f.$ti.i("bm<1>")).N(0,new A.an0(f,i)) -h.au_(f) -g=h.w -g===$&&A.c() -B.b.N(g.a,new A.an1(f))}, -au_(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f=this -for(s=f.f,r=s.length,q=f.b,p=t._A,o=0;om){m=a.h(0,i) -m.toString -if(a.h(0,i)!=null){l=a.h(0,i) -l.toString -a.m(0,i,l+(g-m))}}}}}}, -a0b(a,b){var s,r,q -for(s=b-1,r=this.b;s>=0;--s){q=a[s] -if(!r.h(0,q).b)return q}return null}, -arZ(a0){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c=this,b=c.f,a=b.length -if(a>=4){if(a0){s=a-2 -r=1}else{r=a-1 -s=2}a=c.b -q=c.r -p=r -while(!0){if(!(a0?p<=s:p>=s))break -o=b[p] -n=a0?b[p+1]:b[p-1] -for(m=0,l=0,k=0;ki)q.m(0,k,d)}++l}m=i}}p+=a0?1:-1}}return c.r}, -auV(a,b,c,a0,a1){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d=this.f -for(s=J.as(a0?d:new A.bN(d,A.W(d).i("bN<1>"))),r=this.b,q=t.f2;s.u();){p=s.gJ(s) -p=a1?p:J.aGU(p) -o=a1?-1:1/0 -for(n=J.as(p);n.u();){m=n.gJ(n) -l=this.DL(m,a0) -k=l.length -if(k!==0){j=k/2 -if(B.h.cF(k,2)===1)i=A.b([l[B.d.ec(j)]],q) -else{k=B.d.ac(j) -i=A.b([l[k-1],l[k]],q)}for(k=i.length,h=0;he -else f=!1}else f=!1 -if(f){b.m(0,g,m) -a.m(0,m,a.h(0,g)) -b.m(0,m,a.h(0,m)) -o=e}}}}}}, -aqA(a,b,c,d,e,f,g,h,i,j){var s,r,q,p,o,n,m,l -for(s=J.as(g?i:new A.bN(i,A.W(i).i("bN<1>")));s.u();){r=s.gJ(s) -for(q=J.as(h?r:J.aGU(r));q.u();){p=q.gJ(q) -if(J.e(b.h(0,p),p))this.Z2(p,c,d,f,a,e,b,g,i,j)}}o=h?0:i.length-1 -s=!h -n=0 -while(!0){if(!(h&&o<=i.length-1))q=s&&o>=0 -else q=!0 -if(!q)break -m=i[o] -l=m[g?0:m.length-1] -if(l.j(0,c.h(0,b.h(0,l)))){q=d.h(0,l) -q.toString -if(q<1/0){d.m(0,l,q+n) -n+=B.d.ac(q)}else d.m(0,l,0)}o=h?o+1:o-1}s=this.w -s===$&&A.c() -B.b.N(s.a,new A.ane(f,b,d,c))}, -Z2(a,b,c,d,e,a0,a1,a2,a3,a4){var s,r,q,p,o,n,m,l,k,j,i,h,g,f=this -if(d.h(0,a)===-1/0){d.m(0,a,0) -s=a -try{m=!a2 -do{if(!(a2&&f.Lm(s)>0))l=m&&f.Lm(s)")) -for(n=m.c;l.u();){k=l.d -if(k==null)k=n.a(k) -if(r.h(0,k).b){m=d.w -m===$&&A.c() -j=m.atj(k)[0] -i=d.w.pt(k)[0] -m=d.w.Mh(j,k) -m.toString -h=p.h(0,m).a -if(h.length===0||!B.b.t(h,k.d.a+j.c.a/2)){h.push(j.d.a+j.c.a/2) -h.push(j.d.b+j.c.b/2) -h.push(k.d.a+j.c.a/2) -h.push(k.d.b)}m=r.h(0,j).b -g=k.d.a -if(!m)h.push(g+j.c.a/2) -else h.push(g) -h.push(k.d.b) -m=r.h(0,i).b -g=i.d.a -if(m)h.push(g+j.c.a/2) -else h.push(g+i.c.a/2) -h.push(i.d.b+i.c.b/2) -d.w.LA(j,k) -d.w.LA(k,i) -f=new A.f_(j,i,null) -d.w.qa(f) -e=new A.oV(A.b([],q)) -e.a=h -p.m(0,f,e) -d.w.ZG(k)}}}}, -au1(){var s=this.w -s===$&&A.c() -B.b.N(s.a,new A.anr(this))}, -a02(a,b){var s={} -s.a=s.b=1/0 -if(b)s.a=5e-324 -B.b.N(a.a,new A.ana(s,b)) -return new A.k(s.b,s.a)}, -a09(a,b){var s,r -switch(this.x.c){case 1:s=a.d -r=new A.k(s.a-b.a,s.b) -break -case 2:s=a.d -r=new A.k(s.a-b.a,b.b-s.b) -break -case 3:s=a.d -r=new A.k(s.b,s.a-b.a) -break -case 4:s=a.d -r=new A.k(b.b-s.b,s.a-b.a) -break -default:r=new A.k(0,0) -break}return r}} -A.an2.prototype={ -$1(a){var s,r=this.a,q=r.b,p=a.d,o=p.a -r.b=Math.min(q,o) -p=p.b -r.a=Math.min(r.a,p) -q=r.d -s=a.c -r.d=Math.max(q,o+s.a) -r.c=Math.max(r.c,p+s.b)}, -$S:4} -A.ant.prototype={ -$1(a){J.fX(a,new A.ans(this.a,this.b))}, -$S:589} -A.ans.prototype={ -$1(a){var s=a.d -a.d=new A.k(s.a+this.a,s.b+this.b)}, -$S:118} -A.anf.prototype={ -$1(a){var s -a.d=new A.k(0,0) -s=t.f2 -this.a.b.m(0,a,new A.Ez(A.aE(t._A),A.b([],s),A.b([],s)))}, -$S:4} -A.ang.prototype={ -$1(a){this.a.c.m(0,a,new A.oV(A.b([],t.B)))}, -$S:50} -A.an8.prototype={ -$1(a){this.a.Ws(a)}, -$S:4} -A.an9.prototype={ -$1(a){var s,r=a.b,q=this.a -if(q.d.t(0,r)){s=q.w -s===$&&A.c() -B.b.F(s.b,a) -s=this.b -q.w.UQ(r,s) -q.b.h(0,s).a.E(0,r)}else q.Ws(r)}, -$S:50} -A.anh.prototype={ -$1(a){var s,r=this.b -if(a.a.j(0,r)){s=this.a.b -r=Math.abs(s.h(0,a.b).d-s.h(0,r).d)>1}else r=!1 -return r}, -$S:54} -A.anb.prototype={ -$1(a){this.a.m(0,a.b,!0)}, -$S:50} -A.anc.prototype={ -$1(a){return this.a.h(0,a)==null}, -$S:207} -A.and.prototype={ -$1(a){var s=this.a,r=s.b.h(0,a) -if(r!=null)r.d=s.f.length}, -$S:4} -A.ano.prototype={ -$1(a){var s=this.a.b,r=s.h(0,a.a) -if(r!=null)r.r.push(a.b) -s=s.h(0,a.b) -if(s!=null)s.f.push(a.a)}, -$S:50} -A.ank.prototype={ -$1(a){var s=this.a -B.b.N(this.b.pt(a),new A.anj(s,this.c));++s.a}, -$S:118} -A.anj.prototype={ -$1(a){this.b.push(this.a.a)}, -$S:4} -A.anl.prototype={ -$2(a,b){var s,r=this.a.b -a.toString -s=r.h(0,a).c -b.toString -return s-r.h(0,b).c}, -$S:208} -A.anm.prototype={ -$1(a){var s=this.a -B.b.N(this.b.pt(a),new A.ani(s,this.c));++s.a}, -$S:118} -A.ani.prototype={ -$1(a){this.b.push(this.a.a)}, -$S:4} -A.ann.prototype={ -$2(a,b){var s,r=this.a.b -a.toString -s=r.h(0,a).c -b.toString -return s-r.h(0,b).c}, -$S:208} -A.anu.prototype={ -$2(a,b){return new A.aY(b,a,t.Wi)}, -$S:593} -A.an7.prototype={ -$1(a){var s=this.a.h(0,a) -s.toString -return s}, -$S:594} -A.an6.prototype={ -$1(a){var s=this.b,r=this.c -new A.aL(r,new A.an4(s.$1(a),s),A.W(r).i("aL<1>")).N(0,new A.an5(this.a))}, -$S:4} -A.an4.prototype={ -$1(a){return this.an[o])n[o]=q}, -$S:4} -A.amY.prototype={ -$1(a){var s=this.b[this.c],r=s.h(0,a) -r.toString -s.m(0,a,r-this.a.a)}, -$S:4} -A.amZ.prototype={ -$1(a){var s=this.b[this.c],r=s.h(0,a) -r.toString -s.m(0,a,r+this.a.a)}, -$S:4} -A.an_.prototype={ -$1(a){var s,r,q,p -for(s=this.a,r=this.b,q=0;q<4;++q){p=r[q].h(0,a) -p.toString -s[q]=p}B.b.jl(s) -this.c.m(0,a,(s[1]+s[2])*0.5)}, -$S:4} -A.an0.prototype={ -$1(a){var s=this.a,r=s.h(0,a) -r.toString -s.m(0,a,r-this.b)}, -$S:4} -A.an1.prototype={ -$1(a){var s=this.a.h(0,a) -s.toString -a.d=new A.k(s,a.d.b)}, -$S:4} -A.anp.prototype={ -$2(a,b){var s=this.a.b -return B.h.bi(s.h(0,a).e,s.h(0,b).e)}, -$S:595} -A.ane.prototype={ -$1(a){var s=this,r=s.a,q=s.b,p=r.h(0,q.h(0,a)) -p.toString -r.m(0,a,p) -q=s.c.h(0,s.d.h(0,q.h(0,a))) -q.toString -if(q<1/0){p=r.h(0,a) -p.toString -r.m(0,a,p+q)}}, -$S:4} -A.amW.prototype={ -$1(a){var s,r,q=this -if(q.c.b.h(0,a).b)s=0 -else{r=a.c -s=q.d?r.b:r.a}r=q.a -if(s>r.a)r.a=B.d.ac(s) -r=q.b.a -a.d=new A.k(a.d.a,r)}, -$S:4} -A.anr.prototype={ -$1(a){var s=this.a,r=s.b -if(r.h(0,a).a.a!==0)r.h(0,a).a.N(0,new A.anq(s,a))}, -$S:4} -A.anq.prototype={ -$1(a){var s,r,q,p,o=this.a,n=o.c,m=o.w -m===$&&A.c() -s=this.b -m=m.Mh(a,s) -m.toString -r=n.h(0,m).a -o.w.LA(a,s) -q=o.w.UQ(s,a) -p=new A.oV(A.b([],t.B)) -p.a=r -n.m(0,q,p)}, -$S:4} -A.ana.prototype={ -$1(a){var s=this.a,r=a.d,q=s.b,p=r.a -r=r.b -if(this.b){s.b=Math.min(q,p) -s.a=Math.max(s.a,r)}else{s.b=Math.min(q,p) -s.a=Math.min(s.a,r)}}, -$S:4} -A.anv.prototype={} -A.a6A.prototype={ -I(){return"CoordinateAssignment."+this.b}} -A.a4Z.prototype={} -A.alF.prototype={} -A.Mr.prototype={} -A.oV.prototype={} -A.anw.prototype={ -atQ(a,b,c,d){var s=$.ad().b1() -s.saf(0,d.gaf(d)) -s.sbC(0,B.aX) -B.b.N(c.b,new A.anx(this,d,b,s))}, -a97(a){var s,r,q -for(s=this.e,r=1;r") -a.k4=A.a8(new A.a1(r,new A.ac8(this,a),s),!0,s.i("am.E"))}r=a.k4 -if(r==null){r=t.zC -r=a.ch===!0?A.b([A.aDI(a,null)],r):A.b([a],r)}return r}, -GI(a,b){return A.aG(a,this.c.f!==!0,!1,!0,!1)}, -GH(a){return this.GI(a,null)}, -aeh(a,b){var s,r,q,p,o,n,m,l -for(s=0,r="",q=0;q0)r+=b -for(o=p,n=s;o.length!==0;){m=A.aG("\\[(?:[^\\\\\\]]|\\\\.)*\\]|\\(\\??|\\\\([1-9][0-9]*)|\\\\.",!0,!1,!1,!1).ev(o) -if(m==null){r+=o -break}p=m.b -l=p.index -r+=A.Kn(o,0,l) -o=A.Kn(o,l+p[0].length,null) -l=p[0] -if(l[0]==="\\"&&p[1]!=null){p=p[1] -p.toString -r+="\\"+B.h.k(A.dT(p,null)+s)}else{p=l -p.toString -r+=p -if(l==="(")++n}}}return r}, -Fr(a,b){var s,r,q,p,o,n,m=this -if(a.fx===!0)return -a.fx=!0 -s=a.d -if(s==null)s=a.Q -a.d=s -if(s!=null){s=t.z -r=A.m(s,s) -q=r.hz(r,t.N,s) -s=new A.ac1(m,q) -r=a.d -if(typeof r=="string")s.$2("keyword",r) -else{p=t.GU -if(p.b(r))p.a(r).N(0,s)}a.d=q}s=a.at -a.go=m.GI(s==null?"\\w+":s,!0) -if(b!=null){s=a.Q -if(s!=null)a.z="\\b("+B.b.bH(A.b(s.split(" "),t.s),"|")+")\\b" -s=a.z -a.id=m.GH(s==null?a.z="\\B|\\b":s) -if(a.ax===!0)a.as=a.z -s=a.as -if(s==null&&a.ch!==!0)s=a.as="\\B|\\b" -if(s!=null)a.k1=m.GH(s) -s=a.as -r=s==null -if(r)s="" -a.k3=s -if(a.ch===!0&&b.k3!=null){r=!r?"|":"" -p=b.k3 -p.toString -a.k3=s+r+p}}s=a.e -if(s!=null)a.k2=m.GH(s) -if(a.CW==null)a.CW=1 -s=a.r -if(s==null)s=a.r=A.b([],t._) -r=new A.ac3(m) -s=J.ei(s,r,t.AW) -a.r=A.a8(s,!0,s.$ti.i("am.E")) -s=a.w -if(s!=null){p=A.W(s).i("a1<1,cS?>") -a.w=A.a8(new A.a1(s,r,p),!0,p.i("am.E"))}s=a.x -if(s!=null)a.x=r.$1(s) -s=[] -o=new A.dI(s,A.W(s).i("dI<1,cS>")) -s=a.r -s.toString -J.fX(s,new A.ac4(m,o,a)) -a.r=o -o.N(o,new A.ac5(m,a)) -s=a.x -if(s!=null)m.Fr(s,b) -s=a.r -s.toString -s=J.ei(s,new A.ac6(),t.u) -s=A.a8(s,!0,s.$ti.i("am.E")) -B.b.K(s,A.b([a.k3,a.e],t._m)) -r=A.W(s).i("aL<1>") -n=A.a8(new A.aL(s,new A.ac7(),r),!0,r.i("q.E")) -a.ok=n.length!==0?m.GI(m.aeh(n,"|"),!0):null}, -a84(a){return this.Fr(a,null)}, -OI(a,b,c){if(!(a!=null&&a.length!==0))return b -return A.b([new A.dw(a,null,b)],t.wP)}, -a7e(a,b){return this.OI(a,b,!1)}, -HN(a,b){var s,r -if(a!=null){s=a.nY(0,b) -s=new A.tj(s.a,s.b,s.c) -if(s.u()){r=s.d -return(r==null?t.Qz.a(r):r).b.index===0}}return!1}, -ajt(a,b){var s,r,q,p=0 -while(!0){s=b.r -s.toString -if(!(p")) -a0.b=i -k=[] -h=A.W(k).i("dI<1,B?>") -g=new A.dI(k,h) -s=new A.acc(a0,g,i) -r=null -for(r=l,f=t.wP,h=h.c;!J.e(r,b.c);r=r.fy){e=r.y -if(e!=null&&e.length!==0){e=a0.b -e.toString -J.dV(e,new A.dw(r.y,a,A.b([],f))) -k.push(h.a(a0.b)) -e=a0.b -e.toString -a0.b=J.lH(e).c}}a0.c="" -a0.d=0 -q=new A.acg(a0,b,new A.acd(a0,b,new A.ach(a0,b,j),new A.ace(a0,b,new A.acb(a1))),new A.aci(a0,b,g),s,new A.aca(b,a4)) -try{p=null -o=null -n=0 -for(;!0;){k=a0.a.ok -if(k==null)d=a -else d=A.OB(k.nZ(0,a2,n),new A.acj()) -p=d -if(p==null)break -o=q.$2(A.Kn(a2,n,p.b.index),p.b[0]) -n=o+p.b.index}q.$1(A.Kn(a2,n,a)) -for(r=a0.a;r.fy!=null;r=r.fy){k=r.y -if(k!=null&&k.length!==0)s.$0()}k=a0.d -h=a0.b -e=a0.a -return new A.Dw(k,h,a5,e)}catch(c){m=A.a6(c) -if(typeof m=="string"&&J.aVD(m,"Illegal"))return new A.Dw(0,A.b([new A.dw(a,a2,a)],f),a,a) -else throw c}}, -ags(a,b){return this.Hc(a,null,!1,b)}, -agt(a,b,c){return this.Hc(a,null,b,c)}, -Qd(a){var s,r,q,p -a=a.toLowerCase() -s=this.a -r=s.a -q=J.X(r) -s=s.$ti.i("4?") -p=s.a(q.h(r,a)) -if(p==null){p=this.b -p=p.$ti.i("4?").a(J.aN(p.a,a)) -s=s.a(q.h(r,p==null?"":p))}else s=p -return s}, -atF(a,b){var s=this.a,r=s.$ti -J.hv(s.a,r.c.a(a),r.z[1].a(b)) -s=b.c -if(s!=null)B.b.N(s,new A.ack(this,a))}, -agv(a,b){var s,r,q=null,p={} -if(b==null){s=this.a -r=s.$ti -r=A.c3(J.a3L(s.a),r.c,r.z[2]) -b=A.a8(r,!0,A.p(r).i("q.E"))}p.a=p.b=new A.Dw(0,A.b([new A.dw(q,a,q)],t.wP),q,q) -B.b.N(b,new A.ac9(p,this,a)) -return p.b}} -A.ac8.prototype={ -$1(a){var s=a.a -if(s!=null)a=this.a.c.b.h(0,s) -s=A.aDI(this.b,a) -s.w=null -return s}, -$S:597} -A.ac1.prototype={ -$2(a,b){B.b.N(A.b((this.a.c.f===!0?b.toLowerCase():b).split(" "),t.s),new A.ac2(this.b,a))}, -$S:182} -A.ac2.prototype={ -$1(a){var s,r,q,p,o,n,m=A.b(a.split("|"),t.s) -try{r=this.a -q=J.aN(m,0) -p=J.b4(m)>1?A.dT(J.aN(m,1),null):1 -p=A.b([this.b,p],t.jl) -o=r.$ti -J.hv(r.a,o.c.a(q),o.z[1].a(p))}catch(n){s=A.a6(n) -A.c_(s)}}, -$S:33} -A.ac3.prototype={ -$1(a){var s=a.a -if(s!=null)return this.a.c.b.h(0,s) -return a}, -$S:598} -A.ac4.prototype={ -$1(a){var s=this.b,r=a.p1===!0?this.c:a,q=s.$ti -J.KA(s.a,A.c3(this.a.a9A(r),q.z[1],q.c))}, -$S:209} -A.ac5.prototype={ -$1(a){a.toString -this.a.Fr(a,this.b)}, -$S:209} -A.ac6.prototype={ -$1(a){var s=a.Q,r=a.z -if(s!=null){r.toString -s="\\.?(?:"+r+")\\.?"}else s=r -return s}, -$S:600} -A.ac7.prototype={ -$1(a){return a!=null&&a.length!==0}, -$S:601} -A.ac0.prototype={ -$1(a){var s,r,q=this.a -q.toString -s=J.X(q) -if(s.ga8(q)||s.gL(q).c!=null||a.a!=null)s.E(q,a) -else{r=s.gL(q) -q=s.gL(q).b -q.toString -s=a.b -s.toString -r.b=q+s}}, -$S:198} -A.acb.prototype={ -$2(a,b){var s=b.b,r=this.a.f===!0?s[0].toLowerCase():s[0] -return J.aN(a.d,r)}, -$S:602} -A.acc.prototype={ -$0(){var s=this.b,r=s.gp(s)===0?this.c:s.$ti.z[1].a(J.aH2(s.a)) -this.a.b=r}, -$S:0} -A.aca.prototype={ -$2(a,b){return!this.b&&this.a.HN(b.k2,a)}, -$S:603} -A.aci.prototype={ -$1(a){var s,r,q,p=a.y -if(p!=null&&p.length!==0){s=this.a -r=s.b -r.toString -J.dV(r,new A.dw(p,null,A.b([],t.wP))) -p=this.c -J.dV(p.a,p.$ti.c.a(s.b)) -p=s.b -p.toString -s.b=J.lH(p).c}q=A.aDI(a,null) -p=this.a -q.fy=p.a -p.a=q}, -$S:604} -A.ace.prototype={ -$0(){var s,r,q,p,o,n,m,l,k,j=null,i=this.a,h=i.a -if(h.d==null)return A.b([new A.dw(j,i.c,j)],t.wP) -s=[] -r=new A.dI(s,A.W(s).i("dI<1,dw>")) -q=h.go.ev(i.c) -for(h=this.b,s=t.wP,p=this.c,o=0;q!=null;){n=i.c -m=q.b -l=m.index -h.tE(A.b([new A.dw(j,A.Kn(n,o,l),j)],s),r) -n=i.a -n.toString -k=p.$2(n,q) -if(k!=null){n=J.X(k) -i.d=i.d+A.ef(n.h(k,1)) -n=h.a7e(n.h(k,0),A.b([new A.dw(j,m[0],j)],s)) -n.toString -h.tE(n,r)}else h.tE(A.b([new A.dw(j,m[0],j)],s),r) -o=l+m[0].length -q=A.OB(i.a.go.nZ(0,i.c,o),new A.acf())}h.tE(A.b([new A.dw(j,A.Kn(i.c,o,j),j)],s),r) -return r}, -$S:605} -A.acf.prototype={ -$1(a){return!0}, -$S:210} -A.ach.prototype={ -$0(){var s,r,q,p,o,n=this,m=n.a,l=m.a.cx,k=l.length===1 -if(k){s=n.b.a -l=s.$ti.i("4?").a(J.aN(s.a,B.b.gM(l)))==null}else l=!1 -if(l)return A.b([new A.dw(null,m.c,null)],t.wP) -l=n.b -s=m.c -if(k){r=m.a.cx -r.toString -r=B.b.gM(r) -q=n.c -p=m.a.cx -p.toString -o=l.Hc(s,q.$ti.i("4?").a(J.aN(q.a,B.b.gM(p))),!0,r)}else{r=m.a.cx -o=l.agv(s,r.length!==0?r:null)}s=m.a -r=s.CW -r.toString -if(r>0)m.d=m.d+o.a -if(k){m=n.c -s=s.cx -s.toString -r=m.$ti -J.hv(m.a,r.c.a(B.b.gM(s)),r.z[1].a(o.d))}return l.OI(o.c,o.b,!0)}, -$S:607} -A.acd.prototype={ -$0(){var s,r=this,q=r.a -if(q.a.cx!=null){s=r.c.$0() -s.toString}else s=r.d.$0() -r.b.tE(s,q.b) -q.c=""}, -$S:0} -A.acg.prototype={ -$2(a,b){var s,r,q,p,o,n,m,l,k=this,j=k.a -j.c+=a -if(b==null){k.c.$0() -return 0}s=k.b -r=j.a -r.toString -q=s.ajt(b,r) -if(q!=null){if(q.dx===!0)j.c+=b -else{if(q.cy===!0)j.c+=b -k.c.$0() -if(q.dy!==!0&&q.cy!==!0)j.c=b}k.d.$1(q) -return q.dy===!0?0:b.length}r=j.a -r.toString -p=s.PQ(r,b) -if(p!=null){o=j.a -if(o.dx===!0)j.c+=b -else{if(!(o.fr===!0||o.db===!0))j.c+=b -k.c.$0() -if(o.db===!0)j.c=b}s=k.e -do{r=j.a.y -if(r!=null&&r.length!==0)s.$0() -r=j.a -if(r.dx!==!0&&r.cx==null){n=j.d -m=r.CW -m.toString -j.d=n+m}l=r.fy -j.a=l}while(l!=p.fy) -j=p.x -if(j!=null){if(p.ax===!0)j.k1=p.k1 -k.d.$1(j)}return o.fr===!0?0:b.length}if(k.f.$2(b,j.a)){j=j.a.y -if(j==null)j="" -throw A.d('Illegal lexeme "'+b+'" for mode "'+j+'"')}j.c+=b -j=b.length -return j===0?1:j}, -$1(a){return this.$2(a,null)}, -$S:608} -A.acj.prototype={ -$1(a){return!0}, -$S:210} -A.ack.prototype={ -$1(a){var s=this.a.b,r=s.$ti -J.hv(s.a,r.c.a(a),r.z[1].a(this.b))}, -$S:33} -A.ac9.prototype={ -$1(a){var s,r,q,p=this.b,o=p.Qd(a) -if(o==null||o.p2===!0)return -s=p.agt(this.c,!1,a) -s.c=a -p=s.a -r=this.a -if(p>r.a.a)r.a=s -q=r.b -if(p>q.a){r.a=q -r.b=s}}, -$S:33} -A.cS.prototype={} -A.dw.prototype={} -A.Dw.prototype={} -A.aB8.prototype={ -$1(a){return a.SX("GET",this.a,this.b)}, -$S:211} -A.aBM.prototype={ -$1(a){var s=this -return a.us("POST",s.a,s.b,s.c,s.d)}, -$S:211} -A.Lk.prototype={ -us(a,b,c,d,e){return this.aiI(a,b,c,d,e)}, -SX(a,b,c){return this.us(a,b,c,null,null)}, -aiI(a,b,c,d,e){var s=0,r=A.I(t.Wd),q,p=this,o,n -var $async$us=A.D(function(f,g){if(f===1)return A.F(g,r) -while(true)switch(s){case 0:o=A.b_v(a,b) -if(c!=null)o.r.K(0,c) -if(d!=null)o.sII(0,d) -n=A -s=3 -return A.K(p.eN(0,o),$async$us) -case 3:q=n.ajN(g) -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$us,r)}, -$ia62:1} -A.Ll.prototype={ -ap_(){if(this.w)throw A.d(A.a4("Can't finalize a finalized Request.")) -this.w=!0 -return B.BP}, -k(a){return this.a+" "+this.b.k(0)}} -A.a4N.prototype={ -$2(a,b){return a.toLowerCase()===b.toLowerCase()}, -$S:610} -A.a4O.prototype={ -$1(a){return B.c.gA(a.toLowerCase())}, -$S:87} -A.a4P.prototype={ -Ob(a,b,c,d,e,f,g){var s=this.b -if(s<100)throw A.d(A.bF("Invalid status code "+s+".",null))}} -A.zC.prototype={ -eN(a,b){return this.a0y(0,b)}, -a0y(a,b){var s=0,r=A.I(t.ZE),q,p=2,o,n=[],m=this,l,k,j,i,h,g,f -var $async$eN=A.D(function(c,d){if(c===1){o=d -s=p}while(true)switch(s){case 0:if(m.c)throw A.d(A.aHA("HTTP request failed. Client is already closed.",b.b)) -b.a1G() -s=3 -return A.K(new A.u4(A.aKW(b.y,t.Cm)).a_8(),$async$eN) -case 3:j=d -i=new XMLHttpRequest() -i.toString -l=i -i=m.a -i.E(0,l) -h=l -J.aVq(h,b.a,b.b.k(0),!0) -h.responseType="arraybuffer" -h.withCredentials=!1 -b.r.N(0,J.aVd(l)) -k=new A.b3(new A.ae($.ai,t.EW),t.FL) -h=t.fg -g=new A.pf(l,"load",!1,h) -f=t.H -g.gM(g).bQ(0,new A.a5e(l,k,b),f) -h=new A.pf(l,"error",!1,h) -h.gM(h).bQ(0,new A.a5f(k,b),f) -J.aVx(l,j) -p=4 -s=7 -return A.K(k.a,$async$eN) -case 7:h=d -q=h -n=[1] -s=5 -break -n.push(6) -s=5 -break -case 4:n=[2] -case 5:p=2 -i.F(0,l) -s=n.pop() -break -case 6:case 1:return A.G(q,r) -case 2:return A.F(o,r)}}) -return A.H($async$eN,r)}, -aL(a){var s,r,q,p -this.c=!0 -for(s=this.a,r=A.db(s,s.r,A.p(s).c),q=r.$ti.c;r.u();){p=r.d;(p==null?q.a(p):p).abort()}s.a0(0)}} -A.a5e.prototype={ -$1(a){var s,r,q,p=this.a,o=A.dm(t.pI.a(A.b36(p.response)),0,null),n=A.aKW(o,t.Cm),m=p.status -m.toString -s=o.length -r=this.c -q=B.FO.gau0(p) -p=p.statusText -n=new A.wN(A.b76(new A.u4(n)),r,m,p,s,q,!1,!0) -n.Ob(m,s,q,!1,!0,p,r) -this.b.dm(0,n)}, -$S:212} -A.a5f.prototype={ -$1(a){this.a.o8(new A.zW("XMLHttpRequest error.",this.b.b),A.aEa())}, -$S:212} -A.u4.prototype={ -a_8(){var s=new A.ae($.ai,t.aP),r=new A.b3(s,t.gI),q=new A.V5(new A.a5s(r),new Uint8Array(1024)) -this.eJ(q.gi2(q),!0,q.gv6(q),r.gVF()) -return s}} -A.a5s.prototype={ -$1(a){return this.a.dm(0,new Uint8Array(A.jg(a)))}, -$S:612} -A.zW.prototype={ -k(a){var s=this.b.k(0) -return"ClientException: "+this.a+", uri="+s}, -$ibV:1} -A.ajM.prototype={ -gJN(a){var s,r,q=this -if(q.gnH()==null||!q.gnH().c.a.ak(0,"charset"))return q.x -s=q.gnH().c.a.h(0,"charset") -s.toString -r=A.aD0(s) -return r==null?A.U(A.bW('Unsupported encoding "'+s+'".',null,null)):r}, -sII(a,b){var s,r,q=this,p=q.gJN(q).j0(b) -q.a7B() -q.y=A.aP4(p) -s=q.gnH() -if(s==null){p=q.gJN(q) -r=t.N -q.snH(A.afA("text","plain",A.l(["charset",p.ghI(p)],r,r)))}else if(!s.c.a.ak(0,"charset")){p=q.gJN(q) -r=t.N -q.snH(s.amz(A.l(["charset",p.ghI(p)],r,r)))}}, -gnH(){var s=this.r.h(0,"content-type") -if(s==null)return null -return A.aJr(s)}, -snH(a){this.r.m(0,"content-type",a.k(0))}, -a7B(){if(!this.w)return -throw A.d(A.a4("Can't modify a finalized Request."))}} -A.oG.prototype={ -gII(a){return A.aAU(A.azR(this.e).c.a.h(0,"charset")).ea(0,this.w)}} -A.wN.prototype={} -A.zH.prototype={} -A.a5L.prototype={ -$1(a){return a.toLowerCase()}, -$S:31} -A.BX.prototype={ -amz(a){var s=t.N,r=A.qY(this.c,s,s) -r.K(0,a) -return A.afA(this.a,this.b,r)}, -k(a){var s=new A.cf(""),r=""+this.a -s.a=r -r+="/" -s.a=r -s.a=r+this.b -this.c.a.N(0,new A.afD(s)) -r=s.a -return r.charCodeAt(0)==0?r:r}} -A.afB.prototype={ -$0(){var s,r,q,p,o,n,m,l,k,j=this.a,i=new A.amQ(null,j),h=$.aUI() -i.E2(h) -s=$.aUv() -i.vF(s) -r=i.gKH().h(0,0) -r.toString -i.vF("/") -i.vF(s) -q=i.gKH().h(0,0) -q.toString -i.E2(h) -p=t.N -o=A.m(p,p) -while(!0){p=i.d=B.c.jV(";",j,i.c) -n=i.e=i.c -m=p!=null -p=m?i.e=i.c=p.gbg(p):n -if(!m)break -p=i.d=h.jV(0,j,p) -i.e=i.c -if(p!=null)i.e=i.c=p.gbg(p) -i.vF(s) -if(i.c!==i.e)i.d=null -p=i.d.h(0,0) -p.toString -i.vF("=") -n=i.d=s.jV(0,j,i.c) -l=i.e=i.c -m=n!=null -if(m){n=i.e=i.c=n.gbg(n) -l=n}else n=l -if(m){if(n!==l)i.d=null -n=i.d.h(0,0) -n.toString -k=n}else k=A.b5z(i) -n=i.d=h.jV(0,j,i.c) -i.e=i.c -if(n!=null)i.e=i.c=n.gbg(n) -o.m(0,p,k)}i.aoP() -return A.afA(r,q,o)}, -$S:613} -A.afD.prototype={ -$2(a,b){var s,r,q=this.a -q.a+="; "+a+"=" -s=$.aTA() -s=s.b.test(b) -r=q.a -if(s){q.a=r+'"' -s=q.a+=A.Km(b,$.aQF(),new A.afC(),null) -q.a=s+'"'}else q.a=r+b}, -$S:83} -A.afC.prototype={ -$1(a){return"\\"+A.j(a.h(0,0))}, -$S:85} -A.aAV.prototype={ -$1(a){var s=a.h(0,1) -s.toString -return s}, -$S:85} -A.bt.prototype={ -Am(a,b){var s -if(b.Mc(this)){s=this.b -if(s!=null)for(s=J.as(s);s.u();)s.gJ(s).Am(0,b) -b.auZ(this)}}, -gp6(){var s=this.b -return s==null?"":J.ei(s,new A.a8E(),t.N).oF(0)}, -$iil:1} -A.a8E.prototype={ -$1(a){return a.gp6()}, -$S:615} -A.cA.prototype={ -Am(a,b){return b.av_(this)}, -gp6(){return this.a}, -$iil:1} -A.p4.prototype={ -Am(a,b){}, -$iil:1, -gp6(){return this.a}} -A.a53.prototype={ -gj8(a){var s=this.d,r=this.a -if(s>=r.length-1)return null -return r[s+1]}, -at9(a){var s=this.d,r=this.a -if(s>=r.length-a)return null -return r[s+a]}, -as1(a){var s,r=this -if(r.gj8(r)==null)return!1 -s=r.gj8(r).a -return a.b.test(s)}, -Lh(a,b){var s,r,q,p,o,n,m,l,k,j,i,h=this -h.w=b -h.x=a -s=A.b([],t.D) -for(r=h.a,q=h.c,p=null,o=0;n=h.d,n2)throw A.d(A.kj("BlockParser.parseLines is not advancing"))}else o=0}return s}, -Z0(){return this.Lh(!1,null)}, -at7(a){return this.Lh(!1,a)}} -A.dk.prototype={ -mv(a){return!0}, -lo(a){var s=this.gf1(this),r=a.a[a.d].a -return s.b.test(r)}, -ar8(a){var s,r,q,p -for(s=a.c,r=s.length,q=0;q") -p=q.length -if(p>1){if(n")).bH(0,"\n") -p=t.D -r=t.N -return new A.bt("pre",A.b([new A.bt("code",A.b([new A.cA(s)],p),A.m(r,r))],p),A.m(r,r))}, -aj1(a){var s,r,q,p -for(s=1;!0;){r=a.at9(s) -if(r==null)return!0 -if(r.c){++s -continue}q=$.a3G() -p=r.a -return!q.b.test(p)}}} -A.a6l.prototype={ -$1(a){var s=a.b -return B.c.a6(" ",s==null?0:s)+a.a}, -$S:68} -A.AA.prototype={ -gf1(a){return $.jl()}, -ip(a,b){b.f=!0;++b.d -return null}} -A.Nn.prototype={ -gf1(a){return $.a3D()}, -ip(a,b){var s,r,q,p,o,n,m,l=$.a3D().ev(A.aFs(b.a[b.d].a)) -l.toString -s=A.aLO(l) -l=this.at4(b,s.b,s.a) -r=new A.a1(l,new A.a9q(),A.W(l).i("a1<1,n>")).bH(0,"\n") -if(r.length!==0)r+="\n" -l=t.D -q=A.b([new A.cA(r)],l) -p=t.N -o=A.m(p,p) -n=s.c -if(B.b.gM(n.split(" ")).length!==0){m=A.Km(B.b.gM(n.split(" ")),$.Kx(),A.aC_(),null) -o.m(0,"class","language-"+m)}return new A.bt("pre",A.b([new A.bt("code",q,o)],l),A.m(p,p))}, -at4(a,b,c){var s,r,q,p,o,n=A.b([],t.Rv),m=++a.d -for(s=a.a,r="^\\s{0,"+c+"}",q=null;m"))}, -$S:618} -A.aaz.prototype={ -$1(a){return!$.aPu().t(0,a.gf1(a))}, -$S:80} -A.aay.prototype={ -$1(a){var s=a.gf1(a) -return s.b.test(this.a)}, -$S:80} -A.O8.prototype={ -gf1(a){return $.aGE()}, -ip(a,b){var s,r,q,p,o,n,m=b.a,l=$.aGE().ev(m[b.d].a).b,k=l[0] -k.toString -s=l[1] -r=l[2] -q=s.length -p=B.c.d9(k,s)+q -l=r==null -if(l)o=B.c.bK(m[b.d].a,p) -else{n=B.c.oG(k,r) -o=B.c.S(m[b.d].a,p,n)}o=B.c.jd(o) -if(l){m=A.aG("^#+$",!0,!1,!1,!1) -m=m.b.test(o)}else m=!1 -if(m)o=null;++b.d -m=A.b([],t.D) -if(o!=null)m.push(new A.p4(o)) -l=t.N -return new A.bt("h"+q,m,A.m(l,l))}} -A.Oe.prototype={ -gf1(a){return $.a3E()}, -ip(a,b){var s;++b.d -s=t.N -return new A.bt("hr",null,A.m(s,s))}} -A.Og.prototype={ -gf1(a){return $.a3F()}, -mv(a){return $.a3F().ev(a.a[a.d].a).oN("condition_7")==null}, -n6(a){var s,r,q,p=A.b([],t.Rv),o=a.a,n=$.a3F().ev(o[a.d].a).b,m=n.length-1,l=0 -while(!0){if(!(l")).bH(0,"\n")) -if(b.z!=null||b.w!=null){r="\n"+r -if(b.w instanceof A.r1)r+="\n"}return new A.cA(r)}} -A.acK.prototype={ -$1(a){return a.a}, -$S:68} -A.BC.prototype={ -gf1(a){return $.aTc()}, -mv(a){return!1}, -ip(a,b){var s=b.a,r=A.b([s[b.d]],t.Rv);++b.d -for(;!A.aCv(b);){r.push(s[b.d]);++b.d}if(!this.agC(r,b))b.d-=r.length -return null}, -agC(a,b){var s,r,q=new A.aeM(new A.a1(a,new A.aeN(),A.W(a).i("a1<1,n>")).bH(0,"\n")) -q.at5() -if(!q.c)return!1 -b.d-=q.r -s=q.d -s.toString -r=A.aOK(s) -b.b.a.bT(0,r,new A.aeO(r,q)) -return!0}} -A.aeN.prototype={ -$1(a){return a.a}, -$S:68} -A.aeO.prototype={ -$0(){var s=this.b,r=s.e -r.toString -return new A.vo(r,s.f)}, -$S:619} -A.vq.prototype={} -A.Tj.prototype={ -I(){return"TaskListItemState."+this.b}} -A.r1.prototype={ -lo(a){var s=this.gf1(this),r=a.a,q=r[a.d].a -if(s.b.test(q)){s=$.a3E() -r=r[a.d].a -s=!s.b.test(r)}else s=!1 -return s}, -mv(a){var s,r=this.gf1(this).ev(a.a[a.d].a) -r.toString -if(!(a.w instanceof A.r1)){s=r.b[1] -s=s!=null&&s!=="1"}else s=!1 -if(s)return!1 -r=r.b[2] -r=r==null?null:r.length!==0 -return r===!0}, -ip(c8,c9){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9=this,c0=null,c1="class",c2="task-list-item",c3={},c4=c9.a,c5=b9.gf1(b9).ev(c4[c9.d].a).b[1]!=null,c6=b9 instanceof A.Fo||b9 instanceof A.Cs,c7=A.b([],t.Y6) -c3.a=A.b([],t.Rv) -c3.b=null -s=new A.aeR(c3,c7) -r=new A.aeS(c3,c6) -q=A.bg("possibleMatch") -p=new A.aeU(q,c9) -for(o=q.a,n=c0,m=n,l=m,k=l;j=c9.d,j1)break -g=A.aKX(i.a,l) -i=c3.a -h=g.a -j=j?h:r.$1(h) -h=$.jl() -i.push(new A.fg(j,g.b,h.b.test(j)))}else if(p.$1($.a3E()))break -else if(p.$1($.a3H())){j=q.b -if(j===q)A.U(A.fB(o)) -j.toString -i=c4[c9.d].a -f=new A.Tz(i) -e=f.CC() -d=f.b -c=j.h(0,1) -if(c==null)c="" -j=c.length -if(j!==0){if(m==null)m=A.dT(c,c0) -f.b+=j}h=++f.b -b=B.c.S(i,d,h) -a=i.length -if(h!==a){a0=i.charCodeAt(h)===9 -a1=++f.b -if(a1!==a){a2=f.CC() -a3=f.b===a||!1}else{a3=!0 -a2=0}}else{a1=c0 -a3=!0 -a2=0 -a0=!1}if(k!=null&&B.c.bK(k,k.length-1)!==B.c.bK(b,b.length-1))break -s.$0() -e+=j+2 -if(a3){l=e -n=1}else{l=a2>=4?e:e+a2 -n=c0}a4=a1!=null&&!a3?r.$1(B.c.S(i,a1,c0)):"" -if(a4.length===0&&a0)a4=B.c.a6(" ",2)+a4 -j=c3.a -i=a0?2:c0 -h=$.jl() -j.push(new A.fg(a4,i,h.b.test(a4))) -k=b}else if(A.aCv(c9))break -else{j=c3.a -if(j.length!==0&&B.b.gL(j).c){c9.f=!0 -break}c3.a.push(c4[c9.d])}++c9.d}s.$0() -a5=A.b([],t.CE) -B.b.N(c7,b9.gahB()) -a6=b9.ahD(c7) -for(c4=c7.length,o=t.D,j=t.N,i=c9.b,a7=!1,a8=!1,a9=0;a9")).bH(0,"\n"));++b.d -p=t.N -return new A.bt("h"+r,A.b([new A.p4(q)],t.D),A.m(p,p))}} -A.alv.prototype={ -$1(a){return a.a}, -$S:68} -A.Td.prototype={ -mv(a){return!0}, -gf1(a){return $.aCg()}, -lo(a){return a.as1($.aUp())}, -ip(a,b){var s,r,q,p,o,n,m,l=this.agu(b.gj8(b).a),k=l.length,j=this.S0(b,l,"th"),i=j.b -i.toString -if(J.b4(i)!==k){--b.d -return null}i=t.D -s=t.N -r=new A.bt("thead",A.b([j],i),A.m(s,s));++b.d -q=A.b([],t.CE) -p=b.a -while(!0){if(!(b.dk;)m.dT(n)}n.toString -m=J.X(n) -for(;m.gp(n)>k;)m.dT(n) -q.push(o)}if(q.length===0)return new A.bt("table",A.b([r],i),A.m(s,s)) -else return new A.bt("table",A.b([r,new A.bt("tbody",q,A.m(s,s))],i),A.m(s,s))}, -agu(a){var s,r,q,p,o,n,m,l=A.b([],t._m) -for(s=a.length,r=!1,q=!1,p=null,o=0;o=r){j.push(B.c.lT(p.charCodeAt(0)==0?p:p)) -break}o=k.charCodeAt(s) -if(o===92){if(s===q){k=p+A.bQ(o) -j.push(B.c.lT(k.charCodeAt(0)==0?k:k)) -break}n=k.charCodeAt(s+1) -p=n===124?p+A.bQ(n):p+A.bQ(o)+A.bQ(n) -s+=2}else{++s -if(o===124){j.push(B.c.lT(p.charCodeAt(0)==0?p:p)) -s=this.UC(k,s) -if(s>=r)break -p=""}else p+=A.bQ(o)}}++a.d -k=A.b([],t.CE) -for(r=j.length,q=t.D,p=t.N,m=0;m?@\\[\\\\\\]^_`{|}~])",!0,!1,!0,!1),92),new A.Mv(A.aG($.Kx().a,!1,!1,!0,!1),38),A.aYY(g,"\\[",91),A.aYD(g)],r)) -B.b.K(l,$.aPA()) -i=new A.adI(m,h,l,k,j).at2(0) -s.ck(a,o) -s.fn(a,o,i) -o+=i.length-1}else if(n instanceof A.bt&&n.b!=null){m=n.b -m.toString -h.RZ(m)}}}, -a9G(a){var s,r,q,p,o,n,m,l,k,j=A.b([],t.CE),i=t.D,h=A.b([],i) -for(s=a.length,r=this.b,q=0;q0}else{n=0 -m=!1}if(m){j.push(p) -l=p.b -if(l!=null)this.a6K(l,A.lA(B.jC,o,B.A,!1),n)}}else h.push(p)}if(j.length!==0){s=t.N -r=A.m(s,t.S) -for(m=this.c,k=0;k0 -m=n?"-"+o:"" -l=A.b([new A.cA("\u21a9")],i) -if(n){n=A.b([new A.cA(o)],i) -k=A.m(s,s) -k.m(0,"class","footnote-ref") -l.push(new A.bt("sup",n,k))}n=A.m(s,s) -n.m(0,"href",r+m) -n.m(0,"class","footnote-backref") -B.b.K(h,A.b([new A.cA(" "),new A.bt("a",l,n)],i))}r=J.X(a) -if(r.ga8(a))r.K(a,h) -else{j=r.gL(a) -if(j instanceof A.bt){i=j.b -if(i!=null)J.KA(i,h)}else{i=A.b([j],i) -B.b.K(i,h) -r.sL(a,new A.bt("p",i,A.m(s,s)))}}}} -A.a7v.prototype={ -$2(a,b){var s,r,q=a.c.h(0,"id"),p=q==null?null:q.toLowerCase() -if(p==null)p="" -q=b.c.h(0,"id") -s=q==null?null:q.toLowerCase() -if(s==null)s="" -q=this.a -r=q.h(0,p) -if(r==null)r=0 -q=q.h(0,s) -return r-(q==null?0:q)}, -$S:622} -A.vo.prototype={} -A.a9k.prototype={} -A.adI.prototype={ -at2(a){var s,r,q,p,o=this -for(s=o.a,r=s.length,q=o.c;p=o.d,p!==r;){if(s.charCodeAt(p)===93){o.rS(0) -o.aeu() -continue}if(B.b.dN(q,new A.adR(o)))continue;++o.d}o.rS(0) -o.S7(-1) -s=o.r -o.Pa(s) -return s}, -aeu(){var s,r,q,p,o,n,m,l,k=this,j=k.f,i=B.b.KG(j,new A.adJ()) -if(i===-1){k.r.push(new A.cA("]")) -k.e=++k.d -return}s=t.m5.a(j[i]) -if(!s.d){B.b.ck(j,i) -k.r.push(new A.cA("]")) -k.e=++k.d -return}r=s.r -if(r instanceof A.qX&&B.b.dN(k.c,new A.adK())){q=k.r -p=B.b.KG(q,new A.adL(s)) -o=r.amS(0,k,s,null,new A.adM(k,i,p)) -if(o!=null){B.b.ck(j,i) -if(s.b===91)for(j=B.b.bX(j,0,i),n=j.length,m=0;ma5&&j>l){i=s[j] -if(!(i instanceof A.uw)){++q -continue}p=i.w -h=B.b.KG(p,new A.adP(i,n)) -if(h===-1){++q -continue}g=p[h] -f=g.b -e=i.a -d=B.b.d9(r,e) -c=n.a -o.a=B.b.d9(r,c) -b=i.d.IX(0,a2,i,n,new A.adQ(o,a2,d),g.a) -p=o.a -b.toString -B.b.hM(r,d+1,p,b) -o.a=d+2 -a=j+1 -if(!!s.fixed$length)A.U(A.V("removeRange")) -A.co(a,q,s.length,null,null) -s.splice(a,q-a) -if(i.a.a.length===f){B.b.ck(r,d) -B.b.ck(s,j) -q=a-1;--o.a}else{a0=new A.cA(B.c.bK(e.a,f)) -r[d]=a0 -i.a=a0 -q=a}p=n.a -m=o.a -if(p.a.length===f){B.b.ck(r,m) -B.b.ck(s,q)}else{a1=new A.cA(B.c.bK(c.a,f)) -r[m]=a1 -n.a=a1}}else{m.m(p,B.h.cF(n.a.a.length,3),k) -if(!n.f)B.b.ck(s,q) -else ++q}}B.b.eL(s,a3,p)}, -Pa(a){var s,r,q,p,o,n -for(s=J.X(a),r=0;r=s&&this.b.a.a.length>=s}, -$S:628} -A.adQ.prototype={ -$0(){return B.b.bX(this.b.r,this.c+1,this.a.a)}, -$S:218} -A.L9.prototype={ -DD(a){var s,r=a.d,q=a.a,p=this.a.jV(0,q,r) -if(p==null)return!1 -s=p.b -if(s[1]!=null&&a.d>0)if(!B.OD.t(0,A.bQ(q.charCodeAt(a.d-1))))return!1 -if(s[2]!=null&&q.length>p.gbg(p))if(B.Oz.t(0,A.bQ(q.charCodeAt(p.gbg(p)))))return!1 -a.rS(0) -this.im(a,p) -return!0}, -im(a,b){var s,r,q,p,o,n=b.b[2]!=null -if(n)s=b.h(0,0).length -else{r=b.h(0,0) -r.toString -s=this.aag(r)}r=b.h(0,0) -r.toString -q=B.c.S(r,0,s) -if(n)p="mailto:"+q -else p=q[0]==="w"?"http://"+q:q -r=A.b([new A.cA(q)],t.D) -o=t.N -o=A.m(o,o) -o.m(0,"href",A.lA(B.dc,p,B.A,!1)) -a.r.push(new A.bt("a",r,o)) -a.v9(s) -return!0}, -aag(a){var s,r,q,p,o,n -if(B.c.jJ(a,")")){s=A.aG("(\\(.*)?(\\)+)$",!0,!1,!1,!1).ev(a).b -if(s[1]==null)r=s[2].length -else{for(s=a.length,q=0,p=0;p0&&a.a.charCodeAt(r-1)===96)return!1 -s=this.a.jV(0,a.a,r) -if(s==null)return!1 -a.rS(0) -this.im(a,s) -a.v9(s.h(0,0).length) -return!0}, -im(a,b){var s=b.b[1].length,r=b.h(0,0).length,q=a.d+s,p=B.c.S(a.a,q,q+(r-s*2)) -if(this.aj4(p))p=B.c.S(p,1,p.length-1) -p=A.e4(p,"\n"," ") -r=t.N -a.r.push(new A.bt("code",A.b([new A.cA(p)],t.D),A.m(r,r))) -return!0}, -aj4(a){var s,r -if(B.c.jd(a).length===0)return!1 -s=B.c.bJ(a," ")||B.c.bJ(a,"\n") -r=B.c.jJ(a," ")||B.c.jJ(a,"\n") -if(!s||!r)return!1 -return!0}} -A.Mv.prototype={ -DD(a){var s,r=a.d -if(r>0&&a.a.charCodeAt(r-1)===96)return!1 -s=this.a.jV(0,a.a,r) -if(s==null)return!1 -if(s.b[1]!=null){r=s.h(0,0) -r.toString -r=B.u0.h(0,r)==null}else r=!1 -if(r)return!1 -a.rS(0) -this.im(a,s) -a.v9(s.h(0,0).length) -return!0}, -im(a,b){var s=A.aO1(b) -a.r.push(new A.cA(s)) -return!0}} -A.MG.prototype={ -im(a,b){var s=this,r=b.b[0].length,q=a.d,p=q+r,o=a.a,n=new A.cA(B.c.S(o,q,p)) -if(!s.c){a.f.push(new A.E7(n,o.charCodeAt(q),r,!0,!1,s,p)) -a.r.push(n) -return!0}o=s.e -if(o==null)o=B.IC -a.f.push(A.aX1(a,q,p,s.d,n,s,o)) -a.r.push(n) -return!0}, -IX(a,b,c,d,e,f){var s=t.N -return A.b([new A.bt(f,e.$0(),A.m(s,s))],t.D)}} -A.kr.prototype={} -A.E7.prototype={$iAe:1, -gv3(){return this.b}, -gp(a){return this.c}, -gIP(){return this.e}, -gIO(){return this.f}, -swd(a){return this.d=a}} -A.uw.prototype={ -gp(a){return this.a.a.length}, -k(a){var s=this -return""}, -$iAe:1, -gv3(){return this.b}, -gIP(){return this.f}, -gIO(){return this.r}, -swd(){}} -A.a74.prototype={ -$2(a,b){return B.h.bi(a.b,b.b)}, -$S:629} -A.N3.prototype={ -im(a,b){var s,r,q=b.b[1] -q.toString -s=A.b([new A.cA(q)],t.D) -r=t.N -r=A.m(r,r) -r.m(0,"href",A.lA(B.dc,"mailto:"+q,B.A,!1)) -a.r.push(new A.bt("a",s,r)) -return!0}} -A.Az.prototype={} -A.Nk.prototype={ -im(a,b){var s,r,q=b.h(0,0) -q.toString -s=b.b[1] -s.toString -B.c.t('&"<>',s) -r=q[1] -a.r.push(new A.cA(r)) -return!0}} -A.aaB.prototype={ -$1(a){return a.toLowerCase()===this.a}, -$S:23} -A.aaC.prototype={ -$0(){return""}, -$S:32} -A.Or.prototype={ -Jb(a,b,c){var s,r=t.N -r=A.m(r,r) -s=c.$0() -r.m(0,"src",a) -r.m(0,"alt",J.ei(s,new A.ady(),t.u).oF(0)) -if(b!=null&&b.length!==0)r.m(0,"title",B.ny.cm(A.Km(b,$.Kx(),A.aC_(),null))) -return new A.bt("img",null,r)}} -A.ady.prototype={ -$1(a){if(a instanceof A.bt&&a.a==="img")return a.c.h(0,"alt") -return a.gp6()}, -$S:199} -A.Ox.prototype={} -A.dY.prototype={ -DD(a){var s,r=a.d,q=this.b -if(q!=null&&a.a.charCodeAt(r)!==q)return!1 -s=this.a.jV(0,a.a,r) -if(s==null)return!1 -a.rS(0) -if(this.im(a,s))a.v9(s.h(0,0).length) -return!0}} -A.OZ.prototype={ -im(a,b){var s=t.N -a.r.push(new A.bt("br",null,A.m(s,s))) -return!0}} -A.aeL.prototype={} -A.qX.prototype={ -IX(a,b,c,d,e,f){var s,r,q,p,o=this,n=new A.aeL(b,c,e),m=b.a,l=b.d,k=B.c.S(m,c.w,l);++l -s=m.length -if(l>=s)return o.A6(n,k) -r=m.charCodeAt(l) -if(r===40){b.d=l -q=o.agB(b) -if(q!=null)return A.b([o.Jb(q.a,q.b,e)],t.D) -b.d=l -b.d=l+-1 -return o.A6(n,k)}if(r===91){b.d=l;++l -if(l"),n=new A.bN(n,s),n=new A.bz(n,n.gp(n),s.i("bz")),s=s.i("am.E"),r=null;n.u();m=r){q=n.d -r=new A.pl(q==null?s.a(q):q,m,o,null)}if(r!=null)for(n=o.al,n=A.db(n,n.r,A.p(n).c),s=n.$ti.c;n.u();){q=n.d -if(q==null)q=s.a(q) -p=r.c -if(!J.e(q.aG,p)){q.aG=p -q.cN()}r=r.d -q.saqW(r) -if(!(r instanceof A.pl))break}return m}} -A.pl.prototype={ -bN(a){return new A.pm(this,B.R)}, -G(a){return A.U(A.a4("handled internally"))}} -A.pm.prototype={ -gaF(){return t.Fn.a(A.ap.prototype.gaF.call(this))}, -saqW(a){var s,r,q=this.al -if(a instanceof A.pl)if(q instanceof A.pl){s=a.c -r=q.c -s=A.u(s)===A.u(r)&&J.e(s.a,r.a)}else s=!1 -else s=!1 -if(s)return -if(!J.e(q,a)){this.al=a -this.b3(new A.avE())}}, -eg(a,b){var s=this,r=t.Fn -r.a(A.ap.prototype.gaF.call(s)).e.al.E(0,s) -s.aG=r.a(A.ap.prototype.gaF.call(s)).c -s.al=r.a(A.ap.prototype.gaF.call(s)).d -s.y4(a,b)}, -lU(){t.Fn.a(A.ap.prototype.gaF.call(this)).e.al.F(0,this) -this.tt()}, -bq(){var s=this.aG -s.toString -return s}} -A.avE.prototype={ -$1(a){return a.cN()}, -$S:10} -A.St.prototype={} -A.axu.prototype={ -$1(a){if(a instanceof A.pm)this.a.lB$=a -return!1}, -$S:18} -A.azx.prototype={ -$1(a){if(a instanceof A.pm)this.a.lB$=a -return!1}, -$S:18} -A.fI.prototype={ -G(a){return this.IM(a,this.c)}, -bN(a){return A.b00(this)}, -$ifJ:1} -A.E9.prototype={ -bq(){var s=this -if(s.lB$!=null)return t.k7.a(A.ap.prototype.gaF.call(s)).IM(s,s.lB$.al) -return s.a3J()}, -gaF(){return t.k7.a(A.ap.prototype.gaF.call(this))}} -A.a_S.prototype={ -eg(a,b){if(t.Ej.b(a))this.lB$=a -this.y4(a,b)}, -bY(){this.y6() -this.je(new A.axu(this))}} -A.a2b.prototype={ -eg(a,b){if(t.Ej.b(a))this.lB$=a -this.y4(a,b)}, -bY(){this.y6() -this.je(new A.azx(this))}} -A.a6v.prototype={ -alq(a,b){var s,r=null -A.aNE("absolute",A.b([b,null,null,null,null,null,null,null,null,null,null,null,null,null,null],t._m)) -s=this.a -s=s.hN(b)>0&&!s.n0(b) -if(s)return b -s=this.b -return this.Yr(0,s==null?A.aFp():s,b,r,r,r,r,r,r,r,r,r,r,r,r,r,r)}, -Yr(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q){var s=A.b([b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q],t._m) -A.aNE("join",s) -return this.ars(new A.hr(s,t.Ri))}, -ars(a){var s,r,q,p,o,n,m,l,k -for(s=a.ga9(a),r=new A.fN(s,new A.a6y(),a.$ti.i("fN")),q=this.a,p=!1,o=!1,n="";r.u();){m=s.gJ(s) -if(q.n0(m)&&o){l=A.Qt(m,q) -k=n.charCodeAt(0)==0?n:n -n=B.c.S(k,0,q.rG(k,!0)) -l.b=n -if(q.wA(n))l.e[0]=q.gpj() -n=""+l.k(0)}else if(q.hN(m)>0){o=!q.n0(m) -n=""+m}else{if(!(m.length!==0&&q.J_(m[0])))if(p)n+=q.gpj() -n+=m}p=q.wA(m)}return n.charCodeAt(0)==0?n:n}, -nB(a,b){var s=A.Qt(b,this.a),r=s.d,q=A.W(r).i("aL<1>") -q=A.a8(new A.aL(r,new A.a6z(),q),!0,q.i("q.E")) -s.d=q -r=s.b -if(r!=null)B.b.eY(q,0,r) -return s.d}, -wC(a,b){var s -if(!this.afa(b))return b -s=A.Qt(b,this.a) -s.wB(0) -return s.k(0)}, -afa(a){var s,r,q,p,o,n,m,l,k=this.a,j=k.hN(a) -if(j!==0){if(k===$.a3w())for(s=0;s0)return o.wC(0,a) -if(m.hN(a)<=0||m.n0(a))a=o.alq(0,a) -if(m.hN(a)<=0&&m.hN(s)>0)throw A.d(A.aJT(n+a+'" from "'+s+'".')) -r=A.Qt(s,m) -r.wB(0) -q=A.Qt(a,m) -q.wB(0) -l=r.d -if(l.length!==0&&J.e(l[0],"."))return q.k(0) -l=r.b -p=q.b -if(l!=p)l=l==null||p==null||!m.Lj(l,p) -else l=!1 -if(l)return q.k(0) -while(!0){l=r.d -if(l.length!==0){p=q.d -l=p.length!==0&&m.Lj(l[0],p[0])}else l=!1 -if(!l)break -B.b.ck(r.d,0) -B.b.ck(r.e,1) -B.b.ck(q.d,0) -B.b.ck(q.e,1)}l=r.d -if(l.length!==0&&J.e(l[0],".."))throw A.d(A.aJT(n+a+'" from "'+s+'".')) -l=t.N -B.b.fn(q.d,0,A.aT(r.d.length,"..",!1,l)) -p=q.e -p[0]="" -B.b.fn(p,1,A.aT(r.d.length,m.gpj(),!1,l)) -m=q.d -l=m.length -if(l===0)return"." -if(l>1&&J.e(B.b.gL(m),".")){B.b.dT(q.d) -m=q.e -m.pop() -m.pop() -m.push("")}q.b="" -q.ZL() -return q.k(0)}, -Za(a){var s,r,q=this,p=A.aNl(a) -if(p.gdB()==="file"&&q.a===$.Ku())return p.k(0) -else if(p.gdB()!=="file"&&p.gdB()!==""&&q.a!==$.Ku())return p.k(0) -s=q.wC(0,q.a.Li(A.aNl(p))) -r=q.atG(s) -return q.nB(0,r).length>q.nB(0,s).length?s:r}} -A.a6y.prototype={ -$1(a){return a!==""}, -$S:23} -A.a6z.prototype={ -$1(a){return a.length!==0}, -$S:23} -A.aAu.prototype={ -$1(a){return a==null?"null":'"'+a+'"'}, -$S:631} -A.adZ.prototype={ -a0e(a){var s=this.hN(a) -if(s>0)return B.c.S(a,0,s) -return this.n0(a)?a[0]:null}, -Lj(a,b){return a===b}} -A.ahj.prototype={ -ZL(){var s,r,q=this -while(!0){s=q.d -if(!(s.length!==0&&J.e(B.b.gL(s),"")))break -B.b.dT(q.d) -q.e.pop()}s=q.e -r=s.length -if(r!==0)s[r-1]=""}, -wB(a){var s,r,q,p,o,n,m=this,l=A.b([],t.s) -for(s=m.d,r=s.length,q=0,p=0;p0){s=B.c.hd(a,"\\",s+1) -if(s>0)return s}return r}if(r<3)return 0 -if(!A.aOq(a.charCodeAt(0)))return 0 -if(a.charCodeAt(1)!==58)return 0 -r=a.charCodeAt(2) -if(!(r===47||r===92))return 0 -return 3}, -hN(a){return this.rG(a,!1)}, -n0(a){return this.hN(a)===1}, -Li(a){var s,r -if(a.gdB()!==""&&a.gdB()!=="file")throw A.d(A.bF("Uri "+a.k(0)+" must have scheme 'file:'.",null)) -s=a.gdL(a) -if(a.gjO(a)===""){if(s.length>=3&&B.c.bJ(s,"/")&&A.aOs(s,1))s=B.c.Dm(s,"/","")}else s="\\\\"+a.gjO(a)+s -r=A.e4(s,"/","\\") -return A.jf(r,0,r.length,B.A,!1)}, -amT(a,b){var s -if(a===b)return!0 -if(a===47)return b===92 -if(a===92)return b===47 -if((a^b)!==32)return!1 -s=a|32 -return s>=97&&s<=122}, -Lj(a,b){var s,r -if(a===b)return!0 -s=a.length -if(s!==b.length)return!1 -for(r=0;r"))}, -IM(a,b){b.toString -return new A.ev(this,b,null,A.p(this).i("ev"))}} -A.GW.prototype={} -A.ev.prototype={ -cP(a){return!1}, -bN(a){return new A.tv(A.hG(t.v,t.X),this,B.R,this.$ti.i("tv<1>"))}} -A.tv.prototype={ -gtT(){var s,r=this,q=r.aA -if(q===$){s=new A.G0(r.$ti.i("ev<1>").a(A.ap.prototype.gaF.call(r)).f.e.$ti.i("G0<1>")) -s.a=r -r.aA!==$&&A.aW() -r.aA=s -q=s}return q}, -fv(a){var s={} -s.a=null -this.je(new A.auh(s,a)) -return s.a}, -eg(a,b){this.y4(a,b)}, -gaF(){return this.$ti.i("ev<1>").a(A.ap.prototype.gaF.call(this))}, -M4(a,b){var s=this.al,r=s.h(0,a) -if(r!=null&&!this.$ti.i("b1w<1>").b(r))return -s.m(0,a,B.dG)}, -KY(a,b){var s,r,q,p,o,n=this.al.h(0,b),m=!1 -if(n!=null)if(this.$ti.i("b1w<1>").b(n)){if(b.as)return -for(r=n.c,q=r.length,p=0;p") -r.a(A.ap.prototype.gaF.call(s)) -s.gtT().IK(s.dA) -s.dA=!1 -if(s.aB){s.aB=!1 -s.oQ(r.a(A.ap.prototype.gaF.call(s)))}return s.NO()}, -lU(){var s,r,q,p=this.gtT() -p.a43() -s=p.b -if(s!=null)s.$0() -if(p.c){s=p.a -s.toString -r=p.$ti -s=r.i("ix.D").a(s.$ti.i("ev<1>").a(A.ap.prototype.gaF.call(s)).f.e).f -if(s!=null){q=p.a -q.toString -p=p.d -s.$2(q,p==null?r.c.a(p):p)}}this.tt()}, -arY(){if(!this.aN)return -this.cN() -this.aB=!0}, -mA(a,b){return this.y7(a,b)}, -Bh(a){return this.mA(a,null)}, -$iOu:1} -A.auh.prototype={ -$1(a){this.a.a=a.fv(this.b) -return!1}, -$S:18} -A.Wb.prototype={} -A.ix.prototype={ -n(){}, -IK(a){}} -A.hX.prototype={} -A.G0.prototype={ -gl(a){var s,r,q,p,o,n,m=this,l=null,k=m.c -if(k&&m.f!=null){k=A.cG(m.$ti.c).k(0) -q=m.f -q=q==null?l:q.k(0) -throw A.d(A.a4("Tried to read a provider that threw during the creation of its value.\nThe exception occurred during the creation of type "+k+".\n\n"+A.j(q)))}if(!k){m.c=!0 -k=m.a -k.toString -q=m.$ti.i("ix.D") -if(q.a(k.$ti.i("ev<1>").a(A.ap.prototype.gaF.call(k)).f.e).a!=null)try{k=m.a -k.toString -k=q.a(k.$ti.i("ev<1>").a(A.ap.prototype.gaF.call(k)).f.e).a -k.toString -p=m.a -p.toString -m.d=k.$1(p)}catch(o){s=A.a6(o) -r=A.aJ(o) -m.f=new A.bH(s,r,"provider",l,l,!1) -throw o}finally{}k=m.a -k.toString -if(q.a(k.$ti.i("ev<1>").a(A.ap.prototype.gaF.call(k)).f.e).b!=null)try{k=m.a -k.toString -k=q.a(k.$ti.i("ev<1>").a(A.ap.prototype.gaF.call(k)).f.e).b -k.toString -q=m.a -q.toString -m.d=k.$2(q,m.d)}finally{}}k=m.a -k.aN=!1 -if(m.b==null){q=m.$ti -k=q.i("ix.D").a(A.p(k).i("ev<1>").a(A.ap.prototype.gaF.call(k)).f.e).e -if(k==null)k=l -else{p=m.a -p.toString -n=m.d -k=k.$2(p,n==null?q.c.a(n):n)}m.b=k}m.a.aN=!0 -k=m.d -return k==null?m.$ti.c.a(k):k}, -IK(a){var s,r,q,p,o,n,m=this -if(a)if(m.c){s=m.a -s.toString -s=m.$ti.i("ix.D").a(s.$ti.i("ev<1>").a(A.ap.prototype.gaF.call(s)).f.e).b!=null}else s=!1 -else s=!1 -if(s){r=m.d -try{s=m.a -s.toString -q=m.$ti -s=q.i("ix.D").a(s.$ti.i("ev<1>").a(A.ap.prototype.gaF.call(s)).f.e).b -s.toString -p=m.a -p.toString -o=m.d -m.d=s.$2(p,o==null?q.c.a(o):o)}finally{}s=m.a -s.toString -q=m.$ti -q.i("ix.D").a(s.$ti.i("ev<1>").a(A.ap.prototype.gaF.call(s)).f.e) -n=!J.e(m.d,r) -if(n){s=m.b -if(s!=null){s.$0() -m.b=null}s=m.e -if(s!=null){s=s.f -if(s!=null){p=m.a -p.toString -s.$2(p,r==null?q.c.a(r):r)}}}}else n=!1 -if(n)m.a.aB=!0 -s=m.a -s.toString -m.e=m.$ti.i("ix.D").a(s.$ti.i("ev<1>").a(A.ap.prototype.gaF.call(s)).f.e) -return m.a42(a)}} -A.PJ.prototype={} -A.CR.prototype={} -A.R5.prototype={ -k(a){return"A provider for "+this.a.k(0)+" unexpectedly returned null."}, -$ibV:1} -A.R4.prototype={ -k(a){return"Provider<"+this.a.k(0)+"> not found for "+this.b.k(0)}, -$ibV:1} -A.CV.prototype={} -A.CU.prototype={} -A.aic.prototype={ -$2(a,b){return this.a.$3(a,A.ce(a,!0,this.c),b)}, -$S(){return this.b.i("0(S,0?)")}} -A.CW.prototype={} -A.aib.prototype={ -$2(a,b){return this.a.$4(a,A.ce(a,!0,this.c),A.ce(a,!0,this.d),b)}, -$S(){return this.b.i("0(S,0?)")}} -A.aB9.prototype={ -$2(a,b){return A.azN(a,J.C(b))}, -$S:632} -A.wB.prototype={ -zQ(a,b,c){var s,r -A.tV(c,"value") -s=this.a -r=J.bR(s) -if(t.yp.b(c))r.m(s,b,J.lI(c)) -else r.m(s,b,c) -return $.aG8().ny(a,"flutter."+b,c)}} -A.afR.prototype={ -ny(a,b,c){return this.a0W(a,b,c)}, -a0W(a,b,c){var s=0,r=A.I(t.y),q,p -var $async$ny=A.D(function(d,e){if(d===1)return A.F(e,r) -while(true)switch(s){case 0:s=3 -return A.K(B.ue.hY("set"+a,A.l(["key",b,"value",c],t.N,t.z),!1,t.y),$async$ny) -case 3:p=e -p.toString -q=p -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$ny,r)}, -nm(a){var s=0,r=A.I(t.nf),q,p,o,n -var $async$nm=A.D(function(b,c){if(b===1)return A.F(c,r) -while(true)switch(s){case 0:p=t.N -o=t.K -s=3 -return A.K(B.ue.Kv("getAll",p,o),$async$nm) -case 3:n=c -q=n==null?A.m(p,o):n -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$nm,r)}} -A.alB.prototype={} -A.ai1.prototype={} -A.abe.prototype={} -A.alz.prototype={ -nm(a){var s=0,r=A.I(t.nf),q,p=this -var $async$nm=A.D(function(b,c){if(b===1)return A.F(c,r) -while(true)switch(s){case 0:q=p.DM(new A.abe(new A.ai1("flutter.",null))) -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$nm,r)}, -DM(a){return this.a_R(a)}, -a_R(a){var s=0,r=A.I(t.nf),q,p=this,o,n,m,l,k,j -var $async$DM=A.D(function(b,c){if(b===1)return A.F(c,r) -while(true)switch(s){case 0:k=a.a -j=A.m(t.N,t.K) -for(o=p.aaq(k.a,k.b),n=J.as(o.a),o=new A.fN(n,o.b,o.$ti.i("fN<1>"));o.u();){m=n.gJ(n) -l=window.localStorage.getItem(m) -l.toString -j.m(0,m,p.a8I(l))}q=j -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$DM,r)}, -ny(a,b,c){return this.a0X(a,b,c)}, -a0X(a,b,c){var s=0,r=A.I(t.y),q,p -var $async$ny=A.D(function(d,e){if(d===1)return A.F(e,r) -while(true)switch(s){case 0:p=window.localStorage -p.toString -p.setItem(b,B.ar.j0(c)) -q=!0 -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$ny,r)}, -aaq(a,b){var s=window.localStorage -s.toString -s=B.PC.gbI(s) -return new A.aL(s,new A.alA(a,b),A.W(s).i("aL<1>"))}, -a8I(a){var s=B.ar.ea(0,a) -if(t.j.b(s))return J.fW(s,t.N) -s.toString -return s}} -A.alA.prototype={ -$1(a){var s -if(B.c.bJ(a,this.a))s=!0 -else s=!1 -return s}, -$S:23} -A.amk.prototype={ -gp(a){return this.c.length}, -garG(a){return this.b.length}, -a67(a,b){var s,r,q,p,o,n -for(s=this.c,r=s.length,q=this.b,p=0;p=r||s[n]!==10)o=10}if(o===10)q.push(p+1)}}, -rX(a){var s,r=this -if(a<0)throw A.d(A.f3("Offset may not be negative, was "+a+".")) -else if(a>r.c.length)throw A.d(A.f3("Offset "+a+u.D+r.gp(r)+".")) -s=r.b -if(a=B.b.gL(s))return s.length-1 -if(r.aed(a)){s=r.d -s.toString -return s}return r.d=r.a9F(a)-1}, -aed(a){var s,r,q=this.d -if(q==null)return!1 -s=this.b -if(a=r-1||a=r-2||aa)p=r -else s=r+1}return p}, -DQ(a){var s,r,q=this -if(a<0)throw A.d(A.f3("Offset may not be negative, was "+a+".")) -else if(a>q.c.length)throw A.d(A.f3("Offset "+a+" must be not be greater than the number of characters in the file, "+q.gp(q)+".")) -s=q.rX(a) -r=q.b[s] -if(r>a)throw A.d(A.f3("Line "+s+" comes after offset "+a+".")) -return a-r}, -np(a){var s,r,q,p,o=this -if(a<0)throw A.d(A.f3("Line may not be negative, was "+a+".")) -else{s=o.b -r=s.length -if(a>=r)throw A.d(A.f3("Line "+a+" must be less than the number of lines in the file, "+o.garG(o)+"."))}q=s[a] -if(q<=o.c.length){p=a+1 -s=p=s[p]}else s=!0 -if(s)throw A.d(A.f3("Line "+a+" doesn't have 0 columns.")) -return q}} -A.Np.prototype={ -gd2(){return this.a.a}, -gdK(a){return this.a.rX(this.b)}, -ges(){return this.a.DQ(this.b)}, -gct(a){return this.b}} -A.xL.prototype={ -gd2(){return this.a.a}, -gp(a){return this.c-this.b}, -gbM(a){return A.aD6(this.a,this.b)}, -gbg(a){return A.aD6(this.a,this.c)}, -gcW(a){return A.j_(B.k1.bX(this.a.c,this.b,this.c),0,null)}, -gb5(a){var s=this,r=s.a,q=s.c,p=r.rX(q) -if(r.DQ(q)===0&&p!==0){if(q-s.b===0)return p===r.b.length-1?"":A.j_(B.k1.bX(r.c,r.np(p),r.np(p+1)),0,null)}else q=p===r.b.length-1?r.c.length:r.np(p+1) -return A.j_(B.k1.bX(r.c,r.np(r.rX(s.b)),q),0,null)}, -bi(a,b){var s -if(!(b instanceof A.xL))return this.a3H(0,b) -s=B.h.bi(this.b,b.b) -return s===0?B.h.bi(this.c,b.c):s}, -j(a,b){var s=this -if(b==null)return!1 -if(!(b instanceof A.xL))return s.a3G(0,b) -return s.b===b.b&&s.c===b.c&&J.e(s.a.a,b.a.a)}, -gA(a){return A.T(this.b,this.c,this.a.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -$imJ:1} -A.acl.prototype={ -aqr(a4){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1=this,a2=null,a3=a1.a -a1.UJ(B.b.gM(a3).c) -s=a1.e -r=A.aT(s,a2,!1,t.Xk) -for(q=a1.r,s=s!==0,p=a1.b,o=0;o0){m=a3[o-1] -l=m.c -k=n.c -if(!J.e(l,k)){a1.Aj("\u2575") -q.a+="\n" -a1.UJ(k)}else if(m.b+1!==n.b){a1.alo("...") -q.a+="\n"}}for(l=n.d,k=A.W(l).i("bN<1>"),j=new A.bN(l,k),j=new A.bz(j,j.gp(j),k.i("bz")),k=k.i("am.E"),i=n.b,h=n.a;j.u();){g=j.d -if(g==null)g=k.a(g) -f=g.a -e=f.gbM(f) -e=e.gdK(e) -d=f.gbg(f) -if(e!==d.gdK(d)){e=f.gbM(f) -f=e.gdK(e)===i&&a1.aee(B.c.S(h,0,f.gbM(f).ges()))}else f=!1 -if(f){c=B.b.d9(r,a2) -if(c<0)A.U(A.bF(A.j(r)+" contains no null elements.",a2)) -r[c]=g}}a1.aln(i) -q.a+=" " -a1.alm(n,r) -if(s)q.a+=" " -b=B.b.Kr(l,new A.acG()) -a=b===-1?a2:l[b] -k=a!=null -if(k){j=a.a -g=j.gbM(j) -g=g.gdK(g)===i?j.gbM(j).ges():0 -f=j.gbg(j) -a1.alj(h,g,f.gdK(f)===i?j.gbg(j).ges():h.length,p)}else a1.Al(h) -q.a+="\n" -if(k)a1.alk(n,a,r) -for(k=l.length,a0=0;a0")),q=this.r,r=r.i("a_.E");s.u();){p=s.d -if(p==null)p=r.a(p) -if(p===9)q.a+=B.c.a6(" ",4) -else q.a+=A.bQ(p)}}, -Ak(a,b,c){var s={} -s.a=c -if(b!=null)s.a=B.h.k(b+1) -this.iH(new A.acE(s,this,a),"\x1b[34m")}, -Aj(a){return this.Ak(a,null,null)}, -alo(a){return this.Ak(null,null,a)}, -aln(a){return this.Ak(null,a,null)}, -Ih(){return this.Ak(null,null,null)}, -FB(a){var s,r,q,p -for(s=new A.eU(a),r=t.Hz,s=new A.bz(s,s.gp(s),r.i("bz")),r=r.i("a_.E"),q=0;s.u();){p=s.d -if((p==null?r.a(p):p)===9)++q}return q}, -aee(a){var s,r,q -for(s=new A.eU(a),r=t.Hz,s=new A.bz(s,s.gp(s),r.i("bz")),r=r.i("a_.E");s.u();){q=s.d -if(q==null)q=r.a(q) -if(q!==32&&q!==9)return!1}return!0}, -a82(a,b){var s,r=this.b!=null -if(r&&b!=null)this.r.a+=b -s=a.$0() -if(r&&b!=null)this.r.a+="\x1b[0m" -return s}, -iH(a,b){return this.a82(a,b,t.z)}} -A.acF.prototype={ -$0(){return this.a}, -$S:633} -A.acn.prototype={ -$1(a){var s=a.d -s=new A.aL(s,new A.acm(),A.W(s).i("aL<1>")) -return s.gp(s)}, -$S:634} -A.acm.prototype={ -$1(a){var s=a.a,r=s.gbM(s) -r=r.gdK(r) -s=s.gbg(s) -return r!==s.gdK(s)}, -$S:119} -A.aco.prototype={ -$1(a){return a.c}, -$S:636} -A.acq.prototype={ -$1(a){var s=a.a.gd2() -return s==null?new A.O():s}, -$S:637} -A.acr.prototype={ -$2(a,b){return a.a.bi(0,b.a)}, -$S:638} -A.acs.prototype={ -$1(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=a.a,d=a.b,c=A.b([],t.Kx) -for(s=J.bR(d),r=s.ga9(d),q=t._Y;r.u();){p=r.gJ(r).a -o=p.gb5(p) -n=A.aB_(o,p.gcW(p),p.gbM(p).ges()) -n.toString -n=B.c.nY("\n",B.c.S(o,0,n)) -m=n.gp(n) -p=p.gbM(p) -l=p.gdK(p)-m -for(p=o.split("\n"),n=p.length,k=0;kB.b.gL(c).b)c.push(new A.k2(j,l,e,A.b([],q)));++l}}i=A.b([],q) -for(r=c.length,h=0,k=0;k")),p=p.i("am.E");q.u();){n=q.d -if(n==null)n=p.a(n) -f=n.a -f=f.gbM(f) -if(f.gdK(f)>j.b)break -i.push(n)}h+=i.length-g -B.b.K(j.d,i)}return c}, -$S:639} -A.acp.prototype={ -$1(a){var s=a.a -s=s.gbg(s) -return s.gdK(s)" -return null}, -$S:0} -A.acA.prototype={ -$0(){var s=this.b===this.c.b?"\u250c":"\u2514" -this.a.r.a+=s}, -$S:16} -A.acB.prototype={ -$0(){var s=this.b==null?"\u2500":"\u253c" -this.a.r.a+=s}, -$S:16} -A.acC.prototype={ -$0(){this.a.r.a+="\u2500" -return null}, -$S:0} -A.acD.prototype={ -$0(){var s,r,q=this,p=q.a,o=p.a?"\u253c":"\u2502" -if(q.c!=null)q.b.r.a+=o -else{s=q.e -r=s.b -if(q.d===r){s=q.b -s.iH(new A.acy(p,s),p.b) -p.a=!0 -if(p.b==null)p.b=s.b}else{if(q.r===r){r=q.f.a -s=r.gbg(r).ges()===s.a.length}else s=!1 -r=q.b -if(s)r.r.a+="\u2514" -else r.iH(new A.acz(r,o),p.b)}}}, -$S:16} -A.acy.prototype={ -$0(){var s=this.a.a?"\u252c":"\u250c" -this.b.r.a+=s}, -$S:16} -A.acz.prototype={ -$0(){this.a.r.a+=this.b}, -$S:16} -A.acu.prototype={ -$0(){var s=this -return s.a.Al(B.c.S(s.b,s.c,s.d))}, -$S:0} -A.acv.prototype={ -$0(){var s,r,q=this.a,p=q.r,o=p.a,n=this.c.a,m=n.gbM(n).ges(),l=n.gbg(n).ges() -n=this.b.a -s=q.FB(B.c.S(n,0,m)) -r=q.FB(B.c.S(n,m,l)) -m+=s*3 -p.a+=B.c.a6(" ",m) -p=p.a+=B.c.a6("^",Math.max(l+(s+r)*3-m,1)) -return p.length-o.length}, -$S:53} -A.acw.prototype={ -$0(){var s=this.c.a -return this.a.ali(this.b,s.gbM(s).ges())}, -$S:0} -A.acx.prototype={ -$0(){var s,r=this,q=r.a,p=q.r,o=p.a -if(r.b)p.a+=B.c.a6("\u2500",3) -else{s=r.d.a -q.UI(r.c,Math.max(s.gbg(s).ges()-1,0),!1)}return p.a.length-o.length}, -$S:53} -A.acE.prototype={ -$0(){var s=this.b,r=s.r,q=this.a.a -if(q==null)q="" -s=r.a+=B.c.asZ(q,s.d) -q=this.c -r.a=s+(q==null?"\u2502":q)}, -$S:16} -A.fP.prototype={ -k(a){var s,r,q=this.a,p=q.gbM(q) -p=p.gdK(p) -s=q.gbM(q).ges() -r=q.gbg(q) -q=""+"primary "+(""+p+":"+s+"-"+r.gdK(r)+":"+q.gbg(q).ges()) -return q.charCodeAt(0)==0?q:q}} -A.au9.prototype={ -$0(){var s,r,q,p,o=this.a -if(!(t.D_.b(o)&&A.aB_(o.gb5(o),o.gcW(o),o.gbM(o).ges())!=null)){s=o.gbM(o) -s=A.SL(s.gct(s),0,0,o.gd2()) -r=o.gbg(o) -r=r.gct(r) -q=o.gd2() -p=A.b5d(o.gcW(o),10) -o=A.aml(s,A.SL(r,A.aLT(o.gcW(o)),p,q),o.gcW(o),o.gcW(o))}return A.b1D(A.b1F(A.b1E(o)))}, -$S:640} -A.k2.prototype={ -k(a){return""+this.b+': "'+this.a+'" ('+B.b.bH(this.d,", ")+")"}} -A.jT.prototype={ -JC(a){var s=this.a -if(!J.e(s,a.gd2()))throw A.d(A.bF('Source URLs "'+A.j(s)+'" and "'+A.j(a.gd2())+"\" don't match.",null)) -return Math.abs(this.b-a.gct(a))}, -bi(a,b){var s=this.a -if(!J.e(s,b.gd2()))throw A.d(A.bF('Source URLs "'+A.j(s)+'" and "'+A.j(b.gd2())+"\" don't match.",null)) -return this.b-b.gct(b)}, -j(a,b){if(b==null)return!1 -return t.y3.b(b)&&J.e(this.a,b.gd2())&&this.b===b.gct(b)}, -gA(a){var s=this.a -s=s==null?null:s.gA(s) -if(s==null)s=0 -return s+this.b}, -k(a){var s=this,r=A.u(s).k(0),q=s.a -return"<"+r+": "+s.b+" "+(A.j(q==null?"unknown source":q)+":"+(s.c+1)+":"+(s.d+1))+">"}, -$ic9:1, -gd2(){return this.a}, -gct(a){return this.b}, -gdK(a){return this.c}, -ges(){return this.d}} -A.SM.prototype={ -JC(a){if(!J.e(this.a.a,a.gd2()))throw A.d(A.bF('Source URLs "'+A.j(this.gd2())+'" and "'+A.j(a.gd2())+"\" don't match.",null)) -return Math.abs(this.b-a.gct(a))}, -bi(a,b){if(!J.e(this.a.a,b.gd2()))throw A.d(A.bF('Source URLs "'+A.j(this.gd2())+'" and "'+A.j(b.gd2())+"\" don't match.",null)) -return this.b-b.gct(b)}, -j(a,b){if(b==null)return!1 -return t.y3.b(b)&&J.e(this.a.a,b.gd2())&&this.b===b.gct(b)}, -gA(a){var s=this.a.a -s=s==null?null:s.gA(s) -if(s==null)s=0 -return s+this.b}, -k(a){var s=A.u(this).k(0),r=this.b,q=this.a,p=q.a -return"<"+s+": "+r+" "+(A.j(p==null?"unknown source":p)+":"+(q.rX(r)+1)+":"+(q.DQ(r)+1))+">"}, -$ic9:1, -$ijT:1} -A.SO.prototype={ -a68(a,b,c){var s,r=this.b,q=this.a -if(!J.e(r.gd2(),q.gd2()))throw A.d(A.bF('Source URLs "'+A.j(q.gd2())+'" and "'+A.j(r.gd2())+"\" don't match.",null)) -else if(r.gct(r)'}, -$ic9:1} -A.mJ.prototype={ -gb5(a){return this.d}} -A.T0.prototype={ -gEk(a){return A.aQ(this.c)}} -A.amQ.prototype={ -gKH(){var s=this -if(s.c!==s.e)s.d=null -return s.d}, -E2(a){var s,r=this,q=r.d=J.aVn(a,r.b,r.c) -r.e=r.c -s=q!=null -if(s)r.e=r.c=q.gbg(q) -return s}, -WX(a,b){var s -if(this.E2(a))return -if(b==null)if(a instanceof A.mg)b="/"+a.a+"/" -else{s=J.di(a) -s=A.e4(s,"\\","\\\\") -b='"'+A.e4(s,'"','\\"')+'"'}this.PU(b)}, -vF(a){return this.WX(a,null)}, -aoP(){if(this.c===this.b.length)return -this.PU("no more input")}, -aoG(a,b,c,d){var s,r,q,p,o,n,m=this.b -if(d<0)A.U(A.f3("position must be greater than or equal to 0.")) -else if(d>m.length)A.U(A.f3("position must be less than or equal to the string length.")) -s=d+c>m.length -if(s)A.U(A.f3("position plus length must not go beyond the end of the string.")) -s=this.a -r=new A.eU(m) -q=A.b([0],t.t) -p=new Uint32Array(A.jg(r.eM(r))) -o=new A.amk(s,q,p) -o.a67(r,s) -n=d+c -if(n>p.length)A.U(A.f3("End "+n+u.D+o.gp(o)+".")) -else if(d<0)A.U(A.f3("Start may not be negative, was "+d+".")) -throw A.d(new A.T0(m,b,new A.xL(o,d,n)))}, -PU(a){this.aoG(0,"expected "+a+".",0,this.c)}} -A.aeC.prototype={ -I(){return"LaunchMode."+this.b}} -A.aqi.prototype={} -A.afS.prototype={ -Vq(a){var s=t.y -return B.ud.hY("canLaunch",A.l(["url",a],t.N,t.K),!1,s).bQ(0,new A.afT(),s)}, -Cp(a,b,c,d,e,f,g,h){var s=t.y -return B.ud.hY("launch",A.l(["url",a,"useSafariVC",f,"useWebView",g,"enableJavaScript",!0,"enableDomStorage",!0,"universalLinksOnly",e,"headers",d],t.N,t.K),!1,s).bQ(0,new A.afU(),s)}} -A.afT.prototype={ -$1(a){return a===!0}, -$S:220} -A.afU.prototype={ -$1(a){return a===!0}, -$S:220} -A.w2.prototype={ -I(){return"PreferredLaunchMode."+this.b}} -A.aq2.prototype={} -A.aq3.prototype={ -Vq(a){var s=$.aQ7(),r=A.aLu(a) -return A.dt(s.t(0,r==null?null:r.gdB()),t.y)}, -Cp(a,b,c,d,e,f,g,h){return this.arz(a,!0,!0,d,e,f,g,h)}, -arz(a,b,c,d,e,f,g,h){var s=0,r=A.I(t.y),q,p=this,o,n -var $async$Cp=A.D(function(i,j){if(i===1)return A.F(j,r) -while(true)switch(s){case 0:if(p.b){o=A.aLu(a) -o=B.yH.t(0,o==null?null:o.gdB())}else o=!1 -n=o?"_top":"" -B.W9.asW(p.a,a,n) -q=!0 -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$Cp,r)}} -A.rb.prototype={ -aS(a){var s=a.a,r=this.a -r[8]=s[8] -r[7]=s[7] -r[6]=s[6] -r[5]=s[5] -r[4]=s[4] -r[3]=s[3] -r[2]=s[2] -r[1]=s[1] -r[0]=s[0]}, -k(a){return"[0] "+this.lY(0).k(0)+"\n[1] "+this.lY(1).k(0)+"\n[2] "+this.lY(2).k(0)+"\n"}, -h(a,b){return this.a[b]}, -j(a,b){var s,r,q -if(b==null)return!1 -if(b instanceof A.rb){s=this.a -r=s[0] -q=b.a -s=r===q[0]&&s[1]===q[1]&&s[2]===q[2]&&s[3]===q[3]&&s[4]===q[4]&&s[5]===q[5]&&s[6]===q[6]&&s[7]===q[7]&&s[8]===q[8]}else s=!1 -return s}, -gA(a){return A.cn(this.a)}, -lY(a){var s=new Float64Array(3),r=this.a -s[0]=r[a] -s[1]=r[3+a] -s[2]=r[6+a] -return new A.bE(s)}, -a6(a,b){var s=new Float64Array(9),r=new A.rb(s) -r.aS(this) -s[0]=s[0]*b -s[1]=s[1]*b -s[2]=s[2]*b -s[3]=s[3]*b -s[4]=s[4]*b -s[5]=s[5]*b -s[6]=s[6]*b -s[7]=s[7]*b -s[8]=s[8]*b -return r}, -Y(a,b){var s,r=new Float64Array(9),q=new A.rb(r) -q.aS(this) -s=b.a -r[0]=r[0]+s[0] -r[1]=r[1]+s[1] -r[2]=r[2]+s[2] -r[3]=r[3]+s[3] -r[4]=r[4]+s[4] -r[5]=r[5]+s[5] -r[6]=r[6]+s[6] -r[7]=r[7]+s[7] -r[8]=r[8]+s[8] -return q}, -Z(a,b){var s,r=new Float64Array(9),q=new A.rb(r) -q.aS(this) -s=b.a -r[0]=r[0]-s[0] -r[1]=r[1]-s[1] -r[2]=r[2]-s[2] -r[3]=r[3]-s[3] -r[4]=r[4]-s[4] -r[5]=r[5]-s[5] -r[6]=r[6]-s[6] -r[7]=r[7]-s[7] -r[8]=r[8]-s[8] -return q}} -A.b6.prototype={ -aS(a){var s=a.a,r=this.a -r[15]=s[15] -r[14]=s[14] -r[13]=s[13] -r[12]=s[12] -r[11]=s[11] -r[10]=s[10] -r[9]=s[9] -r[8]=s[8] -r[7]=s[7] -r[6]=s[6] -r[5]=s[5] -r[4]=s[4] -r[3]=s[3] -r[2]=s[2] -r[1]=s[1] -r[0]=s[0]}, -k(a){var s=this -return"[0] "+s.lY(0).k(0)+"\n[1] "+s.lY(1).k(0)+"\n[2] "+s.lY(2).k(0)+"\n[3] "+s.lY(3).k(0)+"\n"}, -h(a,b){return this.a[b]}, -j(a,b){var s,r,q -if(b==null)return!1 -if(b instanceof A.b6){s=this.a -r=s[0] -q=b.a -s=r===q[0]&&s[1]===q[1]&&s[2]===q[2]&&s[3]===q[3]&&s[4]===q[4]&&s[5]===q[5]&&s[6]===q[6]&&s[7]===q[7]&&s[8]===q[8]&&s[9]===q[9]&&s[10]===q[10]&&s[11]===q[11]&&s[12]===q[12]&&s[13]===q[13]&&s[14]===q[14]&&s[15]===q[15]}else s=!1 -return s}, -gA(a){return A.cn(this.a)}, -Ec(a,b){var s=b.a,r=this.a -r[a]=s[0] -r[4+a]=s[1] -r[8+a]=s[2] -r[12+a]=s[3]}, -lY(a){var s=new Float64Array(4),r=this.a -s[0]=r[a] -s[1]=r[4+a] -s[2]=r[8+a] -s[3]=r[12+a] -return new A.jZ(s)}, -a6(a,b){var s=new A.b6(new Float64Array(16)) -s.aS(this) -s.m0(0,b,null,null) -return s}, -Y(a,b){var s,r=new Float64Array(16),q=new A.b6(r) -q.aS(this) -s=b.a -r[0]=r[0]+s[0] -r[1]=r[1]+s[1] -r[2]=r[2]+s[2] -r[3]=r[3]+s[3] -r[4]=r[4]+s[4] -r[5]=r[5]+s[5] -r[6]=r[6]+s[6] -r[7]=r[7]+s[7] -r[8]=r[8]+s[8] -r[9]=r[9]+s[9] -r[10]=r[10]+s[10] -r[11]=r[11]+s[11] -r[12]=r[12]+s[12] -r[13]=r[13]+s[13] -r[14]=r[14]+s[14] -r[15]=r[15]+s[15] -return q}, -Z(a,b){var s,r=new Float64Array(16),q=new A.b6(r) -q.aS(this) -s=b.a -r[0]=r[0]-s[0] -r[1]=r[1]-s[1] -r[2]=r[2]-s[2] -r[3]=r[3]-s[3] -r[4]=r[4]-s[4] -r[5]=r[5]-s[5] -r[6]=r[6]-s[6] -r[7]=r[7]-s[7] -r[8]=r[8]-s[8] -r[9]=r[9]-s[9] -r[10]=r[10]-s[10] -r[11]=r[11]-s[11] -r[12]=r[12]-s[12] -r[13]=r[13]-s[13] -r[14]=r[14]-s[14] -r[15]=r[15]-s[15] -return q}, -aK(a,b,a0){var s=this.a,r=s[0],q=s[4],p=s[8],o=s[12],n=s[1],m=s[5],l=s[9],k=s[13],j=s[2],i=s[6],h=s[10],g=s[14],f=s[3],e=s[7],d=s[11],c=s[15] -s[12]=r*b+q*a0+p*0+o -s[13]=n*b+m*a0+l*0+k -s[14]=j*b+i*a0+h*0+g -s[15]=f*b+e*a0+d*0+c}, -Dq(a){var s=Math.cos(a),r=Math.sin(a),q=this.a,p=q[0],o=q[4],n=q[1],m=q[5],l=q[2],k=q[6],j=q[3],i=q[7],h=-r -q[0]=p*s+o*r -q[1]=n*s+m*r -q[2]=l*s+k*r -q[3]=j*s+i*r -q[4]=p*h+o*s -q[5]=n*h+m*s -q[6]=l*h+k*s -q[7]=j*h+i*s}, -m0(a,b,c,d){var s,r,q,p -if(b instanceof A.bE){s=b.a -r=s[0] -q=s[1] -p=s[2]}else{if(typeof b=="number"){q=c==null?b:c -p=d==null?b:d}else throw A.d(A.cu(null)) -r=b}s=this.a -s[0]=s[0]*r -s[1]=s[1]*r -s[2]=s[2]*r -s[3]=s[3]*r -s[4]=s[4]*q -s[5]=s[5]*q -s[6]=s[6]*q -s[7]=s[7]*q -s[8]=s[8]*p -s[9]=s[9]*p -s[10]=s[10]*p -s[11]=s[11]*p -s[12]=s[12] -s[13]=s[13] -s[14]=s[14] -s[15]=s[15]}, -f2(a,b,c){return this.m0(a,b,c,null)}, -bw(a,b){return this.m0(a,b,null,null)}, -N2(){var s=this.a -s[0]=0 -s[1]=0 -s[2]=0 -s[3]=0 -s[4]=0 -s[5]=0 -s[6]=0 -s[7]=0 -s[8]=0 -s[9]=0 -s[10]=0 -s[11]=0 -s[12]=0 -s[13]=0 -s[14]=0 -s[15]=0}, -e6(){var s=this.a -s[0]=1 -s[1]=0 -s[2]=0 -s[3]=0 -s[4]=0 -s[5]=1 -s[6]=0 -s[7]=0 -s[8]=0 -s[9]=0 -s[10]=1 -s[11]=0 -s[12]=0 -s[13]=0 -s[14]=0 -s[15]=1}, -Wr(){var s=this.a,r=s[0],q=s[5],p=s[1],o=s[4],n=r*q-p*o,m=s[6],l=s[2],k=r*m-l*o,j=s[7],i=s[3],h=r*j-i*o,g=p*m-l*q,f=p*j-i*q,e=l*j-i*m -m=s[8] -i=s[9] -j=s[10] -l=s[11] -return-(i*e-j*f+l*g)*s[12]+(m*e-j*h+l*k)*s[13]-(m*f-i*h+l*n)*s[14]+(m*g-i*k+j*n)*s[15]}, -DZ(){var s=this.a,r=s[14],q=s[13],p=s[12] -s=new A.bE(new Float64Array(3)) -s.dC(p,q,r) -return s}, -N1(a){var s=a.a,r=s[2],q=s[1],p=s[0],o=this.a -o[14]=r -o[13]=q -o[12]=p}, -pb(){var s=this.a,r=s[0],q=s[1],p=s[2],o=s[4],n=s[5],m=s[6],l=s[8],k=s[9] -s=s[10] -return Math.sqrt(Math.max(r*r+q*q+p*p,Math.max(o*o+n*n+m*m,l*l+k*k+s*s)))}, -h4(b5){var s,r,q,p,o=b5.a,n=o[0],m=o[1],l=o[2],k=o[3],j=o[4],i=o[5],h=o[6],g=o[7],f=o[8],e=o[9],d=o[10],c=o[11],b=o[12],a=o[13],a0=o[14],a1=o[15],a2=n*i-m*j,a3=n*h-l*j,a4=n*g-k*j,a5=m*h-l*i,a6=m*g-k*i,a7=l*g-k*h,a8=f*a-e*b,a9=f*a0-d*b,b0=f*a1-c*b,b1=e*a0-d*a,b2=e*a1-c*a,b3=d*a1-c*a0,b4=a2*b3-a3*b2+a4*b1+a5*b0-a6*a9+a7*a8 -if(b4===0){this.aS(b5) -return 0}s=1/b4 -r=this.a -r[0]=(i*b3-h*b2+g*b1)*s -r[1]=(-m*b3+l*b2-k*b1)*s -r[2]=(a*a7-a0*a6+a1*a5)*s -r[3]=(-e*a7+d*a6-c*a5)*s -q=-j -r[4]=(q*b3+h*b0-g*a9)*s -r[5]=(n*b3-l*b0+k*a9)*s -p=-b -r[6]=(p*a7+a0*a4-a1*a3)*s -r[7]=(f*a7-d*a4+c*a3)*s -r[8]=(j*b2-i*b0+g*a8)*s -r[9]=(-n*b2+m*b0-k*a8)*s -r[10]=(b*a6-a*a4+a1*a2)*s -r[11]=(-f*a6+e*a4-c*a2)*s -r[12]=(q*b1+i*a9-h*a8)*s -r[13]=(n*b1-m*a9+l*a8)*s -r[14]=(p*a5+a*a3-a0*a2)*s -r[15]=(f*a5-e*a3+d*a2)*s -return b4}, -da(b5,b6){var s=this.a,r=s[0],q=s[4],p=s[8],o=s[12],n=s[1],m=s[5],l=s[9],k=s[13],j=s[2],i=s[6],h=s[10],g=s[14],f=s[3],e=s[7],d=s[11],c=s[15],b=b6.a,a=b[0],a0=b[4],a1=b[8],a2=b[12],a3=b[1],a4=b[5],a5=b[9],a6=b[13],a7=b[2],a8=b[6],a9=b[10],b0=b[14],b1=b[3],b2=b[7],b3=b[11],b4=b[15] -s[0]=r*a+q*a3+p*a7+o*b1 -s[4]=r*a0+q*a4+p*a8+o*b2 -s[8]=r*a1+q*a5+p*a9+o*b3 -s[12]=r*a2+q*a6+p*b0+o*b4 -s[1]=n*a+m*a3+l*a7+k*b1 -s[5]=n*a0+m*a4+l*a8+k*b2 -s[9]=n*a1+m*a5+l*a9+k*b3 -s[13]=n*a2+m*a6+l*b0+k*b4 -s[2]=j*a+i*a3+h*a7+g*b1 -s[6]=j*a0+i*a4+h*a8+g*b2 -s[10]=j*a1+i*a5+h*a9+g*b3 -s[14]=j*a2+i*a6+h*b0+g*b4 -s[3]=f*a+e*a3+d*a7+c*b1 -s[7]=f*a0+e*a4+d*a8+c*b2 -s[11]=f*a1+e*a5+d*a9+c*b3 -s[15]=f*a2+e*a6+d*b0+c*b4}, -CE(a){var s=new A.b6(new Float64Array(16)) -s.aS(this) -s.da(0,a) -return s}, -Wj(a0,a1,a2){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a=$.aJm -if(a==null)a=$.aJm=new A.bE(new Float64Array(3)) -s=this.a -a.dC(s[0],s[1],s[2]) -r=Math.sqrt(a.gwm()) -a.dC(s[4],s[5],s[6]) -q=Math.sqrt(a.gwm()) -a.dC(s[8],s[9],s[10]) -p=Math.sqrt(a.gwm()) -if(this.Wr()<0)r=-r -o=a0.a -o[0]=s[12] -o[1]=s[13] -o[2]=s[14] -n=1/r -m=1/q -l=1/p -k=$.aJk -if(k==null)k=$.aJk=new A.b6(new Float64Array(16)) -k.aS(this) -s=k.a -s[0]=s[0]*n -s[1]=s[1]*n -s[2]=s[2]*n -s[4]=s[4]*m -s[5]=s[5]*m -s[6]=s[6]*m -s[8]=s[8]*l -s[9]=s[9]*l -s[10]=s[10]*l -j=$.aJl -if(j==null)j=$.aJl=new A.rb(new Float64Array(9)) -i=j.a -i[0]=s[0] -i[1]=s[1] -i[2]=s[2] -i[3]=s[4] -i[4]=s[5] -i[5]=s[6] -i[6]=s[8] -i[7]=s[9] -i[8]=s[10] -s=i[0] -o=i[4] -h=i[8] -g=0+s+o+h -if(g>0){f=Math.sqrt(g+1) -s=a1.a -s[3]=f*0.5 -f=0.5/f -s[0]=(i[5]-i[7])*f -s[1]=(i[6]-i[2])*f -s[2]=(i[1]-i[3])*f}else{if(s()","b1()","~(ky)","J(ap)","b1(f)","~(@)","b1(@)","~(bn)","J(n)","L(ca)","B()","~(n,@)","b1(~)","~(cB?)","J(ds)","~(wV)","n(n)","n()","~(n)","ay(@)","J(o)","b1(O,d9)","~(kx)","~(i7)","J(l8)","J(kC)","~(qE)","J(O?)","~(dN,~())","~(ox)","J(a0)","o(ds,ds)","@(@)","~(ow)","~(o)","~(f_)","~(O,d9)","Z()","o()","J(f_)","Z(A,Z)","v(ca)","b1(n)","~(~())","J(@)","be?(c2?)","L?(ca)","~(oY)","J(he)","~(mu)","J(k7)","~(vv)","J(fz)","n(fg)","it()","at<@>(kQ)","~(eJ)","Z(Z,Z)","J(fy)","Q(A,ar)","o(t,t)","~(EJ)","~(BO)","~(oo)","hy(@)","J(dk)","~(EG)","o(o)","~(n,n)","f()","n(r7)","~(O?,O?)","o(n)","o(@,@)","~([bj?])","J(hI)","cK<@>?(jN)","at()","ca<0^>()","h(S)?(tR?)","cy(S)","n(r9)","h(S,h?)","at()","be?(c2?)","cT(ca)","O?(O?)","L(L)","es(es)","~(@,@)","J(fK)","~({curve:h_,descendant:t?,duration:b8,rect:y?})","J(cL)","o(cL,cL)","J(qB)","qc(S)","lX(@)","~(fF)","b1(p8?)","~(Q)","J(rQ)","~(vu)","b1(J)","~(bT?)","J(fP)","~(jx,J)","u8(B)","~(aw)","~(A?)","J(kT)","~(qF)","mT()","pv(S,cl,h?)","pw(S,cl,h?)","~(O)","J(n,@)","n(@)","fK(@)","~(hm,iU?)","@()","qR()","~(hH)","at<~>(J)","~(fM,o,o)","lk()","Z(tz)","o(n?)","hI()","hs(jQ)","fd(S,ar)","J(lM)","~(oR)","~(B)","~([O?])","h(S,nJ)","~(O[d9?])","f([f?])","at(cB?)","at<~>(kQ)","~(dO)","az()","h(S,o)","~(J?)","L?(L?)","~(Z)","J(a7r)","~([b8?])","bf(bf,J,it)","n(o)","~(TJ)","0^(0^,0^)","lo?(p6?)","o(ee,ee)","hS()","~(hS)","hL()","~(hL)","k_()","~(k_)","jw()","~(jw)","jH()","~(jH)","J(bK,n,n,xV)","~(jv)","ay<@>?(ay<@>?,@,ay<@>(@))","nj(@)","~(n,n?)","lT(@)","be?(c2?)","~(lo?)","~(fM,n,o)","at<~>(m3)","hq(bn)","ea()","J(aP)","J(eJ,Z)","at()","n_(S)","~(aY)","~(EI)","~(EK)","~(EH)","~(dw)","n?(il)","at()","b1(O)","jv()","~(rW)","lp?(o)","bT(f_)","i6(S)","J(bT)","o(bT?,bT?)","~(cS?)","J(oD)","at(a62)","b1(l1)","dX()","B()","@(n)","J(dY)","J(Ae)","B()","y()","J(J?)","~(nQ)","J(O?,O?)","o(O?)","o8(ds,jK)","B(k9)","ea?()","O()","at<@>()","o(oq,oq)","o(pp,pp)","uK(n)","o(op)","ae<@>(@)","~(@,d9)","n(du)","xR()","~(CN)","Z?(o)","at(n,az)","J(kZ)","ed?(kZ)","n(Z)","~(yx)","az<~(bn),b6?>()","~(~(bn),b6?)","~(f,f)","b1(O?)","p5()","rE?(LA,n,n)","~(EB,@)","nE(eD)","ux(eD)","qb(eD)","vx(y?,y?)","h(S,~())","~(i5)","oj<0^>(jN,h(S))","~(n,o)","~(he)","Z(mV)","~(n,o?)","0^?(0^?(c2?))","0^?(be<0^>?(c2?))","o(o,o)","be?(c2?)","b1(fn)","be?(c2?)","~(o,o,o)","be?(c2?)","be?(c2?)","cT?(ca)","cT?(c2?)","fM(@,@)","L?(c2?)","mR?(c2?)","ra?(c2?)","b8?(c2?)","J?(c2?)","hw?(c2?)","vg?(c2?)","n(O?)","bk(ca)","~(o,J(kC))","h(S,cl,cl)","J(o,o)","~(ni)","~(nt)","an(h)","~(B,f)","y()?(A)","J(S)","~(q)","J(o2?)","L(pg)","~(aP,aP?)","@(@,@)","bK(aP)","~(bK)","L?(L?,L?,L?[L?])","a5?(S,r2,fp)","J(iL)","Bp(@)","qT<@>(@)","rY(@)","mh(@)","tn()","mp?(ea)","qv(S,h?)","lJ(S,h?)","J(ca)","Z(ca)","b1(B,f)","at<~>([f?])","yh()","@(O)","fG(S)","cl(J)","qS(S,h?)","bL(S,h?)","t8(@)","j1()","aY>(O,ll<@>)","J(aY>)","~([oY?])","v()","bM()","u1()","eb()","~(o,o)","at(fM{allowUpscaling:J,cacheHeight:o?,cacheWidth:o?})","at(o0{allowUpscaling:J,cacheHeight:o?,cacheWidth:o?})","at(o0{getTargetSize:b0s(o,o)?})","df(df,cp)","cp(cp)","n(cp)","l7(S)","y3()","~(jx?,J)","at<~>(O,d9?)","nv(S,fG,nv?)","b1(a4t)","oZ(S,fG,l7,oZ?)","~(kF)","~(O,d9?)?(hH)","~(kF)?(hH)","~(fe)","no(S,fG,no?)","vL(bv)","y(bv)","vO(bv)","J(o,J)","oc(S,fG,oc?)","jV()","hN(S)","k()","of(of)","~(aE6)","m9(k,o)","n(Z,Z,n)","Q()","Z?()","~(hm)","J(md)","y(y?,es)","hN(S,fG,l7,hN?)","cT(kR)","~(kR,b6)","J(kR)","h(S,dH)","~(B{isMergeUp:J})","q2(S)","t5(S)","~(mZ)","J(mZ)","jS(S)","J(wF{crossAxisPosition!Z,mainAxisPosition!Z})","t4(S)","pP(@)","J(A)","J(dn)","n?(n)","~(o,xP)","~(wx)","~(cL)","~(Q?)","cL(n2)","i5(ny)","az(fK)","o(cL)","cL(o)","~(jR)","~(dp,~(O?))","at()","cB(cB?)","nm(az)","c1()","at(n?)","wM(@)","at<~>(cB?,~(cB?))","at>(@)","~(jK)","J(jp)","at(cB?)","D0()","kz(kY)","at<+(n,f0?)>()","~(l8)","B()","B(B)","Z(cc)","B<@>(n)","B(rV)","J(wE)","f0?()","~(br)","n(is)","cK<@>(jN)","J(vk)","is(n)","ue(S)","at<~>(@)","nF(S)","~(kY)","y(a7r)","~(em)","q8(S)","nC(S,ar)","~(jy)","~(p2)","~(jL)","~(mD)","~(eI)","~(a9j)","~(j2)","O?(hC)","dg(dg,p0)","~(oe,o)","at<~>(or)","~(dg)","J(dg?,dg)","uk(S,iw)","J(ib)","at(n)","J(Bv)","~(xN)","J(xD)","J(EA,i5)","J(tf)","ca(ee)","e1(S,ar)","B(S)","y(ee)","o(lu,lu)","B(ee,q)","J(ee)","hB(ap)","f2?(f?)","O?(o,ap?)","wA(S,h?)","b_U(y)","jt()","~(jt)","q6(S,n,h?)","rN(S,jS,h?)","qe(S,o)","~(n,f)","bY(S,hN,h?)","e1(S,n,h?)","h(S,dH<~>)","h(bT)","jO()","~(jO)","nI(fk)","~(fk?)","~(mw)","~(mz)","~(hQ,O)","rB(S,h?)","~(mX)","h(S,cl,v2,S,S)","J(mX)","re(S,h?)","qQ(S)","~(uF?,x1?)","~(n?)","t3(S,o)","nC(S,o)","pY(@)","rc(@)","t7(@)","pW(@)","~(DE)","~(DF)","~(wo)","B>(S)","at<@>(yg)","az(B<@>)","az(az)","b1(az)","b1(S,r2,fp)","J(cK<@>?)","J(mo)","uO()","j3?(e3?)","k7(cK<@>)","aY>(@,@)","tB()","A(o)","~(ar)","~(iY)","uh(S,h?)","b1(dO?)","~(dN)","cW(J)","oH(S,h?)","lJ(S)","v4(S,h?)","qP(bn)","vw(bn)","rf()","e3?(iz)","ii(mr)","h(S,iw)","J(jP)","b1(B<~>)","~(lW)","Z(@)","~(n,O?)","J(mB?)","lx()","~(lx)","~(ld)","ly()","~(ly)","~(mv)","o(eJ,eJ)","y(y)","J(y)","J(eJ)","~(wC,bj)","B()","O?()","yr(S,iw)","~(A)","ap?()","J(lh)","fv?(lh)","i1(lh)","ap(h)","J(i1)","J(B)","q
(i1)","A(ap)","B(i1)","nG(S)","at<~>(nl)","az(ln)","ln(@)","B()","qH(n)","li()","~(li)","lj()","~(lj)","~(p3)","~(oC)","b1(dw)","jC(ij)","h(xi,n?,Z?,Z?)","r4(S,r5?)","ii(jC)","hn(fz)","at<~>(n,cB?,~(cB?)?)","h6?(h6?)","0&(O)","h6?(f2?)","h6?/(~)","~(jI)","nU(az?)","f(o)","J(jI?)","m3()","~(B,f)","nl()","t9({from:Z?})","~(aIV)","n(bT)","az(f_)","~(B)","~(xr)","Q(f)","bk(bk)","aY(o,bT)","o(bT)","o(bT,bT)","~(n,cS)","cS(cS?)","cS?(cS?)","at<~>(f,f)","n?(cS?)","J(n?)","@(cS,oD)","J(n,cS?)","~(cS)","B()","~(a0)","B?()","o(n[n?])","n(n,L)","J(n,n)","~(B)","~(B)","BX()","~(fM)","n(il)","qD(@)","uX(@)","q()","vo()","~(vq)","J(Rb)","o(bt,bt)","@(@,n)","b1(~(fe))","J(il)","at<~>(~)","B()","J(kr)","o(kr,kr)","b1(n[n?])","n(n?)","o(o,@)","n?()","o(k2)","aY(aY)","O(k2)","O(fP)","o(fP,fP)","B(aY>)","mJ()","b1(~())","~(ki)","n(n,n)","qL(o)","wS()","J(L)","o(c9<@>,c9<@>)","B()","B(n,B)","b1(@,d9)","O?(@)","Q?(Q?,Q?,Z)","Z?(cc?,cc?,Z)","L?(L?,L?,Z)","mr(O)","xj(p7)","0&(O,d9)","h(S,k,J,h)","~(bH{forceReport:J})","jU?(n)","Z(Z,Z,Z)","h(S,cl,cl,h)","J?(J?,J?,Z)","~(o,@)","h(S,h)","e8?(e8?,e8?,Z)","df?(df?,df?,Z)","v?(v?,v?,Z)","o(a0w<@>,a0w<@>)","J({priority!o,scheduler!f4})","n(cB)","xv(cB)","B(n)","~(ds{alignment:Z?,alignmentPolicy:rR?,curve:h_?,duration:b8?})","o(ap,ap)","d6(d6?,d6?,Z)","B>(jE,n)","o(h,o)","fg(n{tabRemaining:o?})","~(S,aH?)","~()(Ou<@>,aa?)","ae<@>?()","bK(o)","0&(O,d9{fromPigeon:J})","~(n?{wrapWidth:o?})","f2?(az?)","ap?(ap)"],interceptorsByTag:null,leafTags:null,arrayRti:Symbol("$ti"),rttc:{"2;":(a,b)=>c=>c instanceof A.k5&&a.b(c.a)&&b.b(c.b),"2;cacheSize,maxTextLength":(a,b)=>c=>c instanceof A.yj&&a.b(c.a)&&b.b(c.b),"2;key,value":(a,b)=>c=>c instanceof A.ZG&&a.b(c.a)&&b.b(c.b),"3;breaks,graphemes,words":(a,b,c)=>d=>d instanceof A.ZH&&a.b(d.a)&&b.b(d.b)&&c.b(d.c),"3;large,medium,small":(a,b,c)=>d=>d instanceof A.ZI&&a.b(d.a)&&b.b(d.b)&&c.b(d.c),"3;x,y,z":(a,b,c)=>d=>d instanceof A.HL&&a.b(d.a)&&b.b(d.b)&&c.b(d.c),"4;domBlurListener,domFocusListener,element,semanticsNodeId":a=>b=>b instanceof A.HM&&A.b6y(a,b.a)}} -A.b2l(v.typeUniverse,JSON.parse('{"QT":"bl","lm":"bl","kK":"bl","a47":"bl","zp":"bl","jY":"bl","p8":"bl","vQ":"bl","Ay":"bl","AJ":"bl","B1":"bl","Cn":"bl","p7":"bl","yX":"bl","C5":"bl","ij":"bl","C4":"bl","vS":"bl","xa":"bl","adj":"bl","L4":"bl","agZ":"bl","ah_":"bl","L6":"bl","abn":"bl","apQ":"bl","aht":"bl","ak4":"bl","KS":"bl","aiG":"bl","a6r":"bl","a3U":"bl","aq7":"bl","aq8":"bl","a3T":"bl","a3V":"bl","ae3":"bl","a48":"bl","a4y":"bl","PG":"bl","ago":"bl","ahw":"bl","ahx":"bl","apK":"bl","apH":"bl","ahv":"bl","apG":"bl","ahs":"bl","zl":"bl","a9U":"bl","a9W":"bl","aia":"bl","b8G":"f","b8H":"f","b7k":"f","b7i":"aw","b8c":"aw","b7m":"nn","b7j":"ac","b8X":"ac","b9m":"ac","b7g":"aI","b8r":"aI","baq":"l1","b7n":"aC","b8Q":"aC","b9n":"aP","b86":"aP","b8v":"lU","ba1":"fm","b7Q":"lq","b7u":"kn","b9B":"kn","b8O":"bK","b8A":"qO","b8y":"qM","b7F":"cw","b7H":"jq","b7K":"fl","b7L":"fZ","b7G":"fZ","b7I":"fZ","zP":{"fe":[]},"f0":{"cj":[]},"ep":{"dM":[]},"kz":{"of":[]},"LM":{"nx":[]},"zO":{"nx":[]},"zQ":{"nx":[]},"ua":{"nx":[]},"C6":{"q":["jD"],"q.E":"jD"},"Oq":{"bV":[]},"LO":{"nx":[]},"FS":{"nx":[]},"FT":{"nx":[]},"LK":{"fe":[]},"up":{"fC":[]},"RN":{"fC":[]},"Lf":{"fC":[],"a4M":[]},"LX":{"fC":[],"a68":[]},"M0":{"fC":[],"a6b":[]},"LZ":{"fC":[],"a6a":[]},"Q3":{"fC":[],"ah2":[]},"Fg":{"fC":[],"TQ":[]},"Q1":{"fC":[],"TQ":[],"ah1":[]},"Sn":{"fC":[],"alw":[]},"QC":{"fC":[]},"uc":{"vL":[]},"zR":{"vO":[]},"Sq":{"aCA":[]},"LN":{"aCA":[],"O5":[]},"LP":{"of":[]},"LB":{"cj":[]},"Om":{"aIY":[]},"Ol":{"bV":[]},"B8":{"bV":[]},"eO":{"q":["1"],"q.E":"1"},"mW":{"q":["1"],"q.E":"1"},"NN":{"f0":[],"cj":[]},"AW":{"f0":[],"cj":[]},"AY":{"f0":[],"cj":[]},"CA":{"ep":[],"dM":[],"a4M":[]},"CC":{"ep":[],"dM":[],"a6b":[]},"Qw":{"ep":[],"dM":[],"a6a":[]},"CB":{"ep":[],"dM":[],"a68":[]},"CD":{"ep":[],"dM":[],"ah1":[]},"CE":{"ep":[],"dM":[],"ah2":[]},"wR":{"vL":[]},"oW":{"vO":[]},"Qz":{"dM":[]},"Aq":{"dx":[]},"Cw":{"dx":[]},"Qn":{"dx":[]},"Qr":{"dx":[]},"Qp":{"dx":[]},"Qo":{"dx":[]},"Qq":{"dx":[]},"Qb":{"dx":[]},"Qa":{"dx":[]},"Q9":{"dx":[]},"Qf":{"dx":[]},"Qh":{"dx":[]},"Ql":{"dx":[]},"Qk":{"dx":[]},"Qd":{"dx":[]},"Qg":{"dx":[]},"Qc":{"dx":[]},"Qj":{"dx":[]},"Qm":{"dx":[]},"Qe":{"dx":[]},"Qi":{"dx":[]},"CF":{"ep":[],"dM":[]},"CG":{"ep":[],"dM":[],"alw":[]},"Na":{"O5":[]},"qI":{"O5":[]},"FI":{"lY":[]},"Hm":{"lY":[]},"Nb":{"lY":[]},"C1":{"lY":[]},"Qy":{"dM":[]},"CH":{"ep":[],"dM":[],"TQ":[]},"B7":{"fe":[]},"Of":{"fe":[]},"Eb":{"B_":[]},"Ly":{"fe":[]},"z4":{"B_":[]},"RR":{"mA":[]},"NL":{"mA":[]},"OO":{"mA":[]},"P3":{"mA":[]},"Sk":{"aE6":[]},"Ti":{"mA":[]},"lz":{"a_":["1"],"B":["1"],"a7":["1"],"q":["1"]},"Xx":{"lz":["o"],"a_":["o"],"B":["o"],"a7":["o"],"q":["o"]},"TW":{"lz":["o"],"a_":["o"],"B":["o"],"a7":["o"],"q":["o"],"a_.E":"o","q.E":"o","lz.E":"o"},"vW":{"rn":[]},"LH":{"wQ":[]},"RO":{"wQ":[]},"N2":{"jy":[]},"N9":{"qy":[]},"Nf":{"qy":[]},"Ok":{"bV":[]},"Bl":{"J":[],"cN":[]},"Bn":{"b1":[],"cN":[]},"bl":{"f":[],"zp":[],"jY":[],"p8":[],"vQ":[],"Ay":[],"AJ":[],"B1":[],"Cn":[],"p7":[],"yX":[],"C5":[],"ij":[],"C4":[],"vS":[],"xa":[],"zl":[]},"w":{"B":["1"],"f":[],"a7":["1"],"q":["1"],"bx":["1"],"q.E":"1"},"aec":{"w":["1"],"B":["1"],"f":[],"a7":["1"],"q":["1"],"bx":["1"],"q.E":"1"},"o6":{"Z":[],"cc":[],"c9":["cc"]},"vj":{"Z":[],"o":[],"cc":[],"c9":["cc"],"cN":[]},"Bo":{"Z":[],"cc":[],"c9":["cc"],"cN":[]},"mf":{"n":[],"c9":["n"],"bx":["@"],"cN":[]},"k0":{"q":["2"]},"q_":{"k0":["1","2"],"q":["2"],"q.E":"2"},"Gu":{"q_":["1","2"],"k0":["1","2"],"a7":["2"],"q":["2"],"q.E":"2"},"FQ":{"a_":["2"],"B":["2"],"k0":["1","2"],"a7":["2"],"q":["2"]},"dI":{"FQ":["1","2"],"a_":["2"],"B":["2"],"k0":["1","2"],"a7":["2"],"q":["2"],"a_.E":"2","q.E":"2"},"lP":{"ca":["2"],"k0":["1","2"],"a7":["2"],"q":["2"],"q.E":"2"},"q0":{"aK":["3","4"],"az":["3","4"],"aK.V":"4","aK.K":"3"},"lO":{"k0":["1","2"],"a7":["2"],"q":["2"],"q.E":"2"},"ic":{"cj":[]},"eU":{"a_":["o"],"B":["o"],"a7":["o"],"q":["o"],"a_.E":"o","q.E":"o"},"a7":{"q":["1"]},"am":{"a7":["1"],"q":["1"]},"hk":{"am":["1"],"a7":["1"],"q":["1"],"q.E":"1","am.E":"1"},"eG":{"q":["2"],"q.E":"2"},"qm":{"eG":["1","2"],"a7":["2"],"q":["2"],"q.E":"2"},"a1":{"am":["2"],"a7":["2"],"q":["2"],"q.E":"2","am.E":"2"},"aL":{"q":["1"],"q.E":"1"},"i8":{"q":["2"],"q.E":"2"},"t2":{"q":["1"],"q.E":"1"},"Av":{"t2":["1"],"a7":["1"],"q":["1"],"q.E":"1"},"mG":{"q":["1"],"q.E":"1"},"uG":{"mG":["1"],"a7":["1"],"q":["1"],"q.E":"1"},"Ed":{"q":["1"],"q.E":"1"},"h1":{"a7":["1"],"q":["1"],"q.E":"1"},"m6":{"q":["1"],"q.E":"1"},"Au":{"m6":["1"],"a7":["1"],"q":["1"],"q.E":"1"},"hr":{"q":["1"],"q.E":"1"},"xg":{"a_":["1"],"B":["1"],"a7":["1"],"q":["1"]},"XU":{"am":["o"],"a7":["o"],"q":["o"],"q.E":"o","am.E":"o"},"r0":{"aK":["o","1"],"az":["o","1"],"aK.V":"1","aK.K":"o"},"bN":{"am":["1"],"a7":["1"],"q":["1"],"q.E":"1","am.E":"1"},"mK":{"EB":[]},"q5":{"mQ":["1","2"],"az":["1","2"]},"un":{"az":["1","2"]},"bG":{"un":["1","2"],"az":["1","2"]},"tw":{"q":["1"],"q.E":"1"},"d3":{"un":["1","2"],"az":["1","2"]},"A0":{"iV":["1"],"ca":["1"],"a7":["1"],"q":["1"]},"fs":{"iV":["1"],"ca":["1"],"a7":["1"],"q":["1"],"q.E":"1"},"f1":{"iV":["1"],"ca":["1"],"a7":["1"],"q":["1"],"q.E":"1"},"Oy":{"m7":[]},"me":{"m7":[]},"Cm":{"mM":[],"mm":[],"cj":[]},"OD":{"mm":[],"cj":[]},"U_":{"cj":[]},"PX":{"bV":[]},"IH":{"d9":[]},"nz":{"m7":[]},"M2":{"m7":[]},"M3":{"m7":[]},"Tm":{"m7":[]},"SV":{"m7":[]},"u_":{"m7":[]},"VY":{"cj":[]},"RV":{"cj":[]},"fA":{"aK":["1","2"],"az":["1","2"],"aK.V":"2","aK.K":"1"},"bm":{"a7":["1"],"q":["1"],"q.E":"1"},"Bq":{"fA":["1","2"],"aK":["1","2"],"az":["1","2"],"aK.V":"2","aK.K":"1"},"qU":{"fA":["1","2"],"aK":["1","2"],"az":["1","2"],"aK.V":"2","aK.K":"1"},"mg":{"Rb":[]},"y5":{"oD":[],"r7":[]},"Uu":{"q":["oD"],"q.E":"oD"},"wO":{"r7":[]},"a0b":{"q":["r7"],"q.E":"r7"},"C7":{"f":[],"LA":[],"cN":[]},"Cb":{"f":[],"dF":[]},"C8":{"f":[],"cB":[],"dF":[],"cN":[]},"vD":{"bI":["1"],"f":[],"dF":[],"bx":["1"]},"on":{"a_":["Z"],"bI":["Z"],"B":["Z"],"f":[],"a7":["Z"],"dF":[],"bx":["Z"],"q":["Z"]},"ik":{"a_":["o"],"bI":["o"],"B":["o"],"f":[],"a7":["o"],"dF":[],"bx":["o"],"q":["o"]},"C9":{"on":[],"a_":["Z"],"aa3":[],"bI":["Z"],"B":["Z"],"f":[],"a7":["Z"],"dF":[],"bx":["Z"],"q":["Z"],"cN":[],"a_.E":"Z","q.E":"Z"},"PN":{"on":[],"a_":["Z"],"aa4":[],"bI":["Z"],"B":["Z"],"f":[],"a7":["Z"],"dF":[],"bx":["Z"],"q":["Z"],"cN":[],"a_.E":"Z","q.E":"Z"},"PO":{"ik":[],"a_":["o"],"adV":[],"bI":["o"],"B":["o"],"f":[],"a7":["o"],"dF":[],"bx":["o"],"q":["o"],"cN":[],"a_.E":"o","q.E":"o"},"Ca":{"ik":[],"a_":["o"],"adW":[],"bI":["o"],"B":["o"],"f":[],"a7":["o"],"dF":[],"bx":["o"],"q":["o"],"cN":[],"a_.E":"o","q.E":"o"},"PP":{"ik":[],"a_":["o"],"adX":[],"bI":["o"],"B":["o"],"f":[],"a7":["o"],"dF":[],"bx":["o"],"q":["o"],"cN":[],"a_.E":"o","q.E":"o"},"PQ":{"ik":[],"a_":["o"],"apT":[],"bI":["o"],"B":["o"],"f":[],"a7":["o"],"dF":[],"bx":["o"],"q":["o"],"cN":[],"a_.E":"o","q.E":"o"},"Cc":{"ik":[],"a_":["o"],"xb":[],"bI":["o"],"B":["o"],"f":[],"a7":["o"],"dF":[],"bx":["o"],"q":["o"],"cN":[],"a_.E":"o","q.E":"o"},"Cd":{"ik":[],"a_":["o"],"apU":[],"bI":["o"],"B":["o"],"f":[],"a7":["o"],"dF":[],"bx":["o"],"q":["o"],"cN":[],"a_.E":"o","q.E":"o"},"ri":{"ik":[],"a_":["o"],"fM":[],"bI":["o"],"B":["o"],"f":[],"a7":["o"],"dF":[],"bx":["o"],"q":["o"],"cN":[],"a_.E":"o","q.E":"o"},"J5":{"hU":[]},"WJ":{"cj":[]},"J6":{"mM":[],"cj":[]},"ae":{"at":["1"]},"f7":{"iY":["1"],"f7.T":"1"},"J2":{"TJ":[]},"iy":{"q":["1"],"q.E":"1"},"KZ":{"cj":[]},"dh":{"f9":["1"],"yt":["1"],"c1":["1"],"c1.T":"1"},"tl":{"pd":["1"],"f7":["1"],"iY":["1"],"f7.T":"1"},"j4":{"iX":["1"]},"pt":{"j4":["1"],"iX":["1"]},"dG":{"j4":["1"],"iX":["1"]},"xu":{"pt":["1"],"j4":["1"],"iX":["1"]},"b3":{"xx":["1"]},"IP":{"xx":["1"]},"Ev":{"c1":["1"]},"ys":{"iX":["1"]},"pa":{"UP":["1"],"ys":["1"],"iX":["1"]},"f9":{"yt":["1"],"c1":["1"],"c1.T":"1"},"pd":{"f7":["1"],"iY":["1"],"f7.T":"1"},"IL":{"Us":["1"]},"yt":{"c1":["1"]},"xE":{"iY":["1"]},"xt":{"c1":["1"],"c1.T":"1"},"tm":{"iY":["1"]},"Gy":{"c1":["1"],"c1.T":"1"},"j8":{"c1":["2"]},"xO":{"f7":["2"],"iY":["2"],"f7.T":"2"},"fq":{"j8":["1","2"],"c1":["2"],"c1.T":"2","j8.S":"1","j8.T":"2"},"GP":{"j8":["1","1"],"c1":["1"],"c1.T":"1","j8.S":"1","j8.T":"1"},"ts":{"aK":["1","2"],"az":["1","2"],"aK.V":"2","aK.K":"1"},"xW":{"ts":["1","2"],"aK":["1","2"],"az":["1","2"],"aK.V":"2","aK.K":"1"},"tt":{"a7":["1"],"q":["1"],"q.E":"1"},"Hb":{"fA":["1","2"],"aK":["1","2"],"az":["1","2"],"aK.V":"2","aK.K":"1"},"ls":{"yq":["1"],"iV":["1"],"ca":["1"],"a7":["1"],"q":["1"],"q.E":"1"},"hZ":{"yq":["1"],"iV":["1"],"aZ0":["1"],"ca":["1"],"a7":["1"],"q":["1"],"q.E":"1"},"r_":{"q":["1"],"q.E":"1"},"a_":{"B":["1"],"a7":["1"],"q":["1"]},"aK":{"az":["1","2"]},"xh":{"aK":["1","2"],"az":["1","2"]},"He":{"a7":["2"],"q":["2"],"q.E":"2"},"BQ":{"az":["1","2"]},"mQ":{"az":["1","2"]},"Gi":{"Gj":["1"],"aIn":["1"]},"Gk":{"Gj":["1"]},"Ao":{"a7":["1"],"q":["1"],"q.E":"1"},"BD":{"am":["1"],"a7":["1"],"q":["1"],"q.E":"1","am.E":"1"},"iV":{"ca":["1"],"a7":["1"],"q":["1"]},"yq":{"iV":["1"],"ca":["1"],"a7":["1"],"q":["1"]},"Em":{"aK":["1","2"],"az":["1","2"],"aK.V":"2","aK.K":"1"},"n0":{"a7":["1"],"q":["1"],"q.E":"1"},"tE":{"a7":["2"],"q":["2"],"q.E":"2"},"IC":{"a7":["aY<1,2>"],"q":["aY<1,2>"],"q.E":"aY<1,2>"},"n1":{"lw":["1","2","1"],"lw.T":"1"},"IG":{"lw":["1","fS<1,2>","2"],"lw.T":"2"},"tD":{"lw":["1","fS<1,2>","aY<1,2>"],"lw.T":"aY<1,2>"},"wK":{"iV":["1"],"ca":["1"],"a7":["1"],"q":["1"],"q.E":"1"},"nL":{"dC":["n","B"]},"XB":{"aK":["n","@"],"az":["n","@"],"aK.V":"@","aK.K":"n"},"XC":{"am":["n"],"a7":["n"],"q":["n"],"q.E":"n","am.E":"n"},"H7":{"iZ":[]},"KU":{"nL":[],"dC":["n","B"],"dC.S":"n","dC.T":"B"},"a1w":{"bC":["n","B"]},"KW":{"bC":["n","B"],"bC.S":"n","bC.T":"B"},"a1x":{"iZ":[]},"a1v":{"bC":["B","n"]},"KV":{"bC":["B","n"],"bC.S":"B","bC.T":"n"},"Lh":{"dC":["B","n"],"dC.S":"B","dC.T":"n"},"Lj":{"bC":["B","n"],"bC.S":"B","bC.T":"n"},"Li":{"bC":["n","B"],"bC.S":"n","bC.T":"B"},"UW":{"iZ":[]},"GI":{"dC":["1","3"],"dC.S":"1","dC.T":"3"},"GJ":{"bC":["1","3"],"bC.S":"1","bC.T":"3"},"Oh":{"bC":["n","n"],"bC.S":"n","bC.T":"n"},"Xg":{"iZ":[]},"Br":{"cj":[]},"OH":{"cj":[]},"OG":{"dC":["O?","n"],"dC.S":"O?","dC.T":"n"},"OJ":{"bC":["O?","n"],"bC.S":"O?","bC.T":"n"},"OK":{"bC":["O?","B"],"bC.S":"O?","bC.T":"B"},"OI":{"bC":["n","O?"],"bC.S":"n","bC.T":"O?"},"OP":{"nL":[],"dC":["n","B"],"dC.S":"n","dC.T":"B"},"OR":{"bC":["n","B"],"bC.S":"n","bC.T":"B"},"OQ":{"bC":["B","n"],"bC.S":"B","bC.T":"n"},"yv":{"iZ":[]},"ps":{"iZ":[]},"U8":{"nL":[],"dC":["n","B"],"dC.S":"n","dC.T":"B"},"Fr":{"bC":["n","B"],"bC.S":"n","bC.T":"B"},"Jj":{"iZ":[]},"U9":{"bC":["B","n"],"bC.S":"B","bC.T":"n"},"dX":{"c9":["dX"]},"Z":{"cc":[],"c9":["cc"]},"b8":{"c9":["b8"]},"o":{"cc":[],"c9":["cc"]},"B":{"a7":["1"],"q":["1"]},"cc":{"c9":["cc"]},"oD":{"r7":[]},"ca":{"a7":["1"],"q":["1"]},"n":{"c9":["n"]},"pQ":{"cj":[]},"mM":{"cj":[]},"iE":{"cj":[]},"w7":{"cj":[]},"Ba":{"cj":[]},"mm":{"cj":[]},"U2":{"cj":[]},"xf":{"cj":[]},"iW":{"cj":[]},"M9":{"cj":[]},"Q5":{"cj":[]},"Eq":{"cj":[]},"GB":{"bV":[]},"ia":{"bV":[]},"GL":{"am":["1"],"a7":["1"],"q":["1"],"q.E":"1","am.E":"1"},"a0f":{"d9":[]},"Jg":{"xi":[]},"jd":{"xi":[]},"W0":{"xi":[]},"aC":{"bK":[],"aP":[],"f":[]},"cw":{"f":[]},"bK":{"aP":[],"f":[]},"aw":{"f":[]},"h2":{"np":[],"f":[]},"h4":{"f":[]},"nV":{"f":[]},"hb":{"f":[]},"aP":{"f":[]},"hd":{"f":[]},"l1":{"aw":[],"f":[]},"hg":{"f":[]},"hh":{"f":[]},"hi":{"f":[]},"fl":{"f":[]},"ho":{"f":[]},"fm":{"f":[]},"hp":{"f":[]},"xV":{"kT":[]},"KG":{"f":[]},"KK":{"aC":[],"bK":[],"aP":[],"f":[]},"KT":{"aC":[],"bK":[],"aP":[],"f":[]},"tZ":{"aC":[],"bK":[],"aP":[],"f":[]},"np":{"f":[]},"pV":{"aC":[],"bK":[],"aP":[],"f":[]},"kn":{"aP":[],"f":[]},"Md":{"f":[]},"qa":{"f":[]},"fZ":{"f":[]},"jq":{"f":[]},"Me":{"f":[]},"Mf":{"f":[]},"Mu":{"f":[]},"lU":{"aP":[],"f":[]},"MU":{"f":[]},"Am":{"a_":["ip"],"b0":["ip"],"B":["ip"],"bI":["ip"],"f":[],"a7":["ip"],"q":["ip"],"bx":["ip"],"b0.E":"ip","a_.E":"ip","q.E":"ip"},"An":{"f":[],"ip":["cc"]},"MW":{"a_":["n"],"b0":["n"],"B":["n"],"bI":["n"],"f":[],"a7":["n"],"q":["n"],"bx":["n"],"b0.E":"n","a_.E":"n","q.E":"n"},"MY":{"f":[]},"Vf":{"a_":["bK"],"B":["bK"],"a7":["bK"],"q":["bK"],"a_.E":"bK","q.E":"bK"},"ac":{"f":[]},"No":{"a_":["h2"],"b0":["h2"],"B":["h2"],"bI":["h2"],"f":[],"a7":["h2"],"q":["h2"],"bx":["h2"],"b0.E":"h2","a_.E":"h2","q.E":"h2"},"Nq":{"f":[]},"NQ":{"aC":[],"bK":[],"aP":[],"f":[]},"Od":{"f":[]},"qM":{"a_":["aP"],"b0":["aP"],"B":["aP"],"bI":["aP"],"f":[],"a7":["aP"],"q":["aP"],"bx":["aP"],"b0.E":"aP","a_.E":"aP","q.E":"aP"},"qO":{"f":[]},"v7":{"f":[]},"BB":{"aC":[],"bK":[],"aP":[],"f":[]},"P5":{"f":[]},"Pq":{"f":[]},"Pt":{"f":[]},"PA":{"f":[],"aK":["n","@"],"az":["n","@"],"aK.V":"@","aK.K":"n"},"PB":{"f":[],"aK":["n","@"],"az":["n","@"],"aK.V":"@","aK.K":"n"},"PC":{"a_":["hb"],"b0":["hb"],"B":["hb"],"bI":["hb"],"f":[],"a7":["hb"],"q":["hb"],"bx":["hb"],"b0.E":"hb","a_.E":"hb","q.E":"hb"},"eN":{"a_":["aP"],"B":["aP"],"a7":["aP"],"q":["aP"],"a_.E":"aP","q.E":"aP"},"Cj":{"a_":["aP"],"b0":["aP"],"B":["aP"],"bI":["aP"],"f":[],"a7":["aP"],"q":["aP"],"bx":["aP"],"b0.E":"aP","a_.E":"aP","q.E":"aP"},"QV":{"a_":["hd"],"b0":["hd"],"B":["hd"],"bI":["hd"],"f":[],"a7":["hd"],"q":["hd"],"bx":["hd"],"b0.E":"hd","a_.E":"hd","q.E":"hd"},"RT":{"f":[],"aK":["n","@"],"az":["n","@"],"aK.V":"@","aK.K":"n"},"DG":{"aC":[],"bK":[],"aP":[],"f":[]},"Sb":{"aC":[],"bK":[],"aP":[],"f":[]},"SK":{"a_":["hg"],"b0":["hg"],"B":["hg"],"bI":["hg"],"f":[],"a7":["hg"],"q":["hg"],"bx":["hg"],"b0.E":"hg","a_.E":"hg","q.E":"hg"},"SS":{"a_":["hh"],"b0":["hh"],"B":["hh"],"bI":["hh"],"f":[],"a7":["hh"],"q":["hh"],"bx":["hh"],"b0.E":"hh","a_.E":"hh","q.E":"hh"},"Et":{"f":[],"aK":["n","n"],"az":["n","n"],"aK.V":"n","aK.K":"n"},"EF":{"aC":[],"bK":[],"aP":[],"f":[]},"Tb":{"aC":[],"bK":[],"aP":[],"f":[]},"Tc":{"aC":[],"bK":[],"aP":[],"f":[]},"wX":{"aC":[],"bK":[],"aP":[],"f":[]},"TE":{"a_":["fm"],"b0":["fm"],"B":["fm"],"bI":["fm"],"f":[],"a7":["fm"],"q":["fm"],"bx":["fm"],"b0.E":"fm","a_.E":"fm","q.E":"fm"},"TF":{"a_":["ho"],"b0":["ho"],"B":["ho"],"bI":["ho"],"f":[],"a7":["ho"],"q":["ho"],"bx":["ho"],"b0.E":"ho","a_.E":"ho","q.E":"ho"},"TI":{"f":[]},"TN":{"a_":["hp"],"b0":["hp"],"B":["hp"],"bI":["hp"],"f":[],"a7":["hp"],"q":["hp"],"bx":["hp"],"b0.E":"hp","a_.E":"hp","q.E":"hp"},"TO":{"f":[]},"U4":{"f":[]},"Ub":{"f":[]},"p9":{"f":[]},"lq":{"f":[]},"xw":{"aP":[],"f":[]},"VH":{"a_":["cw"],"b0":["cw"],"B":["cw"],"bI":["cw"],"f":[],"a7":["cw"],"q":["cw"],"bx":["cw"],"b0.E":"cw","a_.E":"cw","q.E":"cw"},"Gh":{"f":[],"ip":["cc"]},"X4":{"a_":["h4?"],"b0":["h4?"],"B":["h4?"],"bI":["h4?"],"f":[],"a7":["h4?"],"q":["h4?"],"bx":["h4?"],"b0.E":"h4?","a_.E":"h4?","q.E":"h4?"},"Hs":{"a_":["aP"],"b0":["aP"],"B":["aP"],"bI":["aP"],"f":[],"a7":["aP"],"q":["aP"],"bx":["aP"],"b0.E":"aP","a_.E":"aP","q.E":"aP"},"a03":{"a_":["hi"],"b0":["hi"],"B":["hi"],"bI":["hi"],"f":[],"a7":["hi"],"q":["hi"],"bx":["hi"],"b0.E":"hi","a_.E":"hi","q.E":"hi"},"a0h":{"a_":["fl"],"b0":["fl"],"B":["fl"],"bI":["fl"],"f":[],"a7":["fl"],"q":["fl"],"bx":["fl"],"b0.E":"fl","a_.E":"fl","q.E":"fl"},"UQ":{"aK":["n","n"],"az":["n","n"]},"Gv":{"aK":["n","n"],"az":["n","n"],"aK.V":"n","aK.K":"n"},"pf":{"c1":["1"],"c1.T":"1"},"Gw":{"pf":["1"],"c1":["1"],"c1.T":"1"},"GA":{"iY":["1"]},"Ck":{"kT":[]},"Iy":{"kT":[]},"a0z":{"kT":[]},"a0i":{"kT":[]},"VZ":{"f":[]},"Nr":{"a_":["bK"],"B":["bK"],"a7":["bK"],"q":["bK"],"a_.E":"bK","q.E":"bK"},"vl":{"f":[]},"qT":{"a_":["1"],"B":["1"],"a7":["1"],"q":["1"],"a_.E":"1","q.E":"1"},"PW":{"bV":[]},"id":{"f":[]},"im":{"f":[]},"iu":{"f":[]},"OX":{"a_":["id"],"b0":["id"],"B":["id"],"f":[],"a7":["id"],"q":["id"],"b0.E":"id","a_.E":"id","q.E":"id"},"PY":{"a_":["im"],"b0":["im"],"B":["im"],"f":[],"a7":["im"],"q":["im"],"b0.E":"im","a_.E":"im","q.E":"im"},"QW":{"f":[]},"wp":{"aI":[],"bK":[],"aP":[],"f":[]},"T_":{"a_":["n"],"b0":["n"],"B":["n"],"f":[],"a7":["n"],"q":["n"],"b0.E":"n","a_.E":"n","q.E":"n"},"aI":{"bK":[],"aP":[],"f":[]},"TR":{"a_":["iu"],"b0":["iu"],"B":["iu"],"f":[],"a7":["iu"],"q":["iu"],"b0.E":"iu","a_.E":"iu","q.E":"iu"},"cB":{"dF":[]},"adX":{"B":["o"],"a7":["o"],"q":["o"],"dF":[]},"fM":{"B":["o"],"a7":["o"],"q":["o"],"dF":[]},"apU":{"B":["o"],"a7":["o"],"q":["o"],"dF":[]},"adV":{"B":["o"],"a7":["o"],"q":["o"],"dF":[]},"apT":{"B":["o"],"a7":["o"],"q":["o"],"dF":[]},"adW":{"B":["o"],"a7":["o"],"q":["o"],"dF":[]},"xb":{"B":["o"],"a7":["o"],"q":["o"],"dF":[]},"aa3":{"B":["Z"],"a7":["Z"],"q":["Z"],"dF":[]},"aa4":{"B":["Z"],"a7":["Z"],"q":["Z"],"dF":[]},"Su":{"qy":[]},"L_":{"f":[]},"L0":{"f":[],"aK":["n","@"],"az":["n","@"],"aK.V":"@","aK.K":"n"},"L1":{"f":[]},"nn":{"f":[]},"Q_":{"f":[]},"PL":{"ak":[],"h":[]},"q2":{"aH":[],"aa":[]},"hN":{"aH":[],"aa":[]},"jS":{"aH":[],"aa":[]},"t4":{"aH":[],"aa":[]},"t5":{"aH":[],"aa":[]},"Nw":{"ak":[],"h":[]},"yY":{"a5":[],"h":[]},"Ut":{"a9":["yY"]},"zK":{"a5":[],"h":[]},"V8":{"a9":["zK"]},"nw":{"a5":[],"h":[]},"Va":{"a9":["nw"]},"q8":{"a5":[],"h":[]},"Vp":{"a9":["q8"]},"OF":{"ak":[],"h":[]},"BK":{"a5":[],"h":[]},"XZ":{"a9":["BK"]},"U6":{"ak":[],"h":[]},"P9":{"ak":[],"h":[]},"KQ":{"ak":[],"h":[]},"Sl":{"ak":[],"h":[]},"Sp":{"ak":[],"h":[]},"Ec":{"a5":[],"h":[]},"a_U":{"a9":["Ec"]},"Fi":{"a5":[],"h":[]},"a1q":{"a9":["Fi"]},"PT":{"ak":[],"h":[]},"t3":{"ak":[],"h":[]},"wW":{"a5":[],"h":[]},"a0y":{"a9":["wW"]},"EN":{"a5":[],"h":[]},"a0B":{"a9":["EN"]},"Tn":{"ak":[],"h":[]},"Tk":{"ak":[],"h":[]},"EM":{"a5":[],"h":[]},"a0A":{"a9":["EM"]},"f5":{"q":["n"],"q.E":"n"},"bS":{"az":["2","3"]},"Nv":{"bV":[]},"AL":{"bV":[]},"uP":{"bV":[]},"Py":{"e3":[]},"Pz":{"xk":[]},"CI":{"ii":[]},"Fe":{"ii":[]},"lo":{"e3":[]},"U5":{"xk":[]},"p6":{"ln":["p8"]},"CJ":{"jC":["vS"]},"Ff":{"jC":["xa"]},"BZ":{"nP":[]},"uQ":{"bV":[]},"Nt":{"nP":[]},"cl":{"aa":[]},"tT":{"cl":["Z"],"aa":[]},"Uv":{"cl":["Z"],"aa":[]},"Uw":{"cl":["Z"],"aa":[]},"CS":{"cl":["Z"],"aa":[]},"jM":{"cl":["Z"],"aa":[]},"uv":{"cl":["Z"],"aa":[]},"tc":{"cl":["Z"],"aa":[]},"ul":{"cl":["1"],"aa":[]},"ze":{"cl":["1"],"aa":[]},"Ha":{"h_":[]},"Dz":{"h_":[]},"e7":{"h_":[]},"F7":{"h_":[]},"eE":{"h_":[]},"F6":{"h_":[]},"ju":{"h_":[]},"W2":{"h_":[]},"ay":{"aA":["1"],"aA.T":"1","ay.T":"1"},"hy":{"ay":["L?"],"aA":["L?"],"aA.T":"L?","ay.T":"L?"},"aX":{"cl":["1"],"aa":[]},"f8":{"aA":["1"],"aA.T":"1"},"Dx":{"ay":["1"],"aA":["1"],"aA.T":"1","ay.T":"1"},"Sv":{"ay":["Q?"],"aA":["Q?"],"aA.T":"Q?","ay.T":"Q?"},"D4":{"ay":["y?"],"aA":["y?"],"aA.T":"y?","ay.T":"y?"},"o3":{"ay":["o"],"aA":["o"],"aA.T":"o","ay.T":"o"},"uo":{"ay":["1"],"aA":["1"],"aA.T":"1","ay.T":"1"},"eX":{"aA":["Z"],"aA.T":"Z"},"Fj":{"aA":["1"],"aA.T":"1"},"Mm":{"ak":[],"h":[]},"A2":{"a5":[],"h":[]},"G2":{"a9":["A2"]},"cs":{"L":[]},"VK":{"jW":[]},"Mg":{"ak":[],"h":[]},"qb":{"a5":[],"h":[]},"G3":{"a9":["qb"]},"Mh":{"d6":[]},"VO":{"hK":["A3"],"hK.T":"A3"},"Mz":{"A3":[]},"A5":{"a5":[],"h":[]},"Ga":{"a9":["A5"]},"Mi":{"ak":[],"h":[]},"qc":{"a5":[],"h":[]},"G5":{"a9":["qc"]},"xB":{"a5":[],"h":[]},"nD":{"Ml":["1"],"dL":["1"],"ec":["1"],"cK":["1"],"dL.T":"1"},"Mj":{"ak":[],"h":[]},"xC":{"a9":["xB<1>"]},"k1":{"fv":[]},"VM":{"ns":[]},"us":{"a5":[],"h":[]},"G6":{"l4":["us"],"a9":["us"]},"A4":{"a5":[],"h":[]},"G7":{"a9":["A4"]},"VP":{"an":[],"h":[]},"ZM":{"A":[],"aD":["A"],"t":[],"ah":[]},"qd":{"aH":[],"aa":[]},"ut":{"a5":[],"h":[]},"IQ":{"a5":[],"h":[]},"G8":{"a9":["ut"]},"a0o":{"a9":["IQ"]},"RM":{"dN":["qd"],"aH":[],"aa":[]},"qe":{"a5":[],"h":[]},"G9":{"a9":["qe"]},"a0I":{"aa":[]},"Mn":{"jW":[]},"Gc":{"a5":[],"h":[]},"Mo":{"ak":[],"h":[]},"VS":{"b2":[],"an":[],"h":[]},"ZN":{"A":[],"aD":["A"],"t":[],"ah":[]},"Gd":{"a9":["Gc"]},"XN":{"aa":[]},"a_k":{"aa":[]},"VJ":{"aa":[]},"Ge":{"an":[],"h":[]},"VR":{"b9":[],"ap":[],"S":[]},"tA":{"cU":["A","fL"],"A":[],"aj":["A","fL"],"t":[],"ah":[],"aj.1":"fL","cU.1":"fL","aj.0":"A"},"YC":{"ap":[],"S":[]},"YD":{"h":[]},"nE":{"a5":[],"h":[]},"Gb":{"a9":["nE"]},"XY":{"aa":[]},"GV":{"bb":[],"aU":[],"h":[]},"Mp":{"ak":[],"h":[]},"pe":{"hB":["B"],"eY":[]},"uK":{"pe":[],"hB":["B"],"eY":[]},"Ni":{"pe":[],"hB":["B"],"eY":[]},"Ng":{"pe":[],"hB":["B"],"eY":[]},"m5":{"pQ":[],"cj":[]},"WT":{"qk":["bH"],"eY":[]},"aH":{"aa":[]},"fp":{"aH":[],"aa":[]},"ty":{"aa":[]},"hB":{"eY":[]},"qk":{"eY":[]},"ML":{"qk":["MK"],"eY":[]},"MM":{"eY":[]},"mk":{"h8":[]},"et":{"mk":[],"h8":[],"et.T":"1"},"mP":{"mk":[],"h8":[]},"BA":{"iM":[]},"b7":{"q":["1"],"q.E":"1"},"v0":{"q":["1"],"q.E":"1"},"cW":{"at":["1"]},"v_":{"ah":[]},"AR":{"bH":[]},"ed":{"bn":[]},"mv":{"bn":[]},"ow":{"bn":[]},"ox":{"bn":[]},"mu":{"bn":[]},"fF":{"bn":[]},"mw":{"bn":[]},"Un":{"bn":[]},"a1e":{"bn":[]},"rq":{"bn":[]},"a1a":{"rq":[],"bn":[]},"rw":{"bn":[]},"a1l":{"rw":[],"bn":[]},"a1g":{"mv":[],"bn":[]},"a1d":{"ow":[],"bn":[]},"a1f":{"ox":[],"bn":[]},"a1c":{"mu":[],"bn":[]},"rt":{"bn":[]},"a1h":{"rt":[],"bn":[]},"rA":{"bn":[]},"a1p":{"rA":[],"bn":[]},"ry":{"fF":[],"bn":[]},"a1n":{"ry":[],"fF":[],"bn":[]},"rz":{"fF":[],"bn":[]},"a1o":{"rz":[],"fF":[],"bn":[]},"rx":{"fF":[],"bn":[]},"a1m":{"rx":[],"fF":[],"bn":[]},"a1j":{"mw":[],"bn":[]},"rv":{"bn":[]},"a1k":{"rv":[],"bn":[]},"ru":{"bn":[]},"a1i":{"ru":[],"bn":[]},"rr":{"bn":[]},"a1b":{"rr":[],"bn":[]},"jv":{"d4":[],"du":[]},"Hn":{"yB":[]},"yc":{"yB":[]},"hL":{"d4":[],"du":[]},"k_":{"d4":[],"du":[]},"jw":{"d4":[],"du":[]},"jH":{"d4":[],"du":[]},"Ap":{"d4":[],"du":[]},"jt":{"d4":[],"du":[]},"d4":{"du":[]},"Cp":{"d4":[],"du":[]},"w3":{"d4":[],"du":[]},"jO":{"d4":[],"du":[]},"hS":{"d4":[],"du":[]},"Lm":{"d4":[],"du":[]},"qP":{"hq":[]},"vw":{"hq":[]},"Uo":{"ak":[],"h":[]},"xq":{"ak":[],"h":[]},"Ld":{"ak":[],"h":[]},"Lc":{"ak":[],"h":[]},"N0":{"ak":[],"h":[]},"N_":{"ak":[],"h":[]},"N7":{"ak":[],"h":[]},"N6":{"ak":[],"h":[]},"aVN":{"dl":[],"bb":[],"aU":[],"h":[]},"KJ":{"ak":[],"h":[]},"BT":{"a5":[],"h":[]},"Hf":{"a9":["BT"]},"zj":{"a5":[],"h":[]},"Zt":{"Q":[]},"FC":{"a9":["zj"]},"UL":{"b2":[],"an":[],"h":[]},"ZK":{"A":[],"aD":["A"],"t":[],"ah":[]},"vx":{"ay":["y?"],"aA":["y?"],"aA.T":"y?","ay.T":"y?"},"BV":{"ay":["k"],"aA":["k"],"aA.T":"k","ay.T":"k"},"aZf":{"dl":[],"bb":[],"aU":[],"h":[]},"D2":{"a5":[],"h":[]},"ZB":{"a9":["D2"]},"Xv":{"b2":[],"an":[],"h":[]},"HV":{"A":[],"aD":["A"],"t":[],"ah":[]},"XQ":{"be":["bk?"]},"zF":{"a5":[],"h":[]},"FM":{"a9":["zF"]},"Ym":{"cT":[],"be":["cT"]},"Xw":{"b2":[],"an":[],"h":[]},"HW":{"A":[],"aD":["A"],"t":[],"ah":[]},"aWc":{"dl":[],"bb":[],"aU":[],"h":[]},"zL":{"a5":[],"h":[]},"Vc":{"a9":["zL"]},"Vb":{"aH":[],"aa":[]},"aWj":{"bb":[],"aU":[],"h":[]},"LJ":{"ak":[],"h":[]},"r8":{"nA":["o"],"L":[],"nA.T":"o"},"Wc":{"jW":[]},"MH":{"ak":[],"h":[]},"ux":{"ak":[],"h":[]},"MN":{"ak":[],"h":[]},"Ag":{"dL":["1"],"ec":["1"],"cK":["1"],"dL.T":"1"},"MT":{"ak":[],"h":[]},"aXf":{"dl":[],"bb":[],"aU":[],"h":[]},"xH":{"a5":[],"h":[]},"xG":{"a5":[],"h":[]},"xJ":{"ak":[],"h":[]},"y7":{"b2":[],"an":[],"h":[]},"nI":{"ak":[],"h":[]},"aXH":{"bb":[],"aU":[],"h":[]},"uC":{"a5":[],"h":[]},"Wu":{"aa":[]},"xI":{"a9":["xH<1>"]},"Gn":{"a9":["xG<1>"]},"Go":{"dL":["j7<1>"],"ec":["j7<1>"],"cK":["j7<1>"],"dL.T":"j7<1>"},"a__":{"A":[],"aD":["A"],"t":[],"ah":[]},"Wt":{"ak":[],"h":[]},"xF":{"a9":["uC<1>"],"fO":[]},"uH":{"a5":[],"h":[]},"Gx":{"be":["L?"]},"WE":{"be":["L?"]},"WC":{"be":["Z"]},"WD":{"be":["cT?"]},"WG":{"a5":[],"h":[]},"WH":{"ak":[],"h":[]},"aXR":{"dl":[],"bb":[],"aU":[],"h":[]},"AO":{"bb":[],"aU":[],"h":[]},"ND":{"ak":[],"h":[]},"WA":{"cT":[],"be":["cT"]},"Ve":{"b2":[],"an":[],"h":[]},"HN":{"A":[],"aD":["A"],"t":[],"ah":[]},"FB":{"cl":["1"],"aa":[]},"On":{"ak":[],"h":[]},"Xh":{"be":["L?"]},"Xj":{"be":["L?"]},"Xi":{"be":["cT?"]},"B9":{"dl":[],"bb":[],"aU":[],"h":[]},"Bd":{"a5":[],"h":[]},"H_":{"a9":["Bd"]},"Be":{"kI":[]},"o2":{"o4":[],"kI":[]},"Bf":{"o4":[],"kI":[]},"Bg":{"o4":[],"kI":[]},"o4":{"kI":[]},"HG":{"bb":[],"aU":[],"h":[]},"GZ":{"a5":[],"h":[]},"vc":{"ak":[],"h":[]},"GY":{"a9":["GZ"],"aEA":[]},"Ow":{"ak":[],"h":[]},"iK":{"cp":[]},"Yx":{"iK":[],"cp":[]},"jX":{"iK":[],"cp":[]},"FK":{"a5":[],"h":[]},"GR":{"a5":[],"h":[]},"qS":{"a5":[],"h":[]},"H1":{"aH":[],"aa":[]},"H2":{"ay":["iK"],"aA":["iK"],"aA.T":"iK","ay.T":"iK"},"Xt":{"aa":[]},"UY":{"a9":["FK"]},"GS":{"a9":["GR"]},"HQ":{"A":[],"la":["fa","A"],"t":[],"ah":[]},"W6":{"hP":["fa","A"],"an":[],"h":[],"hP.0":"fa","hP.1":"A"},"H3":{"a9":["qS"]},"BE":{"ak":[],"h":[]},"Xr":{"be":["L?"]},"XW":{"hP":["k3","A"],"an":[],"h":[],"hP.0":"k3","hP.1":"A"},"HZ":{"A":[],"la":["k3","A"],"t":[],"ah":[]},"aZ3":{"dl":[],"bb":[],"aU":[],"h":[]},"EZ":{"a5":[],"h":[]},"IV":{"a9":["EZ"]},"P7":{"ak":[],"h":[]},"BS":{"a5":[],"h":[]},"HU":{"A":[],"aD":["A"],"t":[],"ah":[]},"rY":{"ay":["cp?"],"aA":["cp?"],"aA.T":"cp?","ay.T":"cp?"},"Hg":{"a5":[],"h":[]},"Y8":{"a9":["BS"]},"Xs":{"b2":[],"an":[],"h":[]},"Y5":{"a9":["Hg"]},"Iu":{"ak":[],"h":[]},"a_I":{"aa":[]},"Y6":{"hK":["r9"],"hK.T":"r9"},"MB":{"r9":[]},"Pi":{"L":[],"be":["L"]},"Y9":{"L":[],"be":["L"]},"Pk":{"cT":[],"be":["cT"]},"Gz":{"cT":[],"be":["cT"]},"Ph":{"bk":[],"be":["bk?"]},"Hi":{"bk":[],"be":["bk?"]},"Pl":{"v":[],"be":["v"]},"Ya":{"v":[],"be":["v"]},"H9":{"be":["1?"]},"dy":{"be":["1"]},"bJ":{"be":["1"]},"Pm":{"fp":["ca"],"aH":[],"aa":[]},"XS":{"be":["bk?"]},"Q6":{"a5":[],"h":[]},"HC":{"be":["L?"]},"YM":{"be":["L?"]},"YL":{"be":["cT?"]},"aZE":{"dl":[],"bb":[],"aU":[],"h":[]},"oj":{"Pg":["1"],"dL":["1"],"ec":["1"],"cK":["1"],"dL.T":"1"},"pv":{"a5":[],"h":[]},"pw":{"a5":[],"h":[]},"a1N":{"ak":[],"h":[]},"a1L":{"a9":["pv"]},"a1M":{"a9":["pw"]},"Um":{"mp":[]},"Mk":{"mp":[]},"Ju":{"aH":[],"aa":[]},"Jv":{"aH":[],"aa":[]},"oy":{"a5":[],"h":[]},"CP":{"oy":["1"],"a5":[],"h":[]},"vY":{"a5":[],"h":[]},"Ye":{"b2":[],"an":[],"h":[]},"ZZ":{"A":[],"aD":["A"],"t":[],"ah":[]},"w_":{"a9":["2"]},"HI":{"ak":[],"h":[]},"HJ":{"dL":["1"],"ec":["1"],"cK":["1"],"dL.T":"1"},"vZ":{"a9":["vY<1>"]},"WB":{"cT":[],"be":["cT"]},"b_2":{"dl":[],"bb":[],"aU":[],"h":[]},"u9":{"a5":[],"h":[]},"R3":{"a5":[],"h":[]},"Vh":{"aa":[]},"Vi":{"a9":["u9"]},"b_d":{"dl":[],"bb":[],"aU":[],"h":[]},"DC":{"a5":[],"h":[]},"Ic":{"bb":[],"aU":[],"h":[]},"GC":{"a5":[],"h":[]},"DA":{"a5":[],"h":[]},"wn":{"a9":["DA"]},"b27":{"a5":[],"h":[]},"S0":{"a9":["DC"]},"a_q":{"aH":[],"aa":[]},"FJ":{"ar":[]},"UX":{"ak":[],"h":[]},"GD":{"a9":["GC"]},"Wg":{"br":["hC"],"br.T":"hC"},"a_r":{"bb":[],"aU":[],"h":[]},"y6":{"a5":[],"h":[]},"Sa":{"ak":[],"h":[]},"Y7":{"l4":["y6"],"a9":["y6"]},"b_F":{"dl":[],"bb":[],"aU":[],"h":[]},"XR":{"be":["bk?"]},"mF":{"a5":[],"h":[]},"a0R":{"fp":["dg"],"aH":[],"aa":[]},"Ip":{"a9":["mF"]},"b08":{"a5":[],"h":[]},"Hk":{"a5":[],"h":[]},"T4":{"ak":[],"h":[]},"Hl":{"a9":["Hk"]},"IO":{"aH":[],"aa":[]},"T5":{"ak":[],"h":[]},"b0m":{"bb":[],"aU":[],"h":[]},"Tp":{"a5":[],"h":[]},"IS":{"be":["L?"]},"a0D":{"be":["L?"]},"a0C":{"be":["cT?"]},"b0w":{"dl":[],"bb":[],"aU":[],"h":[]},"ET":{"a5":[],"h":[]},"IT":{"a9":["ET"]},"Pn":{"jW":[]},"a0H":{"aa":[]},"b0D":{"dl":[],"bb":[],"aU":[],"h":[]},"IY":{"a5":[],"h":[]},"TB":{"ak":[],"h":[]},"a0O":{"a9":["IY"]},"a0P":{"b2":[],"an":[],"h":[]},"a0Q":{"A":[],"aD":["A"],"t":[],"ah":[]},"a0L":{"eo":[],"an":[],"h":[]},"a0M":{"b9":[],"ap":[],"S":[]},"a_9":{"A":[],"aj":["A","fL"],"t":[],"ah":[],"aj.1":"fL","aj.0":"A"},"a0K":{"ak":[],"h":[]},"a0N":{"ak":[],"h":[]},"TD":{"ak":[],"h":[]},"GX":{"dl":[],"bb":[],"aU":[],"h":[]},"t8":{"ay":["j1"],"aA":["j1"],"aA.T":"j1","ay.T":"j1"},"za":{"a5":[],"h":[]},"F5":{"ak":[],"h":[]},"UF":{"a9":["za"]},"x7":{"aH":[],"aa":[]},"Fc":{"a5":[],"h":[]},"x9":{"a9":["Fc"]},"WK":{"b2":[],"an":[],"h":[]},"ZT":{"A":[],"aD":["A"],"t":[],"kR":[],"ah":[]},"a10":{"ak":[],"h":[]},"b0T":{"dl":[],"bb":[],"aU":[],"h":[]},"vF":{"fx":["aDK"],"fx.T":"aDK"},"eB":{"hw":[]},"fY":{"hw":[]},"Hp":{"hw":[]},"Cx":{"f4":[]},"a0l":{"aa":[]},"e8":{"cp":[]},"j5":{"cp":[]},"d1":{"cp":[]},"Lu":{"cp":[]},"fr":{"cp":[]},"bM":{"fv":[]},"FL":{"ns":[]},"bv":{"oP":[]},"ej":{"e8":[],"cp":[]},"nA":{"L":[]},"aF":{"df":[]},"ff":{"df":[]},"pj":{"df":[]},"aDK":{"fx":["aDK"]},"ol":{"fx":["ol"],"fx.T":"ol"},"KY":{"fx":["kk"]},"PS":{"bV":[]},"zo":{"fx":["kk"],"fx.T":"kk"},"QS":{"fz":[]},"cF":{"e8":[],"cp":[]},"fQ":{"e8":[],"cp":[]},"hf":{"fv":[]},"Iv":{"ns":[]},"hj":{"e8":[],"cp":[]},"fT":{"e8":[],"cp":[]},"fU":{"e8":[],"cp":[]},"xo":{"it":[]},"a1z":{"it":[]},"hn":{"fz":[],"kR":[],"ah":[]},"Rg":{"A":[],"aD":["A"],"t":[],"ah":[]},"wk":{"f4":[],"ah":[]},"FG":{"aH":[],"aa":[]},"lM":{"m9":[]},"A":{"t":[],"ah":[]},"pZ":{"ib":["A"]},"eS":{"cE":[]},"A1":{"eS":[],"dJ":["1"],"cE":[]},"iP":{"eS":[],"dJ":["A"],"cE":[]},"D9":{"cU":["A","iP"],"A":[],"aj":["A","iP"],"t":[],"ah":[],"aj.1":"iP","cU.1":"iP","aj.0":"A"},"Mt":{"aa":[]},"Da":{"A":[],"aD":["A"],"t":[],"ah":[]},"oE":{"aH":[],"aa":[]},"rF":{"A":[],"aj":["A","j0"],"t":[],"ah":[],"aj.1":"j0","aj.0":"A"},"ZR":{"A":[],"t":[],"ah":[]},"IU":{"oE":[],"aH":[],"aa":[]},"FP":{"oE":[],"aH":[],"aa":[]},"xy":{"oE":[],"aH":[],"aa":[]},"Dc":{"A":[],"t":[],"ah":[]},"hD":{"eS":[],"dJ":["A"],"cE":[]},"Dd":{"cU":["A","hD"],"A":[],"aj":["A","hD"],"t":[],"ah":[],"aj.1":"hD","cU.1":"hD","aj.0":"A"},"Df":{"A":[],"t":[],"ah":[]},"eW":{"em":[]},"ui":{"eW":[],"em":[]},"ug":{"eW":[],"em":[]},"uf":{"eW":[],"em":[]},"te":{"kU":[],"eW":[],"em":[]},"Cq":{"kU":[],"eW":[],"em":[]},"QD":{"em":[]},"kU":{"eW":[],"em":[]},"E2":{"eW":[],"em":[]},"zs":{"eW":[],"em":[]},"Bz":{"eW":[],"em":[]},"AV":{"eW":[],"em":[]},"zh":{"eW":[],"em":[]},"kN":{"eS":[],"dJ":["A"],"cE":[]},"Di":{"cU":["A","kN"],"A":[],"aj":["A","kN"],"t":[],"ah":[],"aj.1":"kN","cU.1":"kN","aj.0":"A"},"PF":{"aH":[],"aa":[]},"t":{"ah":[]},"dJ":{"cE":[]},"a_l":{"hs":[]},"GU":{"hs":[]},"tF":{"hs":[]},"ms":{"jR":[]},"j0":{"dJ":["A"],"cE":[]},"mZ":{"eJ":[],"aH":[],"aa":[]},"Dm":{"A":[],"aj":["A","j0"],"t":[],"ah":[],"aj.1":"j0","aj.0":"A"},"oQ":{"aa":[]},"D5":{"A":[],"aD":["A"],"t":[],"ah":[]},"mz":{"A":[],"aD":["A"],"t":[],"ah":[]},"RC":{"A":[],"aD":["A"],"t":[],"ah":[]},"Dn":{"A":[],"aD":["A"],"t":[],"ah":[]},"we":{"A":[],"aD":["A"],"t":[],"ah":[]},"Rv":{"A":[],"aD":["A"],"t":[],"ah":[]},"Dh":{"A":[],"aD":["A"],"t":[],"ah":[]},"Rx":{"A":[],"aD":["A"],"t":[],"ah":[]},"Rf":{"A":[],"aD":["A"],"t":[],"ah":[]},"RE":{"A":[],"aD":["A"],"t":[],"ah":[]},"Rh":{"A":[],"aD":["A"],"t":[],"ah":[]},"A6":{"aa":[]},"yk":{"A":[],"aD":["A"],"t":[],"ah":[]},"Rl":{"A":[],"aD":["A"],"t":[],"ah":[]},"Rk":{"A":[],"aD":["A"],"t":[],"ah":[]},"Rj":{"A":[],"aD":["A"],"t":[],"ah":[]},"I1":{"A":[],"aD":["A"],"t":[],"ah":[]},"Ry":{"A":[],"aD":["A"],"t":[],"ah":[]},"Rz":{"A":[],"aD":["A"],"t":[],"ah":[]},"Ro":{"A":[],"aD":["A"],"t":[],"ah":[]},"RI":{"A":[],"aD":["A"],"t":[],"ah":[]},"Rr":{"A":[],"aD":["A"],"t":[],"ah":[]},"RA":{"A":[],"aD":["A"],"t":[],"ah":[]},"Dj":{"A":[],"aD":["A"],"t":[],"kR":[],"ah":[]},"RD":{"A":[],"aD":["A"],"t":[],"ah":[]},"De":{"A":[],"aD":["A"],"t":[],"ah":[]},"Dk":{"A":[],"aD":["A"],"t":[],"ah":[]},"Do":{"A":[],"aD":["A"],"t":[],"ah":[]},"Ri":{"A":[],"aD":["A"],"t":[],"ah":[]},"Rw":{"A":[],"aD":["A"],"t":[],"ah":[]},"Rp":{"A":[],"aD":["A"],"t":[],"ah":[]},"Rs":{"A":[],"aD":["A"],"t":[],"ah":[]},"Ru":{"A":[],"aD":["A"],"t":[],"ah":[]},"Rq":{"A":[],"aD":["A"],"t":[],"ah":[]},"D8":{"A":[],"aD":["A"],"t":[],"ah":[]},"eJ":{"aa":[]},"rH":{"A":[],"aD":["A"],"t":[],"ah":[]},"Dl":{"A":[],"aD":["A"],"t":[],"ah":[]},"Re":{"A":[],"aD":["A"],"t":[],"ah":[]},"RB":{"A":[],"aD":["A"],"t":[],"ah":[]},"Rm":{"A":[],"aD":["A"],"t":[],"ah":[]},"Db":{"A":[],"aD":["A"],"t":[],"ah":[]},"wF":{"m9":[]},"mH":{"oS":[],"dJ":["dn"],"cE":[]},"mI":{"oT":[],"dJ":["dn"],"cE":[]},"dn":{"t":[],"ah":[]},"SB":{"ib":["dn"]},"oS":{"cE":[]},"oT":{"cE":[]},"RG":{"wf":[],"dn":[],"aj":["A","l9"],"t":[],"ah":[],"aj.1":"l9","aj.0":"A"},"kL":{"cE":[]},"l9":{"oS":[],"dJ":["A"],"kL":[],"cE":[]},"wf":{"dn":[],"aj":["A","l9"],"t":[],"ah":[]},"Dp":{"dn":[],"aD":["dn"],"t":[],"ah":[]},"RH":{"dn":[],"aD":["dn"],"t":[],"ah":[]},"e2":{"eS":[],"dJ":["A"],"cE":[]},"wg":{"cU":["A","e2"],"A":[],"aj":["A","e2"],"t":[],"ah":[],"aj.1":"e2","cU.1":"e2","aj.0":"A"},"Dg":{"cU":["A","e2"],"A":[],"aj":["A","e2"],"t":[],"ah":[],"aj.1":"e2","cU.1":"e2","aj.0":"A"},"lg":{"eS":[],"cE":[]},"NB":{"EE":[]},"wh":{"A":[],"t":[],"ah":[]},"nj":{"ay":["hw?"],"aA":["hw?"],"aA.T":"hw?","ay.T":"hw?"},"RJ":{"aD":["A"],"t":[],"ah":[]},"wj":{"jc":["1"],"A":[],"aj":["dn","1"],"D6":[],"t":[],"ah":[]},"Dr":{"jc":["mI"],"A":[],"aj":["dn","mI"],"D6":[],"t":[],"ah":[],"aj.1":"mI","jc.0":"mI","aj.0":"dn"},"RF":{"jc":["mH"],"A":[],"aj":["dn","mH"],"D6":[],"t":[],"ah":[],"aj.1":"mH","jc.0":"mH","aj.0":"dn"},"iw":{"aH":[],"aa":[]},"lr":{"eS":[],"dJ":["A"],"cE":[]},"Ds":{"cU":["A","lr"],"A":[],"aj":["A","lr"],"t":[],"ah":[],"aj.1":"lr","cU.1":"lr","aj.0":"A"},"t9":{"at":["~"]},"F8":{"bV":[]},"mS":{"c9":["mS"]},"k9":{"c9":["k9"]},"n2":{"c9":["n2"]},"wy":{"c9":["wy"]},"a_E":{"qk":["cL"],"eY":[]},"DZ":{"aH":[],"aa":[]},"rk":{"c9":["wy"]},"xv":{"a4t":[]},"wz":{"f4":[]},"qV":{"o7":[]},"o9":{"o7":[]},"Bw":{"o7":[]},"ov":{"bV":[]},"C0":{"bV":[]},"W9":{"cT":[]},"a0m":{"C2":[]},"oX":{"cT":[]},"l3":{"jK":[]},"w9":{"jK":[]},"Dv":{"aH":[],"aa":[]},"u6":{"it":[]},"vn":{"it":[]},"Cy":{"it":[]},"Ak":{"it":[]},"Tr":{"p_":[]},"Tq":{"p_":[]},"Ts":{"p_":[]},"x0":{"p_":[]},"Ns":{"p0":[]},"YV":{"EX":[]},"lJ":{"a5":[],"h":[]},"Fy":{"bb":[],"aU":[],"h":[]},"qB":{"a5":[],"h":[]},"aEn":{"bj":[]},"aXj":{"bj":[]},"aXi":{"bj":[]},"ni":{"bj":[]},"nt":{"bj":[]},"hC":{"bj":[]},"mx":{"bj":[]},"dr":{"br":["1"]},"cH":{"br":["1"],"br.T":"1"},"Fz":{"a9":["lJ"]},"GH":{"a9":["qB"]},"Ui":{"br":["aEn"],"br.T":"aEn"},"Ai":{"br":["bj"],"br.T":"bj"},"MQ":{"br":["hC"]},"R2":{"dr":["mx"],"br":["mx"],"br.T":"mx","dr.T":"mx"},"HD":{"JS":["1"],"dr":["1"],"yf":["1"],"br":["1"],"br.T":"1","dr.T":"1"},"HE":{"JT":["1"],"dr":["1"],"yf":["1"],"br":["1"],"br.T":"1","dr.T":"1"},"G_":{"br":["1"],"br.T":"1"},"z9":{"a5":[],"h":[]},"UE":{"a9":["z9"]},"UD":{"b2":[],"an":[],"h":[]},"zg":{"b2":[],"an":[],"h":[]},"Fu":{"a5":[],"h":[]},"Jm":{"a9":["Fu"],"fO":[]},"lc":{"a5":[],"h":[]},"uZ":{"a5":[],"h":[]},"IK":{"a9":["lc<1,2>"]},"Eu":{"lc":["1","dH<1>"],"a5":[],"h":[],"lc.T":"1","lc.S":"dH<1>"},"GK":{"a9":["uZ<1>"]},"tX":{"a5":[],"h":[]},"FD":{"a9":["tX"]},"Bt":{"aH":[],"aa":[]},"YE":{"ak":[],"h":[]},"iG":{"bb":[],"aU":[],"h":[]},"wA":{"b2":[],"an":[],"h":[]},"uh":{"b2":[],"an":[],"h":[]},"ue":{"b2":[],"an":[],"h":[]},"uk":{"b2":[],"an":[],"h":[]},"bY":{"b2":[],"an":[],"h":[]},"fd":{"b2":[],"an":[],"h":[]},"i6":{"b2":[],"an":[],"h":[]},"By":{"dZ":["iP"],"aU":[],"h":[],"dZ.T":"iP"},"e1":{"b2":[],"an":[],"h":[]},"rB":{"dZ":["e2"],"aU":[],"h":[],"dZ.T":"e2"},"rN":{"eo":[],"an":[],"h":[]},"aWW":{"bb":[],"aU":[],"h":[]},"v4":{"b2":[],"an":[],"h":[]},"bL":{"b2":[],"an":[],"h":[]},"a1s":{"fy":[],"ap":[],"S":[]},"a1t":{"bb":[],"aU":[],"h":[]},"Q2":{"b2":[],"an":[],"h":[]},"Le":{"b2":[],"an":[],"h":[]},"A8":{"b2":[],"an":[],"h":[]},"LY":{"b2":[],"an":[],"h":[]},"QA":{"b2":[],"an":[],"h":[]},"QB":{"b2":[],"an":[],"h":[]},"td":{"b2":[],"an":[],"h":[]},"M7":{"b2":[],"an":[],"h":[]},"NR":{"b2":[],"an":[],"h":[]},"q1":{"b2":[],"an":[],"h":[]},"A7":{"eo":[],"an":[],"h":[]},"ft":{"b2":[],"an":[],"h":[]},"OY":{"b2":[],"an":[],"h":[]},"Q7":{"b2":[],"an":[],"h":[]},"vG":{"b2":[],"an":[],"h":[]},"YK":{"b9":[],"ap":[],"S":[]},"OA":{"b2":[],"an":[],"h":[]},"SD":{"b2":[],"an":[],"h":[]},"P1":{"eo":[],"an":[],"h":[]},"Eo":{"eo":[],"an":[],"h":[]},"Ot":{"ak":[],"h":[]},"HK":{"eo":[],"an":[],"h":[]},"Xq":{"b9":[],"ap":[],"S":[]},"QY":{"ak":[],"h":[]},"NA":{"eo":[],"an":[],"h":[]},"M6":{"eo":[],"an":[],"h":[]},"qx":{"dZ":["hD"],"aU":[],"h":[],"dZ.T":"hD"},"uM":{"dZ":["hD"],"aU":[],"h":[],"dZ.T":"hD"},"Uk":{"eo":[],"an":[],"h":[]},"oJ":{"eo":[],"an":[],"h":[]},"R8":{"an":[],"h":[]},"P2":{"b2":[],"an":[],"h":[]},"vB":{"b2":[],"an":[],"h":[]},"ir":{"b2":[],"an":[],"h":[]},"KE":{"b2":[],"an":[],"h":[]},"vA":{"b2":[],"an":[],"h":[]},"Lq":{"b2":[],"an":[],"h":[]},"nN":{"b2":[],"an":[],"h":[]},"Bb":{"b2":[],"an":[],"h":[]},"oa":{"ak":[],"h":[]},"eT":{"ak":[],"h":[]},"q4":{"b2":[],"an":[],"h":[]},"HO":{"A":[],"aD":["A"],"t":[],"ah":[]},"Fv":{"f4":[],"ah":[]},"rG":{"an":[],"h":[]},"oF":{"b9":[],"ap":[],"S":[]},"Uj":{"f4":[],"ah":[]},"nC":{"ak":[],"h":[]},"Mw":{"b2":[],"an":[],"h":[]},"W4":{"aa":[]},"nF":{"dl":[],"bb":[],"aU":[],"h":[]},"YF":{"ak":[],"h":[]},"MD":{"ak":[],"h":[]},"MR":{"ak":[],"h":[]},"uD":{"a5":[],"h":[]},"Gp":{"a9":["uD"]},"uE":{"a5":[],"h":[]},"nJ":{"a9":["uE"],"fO":[]},"Ig":{"a5":[],"h":[]},"k8":{"xn":[],"fz":[]},"Vl":{"b2":[],"an":[],"h":[]},"ZL":{"A":[],"aD":["A"],"t":[],"ah":[]},"ES":{"fp":["dg"],"aH":[],"aa":[]},"Gq":{"eo":[],"an":[],"h":[]},"a_s":{"a9":["Ig"],"aKz":[]},"mU":{"dr":["1"],"br":["1"],"br.T":"1","dr.T":"1"},"Je":{"dr":["1"],"br":["1"],"br.T":"1","dr.T":"1"},"Jf":{"dr":["1"],"br":["1"],"br.T":"1","dr.T":"1"},"a_A":{"dr":["mE"],"br":["mE"],"br.T":"mE","dr.T":"mE"},"VF":{"dr":["ko"],"br":["ko"],"br.T":"ko","dr.T":"ko"},"ds":{"aH":[],"aa":[]},"nR":{"ds":[],"aH":[],"aa":[]},"AT":{"aH":[],"aa":[]},"qz":{"a5":[],"h":[]},"GF":{"kH":["ds"],"bb":[],"aU":[],"h":[],"kH.T":"ds"},"xM":{"a9":["qz"]},"NJ":{"a5":[],"h":[]},"X_":{"a9":["qz"]},"AU":{"a5":[],"h":[]},"aE0":{"bj":[]},"rj":{"bj":[]},"rC":{"bj":[]},"nH":{"bj":[]},"GG":{"ds":[],"aH":[],"aa":[]},"X0":{"a9":["AU"]},"RL":{"br":["aE0"],"br.T":"aE0"},"PU":{"br":["rj"],"br.T":"rj"},"QZ":{"br":["rC"],"br.T":"rC"},"Ah":{"br":["nH"],"br.T":"nH"},"kE":{"h8":[]},"bB":{"kE":["1"],"h8":[]},"a5":{"h":[]},"an":{"h":[]},"ap":{"S":[]},"hQ":{"ap":[],"S":[]},"fy":{"ap":[],"S":[]},"m8":{"kE":["1"],"h8":[]},"ak":{"h":[]},"aU":{"h":[]},"dZ":{"aU":[],"h":[]},"bb":{"aU":[],"h":[]},"OV":{"an":[],"h":[]},"b2":{"an":[],"h":[]},"eo":{"an":[],"h":[]},"Nj":{"an":[],"h":[]},"A_":{"ap":[],"S":[]},"wL":{"ap":[],"S":[]},"CT":{"ap":[],"S":[]},"ro":{"ap":[],"S":[]},"b9":{"ap":[],"S":[]},"OU":{"b9":[],"ap":[],"S":[]},"E8":{"b9":[],"ap":[],"S":[]},"ih":{"b9":[],"ap":[],"S":[]},"YB":{"ap":[],"S":[]},"YG":{"h":[]},"l2":{"a5":[],"h":[]},"w8":{"a9":["l2"]},"cx":{"qG":["1"]},"NW":{"ak":[],"h":[]},"X6":{"b2":[],"an":[],"h":[]},"qJ":{"a5":[],"h":[]},"xU":{"a9":["qJ"]},"qL":{"ak":[],"h":[]},"v1":{"oo":[]},"dK":{"ak":[],"h":[]},"qQ":{"dl":[],"bb":[],"aU":[],"h":[]},"nZ":{"a5":[],"h":[]},"GT":{"a9":["nZ"],"fO":[]},"pY":{"ay":["ar"],"aA":["ar"],"aA.T":"ar","ay.T":"ar"},"lT":{"ay":["fv"],"aA":["fv"],"aA.T":"fv","ay.T":"fv"},"lX":{"ay":["df"],"aA":["df"],"aA.T":"df","ay.T":"df"},"pW":{"ay":["dc?"],"aA":["dc?"],"aA.T":"dc?","ay.T":"dc?"},"rc":{"ay":["b6"],"aA":["b6"],"aA.T":"b6","ay.T":"b6"},"t7":{"ay":["v"],"aA":["v"],"aA.T":"v","ay.T":"v"},"z1":{"a5":[],"h":[]},"z6":{"a5":[],"h":[]},"z8":{"a5":[],"h":[]},"z5":{"a5":[],"h":[]},"z2":{"a5":[],"h":[]},"z7":{"a5":[],"h":[]},"At":{"ay":["aF"],"aA":["aF"],"aA.T":"aF","ay.T":"aF"},"Os":{"a5":[],"h":[]},"vb":{"a9":["1"]},"tS":{"a9":["1"]},"Ux":{"a9":["z1"]},"UA":{"a9":["z6"]},"UC":{"a9":["z8"]},"Uz":{"a9":["z5"]},"Uy":{"a9":["z2"]},"UB":{"a9":["z7"]},"kG":{"bb":[],"aU":[],"h":[]},"Bc":{"fy":[],"ap":[],"S":[]},"kH":{"bb":[],"aU":[],"h":[]},"xZ":{"fy":[],"ap":[],"S":[]},"dl":{"bb":[],"aU":[],"h":[]},"pb":{"ak":[],"h":[]},"Bi":{"a5":[],"h":[]},"H4":{"a9":["Bi"]},"Xz":{"ak":[],"h":[]},"TS":{"fp":["b6"],"aH":[],"aa":[]},"nB":{"an":[],"h":[]},"y1":{"b9":[],"ap":[],"S":[]},"ob":{"nB":["ar"],"an":[],"h":[],"nB.0":"ar"},"HX":{"iq":["ar","A"],"A":[],"aD":["A"],"t":[],"ah":[],"iq.0":"ar"},"Hd":{"bb":[],"aU":[],"h":[]},"BM":{"a5":[],"h":[]},"a1J":{"hK":["Fw"],"hK.T":"Fw"},"MF":{"Fw":[]},"Y_":{"a9":["BM"]},"aJf":{"bb":[],"aU":[],"h":[]},"BP":{"hf":[],"fv":[]},"D1":{"ak":[],"h":[]},"Y1":{"ak":[],"h":[]},"Wq":{"aa":[]},"Y0":{"b2":[],"an":[],"h":[]},"ZY":{"A":[],"aD":["A"],"t":[],"ah":[]},"re":{"kG":["eP"],"bb":[],"aU":[],"h":[],"kG.T":"eP"},"Ho":{"a5":[],"h":[]},"Yc":{"a9":["Ho"],"fO":[]},"xs":{"d4":[],"du":[]},"PD":{"ak":[],"h":[]},"KN":{"a5":[],"h":[]},"UJ":{"qG":["xs"]},"Yl":{"ak":[],"h":[]},"PR":{"ak":[],"h":[]},"aDQ":{"jN":[]},"qK":{"bb":[],"aU":[],"h":[]},"Ch":{"a5":[],"h":[]},"jE":{"a9":["Ch"]},"YA":{"cK":["~"]},"yb":{"pk":[]},"ya":{"pk":[]},"Hx":{"pk":[]},"Hy":{"pk":[]},"Xc":{"dN":["az>?"],"aH":[],"aa":[]},"eH":{"aU":[],"h":[]},"HB":{"ap":[],"S":[]},"mo":{"aa":[]},"mY":{"a5":[],"h":[]},"yd":{"a9":["mY"]},"vH":{"a5":[],"h":[]},"vJ":{"a9":["vH"]},"pr":{"A":[],"aj":["A","e2"],"t":[],"ah":[],"aj.1":"e2","aj.0":"A"},"Cu":{"a5":[],"h":[]},"pn":{"ie":["pn"],"ie.E":"pn"},"tB":{"bb":[],"aU":[],"h":[]},"pq":{"A":[],"aD":["A"],"t":[],"ah":[],"ie":["pq"],"ie.E":"pq"},"HY":{"A":[],"aD":["A"],"t":[],"ah":[]},"J1":{"eo":[],"an":[],"h":[]},"a0W":{"b9":[],"ap":[],"S":[]},"yA":{"e2":[],"eS":[],"dJ":["A"],"cE":[]},"YP":{"a9":["Cu"]},"ye":{"an":[],"h":[]},"YO":{"b9":[],"ap":[],"S":[]},"W8":{"b2":[],"an":[],"h":[]},"B2":{"a5":[],"h":[]},"Ew":{"a5":[],"h":[]},"GO":{"a9":["B2"]},"GN":{"aH":[],"aa":[]},"X7":{"aa":[]},"IN":{"a9":["Ew"]},"IM":{"aH":[],"aa":[]},"Cv":{"hW":[]},"aJO":{"et":["1"],"mk":[],"h8":[]},"vK":{"ak":[],"h":[]},"kX":{"dL":["1"],"ec":["1"],"cK":["1"]},"w4":{"bb":[],"aU":[],"h":[]},"oH":{"a5":[],"h":[]},"Fm":{"bb":[],"aU":[],"h":[]},"Dy":{"a5":[],"h":[]},"dN":{"aH":[],"aa":[]},"a_h":{"a9":["oH"]},"I9":{"a9":["Dy"]},"d7":{"dN":["1"],"aH":[],"aa":[]},"k6":{"dN":["1"],"aH":[],"aa":[]},"I8":{"k6":["1"],"dN":["1"],"aH":[],"aa":[]},"Du":{"k6":["1"],"dN":["1"],"aH":[],"aa":[],"d7.T":"1","k6.T":"1"},"Dt":{"k6":["J"],"dN":["J"],"aH":[],"aa":[],"d7.T":"J","k6.T":"J"},"rJ":{"dN":["1"],"aH":[],"aa":[]},"wl":{"dN":["1"],"aH":[],"aa":[]},"RS":{"a5":[],"h":[]},"b7B":{"ba8":["at"]},"ym":{"a9":["RS<1>"]},"a_m":{"bb":[],"aU":[],"h":[]},"a_e":{"dN":["rM?"],"aH":[],"aa":[],"d7.T":"rM?"},"Hr":{"bb":[],"aU":[],"h":[]},"y9":{"a5":[],"h":[]},"k4":{"a9":["y9<1>"]},"vI":{"cK":["1"]},"ec":{"cK":["1"]},"Wh":{"br":["hC"],"br.T":"hC"},"dL":{"ec":["1"],"cK":["1"]},"CQ":{"dL":["1"],"ec":["1"],"cK":["1"]},"D_":{"dL":["1"],"ec":["1"],"cK":["1"]},"RX":{"ak":[],"h":[]},"DI":{"fx":["1"],"fx.T":"1"},"DJ":{"bb":[],"aU":[],"h":[]},"DK":{"aH":[],"aa":[]},"yp":{"a5":[],"h":[]},"yn":{"et":["h8"],"mk":[],"h8":[],"et.T":"h8"},"Is":{"a9":["yp"]},"Nz":{"mB":[]},"he":{"iL":[],"hW":[]},"jP":{"he":[],"iL":[],"hW":[]},"DP":{"he":[],"iL":[],"hW":[]},"kW":{"he":[],"iL":[],"hW":[]},"oL":{"he":[],"iL":[],"hW":[]},"U7":{"he":[],"iL":[],"hW":[]},"Ii":{"bb":[],"aU":[],"h":[]},"pi":{"ie":["pi"],"ie.E":"pi"},"DM":{"a5":[],"h":[]},"DN":{"a9":["DM"]},"mC":{"iw":[],"aH":[],"aa":[],"mB":[]},"rQ":{"hW":[]},"DO":{"mC":[],"iw":[],"aH":[],"aa":[],"mB":[]},"S7":{"ak":[],"h":[]},"Lw":{"ak":[],"h":[]},"BF":{"ak":[],"h":[]},"DQ":{"a5":[],"h":[]},"Ik":{"bb":[],"aU":[],"h":[]},"Im":{"a5":[],"h":[]},"ws":{"a9":["DQ"]},"a_v":{"a9":["Im"]},"Il":{"aH":[],"aa":[]},"a_u":{"b2":[],"an":[],"h":[]},"a_3":{"A":[],"aD":["A"],"t":[],"ah":[]},"a_f":{"dN":["Z?"],"aH":[],"aa":[],"d7.T":"Z?"},"eI":{"bj":[]},"DH":{"dr":["eI"],"br":["eI"],"br.T":"eI","dr.T":"eI"},"wa":{"a5":[],"h":[]},"lx":{"hL":[],"d4":[],"du":[]},"ly":{"hS":[],"d4":[],"du":[]},"wt":{"aH":[],"aa":[]},"l4":{"a9":["1"]},"vC":{"aH":[],"aa":[]},"wu":{"a5":[],"h":[]},"ww":{"bb":[],"aU":[],"h":[]},"a_C":{"eJ":[],"a9":["wu"],"aa":[]},"Sc":{"aa":[]},"E4":{"a5":[],"h":[]},"a_J":{"a9":["E4"]},"a_K":{"kG":["O"],"bb":[],"aU":[],"h":[],"kG.T":"O"},"aS":{"wC":[]},"rZ":{"a5":[],"h":[]},"E5":{"a5":[],"h":[]},"wD":{"aH":[],"aa":[]},"Ix":{"a9":["rZ"]},"E6":{"aH":[],"aa":[]},"Iw":{"a9":["E5"]},"a_N":{"bb":[],"aU":[],"h":[]},"yr":{"b2":[],"an":[],"h":[]},"Sr":{"ak":[],"h":[]},"a_T":{"b9":[],"ap":[],"S":[]},"I6":{"A":[],"aD":["A"],"D6":[],"t":[],"ah":[]},"SE":{"an":[],"h":[]},"wH":{"an":[],"h":[]},"SC":{"wH":[],"an":[],"h":[]},"wG":{"b9":[],"ap":[],"S":[]},"Bs":{"dZ":["kL"],"aU":[],"h":[],"dZ.T":"kL"},"Ef":{"hP":["1","2"],"an":[],"h":[]},"Eg":{"b9":[],"ap":[],"S":[]},"Ej":{"aH":[],"aa":[]},"SH":{"b2":[],"an":[],"h":[]},"yl":{"A":[],"aD":["A"],"t":[],"ah":[]},"SG":{"aH":[],"aa":[]},"Gf":{"aH":[],"aa":[]},"SQ":{"ak":[],"h":[]},"ED":{"an":[],"h":[]},"a0p":{"b9":[],"ap":[],"S":[]},"T9":{"dZ":["lg"],"aU":[],"h":[],"dZ.T":"lg"},"li":{"d4":[],"du":[]},"lj":{"d4":[],"du":[]},"zu":{"d4":[],"du":[]},"Dq":{"A":[],"aD":["A"],"t":[],"ah":[]},"wi":{"A":[],"aD":["A"],"t":[],"ah":[]},"Th":{"b2":[],"an":[],"h":[]},"Tg":{"b2":[],"an":[],"h":[]},"Tt":{"b2":[],"an":[],"h":[]},"nG":{"dl":[],"bb":[],"aU":[],"h":[]},"aX_":{"dl":[],"bb":[],"aU":[],"h":[]},"YH":{"ak":[],"h":[]},"dP":{"ak":[],"h":[]},"Aj":{"bj":[]},"qh":{"bj":[]},"qj":{"bj":[]},"qi":{"bj":[]},"fw":{"bj":[]},"m_":{"fw":[],"bj":[]},"m1":{"fw":[],"bj":[]},"qu":{"fw":[],"bj":[]},"qp":{"fw":[],"bj":[]},"qq":{"fw":[],"bj":[]},"i9":{"fw":[],"bj":[]},"nO":{"fw":[],"bj":[]},"m2":{"fw":[],"bj":[]},"qs":{"fw":[],"bj":[]},"qt":{"fw":[],"bj":[]},"m0":{"fw":[],"bj":[]},"mD":{"bj":[]},"a9j":{"bj":[]},"mE":{"bj":[]},"ko":{"bj":[]},"or":{"bj":[]},"oC":{"bj":[]},"jL":{"bj":[]},"p3":{"bj":[]},"j2":{"bj":[]},"p2":{"bj":[]},"MP":{"bj":[]},"fL":{"eS":[],"dJ":["A"],"cE":[]},"n_":{"a5":[],"h":[]},"Iq":{"a5":[],"h":[]},"F0":{"a5":[],"h":[]},"It":{"a9":["n_"]},"Ir":{"a9":["Iq"]},"IX":{"a9":["F0"]},"zX":{"fp":["uj"],"aH":[],"aa":[],"fO":[]},"ta":{"a5":[],"h":[]},"Gt":{"bb":[],"aU":[],"h":[]},"a0Y":{"a9":["ta"]},"FY":{"aa":[]},"TK":{"ak":[],"h":[]},"zb":{"a5":[],"h":[]},"qv":{"b2":[],"an":[],"h":[]},"FA":{"a9":["zb"]},"Sz":{"a5":[],"h":[]},"S1":{"a5":[],"h":[]},"RP":{"a5":[],"h":[]},"Mx":{"a5":[],"h":[]},"BG":{"a5":[],"h":[]},"KM":{"a5":[],"h":[]},"xc":{"a5":[],"h":[]},"xd":{"a9":["xc<1>"]},"Fl":{"fp":["xe"],"aH":[],"aa":[]},"xl":{"a5":[],"h":[]},"yD":{"a9":["xl<1>"]},"Jk":{"bb":[],"aU":[],"h":[]},"Uc":{"ak":[],"h":[]},"Ft":{"eo":[],"an":[],"h":[]},"a1D":{"b9":[],"ap":[],"S":[]},"So":{"eo":[],"an":[],"h":[]},"Jl":{"bb":[],"aU":[],"h":[]},"Uh":{"ak":[],"h":[]},"a1E":{"b2":[],"an":[],"h":[]},"a_b":{"A":[],"aD":["A"],"t":[],"ah":[]},"xn":{"fz":[]},"a1H":{"dZ":["j0"],"aU":[],"h":[],"dZ.T":"j0"},"US":{"b2":[],"an":[],"h":[]},"I4":{"A":[],"aD":["A"],"t":[],"ah":[]},"Fx":{"a5":[],"h":[]},"a1K":{"a9":["Fx"]},"Oc":{"ak":[],"h":[]},"BR":{"a5":[],"h":[]},"Y3":{"a9":["BR"]},"Pd":{"a5":[],"h":[]},"TV":{"bV":[]},"B3":{"a5":[],"h":[]},"kS":{"eS":[],"dJ":["A"],"cE":[]},"Xa":{"a9":["B3"]},"X9":{"eo":[],"an":[],"h":[]},"Rn":{"cU":["A","kS"],"A":[],"aj":["A","kS"],"t":[],"ah":[],"aj.1":"kS","cU.1":"kS","aj.0":"A"},"Lk":{"a62":[]},"zC":{"a62":[]},"u4":{"c1":["B"],"c1.T":"B"},"zW":{"bV":[]},"zH":{"bS":["n","n","1"],"az":["n","1"],"bS.V":"1","bS.K":"n","bS.C":"n"},"bt":{"il":[]},"cA":{"il":[]},"p4":{"il":[]},"Lr":{"dk":[]},"zZ":{"dk":[]},"AA":{"dk":[]},"Nn":{"dk":[]},"NP":{"dk":[]},"O8":{"dk":[]},"Oe":{"dk":[]},"Og":{"dk":[]},"BC":{"dk":[]},"r1":{"dk":[]},"Cr":{"dk":[]},"Cs":{"dk":[]},"vN":{"dk":[]},"E1":{"dk":[]},"Td":{"dk":[]},"Fn":{"dk":[]},"Fo":{"dk":[]},"L9":{"dY":[]},"La":{"dY":[]},"M4":{"dY":[]},"Mv":{"dY":[]},"MG":{"dY":[]},"E7":{"Ae":[]},"uw":{"Ae":[]},"N3":{"dY":[]},"Az":{"dY":[]},"Nk":{"dY":[]},"Or":{"dY":[]},"Ox":{"dY":[]},"OZ":{"dY":[]},"qX":{"dY":[]},"SI":{"dY":[]},"SY":{"dY":[]},"x4":{"dY":[]},"pm":{"ap":[],"S":[]},"fJ":{"h":[]},"vE":{"ak":[],"fJ":[],"h":[]},"Yw":{"ap":[],"S":[]},"pl":{"ak":[],"h":[]},"fI":{"ak":[],"fJ":[],"h":[]},"E9":{"ap":[],"S":[]},"Qu":{"bV":[]},"zI":{"el":["1"],"fI":[],"ak":[],"fJ":[],"h":[],"el.T":"1"},"zJ":{"BJ":["1","2","3"],"el":["3"],"fI":[],"ak":[],"fJ":[],"h":[],"el.T":"3"},"q6":{"fI":[],"ak":[],"fJ":[],"h":[]},"BH":{"el":["1"],"fI":[],"ak":[],"fJ":[],"h":[]},"BI":{"el":["1"],"fI":[],"ak":[],"fJ":[],"h":[]},"BJ":{"el":["3"],"fI":[],"ak":[],"fJ":[],"h":[]},"Ou":{"S":[]},"ev":{"bb":[],"aU":[],"h":[]},"el":{"fI":[],"ak":[],"fJ":[],"h":[]},"GW":{"ap":[],"S":[]},"tv":{"fy":[],"ap":[],"Ou":["1"],"S":[]},"G0":{"ix":["1","hX<1>"],"ix.D":"hX<1>"},"PJ":{"vE":[],"ak":[],"fJ":[],"h":[]},"CR":{"el":["1"],"fI":[],"ak":[],"fJ":[],"h":[],"el.T":"1"},"R5":{"bV":[]},"R4":{"bV":[]},"CV":{"el":["1"],"fI":[],"ak":[],"fJ":[],"h":[]},"CU":{"el":["2"],"fI":[],"ak":[],"fJ":[],"h":[],"el.T":"2"},"CW":{"el":["3"],"fI":[],"ak":[],"fJ":[],"h":[],"el.T":"3"},"Np":{"jT":[],"c9":["jT"]},"xL":{"mJ":[],"c9":["SN"]},"jT":{"c9":["jT"]},"SM":{"jT":[],"c9":["jT"]},"SN":{"c9":["SN"]},"SO":{"c9":["SN"]},"SP":{"bV":[]},"wI":{"ia":[],"bV":[]},"wJ":{"c9":["SN"]},"mJ":{"c9":["SN"]},"T0":{"ia":[],"bV":[]},"ip":{"bap":["1"]},"aWN":{"bb":[],"aU":[],"h":[]},"aZe":{"a5":[],"h":[]},"aXE":{"a5":[],"h":[]},"aXF":{"a9":["aXE"]},"b2b":{"bb":[],"aU":[],"h":[]},"b1l":{"bb":[],"aU":[],"h":[]}}')) -A.b2k(v.typeUniverse,JSON.parse('{"AN":1,"U1":1,"xg":1,"Jz":2,"A0":1,"vD":1,"iY":1,"Ev":1,"SX":2,"Wa":1,"xh":2,"Jc":2,"BQ":2,"a05":2,"a04":2,"ID":2,"IE":1,"IF":1,"Jd":2,"LI":1,"yv":1,"c9":1,"y0":1,"L5":1,"OE":1,"zf":1,"ul":1,"FV":1,"FW":1,"FX":1,"Cz":1,"Jw":1,"G4":1,"JI":1,"Pj":1,"Hh":1,"yE":1,"x8":1,"A1":1,"FZ":1,"dJ":1,"fj":1,"D7":1,"A6":1,"yk":1,"I1":1,"wj":1,"pR":1,"vb":1,"tS":1,"xY":1,"aDQ":1,"TT":1,"aJO":1,"kX":1,"dN":1,"iR":1,"d7":1,"I8":1,"rJ":1,"wl":1,"yF":1,"vI":1,"P4":1,"CQ":1,"D_":1,"y8":1,"yi":1,"Ef":2,"Iz":2,"hO":1,"dE":1,"J7":1,"BH":1,"BI":1,"Ou":1,"Wb":1,"CV":1}')) -var u={q:"\x10@\x100@@\xa0\x80 0P`pPP\xb1\x10@\x100@@\xa0\x80 0P`pPP\xb0\x11@\x100@@\xa0\x80 0P`pPP\xb0\x10@\x100@@\xa0\x80 1P`pPP\xb0\x10A\x101AA\xa1\x81 1QaqQQ\xb0\x10@\x100@@\xa0\x80 1Q`pPP\xb0\x10@\x100@@\xa0\x80 1QapQP\xb0\x10@\x100@@\xa0\x80 1PaqQQ\xb0\x10\xe0\x100@@\xa0\x80 1P`pPP\xb0\xb1\xb1\xb1\xb1\x91\xb1\xc1\x81\xb1\xb1\xb1\xb1\xb1\xb1\xb1\xb1\x10@\x100@@\xd0\x80 1P`pPP\xb0\x11A\x111AA\xa1\x81!1QaqQQ\xb1\x10@\x100@@\x90\x80 1P`pPP\xb0",S:" 0\x10000\xa0\x80\x10@P`p`p\xb1 0\x10000\xa0\x80\x10@P`p`p\xb0 0\x10000\xa0\x80\x11@P`p`p\xb0 1\x10011\xa0\x80\x10@P`p`p\xb0 1\x10111\xa1\x81\x10AQaqaq\xb0 1\x10011\xa0\x80\x10@Qapaq\xb0 1\x10011\xa0\x80\x10@Paq`p\xb0 1\x10011\xa0\x80\x10@P`q`p\xb0 \x91\x100\x811\xa0\x80\x10@P`p`p\xb0 1\x10011\xa0\x81\x10@P`p`p\xb0 1\x100111\x80\x10@P`p`p\xb0!1\x11111\xa1\x81\x11AQaqaq\xb1",D:" must not be greater than the number of characters in the file, ",t:'"recorder" must not already be associated with another Canvas.',T:"% of the way to being a CircleBorder that is ",N:"' has been assigned during initialization.",X:"(!|!=|!==|%|%=|&|&&|&=|\\*|\\*=|\\+|\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\?|\\[|\\{|\\(|\\^|\\^=|\\||\\|=|\\|\\||\\x7e|\\b(case|return|throw)\\b)\\s*",P:"((decltype\\(auto\\)|(?:[a-zA-Z_]\\w*::)?[a-zA-Z_]\\w*(?:<.*?>)?)[\\*&\\s]+)+(?:[a-zA-Z_]\\w*::)?[a-zA-Z]\\w*\\s*\\(",c:"(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)",O:"(-?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)",j:"(-?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)n?",A:"(-?)\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)(u|U|l|L|ul|UL|f|F|b|B)",H:"(::|->)+[a-zA-Z_\\x7f-\\xff][a-zA-Z0-9_\\x7f-\\xff]*",m:'(?:u8?|U|L)?R"([^()\\\\ ]{0,16})\\((?:.|\\n)*?\\)\\1"',u:"(?=\\b|\\+|\\-|\\.)(?=\\.\\d|\\d)(?:\\d+)?(?:\\.?\\d*)(?:[de][+-]?\\d+)?\\b\\.?",b:"([_a-zA-Z]\\w*\\.)*([_a-zA-Z]\\w*:)?[_a-zA-Z]\\w*",K:"(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b",F:"(u8?|U|L)?'(\\\\(x[0-9A-Fa-f]{2}|u[0-9A-Fa-f]{4,8}|[0-7]{3}|\\S)|.)",C:"00000008A0009!B000a!C000b000cD000d!E000e000vA000w!F000x!G000y!H000z!I0010!J0011!K0012!I0013!H0014!L0015!M0016!I0017!J0018!N0019!O001a!N001b!P001c001lQ001m001nN001o001qI001r!G001s002iI002j!L002k!J002l!M002m003eI003f!L003g!B003h!R003i!I003j003oA003p!D003q004fA004g!S004h!L004i!K004j004lJ004m004qI004r!H004s!I004t!B004u004vI004w!K004x!J004y004zI0050!T00510056I0057!H0058005aI005b!L005c00jrI00js!T00jt00jvI00jw!T00jx00keI00kf!T00kg00lbI00lc00niA00nj!S00nk00nvA00nw00o2S00o300ofA00og00otI00ou!N00ov00w2I00w300w9A00wa013cI013d!N013e!B013h013iI013j!J013l014tA014u!B014v!A014w!I014x014yA014z!I01500151A0152!G0153!A015c0162U0167016aU016b016wI016x016zK01700171N01720173I0174017eA017f!G017g!A017i017jG017k018qI018r019bA019c019lQ019m!K019n019oQ019p019rI019s!A019t01cjI01ck!G01cl!I01cm01csA01ct01cuI01cv01d0A01d101d2I01d301d4A01d5!I01d601d9A01da01dbI01dc01dlQ01dm01e8I01e9!A01ea01f3I01f401fuA01fx01idI01ie01ioA01ip!I01j401jdQ01je01kaI01kb01kjA01kk01knI01ko!N01kp!G01kq!I01kt!A01ku01kvJ01kw01lhI01li01llA01lm!I01ln01lvA01lw!I01lx01lzA01m0!I01m101m5A01m801ncI01nd01nfA01ni01qfI01qr01r5A01r6!I01r701s3A01s401tlI01tm01toA01tp!I01tq01u7A01u8!I01u901ufA01ug01upI01uq01urA01us01utB01uu01v3Q01v401vkI01vl01vnA01vp01x5I01x8!A01x9!I01xa01xgA01xj01xkA01xn01xpA01xq!I01xz!A01y401y9I01ya01ybA01ye01ynQ01yo01ypI01yq01yrK01ys01ywI01yx!K01yy!I01yz!J01z001z1I01z2!A01z501z7A01z9020pI020s!A020u020yA02130214A02170219A021d!A021l021qI021y0227Q02280229A022a022cI022d!A022e!I022p022rA022t0249I024c!A024d!I024e024lA024n024pA024r024tA024w025dI025e025fA025i025rQ025s!I025t!J0261!I02620267A0269026bA026d027tI027w!A027x!I027y0284A02870288A028b028dA028l028nA028s028xI028y028zA0292029bQ029c029jI029u!A029v02bdI02bi02bmA02bq02bsA02bu02bxA02c0!I02c7!A02cm02cvQ02cw02d4I02d5!J02d6!I02dc02dgA02dh02f1I02f202f8A02fa02fcA02fe02fhA02fp02fqA02fs02g1I02g202g3A02g602gfQ02gn!T02go02gwI02gx02gzA02h0!T02h102ihI02ik!A02il!I02im02isA02iu02iwA02iy02j1A02j902jaA02ji02jlI02jm02jnA02jq02jzQ02k102k2I02kg02kjA02kk02m2I02m302m4A02m5!I02m602mcA02me02mgA02mi02mlA02mm02muI02mv!A02mw02n5I02n602n7A02na02njQ02nk02nsI02nt!K02nu02nzI02o102o3A02o502pyI02q2!A02q702qcA02qe!A02qg02qnA02qu02r3Q02r602r7A02r802t6I02tb!J02tc02trI02ts02u1Q02u202u3B02v502x9I02xc02xlQ02xo02yoI02yp02ysT02yt!I02yu02yvT02yw!S02yx02yyT02yz!B02z0!S02z102z5G02z6!S02z7!I02z8!G02z902zbI02zc02zdA02ze02zjI02zk02ztQ02zu0303I0304!B0305!A0306!I0307!A0308!I0309!A030a!L030b!R030c!L030d!R030e030fA030g031oI031t0326A0327!B0328032cA032d!B032e032fA032g032kI032l032vA032x033wA033y033zB03400345I0346!A0347034fI034g034hT034i!B034j!T034k034oI034p034qS035s037jI037k037tQ037u037vB037w039rI039s03a1Q03a203cvI03cw03fjV03fk03hjW03hk03jzX03k003tmI03tp03trA03ts!I03tt!B03tu03y5I03y8!B03y904fzI04g0!B04g104gqI04gr!L04gs!R04gw04iyI04iz04j1B04j204k1I04k204k4A04kg04kxI04ky04l0A04l104l2B04lc04ltI04lu04lvA04m804moI04mq04mrA04n404pfI04pg04phB04pi!Y04pj!I04pk!B04pl!I04pm!B04pn!J04po04ppI04ps04q1Q04q804qpI04qq04qrG04qs04qtB04qu!T04qv!I04qw04qxG04qy!I04qz04r1A04r2!S04r404rdQ04rk04ucI04ud04ueA04uf04vcI04vd!A04ve04ymI04yo04yzA04z404zfA04zk!I04zo04zpG04zq04zzQ0500053dI053k053tQ053u055iI055j055nA055q058cI058f!A058g058pQ058w0595Q059c059pI059s05a8A05c005c4A05c505dfI05dg05dwA05dx05e3I05e805ehQ05ei05ejB05ek!I05el05eoB05ep05eyI05ez05f7A05f805fgI05fk05fmA05fn05ggI05gh05gtA05gu05gvI05gw05h5Q05h605idI05ie05irA05j005k3I05k405knA05kr05kvB05kw05l5Q05l905lbI05lc05llQ05lm05mlI05mm05mnB05mo05onI05ow05oyA05oz!I05p005pkA05pl05poI05pp!A05pq05pvI05pw!A05px05pyI05pz05q1A05q205vjI05vk05x5A05x705xbA05xc06bgI06bh!T06bi!I06bk06bqB06br!S06bs06buB06bv!Z06bw!A06bx!a06by06bzA06c0!B06c1!S06c206c3B06c4!b06c506c7I06c806c9H06ca!L06cb06cdH06ce!L06cf!H06cg06cjI06ck06cmc06cn!B06co06cpD06cq06cuA06cv!S06cw06d3K06d4!I06d506d6H06d7!I06d806d9Y06da06dfI06dg!N06dh!L06di!R06dj06dlY06dm06dxI06dy!B06dz!I06e006e3B06e4!I06e506e7B06e8!d06e906ecI06ee06enA06eo06f0I06f1!L06f2!R06f306fgI06fh!L06fi!R06fk06fwI06g006g6J06g7!K06g806glJ06gm!K06gn06gqJ06gr!K06gs06gtJ06gu!K06gv06hbJ06hc06i8A06io06iqI06ir!K06is06iwI06ix!K06iy06j9I06ja!J06jb06q9I06qa06qbJ06qc06weI06wf!c06wg06x3I06x4!L06x5!R06x6!L06x7!R06x806xlI06xm06xne06xo06y0I06y1!L06y2!R06y3073jI073k073ne073o07i7I07i807ibe07ic07irI07is07ite07iu07ivI07iw!e07ix!I07iy07j0e07j1!f07j207j3e07j407jsI07jt07jve07jw07l3I07l4!e07l507lqI07lr!e07ls07ngI07nh07nse07nt07nwI07nx!e07ny!I07nz07o1e07o2!I07o307o4e07o507o7I07o807o9e07oa07obI07oc!e07od07oeI07of07ohe07oi07opI07oq!e07or07owI07ox07p1e07p2!I07p307p4e07p5!f07p6!e07p707p8I07p907pge07ph07pjI07pk07ple07pm07ppf07pq07ruI07rv07s0H07s1!I07s207s3G07s4!e07s507s7I07s8!L07s9!R07sa!L07sb!R07sc!L07sd!R07se!L07sf!R07sg!L07sh!R07si!L07sj!R07sk!L07sl!R07sm07usI07ut!L07uu!R07uv07vpI07vq!L07vr!R07vs!L07vt!R07vu!L07vv!R07vw!L07vx!R07vy!L07vz!R07w00876I0877!L0878!R0879!L087a!R087b!L087c!R087d!L087e!R087f!L087g!R087h!L087i!R087j!L087k!R087l!L087m!R087n!L087o!R087p!L087q!R087r!L087s!R087t089jI089k!L089l!R089m!L089n!R089o08ajI08ak!L08al!R08am08viI08vj08vlA08vm08vnI08vt!G08vu08vwB08vx!I08vy!G08vz!B08w008z3I08z4!B08zj!A08zk0926I09280933A0934093hH093i093pB093q!I093r!B093s!L093t!B093u093vI093w093xH093y093zI09400941H0942!L0943!R0944!L0945!R0946!L0947!R0948!L0949!R094a094dB094e!G094f!I094g094hB094i!I094j094kB094l094pI094q094rb094s094uB094v!I094w094xB094y!L094z0956B0957!I0958!B0959!I095a095bB095c095eI096o097de097f099ve09a809g5e09gw09h7e09hc!B09hd09heR09hf09hge09hh!Y09hi09hje09hk!L09hl!R09hm!L09hn!R09ho!L09hp!R09hq!L09hr!R09hs!L09ht!R09hu09hve09hw!L09hx!R09hy!L09hz!R09i0!L09i1!R09i2!L09i3!R09i4!Y09i5!L09i609i7R09i809ihe09ii09inA09io09ise09it!A09iu09iye09iz09j0Y09j109j3e09j5!Y09j6!e09j7!Y09j8!e09j9!Y09ja!e09jb!Y09jc!e09jd!Y09je09k2e09k3!Y09k409kye09kz!Y09l0!e09l1!Y09l2!e09l3!Y09l409l9e09la!Y09lb09lge09lh09liY09ll09lmA09ln09lqY09lr!e09ls09ltY09lu!e09lv!Y09lw!e09lx!Y09ly!e09lz!Y09m0!e09m1!Y09m209mqe09mr!Y09ms09nme09nn!Y09no!e09np!Y09nq!e09nr!Y09ns09nxe09ny!Y09nz09o4e09o509o6Y09o709oae09ob09oeY09of!e09ol09pre09pt09see09sg09ure09v409vjY09vk09wee09wg09xje09xk09xrI09xs0fcve0fcw0fenI0feo0vmce0vmd!Y0vme0wi4e0wi80wjqe0wk00wl9I0wla0wlbB0wlc0wssI0wst!B0wsu!G0wsv!B0wsw0wtbI0wtc0wtlQ0wtm0wviI0wvj0wvmA0wvn!I0wvo0wvxA0wvy0wwtI0wwu0wwvA0www0wz3I0wz40wz5A0wz6!I0wz70wzbB0wzk0x6pI0x6q!A0x6r0x6tI0x6u!A0x6v0x6yI0x6z!A0x700x7mI0x7n0x7rA0x7s0x7vI0x7w!A0x800x87I0x88!K0x890x9vI0x9w0x9xT0x9y0x9zG0xa80xa9A0xaa0xbnI0xbo0xc5A0xce0xcfB0xcg0xcpQ0xcw0xddA0xde0xdnI0xdo!T0xdp0xdqI0xdr!A0xds0xe1Q0xe20xetI0xeu0xf1A0xf20xf3B0xf40xfqI0xfr0xg3A0xgf!I0xgg0xh8V0xhc0xhfA0xhg0xiqI0xir0xj4A0xj50xjaI0xjb0xjdB0xje0xjjI0xjk0xjtQ0xjy0xkfI0xkg0xkpQ0xkq0xm0I0xm10xmeA0xmo0xmqI0xmr!A0xms0xmzI0xn00xn1A0xn40xndQ0xng!I0xnh0xnjB0xnk0xreI0xrf0xrjA0xrk0xrlB0xrm0xroI0xrp0xrqA0xs10xyaI0xyb0xyiA0xyj!B0xyk0xylA0xyo0xyxQ0xz4!g0xz50xzvh0xzw!g0xzx0y0nh0y0o!g0y0p0y1fh0y1g!g0y1h0y27h0y28!g0y290y2zh0y30!g0y310y3rh0y3s!g0y3t0y4jh0y4k!g0y4l0y5bh0y5c!g0y5d0y63h0y64!g0y650y6vh0y6w!g0y6x0y7nh0y7o!g0y7p0y8fh0y8g!g0y8h0y97h0y98!g0y990y9zh0ya0!g0ya10yarh0yas!g0yat0ybjh0ybk!g0ybl0ycbh0ycc!g0ycd0yd3h0yd4!g0yd50ydvh0ydw!g0ydx0yenh0yeo!g0yep0yffh0yfg!g0yfh0yg7h0yg8!g0yg90ygzh0yh0!g0yh10yhrh0yhs!g0yht0yijh0yik!g0yil0yjbh0yjc!g0yjd0yk3h0yk4!g0yk50ykvh0ykw!g0ykx0ylnh0ylo!g0ylp0ymfh0ymg!g0ymh0yn7h0yn8!g0yn90ynzh0yo0!g0yo10yorh0yos!g0yot0ypjh0ypk!g0ypl0yqbh0yqc!g0yqd0yr3h0yr4!g0yr50yrvh0yrw!g0yrx0ysnh0yso!g0ysp0ytfh0ytg!g0yth0yu7h0yu8!g0yu90yuzh0yv0!g0yv10yvrh0yvs!g0yvt0ywjh0ywk!g0ywl0yxbh0yxc!g0yxd0yy3h0yy4!g0yy50yyvh0yyw!g0yyx0yznh0yzo!g0yzp0z0fh0z0g!g0z0h0z17h0z18!g0z190z1zh0z20!g0z210z2rh0z2s!g0z2t0z3jh0z3k!g0z3l0z4bh0z4c!g0z4d0z53h0z54!g0z550z5vh0z5w!g0z5x0z6nh0z6o!g0z6p0z7fh0z7g!g0z7h0z87h0z88!g0z890z8zh0z90!g0z910z9rh0z9s!g0z9t0zajh0zak!g0zal0zbbh0zbc!g0zbd0zc3h0zc4!g0zc50zcvh0zcw!g0zcx0zdnh0zdo!g0zdp0zefh0zeg!g0zeh0zf7h0zf8!g0zf90zfzh0zg0!g0zg10zgrh0zgs!g0zgt0zhjh0zhk!g0zhl0zibh0zic!g0zid0zj3h0zj4!g0zj50zjvh0zjw!g0zjx0zknh0zko!g0zkp0zlfh0zlg!g0zlh0zm7h0zm8!g0zm90zmzh0zn0!g0zn10znrh0zns!g0znt0zojh0zok!g0zol0zpbh0zpc!g0zpd0zq3h0zq4!g0zq50zqvh0zqw!g0zqx0zrnh0zro!g0zrp0zsfh0zsg!g0zsh0zt7h0zt8!g0zt90ztzh0zu0!g0zu10zurh0zus!g0zut0zvjh0zvk!g0zvl0zwbh0zwc!g0zwd0zx3h0zx4!g0zx50zxvh0zxw!g0zxx0zynh0zyo!g0zyp0zzfh0zzg!g0zzh1007h1008!g1009100zh1010!g1011101rh101s!g101t102jh102k!g102l103bh103c!g103d1043h1044!g1045104vh104w!g104x105nh105o!g105p106fh106g!g106h1077h1078!g1079107zh1080!g1081108rh108s!g108t109jh109k!g109l10abh10ac!g10ad10b3h10b4!g10b510bvh10bw!g10bx10cnh10co!g10cp10dfh10dg!g10dh10e7h10e8!g10e910ezh10f0!g10f110frh10fs!g10ft10gjh10gk!g10gl10hbh10hc!g10hd10i3h10i4!g10i510ivh10iw!g10ix10jnh10jo!g10jp10kfh10kg!g10kh10l7h10l8!g10l910lzh10m0!g10m110mrh10ms!g10mt10njh10nk!g10nl10obh10oc!g10od10p3h10p4!g10p510pvh10pw!g10px10qnh10qo!g10qp10rfh10rg!g10rh10s7h10s8!g10s910szh10t0!g10t110trh10ts!g10tt10ujh10uk!g10ul10vbh10vc!g10vd10w3h10w4!g10w510wvh10ww!g10wx10xnh10xo!g10xp10yfh10yg!g10yh10z7h10z8!g10z910zzh1100!g1101110rh110s!g110t111jh111k!g111l112bh112c!g112d1133h1134!g1135113vh113w!g113x114nh114o!g114p115fh115g!g115h1167h1168!g1169116zh1170!g1171117rh117s!g117t118jh118k!g118l119bh119c!g119d11a3h11a4!g11a511avh11aw!g11ax11bnh11bo!g11bp11cfh11cg!g11ch11d7h11d8!g11d911dzh11e0!g11e111erh11es!g11et11fjh11fk!g11fl11gbh11gc!g11gd11h3h11h4!g11h511hvh11hw!g11hx11inh11io!g11ip11jfh11jg!g11jh11k7h11k8!g11k911kzh11l0!g11l111lrh11ls!g11lt11mjh11mk!g11ml11nbh11nc!g11nd11o3h11o4!g11o511ovh11ow!g11ox11pnh11po!g11pp11qfh11qg!g11qh11r7h11r8!g11r911rzh11s0!g11s111srh11ss!g11st11tjh11tk!g11tl11ubh11uc!g11ud11v3h11v4!g11v511vvh11vw!g11vx11wnh11wo!g11wp11xfh11xg!g11xh11y7h11y8!g11y911yzh11z0!g11z111zrh11zs!g11zt120jh120k!g120l121bh121c!g121d1223h1224!g1225122vh122w!g122x123nh123o!g123p124fh124g!g124h1257h1258!g1259125zh1260!g1261126rh126s!g126t127jh127k!g127l128bh128c!g128d1293h1294!g1295129vh129w!g129x12anh12ao!g12ap12bfh12bg!g12bh12c7h12c8!g12c912czh12d0!g12d112drh12ds!g12dt12ejh12ek!g12el12fbh12fc!g12fd12g3h12g4!g12g512gvh12gw!g12gx12hnh12ho!g12hp12ifh12ig!g12ih12j7h12j8!g12j912jzh12k0!g12k112krh12ks!g12kt12ljh12lk!g12ll12mbh12mc!g12md12n3h12n4!g12n512nvh12nw!g12nx12onh12oo!g12op12pfh12pg!g12ph12q7h12q8!g12q912qzh12r0!g12r112rrh12rs!g12rt12sjh12sk!g12sl12tbh12tc!g12td12u3h12u4!g12u512uvh12uw!g12ux12vnh12vo!g12vp12wfh12wg!g12wh12x7h12x8!g12x912xzh12y0!g12y112yrh12ys!g12yt12zjh12zk!g12zl130bh130c!g130d1313h1314!g1315131vh131w!g131x132nh132o!g132p133fh133g!g133h1347h1348!g1349134zh1350!g1351135rh135s!g135t136jh136k!g136l137bh137c!g137d1383h1384!g1385138vh138w!g138x139nh139o!g139p13afh13ag!g13ah13b7h13b8!g13b913bzh13c0!g13c113crh13cs!g13ct13djh13dk!g13dl13ebh13ec!g13ed13f3h13f4!g13f513fvh13fw!g13fx13gnh13go!g13gp13hfh13hg!g13hh13i7h13i8!g13i913izh13j0!g13j113jrh13js!g13jt13kjh13kk!g13kl13lbh13lc!g13ld13m3h13m4!g13m513mvh13mw!g13mx13nnh13no!g13np13ofh13og!g13oh13p7h13p8!g13p913pzh13q0!g13q113qrh13qs!g13qt13rjh13rk!g13rl13sbh13sc!g13sd13t3h13t4!g13t513tvh13tw!g13tx13unh13uo!g13up13vfh13vg!g13vh13w7h13w8!g13w913wzh13x0!g13x113xrh13xs!g13xt13yjh13yk!g13yl13zbh13zc!g13zd1403h1404!g1405140vh140w!g140x141nh141o!g141p142fh142g!g142h1437h1438!g1439143zh1440!g1441144rh144s!g144t145jh145k!g145l146bh146c!g146d1473h1474!g1475147vh147w!g147x148nh148o!g148p149fh149g!g149h14a7h14a8!g14a914azh14b0!g14b114brh14bs!g14bt14cjh14ck!g14cl14dbh14dc!g14dd14e3h14e4!g14e514evh14ew!g14ex14fnh14fo!g14fp14gfh14gg!g14gh14h7h14h8!g14h914hzh14i0!g14i114irh14is!g14it14jjh14jk!g14jl14kbh14kc!g14kd14l3h14l4!g14l514lvh14lw!g14lx14mnh14mo!g14mp14nfh14ng!g14nh14o7h14o8!g14o914ozh14p0!g14p114prh14ps!g14pt14qjh14qk!g14ql14rbh14rc!g14rd14s3h14s4!g14s514svh14sw!g14sx14tnh14to!g14tp14ufh14ug!g14uh14v7h14v8!g14v914vzh14w0!g14w114wrh14ws!g14wt14xjh14xk!g14xl14ybh14yc!g14yd14z3h14z4!g14z514zvh14zw!g14zx150nh150o!g150p151fh151g!g151h1527h1528!g1529152zh1530!g1531153rh153s!g153t154jh154k!g154l155bh155c!g155d1563h1564!g1565156vh156w!g156x157nh157o!g157p158fh158g!g158h1597h1598!g1599159zh15a0!g15a115arh15as!g15at15bjh15bk!g15bl15cbh15cc!g15cd15d3h15d4!g15d515dvh15dw!g15dx15enh15eo!g15ep15ffh15fg!g15fh15g7h15g8!g15g915gzh15h0!g15h115hrh15hs!g15ht15ijh15ik!g15il15jbh15jc!g15jd15k3h15k4!g15k515kvh15kw!g15kx15lnh15lo!g15lp15mfh15mg!g15mh15n7h15n8!g15n915nzh15o0!g15o115orh15os!g15ot15pjh15pk!g15pl15qbh15qc!g15qd15r3h15r4!g15r515rvh15rw!g15rx15snh15so!g15sp15tfh15tg!g15th15u7h15u8!g15u915uzh15v0!g15v115vrh15vs!g15vt15wjh15wk!g15wl15xbh15xc!g15xd15y3h15y4!g15y515yvh15yw!g15yx15znh15zo!g15zp160fh160g!g160h1617h1618!g1619161zh1620!g1621162rh162s!g162t163jh163k!g163l164bh164c!g164d1653h1654!g1655165vh165w!g165x166nh166o!g166p167fh167g!g167h1687h1688!g1689168zh1690!g1691169rh169s!g169t16ajh16ak!g16al16bbh16bc!g16bd16c3h16c4!g16c516cvh16cw!g16cx16dnh16do!g16dp16efh16eg!g16eh16f7h16f8!g16f916fzh16g0!g16g116grh16gs!g16gt16hjh16hk!g16hl16ibh16ic!g16id16j3h16j4!g16j516jvh16jw!g16jx16knh16ko!g16kp16lfh16ls16meW16mj16nvX16o01d6nI1d6o1dkve1dkw1dljI1dlp!U1dlq!A1dlr1dm0U1dm1!I1dm21dmeU1dmg1dmkU1dmm!U1dmo1dmpU1dmr1dmsU1dmu1dn3U1dn41e0tI1e0u!R1e0v!L1e1c1e63I1e64!K1e65!I1e681e6nA1e6o!N1e6p1e6qR1e6r1e6sN1e6t1e6uG1e6v!L1e6w!R1e6x!c1e741e7jA1e7k1e7oe1e7p!L1e7q!R1e7r!L1e7s!R1e7t!L1e7u!R1e7v!L1e7w!R1e7x!L1e7y!R1e7z!L1e80!R1e81!L1e82!R1e83!L1e84!R1e851e86e1e87!L1e88!R1e891e8fe1e8g!R1e8h!e1e8i!R1e8k1e8lY1e8m1e8nG1e8o!e1e8p!L1e8q!R1e8r!L1e8s!R1e8t!L1e8u!R1e8v1e92e1e94!e1e95!J1e96!K1e97!e1e9c1ed8I1edb!d1edd!G1ede1edfe1edg!J1edh!K1edi1edje1edk!L1edl!R1edm1edne1edo!R1edp!e1edq!R1edr1ee1e1ee21ee3Y1ee41ee6e1ee7!G1ee81eeye1eez!L1ef0!e1ef1!R1ef21efue1efv!L1efw!e1efx!R1efy!e1efz!L1eg01eg1R1eg2!L1eg31eg4R1eg5!Y1eg6!e1eg71eggY1egh1ehpe1ehq1ehrY1ehs1eime1eiq1eive1eiy1ej3e1ej61ejbe1eje1ejge1ejk!K1ejl!J1ejm1ejoe1ejp1ejqJ1ejs1ejyI1ek91ekbA1ekc!i1ekd1ereI1erk1ermB1err1eykI1eyl!A1f281f4gI1f4w!A1f4x1f91I1f921f96A1f9c1fa5I1fa7!B1fa81fbjI1fbk!B1fbl1fh9I1fhc1fhlQ1fhs1g7pI1g7r!B1g7s1gd7I1gdb!B1gdc1gjkI1gjl1gjnA1gjp1gjqA1gjw1gjzA1gk01gl1I1gl41gl6A1glb!A1glc1glkI1gls1glzB1gm01gpwI1gpx1gpyA1gq31gq7I1gq81gqdB1gqe!c1gqo1gs5I1gs91gsfB1gsg1h5vI1h5w1h5zA1h681h6hQ1heo1hgpI1hgr1hgsA1hgt!B1hgw1hl1I1hl21hlcA1hld1hpyI1hq81hqaA1hqb1hrrI1hrs1hs6A1hs71hs8B1hs91ht1I1ht21htbQ1htr1htuA1htv1hv3I1hv41hveA1hvf1hvhI1hvi1hvlB1hvx1hwoI1hww1hx5Q1hxc1hxeA1hxf1hyeI1hyf1hysA1hyu1hz3Q1hz41hz7B1hz8!I1hz91hzaA1hzb1i0iI1i0j!A1i0k!I1i0l!T1i0m!I1i0w1i0yA1i0z1i2aI1i2b1i2oA1i2p1i2sI1i2t1i2uB1i2v!I1i2w!B1i2x1i30A1i31!I1i321i33A1i341i3dQ1i3e!I1i3f!T1i3g!I1i3h1i3jB1i3l1i5nI1i5o1i5zA1i601i61B1i62!I1i631i64B1i65!I1i66!A1i801i94I1i95!B1i9c1iamI1ian1iayA1ib41ibdQ1ibk1ibnA1ibp1id5I1id71id8A1id9!I1ida1idgA1idj1idkA1idn1idpA1ids!I1idz!A1ie51ie9I1iea1iebA1iee1iekA1ieo1iesA1iio1ik4I1ik51ikmA1ikn1ikqI1ikr1ikuB1ikv!I1ikw1il5Q1il61il7B1il9!I1ila!A1ilb1injI1ink1io3A1io41io7I1iog1iopQ1itc1iumI1iun1iutA1iuw1iv4A1iv5!T1iv61iv7B1iv81iv9G1iva1ivcI1ivd1ivrB1ivs1ivvI1ivw1ivxA1iww1iy7I1iy81iyoA1iyp1iyqB1iyr1iysI1iz41izdQ1izk1izwT1j0g1j1mI1j1n1j1zA1j20!I1j281j2hQ1j401j57I1j5c1j5lQ1j5m1j5nI1j5o1j5qB1j5r1jcbI1jcc1jcqA1jcr1jhbI1jhc1jhlQ1jhm1jjjI1jjk1jjpA1jjr1jjsA1jjv1jjyA1jjz!I1jk0!A1jk1!I1jk21jk3A1jk41jk6B1jkg1jkpQ1jmo1jo0I1jo11jo7A1joa1jogA1joh!I1joi!T1joj!I1jok!A1jpc!I1jpd1jpmA1jpn1jqqI1jqr1jqxA1jqy!I1jqz1jr2A1jr3!T1jr4!I1jr51jr8B1jr9!T1jra!I1jrb!A1jrk!I1jrl1jrvA1jrw1jt5I1jt61jtlA1jtm1jtoB1jtp!I1jtq1jtsT1jtt1jtuB1juo1k4uI1k4v1k52A1k541k5bA1k5c!I1k5d1k5hB1k5s1k61Q1k621k6kI1k6o!T1k6p!G1k6q1k7jI1k7m1k87A1k891k8mA1kao1kc0I1kc11kc6A1kca!A1kcc1kcdA1kcf1kclA1kcm!I1kcn!A1kcw1kd5Q1kdc1kehI1kei1kemA1keo1kepA1ker1kevA1kew!I1kf41kfdQ1ko01koiI1koj1komA1kon1kv0I1kv11kv4K1kv51kvlI1kvz!B1kw01lriI1lrk1lroB1ls01oifI1oig1oiiL1oij1oilR1oim1ojlI1ojm!R1ojn1ojpI1ojq!L1ojr!R1ojs!L1ojt!R1oju1oqgI1oqh!L1oqi1oqjR1oqk1oviI1ovk1ovqS1ovr!L1ovs!R1s001sctI1scu!L1scv!R1scw1zkuI1zkw1zl5Q1zla1zlbB1zo01zotI1zow1zp0A1zp1!B1zpc1zqnI1zqo1zquA1zqv1zqxB1zqy1zr7I1zr8!B1zr9!I1zrk1zrtQ1zrv20euI20ev20ewB20ex20juI20jz!A20k0!I20k120ljA20lr20luA20lv20m7I20o020o3Y20o4!S20og20ohA20ow25fbe25fk260ve260w26dxI26f426fce2dc02djye2dlc2dleY2dlw2dlzY2dm82dx7e2fpc2ftoI2ftp2ftqA2ftr!B2fts2ftvA2jnk2jxgI2jxh2jxlA2jxm2jxoI2jxp2jyaA2jyb2jycI2jyd2jyjA2jyk2jzdI2jze2jzhA2jzi2k3lI2k3m2k3oA2k3p2l6zI2l722l8fQ2l8g2lmnI2lmo2lo6A2lo72loaI2lob2lpoA2lpp2lpwI2lpx!A2lpy2lqbI2lqc!A2lqd2lqeI2lqf2lqiB2lqj!I2lqz2lr3A2lr52lrjA2mtc2mtiA2mtk2mu0A2mu32mu9A2mub2mucA2mue2muiA2n0g2n1oI2n1s2n1yA2n1z2n25I2n282n2hQ2n2m2ne3I2ne42ne7A2ne82nehQ2nen!J2oe82ojzI2ok02ok6A2olc2on7I2on82oneA2onf!I2onk2ontQ2ony2onzL2p9t2pbfI2pbg!K2pbh2pbjI2pbk!K2pbl2prlI2pz42q67e2q682q6kI2q6l2q6ne2q6o2q98I2q992q9be2q9c2qb0I2qb12qcle2qcm2qdbj2qdc2qo4e2qo5!f2qo62qore2qos2qotI2qou2qpge2qph2qpiI2qpj2qpne2qpo!I2qpp2qpte2qpu2qpwf2qpx2qpye2qpz!f2qq02qq1e2qq22qq4f2qq52qree2qrf2qrjk2qrk2qtde2qte2qtff2qtg2qthe2qti2qtsf2qtt2qude2que2quwf2qux2quze2qv0!f2qv12qv4e2qv52qv7f2qv8!e2qv92qvbf2qvc2qvie2qvj!f2qvk!e2qvl!f2qvm2qvze2qw0!I2qw1!e2qw2!I2qw3!e2qw4!I2qw52qw9e2qwa!f2qwb2qwee2qwf!I2qwg!e2qwh2qwiI2qwj2qyne2qyo2qyuI2qyv2qzae2qzb2qzoI2qzp2r01e2r022r0pI2r0q2r1ve2r1w2r1xf2r1y2r21e2r22!f2r232r2ne2r2o!f2r2p2r2se2r2t2r2uf2r2v2r4je2r4k2r4rI2r4s2r5fe2r5g2r5lI2r5m2r7oe2r7p2r7rf2r7s2r7ue2r7v2r7zf2r802r91I2r922r94H2r952r97Y2r982r9bI2r9c2raae2rab!f2rac2rare2ras2rauf2rav2rb3e2rb4!f2rb52rbfe2rbg!f2rbh2rcve2rcw2rg3I2rg42rgfe2rgg2risI2rit2rjze2rk02rkbI2rkc2rkfe2rkg2rlzI2rm02rm7e2rm82rmhI2rmi2rmne2rmo2rnrI2rns2rnze2ro02rotI2rou2rr3e2rr42rrfI2rrg!f2rrh2rrie2rrj!f2rrk2rrre2rrs2rrzf2rs02rs5e2rs6!f2rs72rsfe2rsg2rspf2rsq2rsre2rss2rsuf2rsv2ruee2ruf!f2rug2rw4e2rw52rw6f2rw7!e2rw82rw9f2rwa!e2rwb!f2rwc2rwse2rwt2rwvf2rww!e2rwx2rx9f2rxa2ry7e2ry82s0jI2s0k2s5be2s5c2sayI2sc02sc9Q2scg2t4te2t4w47p9e47pc5m9pejny9!Ajnz4jo1rAjo5cjobzAl2ionvnhI",k:"387936576242-iejdacrjljds7hf99q0p6eqna8rju3sb.apps.googleusercontent.com",U:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",B:"Cannot extract a file path from a URI with a fragment component",z:"Cannot extract a file path from a URI with a query component",Q:"Cannot extract a non-Windows file path from a file URI with an authority",y:"Cannot fire new event. Controller is already firing an event",I:'E533333333333333333333333333DDDDDDD4333333333333333333334C43333CD53333333333333333333333UEDTE4\x933343333\x933333333333333333333333333D433333333333333333CDDEDDD43333333S5333333333333333333333C333333D533333333333333333333333SUDDDDT5\x9933CD4E333333333333333333333333UEDDDDE433333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333TUUS5CT\x94\x95E3333333333333333333333333333333333333333333333333333333333333333333333SUDD3DUU43533333333333333333C3333333333333w733337333333s3333333w7333333333w33333333333333333333CDDTETE43333ED4S5SE3333C33333D33333333333334E433C3333333C33333333333333333333333333333CETUTDT533333CDDDDDDDDDD3333333343333333D$433333333333333333333333SUDTEE433C34333333333333333333333333333333333333333333333333333333333333333333333333333333TUDDDD3333333333CT5333333333333333333333333333DCEUU3U3U5333343333S5CDDD3CDD333333333333333333333333333333333333333333333333333333333333333333333s73333s33333333333""""""""333333339433333333333333CDDDDDDDDDDDDDDDD3333333CDDDDDDDDDDD\x94DDDDDDDDDDDDDDDDDDDDDDDD33333333DDDDDDDD3333333373s333333333333333333333333333333CDTDDDCTE43C4CD3C333333333333333D3C33333\xee\xee\xed\xee\xee\xee\xee\xee\xee\xee\xee\xee\xee\xee\xee\xee\xed\xee\xee\xee\xee\xee\xee\xee\xee\xee\xee\xee\xee\xee\xed\xee\xee\xee\xee\xee\xee\xee\xee\xee\xee\xee\xee\xee333333\xbb\xbb\xbb\xbb\xbb\xbb\xbb\xbb33\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc<3sww73333swwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww7333swwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww7333333w7333333333333333733333333333333333333333333333sww733333s7333333s3wwwww333333333wwwwwwwwwwwwwwwwwwwwwwwwwwwwgffffffffffffvww7wwwwwwswwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww733333333333333333333333swwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww7333333333333333333333333333333333333333333333333333333333swwwww7333333333333333333333333333333333333333333wwwwwwwwwwwwwwwwwwwww7swwwwwss33373733s33333w33333CT333333333333333EDTETD433333333#\x14"333333333333"""233333373ED4U5UE9333C33333D33333333333333www3333333s73333333333EEDDDCC3DDDDUUUDDDDD3T5333333333333333333333333333CCU3333333333333333333333333333334EDDD33SDD4D5U4333333333C43333333333CDDD9DDD3DCD433333333C433333333333333C433333333333334443SEUCUSE4333D33333C43333333533333CU33333333333333333333333333334EDDDD3CDDDDDDDDDDDDDDDDDDDDDDDDDDD33DDDDDDDDDDDDDDDDDDDDDDDDD33334333333C33333333333DD4DDDDDDD433333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333CSUUUUUUUUUUUUUUUUUUUUUUUUUUU333CD43333333333333333333333333333333333333333433333U3333333333333333333333333UUUUUUTEDDDDD3333C3333333333333333373333333333s333333333333swwwww33w733wwwwwww73333s33333333337swwwwsw73333wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwDD4D33CDDDDDCDDDDDDDDDDDDDDDDD43EDDDTUEUCDDD33333D33333333333333DDCDDDDCDCDD333333333DT33333333333333D5333333333333333333333333333CSUE4333333333333CDDDDDDDD4333333DT33333333333333333333333CUDDUDU3SUSU43333433333333333333333333ET533E3333SDD3U3U4333D43333C43333333333333s733333s33333333333CTE333333333333333333UUUUDDDDUD3333"""""(\x02"""""""""3333333333333333333DDDD333333333333333333333333CDDDD3333C3333T333333333333333333333334343C33333333333SET334333333333DDDDDDDDDDDDDDDDDDDDDD4DDDDDDDD4CDDDC4DD43333333333333333333333333333333333333333333333333C33333333333333333333333333333333333333333333333333333333333333333333333333333333DDD433333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333334333333333333333333333333333333DD3333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333DD433333333333333333333333333333DDD43333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333DDDDDDD533333333333333333333333DDDTTU5D4DD333C433333D333333333333333333333DDD733333s373ss33w7733333ww733333333333ss33333333333333333333333333333ww3333333333333333333333333333wwww33333www33333333333333333333wwww333333333333333wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww333333wwwwwwwwwwwwwwwwwwwwwww7wwwwwswwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww73333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333C4""333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333DD3333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333DDD4333333333333333333333333333333333333333333333333333333DDD4333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333UEDDDTEE43333333333333333333333333333333333333333333333333333CEUDDDE33333333333333333333333333333333333333333333333333CD3DDEDD3333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333EDDDCDDT43333333333333333333333333333333333333333CDDDDDDDDDD4EDDDETD3333333333333333333333333333333333333333333333333333333333333DDD3CC4DDD\x94433333333333333333333333333333333SUUC4UT4333333333333333333333333333333333333333333333333333#"""""""B333DDDDDDD433333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333CED3SDD$"""BDDD4CDDD333333333333333DD33333333333333333333333333333333333333333DEDDDUE333333333333333333333333333CCD3D33CD533333333333333333333333333CESEU3333333333333333333DDDD433333CU33333333333333333333333333334DC44333333333333333333333333333CD4DDDDD33333333333333333333DDD\x95DD333343333DDDUD43333333333333333333\x93\x99\x99IDDDDDDE43333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333CDDDDDDDDDDDDDDDDDDDDDD4CDDDDDDDDDDD33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333CD3333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333433333333333333333333333333333333333333333333333333333333333333333333333333DD4333333333333333333333333333333333333333333333333333333333333333333""""""33D4D33CD43333333333333333333CD3343333333333333333333333333333333333333333333333333333333333333333333333333333333333D33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333CT53333DY333333333333333333333333UDD43UT43333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333D3333333333333333333333333333333333333333D43333333333333333333333333333333333CDDDDD333333333333333333333333CD4333333333333333333333333333333333333333333333333333333333333SUDDDDUDT43333333333343333333333333333333333333333333333333333TEDDTTEETD333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333CUDD3UUDE43333333333333D3333333333333333343333333333SE43CD33333333DD33333C33TEDCSUUU433333333S533333CDDDDDU333333\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa:3\x99\x99\x9933333DDDDD4233333333333333333UTEUS433333333CDCDDDDDDEDDD33433C3E433#"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""BDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD$"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""BDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD$"""""""""""""""2333373r33333333\x93933CDDD4333333333333333CDUUDU53SEUUUD43\xa3\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xba\xbb\xbb\xbb\xbb\xbb\xbb\xbb\xbb\xbb\xbb\xbb\xbb\xbb\xbb\xbb\xbb\xbb\xbb\xbb\xcb\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\f',w:"Error handler must accept one Object or one Object and a StackTrace as arguments, and return a value of the returned future's type",W:"Failed to load network image.\nImage URL: ",l:"Host platform returned null value for non-null return value.",e:"Run test suite including selected node and ancestors",V:"Stream has been disposed.\nAn ImageStream is considered disposed once at least one listener has been added and subsequently all listeners have been removed and no handles are outstanding from the keepAlive method.\nTo resolve this error, maintain at least one listener on the stream, or create an ImageStreamCompleterHandle from the keepAlive method, or create a new stream for the image.",p:"SystemChrome.setApplicationSwitcherDescription",s:"TextInputClient.updateEditingStateWithDeltas",o:"TextInputClient.updateEditingStateWithTag",G:"There was a problem trying to load FontManifest.json",E:"Unable to establish connection on channel.",h:"[:]{1,2}[a-zA-Z_\\-!.?+*=<>&#'][a-zA-Z_\\-!.?+*=<>&#'0-9/;:]*",J:"[^0-9\\n\\t \"'(),.`{}\\[\\]:;][^\\n\\t \"'(),.`{}\\[\\]:;]+|[^0-9\\n\\t \"'(),.`{}\\[\\]:;=]",R:"[a-zA-Z_\\-!.?+*=<>&#'][a-zA-Z_\\-!.?+*=<>&#'0-9/;:]*",Z:"[a-zA-Z_]\\w*[!?=]?|[-+\\x7e]\\@|<<|>>|=~|===?|<=>|[<>]=?|\\*\\*|[-/+%^&*~`|]|\\[\\]=?",g:"\\^[a-zA-Z_\\-!.?+*=<>&#'][a-zA-Z_\\-!.?+*=<>&#'0-9/;:]*",d:"\\b(0[bB]([01]+[01_]+[01]+|[01]+)|0[xX]([a-fA-F0-9]+[a-fA-F0-9_]+[a-fA-F0-9]+|[a-fA-F0-9]+)|(([\\d]+[\\d_]+[\\d]+|[\\d]+)(\\.([\\d]+[\\d_]+[\\d]+|[\\d]+))?|\\.([\\d]+[\\d_]+[\\d]+|[\\d]+))([eE][-+]?\\d+)?)[lLfF]?",a:"\\b(0[xX][a-fA-F0-9_]+[Lln]?|0[oO][0-7_]+[Lln]?|0[bB][01_]+[Lln]?|[0-9][0-9_]*([Lln]|(\\.[0-9_]*)?([eE][-+]?[0-9_]+)?)?)",f:"\\b(\\d(_|\\d)*#\\w+(\\.\\w+)?#([eE][-+]?\\d(_|\\d)*)?|\\d(_|\\d)*(\\.\\d(_|\\d)*)?([eE][-+]?\\d(_|\\d)*)?)",_:"\\b(\\d+#[a-fA-F0-9]+|\\d+(\\.\\d+)?([eE][-+]?\\d+)?)",x:"\\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\\b",M:"\\b(deque|list|queue|stack|vector|map|set|bitset|multiset|multimap|unordered_map|unordered_set|unordered_multiset|unordered_multimap|array)\\s*<",r:"^\\s*[A-Za-z$_][0-9A-Za-z$_]*\\s*=\\s*(\\(.*\\))?\\s*\\B[-=]>",v:"^\\s*[A-Za-z._?][A-Za-z0-9_$#@\\x7e.?]*(:|\\s+label)",L:"https://github.com/Significant-Gravitas/AutoGPT",i:"if else elif endif define undef warning error line pragma _Pragma ifdef ifndef include",ct:"linear-gradient(to right, #dc1c13, #dc1c13)",n:"npm require console print module global window document",aL:"~contains~2~variants~2~contains~1~contains~3",Y:"~contains~2~variants~2~contains~1~contains~4",bk:"~contains~2~variants~2~contains~1~contains~5",ba:"\u1ac4\u2bb8\u411f\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u3f4f\u0814\u32b6\u32b6\u32b6\u32b6\u1f81\u32b6\u32b6\u32b6\u1bbb\u2f6f\u3cc2\u051e\u32b6\u11d3\u079b\u2c12\u3967\u1b18\u18aa\u392b\u414f\u07f1\u2eb5\u1880\u1123\u047a\u1909\u08c6\u1909\u11af\u2f32\u1a19\u04d1\u19c3\u2e6b\u209a\u1298\u1259\u0667\u108e\u1160\u3c49\u116f\u1b03\u12a3\u1f7c\u121b\u2023\u1840\u34b0\u088a\u3c13\u04b6\u32b6\u41af\u41cf\u41ef\u4217\u32b6\u32b6\u32b6\u32b6\u32b6\u3927\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u18d8\u1201\u2e2e\u15be\u0553\u32b6\u3be9\u32b6\u416f\u32b6\u32b6\u32b6\u1a68\u10e5\u2a59\u2c0e\u205e\u2ef3\u1019\u04e9\u1a84\u32b6\u32b6\u3d0f\u32b6\u32b6\u32b6\u3f4f\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u104e\u076a\u32b6\u07bb\u15dc\u32b6\u10ba\u32b6\u32b6\u32b6\u32b6\u32b6\u1a3f\u32b6\u0cf2\u1606\u32b6\u32b6\u32b6\u0877\u32b6\u32b6\u073d\u2139\u0dcb\u0bcb\u09b3\u0bcb\u0fd9\u20f7\u03e3\u32b6\u32b6\u32b6\u32b6\u32b6\u0733\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u041d\u0864\u32b6\u32b6\u32b6\u32b6\u32b6\u3915\u32b6\u3477\u32b6\u3193\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u20be\u32b6\u36b1\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u2120\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u2f80\u36ac\u369a\u32b6\u32b6\u32b6\u32b6\u1b8c\u32b6\u1584\u1947\u1ae4\u3c82\u1986\u03b8\u043a\u1b52\u2e77\u19d9\u32b6\u32b6\u32b6\u3cdf\u090a\u0912\u091a\u0906\u090e\u0916\u091e\u090a\u0912\u091a\u0906\u090e\u0916\u091e\u090a\u0912\u091a\u0906\u090e\u0916\u091e\u090a\u0912\u091a\u0906\u090e\u0916\u091e\u090a\u0912\u091a\u0906\u090e\u0916\u091e\u090a\u0912\u091a\u0906\u090e\u0916\u091e\u090a\u0912\u091a\u0906\u090e\u0916\u091e\u090a\u0912\u091a\u0906\u090e\u0916\u091e\u090a\u0912\u091a\u0906\u090e\u0916\u091e\u090a\u0912\u091a\u0906\u090e\u0916\u091e\u090a\u0912\u091a\u0906\u090e\u0916\u091e\u090a\u0912\u091a\u0906\u090e\u0916\u091e\u090a\u0912\u091a\u0906\u090e\u0916\u091e\u090a\u0912\u091a\u0906\u090e\u0916\u091e\u090a\u0912\u091a\u0906\u090e\u0916\u091e\u090a\u0912\u091a\u0906\u090e\u0916\u091e\u090a\u0912\u091a\u0906\u090e\u0916\u091e\u090a\u0912\u091a\u0906\u090e\u0916\u091e\u090a\u0912\u091a\u0906\u090e\u0916\u091e\u090a\u0912\u091a\u0906\u090e\u0916\u091e\u090a\u0912\u091a\u0906\u090e\u0916\u091e\u090a\u0912\u091a\u0906\u090e\u0916\u091e\u090a\u0912\u091a\u0906\u090e\u0916\u091e\u090a\u0912\u091a\u0906\u090e\u0916\u091e\u090a\u0912\u091a\u0906\u090e\u0916\u093a\u0973\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u3498\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u0834\u32b6\u32b6\u2bb8\u32b6\u32b6\u36ac\u35a6\u32b9\u33d6\u32b6\u32b6\u32b6\u35e5\u24ee\u3847\x00\u0567\u3a12\u2826\u01d4\u2fb3\u29f7\u36f2\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u2bc7\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u1e54\u32b6\u1394\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u2412\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u30b3\u2c62\u3271\u32b6\u32b6\u32b6\u12e3\u32b6\u32b6\u1bf2\u1d44\u2526\u32b6\u2656\u32b6\u32b6\u32b6\u0bcb\u1645\u0a85\u0ddf\u2168\u22af\u09c3\u09c5\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u3f2f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6"} -var t=(function rtii(){var s=A.ab -return{vH:s("aVN"),od:s("br"),pC:s("hw"),so:s("cl"),o:s("cl"),Bs:s("cl"),ph:s("zg"),Gu:s("nl"),s1:s("zk"),wL:s("pP"),vp:s("pQ"),S7:s("zn"),jo:s("a4t"),pR:s("nm"),M1:s("L8"),N2:s("tZ"),Al:s("hx"),RE:s("no"),yr:s("pS"),jj:s("np"),Yd:s("dk"),C4:s("pV"),m_:s("dc"),k:s("ar"),q:s("eS"),Xj:s("aWc"),pI:s("LA"),V4:s("cB"),wY:s("cH"),nz:s("cH"),Dn:s("cH"),vr:s("cH"),gv:s("cH"),fN:s("cH"),Tx:s("cH"),fn:s("cH"),sl:s("cH"),j5:s("cH"),_n:s("cH"),ZQ:s("cH"),zI:s("LD"),d0:s("dI?,cK<@>>"),vg:s("aH"),Fl:s("nv"),w_:s("q2"),ES:s("aWj"),Lh:s("zP"),XY:s("ub"),p1:s("nx"),qo:s("uc"),z7:s("LS"),m6:s("LT"),E_:s("zR"),Bn:s("LU"),wW:s("ny"),S3:s("zS"),BQ:s("zT"),nR:s("zV"),xG:s("uf"),FG:s("ug"),O5:s("ui"),Hz:s("eU"),hP:s("fe"),n8:s("L"),IC:s("hy"),b8:s("c9<@>"),qO:s("q5"),li:s("bG"),eL:s("bG"),fF:s("fs"),Bx:s("uo"),vn:s("up"),T:s("eW"),pU:s("aj>"),d1:s("Mc"),ho:s("A3"),EY:s("nD<@>"),H5:s("aWN"),HY:s("eX"),ip:s("A8"),I7:s("b7N"),Hw:s("fv"),l4:s("aWW"),Uf:s("nF"),uy:s("aX_"),yS:s("nG"),Je:s("b8_"),JX:s("MO"),I:s("iG"),ra:s("b85"),xm:s("hC"),uZ:s("MS>"),Jj:s("aXf"),VF:s("lU"),yN:s("MV"),uL:s("kx"),zk:s("ky"),U2:s("aXH"),Nc:s("uC"),bA:s("nI"),Tu:s("b8"),bi:s("f_"),A0:s("df"),Ee:s("a7<@>"),lU:s("bK"),v:s("ap"),Gt:s("aXR"),m1:s("lY"),IH:s("AC"),S9:s("Nc"),X8:s("Nd"),Q4:s("AE"),Lt:s("cj"),I3:s("aw"),VI:s("bV"),IX:s("i8"),bh:s("qp"),oB:s("qq"),ii:s("uN"),_w:s("m_"),HH:s("m0"),OO:s("i9"),cP:s("qs"),b5:s("qt"),P9:s("m1"),eI:s("qu"),Sm:s("kB"),h3:s("nP"),US:s("hD"),N8:s("AO"),s4:s("aa3"),OE:s("aa4"),mx:s("ds"),l5:s("nR"),zq:s("uX"),ia:s("qC"),VW:s("qD"),FK:s("f0"),jU:s("AZ"),bE:s("ia"),Uy:s("B_"),Nh:s("hE"),_8:s("m7"),qs:s("uZ<~>"),Z9:s("at"),xd:s("at(n,az)"),Ev:s("at()"),L0:s("at<@>"),uz:s("at<~>"),Fp:s("d3"),pl:s("d3"),b4:s("f1"),Lu:s("f1"),Ih:s("f1"),SP:s("NV"),nd:s("d4"),uA:s("cx"),C1:s("cx"),Uv:s("cx"),jn:s("cx"),YC:s("cx"),lG:s("cx"),hg:s("cx

  • "),Qm:s("cx"),UN:s("cx"),ok:s("cx"),ff:s("cx"),Bk:s("cx"),xR:s("qG"),yi:s("kE>"),TX:s("m8"),bT:s("m8>"),x2:s("O3"),Z6:s("nU"),R1:s("O5"),rQ:s("b8q"),op:s("v0<~(nQ)>"),G7:s("O9>"),rA:s("qJ"),mS:s("qK"),AL:s("ib"),YX:s("m9"),zE:s("ah"),gc:s("Oi"),Lk:s("aIY"),Gf:s("nV"),g5:s("B9"),Oh:s("qQ"),oA:s("kF"),J2:s("v7"),dW:s("hH"),SG:s("o0"),Bc:s("o1"),pq:s("fy"),og:s("dl"),WB:s("bb"),dG:s("dY"),U1:s("iK"),Gb:s("me"),JZ:s("adV"),XO:s("adW"),pT:s("adX"),gD:s("o3"),vz:s("bj"),nQ:s("o4"),Ya:s("vg"),JY:s("q<@>"),VG:s("q"),QP:s("w"),Si:s("w"),NS:s("w"),LY:s("w"),Pv:s("w"),vA:s("w"),V:s("w"),G2:s("w"),iW:s("w"),qN:s("w"),AT:s("w"),oR:s("w"),t_:s("w"),td:s("w"),KV:s("w"),ZD:s("w"),HB:s("w"),IF:s("w"),E:s("w"),vl:s("w"),Up:s("w"),zs:s("w"),lX:s("w"),CE:s("w"),bp:s("w"),if:s("w"),z8:s("w"),xU:s("w"),Pt:s("w"),uf:s("w"),kZ:s("w>"),no:s("w"),wQ:s("w>"),Rh:s("w>"),mo:s("w>"),iQ:s("w"),vf:s("w"),Q1:s("w"),om:s("w>"),_B:s("w"),XZ:s("w"),Fa:s("w"),fJ:s("w
    "),VB:s("w"),VO:s("w"),O_:s("w"),xB:s("w"),J:s("w"),K0:s("w"),Li:s("w"),k5:s("w"),cN:s("w"),s9:s("w"),Y4:s("w"),Rv:s("w"),_f:s("w"),ER:s("w"),Y6:s("w"),ry:s("w>"),X_:s("w>"),ko:s("w>"),i1:s("w>"),Zb:s("w>"),Eo:s("w"),ss:s("w"),a9:s("w>"),te:s("w>"),U_:s("w>"),H7:s("w>"),n4:s("w>"),Xr:s("w"),rE:s("w"),zC:s("w"),YE:s("w"),tc:s("w"),f2:s("w"),qF:s("w"),wP:s("w"),D:s("w"),Qg:s("w"),jl:s("w"),yv:s("w"),wi:s("w"),jT:s("w"),g8:s("w>"),EO:s("w"),nx:s("w"),OB:s("w"),zY:s("w"),wc:s("w"),cD:s("w"),Zw:s("w"),UY:s("w"),G:s("w"),Do:s("w>"),kG:s("w"),Co:s("w<+(n,p5)>"),AO:s("w"),Pc:s("w"),Ik:s("w"),xT:s("w"),TT:s("w"),Ry:s("w"),QT:s("w"),VM:s("w"),CK:s("w"),vj:s("w"),ZP:s("w"),D1:s("w"),u1:s("w"),q1:s("w"),QF:s("w"),o4:s("w"),Qo:s("w"),zz:s("w"),fe:s("w"),kO:s("w"),N_:s("w"),Ds:s("w"),Tq:s("w"),LB:s("w"),s:s("w"),oU:s("w"),PL:s("w"),bt:s("w"),y1:s("w"),nk:s("w"),UB:s("w"),iO:s("w"),Lx:s("w"),sD:s("w"),VS:s("w"),fm:s("w"),Ne:s("w"),FO:s("w>>"),q6:s("w>"),LX:s("w"),Dg:s("w"),p:s("w"),GA:s("w"),Na:s("w"),OM:s("w"),vB:s("w"),TV:s("w"),Kj:s("w"),_Y:s("w"),an:s("w"),CZ:s("w"),mz:s("w"),Kx:s("w"),he:s("w"),zj:s("w"),ML:s("w"),m3:s("w"),Ei:s("w"),jE:s("w"),qi:s("w"),uD:s("w"),M6:s("w"),au:s("w"),s6:s("w"),lb:s("w"),YK:s("w"),Z4:s("w"),EM:s("w"),lD:s("w"),PN:s("w"),cR:s("w"),NM:s("w"),HZ:s("w"),B:s("w"),ee:s("w<@>"),t:s("w"),tZ:s("w"),L:s("w"),_:s("w"),JK:s("w"),cA:s("w"),iG:s("w"),ny:s("w?>"),Fi:s("w"),_m:s("w"),_x:s("w"),Z:s("w"),a0:s("w"),Zt:s("w()>"),iM:s("w()>"),sA:s("w"),sQ:s("w<~(qF)?>"),l:s("w<~()>"),g:s("w<~(br)>"),x8:s("w<~(kh)>"),j1:s("w<~(b8)>"),Jh:s("w<~(B)>"),RP:s("bx<@>"),bz:s("Bn"),lT:s("kK"),dC:s("bI<@>"),e:s("f"),sW:s("qT<@>"),Hf:s("fA"),Cl:s("kL"),D2:s("h8"),M2:s("vl"),SQ:s("vm"),LE:s("qW"),bR:s("bB"),NE:s("bB"),ku:s("bB"),hA:s("bB"),C:s("bB>"),Ts:s("bB>"),af:s("bB"),L6:s("fC"),h_:s("OT"),kd:s("em"),rf:s("Bz"),Oz:s("oc"),hz:s("iM"),jQ:s("bX"),w4:s("vo"),cS:s("ie>"),z_:s("r_"),oM:s("r_"),U9:s("kN"),NJ:s("aZ3"),Rk:s("B"),eT:s("B"),pN:s("B"),gS:s("B"),qC:s("B"),YN:s("B"),UX:s("B"),LF:s("B"),I1:s("B"),V1:s("B"),yp:s("B"),D6:s("B"),Tp:s("B"),Xw:s("B"),j:s("B<@>"),Cm:s("B"),W:s("B"),lo:s("B"),I_:s("aa"),f0:s("mk"),da:s("oi"),bd:s("i"),bS:s("aJf"),wf:s("kO"),Wi:s("aY"),tO:s("aY"),UH:s("aY"),DC:s("aY"),q9:s("aY"),sw:s("aY>"),qE:s("aY>"),kY:s("az"),nf:s("az"),GU:s("az"),a:s("az"),_P:s("az"),e3:s("az"),f:s("az<@,@>"),xE:s("az"),pE:s("az"),rr:s("az<~(bn),b6?>"),C9:s("eG"),gH:s("a1"),a4:s("a1"),cj:s("a1"),rB:s("a1"),qn:s("a1"),UA:s("a1>"),Tr:s("a1"),iB:s("aZf"),R:s("r9"),ui:s("cR"),e1:s("bJ"),h9:s("bJ"),Ak:s("bJ"),kU:s("bJ"),xx:s("bJ"),iL:s("bJ"),XL:s("bJ"),QL:s("bJ"),Il:s("bJ"),wG:s("bJ"),Oc:s("ra"),xV:s("b6"),w:s("re"),Pw:s("kQ"),n:s("cS"),xS:s("ig"),Pb:s("cT"),ZA:s("C2"),_h:s("kR"),Wz:s("iP"),Lb:s("eo"),Mw:s("ii"),aG:s("jC"),jW:s("on"),A4:s("ik"),u9:s("ri"),JS:s("oo"),uK:s("jE"),SK:s("vE"),We:s("mm"),_A:s("bT"),lk:s("kS"),S5:s("aP"),Jd:s("eH"),Tm:s("eH"),ji:s("eH"),WA:s("eH"),kj:s("eH"),Te:s("a0"),P:s("b1"),K:s("O"),xA:s("O(o)"),_a:s("O(o{params:O?})"),yw:s("b7"),fy:s("b7<~()>"),d:s("b7<~(br)>"),jc:s("b7<~(kh)>"),EP:s("k"),gY:s("kU"),o0:s("Cq"),BR:s("aZE"),Ms:s("mo"),N1:s("vJ"),Mf:s("vK"),sd:s("aDQ"),Q2:s("vL"),Fw:s("dZ"),IL:s("dZ"),ke:s("vO"),zM:s("ep"),on:s("CF"),ix:s("dM"),v3:s("r"),IK:s("jI"),YS:s("mr"),DF:s("vT"),sv:s("CM"),mX:s("vW"),qa:s("b90"),ge:s("rq"),Ko:s("rr"),F:s("l_"),pY:s("mu"),qL:s("bn"),GG:s("b91"),XA:s("mv"),n2:s("rt"),WQ:s("ru"),w5:s("mw"),DB:s("rv"),PB:s("rw"),RH:s("rx"),Mj:s("ry"),xb:s("rz"),ks:s("fF"),oN:s("rA"),iX:s("vY"),xF:s("b_2"),bb:s("w4"),C0:s("b_d"),yH:s("aU"),jV:s("wa"),pK:s("b99"),Rp:s("+()"),BZ:s("+(n,f0?)"),YT:s("y"),Bb:s("ip"),Qz:s("oD"),MY:s("D5"),NW:s("D6"),x:s("A"),DW:s("rF"),Ro:s("De"),I9:s("t"),Cg:s("rG"),F5:s("an"),GM:s("aD"),Wx:s("mz"),nl:s("dn"),Ss:s("wf"),Jc:s("wh"),Cn:s("wi"),dw:s("Dq"),E1:s("Dr"),UM:s("jL"),Wd:s("oG"),Gg:s("fG"),dZ:s("Du"),yb:s("dN"),z4:s("dO"),k2:s("Dx"),MV:s("bN"),o_:s("bN"),Yc:s("oJ"),oj:s("wm"),pO:s("cK<@>(S,O?)"),Sv:s("rO"),nY:s("b_y"),BL:s("b_y"),Np:s("wn"),MF:s("wp"),JE:s("DI"),Cz:s("DJ"),FS:s("DN"),gt:s("mC"),sm:s("wt"),NF:s("b_F"),qd:s("b9g"),hI:s("b9h"),x9:s("eJ"),NZ:s("mF"),mb:s("rT"),Wu:s("ww"),_S:s("dp"),ZX:s("jQ"),bu:s("cL"),UF:s("rW"),g3:s("jR"),HS:s("oO"),hh:s("ca"),VA:s("hN"),RY:s("cp"),jH:s("oQ"),cZ:s("wB"),Oy:s("l7"),Vz:s("wC"),yE:s("b9q"),m5:s("E7"),Mp:s("b2"),k7:s("fI"),FW:s("Q"),RX:s("l8"),LM:s("jS"),Ws:s("Ed"),r:s("oR"),Xp:s("oS"),dq:s("wG"),U:s("l9"),M0:s("wH"),jB:s("oT"),y3:s("jT"),D_:s("mJ"),Q:s("e2"),Km:s("d9"),cG:s("SU"),MG:s("hQ"),d2:s("a5"),Iz:s("ak"),dJ:s("wM"),fZ:s("Eu"),ZE:s("wN"),N:s("n"),Vc:s("b0h"),NC:s("iZ"),Q_:s("oV"),tz:s("Ez"),Vh:s("wR"),Ci:s("oW"),ky:s("wS"),IP:s("aI"),OJ:s("b0m"),WT:s("cW"),u4:s("cW"),re:s("cW>"),az:s("cW"),Q6:s("cW
      "),Ow:s("cW"),E8:s("cW"),d9:s("cW"),hr:s("cW"),b6:s("cW<~>"),ZC:s("oX"),lu:s("lf"),On:s("ED"),o3:s("lg"),PA:s("EE"),CL:s("fK"),Qd:s("t4"),oh:s("Tl"),Sg:s("oZ"),Wm:s("t5"),aW:s("wX"),S6:s("is"),_0:s("EP"),Pj:s("b0w"),mi:s("Ty"),ot:s("j0"),qY:s("jW"),bZ:s("b0D"),AS:s("hn"),em:s("v"),we:s("j1"),ZM:s("t8"),ZF:s("ll>"),Ag:s("ll<@>"),qe:s("TJ"),b:s("fL"),U4:s("b0T"),bq:s("te"),zW:s("cN"),kS:s("hT"),Ni:s("ay"),qU:s("ay"),Y:s("ay"),A:s("hU"),ns:s("mM"),e2:s("dF"),w7:s("apT"),rd:s("xb"),Po:s("apU"),H3:s("fM"),pm:s("xc"),MX:s("mO"),O:s("da"),gA:s("fn"),kk:s("lm"),lQ:s("Fm"),G5:s("mQ"),gU:s("j2"),Xu:s("xi"),RK:s("Fp"),Rq:s("p7"),L3:s("xk"),TN:s("xj"),ev:s("ln"),xc:s("et"),kK:s("et"),Nf:s("et<@>"),GY:s("hq"),Oo:s("Ft"),rS:s("hW"),X3:s("mR"),Hd:s("aL"),FI:s("hr"),ZK:s("hr"),Ri:s("hr"),ow:s("hr"),kE:s("hr<~(O,d9?)>"),r7:s("hr<~(kF)>"),Pi:s("xm"),l7:s("h"),a7:s("xn"),X5:s("fO"),Uh:s("Fw"),BJ:s("p9"),oL:s("lq"),Qy:s("lr"),L1:s("Fy"),uS:s("dG"),Qh:s("dG"),Cy:s("dG>"),zr:s("dG<@>"),io:s("dG"),Vr:s("dG"),Tv:s("dG"),J6:s("dG"),h8:s("b3"),xs:s("b3"),XX:s("b3"),Iy:s("b3"),FL:s("b3"),gI:s("b3"),VY:s("b3"),zh:s("b3<@>"),yB:s("b3"),F0:s("b3"),h:s("b3<~>"),IS:s("xw"),BY:s("b1l"),ZW:s("tn"),B6:s("FO"),A3:s("eN"),bY:s("Ge"),TC:s("to"),uC:s("fa"),dA:s("mU"),Fb:s("mU"),Uz:s("mU"),UJ:s("Wf"),qr:s("eO"),zZ:s("mW"),l3:s("Gt"),rF:s("Gw"),Wt:s("tq"),fg:s("pf"),Eh:s("GF"),fk:s("xN"),h1:s("xP"),Lv:s("ae"),qc:s("ae"),gO:s("ae"),Gl:s("ae"),EW:s("ae"),aP:s("ae"),tq:s("ae"),LR:s("ae<@>"),wJ:s("ae"),gg:s("ae"),X6:s("ae"),c:s("ae<~>"),cK:s("xR"),Qu:s("mX"),U3:s("xU"),UR:s("fP"),R9:s("pg"),Fy:s("xW"),WD:s("GV"),Nr:s("GX"),pp:s("hs"),oc:s("H5"),YL:s("tx"),cB:s("k3"),Sx:s("pi"),pt:s("y3"),Gk:s("Hd"),PJ:s("y4"),h2:s("dy"),bN:s("dy"),Le:s("dy"),pj:s("dy"),_s:s("dy"),Fe:s("Hr"),xg:s("Yo"),p6:s("pk"),Fn:s("pl"),ai:s("pm"),Vl:s("pn"),KJ:s("mY"),eU:s("ye"),sZ:s("HG"),Sc:s("YS"),y2:s("tz"),mm:s("yh"),c_:s("HK"),h7:s("lu"),zP:s("ee"),ri:s("HO"),l0:s("tA"),Lj:s("pq"),zd:s("HU"),SN:s("HY"),xL:s("yl"),im:s("pr"),Am:s("tB"),Ez:s("k7"),Pu:s("Ic"),yd:s("Ii"),jF:s("Ik"),kT:s("a_P"),S8:s("IJ"),c6:s("tF"),me:s("pt"),bm:s("iy"),HE:s("yx"),f1:s("J1"),i9:s("yA"),tH:s("b2b"),Wp:s("Jf"),Wo:s("iz"),_l:s("Jk"),ps:s("Jl"),DH:s("a1I"),y:s("J"),i:s("Z"),z:s("@"),C_:s("@(O)"),Hg:s("@(O,d9)"),S:s("o"),s5:s("0&*"),ub:s("O*"),ZU:s("nj?"),tX:s("a4M?"),m2:s("zs?"),VC:s("lK?"),Vx:s("d1?"),sa:s("fr?"),eJ:s("pW?"),oI:s("bk?"),YY:s("pY?"),ls:s("ns?"),CD:s("cB?"),eQ:s("uc?"),MB:s("aCA?"),L5:s("a68?"),JG:s("uf?"),cW:s("a6a?"),eG:s("ug?"),GB:s("a6b?"),VX:s("ui?"),VD:s("q3?"),m:s("L?"),YJ:s("hy?"),ms:s("lT?"),V2:s("iG?"),pc:s("df?"),Om:s("lX?"),Dv:s("ap?"),fd:s("AD?"),pk:s("ds?"),RC:s("AV?"),U5:s("f0?"),ZY:s("at?"),eS:s("O0?"),z1:s("h6?"),o9:s("f2?"),_I:s("qK?"),gx:s("jw?"),lF:s("d6?"),Pr:s("o2?"),Ef:s("iK?"),LO:s("h8?"),Xb:s("B?"),EZ:s("B?"),kc:s("B<@>?"),wh:s("B?"),y6:s("i?"),qA:s("hL?"),nA:s("az?"),Xx:s("az<@,@>?"),XF:s("az?"),J1:s("az?"),iD:s("b6?"),ka:s("rc?"),AW:s("cS?"),WV:s("cT?"),X:s("O?"),Ff:s("ah1?"),sH:s("kU?"),Zr:s("ah2?"),KX:s("e8?"),uR:s("jH?"),xO:s("ro?"),CY:s("CA?"),Cp:s("CB?"),p7:s("CC?"),Gr:s("CD?"),Ll:s("CE?"),zN:s("CG?"),mc:s("dM?"),wb:s("CH?"),z5:s("jI?"),Ku:s("vT?"),Qv:s("A?"),CA:s("rF?"),p2:s("b9?"),NT:s("oF?"),ym:s("mz?"),IT:s("dn?"),_N:s("ws?"),LQ:s("cL?"),M9:s("alw?"),uv:s("E2?"),Zi:s("cp?"),TZ:s("rY?"),pg:s("hf?"),tW:s("Q?"),MR:s("l9?"),lE:s("hQ?"),u:s("n?"),aE:s("wR?"),f3:s("hS?"),p8:s("v?"),Dh:s("t7?"),qf:s("TQ?"),zV:s("te?"),ir:s("ay?"),nc:s("fM?"),Z0:s("Fp?"),HA:s("e3?"),Wn:s("k_?"),Xk:s("fP?"),Ej:s("pm?"),An:s("yd?"),av:s("HH?"),Kp:s("pq?"),gW:s("pr?"),JI:s("a0w<@>?"),X7:s("J?"),PM:s("Z?"),bo:s("o?"),Nw:s("~()?"),Jy:s("cc"),H:s("~"),M:s("~()"),Vu:s("~(b8)"),Su:s("~(nQ)"),xt:s("~(B)"),lO:s("~(O)"),hK:s("~(O,d9)"),Ld:s("~(bn)"),iS:s("~(jK)"),HT:s("~(O?)")}})();(function constants(){var s=hunkHelpers.makeConstList -B.lL=A.pV.prototype -B.Ei=A.qa.prototype -B.FO=A.nV.prototype -B.GH=J.vh.prototype -B.b=J.w.prototype -B.e1=J.Bl.prototype -B.h=J.vj.prototype -B.d=J.o6.prototype -B.c=J.mf.prototype -B.GU=J.kK.prototype -B.GV=J.f.prototype -B.H4=A.BB.prototype -B.k0=A.C7.prototype -B.h9=A.C8.prototype -B.er=A.C9.prototype -B.es=A.Ca.prototype -B.k1=A.Cc.prototype -B.P=A.ri.prototype -B.xZ=J.QT.prototype -B.NW=A.DG.prototype -B.PC=A.Et.prototype -B.zh=A.EF.prototype -B.l1=J.lm.prototype -B.W9=A.p9.prototype -B.Xo=new A.a3S(0,"unknown") -B.lu=new A.fY(0,1) -B.lv=new A.fY(0,-1) -B.Xp=new A.fY(1,0) -B.At=new A.fY(1,-1) -B.ig=new A.fY(-1,0) -B.bR=new A.fY(-1,-1) -B.a0=new A.eB(0,0) -B.lw=new A.eB(0,1) -B.Au=new A.eB(0,-1) -B.dE=new A.eB(1,0) -B.cy=new A.eB(-1,0) -B.cX=new A.eB(-1,-1) -B.lx=new A.z0(null) -B.Av=new A.KL(0,"stretch") -B.ih=new A.KL(1,"glow") -B.Aw=new A.KO(0,"normal") -B.Ax=new A.KO(1,"preserve") -B.H=new A.kh(0,"dismissed") -B.aM=new A.kh(1,"forward") -B.aN=new A.kh(2,"reverse") -B.W=new A.kh(3,"completed") -B.ii=new A.KR(0,"agent") -B.ij=new A.KR(1,"benchmark") -B.Ay=new A.tU(null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) -B.ly=new A.zk(0,"exit") -B.lz=new A.zk(1,"cancel") -B.f4=new A.ki(0,"detached") -B.ik=new A.ki(1,"resumed") -B.lA=new A.ki(2,"inactive") -B.lB=new A.ki(3,"hidden") -B.il=new A.ki(4,"paused") -B.lC=new A.KV(!1,127) -B.lD=new A.KW(127) -B.im=new A.zm(0,"polite") -B.io=new A.zm(1,"assertive") -B.cm=A.b(s([]),t.s) -B.l=new A.EO(1,"downstream") -B.eS=new A.hm(-1,-1,B.l,!1,-1,-1) -B.b7=new A.cb(-1,-1) -B.zt=new A.dg("",B.eS,B.b7) -B.lE=new A.zq(!1,"",B.cm,B.zt,null) -B.X=new A.tY(0,"up") -B.cY=new A.tY(1,"right") -B.U=new A.tY(2,"down") -B.c8=new A.tY(3,"left") -B.aC=new A.Lb(0,"horizontal") -B.aq=new A.Lb(1,"vertical") -B.Az=new A.Ld(null) -B.AA=new A.Lc(B.Az,null,null,null) -B.AB=new A.zt(null,null,null,null,null,null,null,null) -B.iv=new A.amP() -B.AC=new A.hx("flutter/lifecycle",B.iv,null,A.ab("hx")) -B.cz=new A.ae9() -B.AD=new A.hx("flutter/system",B.cz,null,t.Al) -B.az=new A.Er() -B.lF=new A.hx("flutter/accessibility",B.az,null,t.Al) -B.AE=new A.hx("flutter/keyevent",B.cz,null,t.Al) -B.lG=new A.pS(0,"notStarted") -B.lH=new A.pS(1,"inProgress") -B.lI=new A.pS(2,"success") -B.lJ=new A.pS(3,"failure") -B.fF=new A.uY(2,"previous") -B.AF=new A.pT(null,B.fF,0,0) -B.ip=new A.pU(13,"modulate") -B.lK=new A.pU(20,"hardLight") -B.AG=new A.pU(26,"saturation") -B.cZ=new A.pU(3,"srcOver") -B.AH=new A.pU(5,"srcIn") -B.y=new A.a58(0,"normal") -B.L=new A.bc(0,0) -B.am=new A.dc(B.L,B.L,B.L,B.L) -B.cO=new A.bc(4,4) -B.lN=new A.dc(B.cO,B.cO,B.L,B.L) -B.cr=new A.bc(2,2) -B.f6=new A.dc(B.cr,B.cr,B.cr,B.cr) -B.f5=new A.dc(B.cO,B.cO,B.cO,B.cO) -B.hp=new A.bc(7,7) -B.lM=new A.dc(B.hp,B.hp,B.hp,B.hp) -B.dq=new A.bc(8,8) -B.iq=new A.dc(B.dq,B.dq,B.dq,B.dq) -B.hn=new A.bc(40,40) -B.AI=new A.dc(B.hn,B.hn,B.hn,B.hn) -B.ho=new A.bc(60,50) -B.AJ=new A.dc(B.ho,B.ho,B.ho,B.ho) -B.E2=new A.L(4293454056) -B.I=new A.Lt(1,"solid") -B.AL=new A.bk(B.E2,1,B.I,-1) -B.E_=new A.L(4293128957) -B.mG=new A.L(4290502395) -B.DQ=new A.L(4287679225) -B.DN=new A.L(4284790262) -B.DJ=new A.L(4282557941) -B.DF=new A.L(4280391411) -B.DE=new A.L(4280191205) -B.DC=new A.L(4279858898) -B.DB=new A.L(4279592384) -B.DA=new A.L(4279060385) -B.KV=new A.d3([50,B.E_,100,B.mG,200,B.DQ,300,B.DN,400,B.DJ,500,B.DF,600,B.DE,700,B.DC,800,B.DB,900,B.DA],t.pl) -B.c_=new A.r8(B.KV,4280391411) -B.AN=new A.bk(B.c_,2,B.I,-1) -B.k=new A.L(4278190080) -B.d_=new A.Lt(0,"none") -B.n=new A.bk(B.k,0,B.d_,-1) -B.C=new A.L(0) -B.lO=new A.bk(B.C,2,B.I,-1) -B.lP=new A.bk(B.k,1,B.I,-1) -B.AP=new A.bk(B.k,2,B.I,-1) -B.AQ=new A.bk(B.k,0.5,B.I,-1) -B.dK=new A.L(1291845632) -B.fl=new A.L(687865856) -B.Eo=new A.cs(B.dK,null,null,B.dK,B.fl,B.dK,B.fl,B.dK,B.fl,B.dK,B.fl,0) -B.AM=new A.bk(B.Eo,0,B.I,-1) -B.AS=new A.d1(B.AM,B.n,B.n,B.n) -B.ir=new A.d1(B.n,B.n,B.n,B.n) -B.AT=new A.zx(null,null,null,null,null,null,null) -B.AW=new A.zz(null,null,null,null,null,null,null,null,null,null,null,null,null,null) -B.AX=new A.zA(null,null,null,null,null,null,null,null,null,null,null,null,null) -B.NX=new A.S5(0,"normal") -B.ke=new A.R7(null) -B.AY=new A.zB(B.NX,B.ke) -B.ye=new A.S5(1,"fast") -B.AZ=new A.zB(B.ye,B.ke) -B.B_=new A.ar(40,40,40,40) -B.B0=new A.ar(56,56,56,56) -B.B1=new A.ar(59,59,39,39) -B.B2=new A.ar(96,96,96,96) -B.lQ=new A.ar(1/0,1/0,1/0,1/0) -B.B3=new A.ar(0,1/0,48,48) -B.B4=new A.ar(0,1/0,50,400) -B.B5=new A.ar(112,280,0,1/0) -B.dF=new A.ar(0,1/0,0,1/0) -B.B6=new A.ar(280,1/0,0,1/0) -B.B8=new A.ar(36,1/0,36,1/0) -B.B7=new A.ar(0,1/0,48,1/0) -B.lR=new A.ar(48,1/0,48,1/0) -B.lS=new A.ar(0,1/0,50,1/0) -B.D=new A.Lx(0,"rectangle") -B.B9=new A.bM(null,null,null,null,null,null,B.D) -B.Dg=new A.L(1006632960) -B.ul=new A.k(0,4) -B.Bm=new A.bv(0.5,B.y,B.Dg,B.ul,10) -B.J7=A.b(s([B.Bm]),t.V) -B.Ba=new A.bM(null,null,null,B.iq,B.J7,null,B.D) -B.cd=new A.L(4290624957) -B.AO=new A.bk(B.cd,0,B.I,-1) -B.AR=new A.d1(B.n,B.n,B.AO,B.n) -B.Bb=new A.bM(null,null,B.AR,null,null,null,B.D) -B.Bc=new A.a5b(6,"scaleDown") -B.d0=new A.Lv(0,"tight") -B.lT=new A.Lv(5,"strut") -B.lU=new A.Lx(1,"circle") -B.c9=new A.a5c(0,"tight") -B.Y=new A.u1(0,"dark") -B.an=new A.u1(1,"light") -B.ca=new A.zD(0,"blink") -B.M=new A.zD(1,"webkit") -B.bz=new A.zD(2,"firefox") -B.BM=new A.a5p(1,"padded") -B.BN=new A.zE(null,null,null,null,null,null,null,null,null) -B.BO=new A.a5r(0,"normal") -B.CX=new A.Gy(A.ab("Gy>")) -B.BP=new A.u4(B.CX) -B.lV=new A.me(A.aOD(),t.Gb) -B.BQ=new A.me(A.aOD(),A.ab("me")) -B.BR=new A.me(A.b6s(),t.Gb) -B.BS=new A.a3W() -B.ba=new A.KU() -B.BU=new A.Lj() -B.is=new A.Lh() -B.it=new A.Li() -B.BV=new A.Lr() -B.lW=new A.a5k() -B.BW=new A.zZ() -B.BX=new A.a6U() -B.BY=new A.Mz() -B.Xq=new A.MA(A.ab("MA<0&>")) -B.BZ=new A.MB() -B.Xr=new A.ME(A.ab("ME<@>")) -B.C_=new A.MF() -B.t=new A.Aj() -B.C0=new A.a7F() -B.C1=new A.a8I() -B.C2=new A.AA() -B.C3=new A.h1(A.ab("h1")) -B.C4=new A.h1(A.ab("h1")) -B.C5=new A.h1(A.ab("h1")) -B.iu=new A.N5(A.ab("N5<0&>")) -B.C6=new A.N8() -B.ay=new A.N8() -B.C7=new A.a9b() -B.C8=new A.Nn() -B.m_=new A.NB() -B.f7=new A.NE() -B.C9=new A.AX() -B.Ca=new A.NP() -B.Xs=new A.NY() -B.Cb=new A.abl() -B.Cc=new A.abQ() -B.Cd=new A.O8() -B.Ce=new A.Oe() -B.Cf=new A.Og() -B.no=new A.AQ(1,"auto") -B.Cg=new A.Bh() -B.a9=new A.ae8() -B.aV=new A.aea() -B.m0=function getTagFallback(o) { - var s = Object.prototype.toString.call(o); - return s.substring(8, s.length - 1); -} -B.Ch=function() { - var toStringFunction = Object.prototype.toString; - function getTag(o) { - var s = toStringFunction.call(o); - return s.substring(8, s.length - 1); - } - function getUnknownTag(object, tag) { - if (/^HTML[A-Z].*Element$/.test(tag)) { - var name = toStringFunction.call(object); - if (name == "[object Object]") return null; - return "HTMLElement"; - } - } - function getUnknownTagGenericBrowser(object, tag) { - if (self.HTMLElement && object instanceof HTMLElement) return "HTMLElement"; - return getUnknownTag(object, tag); - } - function prototypeForTag(tag) { - if (typeof window == "undefined") return null; - if (typeof window[tag] == "undefined") return null; - var constructor = window[tag]; - if (typeof constructor != "function") return null; - return constructor.prototype; - } - function discriminator(tag) { return null; } - var isBrowser = typeof navigator == "object"; - return { - getTag: getTag, - getUnknownTag: isBrowser ? getUnknownTagGenericBrowser : getUnknownTag, - prototypeForTag: prototypeForTag, - discriminator: discriminator }; -} -B.Cm=function(getTagFallback) { - return function(hooks) { - if (typeof navigator != "object") return hooks; - var ua = navigator.userAgent; - if (ua.indexOf("DumpRenderTree") >= 0) return hooks; - if (ua.indexOf("Chrome") >= 0) { - function confirm(p) { - return typeof window == "object" && window[p] && window[p].name == p; - } - if (confirm("Window") && confirm("HTMLElement")) return hooks; - } - hooks.getTag = getTagFallback; - }; -} -B.Ci=function(hooks) { - if (typeof dartExperimentalFixupGetTag != "function") return hooks; - hooks.getTag = dartExperimentalFixupGetTag(hooks.getTag); -} -B.Cj=function(hooks) { - var getTag = hooks.getTag; - var prototypeForTag = hooks.prototypeForTag; - function getTagFixed(o) { - var tag = getTag(o); - if (tag == "Document") { - if (!!o.xmlVersion) return "!Document"; - return "!HTMLDocument"; - } - return tag; - } - function prototypeForTagFixed(tag) { - if (tag == "Document") return null; - return prototypeForTag(tag); - } - hooks.getTag = getTagFixed; - hooks.prototypeForTag = prototypeForTagFixed; -} -B.Cl=function(hooks) { - var userAgent = typeof navigator == "object" ? navigator.userAgent : ""; - if (userAgent.indexOf("Firefox") == -1) return hooks; - var getTag = hooks.getTag; - var quickMap = { - "BeforeUnloadEvent": "Event", - "DataTransfer": "Clipboard", - "GeoGeolocation": "Geolocation", - "Location": "!Location", - "WorkerMessageEvent": "MessageEvent", - "XMLDocument": "!Document"}; - function getTagFirefox(o) { - var tag = getTag(o); - return quickMap[tag] || tag; - } - hooks.getTag = getTagFirefox; -} -B.Ck=function(hooks) { - var userAgent = typeof navigator == "object" ? navigator.userAgent : ""; - if (userAgent.indexOf("Trident/") == -1) return hooks; - var getTag = hooks.getTag; - var quickMap = { - "BeforeUnloadEvent": "Event", - "DataTransfer": "Clipboard", - "HTMLDDElement": "HTMLElement", - "HTMLDTElement": "HTMLElement", - "HTMLPhraseElement": "HTMLElement", - "Position": "Geoposition" - }; - function getTagIE(o) { - var tag = getTag(o); - var newTag = quickMap[tag]; - if (newTag) return newTag; - if (tag == "Object") { - if (window.DataView && (o instanceof window.DataView)) return "DataView"; - } - return tag; - } - function prototypeForTagIE(tag) { - var constructor = window[tag]; - if (constructor == null) return null; - return constructor.prototype; - } - hooks.getTag = getTagIE; - hooks.prototypeForTag = prototypeForTagIE; -} -B.m1=function(hooks) { return hooks; } - -B.ar=new A.OG() -B.bb=new A.OP() -B.Cn=new A.aeK() -B.Co=new A.BC() -B.m2=new A.Pc(A.ab("Pc<@,@>")) -B.Cp=new A.afr() -B.Cq=new A.PK() -B.Cr=new A.agP() -B.Cs=new A.agR() -B.m4=new A.agT() -B.Ct=new A.agY() -B.dG=new A.O() -B.Cu=new A.Cr() -B.Cv=new A.Cs() -B.Cw=new A.Q5() -B.aY=new A.ea(0,"android") -B.aL=new A.ea(2,"iOS") -B.c3=new A.ea(4,"macOS") -B.md=new A.Um() -B.lY=new A.Mk() -B.h6=new A.d3([B.aY,B.md,B.aL,B.lY,B.c3,B.lY],A.ab("d3")) -B.Cx=new A.Q8() -B.Cy=new A.Qn() -B.m5=new A.Cw() -B.Cz=new A.vN() -B.a8=new A.iU(4,"keyboard") -B.m6=new A.or() -B.CA=new A.ahu() -B.Xt=new A.ahW() -B.CB=new A.ai4() -B.m8=new A.oC() -B.CD=new A.S3() -B.CE=new A.akU() -B.m9=new A.mE() -B.CF=new A.alq() -B.a=new A.alr() -B.CG=new A.E1() -B.cb=new A.amu() -B.d1=new A.amx() -B.b0=new A.amy() -B.CH=new A.Td() -B.CI=new A.aoz() -B.CJ=new A.aoF() -B.CK=new A.aoG() -B.CL=new A.aoH() -B.CM=new A.aoL() -B.CN=new A.aoN() -B.CO=new A.aoO() -B.CP=new A.aoP() -B.ma=new A.p2() -B.mb=new A.p3() -B.CQ=new A.Fn() -B.CR=new A.Fo() -B.CS=new A.aq1() -B.A=new A.U8() -B.d2=new A.Fr() -B.u=new A.y(0,0,0,0) -B.eU=new A.Uf(0,0,0,0) -B.IE=A.b(s([]),A.ab("w")) -B.mc=new A.Ue() -B.aW={} -B.Lc=new A.bG(B.aW,[],t.li) -B.Xu=new A.aqi() -B.dH=new A.Uv() -B.bS=new A.Uw() -B.CT=new A.FY(A.ab("FY")) -B.CU=new A.VO() -B.cc=new A.W2() -B.CV=new A.asR() -B.CW=new A.asV() -B.Xv=new A.Gf() -B.bp=new A.W9() -B.dI=new A.at4() -B.me=new A.ati() -B.f9=new A.atq() -B.mf=new A.atr() -B.iw=new A.aup() -B.CY=new A.auq() -B.B=new A.Ha() -B.CZ=new A.Y6() -B.bq=new A.avF() -B.mg=new A.awI() -B.as=new A.awM() -B.D_=new A.ax5() -B.D0=new A.a0f() -B.D1=new A.a1J() -B.ix=new A.a5t(0,"pixel") -B.D5=new A.zG(null,null,null,null,null,null,null) -B.Un=new A.dP("Continuous Mode Steps",null,null,null,null,null,null,null,null) -B.D6=new A.q1(B.a0,null,null,B.Un,null) -B.D8=new A.u7(null,null,null,null,null,null,null,null,null) -B.D9=new A.zM(null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) -B.iy=new A.ej(0,B.n) -B.XM=new A.aqv(0,"material") -B.Da=new A.u9(4,null,null,null,null,null,null,null) -B.Db=new A.zU(B.ke) -B.Dc=new A.zU(null) -B.O9=new A.DW(2,"clear") -B.Dd=new A.zV(B.O9) -B.De=new A.LW(0,"difference") -B.d3=new A.LW(1,"intersect") -B.m=new A.ud(0,"none") -B.S=new A.ud(1,"hardEdge") -B.cA=new A.ud(2,"antiAlias") -B.d4=new A.ud(3,"antiAliasWithSaveLayer") -B.iz=new A.uj(0,"pasteable") -B.dJ=new A.uj(1,"unknown") -B.Df=new A.uj(2,"notPasteable") -B.mi=new A.L(1087163596) -B.Dh=new A.L(1308622847) -B.Di=new A.L(134217728) -B.Dj=new A.L(1375731712) -B.Dk=new A.L(144613022) -B.Dl=new A.L(1627389952) -B.Dm=new A.L(1660944383) -B.mp=new A.L(16777215) -B.mq=new A.L(167772160) -B.iC=new A.L(1723645116) -B.Dn=new A.L(1724434632) -B.fa=new A.L(1929379840) -B.Do=new A.L(2155905152) -B.O=new A.L(2315255808) -B.Dp=new A.L(234881023) -B.Dr=new A.L(2583691263) -B.E=new A.L(3019898879) -B.J=new A.L(3707764736) -B.Dt=new A.L(402653184) -B.Du=new A.L(4039164096) -B.ff=new A.L(4278221567) -B.Dz=new A.L(4278813951) -B.fg=new A.L(4279404423) -B.dP=new A.L(4280032286) -B.mx=new A.L(4280361249) -B.iE=new A.L(4281348144) -B.mB=new A.L(4282006076) -B.bT=new A.L(4282532418) -B.dQ=new A.L(4284572001) -B.mD=new A.L(4284809178) -B.mE=new A.L(4288585374) -B.mF=new A.L(4289480806) -B.mH=new A.L(4291940822) -B.iH=new A.L(4292030255) -B.fj=new A.L(4292927712) -B.iI=new A.L(4293848814) -B.fk=new A.L(4294111991) -B.mI=new A.L(4294309365) -B.iJ=new A.L(4294638330) -B.j=new A.L(4294967295) -B.Ec=new A.L(436207616) -B.iK=new A.L(452984831) -B.bc=new A.L(520093696) -B.Ed=new A.L(536870911) -B.Eg=new A.L(83886080) -B.iM=new A.um(0,"none") -B.fm=new A.um(1,"waiting") -B.mL=new A.um(2,"active") -B.fn=new A.um(3,"done") -B.mM=new A.q7(0,"cut") -B.mN=new A.q7(1,"copy") -B.mO=new A.q7(2,"paste") -B.mP=new A.q7(3,"selectAll") -B.Eh=new A.q7(5,"liveTextInput") -B.Xw=new A.a6A(4,"Average") -B.mQ=new A.ko(!1) -B.mR=new A.ko(!0) -B.iN=new A.q9(0,"start") -B.mS=new A.q9(1,"end") -B.v=new A.q9(2,"center") -B.iO=new A.q9(3,"stretch") -B.fo=new A.q9(4,"baseline") -B.mT=new A.eE(0.18,1,0.04,1) -B.Ej=new A.eE(0.215,0.61,0.355,1) -B.mU=new A.eE(0.2,0,0,1) -B.mV=new A.eE(0.31,0,0.56,1) -B.Ek=new A.eE(0.05,0,0.133333,0.06) -B.aD=new A.eE(0.25,0.1,0.25,1) -B.ce=new A.eE(0.42,0,1,1) -B.El=new A.eE(0.67,0.03,0.65,0.09) -B.Em=new A.eE(0.075,0.82,0.165,1) -B.En=new A.eE(0.208333,0.82,0.25,1) -B.af=new A.eE(0.4,0,0.2,1) -B.iP=new A.eE(0.35,0.91,0.33,0.97) -B.cf=new A.eE(0,0,0.58,1) -B.iQ=new A.eE(0.42,0,0.58,1) -B.dM=new A.L(268435456) -B.fc=new A.L(285212671) -B.Eq=new A.cs(B.dM,null,null,B.dM,B.fc,B.dM,B.fc,B.dM,B.fc,B.dM,B.fc,0) -B.dS=new A.L(4290295992) -B.fi=new A.L(4284177243) -B.Er=new A.cs(B.dS,null,null,B.dS,B.fi,B.dS,B.fi,B.dS,B.fi,B.dS,B.fi,0) -B.iL=new A.L(678983808) -B.ml=new A.L(1366849664) -B.mh=new A.L(1031305344) -B.mr=new A.L(1719171200) -B.Es=new A.cs(B.iL,"secondarySystemFill",null,B.iL,B.ml,B.mh,B.mr,B.iL,B.ml,B.mh,B.mr,0) -B.dT=new A.L(4294375158) -B.fh=new A.L(4280427042) -B.Et=new A.cs(B.dT,null,null,B.dT,B.fh,B.dT,B.fh,B.dT,B.fh,B.dT,B.fh,0) -B.iA=new A.L(1228684355) -B.ms=new A.L(2572440664) -B.mm=new A.L(1581005891) -B.mt=new A.L(2907984984) -B.Eu=new A.cs(B.iA,"separator",null,B.iA,B.ms,B.mm,B.mt,B.iA,B.ms,B.mm,B.mt,0) -B.d5=new A.L(4288256409) -B.dR=new A.L(4285887861) -B.bU=new A.cs(B.d5,"inactiveGray",null,B.d5,B.dR,B.d5,B.dR,B.d5,B.dR,B.d5,B.dR,0) -B.fp=new A.cs(B.k,null,null,B.k,B.j,B.k,B.j,B.k,B.j,B.k,B.j,0) -B.dN=new A.L(3003121663) -B.fd=new A.L(2989502512) -B.Ev=new A.cs(B.dN,null,null,B.dN,B.fd,B.dN,B.fd,B.dN,B.fd,B.dN,B.fd,0) -B.iG=new A.L(4281648985) -B.mz=new A.L(4281389400) -B.my=new A.L(4280584765) -B.mA=new A.L(4281391963) -B.Ew=new A.cs(B.iG,"systemGreen",null,B.iG,B.mz,B.my,B.mA,B.iG,B.mz,B.my,B.mA,0) -B.d6=new A.L(4292269782) -B.Ex=new A.cs(B.d6,null,null,B.d6,B.bT,B.d6,B.bT,B.d6,B.bT,B.d6,B.bT,0) -B.iB=new A.L(1279016003) -B.mk=new A.L(1290529781) -B.mn=new A.L(1614560323) -B.mo=new A.L(1626074101) -B.Ey=new A.cs(B.iB,"placeholderText",null,B.iB,B.mk,B.mn,B.mo,B.iB,B.mk,B.mn,B.mo,0) -B.fq=new A.cs(B.k,"label",null,B.k,B.j,B.k,B.j,B.k,B.j,B.k,B.j,0) -B.iD=new A.L(343176320) -B.mK=new A.L(762738304) -B.mJ=new A.L(678720640) -B.mj=new A.L(1115059840) -B.EA=new A.cs(B.iD,"quaternarySystemFill",null,B.iD,B.mK,B.mJ,B.mj,B.iD,B.mK,B.mJ,B.mj,0) -B.dL=new A.L(1493172224) -B.fb=new A.L(2164260863) -B.EB=new A.cs(B.dL,null,null,B.dL,B.fb,B.dL,B.fb,B.dL,B.fb,B.dL,B.fb,0) -B.mw=new A.L(4278879487) -B.mv=new A.L(4278206685) -B.mC=new A.L(4282424575) -B.Ep=new A.cs(B.ff,"systemBlue",null,B.ff,B.mw,B.mv,B.mC,B.ff,B.mw,B.mv,B.mC,0) -B.DG=new A.L(4280558630) -B.mW=new A.cs(B.j,"systemBackground",null,B.j,B.k,B.j,B.k,B.j,B.dP,B.j,B.DG,0) -B.dO=new A.L(4042914297) -B.fe=new A.L(4028439837) -B.Ez=new A.cs(B.dO,null,null,B.dO,B.fe,B.dO,B.fe,B.dO,B.fe,B.dO,B.fe,0) -B.Wl=new A.VU(B.fq,B.bU) -B.lb=new A.VW(null,B.Ep,B.mW,B.Ez,B.mW,!1,B.Wl) -B.cg=new A.uu(B.lb,null,null,null,null,null,null,null) -B.EC=new A.a6P(1,"latency") -B.ED=new A.A9(null,null,null,null,null,null,null,null,null,null,null,null,null,null) -B.EE=new A.Aa(null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) -B.mX=new A.qg(0,"uninitialized") -B.EF=new A.qg(1,"initializingServices") -B.mY=new A.qg(2,"initializedServices") -B.EG=new A.qg(3,"initializingUi") -B.EH=new A.qg(4,"initialized") -B.EI=new A.a6T(1,"traversalOrder") -B.br=new A.My(0,"background") -B.mZ=new A.My(1,"foreground") -B.X8=new A.YF(null) -B.d7=new A.nF(null,null,null,B.X8,null) -B.S9=new A.v(!0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) -B.bm=new A.F_(0,"clip") -B.aH=new A.apf(0,"parent") -B.X9=new A.YH(null) -B.iR=new A.nG(B.S9,null,!0,B.bm,null,B.aH,null,B.X9,null) -B.iS=new A.qh(!1) -B.iT=new A.qh(!0) -B.iU=new A.qi(!1) -B.iV=new A.qi(!0) -B.iW=new A.qj(!1) -B.iX=new A.qj(!0) -B.aO=new A.Af(3,"info") -B.EJ=new A.Af(5,"hint") -B.EK=new A.Af(6,"summary") -B.Xx=new A.ku(1,"sparse") -B.EL=new A.ku(10,"shallow") -B.EM=new A.ku(11,"truncateChildren") -B.EN=new A.ku(5,"error") -B.EO=new A.ku(6,"whitespace") -B.iY=new A.ku(7,"flat") -B.iZ=new A.ku(8,"singleLine") -B.bV=new A.ku(9,"errorProperty") -B.EP=new A.uy(null,null,null,null,null,null,null,null,null,null) -B.ES=new A.uz(null,null,null,null,null) -B.fr=new A.MT(null) -B.j_=new A.MZ(0,"down") -B.a1=new A.MZ(1,"start") -B.ET=new A.N0(null) -B.EU=new A.Ar(null,null,null,null,null,null,null,null) -B.EV=new A.As(null,null,null) -B.q=new A.b8(0) -B.aE=new A.b8(1e5) -B.fs=new A.b8(1e6) -B.EW=new A.b8(12e4) -B.EX=new A.b8(12e5) -B.j0=new A.b8(125e3) -B.EY=new A.b8(14e4) -B.EZ=new A.b8(15e3) -B.dU=new A.b8(15e4) -B.F_=new A.b8(15e5) -B.F0=new A.b8(16667) -B.cB=new A.b8(167e3) -B.F1=new A.b8(18e4) -B.F=new A.b8(2e5) -B.ft=new A.b8(2e6) -B.F2=new A.b8(225e3) -B.F3=new A.b8(25e4) -B.F4=new A.b8(2961926e3) -B.bC=new A.b8(3e5) -B.F5=new A.b8(3e6) -B.n_=new A.b8(375e3) -B.F6=new A.b8(4e4) -B.j1=new A.b8(4e5) -B.F7=new A.b8(45e3) -B.dV=new A.b8(5e4) -B.cC=new A.b8(5e5) -B.dW=new A.b8(6e5) -B.n0=new A.b8(7e4) -B.j2=new A.b8(75e3) -B.F8=new A.b8(-38e3) -B.F9=new A.ff(12,0,16,0) -B.Fa=new A.ff(16,0,24,0) -B.Fb=new A.ff(8,0,4,0) -B.z=new A.aF(0,0,0,0) -B.Fc=new A.aF(0,0,0,4) -B.Fd=new A.aF(0,0,20,0) -B.n1=new A.aF(0,0,4,0) -B.n2=new A.aF(0,10,20,10) -B.Fe=new A.aF(0,12,0,12) -B.bW=new A.aF(0,8,0,8) -B.n3=new A.aF(10,0,10,0) -B.n4=new A.aF(10,10,10,10) -B.n5=new A.aF(12,12,12,12) -B.Ff=new A.aF(12,8,12,8) -B.dX=new A.aF(16,0,16,0) -B.j3=new A.aF(16,16,16,16) -B.Fg=new A.aF(16,18,16,18) -B.Fh=new A.aF(16,4,16,4) -B.dY=new A.aF(16,8,16,8) -B.n6=new A.aF(20,0,20,0) -B.Fi=new A.aF(20,0,20,3) -B.fu=new A.aF(20,20,20,20) -B.Fj=new A.aF(24,0,24,0) -B.Fk=new A.aF(30,30,0,30) -B.Fl=new A.aF(40,24,40,24) -B.Fm=new A.aF(4,0,4,0) -B.Xy=new A.aF(4,4,4,5) -B.Fn=new A.aF(6,6,6,6) -B.fv=new A.aF(8,0,8,0) -B.Fo=new A.aF(8,2,8,5) -B.Fp=new A.aF(8,4,8,4) -B.ch=new A.aF(8,8,8,8) -B.n7=new A.aF(0.5,1,0.5,1) -B.Fq=new A.Ax(null) -B.Fr=new A.AB(0,"noOpinion") -B.Fs=new A.AB(1,"enabled") -B.fw=new A.AB(2,"disabled") -B.Ft=new A.N7(null) -B.Xz=new A.uJ(0) -B.j4=new A.qp(!1,!1,!1,!1) -B.j5=new A.qp(!1,!1,!1,!0) -B.n8=new A.qq(!1,!1,!1,!1) -B.n9=new A.qq(!1,!1,!1,!0) -B.Fu=new A.AI(null,null,null,null,null,null,null,null,null,null,null) -B.j6=new A.m_(!1,!1,!1,!1) -B.j7=new A.m_(!1,!1,!1,!0) -B.dZ=new A.m_(!0,!1,!1,!1) -B.e_=new A.m_(!0,!1,!1,!0) -B.na=new A.m0(!1,!1,!1,!1) -B.nb=new A.m0(!1,!1,!1,!0) -B.fx=new A.m0(!0,!1,!1,!1) -B.fy=new A.m0(!0,!1,!1,!0) -B.nc=new A.i9(!1,!1,!1,!1) -B.nd=new A.i9(!1,!1,!1,!0) -B.Fv=new A.i9(!1,!1,!0,!1) -B.Fw=new A.i9(!1,!1,!0,!0) -B.cD=new A.i9(!0,!1,!1,!1) -B.cE=new A.i9(!0,!1,!1,!0) -B.Fx=new A.i9(!0,!1,!0,!1) -B.Fy=new A.i9(!0,!1,!0,!0) -B.Fz=new A.qs(!1,!1,!1,!1) -B.FA=new A.qs(!1,!1,!1,!0) -B.ne=new A.qt(!1,!0,!1,!1) -B.nf=new A.qt(!1,!0,!1,!0) -B.FB=new A.m1(!1,!1,!1,!1) -B.FC=new A.m1(!1,!1,!1,!0) -B.j8=new A.m1(!0,!1,!1,!1) -B.j9=new A.m1(!0,!1,!1,!0) -B.ng=new A.qu(!1,!0,!1,!1) -B.nh=new A.qu(!1,!0,!1,!0) -B.ja=new A.nO(!1,!1,!1,!1) -B.jb=new A.nO(!1,!1,!1,!0) -B.fz=new A.nO(!0,!1,!1,!1) -B.fA=new A.nO(!0,!1,!1,!0) -B.jc=new A.m2(!1,!1,!1,!1) -B.jd=new A.m2(!1,!1,!1,!0) -B.ni=new A.m2(!0,!1,!1,!1) -B.nj=new A.m2(!0,!1,!1,!0) -B.FD=new A.AK(null) -B.fB=new A.qw(0,"none") -B.fC=new A.qw(1,"low") -B.nk=new A.qw(2,"medium") -B.je=new A.qw(3,"high") -B.FE=new A.uR("AIzaSyBvYLAK_A0uhFuVPQbTxUdVWbb_Lsur9cg","1:387936576242:web:7536e0c50dd81b4dd7a66b","387936576242","prod-auto-gpt","prod-auto-gpt.firebaseapp.com",null,"prod-auto-gpt.appspot.com","G-8PRS69JJRL",null,null,null,null,null,null) -B.o=new A.Q(0,0) -B.FF=new A.Ny(B.o,B.o) -B.e0=new A.NC(0,"tight") -B.nl=new A.NC(1,"loose") -B.FG=new A.uT(null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) -B.nm=new A.AP(0,"Start") -B.jf=new A.AP(1,"Update") -B.jg=new A.AP(2,"End") -B.nn=new A.AQ(0,"never") -B.np=new A.AQ(2,"always") -B.jh=new A.nQ(0,"touch") -B.fD=new A.nQ(1,"traditional") -B.XA=new A.aaf(0,"automatic") -B.nq=new A.NO(0,"normal") -B.ji=new A.NO(1,"italic") -B.aF=new A.iJ(4,500) -B.fE=new A.iJ(5,600) -B.bs=new A.iJ(6,700) -B.nt=new A.ia("Invalid method call",null,null) -B.FJ=new A.ia("Expected envelope, got nothing",null,null) -B.bd=new A.ia("Message corrupted",null,null) -B.FK=new A.ia("Invalid envelope",null,null) -B.FL=new A.ia("Invalid JSON: Missing one of the required fields.",null,null) -B.nu=new A.uY(0,"ltr") -B.nv=new A.uY(1,"rtl") -B.jk=new A.uY(3,"sandwich") -B.bt=new A.NX(0,"accepted") -B.ac=new A.NX(1,"rejected") -B.nw=new A.qF(0,"pointerEvents") -B.d8=new A.qF(1,"browserGestures") -B.ci=new A.B0(0,"ready") -B.fG=new A.B0(1,"possible") -B.FM=new A.B0(2,"defunct") -B.fH=new A.O7(0,"forward") -B.nx=new A.O7(1,"reverse") -B.cF=new A.v2(0,"push") -B.cG=new A.v2(1,"pop") -B.bD=new A.B6(0,"deferToChild") -B.aG=new A.B6(1,"opaque") -B.bX=new A.B6(2,"translucent") -B.FN=new A.acP("attribute",!0,!0,!1,!1) -B.ny=new A.Oh(B.FN) -B.FP=new A.nX(null) -B.jl=new A.cy(57490,"MaterialIcons",null,!0) -B.FQ=new A.cy(57583,"MaterialIcons",null,!1) -B.FT=new A.cy(57687,"MaterialIcons",null,!1) -B.FU=new A.cy(57688,"MaterialIcons",null,!1) -B.FZ=new A.cy(57912,"MaterialIcons",null,!1) -B.G_=new A.cy(57944,"MaterialIcons",null,!1) -B.G0=new A.cy(58195,"MaterialIcons",null,!1) -B.G1=new A.cy(58198,"MaterialIcons",null,!1) -B.nB=new A.cy(58332,"MaterialIcons",null,!1) -B.G3=new A.cy(58372,"MaterialIcons",null,!1) -B.G4=new A.cy(58492,"MaterialIcons",null,!1) -B.G9=new A.cy(58873,"MaterialIcons",null,!1) -B.Gd=new A.d6(null,null,null,null,null,B.J,null,null) -B.Ge=new A.d6(null,null,null,null,null,B.k,null,null) -B.Gc=new A.d6(24,0,400,0,48,B.k,1,null) -B.nD=new A.d6(null,null,null,null,null,B.j,null,null) -B.nA=new A.cy(57496,"MaterialIcons",null,!1) -B.Gf=new A.dK(B.nA,null,B.j,null,null) -B.G2=new A.cy(58291,"MaterialIcons",null,!1) -B.Gg=new A.dK(B.G2,null,B.k,null,null) -B.nC=new A.cy(58571,"MaterialIcons",null,!1) -B.Gh=new A.dK(B.nC,null,B.k,null,null) -B.FX=new A.cy(57744,"MaterialIcons",null,!1) -B.Gi=new A.dK(B.FX,null,null,null,null) -B.G6=new A.cy(58727,"MaterialIcons",null,!1) -B.Gj=new A.dK(B.G6,null,null,null,null) -B.FV=new A.cy(57695,"MaterialIcons",null,!0) -B.L0=new A.d3([50,B.iJ,100,B.mI,200,B.iI,300,B.fj,350,B.d6,400,B.cd,500,B.mE,600,B.dR,700,B.dQ,800,B.bT,850,B.iE,900,B.mx],t.pl) -B.cn=new A.r8(B.L0,4288585374) -B.Gk=new A.dK(B.FV,null,B.cn,null,null) -B.G5=new A.cy(58646,"MaterialIcons",null,!1) -B.Gl=new A.dK(B.G5,null,null,null,null) -B.G7=new A.cy(58737,"MaterialIcons",null,!0) -B.Gm=new A.dK(B.G7,null,null,null,null) -B.nz=new A.cy(57415,"MaterialIcons",null,!1) -B.Gn=new A.dK(B.nz,null,null,null,null) -B.Go=new A.dK(B.nA,null,null,null,null) -B.Gp=new A.dK(B.nC,24,B.j,null,null) -B.FS=new A.cy(57685,"MaterialIcons",null,!1) -B.Gq=new A.dK(B.FS,null,B.k,null,null) -B.FY=new A.cy(57900,"MaterialIcons",null,!1) -B.Gr=new A.dK(B.FY,null,null,null,null) -B.G8=new A.cy(58751,"MaterialIcons",null,!1) -B.Gs=new A.dK(B.G8,null,null,null,null) -B.FR=new A.cy(57683,"MaterialIcons",null,!1) -B.Gu=new A.dK(B.FR,null,null,null,null) -B.FW=new A.cy(57706,"MaterialIcons",null,!1) -B.Gv=new A.dK(B.FW,null,B.k,null,null) -B.GC=new A.v8(0,"repeat") -B.GD=new A.v8(1,"repeatX") -B.GE=new A.v8(2,"repeatY") -B.d9=new A.v8(3,"noRepeat") -B.at=A.b(s([]),t.oU) -B.GF=new A.md("\ufffc",null,null,!0,!0,B.at) -B.XB=new A.vf(null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,!1,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,!0,null,null,null) -B.f1=new A.Yx(B.n) -B.GG=new A.vf(null,null,null,null,null,null,null,null,null,"Agent Base URL",null,null,null,null,null,null,null,null,null,null,null,!1,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,B.f1,!0,null,null,null) -B.GJ=new A.e7(0,0.1,B.B) -B.GN=new A.e7(0,0.25,B.B) -B.GL=new A.e7(0,0.3333333333333333,B.B) -B.GM=new A.e7(0,0.6666666666666666,B.B) -B.GI=new A.e7(0.125,0.25,B.B) -B.GP=new A.e7(0.25,0.5,B.B) -B.GK=new A.e7(0.6,1,B.B) -B.GO=new A.e7(0.75,1,B.B) -B.nG=new A.e7(0.5,1,B.aD) -B.GQ=new A.e7(0.2075,0.4175,B.B) -B.GS=new A.e7(0,0.5,B.af) -B.GR=new A.e7(0.5,1,B.af) -B.GT=new A.e7(0.0825,0.2075,B.B) -B.nH=new A.Bj(0,"grapheme") -B.nI=new A.Bj(1,"word") -B.nJ=new A.OI(null) -B.GW=new A.OJ(null,null) -B.GX=new A.OL(0,"rawKeyData") -B.GY=new A.OL(1,"keyDataThenRawKeyData") -B.bE=new A.Bu(0,"down") -B.GZ=new A.hI(B.q,B.bE,0,0,null,!1) -B.e2=new A.o8(0,"handled") -B.e3=new A.o8(1,"ignored") -B.fI=new A.o8(2,"skipRemainingHandlers") -B.be=new A.Bu(1,"up") -B.H_=new A.Bu(2,"repeat") -B.h1=new A.i(4294967562) -B.H0=new A.vm(B.h1,0,"numLock") -B.h2=new A.i(4294967564) -B.H1=new A.vm(B.h2,1,"scrollLock") -B.ef=new A.i(4294967556) -B.H2=new A.vm(B.ef,2,"capsLock") -B.da=new A.qW(0,"any") -B.bY=new A.qW(3,"all") -B.nK=new A.OQ(!1,255) -B.nL=new A.OR(255) -B.H3=new A.aeC(0,"platformDefault") -B.cH=new A.oe(0,"opportunity") -B.r=new A.oe(1,"prohibited") -B.cj=new A.oe(2,"mandatory") -B.ck=new A.oe(3,"endOfText") -B.jm=new A.bX(0,"CM") -B.fL=new A.bX(1,"BA") -B.cI=new A.bX(10,"PO") -B.e4=new A.bX(11,"OP") -B.e5=new A.bX(12,"CP") -B.fM=new A.bX(13,"IS") -B.e6=new A.bX(14,"HY") -B.jn=new A.bX(15,"SY") -B.cl=new A.bX(16,"NU") -B.jo=new A.bX(17,"CL") -B.jp=new A.bX(18,"GL") -B.nM=new A.bX(19,"BB") -B.e7=new A.bX(2,"LF") -B.bf=new A.bX(20,"HL") -B.fN=new A.bX(21,"JL") -B.e8=new A.bX(22,"JV") -B.e9=new A.bX(23,"JT") -B.jq=new A.bX(24,"NS") -B.jr=new A.bX(25,"ZW") -B.js=new A.bX(26,"ZWJ") -B.jt=new A.bX(27,"B2") -B.nN=new A.bX(28,"IN") -B.ju=new A.bX(29,"WJ") -B.fO=new A.bX(3,"BK") -B.jv=new A.bX(30,"ID") -B.fP=new A.bX(31,"EB") -B.ea=new A.bX(32,"H2") -B.eb=new A.bX(33,"H3") -B.jw=new A.bX(34,"CB") -B.fQ=new A.bX(35,"RI") -B.fR=new A.bX(36,"EM") -B.fS=new A.bX(4,"CR") -B.db=new A.bX(5,"SP") -B.nO=new A.bX(6,"EX") -B.jx=new A.bX(7,"QU") -B.bg=new A.bX(8,"AL") -B.fT=new A.bX(9,"PR") -B.XC=new A.aeV(2,"platform") -B.H5=new A.aeW(0,"list") -B.H6=new A.vr(null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) -B.H7=new A.aeX(1,"titleHeight") -B.Uh=new A.dP("Agent Base URL",null,null,null,null,null,null,null,null) -B.D7=new A.q1(B.a0,null,null,B.Uh,null) -B.H8=new A.BE(null,B.D7,null,null,!1,null,null,null,null,null,!0,null,null,!1,null,null,!1,null,null,null,null) -B.Ee=new A.L(637534208) -B.co=new A.k(0,3) -B.Bn=new A.bv(0,B.y,B.Ee,B.co,8) -B.Dq=new A.L(251658240) -B.Bo=new A.bv(0,B.y,B.Dq,B.co,1) -B.nP=A.b(s([B.Bn,B.Bo]),t.V) -B.H9=A.b(s([0,1]),t.B) -B.Ha=A.b(s([239,191,189]),t.t) -B.In=A.b(s([137,80,78,71,13,10,26,10]),t.Z) -B.Gw=new A.mc(B.In,"image/png") -B.Hw=A.b(s([71,73,70,56,55,97]),t.Z) -B.GA=new A.mc(B.Hw,"image/gif") -B.Hx=A.b(s([71,73,70,56,57,97]),t.Z) -B.GB=new A.mc(B.Hx,"image/gif") -B.Hb=A.b(s([255,216,255]),t.Z) -B.Gx=new A.mc(B.Hb,"image/jpeg") -B.HT=A.b(s([82,73,70,70,null,null,null,null,87,69,66,80]),t.Z) -B.Gz=new A.mc(B.HT,"image/webp") -B.HK=A.b(s([66,77]),t.Z) -B.Gy=new A.mc(B.HK,"image/bmp") -B.Hy=A.b(s([B.Gw,B.GA,B.GB,B.Gx,B.Gz,B.Gy]),A.ab("w")) -B.Hz=A.b(s([4,9,14,19]),t.t) -B.Am=new A.kg(0,"unknown") -B.An=new A.kg(1,"passwordReset") -B.Ao=new A.kg(2,"verifyEmail") -B.Ap=new A.kg(3,"recoverEmail") -B.Aq=new A.kg(4,"emailSignIn") -B.Ar=new A.kg(5,"verifyAndChangeEmail") -B.As=new A.kg(6,"revertSecondFactorAddition") -B.HA=A.b(s([B.Am,B.An,B.Ao,B.Ap,B.Aq,B.Ar,B.As]),A.ab("w")) -B.dc=A.b(s([0,0,65498,45055,65535,34815,65534,18431]),t.t) -B.HJ=A.b(s([65533]),t.t) -B.D2=new A.u5(0,"auto") -B.D3=new A.u5(1,"full") -B.D4=new A.u5(2,"chromium") -B.HL=A.b(s([B.D2,B.D3,B.D4]),A.ab("w")) -B.HM=A.b(s(["Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday"]),t.ee) -B.nQ=A.b(s([B.jm,B.fL,B.e7,B.fO,B.fS,B.db,B.nO,B.jx,B.bg,B.fT,B.cI,B.e4,B.e5,B.fM,B.e6,B.jn,B.cl,B.jo,B.jp,B.nM,B.bf,B.fN,B.e8,B.e9,B.jq,B.jr,B.js,B.jt,B.nN,B.ju,B.jv,B.fP,B.ea,B.eb,B.jw,B.fQ,B.fR]),A.ab("w")) -B.WA=new A.hY(0,1) -B.WG=new A.hY(0.5,1) -B.WH=new A.hY(0.5375,0.75) -B.WF=new A.hY(0.575,0.5) -B.WJ=new A.hY(0.6125,0.25) -B.WK=new A.hY(0.65,0) -B.WI=new A.hY(0.85,0) -B.WE=new A.hY(0.8875,0.25) -B.WC=new A.hY(0.925,0.5) -B.WD=new A.hY(0.9625,0.75) -B.WB=new A.hY(1,1) -B.HN=A.b(s([B.WA,B.WG,B.WH,B.WF,B.WJ,B.WK,B.WI,B.WE,B.WC,B.WD,B.WB]),A.ab("w")) -B.fU=A.b(s([B.f4,B.ik,B.lA,B.lB,B.il]),t.QP) -B.HO=A.b(s([B.f4]),t.QP) -B.HP=A.b(s([B.im,B.io]),A.ab("w")) -B.HQ=A.b(s(["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"]),t.ee) -B.nR=A.b(s(["bind","if","ref","repeat","syntax"]),t.s) -B.nS=A.b(s([0,4,12,1,5,13,3,7,15]),t.t) -B.HR=A.b(s(["pointerdown","pointermove","pointerleave","pointerup","pointercancel","touchstart","touchend","touchmove","touchcancel","mousedown","mousemove","mouseleave","mouseup","keyup","keydown"]),t.s) -B.jy=A.b(s(["p","h1","h2","h3","h4","h5","h6","li","blockquote","pre","ol","ul","hr","table","thead","tbody","tr","section"]),t.s) -B.nT=A.b(s([0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0]),t.B) -B.jz=A.b(s(["A::href","AREA::href","BLOCKQUOTE::cite","BODY::background","COMMAND::icon","DEL::cite","FORM::action","IMG::src","INPUT::src","INS::cite","Q::cite","VIDEO::poster"]),t.s) -B.Jh=new A.oi("en","US") -B.nU=A.b(s([B.Jh]),t.ss) -B.fV=A.b(s([0,0,24576,1023,65534,34815,65534,18431]),t.t) -B.I8=A.b(s(["HEAD","AREA","BASE","BASEFONT","BR","COL","COLGROUP","EMBED","FRAME","FRAMESET","HR","IMAGE","IMG","INPUT","ISINDEX","LINK","META","PARAM","SOURCE","STYLE","TITLE","WBR"]),t.s) -B.nV=A.b(s([0,0,26624,1023,65534,2047,65534,2047]),t.t) -B.I9=A.b(s([0,0,32722,12287,65534,34815,65534,18431]),t.t) -B.Ib=A.b(s(["https://www.googleapis.com/auth/userinfo.profile","https://www.googleapis.com/auth/userinfo.email"]),t.s) -B.aa=new A.EO(0,"upstream") -B.Ii=A.b(s([B.aa,B.l]),A.ab("w")) -B.a4=new A.lk(0,"rtl") -B.p=new A.lk(1,"ltr") -B.nW=A.b(s([B.a4,B.p]),A.ab("w")) -B.A_=new A.xz(0,"topLeft") -B.A2=new A.xz(3,"bottomRight") -B.Wm=new A.mV(B.A_,B.A2) -B.Wp=new A.mV(B.A2,B.A_) -B.A0=new A.xz(1,"topRight") -B.A1=new A.xz(2,"bottomLeft") -B.Wn=new A.mV(B.A0,B.A1) -B.Wo=new A.mV(B.A1,B.A0) -B.Ij=A.b(s([B.Wm,B.Wp,B.Wn,B.Wo]),A.ab("w")) -B.BT=new A.ni() -B.eA=new A.S6(1,"page") -B.ht=new A.eI(B.U,B.eA) -B.Ik=A.b(s([B.BT,B.ht]),A.ab("w")) -B.Ga=new A.cy(62589,"CupertinoIcons","cupertino_icons",!1) -B.nF=new A.dK(B.Ga,null,null,null,null) -B.AU=new A.zy(B.nF,B.nF,"Tasks") -B.Gb=new A.cy(62459,"CupertinoIcons","cupertino_icons",!1) -B.nE=new A.dK(B.Gb,null,null,null,null) -B.AV=new A.zy(B.nE,B.nE,"Chat") -B.Il=A.b(s([B.AU,B.AV]),A.ab("w")) -B.nX=A.b(s([0,0,65490,12287,65535,34815,65534,18431]),t.t) -B.nY=A.b(s([0,0,32776,33792,1,10240,0,0]),t.t) -B.a6=new A.fa(0,"icon") -B.ap=new A.fa(1,"input") -B.a2=new A.fa(2,"label") -B.aw=new A.fa(3,"hint") -B.aj=new A.fa(4,"prefix") -B.ak=new A.fa(5,"suffix") -B.a7=new A.fa(6,"prefixIcon") -B.al=new A.fa(7,"suffixIcon") -B.ax=new A.fa(8,"helperError") -B.ae=new A.fa(9,"counter") -B.c7=new A.fa(10,"container") -B.Ip=A.b(s([B.a6,B.ap,B.a2,B.aw,B.aj,B.ak,B.a7,B.al,B.ax,B.ae,B.c7]),A.ab("w")) -B.jj=new A.iJ(0,100) -B.FH=new A.iJ(1,200) -B.nr=new A.iJ(2,300) -B.w=new A.iJ(3,400) -B.FI=new A.iJ(7,800) -B.ns=new A.iJ(8,900) -B.Iq=A.b(s([B.jj,B.FH,B.nr,B.w,B.aF,B.fE,B.bs,B.FI,B.ns]),A.ab("w")) -B.Ir=A.b(s(["click","scroll"]),t.s) -B.mu=new A.L(419430400) -B.e=new A.k(0,0) -B.Bl=new A.bv(0.2,B.y,B.mu,B.e,11) -B.Is=A.b(s([B.Bl]),t.V) -B.Iu=A.b(s([0,0,32754,11263,65534,34815,65534,18431]),t.t) -B.IH=A.b(s([]),t.QP) -B.o0=A.b(s([]),A.ab("w")) -B.IC=A.b(s([]),t.IF) -B.Iv=A.b(s([]),t.E) -B.IB=A.b(s([]),t.lX) -B.Ix=A.b(s([]),t.fJ) -B.Iy=A.b(s([]),t.ER) -B.XD=A.b(s([]),t.ss) -B.o2=A.b(s([]),t.tc) -B.ID=A.b(s([]),t.D) -B.fW=A.b(s([]),t.jl) -B.o3=A.b(s([]),t.wi) -B.IG=A.b(s([]),t.jT) -B.IJ=A.b(s([]),A.ab("w>")) -B.jA=A.b(s([]),t.AO) -B.IF=A.b(s([]),t.D1) -B.jB=A.b(s([]),t.QF) -B.XE=A.b(s([]),t.nk) -B.IL=A.b(s([]),t.Lx) -B.Iw=A.b(s([]),t.fm) -B.o_=A.b(s([]),t.p) -B.IA=A.b(s([]),t.lD) -B.o1=A.b(s([]),t.B) -B.ec=A.b(s([]),t.t) -B.nZ=A.b(s([]),t.ee) -B.Iz=A.b(s([]),t.iG) -B.IK=A.b(s([]),t._m) -B.ha=new A.k(0,2) -B.Bk=new A.bv(0.75,B.y,B.mu,B.ha,1.5) -B.IP=A.b(s([B.Bk]),t.V) -B.z8=new A.fk(0,"general") -B.Po=new A.fk(1,"coding") -B.Pp=new A.fk(2,"data") -B.Pq=new A.fk(3,"scrapeSynthesize") -B.IX=A.b(s([B.z8,B.Po,B.Pp,B.Pq]),A.ab("w")) -B.dw=new A.jV(0,"left") -B.eP=new A.jV(1,"right") -B.bl=new A.jV(2,"center") -B.cS=new A.jV(3,"justify") -B.aR=new A.jV(4,"start") -B.hL=new A.jV(5,"end") -B.IY=A.b(s([B.dw,B.eP,B.bl,B.cS,B.aR,B.hL]),A.ab("w")) -B.df=new A.k(1,0) -B.M7=new A.k(1,1) -B.bx=new A.k(0,1) -B.Mw=new A.k(-1,1) -B.ur=new A.k(-1,0) -B.Mx=new A.k(-1,-1) -B.uo=new A.k(0,-1) -B.M9=new A.k(1,-1) -B.fX=A.b(s([B.df,B.M7,B.bx,B.Mw,B.ur,B.Mx,B.uo,B.M9]),t.yv) -B.o4=A.b(s(["Mon","Tue","Wed","Thu","Fri","Sat","Sun"]),t.ee) -B.bB=new A.L(855638016) -B.Bf=new A.bv(-1,B.y,B.bB,B.ha,1) -B.bA=new A.L(603979776) -B.Bz=new A.bv(0,B.y,B.bA,B.bx,1) -B.BC=new A.bv(0,B.y,B.bc,B.bx,3) -B.o5=A.b(s([B.Bf,B.Bz,B.BC]),t.V) -B.fY=A.b(s([0,0,65490,45055,65535,34815,65534,18431]),t.t) -B.en=new A.ig(0,"controlModifier") -B.eo=new A.ig(1,"shiftModifier") -B.ep=new A.ig(2,"altModifier") -B.eq=new A.ig(3,"metaModifier") -B.uf=new A.ig(4,"capsLockModifier") -B.ug=new A.ig(5,"numLockModifier") -B.uh=new A.ig(6,"scrollLockModifier") -B.ui=new A.ig(7,"functionModifier") -B.Lz=new A.ig(8,"symbolModifier") -B.o6=A.b(s([B.en,B.eo,B.ep,B.eq,B.uf,B.ug,B.uh,B.ui,B.Lz]),A.ab("w")) -B.jC=A.b(s([0,0,26498,1023,65534,34815,65534,18431]),t.t) -B.o7=A.b(s(["text","multiline","number","phone","datetime","emailAddress","url","visiblePassword","name","address","none"]),t.s) -B.dt=new A.ea(1,"fuchsia") -B.du=new A.ea(3,"linux") -B.dv=new A.ea(5,"windows") -B.J6=A.b(s([B.aY,B.dt,B.aL,B.du,B.c3,B.dv]),A.ab("w")) -B.jD=A.b(s([!0,!1]),t.HZ) -B.o8=A.b(s(["ul","ol"]),t.s) -B.J8=A.b(s(["ul","ol","p","br"]),t.s) -B.l3=new A.dR(0,"DoubleQuote") -B.dy=new A.dR(1,"SingleQuote") -B.aT=new A.dR(2,"HebrewLetter") -B.hT=new A.dR(3,"CR") -B.hU=new A.dR(4,"LF") -B.l7=new A.dR(5,"Newline") -B.eX=new A.dR(6,"Extend") -B.Wa=new A.dR(7,"RegionalIndicator") -B.eY=new A.dR(8,"Format") -B.eZ=new A.dR(9,"Katakana") -B.by=new A.dR(10,"ALetter") -B.l4=new A.dR(11,"MidLetter") -B.l5=new A.dR(12,"MidNum") -B.eV=new A.dR(13,"MidNumLet") -B.c6=new A.dR(14,"Numeric") -B.hS=new A.dR(15,"ExtendNumLet") -B.eW=new A.dR(16,"ZWJ") -B.l6=new A.dR(17,"WSegSpace") -B.zZ=new A.dR(18,"Unknown") -B.J9=A.b(s([B.l3,B.dy,B.aT,B.hT,B.hU,B.l7,B.eX,B.Wa,B.eY,B.eZ,B.by,B.l4,B.l5,B.eV,B.c6,B.hS,B.eW,B.l6,B.zZ]),A.ab("w")) -B.Ja=A.b(s(["*::class","*::dir","*::draggable","*::hidden","*::id","*::inert","*::itemprop","*::itemref","*::itemscope","*::lang","*::spellcheck","*::title","*::translate","A::accesskey","A::coords","A::hreflang","A::name","A::shape","A::tabindex","A::target","A::type","AREA::accesskey","AREA::alt","AREA::coords","AREA::nohref","AREA::shape","AREA::tabindex","AREA::target","AUDIO::controls","AUDIO::loop","AUDIO::mediagroup","AUDIO::muted","AUDIO::preload","BDO::dir","BODY::alink","BODY::bgcolor","BODY::link","BODY::text","BODY::vlink","BR::clear","BUTTON::accesskey","BUTTON::disabled","BUTTON::name","BUTTON::tabindex","BUTTON::type","BUTTON::value","CANVAS::height","CANVAS::width","CAPTION::align","COL::align","COL::char","COL::charoff","COL::span","COL::valign","COL::width","COLGROUP::align","COLGROUP::char","COLGROUP::charoff","COLGROUP::span","COLGROUP::valign","COLGROUP::width","COMMAND::checked","COMMAND::command","COMMAND::disabled","COMMAND::label","COMMAND::radiogroup","COMMAND::type","DATA::value","DEL::datetime","DETAILS::open","DIR::compact","DIV::align","DL::compact","FIELDSET::disabled","FONT::color","FONT::face","FONT::size","FORM::accept","FORM::autocomplete","FORM::enctype","FORM::method","FORM::name","FORM::novalidate","FORM::target","FRAME::name","H1::align","H2::align","H3::align","H4::align","H5::align","H6::align","HR::align","HR::noshade","HR::size","HR::width","HTML::version","IFRAME::align","IFRAME::frameborder","IFRAME::height","IFRAME::marginheight","IFRAME::marginwidth","IFRAME::width","IMG::align","IMG::alt","IMG::border","IMG::height","IMG::hspace","IMG::ismap","IMG::name","IMG::usemap","IMG::vspace","IMG::width","INPUT::accept","INPUT::accesskey","INPUT::align","INPUT::alt","INPUT::autocomplete","INPUT::autofocus","INPUT::checked","INPUT::disabled","INPUT::inputmode","INPUT::ismap","INPUT::list","INPUT::max","INPUT::maxlength","INPUT::min","INPUT::multiple","INPUT::name","INPUT::placeholder","INPUT::readonly","INPUT::required","INPUT::size","INPUT::step","INPUT::tabindex","INPUT::type","INPUT::usemap","INPUT::value","INS::datetime","KEYGEN::disabled","KEYGEN::keytype","KEYGEN::name","LABEL::accesskey","LABEL::for","LEGEND::accesskey","LEGEND::align","LI::type","LI::value","LINK::sizes","MAP::name","MENU::compact","MENU::label","MENU::type","METER::high","METER::low","METER::max","METER::min","METER::value","OBJECT::typemustmatch","OL::compact","OL::reversed","OL::start","OL::type","OPTGROUP::disabled","OPTGROUP::label","OPTION::disabled","OPTION::label","OPTION::selected","OPTION::value","OUTPUT::for","OUTPUT::name","P::align","PRE::width","PROGRESS::max","PROGRESS::min","PROGRESS::value","SELECT::autocomplete","SELECT::disabled","SELECT::multiple","SELECT::name","SELECT::required","SELECT::size","SELECT::tabindex","SOURCE::type","TABLE::align","TABLE::bgcolor","TABLE::border","TABLE::cellpadding","TABLE::cellspacing","TABLE::frame","TABLE::rules","TABLE::summary","TABLE::width","TBODY::align","TBODY::char","TBODY::charoff","TBODY::valign","TD::abbr","TD::align","TD::axis","TD::bgcolor","TD::char","TD::charoff","TD::colspan","TD::headers","TD::height","TD::nowrap","TD::rowspan","TD::scope","TD::valign","TD::width","TEXTAREA::accesskey","TEXTAREA::autocomplete","TEXTAREA::cols","TEXTAREA::disabled","TEXTAREA::inputmode","TEXTAREA::name","TEXTAREA::placeholder","TEXTAREA::readonly","TEXTAREA::required","TEXTAREA::rows","TEXTAREA::tabindex","TEXTAREA::wrap","TFOOT::align","TFOOT::char","TFOOT::charoff","TFOOT::valign","TH::abbr","TH::align","TH::axis","TH::bgcolor","TH::char","TH::charoff","TH::colspan","TH::headers","TH::height","TH::nowrap","TH::rowspan","TH::scope","TH::valign","TH::width","THEAD::align","THEAD::char","THEAD::charoff","THEAD::valign","TR::align","TR::bgcolor","TR::char","TR::charoff","TR::valign","TRACK::default","TRACK::kind","TRACK::label","TRACK::srclang","UL::compact","UL::type","VIDEO::controls","VIDEO::height","VIDEO::loop","VIDEO::mediagroup","VIDEO::muted","VIDEO::preload","VIDEO::width"]),t.s) -B.bn=new A.k3(0,"leading") -B.b8=new A.k3(1,"title") -B.b9=new A.k3(2,"subtitle") -B.bO=new A.k3(3,"trailing") -B.Jb=A.b(s([B.bn,B.b8,B.b9,B.bO]),A.ab("w")) -B.lk=new A.Ia(0,"named") -B.Xf=new A.Ia(1,"anonymous") -B.Jc=A.b(s([B.lk,B.Xf]),A.ab("w")) -B.Jg=A.b(s([-1,0,0,1,0,0,-1,0,1,0,0,0,-1,1,0,1,1,1,1,0]),t.B) -B.bh=new A.i(4294967304) -B.ee=new A.i(4294967323) -B.b1=new A.i(4294967423) -B.jG=new A.i(4294967558) -B.ei=new A.i(8589934848) -B.h3=new A.i(8589934849) -B.bi=new A.i(8589934850) -B.bw=new A.i(8589934851) -B.ej=new A.i(8589934852) -B.h4=new A.i(8589934853) -B.ek=new A.i(8589934854) -B.h5=new A.i(8589934855) -B.c5=new A.hV(B.e) -B.KM=new A.vu(B.e,B.c5) -B.KN=new A.af5("longPress") -B.KO=new A.vv(B.e,B.e) -B.KP=new A.kO(B.e,B.u,B.u,B.u) -B.G=new A.r3(0,"start") -B.KQ=new A.r3(1,"end") -B.el=new A.r3(2,"center") -B.KR=new A.r3(3,"spaceBetween") -B.KS=new A.r3(5,"spaceEvenly") -B.bH=new A.P8(0,"min") -B.K=new A.P8(1,"max") -B.LY={"Æ":0,"&":1,"Á":2,"Ă":3,"Â":4,"А":5,"𝔄":6,"À":7,"Α":8,"Ā":9,"⩓":10,"Ą":11,"𝔸":12,"⁡":13,"Å":14,"𝒜":15,"≔":16,"Ã":17,"Ä":18,"∖":19,"⫧":20,"⌆":21,"Б":22,"∵":23,"ℬ":24,"Β":25,"𝔅":26,"𝔹":27,"˘":28,"ℬ":29,"≎":30,"Ч":31,"©":32,"Ć":33,"⋒":34,"ⅅ":35,"ℭ":36,"Č":37,"Ç":38,"Ĉ":39,"∰":40,"Ċ":41,"¸":42,"·":43,"ℭ":44,"Χ":45,"⊙":46,"⊖":47,"⊕":48,"⊗":49,"∲":50,"”":51,"’":52,"∷":53,"⩴":54,"≡":55,"∯":56,"∮":57,"ℂ":58,"∐":59,"∳":60,"⨯":61,"𝒞":62,"⋓":63,"≍":64,"ⅅ":65,"⤑":66,"Ђ":67,"Ѕ":68,"Џ":69,"‡":70,"↡":71,"⫤":72,"Ď":73,"Д":74,"∇":75,"Δ":76,"𝔇":77,"´":78,"˙":79,"˝":80,"`":81,"˜":82,"⋄":83,"ⅆ":84,"𝔻":85,"¨":86,"⃜":87,"≐":88,"∯":89,"¨":90,"⇓":91,"⇐":92,"⇔":93,"⫤":94,"⟸":95,"⟺":96,"⟹":97,"⇒":98,"⊨":99,"⇑":100,"⇕":101,"∥":102,"↓":103,"⤓":104,"⇵":105,"̑":106,"⥐":107,"⥞":108,"↽":109,"⥖":110,"⥟":111,"⇁":112,"⥗":113,"⊤":114,"↧":115,"⇓":116,"𝒟":117,"Đ":118,"Ŋ":119,"Ð":120,"É":121,"Ě":122,"Ê":123,"Э":124,"Ė":125,"𝔈":126,"È":127,"∈":128,"Ē":129,"◻":130,"▫":131,"Ę":132,"𝔼":133,"Ε":134,"⩵":135,"≂":136,"⇌":137,"ℰ":138,"⩳":139,"Η":140,"Ë":141,"∃":142,"ⅇ":143,"Ф":144,"𝔉":145,"◼":146,"▪":147,"𝔽":148,"∀":149,"ℱ":150,"ℱ":151,"Ѓ":152,">":153,"Γ":154,"Ϝ":155,"Ğ":156,"Ģ":157,"Ĝ":158,"Г":159,"Ġ":160,"𝔊":161,"⋙":162,"𝔾":163,"≥":164,"⋛":165,"≧":166,"⪢":167,"≷":168,"⩾":169,"≳":170,"𝒢":171,"≫":172,"Ъ":173,"ˇ":174,"^":175,"Ĥ":176,"ℌ":177,"ℋ":178,"ℍ":179,"─":180,"ℋ":181,"Ħ":182,"≎":183,"≏":184,"Е":185,"IJ":186,"Ё":187,"Í":188,"Î":189,"И":190,"İ":191,"ℑ":192,"Ì":193,"ℑ":194,"Ī":195,"ⅈ":196,"⇒":197,"∬":198,"∫":199,"⋂":200,"⁣":201,"⁢":202,"Į":203,"𝕀":204,"Ι":205,"ℐ":206,"Ĩ":207,"І":208,"Ï":209,"Ĵ":210,"Й":211,"𝔍":212,"𝕁":213,"𝒥":214,"Ј":215,"Є":216,"Х":217,"Ќ":218,"Κ":219,"Ķ":220,"К":221,"𝔎":222,"𝕂":223,"𝒦":224,"Љ":225,"<":226,"Ĺ":227,"Λ":228,"⟪":229,"ℒ":230,"↞":231,"Ľ":232,"Ļ":233,"Л":234,"⟨":235,"←":236,"⇤":237,"⇆":238,"⌈":239,"⟦":240,"⥡":241,"⇃":242,"⥙":243,"⌊":244,"↔":245,"⥎":246,"⊣":247,"↤":248,"⥚":249,"⊲":250,"⧏":251,"⊴":252,"⥑":253,"⥠":254,"↿":255,"⥘":256,"↼":257,"⥒":258,"⇐":259,"⇔":260,"⋚":261,"≦":262,"≶":263,"⪡":264,"⩽":265,"≲":266,"𝔏":267,"⋘":268,"⇚":269,"Ŀ":270,"⟵":271,"⟷":272,"⟶":273,"⟸":274,"⟺":275,"⟹":276,"𝕃":277,"↙":278,"↘":279,"ℒ":280,"↰":281,"Ł":282,"≪":283,"⤅":284,"М":285," ":286,"ℳ":287,"𝔐":288,"∓":289,"𝕄":290,"ℳ":291,"Μ":292,"Њ":293,"Ń":294,"Ň":295,"Ņ":296,"Н":297,"​":298,"​":299,"​":300,"​":301,"≫":302,"≪":303," ":304,"𝔑":305,"⁠":306," ":307,"ℕ":308,"⫬":309,"≢":310,"≭":311,"∦":312,"∉":313,"≠":314,"≂̸":315,"∄":316,"≯":317,"≱":318,"≧̸":319,"≫̸":320,"≹":321,"⩾̸":322,"≵":323,"≎̸":324,"≏̸":325,"⋪":326,"⧏̸":327,"⋬":328,"≮":329,"≰":330,"≸":331,"≪̸":332,"⩽̸":333,"≴":334,"⪢̸":335,"⪡̸":336,"⊀":337,"⪯̸":338,"⋠":339,"∌":340,"⋫":341,"⧐̸":342,"⋭":343,"⊏̸":344,"⋢":345,"⊐̸":346,"⋣":347,"⊂⃒":348,"⊈":349,"⊁":350,"⪰̸":351,"⋡":352,"≿̸":353,"⊃⃒":354,"⊉":355,"≁":356,"≄":357,"≇":358,"≉":359,"∤":360,"𝒩":361,"Ñ":362,"Ν":363,"Œ":364,"Ó":365,"Ô":366,"О":367,"Ő":368,"𝔒":369,"Ò":370,"Ō":371,"Ω":372,"Ο":373,"𝕆":374,"“":375,"‘":376,"⩔":377,"𝒪":378,"Ø":379,"Õ":380,"⨷":381,"Ö":382,"‾":383,"⏞":384,"⎴":385,"⏜":386,"∂":387,"П":388,"𝔓":389,"Φ":390,"Π":391,"±":392,"ℌ":393,"ℙ":394,"⪻":395,"≺":396,"⪯":397,"≼":398,"≾":399,"″":400,"∏":401,"∷":402,"∝":403,"𝒫":404,"Ψ":405,""":406,"𝔔":407,"ℚ":408,"𝒬":409,"⤐":410,"®":411,"Ŕ":412,"⟫":413,"↠":414,"⤖":415,"Ř":416,"Ŗ":417,"Р":418,"ℜ":419,"∋":420,"⇋":421,"⥯":422,"ℜ":423,"Ρ":424,"⟩":425,"→":426,"⇥":427,"⇄":428,"⌉":429,"⟧":430,"⥝":431,"⇂":432,"⥕":433,"⌋":434,"⊢":435,"↦":436,"⥛":437,"⊳":438,"⧐":439,"⊵":440,"⥏":441,"⥜":442,"↾":443,"⥔":444,"⇀":445,"⥓":446,"⇒":447,"ℝ":448,"⥰":449,"⇛":450,"ℛ":451,"↱":452,"⧴":453,"Щ":454,"Ш":455,"Ь":456,"Ś":457,"⪼":458,"Š":459,"Ş":460,"Ŝ":461,"С":462,"𝔖":463,"↓":464,"←":465,"→":466,"↑":467,"Σ":468,"∘":469,"𝕊":470,"√":471,"□":472,"⊓":473,"⊏":474,"⊑":475,"⊐":476,"⊒":477,"⊔":478,"𝒮":479,"⋆":480,"⋐":481,"⋐":482,"⊆":483,"≻":484,"⪰":485,"≽":486,"≿":487,"∋":488,"∑":489,"⋑":490,"⊃":491,"⊇":492,"⋑":493,"Þ":494,"™":495,"Ћ":496,"Ц":497," ":498,"Τ":499,"Ť":500,"Ţ":501,"Т":502,"𝔗":503,"∴":504,"Θ":505,"  ":506," ":507,"∼":508,"≃":509,"≅":510,"≈":511,"𝕋":512,"⃛":513,"𝒯":514,"Ŧ":515,"Ú":516,"↟":517,"⥉":518,"Ў":519,"Ŭ":520,"Û":521,"У":522,"Ű":523,"𝔘":524,"Ù":525,"Ū":526,"_":527,"⏟":528,"⎵":529,"⏝":530,"⋃":531,"⊎":532,"Ų":533,"𝕌":534,"↑":535,"⤒":536,"⇅":537,"↕":538,"⥮":539,"⊥":540,"↥":541,"⇑":542,"⇕":543,"↖":544,"↗":545,"ϒ":546,"Υ":547,"Ů":548,"𝒰":549,"Ũ":550,"Ü":551,"⊫":552,"⫫":553,"В":554,"⊩":555,"⫦":556,"⋁":557,"‖":558,"‖":559,"∣":560,"|":561,"❘":562,"≀":563," ":564,"𝔙":565,"𝕍":566,"𝒱":567,"⊪":568,"Ŵ":569,"⋀":570,"𝔚":571,"𝕎":572,"𝒲":573,"𝔛":574,"Ξ":575,"𝕏":576,"𝒳":577,"Я":578,"Ї":579,"Ю":580,"Ý":581,"Ŷ":582,"Ы":583,"𝔜":584,"𝕐":585,"𝒴":586,"Ÿ":587,"Ж":588,"Ź":589,"Ž":590,"З":591,"Ż":592,"​":593,"Ζ":594,"ℨ":595,"ℤ":596,"𝒵":597,"á":598,"ă":599,"∾":600,"∾̳":601,"∿":602,"â":603,"´":604,"а":605,"æ":606,"⁡":607,"𝔞":608,"à":609,"ℵ":610,"ℵ":611,"α":612,"ā":613,"⨿":614,"&":615,"∧":616,"⩕":617,"⩜":618,"⩘":619,"⩚":620,"∠":621,"⦤":622,"∠":623,"∡":624,"⦨":625,"⦩":626,"⦪":627,"⦫":628,"⦬":629,"⦭":630,"⦮":631,"⦯":632,"∟":633,"⊾":634,"⦝":635,"∢":636,"Å":637,"⍼":638,"ą":639,"𝕒":640,"≈":641,"⩰":642,"⩯":643,"≊":644,"≋":645,"'":646,"≈":647,"≊":648,"å":649,"𝒶":650,"*":651,"≈":652,"≍":653,"ã":654,"ä":655,"∳":656,"⨑":657,"⫭":658,"≌":659,"϶":660,"‵":661,"∽":662,"⋍":663,"⊽":664,"⌅":665,"⌅":666,"⎵":667,"⎶":668,"≌":669,"б":670,"„":671,"∵":672,"∵":673,"⦰":674,"϶":675,"ℬ":676,"β":677,"ℶ":678,"≬":679,"𝔟":680,"⋂":681,"◯":682,"⋃":683,"⨀":684,"⨁":685,"⨂":686,"⨆":687,"★":688,"▽":689,"△":690,"⨄":691,"⋁":692,"⋀":693,"⤍":694,"⧫":695,"▪":696,"▴":697,"▾":698,"◂":699,"▸":700,"␣":701,"▒":702,"░":703,"▓":704,"█":705,"=⃥":706,"≡⃥":707,"⌐":708,"𝕓":709,"⊥":710,"⊥":711,"⋈":712,"╗":713,"╔":714,"╖":715,"╓":716,"═":717,"╦":718,"╩":719,"╤":720,"╧":721,"╝":722,"╚":723,"╜":724,"╙":725,"║":726,"╬":727,"╣":728,"╠":729,"╫":730,"╢":731,"╟":732,"⧉":733,"╕":734,"╒":735,"┐":736,"┌":737,"─":738,"╥":739,"╨":740,"┬":741,"┴":742,"⊟":743,"⊞":744,"⊠":745,"╛":746,"╘":747,"┘":748,"└":749,"│":750,"╪":751,"╡":752,"╞":753,"┼":754,"┤":755,"├":756,"‵":757,"˘":758,"¦":759,"𝒷":760,"⁏":761,"∽":762,"⋍":763,"\":764,"⧅":765,"⟈":766,"•":767,"•":768,"≎":769,"⪮":770,"≏":771,"≏":772,"ć":773,"∩":774,"⩄":775,"⩉":776,"⩋":777,"⩇":778,"⩀":779,"∩︀":780,"⁁":781,"ˇ":782,"⩍":783,"č":784,"ç":785,"ĉ":786,"⩌":787,"⩐":788,"ċ":789,"¸":790,"⦲":791,"¢":792,"·":793,"𝔠":794,"ч":795,"✓":796,"✓":797,"χ":798,"○":799,"⧃":800,"ˆ":801,"≗":802,"↺":803,"↻":804,"®":805,"Ⓢ":806,"⊛":807,"⊚":808,"⊝":809,"≗":810,"⨐":811,"⫯":812,"⧂":813,"♣":814,"♣":815,":":816,"≔":817,"≔":818,",":819,"@":820,"∁":821,"∘":822,"∁":823,"ℂ":824,"≅":825,"⩭":826,"∮":827,"𝕔":828,"∐":829,"©":830,"℗":831,"↵":832,"✗":833,"𝒸":834,"⫏":835,"⫑":836,"⫐":837,"⫒":838,"⋯":839,"⤸":840,"⤵":841,"⋞":842,"⋟":843,"↶":844,"⤽":845,"∪":846,"⩈":847,"⩆":848,"⩊":849,"⊍":850,"⩅":851,"∪︀":852,"↷":853,"⤼":854,"⋞":855,"⋟":856,"⋎":857,"⋏":858,"¤":859,"↶":860,"↷":861,"⋎":862,"⋏":863,"∲":864,"∱":865,"⌭":866,"⇓":867,"⥥":868,"†":869,"ℸ":870,"↓":871,"‐":872,"⊣":873,"⤏":874,"˝":875,"ď":876,"д":877,"ⅆ":878,"‡":879,"⇊":880,"⩷":881,"°":882,"δ":883,"⦱":884,"⥿":885,"𝔡":886,"⇃":887,"⇂":888,"⋄":889,"⋄":890,"♦":891,"♦":892,"¨":893,"ϝ":894,"⋲":895,"÷":896,"÷":897,"⋇":898,"⋇":899,"ђ":900,"⌞":901,"⌍":902,"$":903,"𝕕":904,"˙":905,"≐":906,"≑":907,"∸":908,"∔":909,"⊡":910,"⌆":911,"↓":912,"⇊":913,"⇃":914,"⇂":915,"⤐":916,"⌟":917,"⌌":918,"𝒹":919,"ѕ":920,"⧶":921,"đ":922,"⋱":923,"▿":924,"▾":925,"⇵":926,"⥯":927,"⦦":928,"џ":929,"⟿":930,"⩷":931,"≑":932,"é":933,"⩮":934,"ě":935,"≖":936,"ê":937,"≕":938,"э":939,"ė":940,"ⅇ":941,"≒":942,"𝔢":943,"⪚":944,"è":945,"⪖":946,"⪘":947,"⪙":948,"⏧":949,"ℓ":950,"⪕":951,"⪗":952,"ē":953,"∅":954,"∅":955,"∅":956," ":957," ":958," ":959,"ŋ":960," ":961,"ę":962,"𝕖":963,"⋕":964,"⧣":965,"⩱":966,"ε":967,"ε":968,"ϵ":969,"≖":970,"≕":971,"≂":972,"⪖":973,"⪕":974,"=":975,"≟":976,"≡":977,"⩸":978,"⧥":979,"≓":980,"⥱":981,"ℯ":982,"≐":983,"≂":984,"η":985,"ð":986,"ë":987,"€":988,"!":989,"∃":990,"ℰ":991,"ⅇ":992,"≒":993,"ф":994,"♀":995,"ffi":996,"ff":997,"ffl":998,"𝔣":999,"fi":1000,"fj":1001,"♭":1002,"fl":1003,"▱":1004,"ƒ":1005,"𝕗":1006,"∀":1007,"⋔":1008,"⫙":1009,"⨍":1010,"½":1011,"⅓":1012,"¼":1013,"⅕":1014,"⅙":1015,"⅛":1016,"⅔":1017,"⅖":1018,"¾":1019,"⅗":1020,"⅜":1021,"⅘":1022,"⅚":1023,"⅝":1024,"⅞":1025,"⁄":1026,"⌢":1027,"𝒻":1028,"≧":1029,"⪌":1030,"ǵ":1031,"γ":1032,"ϝ":1033,"⪆":1034,"ğ":1035,"ĝ":1036,"г":1037,"ġ":1038,"≥":1039,"⋛":1040,"≥":1041,"≧":1042,"⩾":1043,"⩾":1044,"⪩":1045,"⪀":1046,"⪂":1047,"⪄":1048,"⋛︀":1049,"⪔":1050,"𝔤":1051,"≫":1052,"⋙":1053,"ℷ":1054,"ѓ":1055,"≷":1056,"⪒":1057,"⪥":1058,"⪤":1059,"≩":1060,"⪊":1061,"⪊":1062,"⪈":1063,"⪈":1064,"≩":1065,"⋧":1066,"𝕘":1067,"`":1068,"ℊ":1069,"≳":1070,"⪎":1071,"⪐":1072,">":1073,"⪧":1074,"⩺":1075,"⋗":1076,"⦕":1077,"⩼":1078,"⪆":1079,"⥸":1080,"⋗":1081,"⋛":1082,"⪌":1083,"≷":1084,"≳":1085,"≩︀":1086,"≩︀":1087,"⇔":1088," ":1089,"½":1090,"ℋ":1091,"ъ":1092,"↔":1093,"⥈":1094,"↭":1095,"ℏ":1096,"ĥ":1097,"♥":1098,"♥":1099,"…":1100,"⊹":1101,"𝔥":1102,"⤥":1103,"⤦":1104,"⇿":1105,"∻":1106,"↩":1107,"↪":1108,"𝕙":1109,"―":1110,"𝒽":1111,"ℏ":1112,"ħ":1113,"⁃":1114,"‐":1115,"í":1116,"⁣":1117,"î":1118,"и":1119,"е":1120,"¡":1121,"⇔":1122,"𝔦":1123,"ì":1124,"ⅈ":1125,"⨌":1126,"∭":1127,"⧜":1128,"℩":1129,"ij":1130,"ī":1131,"ℑ":1132,"ℐ":1133,"ℑ":1134,"ı":1135,"⊷":1136,"Ƶ":1137,"∈":1138,"℅":1139,"∞":1140,"⧝":1141,"ı":1142,"∫":1143,"⊺":1144,"ℤ":1145,"⊺":1146,"⨗":1147,"⨼":1148,"ё":1149,"į":1150,"𝕚":1151,"ι":1152,"⨼":1153,"¿":1154,"𝒾":1155,"∈":1156,"⋹":1157,"⋵":1158,"⋴":1159,"⋳":1160,"∈":1161,"⁢":1162,"ĩ":1163,"і":1164,"ï":1165,"ĵ":1166,"й":1167,"𝔧":1168,"ȷ":1169,"𝕛":1170,"𝒿":1171,"ј":1172,"є":1173,"κ":1174,"ϰ":1175,"ķ":1176,"к":1177,"𝔨":1178,"ĸ":1179,"х":1180,"ќ":1181,"𝕜":1182,"𝓀":1183,"⇚":1184,"⇐":1185,"⤛":1186,"⤎":1187,"≦":1188,"⪋":1189,"⥢":1190,"ĺ":1191,"⦴":1192,"ℒ":1193,"λ":1194,"⟨":1195,"⦑":1196,"⟨":1197,"⪅":1198,"«":1199,"←":1200,"⇤":1201,"⤟":1202,"⤝":1203,"↩":1204,"↫":1205,"⤹":1206,"⥳":1207,"↢":1208,"⪫":1209,"⤙":1210,"⪭":1211,"⪭︀":1212,"⤌":1213,"❲":1214,"{":1215,"[":1216,"⦋":1217,"⦏":1218,"⦍":1219,"ľ":1220,"ļ":1221,"⌈":1222,"{":1223,"л":1224,"⤶":1225,"“":1226,"„":1227,"⥧":1228,"⥋":1229,"↲":1230,"≤":1231,"←":1232,"↢":1233,"↽":1234,"↼":1235,"⇇":1236,"↔":1237,"⇆":1238,"⇋":1239,"↭":1240,"⋋":1241,"⋚":1242,"≤":1243,"≦":1244,"⩽":1245,"⩽":1246,"⪨":1247,"⩿":1248,"⪁":1249,"⪃":1250,"⋚︀":1251,"⪓":1252,"⪅":1253,"⋖":1254,"⋚":1255,"⪋":1256,"≶":1257,"≲":1258,"⥼":1259,"⌊":1260,"𝔩":1261,"≶":1262,"⪑":1263,"↽":1264,"↼":1265,"⥪":1266,"▄":1267,"љ":1268,"≪":1269,"⇇":1270,"⌞":1271,"⥫":1272,"◺":1273,"ŀ":1274,"⎰":1275,"⎰":1276,"≨":1277,"⪉":1278,"⪉":1279,"⪇":1280,"⪇":1281,"≨":1282,"⋦":1283,"⟬":1284,"⇽":1285,"⟦":1286,"⟵":1287,"⟷":1288,"⟼":1289,"⟶":1290,"↫":1291,"↬":1292,"⦅":1293,"𝕝":1294,"⨭":1295,"⨴":1296,"∗":1297,"_":1298,"◊":1299,"◊":1300,"⧫":1301,"(":1302,"⦓":1303,"⇆":1304,"⌟":1305,"⇋":1306,"⥭":1307,"‎":1308,"⊿":1309,"‹":1310,"𝓁":1311,"↰":1312,"≲":1313,"⪍":1314,"⪏":1315,"[":1316,"‘":1317,"‚":1318,"ł":1319,"<":1320,"⪦":1321,"⩹":1322,"⋖":1323,"⋋":1324,"⋉":1325,"⥶":1326,"⩻":1327,"⦖":1328,"◃":1329,"⊴":1330,"◂":1331,"⥊":1332,"⥦":1333,"≨︀":1334,"≨︀":1335,"∺":1336,"¯":1337,"♂":1338,"✠":1339,"✠":1340,"↦":1341,"↦":1342,"↧":1343,"↤":1344,"↥":1345,"▮":1346,"⨩":1347,"м":1348,"—":1349,"∡":1350,"𝔪":1351,"℧":1352,"µ":1353,"∣":1354,"*":1355,"⫰":1356,"·":1357,"−":1358,"⊟":1359,"∸":1360,"⨪":1361,"⫛":1362,"…":1363,"∓":1364,"⊧":1365,"𝕞":1366,"∓":1367,"𝓂":1368,"∾":1369,"μ":1370,"⊸":1371,"⊸":1372,"⋙̸":1373,"≫⃒":1374,"≫̸":1375,"⇍":1376,"⇎":1377,"⋘̸":1378,"≪⃒":1379,"≪̸":1380,"⇏":1381,"⊯":1382,"⊮":1383,"∇":1384,"ń":1385,"∠⃒":1386,"≉":1387,"⩰̸":1388,"≋̸":1389,"ʼn":1390,"≉":1391,"♮":1392,"♮":1393,"ℕ":1394," ":1395,"≎̸":1396,"≏̸":1397,"⩃":1398,"ň":1399,"ņ":1400,"≇":1401,"⩭̸":1402,"⩂":1403,"н":1404,"–":1405,"≠":1406,"⇗":1407,"⤤":1408,"↗":1409,"↗":1410,"≐̸":1411,"≢":1412,"⤨":1413,"≂̸":1414,"∄":1415,"∄":1416,"𝔫":1417,"≧̸":1418,"≱":1419,"≱":1420,"≧̸":1421,"⩾̸":1422,"⩾̸":1423,"≵":1424,"≯":1425,"≯":1426,"⇎":1427,"↮":1428,"⫲":1429,"∋":1430,"⋼":1431,"⋺":1432,"∋":1433,"њ":1434,"⇍":1435,"≦̸":1436,"↚":1437,"‥":1438,"≰":1439,"↚":1440,"↮":1441,"≰":1442,"≦̸":1443,"⩽̸":1444,"⩽̸":1445,"≮":1446,"≴":1447,"≮":1448,"⋪":1449,"⋬":1450,"∤":1451,"𝕟":1452,"¬":1453,"∉":1454,"⋹̸":1455,"⋵̸":1456,"∉":1457,"⋷":1458,"⋶":1459,"∌":1460,"∌":1461,"⋾":1462,"⋽":1463,"∦":1464,"∦":1465,"⫽⃥":1466,"∂̸":1467,"⨔":1468,"⊀":1469,"⋠":1470,"⪯̸":1471,"⊀":1472,"⪯̸":1473,"⇏":1474,"↛":1475,"⤳̸":1476,"↝̸":1477,"↛":1478,"⋫":1479,"⋭":1480,"⊁":1481,"⋡":1482,"⪰̸":1483,"𝓃":1484,"∤":1485,"∦":1486,"≁":1487,"≄":1488,"≄":1489,"∤":1490,"∦":1491,"⋢":1492,"⋣":1493,"⊄":1494,"⫅̸":1495,"⊈":1496,"⊂⃒":1497,"⊈":1498,"⫅̸":1499,"⊁":1500,"⪰̸":1501,"⊅":1502,"⫆̸":1503,"⊉":1504,"⊃⃒":1505,"⊉":1506,"⫆̸":1507,"≹":1508,"ñ":1509,"≸":1510,"⋪":1511,"⋬":1512,"⋫":1513,"⋭":1514,"ν":1515,"#":1516,"№":1517," ":1518,"⊭":1519,"⤄":1520,"≍⃒":1521,"⊬":1522,"≥⃒":1523,">⃒":1524,"⧞":1525,"⤂":1526,"≤⃒":1527,"<⃒":1528,"⊴⃒":1529,"⤃":1530,"⊵⃒":1531,"∼⃒":1532,"⇖":1533,"⤣":1534,"↖":1535,"↖":1536,"⤧":1537,"Ⓢ":1538,"ó":1539,"⊛":1540,"⊚":1541,"ô":1542,"о":1543,"⊝":1544,"ő":1545,"⨸":1546,"⊙":1547,"⦼":1548,"œ":1549,"⦿":1550,"𝔬":1551,"˛":1552,"ò":1553,"⧁":1554,"⦵":1555,"Ω":1556,"∮":1557,"↺":1558,"⦾":1559,"⦻":1560,"‾":1561,"⧀":1562,"ō":1563,"ω":1564,"ο":1565,"⦶":1566,"⊖":1567,"𝕠":1568,"⦷":1569,"⦹":1570,"⊕":1571,"∨":1572,"↻":1573,"⩝":1574,"ℴ":1575,"ℴ":1576,"ª":1577,"º":1578,"⊶":1579,"⩖":1580,"⩗":1581,"⩛":1582,"ℴ":1583,"ø":1584,"⊘":1585,"õ":1586,"⊗":1587,"⨶":1588,"ö":1589,"⌽":1590,"∥":1591,"¶":1592,"∥":1593,"⫳":1594,"⫽":1595,"∂":1596,"п":1597,"%":1598,".":1599,"‰":1600,"⊥":1601,"‱":1602,"𝔭":1603,"φ":1604,"ϕ":1605,"ℳ":1606,"☎":1607,"π":1608,"⋔":1609,"ϖ":1610,"ℏ":1611,"ℎ":1612,"ℏ":1613,"+":1614,"⨣":1615,"⊞":1616,"⨢":1617,"∔":1618,"⨥":1619,"⩲":1620,"±":1621,"⨦":1622,"⨧":1623,"±":1624,"⨕":1625,"𝕡":1626,"£":1627,"≺":1628,"⪳":1629,"⪷":1630,"≼":1631,"⪯":1632,"≺":1633,"⪷":1634,"≼":1635,"⪯":1636,"⪹":1637,"⪵":1638,"⋨":1639,"≾":1640,"′":1641,"ℙ":1642,"⪵":1643,"⪹":1644,"⋨":1645,"∏":1646,"⌮":1647,"⌒":1648,"⌓":1649,"∝":1650,"∝":1651,"≾":1652,"⊰":1653,"𝓅":1654,"ψ":1655," ":1656,"𝔮":1657,"⨌":1658,"𝕢":1659,"⁗":1660,"𝓆":1661,"ℍ":1662,"⨖":1663,"?":1664,"≟":1665,""":1666,"⇛":1667,"⇒":1668,"⤜":1669,"⤏":1670,"⥤":1671,"∽̱":1672,"ŕ":1673,"√":1674,"⦳":1675,"⟩":1676,"⦒":1677,"⦥":1678,"⟩":1679,"»":1680,"→":1681,"⥵":1682,"⇥":1683,"⤠":1684,"⤳":1685,"⤞":1686,"↪":1687,"↬":1688,"⥅":1689,"⥴":1690,"↣":1691,"↝":1692,"⤚":1693,"∶":1694,"ℚ":1695,"⤍":1696,"❳":1697,"}":1698,"]":1699,"⦌":1700,"⦎":1701,"⦐":1702,"ř":1703,"ŗ":1704,"⌉":1705,"}":1706,"р":1707,"⤷":1708,"⥩":1709,"”":1710,"”":1711,"↳":1712,"ℜ":1713,"ℛ":1714,"ℜ":1715,"ℝ":1716,"▭":1717,"®":1718,"⥽":1719,"⌋":1720,"𝔯":1721,"⇁":1722,"⇀":1723,"⥬":1724,"ρ":1725,"ϱ":1726,"→":1727,"↣":1728,"⇁":1729,"⇀":1730,"⇄":1731,"⇌":1732,"⇉":1733,"↝":1734,"⋌":1735,"˚":1736,"≓":1737,"⇄":1738,"⇌":1739,"‏":1740,"⎱":1741,"⎱":1742,"⫮":1743,"⟭":1744,"⇾":1745,"⟧":1746,"⦆":1747,"𝕣":1748,"⨮":1749,"⨵":1750,")":1751,"⦔":1752,"⨒":1753,"⇉":1754,"›":1755,"𝓇":1756,"↱":1757,"]":1758,"’":1759,"’":1760,"⋌":1761,"⋊":1762,"▹":1763,"⊵":1764,"▸":1765,"⧎":1766,"⥨":1767,"℞":1768,"ś":1769,"‚":1770,"≻":1771,"⪴":1772,"⪸":1773,"š":1774,"≽":1775,"⪰":1776,"ş":1777,"ŝ":1778,"⪶":1779,"⪺":1780,"⋩":1781,"⨓":1782,"≿":1783,"с":1784,"⋅":1785,"⊡":1786,"⩦":1787,"⇘":1788,"⤥":1789,"↘":1790,"↘":1791,"§":1792,";":1793,"⤩":1794,"∖":1795,"∖":1796,"✶":1797,"𝔰":1798,"⌢":1799,"♯":1800,"щ":1801,"ш":1802,"∣":1803,"∥":1804,"­":1805,"σ":1806,"ς":1807,"ς":1808,"∼":1809,"⩪":1810,"≃":1811,"≃":1812,"⪞":1813,"⪠":1814,"⪝":1815,"⪟":1816,"≆":1817,"⨤":1818,"⥲":1819,"←":1820,"∖":1821,"⨳":1822,"⧤":1823,"∣":1824,"⌣":1825,"⪪":1826,"⪬":1827,"⪬︀":1828,"ь":1829,"/":1830,"⧄":1831,"⌿":1832,"𝕤":1833,"♠":1834,"♠":1835,"∥":1836,"⊓":1837,"⊓︀":1838,"⊔":1839,"⊔︀":1840,"⊏":1841,"⊑":1842,"⊏":1843,"⊑":1844,"⊐":1845,"⊒":1846,"⊐":1847,"⊒":1848,"□":1849,"□":1850,"▪":1851,"▪":1852,"→":1853,"𝓈":1854,"∖":1855,"⌣":1856,"⋆":1857,"☆":1858,"★":1859,"ϵ":1860,"ϕ":1861,"¯":1862,"⊂":1863,"⫅":1864,"⪽":1865,"⊆":1866,"⫃":1867,"⫁":1868,"⫋":1869,"⊊":1870,"⪿":1871,"⥹":1872,"⊂":1873,"⊆":1874,"⫅":1875,"⊊":1876,"⫋":1877,"⫇":1878,"⫕":1879,"⫓":1880,"≻":1881,"⪸":1882,"≽":1883,"⪰":1884,"⪺":1885,"⪶":1886,"⋩":1887,"≿":1888,"∑":1889,"♪":1890,"¹":1891,"²":1892,"³":1893,"⊃":1894,"⫆":1895,"⪾":1896,"⫘":1897,"⊇":1898,"⫄":1899,"⟉":1900,"⫗":1901,"⥻":1902,"⫂":1903,"⫌":1904,"⊋":1905,"⫀":1906,"⊃":1907,"⊇":1908,"⫆":1909,"⊋":1910,"⫌":1911,"⫈":1912,"⫔":1913,"⫖":1914,"⇙":1915,"⤦":1916,"↙":1917,"↙":1918,"⤪":1919,"ß":1920,"⌖":1921,"τ":1922,"⎴":1923,"ť":1924,"ţ":1925,"т":1926,"⃛":1927,"⌕":1928,"𝔱":1929,"∴":1930,"∴":1931,"θ":1932,"ϑ":1933,"ϑ":1934,"≈":1935,"∼":1936," ":1937,"≈":1938,"∼":1939,"þ":1940,"˜":1941,"×":1942,"⊠":1943,"⨱":1944,"⨰":1945,"∭":1946,"⤨":1947,"⊤":1948,"⌶":1949,"⫱":1950,"𝕥":1951,"⫚":1952,"⤩":1953,"‴":1954,"™":1955,"▵":1956,"▿":1957,"◃":1958,"⊴":1959,"≜":1960,"▹":1961,"⊵":1962,"◬":1963,"≜":1964,"⨺":1965,"⨹":1966,"⧍":1967,"⨻":1968,"⏢":1969,"𝓉":1970,"ц":1971,"ћ":1972,"ŧ":1973,"≬":1974,"↞":1975,"↠":1976,"⇑":1977,"⥣":1978,"ú":1979,"↑":1980,"ў":1981,"ŭ":1982,"û":1983,"у":1984,"⇅":1985,"ű":1986,"⥮":1987,"⥾":1988,"𝔲":1989,"ù":1990,"↿":1991,"↾":1992,"▀":1993,"⌜":1994,"⌜":1995,"⌏":1996,"◸":1997,"ū":1998,"¨":1999,"ų":2000,"𝕦":2001,"↑":2002,"↕":2003,"↿":2004,"↾":2005,"⊎":2006,"υ":2007,"ϒ":2008,"υ":2009,"⇈":2010,"⌝":2011,"⌝":2012,"⌎":2013,"ů":2014,"◹":2015,"𝓊":2016,"⋰":2017,"ũ":2018,"▵":2019,"▴":2020,"⇈":2021,"ü":2022,"⦧":2023,"⇕":2024,"⫨":2025,"⫩":2026,"⊨":2027,"⦜":2028,"ϵ":2029,"ϰ":2030,"∅":2031,"ϕ":2032,"ϖ":2033,"∝":2034,"↕":2035,"ϱ":2036,"ς":2037,"⊊︀":2038,"⫋︀":2039,"⊋︀":2040,"⫌︀":2041,"ϑ":2042,"⊲":2043,"⊳":2044,"в":2045,"⊢":2046,"∨":2047,"⊻":2048,"≚":2049,"⋮":2050,"|":2051,"|":2052,"𝔳":2053,"⊲":2054,"⊂⃒":2055,"⊃⃒":2056,"𝕧":2057,"∝":2058,"⊳":2059,"𝓋":2060,"⫋︀":2061,"⊊︀":2062,"⫌︀":2063,"⊋︀":2064,"⦚":2065,"ŵ":2066,"⩟":2067,"∧":2068,"≙":2069,"℘":2070,"𝔴":2071,"𝕨":2072,"℘":2073,"≀":2074,"≀":2075,"𝓌":2076,"⋂":2077,"◯":2078,"⋃":2079,"▽":2080,"𝔵":2081,"⟺":2082,"⟷":2083,"ξ":2084,"⟸":2085,"⟵":2086,"⟼":2087,"⋻":2088,"⨀":2089,"𝕩":2090,"⨁":2091,"⨂":2092,"⟹":2093,"⟶":2094,"𝓍":2095,"⨆":2096,"⨄":2097,"△":2098,"⋁":2099,"⋀":2100,"ý":2101,"я":2102,"ŷ":2103,"ы":2104,"¥":2105,"𝔶":2106,"ї":2107,"𝕪":2108,"𝓎":2109,"ю":2110,"ÿ":2111,"ź":2112,"ž":2113,"з":2114,"ż":2115,"ℨ":2116,"ζ":2117,"𝔷":2118,"ж":2119,"⇝":2120,"𝕫":2121,"𝓏":2122,"‍":2123,"‌":2124} -B.u0=new A.bG(B.LY,["\xc6","&","\xc1","\u0102","\xc2","\u0410","\ud835\udd04","\xc0","\u0391","\u0100","\u2a53","\u0104","\ud835\udd38","\u2061","\xc5","\ud835\udc9c","\u2254","\xc3","\xc4","\u2216","\u2ae7","\u2306","\u0411","\u2235","\u212c","\u0392","\ud835\udd05","\ud835\udd39","\u02d8","\u212c","\u224e","\u0427","\xa9","\u0106","\u22d2","\u2145","\u212d","\u010c","\xc7","\u0108","\u2230","\u010a","\xb8","\xb7","\u212d","\u03a7","\u2299","\u2296","\u2295","\u2297","\u2232","\u201d","\u2019","\u2237","\u2a74","\u2261","\u222f","\u222e","\u2102","\u2210","\u2233","\u2a2f","\ud835\udc9e","\u22d3","\u224d","\u2145","\u2911","\u0402","\u0405","\u040f","\u2021","\u21a1","\u2ae4","\u010e","\u0414","\u2207","\u0394","\ud835\udd07","\xb4","\u02d9","\u02dd","`","\u02dc","\u22c4","\u2146","\ud835\udd3b","\xa8","\u20dc","\u2250","\u222f","\xa8","\u21d3","\u21d0","\u21d4","\u2ae4","\u27f8","\u27fa","\u27f9","\u21d2","\u22a8","\u21d1","\u21d5","\u2225","\u2193","\u2913","\u21f5","\u0311","\u2950","\u295e","\u21bd","\u2956","\u295f","\u21c1","\u2957","\u22a4","\u21a7","\u21d3","\ud835\udc9f","\u0110","\u014a","\xd0","\xc9","\u011a","\xca","\u042d","\u0116","\ud835\udd08","\xc8","\u2208","\u0112","\u25fb","\u25ab","\u0118","\ud835\udd3c","\u0395","\u2a75","\u2242","\u21cc","\u2130","\u2a73","\u0397","\xcb","\u2203","\u2147","\u0424","\ud835\udd09","\u25fc","\u25aa","\ud835\udd3d","\u2200","\u2131","\u2131","\u0403",">","\u0393","\u03dc","\u011e","\u0122","\u011c","\u0413","\u0120","\ud835\udd0a","\u22d9","\ud835\udd3e","\u2265","\u22db","\u2267","\u2aa2","\u2277","\u2a7e","\u2273","\ud835\udca2","\u226b","\u042a","\u02c7","^","\u0124","\u210c","\u210b","\u210d","\u2500","\u210b","\u0126","\u224e","\u224f","\u0415","\u0132","\u0401","\xcd","\xce","\u0418","\u0130","\u2111","\xcc","\u2111","\u012a","\u2148","\u21d2","\u222c","\u222b","\u22c2","\u2063","\u2062","\u012e","\ud835\udd40","\u0399","\u2110","\u0128","\u0406","\xcf","\u0134","\u0419","\ud835\udd0d","\ud835\udd41","\ud835\udca5","\u0408","\u0404","\u0425","\u040c","\u039a","\u0136","\u041a","\ud835\udd0e","\ud835\udd42","\ud835\udca6","\u0409","<","\u0139","\u039b","\u27ea","\u2112","\u219e","\u013d","\u013b","\u041b","\u27e8","\u2190","\u21e4","\u21c6","\u2308","\u27e6","\u2961","\u21c3","\u2959","\u230a","\u2194","\u294e","\u22a3","\u21a4","\u295a","\u22b2","\u29cf","\u22b4","\u2951","\u2960","\u21bf","\u2958","\u21bc","\u2952","\u21d0","\u21d4","\u22da","\u2266","\u2276","\u2aa1","\u2a7d","\u2272","\ud835\udd0f","\u22d8","\u21da","\u013f","\u27f5","\u27f7","\u27f6","\u27f8","\u27fa","\u27f9","\ud835\udd43","\u2199","\u2198","\u2112","\u21b0","\u0141","\u226a","\u2905","\u041c","\u205f","\u2133","\ud835\udd10","\u2213","\ud835\udd44","\u2133","\u039c","\u040a","\u0143","\u0147","\u0145","\u041d","\u200b","\u200b","\u200b","\u200b","\u226b","\u226a","\n","\ud835\udd11","\u2060","\xa0","\u2115","\u2aec","\u2262","\u226d","\u2226","\u2209","\u2260","\u2242\u0338","\u2204","\u226f","\u2271","\u2267\u0338","\u226b\u0338","\u2279","\u2a7e\u0338","\u2275","\u224e\u0338","\u224f\u0338","\u22ea","\u29cf\u0338","\u22ec","\u226e","\u2270","\u2278","\u226a\u0338","\u2a7d\u0338","\u2274","\u2aa2\u0338","\u2aa1\u0338","\u2280","\u2aaf\u0338","\u22e0","\u220c","\u22eb","\u29d0\u0338","\u22ed","\u228f\u0338","\u22e2","\u2290\u0338","\u22e3","\u2282\u20d2","\u2288","\u2281","\u2ab0\u0338","\u22e1","\u227f\u0338","\u2283\u20d2","\u2289","\u2241","\u2244","\u2247","\u2249","\u2224","\ud835\udca9","\xd1","\u039d","\u0152","\xd3","\xd4","\u041e","\u0150","\ud835\udd12","\xd2","\u014c","\u03a9","\u039f","\ud835\udd46","\u201c","\u2018","\u2a54","\ud835\udcaa","\xd8","\xd5","\u2a37","\xd6","\u203e","\u23de","\u23b4","\u23dc","\u2202","\u041f","\ud835\udd13","\u03a6","\u03a0","\xb1","\u210c","\u2119","\u2abb","\u227a","\u2aaf","\u227c","\u227e","\u2033","\u220f","\u2237","\u221d","\ud835\udcab","\u03a8",'"',"\ud835\udd14","\u211a","\ud835\udcac","\u2910","\xae","\u0154","\u27eb","\u21a0","\u2916","\u0158","\u0156","\u0420","\u211c","\u220b","\u21cb","\u296f","\u211c","\u03a1","\u27e9","\u2192","\u21e5","\u21c4","\u2309","\u27e7","\u295d","\u21c2","\u2955","\u230b","\u22a2","\u21a6","\u295b","\u22b3","\u29d0","\u22b5","\u294f","\u295c","\u21be","\u2954","\u21c0","\u2953","\u21d2","\u211d","\u2970","\u21db","\u211b","\u21b1","\u29f4","\u0429","\u0428","\u042c","\u015a","\u2abc","\u0160","\u015e","\u015c","\u0421","\ud835\udd16","\u2193","\u2190","\u2192","\u2191","\u03a3","\u2218","\ud835\udd4a","\u221a","\u25a1","\u2293","\u228f","\u2291","\u2290","\u2292","\u2294","\ud835\udcae","\u22c6","\u22d0","\u22d0","\u2286","\u227b","\u2ab0","\u227d","\u227f","\u220b","\u2211","\u22d1","\u2283","\u2287","\u22d1","\xde","\u2122","\u040b","\u0426","\t","\u03a4","\u0164","\u0162","\u0422","\ud835\udd17","\u2234","\u0398","\u205f\u200a","\u2009","\u223c","\u2243","\u2245","\u2248","\ud835\udd4b","\u20db","\ud835\udcaf","\u0166","\xda","\u219f","\u2949","\u040e","\u016c","\xdb","\u0423","\u0170","\ud835\udd18","\xd9","\u016a","_","\u23df","\u23b5","\u23dd","\u22c3","\u228e","\u0172","\ud835\udd4c","\u2191","\u2912","\u21c5","\u2195","\u296e","\u22a5","\u21a5","\u21d1","\u21d5","\u2196","\u2197","\u03d2","\u03a5","\u016e","\ud835\udcb0","\u0168","\xdc","\u22ab","\u2aeb","\u0412","\u22a9","\u2ae6","\u22c1","\u2016","\u2016","\u2223","|","\u2758","\u2240","\u200a","\ud835\udd19","\ud835\udd4d","\ud835\udcb1","\u22aa","\u0174","\u22c0","\ud835\udd1a","\ud835\udd4e","\ud835\udcb2","\ud835\udd1b","\u039e","\ud835\udd4f","\ud835\udcb3","\u042f","\u0407","\u042e","\xdd","\u0176","\u042b","\ud835\udd1c","\ud835\udd50","\ud835\udcb4","\u0178","\u0416","\u0179","\u017d","\u0417","\u017b","\u200b","\u0396","\u2128","\u2124","\ud835\udcb5","\xe1","\u0103","\u223e","\u223e\u0333","\u223f","\xe2","\xb4","\u0430","\xe6","\u2061","\ud835\udd1e","\xe0","\u2135","\u2135","\u03b1","\u0101","\u2a3f","&","\u2227","\u2a55","\u2a5c","\u2a58","\u2a5a","\u2220","\u29a4","\u2220","\u2221","\u29a8","\u29a9","\u29aa","\u29ab","\u29ac","\u29ad","\u29ae","\u29af","\u221f","\u22be","\u299d","\u2222","\xc5","\u237c","\u0105","\ud835\udd52","\u2248","\u2a70","\u2a6f","\u224a","\u224b","'","\u2248","\u224a","\xe5","\ud835\udcb6","*","\u2248","\u224d","\xe3","\xe4","\u2233","\u2a11","\u2aed","\u224c","\u03f6","\u2035","\u223d","\u22cd","\u22bd","\u2305","\u2305","\u23b5","\u23b6","\u224c","\u0431","\u201e","\u2235","\u2235","\u29b0","\u03f6","\u212c","\u03b2","\u2136","\u226c","\ud835\udd1f","\u22c2","\u25ef","\u22c3","\u2a00","\u2a01","\u2a02","\u2a06","\u2605","\u25bd","\u25b3","\u2a04","\u22c1","\u22c0","\u290d","\u29eb","\u25aa","\u25b4","\u25be","\u25c2","\u25b8","\u2423","\u2592","\u2591","\u2593","\u2588","=\u20e5","\u2261\u20e5","\u2310","\ud835\udd53","\u22a5","\u22a5","\u22c8","\u2557","\u2554","\u2556","\u2553","\u2550","\u2566","\u2569","\u2564","\u2567","\u255d","\u255a","\u255c","\u2559","\u2551","\u256c","\u2563","\u2560","\u256b","\u2562","\u255f","\u29c9","\u2555","\u2552","\u2510","\u250c","\u2500","\u2565","\u2568","\u252c","\u2534","\u229f","\u229e","\u22a0","\u255b","\u2558","\u2518","\u2514","\u2502","\u256a","\u2561","\u255e","\u253c","\u2524","\u251c","\u2035","\u02d8","\xa6","\ud835\udcb7","\u204f","\u223d","\u22cd","\\","\u29c5","\u27c8","\u2022","\u2022","\u224e","\u2aae","\u224f","\u224f","\u0107","\u2229","\u2a44","\u2a49","\u2a4b","\u2a47","\u2a40","\u2229\ufe00","\u2041","\u02c7","\u2a4d","\u010d","\xe7","\u0109","\u2a4c","\u2a50","\u010b","\xb8","\u29b2","\xa2","\xb7","\ud835\udd20","\u0447","\u2713","\u2713","\u03c7","\u25cb","\u29c3","\u02c6","\u2257","\u21ba","\u21bb","\xae","\u24c8","\u229b","\u229a","\u229d","\u2257","\u2a10","\u2aef","\u29c2","\u2663","\u2663",":","\u2254","\u2254",",","@","\u2201","\u2218","\u2201","\u2102","\u2245","\u2a6d","\u222e","\ud835\udd54","\u2210","\xa9","\u2117","\u21b5","\u2717","\ud835\udcb8","\u2acf","\u2ad1","\u2ad0","\u2ad2","\u22ef","\u2938","\u2935","\u22de","\u22df","\u21b6","\u293d","\u222a","\u2a48","\u2a46","\u2a4a","\u228d","\u2a45","\u222a\ufe00","\u21b7","\u293c","\u22de","\u22df","\u22ce","\u22cf","\xa4","\u21b6","\u21b7","\u22ce","\u22cf","\u2232","\u2231","\u232d","\u21d3","\u2965","\u2020","\u2138","\u2193","\u2010","\u22a3","\u290f","\u02dd","\u010f","\u0434","\u2146","\u2021","\u21ca","\u2a77","\xb0","\u03b4","\u29b1","\u297f","\ud835\udd21","\u21c3","\u21c2","\u22c4","\u22c4","\u2666","\u2666","\xa8","\u03dd","\u22f2","\xf7","\xf7","\u22c7","\u22c7","\u0452","\u231e","\u230d","$","\ud835\udd55","\u02d9","\u2250","\u2251","\u2238","\u2214","\u22a1","\u2306","\u2193","\u21ca","\u21c3","\u21c2","\u2910","\u231f","\u230c","\ud835\udcb9","\u0455","\u29f6","\u0111","\u22f1","\u25bf","\u25be","\u21f5","\u296f","\u29a6","\u045f","\u27ff","\u2a77","\u2251","\xe9","\u2a6e","\u011b","\u2256","\xea","\u2255","\u044d","\u0117","\u2147","\u2252","\ud835\udd22","\u2a9a","\xe8","\u2a96","\u2a98","\u2a99","\u23e7","\u2113","\u2a95","\u2a97","\u0113","\u2205","\u2205","\u2205","\u2004","\u2005","\u2003","\u014b","\u2002","\u0119","\ud835\udd56","\u22d5","\u29e3","\u2a71","\u03b5","\u03b5","\u03f5","\u2256","\u2255","\u2242","\u2a96","\u2a95","=","\u225f","\u2261","\u2a78","\u29e5","\u2253","\u2971","\u212f","\u2250","\u2242","\u03b7","\xf0","\xeb","\u20ac","!","\u2203","\u2130","\u2147","\u2252","\u0444","\u2640","\ufb03","\ufb00","\ufb04","\ud835\udd23","\ufb01","fj","\u266d","\ufb02","\u25b1","\u0192","\ud835\udd57","\u2200","\u22d4","\u2ad9","\u2a0d","\xbd","\u2153","\xbc","\u2155","\u2159","\u215b","\u2154","\u2156","\xbe","\u2157","\u215c","\u2158","\u215a","\u215d","\u215e","\u2044","\u2322","\ud835\udcbb","\u2267","\u2a8c","\u01f5","\u03b3","\u03dd","\u2a86","\u011f","\u011d","\u0433","\u0121","\u2265","\u22db","\u2265","\u2267","\u2a7e","\u2a7e","\u2aa9","\u2a80","\u2a82","\u2a84","\u22db\ufe00","\u2a94","\ud835\udd24","\u226b","\u22d9","\u2137","\u0453","\u2277","\u2a92","\u2aa5","\u2aa4","\u2269","\u2a8a","\u2a8a","\u2a88","\u2a88","\u2269","\u22e7","\ud835\udd58","`","\u210a","\u2273","\u2a8e","\u2a90",">","\u2aa7","\u2a7a","\u22d7","\u2995","\u2a7c","\u2a86","\u2978","\u22d7","\u22db","\u2a8c","\u2277","\u2273","\u2269\ufe00","\u2269\ufe00","\u21d4","\u200a","\xbd","\u210b","\u044a","\u2194","\u2948","\u21ad","\u210f","\u0125","\u2665","\u2665","\u2026","\u22b9","\ud835\udd25","\u2925","\u2926","\u21ff","\u223b","\u21a9","\u21aa","\ud835\udd59","\u2015","\ud835\udcbd","\u210f","\u0127","\u2043","\u2010","\xed","\u2063","\xee","\u0438","\u0435","\xa1","\u21d4","\ud835\udd26","\xec","\u2148","\u2a0c","\u222d","\u29dc","\u2129","\u0133","\u012b","\u2111","\u2110","\u2111","\u0131","\u22b7","\u01b5","\u2208","\u2105","\u221e","\u29dd","\u0131","\u222b","\u22ba","\u2124","\u22ba","\u2a17","\u2a3c","\u0451","\u012f","\ud835\udd5a","\u03b9","\u2a3c","\xbf","\ud835\udcbe","\u2208","\u22f9","\u22f5","\u22f4","\u22f3","\u2208","\u2062","\u0129","\u0456","\xef","\u0135","\u0439","\ud835\udd27","\u0237","\ud835\udd5b","\ud835\udcbf","\u0458","\u0454","\u03ba","\u03f0","\u0137","\u043a","\ud835\udd28","\u0138","\u0445","\u045c","\ud835\udd5c","\ud835\udcc0","\u21da","\u21d0","\u291b","\u290e","\u2266","\u2a8b","\u2962","\u013a","\u29b4","\u2112","\u03bb","\u27e8","\u2991","\u27e8","\u2a85","\xab","\u2190","\u21e4","\u291f","\u291d","\u21a9","\u21ab","\u2939","\u2973","\u21a2","\u2aab","\u2919","\u2aad","\u2aad\ufe00","\u290c","\u2772","{","[","\u298b","\u298f","\u298d","\u013e","\u013c","\u2308","{","\u043b","\u2936","\u201c","\u201e","\u2967","\u294b","\u21b2","\u2264","\u2190","\u21a2","\u21bd","\u21bc","\u21c7","\u2194","\u21c6","\u21cb","\u21ad","\u22cb","\u22da","\u2264","\u2266","\u2a7d","\u2a7d","\u2aa8","\u2a7f","\u2a81","\u2a83","\u22da\ufe00","\u2a93","\u2a85","\u22d6","\u22da","\u2a8b","\u2276","\u2272","\u297c","\u230a","\ud835\udd29","\u2276","\u2a91","\u21bd","\u21bc","\u296a","\u2584","\u0459","\u226a","\u21c7","\u231e","\u296b","\u25fa","\u0140","\u23b0","\u23b0","\u2268","\u2a89","\u2a89","\u2a87","\u2a87","\u2268","\u22e6","\u27ec","\u21fd","\u27e6","\u27f5","\u27f7","\u27fc","\u27f6","\u21ab","\u21ac","\u2985","\ud835\udd5d","\u2a2d","\u2a34","\u2217","_","\u25ca","\u25ca","\u29eb","(","\u2993","\u21c6","\u231f","\u21cb","\u296d","\u200e","\u22bf","\u2039","\ud835\udcc1","\u21b0","\u2272","\u2a8d","\u2a8f","[","\u2018","\u201a","\u0142","<","\u2aa6","\u2a79","\u22d6","\u22cb","\u22c9","\u2976","\u2a7b","\u2996","\u25c3","\u22b4","\u25c2","\u294a","\u2966","\u2268\ufe00","\u2268\ufe00","\u223a","\xaf","\u2642","\u2720","\u2720","\u21a6","\u21a6","\u21a7","\u21a4","\u21a5","\u25ae","\u2a29","\u043c","\u2014","\u2221","\ud835\udd2a","\u2127","\xb5","\u2223","*","\u2af0","\xb7","\u2212","\u229f","\u2238","\u2a2a","\u2adb","\u2026","\u2213","\u22a7","\ud835\udd5e","\u2213","\ud835\udcc2","\u223e","\u03bc","\u22b8","\u22b8","\u22d9\u0338","\u226b\u20d2","\u226b\u0338","\u21cd","\u21ce","\u22d8\u0338","\u226a\u20d2","\u226a\u0338","\u21cf","\u22af","\u22ae","\u2207","\u0144","\u2220\u20d2","\u2249","\u2a70\u0338","\u224b\u0338","\u0149","\u2249","\u266e","\u266e","\u2115","\xa0","\u224e\u0338","\u224f\u0338","\u2a43","\u0148","\u0146","\u2247","\u2a6d\u0338","\u2a42","\u043d","\u2013","\u2260","\u21d7","\u2924","\u2197","\u2197","\u2250\u0338","\u2262","\u2928","\u2242\u0338","\u2204","\u2204","\ud835\udd2b","\u2267\u0338","\u2271","\u2271","\u2267\u0338","\u2a7e\u0338","\u2a7e\u0338","\u2275","\u226f","\u226f","\u21ce","\u21ae","\u2af2","\u220b","\u22fc","\u22fa","\u220b","\u045a","\u21cd","\u2266\u0338","\u219a","\u2025","\u2270","\u219a","\u21ae","\u2270","\u2266\u0338","\u2a7d\u0338","\u2a7d\u0338","\u226e","\u2274","\u226e","\u22ea","\u22ec","\u2224","\ud835\udd5f","\xac","\u2209","\u22f9\u0338","\u22f5\u0338","\u2209","\u22f7","\u22f6","\u220c","\u220c","\u22fe","\u22fd","\u2226","\u2226","\u2afd\u20e5","\u2202\u0338","\u2a14","\u2280","\u22e0","\u2aaf\u0338","\u2280","\u2aaf\u0338","\u21cf","\u219b","\u2933\u0338","\u219d\u0338","\u219b","\u22eb","\u22ed","\u2281","\u22e1","\u2ab0\u0338","\ud835\udcc3","\u2224","\u2226","\u2241","\u2244","\u2244","\u2224","\u2226","\u22e2","\u22e3","\u2284","\u2ac5\u0338","\u2288","\u2282\u20d2","\u2288","\u2ac5\u0338","\u2281","\u2ab0\u0338","\u2285","\u2ac6\u0338","\u2289","\u2283\u20d2","\u2289","\u2ac6\u0338","\u2279","\xf1","\u2278","\u22ea","\u22ec","\u22eb","\u22ed","\u03bd","#","\u2116","\u2007","\u22ad","\u2904","\u224d\u20d2","\u22ac","\u2265\u20d2",">\u20d2","\u29de","\u2902","\u2264\u20d2","<\u20d2","\u22b4\u20d2","\u2903","\u22b5\u20d2","\u223c\u20d2","\u21d6","\u2923","\u2196","\u2196","\u2927","\u24c8","\xf3","\u229b","\u229a","\xf4","\u043e","\u229d","\u0151","\u2a38","\u2299","\u29bc","\u0153","\u29bf","\ud835\udd2c","\u02db","\xf2","\u29c1","\u29b5","\u03a9","\u222e","\u21ba","\u29be","\u29bb","\u203e","\u29c0","\u014d","\u03c9","\u03bf","\u29b6","\u2296","\ud835\udd60","\u29b7","\u29b9","\u2295","\u2228","\u21bb","\u2a5d","\u2134","\u2134","\xaa","\xba","\u22b6","\u2a56","\u2a57","\u2a5b","\u2134","\xf8","\u2298","\xf5","\u2297","\u2a36","\xf6","\u233d","\u2225","\xb6","\u2225","\u2af3","\u2afd","\u2202","\u043f","%",".","\u2030","\u22a5","\u2031","\ud835\udd2d","\u03c6","\u03d5","\u2133","\u260e","\u03c0","\u22d4","\u03d6","\u210f","\u210e","\u210f","+","\u2a23","\u229e","\u2a22","\u2214","\u2a25","\u2a72","\xb1","\u2a26","\u2a27","\xb1","\u2a15","\ud835\udd61","\xa3","\u227a","\u2ab3","\u2ab7","\u227c","\u2aaf","\u227a","\u2ab7","\u227c","\u2aaf","\u2ab9","\u2ab5","\u22e8","\u227e","\u2032","\u2119","\u2ab5","\u2ab9","\u22e8","\u220f","\u232e","\u2312","\u2313","\u221d","\u221d","\u227e","\u22b0","\ud835\udcc5","\u03c8","\u2008","\ud835\udd2e","\u2a0c","\ud835\udd62","\u2057","\ud835\udcc6","\u210d","\u2a16","?","\u225f",'"',"\u21db","\u21d2","\u291c","\u290f","\u2964","\u223d\u0331","\u0155","\u221a","\u29b3","\u27e9","\u2992","\u29a5","\u27e9","\xbb","\u2192","\u2975","\u21e5","\u2920","\u2933","\u291e","\u21aa","\u21ac","\u2945","\u2974","\u21a3","\u219d","\u291a","\u2236","\u211a","\u290d","\u2773","}","]","\u298c","\u298e","\u2990","\u0159","\u0157","\u2309","}","\u0440","\u2937","\u2969","\u201d","\u201d","\u21b3","\u211c","\u211b","\u211c","\u211d","\u25ad","\xae","\u297d","\u230b","\ud835\udd2f","\u21c1","\u21c0","\u296c","\u03c1","\u03f1","\u2192","\u21a3","\u21c1","\u21c0","\u21c4","\u21cc","\u21c9","\u219d","\u22cc","\u02da","\u2253","\u21c4","\u21cc","\u200f","\u23b1","\u23b1","\u2aee","\u27ed","\u21fe","\u27e7","\u2986","\ud835\udd63","\u2a2e","\u2a35",")","\u2994","\u2a12","\u21c9","\u203a","\ud835\udcc7","\u21b1","]","\u2019","\u2019","\u22cc","\u22ca","\u25b9","\u22b5","\u25b8","\u29ce","\u2968","\u211e","\u015b","\u201a","\u227b","\u2ab4","\u2ab8","\u0161","\u227d","\u2ab0","\u015f","\u015d","\u2ab6","\u2aba","\u22e9","\u2a13","\u227f","\u0441","\u22c5","\u22a1","\u2a66","\u21d8","\u2925","\u2198","\u2198","\xa7",";","\u2929","\u2216","\u2216","\u2736","\ud835\udd30","\u2322","\u266f","\u0449","\u0448","\u2223","\u2225","\xad","\u03c3","\u03c2","\u03c2","\u223c","\u2a6a","\u2243","\u2243","\u2a9e","\u2aa0","\u2a9d","\u2a9f","\u2246","\u2a24","\u2972","\u2190","\u2216","\u2a33","\u29e4","\u2223","\u2323","\u2aaa","\u2aac","\u2aac\ufe00","\u044c","/","\u29c4","\u233f","\ud835\udd64","\u2660","\u2660","\u2225","\u2293","\u2293\ufe00","\u2294","\u2294\ufe00","\u228f","\u2291","\u228f","\u2291","\u2290","\u2292","\u2290","\u2292","\u25a1","\u25a1","\u25aa","\u25aa","\u2192","\ud835\udcc8","\u2216","\u2323","\u22c6","\u2606","\u2605","\u03f5","\u03d5","\xaf","\u2282","\u2ac5","\u2abd","\u2286","\u2ac3","\u2ac1","\u2acb","\u228a","\u2abf","\u2979","\u2282","\u2286","\u2ac5","\u228a","\u2acb","\u2ac7","\u2ad5","\u2ad3","\u227b","\u2ab8","\u227d","\u2ab0","\u2aba","\u2ab6","\u22e9","\u227f","\u2211","\u266a","\xb9","\xb2","\xb3","\u2283","\u2ac6","\u2abe","\u2ad8","\u2287","\u2ac4","\u27c9","\u2ad7","\u297b","\u2ac2","\u2acc","\u228b","\u2ac0","\u2283","\u2287","\u2ac6","\u228b","\u2acc","\u2ac8","\u2ad4","\u2ad6","\u21d9","\u2926","\u2199","\u2199","\u292a","\xdf","\u2316","\u03c4","\u23b4","\u0165","\u0163","\u0442","\u20db","\u2315","\ud835\udd31","\u2234","\u2234","\u03b8","\u03d1","\u03d1","\u2248","\u223c","\u2009","\u2248","\u223c","\xfe","\u02dc","\xd7","\u22a0","\u2a31","\u2a30","\u222d","\u2928","\u22a4","\u2336","\u2af1","\ud835\udd65","\u2ada","\u2929","\u2034","\u2122","\u25b5","\u25bf","\u25c3","\u22b4","\u225c","\u25b9","\u22b5","\u25ec","\u225c","\u2a3a","\u2a39","\u29cd","\u2a3b","\u23e2","\ud835\udcc9","\u0446","\u045b","\u0167","\u226c","\u219e","\u21a0","\u21d1","\u2963","\xfa","\u2191","\u045e","\u016d","\xfb","\u0443","\u21c5","\u0171","\u296e","\u297e","\ud835\udd32","\xf9","\u21bf","\u21be","\u2580","\u231c","\u231c","\u230f","\u25f8","\u016b","\xa8","\u0173","\ud835\udd66","\u2191","\u2195","\u21bf","\u21be","\u228e","\u03c5","\u03d2","\u03c5","\u21c8","\u231d","\u231d","\u230e","\u016f","\u25f9","\ud835\udcca","\u22f0","\u0169","\u25b5","\u25b4","\u21c8","\xfc","\u29a7","\u21d5","\u2ae8","\u2ae9","\u22a8","\u299c","\u03f5","\u03f0","\u2205","\u03d5","\u03d6","\u221d","\u2195","\u03f1","\u03c2","\u228a\ufe00","\u2acb\ufe00","\u228b\ufe00","\u2acc\ufe00","\u03d1","\u22b2","\u22b3","\u0432","\u22a2","\u2228","\u22bb","\u225a","\u22ee","|","|","\ud835\udd33","\u22b2","\u2282\u20d2","\u2283\u20d2","\ud835\udd67","\u221d","\u22b3","\ud835\udccb","\u2acb\ufe00","\u228a\ufe00","\u2acc\ufe00","\u228b\ufe00","\u299a","\u0175","\u2a5f","\u2227","\u2259","\u2118","\ud835\udd34","\ud835\udd68","\u2118","\u2240","\u2240","\ud835\udccc","\u22c2","\u25ef","\u22c3","\u25bd","\ud835\udd35","\u27fa","\u27f7","\u03be","\u27f8","\u27f5","\u27fc","\u22fb","\u2a00","\ud835\udd69","\u2a01","\u2a02","\u27f9","\u27f6","\ud835\udccd","\u2a06","\u2a04","\u25b3","\u22c1","\u22c0","\xfd","\u044f","\u0177","\u044b","\xa5","\ud835\udd36","\u0457","\ud835\udd6a","\ud835\udcce","\u044e","\xff","\u017a","\u017e","\u0437","\u017c","\u2128","\u03b6","\ud835\udd37","\u0436","\u21dd","\ud835\udd6b","\ud835\udccf","\u200d","\u200c"],t.li) -B.ux=new A.r(16) -B.uy=new A.r(17) -B.et=new A.r(18) -B.uz=new A.r(19) -B.uA=new A.r(20) -B.uB=new A.r(21) -B.uC=new A.r(22) -B.uD=new A.r(23) -B.uE=new A.r(24) -B.xp=new A.r(65666) -B.xq=new A.r(65667) -B.xr=new A.r(65717) -B.uF=new A.r(392961) -B.uG=new A.r(392962) -B.uH=new A.r(392963) -B.uI=new A.r(392964) -B.uJ=new A.r(392965) -B.uK=new A.r(392966) -B.uL=new A.r(392967) -B.uM=new A.r(392968) -B.uN=new A.r(392969) -B.uO=new A.r(392970) -B.uP=new A.r(392971) -B.uQ=new A.r(392972) -B.uR=new A.r(392973) -B.uS=new A.r(392974) -B.uT=new A.r(392975) -B.uU=new A.r(392976) -B.uV=new A.r(392977) -B.uW=new A.r(392978) -B.uX=new A.r(392979) -B.uY=new A.r(392980) -B.uZ=new A.r(392981) -B.v_=new A.r(392982) -B.v0=new A.r(392983) -B.v1=new A.r(392984) -B.v2=new A.r(392985) -B.v3=new A.r(392986) -B.v4=new A.r(392987) -B.v5=new A.r(392988) -B.v6=new A.r(392989) -B.v7=new A.r(392990) -B.v8=new A.r(392991) -B.MO=new A.r(458752) -B.MP=new A.r(458753) -B.MQ=new A.r(458754) -B.MR=new A.r(458755) -B.v9=new A.r(458756) -B.va=new A.r(458757) -B.vb=new A.r(458758) -B.vc=new A.r(458759) -B.vd=new A.r(458760) -B.ve=new A.r(458761) -B.vf=new A.r(458762) -B.vg=new A.r(458763) -B.vh=new A.r(458764) -B.vi=new A.r(458765) -B.vj=new A.r(458766) -B.vk=new A.r(458767) -B.vl=new A.r(458768) -B.vm=new A.r(458769) -B.vn=new A.r(458770) -B.vo=new A.r(458771) -B.vp=new A.r(458772) -B.vq=new A.r(458773) -B.vr=new A.r(458774) -B.vs=new A.r(458775) -B.vt=new A.r(458776) -B.vu=new A.r(458777) -B.vv=new A.r(458778) -B.vw=new A.r(458779) -B.vx=new A.r(458780) -B.vy=new A.r(458781) -B.vz=new A.r(458782) -B.vA=new A.r(458783) -B.vB=new A.r(458784) -B.vC=new A.r(458785) -B.vD=new A.r(458786) -B.vE=new A.r(458787) -B.vF=new A.r(458788) -B.vG=new A.r(458789) -B.vH=new A.r(458790) -B.vI=new A.r(458791) -B.vJ=new A.r(458792) -B.k6=new A.r(458793) -B.vK=new A.r(458794) -B.vL=new A.r(458795) -B.vM=new A.r(458796) -B.vN=new A.r(458797) -B.vO=new A.r(458798) -B.vP=new A.r(458799) -B.vQ=new A.r(458800) -B.vR=new A.r(458801) -B.vS=new A.r(458803) -B.vT=new A.r(458804) -B.vU=new A.r(458805) -B.vV=new A.r(458806) -B.vW=new A.r(458807) -B.vX=new A.r(458808) -B.cM=new A.r(458809) -B.vY=new A.r(458810) -B.vZ=new A.r(458811) -B.w_=new A.r(458812) -B.w0=new A.r(458813) -B.w1=new A.r(458814) -B.w2=new A.r(458815) -B.w3=new A.r(458816) -B.w4=new A.r(458817) -B.w5=new A.r(458818) -B.w6=new A.r(458819) -B.w7=new A.r(458820) -B.w8=new A.r(458821) -B.w9=new A.r(458822) -B.hf=new A.r(458823) -B.wa=new A.r(458824) -B.wb=new A.r(458825) -B.wc=new A.r(458826) -B.wd=new A.r(458827) -B.we=new A.r(458828) -B.wf=new A.r(458829) -B.wg=new A.r(458830) -B.wh=new A.r(458831) -B.wi=new A.r(458832) -B.wj=new A.r(458833) -B.wk=new A.r(458834) -B.hg=new A.r(458835) -B.wl=new A.r(458836) -B.wm=new A.r(458837) -B.wn=new A.r(458838) -B.wo=new A.r(458839) -B.wp=new A.r(458840) -B.wq=new A.r(458841) -B.wr=new A.r(458842) -B.ws=new A.r(458843) -B.wt=new A.r(458844) -B.wu=new A.r(458845) -B.wv=new A.r(458846) -B.ww=new A.r(458847) -B.wx=new A.r(458848) -B.wy=new A.r(458849) -B.wz=new A.r(458850) -B.wA=new A.r(458851) -B.wB=new A.r(458852) -B.wC=new A.r(458853) -B.wD=new A.r(458854) -B.wE=new A.r(458855) -B.wF=new A.r(458856) -B.wG=new A.r(458857) -B.wH=new A.r(458858) -B.wI=new A.r(458859) -B.wJ=new A.r(458860) -B.wK=new A.r(458861) -B.wL=new A.r(458862) -B.wM=new A.r(458863) -B.wN=new A.r(458864) -B.wO=new A.r(458865) -B.wP=new A.r(458866) -B.wQ=new A.r(458867) -B.wR=new A.r(458868) -B.wS=new A.r(458869) -B.wT=new A.r(458871) -B.wU=new A.r(458873) -B.wV=new A.r(458874) -B.wW=new A.r(458875) -B.wX=new A.r(458876) -B.wY=new A.r(458877) -B.wZ=new A.r(458878) -B.x_=new A.r(458879) -B.x0=new A.r(458880) -B.x1=new A.r(458881) -B.x2=new A.r(458885) -B.x3=new A.r(458887) -B.x4=new A.r(458888) -B.x5=new A.r(458889) -B.x6=new A.r(458890) -B.x7=new A.r(458891) -B.x8=new A.r(458896) -B.x9=new A.r(458897) -B.xa=new A.r(458898) -B.xb=new A.r(458899) -B.xc=new A.r(458900) -B.xd=new A.r(458907) -B.xe=new A.r(458915) -B.xf=new A.r(458934) -B.xg=new A.r(458935) -B.xh=new A.r(458939) -B.xi=new A.r(458960) -B.xj=new A.r(458961) -B.xk=new A.r(458962) -B.xl=new A.r(458963) -B.xm=new A.r(458964) -B.MS=new A.r(458967) -B.xn=new A.r(458968) -B.xo=new A.r(458969) -B.di=new A.r(458976) -B.dj=new A.r(458977) -B.dk=new A.r(458978) -B.dl=new A.r(458979) -B.eu=new A.r(458980) -B.ev=new A.r(458981) -B.dm=new A.r(458982) -B.ew=new A.r(458983) -B.MT=new A.r(786528) -B.MU=new A.r(786529) -B.xs=new A.r(786543) -B.xt=new A.r(786544) -B.MV=new A.r(786546) -B.MW=new A.r(786547) -B.MX=new A.r(786548) -B.MY=new A.r(786549) -B.MZ=new A.r(786553) -B.N_=new A.r(786554) -B.N0=new A.r(786563) -B.N1=new A.r(786572) -B.N2=new A.r(786573) -B.N3=new A.r(786580) -B.N4=new A.r(786588) -B.N5=new A.r(786589) -B.xu=new A.r(786608) -B.xv=new A.r(786609) -B.xw=new A.r(786610) -B.xx=new A.r(786611) -B.xy=new A.r(786612) -B.xz=new A.r(786613) -B.xA=new A.r(786614) -B.xB=new A.r(786615) -B.xC=new A.r(786616) -B.xD=new A.r(786637) -B.N6=new A.r(786639) -B.N7=new A.r(786661) -B.xE=new A.r(786819) -B.N8=new A.r(786820) -B.N9=new A.r(786822) -B.xF=new A.r(786826) -B.Na=new A.r(786829) -B.Nb=new A.r(786830) -B.xG=new A.r(786834) -B.xH=new A.r(786836) -B.Nc=new A.r(786838) -B.Nd=new A.r(786844) -B.Ne=new A.r(786846) -B.xI=new A.r(786847) -B.xJ=new A.r(786850) -B.Nf=new A.r(786855) -B.Ng=new A.r(786859) -B.Nh=new A.r(786862) -B.xK=new A.r(786865) -B.Ni=new A.r(786871) -B.xL=new A.r(786891) -B.Nj=new A.r(786945) -B.Nk=new A.r(786947) -B.Nl=new A.r(786951) -B.Nm=new A.r(786952) -B.xM=new A.r(786977) -B.xN=new A.r(786979) -B.xO=new A.r(786980) -B.xP=new A.r(786981) -B.xQ=new A.r(786982) -B.xR=new A.r(786983) -B.xS=new A.r(786986) -B.Nn=new A.r(786989) -B.No=new A.r(786990) -B.xT=new A.r(786994) -B.Np=new A.r(787065) -B.xU=new A.r(787081) -B.xV=new A.r(787083) -B.xW=new A.r(787084) -B.xX=new A.r(787101) -B.xY=new A.r(787103) -B.KT=new A.d3([16,B.ux,17,B.uy,18,B.et,19,B.uz,20,B.uA,21,B.uB,22,B.uC,23,B.uD,24,B.uE,65666,B.xp,65667,B.xq,65717,B.xr,392961,B.uF,392962,B.uG,392963,B.uH,392964,B.uI,392965,B.uJ,392966,B.uK,392967,B.uL,392968,B.uM,392969,B.uN,392970,B.uO,392971,B.uP,392972,B.uQ,392973,B.uR,392974,B.uS,392975,B.uT,392976,B.uU,392977,B.uV,392978,B.uW,392979,B.uX,392980,B.uY,392981,B.uZ,392982,B.v_,392983,B.v0,392984,B.v1,392985,B.v2,392986,B.v3,392987,B.v4,392988,B.v5,392989,B.v6,392990,B.v7,392991,B.v8,458752,B.MO,458753,B.MP,458754,B.MQ,458755,B.MR,458756,B.v9,458757,B.va,458758,B.vb,458759,B.vc,458760,B.vd,458761,B.ve,458762,B.vf,458763,B.vg,458764,B.vh,458765,B.vi,458766,B.vj,458767,B.vk,458768,B.vl,458769,B.vm,458770,B.vn,458771,B.vo,458772,B.vp,458773,B.vq,458774,B.vr,458775,B.vs,458776,B.vt,458777,B.vu,458778,B.vv,458779,B.vw,458780,B.vx,458781,B.vy,458782,B.vz,458783,B.vA,458784,B.vB,458785,B.vC,458786,B.vD,458787,B.vE,458788,B.vF,458789,B.vG,458790,B.vH,458791,B.vI,458792,B.vJ,458793,B.k6,458794,B.vK,458795,B.vL,458796,B.vM,458797,B.vN,458798,B.vO,458799,B.vP,458800,B.vQ,458801,B.vR,458803,B.vS,458804,B.vT,458805,B.vU,458806,B.vV,458807,B.vW,458808,B.vX,458809,B.cM,458810,B.vY,458811,B.vZ,458812,B.w_,458813,B.w0,458814,B.w1,458815,B.w2,458816,B.w3,458817,B.w4,458818,B.w5,458819,B.w6,458820,B.w7,458821,B.w8,458822,B.w9,458823,B.hf,458824,B.wa,458825,B.wb,458826,B.wc,458827,B.wd,458828,B.we,458829,B.wf,458830,B.wg,458831,B.wh,458832,B.wi,458833,B.wj,458834,B.wk,458835,B.hg,458836,B.wl,458837,B.wm,458838,B.wn,458839,B.wo,458840,B.wp,458841,B.wq,458842,B.wr,458843,B.ws,458844,B.wt,458845,B.wu,458846,B.wv,458847,B.ww,458848,B.wx,458849,B.wy,458850,B.wz,458851,B.wA,458852,B.wB,458853,B.wC,458854,B.wD,458855,B.wE,458856,B.wF,458857,B.wG,458858,B.wH,458859,B.wI,458860,B.wJ,458861,B.wK,458862,B.wL,458863,B.wM,458864,B.wN,458865,B.wO,458866,B.wP,458867,B.wQ,458868,B.wR,458869,B.wS,458871,B.wT,458873,B.wU,458874,B.wV,458875,B.wW,458876,B.wX,458877,B.wY,458878,B.wZ,458879,B.x_,458880,B.x0,458881,B.x1,458885,B.x2,458887,B.x3,458888,B.x4,458889,B.x5,458890,B.x6,458891,B.x7,458896,B.x8,458897,B.x9,458898,B.xa,458899,B.xb,458900,B.xc,458907,B.xd,458915,B.xe,458934,B.xf,458935,B.xg,458939,B.xh,458960,B.xi,458961,B.xj,458962,B.xk,458963,B.xl,458964,B.xm,458967,B.MS,458968,B.xn,458969,B.xo,458976,B.di,458977,B.dj,458978,B.dk,458979,B.dl,458980,B.eu,458981,B.ev,458982,B.dm,458983,B.ew,786528,B.MT,786529,B.MU,786543,B.xs,786544,B.xt,786546,B.MV,786547,B.MW,786548,B.MX,786549,B.MY,786553,B.MZ,786554,B.N_,786563,B.N0,786572,B.N1,786573,B.N2,786580,B.N3,786588,B.N4,786589,B.N5,786608,B.xu,786609,B.xv,786610,B.xw,786611,B.xx,786612,B.xy,786613,B.xz,786614,B.xA,786615,B.xB,786616,B.xC,786637,B.xD,786639,B.N6,786661,B.N7,786819,B.xE,786820,B.N8,786822,B.N9,786826,B.xF,786829,B.Na,786830,B.Nb,786834,B.xG,786836,B.xH,786838,B.Nc,786844,B.Nd,786846,B.Ne,786847,B.xI,786850,B.xJ,786855,B.Nf,786859,B.Ng,786862,B.Nh,786865,B.xK,786871,B.Ni,786891,B.xL,786945,B.Nj,786947,B.Nk,786951,B.Nl,786952,B.Nm,786977,B.xM,786979,B.xN,786980,B.xO,786981,B.xP,786982,B.xQ,786983,B.xR,786986,B.xS,786989,B.Nn,786990,B.No,786994,B.xT,787065,B.Np,787081,B.xU,787083,B.xV,787084,B.xW,787101,B.xX,787103,B.xY],A.ab("d3")) -B.KU=new A.d3([0,"FontWeight.w100",1,"FontWeight.w200",2,"FontWeight.w300",3,"FontWeight.w400",4,"FontWeight.w500",5,"FontWeight.w600",6,"FontWeight.w700",7,"FontWeight.w800",8,"FontWeight.w900"],A.ab("d3")) -B.LW={BU:0,DD:1,FX:2,TP:3,YD:4,ZR:5} -B.bZ=new A.bG(B.LW,["MM","DE","FR","TL","YE","CD"],t.li) -B.LU={root:0,comment:1,quote:2,keyword:3,"selector-tag":4,subst:5,number:6,literal:7,variable:8,"template-variable":9,string:10,doctag:11,title:12,section:13,"selector-id":14,type:15,tag:16,name:17,attribute:18,regexp:19,link:20,symbol:21,bullet:22,built_in:23,"builtin-name":24,meta:25,deletion:26,addition:27,emphasis:28,strong:29} -B.iF=new A.L(4281545523) -B.E7=new A.L(4294506744) -B.Sj=new A.v(!0,B.iF,B.E7,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) -B.DT=new A.L(4288256392) -B.zJ=new A.v(!0,B.DT,null,null,null,null,null,null,B.ji,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) -B.zF=new A.v(!0,B.iF,null,null,null,null,null,B.bs,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) -B.Tm=new A.v(!0,B.iF,null,null,null,null,null,B.w,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) -B.Dw=new A.L(4278222976) -B.hO=new A.v(!0,B.Dw,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) -B.DY=new A.L(4292677956) -B.zz=new A.v(!0,B.DY,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) -B.DR=new A.L(4288217088) -B.kQ=new A.v(!0,B.DR,null,null,null,null,null,B.bs,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) -B.DL=new A.L(4282668424) -B.RV=new A.v(!0,B.DL,null,null,null,null,null,B.bs,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) -B.Dv=new A.L(4278190208) -B.kR=new A.v(!0,B.Dv,null,null,null,null,null,B.w,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) -B.Dy=new A.L(4278229286) -B.zI=new A.v(!0,B.Dy,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) -B.DS=new A.L(4288217203) -B.zK=new A.v(!0,B.DS,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) -B.Dx=new A.L(4278224563) -B.zC=new A.v(!0,B.Dx,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) -B.SS=new A.v(!0,B.d5,null,null,null,null,null,B.bs,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) -B.E9=new A.L(4294958557) -B.Ty=new A.v(!0,null,B.E9,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) -B.DZ=new A.L(4292739037) -B.S4=new A.v(!0,null,B.DZ,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) -B.zA=new A.v(!0,null,null,null,null,null,null,null,B.ji,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) -B.eT=new A.v(!0,null,null,null,null,null,null,B.bs,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) -B.KY=new A.bG(B.LU,[B.Sj,B.zJ,B.zJ,B.zF,B.zF,B.Tm,B.hO,B.hO,B.hO,B.hO,B.zz,B.zz,B.kQ,B.kQ,B.kQ,B.RV,B.kR,B.kR,B.kR,B.zI,B.zI,B.zK,B.zK,B.zC,B.zC,B.SS,B.Ty,B.S4,B.zA,B.eT],A.ab("bG")) -B.LI={alias:0,allScroll:1,basic:2,cell:3,click:4,contextMenu:5,copy:6,forbidden:7,grab:8,grabbing:9,help:10,move:11,none:12,noDrop:13,precise:14,progress:15,text:16,resizeColumn:17,resizeDown:18,resizeDownLeft:19,resizeDownRight:20,resizeLeft:21,resizeLeftRight:22,resizeRight:23,resizeRow:24,resizeUp:25,resizeUpDown:26,resizeUpLeft:27,resizeUpRight:28,resizeUpLeftDownRight:29,resizeUpRightDownLeft:30,verticalText:31,wait:32,zoomIn:33,zoomOut:34} -B.KZ=new A.bG(B.LI,["alias","all-scroll","default","cell","pointer","context-menu","copy","not-allowed","grab","grabbing","help","move","none","no-drop","crosshair","progress","text","col-resize","s-resize","sw-resize","se-resize","w-resize","ew-resize","e-resize","row-resize","n-resize","ns-resize","nw-resize","ne-resize","nwse-resize","nesw-resize","vertical-text","wait","zoom-in","zoom-out"],t.li) -B.LV={type:0} -B.L_=new A.bG(B.LV,["line"],t.li) -B.uj={AVRInput:0,AVRPower:1,Accel:2,Accept:3,Again:4,AllCandidates:5,Alphanumeric:6,AltGraph:7,AppSwitch:8,ArrowDown:9,ArrowLeft:10,ArrowRight:11,ArrowUp:12,Attn:13,AudioBalanceLeft:14,AudioBalanceRight:15,AudioBassBoostDown:16,AudioBassBoostToggle:17,AudioBassBoostUp:18,AudioFaderFront:19,AudioFaderRear:20,AudioSurroundModeNext:21,AudioTrebleDown:22,AudioTrebleUp:23,AudioVolumeDown:24,AudioVolumeMute:25,AudioVolumeUp:26,Backspace:27,BrightnessDown:28,BrightnessUp:29,BrowserBack:30,BrowserFavorites:31,BrowserForward:32,BrowserHome:33,BrowserRefresh:34,BrowserSearch:35,BrowserStop:36,Call:37,Camera:38,CameraFocus:39,Cancel:40,CapsLock:41,ChannelDown:42,ChannelUp:43,Clear:44,Close:45,ClosedCaptionToggle:46,CodeInput:47,ColorF0Red:48,ColorF1Green:49,ColorF2Yellow:50,ColorF3Blue:51,ColorF4Grey:52,ColorF5Brown:53,Compose:54,ContextMenu:55,Convert:56,Copy:57,CrSel:58,Cut:59,DVR:60,Delete:61,Dimmer:62,DisplaySwap:63,Eisu:64,Eject:65,End:66,EndCall:67,Enter:68,EraseEof:69,Esc:70,Escape:71,ExSel:72,Execute:73,Exit:74,F1:75,F10:76,F11:77,F12:78,F13:79,F14:80,F15:81,F16:82,F17:83,F18:84,F19:85,F2:86,F20:87,F21:88,F22:89,F23:90,F24:91,F3:92,F4:93,F5:94,F6:95,F7:96,F8:97,F9:98,FavoriteClear0:99,FavoriteClear1:100,FavoriteClear2:101,FavoriteClear3:102,FavoriteRecall0:103,FavoriteRecall1:104,FavoriteRecall2:105,FavoriteRecall3:106,FavoriteStore0:107,FavoriteStore1:108,FavoriteStore2:109,FavoriteStore3:110,FinalMode:111,Find:112,Fn:113,FnLock:114,GoBack:115,GoHome:116,GroupFirst:117,GroupLast:118,GroupNext:119,GroupPrevious:120,Guide:121,GuideNextDay:122,GuidePreviousDay:123,HangulMode:124,HanjaMode:125,Hankaku:126,HeadsetHook:127,Help:128,Hibernate:129,Hiragana:130,HiraganaKatakana:131,Home:132,Hyper:133,Info:134,Insert:135,InstantReplay:136,JunjaMode:137,KanaMode:138,KanjiMode:139,Katakana:140,Key11:141,Key12:142,LastNumberRedial:143,LaunchApplication1:144,LaunchApplication2:145,LaunchAssistant:146,LaunchCalendar:147,LaunchContacts:148,LaunchControlPanel:149,LaunchMail:150,LaunchMediaPlayer:151,LaunchMusicPlayer:152,LaunchPhone:153,LaunchScreenSaver:154,LaunchSpreadsheet:155,LaunchWebBrowser:156,LaunchWebCam:157,LaunchWordProcessor:158,Link:159,ListProgram:160,LiveContent:161,Lock:162,LogOff:163,MailForward:164,MailReply:165,MailSend:166,MannerMode:167,MediaApps:168,MediaAudioTrack:169,MediaClose:170,MediaFastForward:171,MediaLast:172,MediaPause:173,MediaPlay:174,MediaPlayPause:175,MediaRecord:176,MediaRewind:177,MediaSkip:178,MediaSkipBackward:179,MediaSkipForward:180,MediaStepBackward:181,MediaStepForward:182,MediaStop:183,MediaTopMenu:184,MediaTrackNext:185,MediaTrackPrevious:186,MicrophoneToggle:187,MicrophoneVolumeDown:188,MicrophoneVolumeMute:189,MicrophoneVolumeUp:190,ModeChange:191,NavigateIn:192,NavigateNext:193,NavigateOut:194,NavigatePrevious:195,New:196,NextCandidate:197,NextFavoriteChannel:198,NextUserProfile:199,NonConvert:200,Notification:201,NumLock:202,OnDemand:203,Open:204,PageDown:205,PageUp:206,Pairing:207,Paste:208,Pause:209,PinPDown:210,PinPMove:211,PinPToggle:212,PinPUp:213,Play:214,PlaySpeedDown:215,PlaySpeedReset:216,PlaySpeedUp:217,Power:218,PowerOff:219,PreviousCandidate:220,Print:221,PrintScreen:222,Process:223,Props:224,RandomToggle:225,RcLowBattery:226,RecordSpeedNext:227,Redo:228,RfBypass:229,Romaji:230,STBInput:231,STBPower:232,Save:233,ScanChannelsToggle:234,ScreenModeNext:235,ScrollLock:236,Select:237,Settings:238,ShiftLevel5:239,SingleCandidate:240,Soft1:241,Soft2:242,Soft3:243,Soft4:244,Soft5:245,Soft6:246,Soft7:247,Soft8:248,SpeechCorrectionList:249,SpeechInputToggle:250,SpellCheck:251,SplitScreenToggle:252,Standby:253,Subtitle:254,Super:255,Symbol:256,SymbolLock:257,TV:258,TV3DMode:259,TVAntennaCable:260,TVAudioDescription:261,TVAudioDescriptionMixDown:262,TVAudioDescriptionMixUp:263,TVContentsMenu:264,TVDataService:265,TVInput:266,TVInputComponent1:267,TVInputComponent2:268,TVInputComposite1:269,TVInputComposite2:270,TVInputHDMI1:271,TVInputHDMI2:272,TVInputHDMI3:273,TVInputHDMI4:274,TVInputVGA1:275,TVMediaContext:276,TVNetwork:277,TVNumberEntry:278,TVPower:279,TVRadioService:280,TVSatellite:281,TVSatelliteBS:282,TVSatelliteCS:283,TVSatelliteToggle:284,TVTerrestrialAnalog:285,TVTerrestrialDigital:286,TVTimer:287,Tab:288,Teletext:289,Undo:290,Unidentified:291,VideoModeNext:292,VoiceDial:293,WakeUp:294,Wink:295,Zenkaku:296,ZenkakuHankaku:297,ZoomIn:298,ZoomOut:299,ZoomToggle:300} -B.qB=new A.i(4294970632) -B.qC=new A.i(4294970633) -B.oh=new A.i(4294967553) -B.ow=new A.i(4294968577) -B.ox=new A.i(4294968578) -B.oV=new A.i(4294969089) -B.oW=new A.i(4294969090) -B.h0=new A.i(4294967555) -B.t4=new A.i(4294971393) -B.bF=new A.i(4294968065) -B.bu=new A.i(4294968066) -B.bv=new A.i(4294968067) -B.bG=new A.i(4294968068) -B.oy=new A.i(4294968579) -B.qu=new A.i(4294970625) -B.qv=new A.i(4294970626) -B.qw=new A.i(4294970627) -B.rW=new A.i(4294970882) -B.qx=new A.i(4294970628) -B.qy=new A.i(4294970629) -B.qz=new A.i(4294970630) -B.qA=new A.i(4294970631) -B.rX=new A.i(4294970884) -B.rY=new A.i(4294970885) -B.q5=new A.i(4294969871) -B.q7=new A.i(4294969873) -B.q6=new A.i(4294969872) -B.oK=new A.i(4294968833) -B.oL=new A.i(4294968834) -B.qn=new A.i(4294970369) -B.qo=new A.i(4294970370) -B.qp=new A.i(4294970371) -B.qq=new A.i(4294970372) -B.qr=new A.i(4294970373) -B.qs=new A.i(4294970374) -B.qt=new A.i(4294970375) -B.t5=new A.i(4294971394) -B.oM=new A.i(4294968835) -B.t6=new A.i(4294971395) -B.oz=new A.i(4294968580) -B.qD=new A.i(4294970634) -B.qE=new A.i(4294970635) -B.jH=new A.i(4294968321) -B.pT=new A.i(4294969857) -B.qL=new A.i(4294970642) -B.oX=new A.i(4294969091) -B.qF=new A.i(4294970636) -B.qG=new A.i(4294970637) -B.qH=new A.i(4294970638) -B.qI=new A.i(4294970639) -B.qJ=new A.i(4294970640) -B.qK=new A.i(4294970641) -B.oY=new A.i(4294969092) -B.oA=new A.i(4294968581) -B.oZ=new A.i(4294969093) -B.oo=new A.i(4294968322) -B.op=new A.i(4294968323) -B.oq=new A.i(4294968324) -B.rJ=new A.i(4294970703) -B.qM=new A.i(4294970643) -B.qN=new A.i(4294970644) -B.pd=new A.i(4294969108) -B.oN=new A.i(4294968836) -B.cJ=new A.i(4294968069) -B.t7=new A.i(4294971396) -B.h_=new A.i(4294967309) -B.or=new A.i(4294968325) -B.os=new A.i(4294968326) -B.oB=new A.i(4294968582) -B.qO=new A.i(4294970645) -B.pn=new A.i(4294969345) -B.pw=new A.i(4294969354) -B.px=new A.i(4294969355) -B.py=new A.i(4294969356) -B.pz=new A.i(4294969357) -B.pA=new A.i(4294969358) -B.pB=new A.i(4294969359) -B.pC=new A.i(4294969360) -B.pD=new A.i(4294969361) -B.pE=new A.i(4294969362) -B.pF=new A.i(4294969363) -B.po=new A.i(4294969346) -B.pG=new A.i(4294969364) -B.pH=new A.i(4294969365) -B.pI=new A.i(4294969366) -B.pJ=new A.i(4294969367) -B.pK=new A.i(4294969368) -B.pp=new A.i(4294969347) -B.pq=new A.i(4294969348) -B.pr=new A.i(4294969349) -B.ps=new A.i(4294969350) -B.pt=new A.i(4294969351) -B.pu=new A.i(4294969352) -B.pv=new A.i(4294969353) -B.qP=new A.i(4294970646) -B.qQ=new A.i(4294970647) -B.qR=new A.i(4294970648) -B.qS=new A.i(4294970649) -B.qT=new A.i(4294970650) -B.qU=new A.i(4294970651) -B.qV=new A.i(4294970652) -B.qW=new A.i(4294970653) -B.qX=new A.i(4294970654) -B.qY=new A.i(4294970655) -B.qZ=new A.i(4294970656) -B.r_=new A.i(4294970657) -B.p_=new A.i(4294969094) -B.oC=new A.i(4294968583) -B.oi=new A.i(4294967559) -B.t8=new A.i(4294971397) -B.t9=new A.i(4294971398) -B.p0=new A.i(4294969095) -B.p1=new A.i(4294969096) -B.p2=new A.i(4294969097) -B.p3=new A.i(4294969098) -B.r0=new A.i(4294970658) -B.r1=new A.i(4294970659) -B.r2=new A.i(4294970660) -B.pa=new A.i(4294969105) -B.pb=new A.i(4294969106) -B.pe=new A.i(4294969109) -B.ta=new A.i(4294971399) -B.oD=new A.i(4294968584) -B.oS=new A.i(4294968841) -B.pf=new A.i(4294969110) -B.pg=new A.i(4294969111) -B.cK=new A.i(4294968070) -B.oj=new A.i(4294967560) -B.r3=new A.i(4294970661) -B.jI=new A.i(4294968327) -B.r4=new A.i(4294970662) -B.pc=new A.i(4294969107) -B.ph=new A.i(4294969112) -B.pi=new A.i(4294969113) -B.pj=new A.i(4294969114) -B.tG=new A.i(4294971905) -B.tH=new A.i(4294971906) -B.tb=new A.i(4294971400) -B.qd=new A.i(4294970118) -B.q8=new A.i(4294970113) -B.ql=new A.i(4294970126) -B.q9=new A.i(4294970114) -B.qj=new A.i(4294970124) -B.qm=new A.i(4294970127) -B.qa=new A.i(4294970115) -B.qb=new A.i(4294970116) -B.qc=new A.i(4294970117) -B.qk=new A.i(4294970125) -B.qe=new A.i(4294970119) -B.qf=new A.i(4294970120) -B.qg=new A.i(4294970121) -B.qh=new A.i(4294970122) -B.qi=new A.i(4294970123) -B.r5=new A.i(4294970663) -B.r6=new A.i(4294970664) -B.r7=new A.i(4294970665) -B.r8=new A.i(4294970666) -B.oO=new A.i(4294968837) -B.pU=new A.i(4294969858) -B.pV=new A.i(4294969859) -B.pW=new A.i(4294969860) -B.td=new A.i(4294971402) -B.r9=new A.i(4294970667) -B.rK=new A.i(4294970704) -B.rV=new A.i(4294970715) -B.ra=new A.i(4294970668) -B.rb=new A.i(4294970669) -B.rc=new A.i(4294970670) -B.rd=new A.i(4294970671) -B.pX=new A.i(4294969861) -B.re=new A.i(4294970672) -B.rf=new A.i(4294970673) -B.rg=new A.i(4294970674) -B.rL=new A.i(4294970705) -B.rM=new A.i(4294970706) -B.rN=new A.i(4294970707) -B.rO=new A.i(4294970708) -B.pY=new A.i(4294969863) -B.rP=new A.i(4294970709) -B.pZ=new A.i(4294969864) -B.q_=new A.i(4294969865) -B.rZ=new A.i(4294970886) -B.t_=new A.i(4294970887) -B.t1=new A.i(4294970889) -B.t0=new A.i(4294970888) -B.p4=new A.i(4294969099) -B.rQ=new A.i(4294970710) -B.rR=new A.i(4294970711) -B.rS=new A.i(4294970712) -B.rT=new A.i(4294970713) -B.q0=new A.i(4294969866) -B.p5=new A.i(4294969100) -B.rh=new A.i(4294970675) -B.ri=new A.i(4294970676) -B.p6=new A.i(4294969101) -B.tc=new A.i(4294971401) -B.rj=new A.i(4294970677) -B.q1=new A.i(4294969867) -B.eg=new A.i(4294968071) -B.eh=new A.i(4294968072) -B.rU=new A.i(4294970714) -B.ot=new A.i(4294968328) -B.oE=new A.i(4294968585) -B.rk=new A.i(4294970678) -B.rl=new A.i(4294970679) -B.rm=new A.i(4294970680) -B.rn=new A.i(4294970681) -B.oF=new A.i(4294968586) -B.ro=new A.i(4294970682) -B.rp=new A.i(4294970683) -B.rq=new A.i(4294970684) -B.oP=new A.i(4294968838) -B.oQ=new A.i(4294968839) -B.p7=new A.i(4294969102) -B.q2=new A.i(4294969868) -B.oR=new A.i(4294968840) -B.p8=new A.i(4294969103) -B.oG=new A.i(4294968587) -B.rr=new A.i(4294970685) -B.rs=new A.i(4294970686) -B.rt=new A.i(4294970687) -B.ou=new A.i(4294968329) -B.ru=new A.i(4294970688) -B.pk=new A.i(4294969115) -B.rz=new A.i(4294970693) -B.rA=new A.i(4294970694) -B.q3=new A.i(4294969869) -B.rv=new A.i(4294970689) -B.rw=new A.i(4294970690) -B.oH=new A.i(4294968588) -B.rx=new A.i(4294970691) -B.on=new A.i(4294967569) -B.p9=new A.i(4294969104) -B.pL=new A.i(4294969601) -B.pM=new A.i(4294969602) -B.pN=new A.i(4294969603) -B.pO=new A.i(4294969604) -B.pP=new A.i(4294969605) -B.pQ=new A.i(4294969606) -B.pR=new A.i(4294969607) -B.pS=new A.i(4294969608) -B.t2=new A.i(4294971137) -B.t3=new A.i(4294971138) -B.q4=new A.i(4294969870) -B.ry=new A.i(4294970692) -B.oT=new A.i(4294968842) -B.rB=new A.i(4294970695) -B.ok=new A.i(4294967566) -B.ol=new A.i(4294967567) -B.om=new A.i(4294967568) -B.rD=new A.i(4294970697) -B.tf=new A.i(4294971649) -B.tg=new A.i(4294971650) -B.th=new A.i(4294971651) -B.ti=new A.i(4294971652) -B.tj=new A.i(4294971653) -B.tk=new A.i(4294971654) -B.tl=new A.i(4294971655) -B.rE=new A.i(4294970698) -B.tm=new A.i(4294971656) -B.tn=new A.i(4294971657) -B.to=new A.i(4294971658) -B.tp=new A.i(4294971659) -B.tq=new A.i(4294971660) -B.tr=new A.i(4294971661) -B.ts=new A.i(4294971662) -B.tt=new A.i(4294971663) -B.tu=new A.i(4294971664) -B.tv=new A.i(4294971665) -B.tw=new A.i(4294971666) -B.tx=new A.i(4294971667) -B.rF=new A.i(4294970699) -B.ty=new A.i(4294971668) -B.tz=new A.i(4294971669) -B.tA=new A.i(4294971670) -B.tB=new A.i(4294971671) -B.tC=new A.i(4294971672) -B.tD=new A.i(4294971673) -B.tE=new A.i(4294971674) -B.tF=new A.i(4294971675) -B.fZ=new A.i(4294967305) -B.rC=new A.i(4294970696) -B.ov=new A.i(4294968330) -B.og=new A.i(4294967297) -B.rG=new A.i(4294970700) -B.te=new A.i(4294971403) -B.oU=new A.i(4294968843) -B.rH=new A.i(4294970701) -B.pl=new A.i(4294969116) -B.pm=new A.i(4294969117) -B.oI=new A.i(4294968589) -B.oJ=new A.i(4294968590) -B.rI=new A.i(4294970702) -B.L1=new A.bG(B.uj,[B.qB,B.qC,B.oh,B.ow,B.ox,B.oV,B.oW,B.h0,B.t4,B.bF,B.bu,B.bv,B.bG,B.oy,B.qu,B.qv,B.qw,B.rW,B.qx,B.qy,B.qz,B.qA,B.rX,B.rY,B.q5,B.q7,B.q6,B.bh,B.oK,B.oL,B.qn,B.qo,B.qp,B.qq,B.qr,B.qs,B.qt,B.t5,B.oM,B.t6,B.oz,B.ef,B.qD,B.qE,B.jH,B.pT,B.qL,B.oX,B.qF,B.qG,B.qH,B.qI,B.qJ,B.qK,B.oY,B.oA,B.oZ,B.oo,B.op,B.oq,B.rJ,B.b1,B.qM,B.qN,B.pd,B.oN,B.cJ,B.t7,B.h_,B.or,B.ee,B.ee,B.os,B.oB,B.qO,B.pn,B.pw,B.px,B.py,B.pz,B.pA,B.pB,B.pC,B.pD,B.pE,B.pF,B.po,B.pG,B.pH,B.pI,B.pJ,B.pK,B.pp,B.pq,B.pr,B.ps,B.pt,B.pu,B.pv,B.qP,B.qQ,B.qR,B.qS,B.qT,B.qU,B.qV,B.qW,B.qX,B.qY,B.qZ,B.r_,B.p_,B.oC,B.jG,B.oi,B.t8,B.t9,B.p0,B.p1,B.p2,B.p3,B.r0,B.r1,B.r2,B.pa,B.pb,B.pe,B.ta,B.oD,B.oS,B.pf,B.pg,B.cK,B.oj,B.r3,B.jI,B.r4,B.pc,B.ph,B.pi,B.pj,B.tG,B.tH,B.tb,B.qd,B.q8,B.ql,B.q9,B.qj,B.qm,B.qa,B.qb,B.qc,B.qk,B.qe,B.qf,B.qg,B.qh,B.qi,B.r5,B.r6,B.r7,B.r8,B.oO,B.pU,B.pV,B.pW,B.td,B.r9,B.rK,B.rV,B.ra,B.rb,B.rc,B.rd,B.pX,B.re,B.rf,B.rg,B.rL,B.rM,B.rN,B.rO,B.pY,B.rP,B.pZ,B.q_,B.rZ,B.t_,B.t1,B.t0,B.p4,B.rQ,B.rR,B.rS,B.rT,B.q0,B.p5,B.rh,B.ri,B.p6,B.tc,B.h1,B.rj,B.q1,B.eg,B.eh,B.rU,B.ot,B.oE,B.rk,B.rl,B.rm,B.rn,B.oF,B.ro,B.rp,B.rq,B.oP,B.oQ,B.p7,B.q2,B.oR,B.p8,B.oG,B.rr,B.rs,B.rt,B.ou,B.ru,B.pk,B.rz,B.rA,B.q3,B.rv,B.rw,B.h2,B.oH,B.rx,B.on,B.p9,B.pL,B.pM,B.pN,B.pO,B.pP,B.pQ,B.pR,B.pS,B.t2,B.t3,B.q4,B.ry,B.oT,B.rB,B.ok,B.ol,B.om,B.rD,B.tf,B.tg,B.th,B.ti,B.tj,B.tk,B.tl,B.rE,B.tm,B.tn,B.to,B.tp,B.tq,B.tr,B.ts,B.tt,B.tu,B.tv,B.tw,B.tx,B.rF,B.ty,B.tz,B.tA,B.tB,B.tC,B.tD,B.tE,B.tF,B.fZ,B.rC,B.ov,B.og,B.rG,B.te,B.oU,B.rH,B.pl,B.pm,B.oI,B.oJ,B.rI],A.ab("bG")) -B.L2=new A.bG(B.uj,[4294970632,4294970633,4294967553,4294968577,4294968578,4294969089,4294969090,4294967555,4294971393,4294968065,4294968066,4294968067,4294968068,4294968579,4294970625,4294970626,4294970627,4294970882,4294970628,4294970629,4294970630,4294970631,4294970884,4294970885,4294969871,4294969873,4294969872,4294967304,4294968833,4294968834,4294970369,4294970370,4294970371,4294970372,4294970373,4294970374,4294970375,4294971394,4294968835,4294971395,4294968580,4294967556,4294970634,4294970635,4294968321,4294969857,4294970642,4294969091,4294970636,4294970637,4294970638,4294970639,4294970640,4294970641,4294969092,4294968581,4294969093,4294968322,4294968323,4294968324,4294970703,4294967423,4294970643,4294970644,4294969108,4294968836,4294968069,4294971396,4294967309,4294968325,4294967323,4294967323,4294968326,4294968582,4294970645,4294969345,4294969354,4294969355,4294969356,4294969357,4294969358,4294969359,4294969360,4294969361,4294969362,4294969363,4294969346,4294969364,4294969365,4294969366,4294969367,4294969368,4294969347,4294969348,4294969349,4294969350,4294969351,4294969352,4294969353,4294970646,4294970647,4294970648,4294970649,4294970650,4294970651,4294970652,4294970653,4294970654,4294970655,4294970656,4294970657,4294969094,4294968583,4294967558,4294967559,4294971397,4294971398,4294969095,4294969096,4294969097,4294969098,4294970658,4294970659,4294970660,4294969105,4294969106,4294969109,4294971399,4294968584,4294968841,4294969110,4294969111,4294968070,4294967560,4294970661,4294968327,4294970662,4294969107,4294969112,4294969113,4294969114,4294971905,4294971906,4294971400,4294970118,4294970113,4294970126,4294970114,4294970124,4294970127,4294970115,4294970116,4294970117,4294970125,4294970119,4294970120,4294970121,4294970122,4294970123,4294970663,4294970664,4294970665,4294970666,4294968837,4294969858,4294969859,4294969860,4294971402,4294970667,4294970704,4294970715,4294970668,4294970669,4294970670,4294970671,4294969861,4294970672,4294970673,4294970674,4294970705,4294970706,4294970707,4294970708,4294969863,4294970709,4294969864,4294969865,4294970886,4294970887,4294970889,4294970888,4294969099,4294970710,4294970711,4294970712,4294970713,4294969866,4294969100,4294970675,4294970676,4294969101,4294971401,4294967562,4294970677,4294969867,4294968071,4294968072,4294970714,4294968328,4294968585,4294970678,4294970679,4294970680,4294970681,4294968586,4294970682,4294970683,4294970684,4294968838,4294968839,4294969102,4294969868,4294968840,4294969103,4294968587,4294970685,4294970686,4294970687,4294968329,4294970688,4294969115,4294970693,4294970694,4294969869,4294970689,4294970690,4294967564,4294968588,4294970691,4294967569,4294969104,4294969601,4294969602,4294969603,4294969604,4294969605,4294969606,4294969607,4294969608,4294971137,4294971138,4294969870,4294970692,4294968842,4294970695,4294967566,4294967567,4294967568,4294970697,4294971649,4294971650,4294971651,4294971652,4294971653,4294971654,4294971655,4294970698,4294971656,4294971657,4294971658,4294971659,4294971660,4294971661,4294971662,4294971663,4294971664,4294971665,4294971666,4294971667,4294970699,4294971668,4294971669,4294971670,4294971671,4294971672,4294971673,4294971674,4294971675,4294967305,4294970696,4294968330,4294967297,4294970700,4294971403,4294968843,4294970701,4294969116,4294969117,4294968589,4294968590,4294970702],t.eL) -B.eN=new A.aS(B.bF,!1,!1,!1,!1) -B.eM=new A.aS(B.bG,!1,!1,!1,!1) -B.Uy=new A.tf(2,"down") -B.ER=new A.nH(B.Uy) -B.zR=new A.tf(0,"up") -B.EQ=new A.nH(B.zR) -B.L3=new A.d3([B.eN,B.ER,B.eM,B.EQ],t.Fp) -B.LX={Abort:0,Again:1,AltLeft:2,AltRight:3,ArrowDown:4,ArrowLeft:5,ArrowRight:6,ArrowUp:7,AudioVolumeDown:8,AudioVolumeMute:9,AudioVolumeUp:10,Backquote:11,Backslash:12,Backspace:13,BracketLeft:14,BracketRight:15,BrightnessDown:16,BrightnessUp:17,BrowserBack:18,BrowserFavorites:19,BrowserForward:20,BrowserHome:21,BrowserRefresh:22,BrowserSearch:23,BrowserStop:24,CapsLock:25,Comma:26,ContextMenu:27,ControlLeft:28,ControlRight:29,Convert:30,Copy:31,Cut:32,Delete:33,Digit0:34,Digit1:35,Digit2:36,Digit3:37,Digit4:38,Digit5:39,Digit6:40,Digit7:41,Digit8:42,Digit9:43,DisplayToggleIntExt:44,Eject:45,End:46,Enter:47,Equal:48,Esc:49,Escape:50,F1:51,F10:52,F11:53,F12:54,F13:55,F14:56,F15:57,F16:58,F17:59,F18:60,F19:61,F2:62,F20:63,F21:64,F22:65,F23:66,F24:67,F3:68,F4:69,F5:70,F6:71,F7:72,F8:73,F9:74,Find:75,Fn:76,FnLock:77,GameButton1:78,GameButton10:79,GameButton11:80,GameButton12:81,GameButton13:82,GameButton14:83,GameButton15:84,GameButton16:85,GameButton2:86,GameButton3:87,GameButton4:88,GameButton5:89,GameButton6:90,GameButton7:91,GameButton8:92,GameButton9:93,GameButtonA:94,GameButtonB:95,GameButtonC:96,GameButtonLeft1:97,GameButtonLeft2:98,GameButtonMode:99,GameButtonRight1:100,GameButtonRight2:101,GameButtonSelect:102,GameButtonStart:103,GameButtonThumbLeft:104,GameButtonThumbRight:105,GameButtonX:106,GameButtonY:107,GameButtonZ:108,Help:109,Home:110,Hyper:111,Insert:112,IntlBackslash:113,IntlRo:114,IntlYen:115,KanaMode:116,KeyA:117,KeyB:118,KeyC:119,KeyD:120,KeyE:121,KeyF:122,KeyG:123,KeyH:124,KeyI:125,KeyJ:126,KeyK:127,KeyL:128,KeyM:129,KeyN:130,KeyO:131,KeyP:132,KeyQ:133,KeyR:134,KeyS:135,KeyT:136,KeyU:137,KeyV:138,KeyW:139,KeyX:140,KeyY:141,KeyZ:142,KeyboardLayoutSelect:143,Lang1:144,Lang2:145,Lang3:146,Lang4:147,Lang5:148,LaunchApp1:149,LaunchApp2:150,LaunchAssistant:151,LaunchControlPanel:152,LaunchMail:153,LaunchScreenSaver:154,MailForward:155,MailReply:156,MailSend:157,MediaFastForward:158,MediaPause:159,MediaPlay:160,MediaPlayPause:161,MediaRecord:162,MediaRewind:163,MediaSelect:164,MediaStop:165,MediaTrackNext:166,MediaTrackPrevious:167,MetaLeft:168,MetaRight:169,MicrophoneMuteToggle:170,Minus:171,NonConvert:172,NumLock:173,Numpad0:174,Numpad1:175,Numpad2:176,Numpad3:177,Numpad4:178,Numpad5:179,Numpad6:180,Numpad7:181,Numpad8:182,Numpad9:183,NumpadAdd:184,NumpadBackspace:185,NumpadClear:186,NumpadClearEntry:187,NumpadComma:188,NumpadDecimal:189,NumpadDivide:190,NumpadEnter:191,NumpadEqual:192,NumpadMemoryAdd:193,NumpadMemoryClear:194,NumpadMemoryRecall:195,NumpadMemoryStore:196,NumpadMemorySubtract:197,NumpadMultiply:198,NumpadParenLeft:199,NumpadParenRight:200,NumpadSubtract:201,Open:202,PageDown:203,PageUp:204,Paste:205,Pause:206,Period:207,Power:208,PrintScreen:209,PrivacyScreenToggle:210,Props:211,Quote:212,Resume:213,ScrollLock:214,Select:215,SelectTask:216,Semicolon:217,ShiftLeft:218,ShiftRight:219,ShowAllWindows:220,Slash:221,Sleep:222,Space:223,Super:224,Suspend:225,Tab:226,Turbo:227,Undo:228,WakeUp:229,ZoomToggle:230} -B.L4=new A.bG(B.LX,[458907,458873,458978,458982,458833,458832,458831,458834,458881,458879,458880,458805,458801,458794,458799,458800,786544,786543,786980,786986,786981,786979,786983,786977,786982,458809,458806,458853,458976,458980,458890,458876,458875,458828,458791,458782,458783,458784,458785,458786,458787,458788,458789,458790,65717,786616,458829,458792,458798,458793,458793,458810,458819,458820,458821,458856,458857,458858,458859,458860,458861,458862,458811,458863,458864,458865,458866,458867,458812,458813,458814,458815,458816,458817,458818,458878,18,19,392961,392970,392971,392972,392973,392974,392975,392976,392962,392963,392964,392965,392966,392967,392968,392969,392977,392978,392979,392980,392981,392982,392983,392984,392985,392986,392987,392988,392989,392990,392991,458869,458826,16,458825,458852,458887,458889,458888,458756,458757,458758,458759,458760,458761,458762,458763,458764,458765,458766,458767,458768,458769,458770,458771,458772,458773,458774,458775,458776,458777,458778,458779,458780,458781,787101,458896,458897,458898,458899,458900,786836,786834,786891,786847,786826,786865,787083,787081,787084,786611,786609,786608,786637,786610,786612,786819,786615,786613,786614,458979,458983,24,458797,458891,458835,458850,458841,458842,458843,458844,458845,458846,458847,458848,458849,458839,458939,458968,458969,458885,458851,458836,458840,458855,458963,458962,458961,458960,458964,458837,458934,458935,458838,458868,458830,458827,458877,458824,458807,458854,458822,23,458915,458804,21,458823,458871,786850,458803,458977,458981,787103,458808,65666,458796,17,20,458795,22,458874,65667,786994],t.eL) -B.LS={"deleteBackward:":0,"deleteWordBackward:":1,"deleteToBeginningOfLine:":2,"deleteForward:":3,"deleteWordForward:":4,"deleteToEndOfLine:":5,"moveLeft:":6,"moveRight:":7,"moveForward:":8,"moveBackward:":9,"moveUp:":10,"moveDown:":11,"moveLeftAndModifySelection:":12,"moveRightAndModifySelection:":13,"moveUpAndModifySelection:":14,"moveDownAndModifySelection:":15,"moveWordLeft:":16,"moveWordRight:":17,"moveToBeginningOfParagraph:":18,"moveToEndOfParagraph:":19,"moveWordLeftAndModifySelection:":20,"moveWordRightAndModifySelection:":21,"moveParagraphBackwardAndModifySelection:":22,"moveParagraphForwardAndModifySelection:":23,"moveToLeftEndOfLine:":24,"moveToRightEndOfLine:":25,"moveToBeginningOfDocument:":26,"moveToEndOfDocument:":27,"moveToLeftEndOfLineAndModifySelection:":28,"moveToRightEndOfLineAndModifySelection:":29,"moveToBeginningOfDocumentAndModifySelection:":30,"moveToEndOfDocumentAndModifySelection:":31,"transpose:":32,"scrollToBeginningOfDocument:":33,"scrollToEndOfDocument:":34,"scrollPageUp:":35,"scrollPageDown:":36,"pageUpAndModifySelection:":37,"pageDownAndModifySelection:":38,"cancelOperation:":39,"insertTab:":40,"insertBacktab:":41} -B.yf=new A.mD(!1) -B.yg=new A.mD(!0) -B.km=new A.eI(B.X,B.eA) -B.lZ=new A.hC() -B.m3=new A.rj() -B.m7=new A.rC() -B.L5=new A.bG(B.LS,[B.iS,B.iW,B.iU,B.iT,B.iX,B.iV,B.dZ,B.e_,B.e_,B.dZ,B.fz,B.fA,B.j6,B.j7,B.ja,B.jb,B.j8,B.j9,B.cD,B.cE,B.ng,B.nh,B.ne,B.nf,B.cD,B.cE,B.fx,B.fy,B.n8,B.n9,B.j4,B.j5,B.ma,B.yf,B.yg,B.km,B.ht,B.jc,B.jd,B.lZ,B.m3,B.m7],A.ab("bG")) -B.oe=new A.i(32) -B.hG=new A.aS(B.oe,!1,!1,!1,!1) -B.hz=new A.aS(B.h_,!1,!1,!1,!1) -B.jJ=new A.i(8589935117) -B.P6=new A.aS(B.jJ,!1,!1,!1,!1) -B.OM=new A.aS(B.ee,!1,!1,!1,!1) -B.ON=new A.aS(B.fZ,!1,!1,!1,!1) -B.OO=new A.aS(B.fZ,!1,!0,!1,!1) -B.hE=new A.aS(B.bu,!1,!1,!1,!1) -B.hF=new A.aS(B.bv,!1,!1,!1,!1) -B.eK=new A.aS(B.eh,!1,!1,!1,!1) -B.eL=new A.aS(B.eg,!1,!1,!1,!1) -B.CC=new A.mx() -B.lX=new A.nt() -B.hs=new A.S6(0,"line") -B.O_=new A.eI(B.X,B.hs) -B.NY=new A.eI(B.U,B.hs) -B.NZ=new A.eI(B.c8,B.hs) -B.O0=new A.eI(B.cY,B.hs) -B.L6=new A.d3([B.hG,B.CC,B.hz,B.lX,B.P6,B.lX,B.OM,B.lZ,B.ON,B.m3,B.OO,B.m7,B.eM,B.O_,B.eN,B.NY,B.hE,B.NZ,B.hF,B.O0,B.eK,B.km,B.eL,B.ht],t.Fp) -B.JB=new A.i(33) -B.JC=new A.i(34) -B.JD=new A.i(35) -B.JE=new A.i(36) -B.JF=new A.i(37) -B.JG=new A.i(38) -B.JH=new A.i(39) -B.JI=new A.i(40) -B.JJ=new A.i(41) -B.of=new A.i(42) -B.tI=new A.i(43) -B.JK=new A.i(44) -B.tJ=new A.i(45) -B.tK=new A.i(46) -B.tL=new A.i(47) -B.tM=new A.i(48) -B.tN=new A.i(49) -B.tO=new A.i(50) -B.tP=new A.i(51) -B.tQ=new A.i(52) -B.tR=new A.i(53) -B.tS=new A.i(54) -B.tT=new A.i(55) -B.tU=new A.i(56) -B.tV=new A.i(57) -B.JL=new A.i(58) -B.JM=new A.i(59) -B.JN=new A.i(60) -B.JO=new A.i(61) -B.JP=new A.i(62) -B.JQ=new A.i(63) -B.JR=new A.i(64) -B.KG=new A.i(91) -B.KH=new A.i(92) -B.KI=new A.i(93) -B.KJ=new A.i(94) -B.KK=new A.i(95) -B.KL=new A.i(96) -B.jV=new A.i(97) -B.u_=new A.i(98) -B.jW=new A.i(99) -B.Ji=new A.i(100) -B.o9=new A.i(101) -B.oa=new A.i(102) -B.Jj=new A.i(103) -B.Jk=new A.i(104) -B.Jl=new A.i(105) -B.Jm=new A.i(106) -B.Jn=new A.i(107) -B.Jo=new A.i(108) -B.Jp=new A.i(109) -B.ob=new A.i(110) -B.Jq=new A.i(111) -B.oc=new A.i(112) -B.Jr=new A.i(113) -B.Js=new A.i(114) -B.Jt=new A.i(115) -B.od=new A.i(116) -B.Ju=new A.i(117) -B.jE=new A.i(118) -B.Jv=new A.i(119) -B.jF=new A.i(120) -B.Jw=new A.i(121) -B.ed=new A.i(122) -B.Jx=new A.i(123) -B.Jy=new A.i(124) -B.Jz=new A.i(125) -B.JA=new A.i(126) -B.JS=new A.i(8589934592) -B.JT=new A.i(8589934593) -B.JU=new A.i(8589934594) -B.JV=new A.i(8589934595) -B.JW=new A.i(8589934608) -B.JX=new A.i(8589934609) -B.JY=new A.i(8589934610) -B.JZ=new A.i(8589934611) -B.K_=new A.i(8589934612) -B.K0=new A.i(8589934624) -B.K1=new A.i(8589934625) -B.K2=new A.i(8589934626) -B.K3=new A.i(8589935088) -B.K4=new A.i(8589935090) -B.K5=new A.i(8589935092) -B.K6=new A.i(8589935094) -B.K7=new A.i(8589935144) -B.K8=new A.i(8589935145) -B.tW=new A.i(8589935146) -B.tX=new A.i(8589935147) -B.K9=new A.i(8589935148) -B.tY=new A.i(8589935149) -B.jK=new A.i(8589935150) -B.tZ=new A.i(8589935151) -B.jL=new A.i(8589935152) -B.jM=new A.i(8589935153) -B.jN=new A.i(8589935154) -B.jO=new A.i(8589935155) -B.jP=new A.i(8589935156) -B.jQ=new A.i(8589935157) -B.jR=new A.i(8589935158) -B.jS=new A.i(8589935159) -B.jT=new A.i(8589935160) -B.jU=new A.i(8589935161) -B.Ka=new A.i(8589935165) -B.Kb=new A.i(8589935361) -B.Kc=new A.i(8589935362) -B.Kd=new A.i(8589935363) -B.Ke=new A.i(8589935364) -B.Kf=new A.i(8589935365) -B.Kg=new A.i(8589935366) -B.Kh=new A.i(8589935367) -B.Ki=new A.i(8589935368) -B.Kj=new A.i(8589935369) -B.Kk=new A.i(8589935370) -B.Kl=new A.i(8589935371) -B.Km=new A.i(8589935372) -B.Kn=new A.i(8589935373) -B.Ko=new A.i(8589935374) -B.Kp=new A.i(8589935375) -B.Kq=new A.i(8589935376) -B.Kr=new A.i(8589935377) -B.Ks=new A.i(8589935378) -B.Kt=new A.i(8589935379) -B.Ku=new A.i(8589935380) -B.Kv=new A.i(8589935381) -B.Kw=new A.i(8589935382) -B.Kx=new A.i(8589935383) -B.Ky=new A.i(8589935384) -B.Kz=new A.i(8589935385) -B.KA=new A.i(8589935386) -B.KB=new A.i(8589935387) -B.KC=new A.i(8589935388) -B.KD=new A.i(8589935389) -B.KE=new A.i(8589935390) -B.KF=new A.i(8589935391) -B.L7=new A.d3([32,B.oe,33,B.JB,34,B.JC,35,B.JD,36,B.JE,37,B.JF,38,B.JG,39,B.JH,40,B.JI,41,B.JJ,42,B.of,43,B.tI,44,B.JK,45,B.tJ,46,B.tK,47,B.tL,48,B.tM,49,B.tN,50,B.tO,51,B.tP,52,B.tQ,53,B.tR,54,B.tS,55,B.tT,56,B.tU,57,B.tV,58,B.JL,59,B.JM,60,B.JN,61,B.JO,62,B.JP,63,B.JQ,64,B.JR,91,B.KG,92,B.KH,93,B.KI,94,B.KJ,95,B.KK,96,B.KL,97,B.jV,98,B.u_,99,B.jW,100,B.Ji,101,B.o9,102,B.oa,103,B.Jj,104,B.Jk,105,B.Jl,106,B.Jm,107,B.Jn,108,B.Jo,109,B.Jp,110,B.ob,111,B.Jq,112,B.oc,113,B.Jr,114,B.Js,115,B.Jt,116,B.od,117,B.Ju,118,B.jE,119,B.Jv,120,B.jF,121,B.Jw,122,B.ed,123,B.Jx,124,B.Jy,125,B.Jz,126,B.JA,4294967297,B.og,4294967304,B.bh,4294967305,B.fZ,4294967309,B.h_,4294967323,B.ee,4294967423,B.b1,4294967553,B.oh,4294967555,B.h0,4294967556,B.ef,4294967558,B.jG,4294967559,B.oi,4294967560,B.oj,4294967562,B.h1,4294967564,B.h2,4294967566,B.ok,4294967567,B.ol,4294967568,B.om,4294967569,B.on,4294968065,B.bF,4294968066,B.bu,4294968067,B.bv,4294968068,B.bG,4294968069,B.cJ,4294968070,B.cK,4294968071,B.eg,4294968072,B.eh,4294968321,B.jH,4294968322,B.oo,4294968323,B.op,4294968324,B.oq,4294968325,B.or,4294968326,B.os,4294968327,B.jI,4294968328,B.ot,4294968329,B.ou,4294968330,B.ov,4294968577,B.ow,4294968578,B.ox,4294968579,B.oy,4294968580,B.oz,4294968581,B.oA,4294968582,B.oB,4294968583,B.oC,4294968584,B.oD,4294968585,B.oE,4294968586,B.oF,4294968587,B.oG,4294968588,B.oH,4294968589,B.oI,4294968590,B.oJ,4294968833,B.oK,4294968834,B.oL,4294968835,B.oM,4294968836,B.oN,4294968837,B.oO,4294968838,B.oP,4294968839,B.oQ,4294968840,B.oR,4294968841,B.oS,4294968842,B.oT,4294968843,B.oU,4294969089,B.oV,4294969090,B.oW,4294969091,B.oX,4294969092,B.oY,4294969093,B.oZ,4294969094,B.p_,4294969095,B.p0,4294969096,B.p1,4294969097,B.p2,4294969098,B.p3,4294969099,B.p4,4294969100,B.p5,4294969101,B.p6,4294969102,B.p7,4294969103,B.p8,4294969104,B.p9,4294969105,B.pa,4294969106,B.pb,4294969107,B.pc,4294969108,B.pd,4294969109,B.pe,4294969110,B.pf,4294969111,B.pg,4294969112,B.ph,4294969113,B.pi,4294969114,B.pj,4294969115,B.pk,4294969116,B.pl,4294969117,B.pm,4294969345,B.pn,4294969346,B.po,4294969347,B.pp,4294969348,B.pq,4294969349,B.pr,4294969350,B.ps,4294969351,B.pt,4294969352,B.pu,4294969353,B.pv,4294969354,B.pw,4294969355,B.px,4294969356,B.py,4294969357,B.pz,4294969358,B.pA,4294969359,B.pB,4294969360,B.pC,4294969361,B.pD,4294969362,B.pE,4294969363,B.pF,4294969364,B.pG,4294969365,B.pH,4294969366,B.pI,4294969367,B.pJ,4294969368,B.pK,4294969601,B.pL,4294969602,B.pM,4294969603,B.pN,4294969604,B.pO,4294969605,B.pP,4294969606,B.pQ,4294969607,B.pR,4294969608,B.pS,4294969857,B.pT,4294969858,B.pU,4294969859,B.pV,4294969860,B.pW,4294969861,B.pX,4294969863,B.pY,4294969864,B.pZ,4294969865,B.q_,4294969866,B.q0,4294969867,B.q1,4294969868,B.q2,4294969869,B.q3,4294969870,B.q4,4294969871,B.q5,4294969872,B.q6,4294969873,B.q7,4294970113,B.q8,4294970114,B.q9,4294970115,B.qa,4294970116,B.qb,4294970117,B.qc,4294970118,B.qd,4294970119,B.qe,4294970120,B.qf,4294970121,B.qg,4294970122,B.qh,4294970123,B.qi,4294970124,B.qj,4294970125,B.qk,4294970126,B.ql,4294970127,B.qm,4294970369,B.qn,4294970370,B.qo,4294970371,B.qp,4294970372,B.qq,4294970373,B.qr,4294970374,B.qs,4294970375,B.qt,4294970625,B.qu,4294970626,B.qv,4294970627,B.qw,4294970628,B.qx,4294970629,B.qy,4294970630,B.qz,4294970631,B.qA,4294970632,B.qB,4294970633,B.qC,4294970634,B.qD,4294970635,B.qE,4294970636,B.qF,4294970637,B.qG,4294970638,B.qH,4294970639,B.qI,4294970640,B.qJ,4294970641,B.qK,4294970642,B.qL,4294970643,B.qM,4294970644,B.qN,4294970645,B.qO,4294970646,B.qP,4294970647,B.qQ,4294970648,B.qR,4294970649,B.qS,4294970650,B.qT,4294970651,B.qU,4294970652,B.qV,4294970653,B.qW,4294970654,B.qX,4294970655,B.qY,4294970656,B.qZ,4294970657,B.r_,4294970658,B.r0,4294970659,B.r1,4294970660,B.r2,4294970661,B.r3,4294970662,B.r4,4294970663,B.r5,4294970664,B.r6,4294970665,B.r7,4294970666,B.r8,4294970667,B.r9,4294970668,B.ra,4294970669,B.rb,4294970670,B.rc,4294970671,B.rd,4294970672,B.re,4294970673,B.rf,4294970674,B.rg,4294970675,B.rh,4294970676,B.ri,4294970677,B.rj,4294970678,B.rk,4294970679,B.rl,4294970680,B.rm,4294970681,B.rn,4294970682,B.ro,4294970683,B.rp,4294970684,B.rq,4294970685,B.rr,4294970686,B.rs,4294970687,B.rt,4294970688,B.ru,4294970689,B.rv,4294970690,B.rw,4294970691,B.rx,4294970692,B.ry,4294970693,B.rz,4294970694,B.rA,4294970695,B.rB,4294970696,B.rC,4294970697,B.rD,4294970698,B.rE,4294970699,B.rF,4294970700,B.rG,4294970701,B.rH,4294970702,B.rI,4294970703,B.rJ,4294970704,B.rK,4294970705,B.rL,4294970706,B.rM,4294970707,B.rN,4294970708,B.rO,4294970709,B.rP,4294970710,B.rQ,4294970711,B.rR,4294970712,B.rS,4294970713,B.rT,4294970714,B.rU,4294970715,B.rV,4294970882,B.rW,4294970884,B.rX,4294970885,B.rY,4294970886,B.rZ,4294970887,B.t_,4294970888,B.t0,4294970889,B.t1,4294971137,B.t2,4294971138,B.t3,4294971393,B.t4,4294971394,B.t5,4294971395,B.t6,4294971396,B.t7,4294971397,B.t8,4294971398,B.t9,4294971399,B.ta,4294971400,B.tb,4294971401,B.tc,4294971402,B.td,4294971403,B.te,4294971649,B.tf,4294971650,B.tg,4294971651,B.th,4294971652,B.ti,4294971653,B.tj,4294971654,B.tk,4294971655,B.tl,4294971656,B.tm,4294971657,B.tn,4294971658,B.to,4294971659,B.tp,4294971660,B.tq,4294971661,B.tr,4294971662,B.ts,4294971663,B.tt,4294971664,B.tu,4294971665,B.tv,4294971666,B.tw,4294971667,B.tx,4294971668,B.ty,4294971669,B.tz,4294971670,B.tA,4294971671,B.tB,4294971672,B.tC,4294971673,B.tD,4294971674,B.tE,4294971675,B.tF,4294971905,B.tG,4294971906,B.tH,8589934592,B.JS,8589934593,B.JT,8589934594,B.JU,8589934595,B.JV,8589934608,B.JW,8589934609,B.JX,8589934610,B.JY,8589934611,B.JZ,8589934612,B.K_,8589934624,B.K0,8589934625,B.K1,8589934626,B.K2,8589934848,B.ei,8589934849,B.h3,8589934850,B.bi,8589934851,B.bw,8589934852,B.ej,8589934853,B.h4,8589934854,B.ek,8589934855,B.h5,8589935088,B.K3,8589935090,B.K4,8589935092,B.K5,8589935094,B.K6,8589935117,B.jJ,8589935144,B.K7,8589935145,B.K8,8589935146,B.tW,8589935147,B.tX,8589935148,B.K9,8589935149,B.tY,8589935150,B.jK,8589935151,B.tZ,8589935152,B.jL,8589935153,B.jM,8589935154,B.jN,8589935155,B.jO,8589935156,B.jP,8589935157,B.jQ,8589935158,B.jR,8589935159,B.jS,8589935160,B.jT,8589935161,B.jU,8589935165,B.Ka,8589935361,B.Kb,8589935362,B.Kc,8589935363,B.Kd,8589935364,B.Ke,8589935365,B.Kf,8589935366,B.Kg,8589935367,B.Kh,8589935368,B.Ki,8589935369,B.Kj,8589935370,B.Kk,8589935371,B.Kl,8589935372,B.Km,8589935373,B.Kn,8589935374,B.Ko,8589935375,B.Kp,8589935376,B.Kq,8589935377,B.Kr,8589935378,B.Ks,8589935379,B.Kt,8589935380,B.Ku,8589935381,B.Kv,8589935382,B.Kw,8589935383,B.Kx,8589935384,B.Ky,8589935385,B.Kz,8589935386,B.KA,8589935387,B.KB,8589935388,B.KC,8589935389,B.KD,8589935390,B.KE,8589935391,B.KF],A.ab("d3")) -B.c0=new A.ok(0,"canvas") -B.dd=new A.ok(1,"card") -B.Lq=new A.ok(2,"circle") -B.jZ=new A.ok(3,"button") -B.de=new A.ok(4,"transparency") -B.L8=new A.d3([B.c0,null,B.dd,B.f6,B.Lq,null,B.jZ,B.f6,B.de,null],A.ab("d3")) -B.u3=new A.bG(B.aW,[],A.ab("bG")) -B.La=new A.bG(B.aW,[],A.ab("bG")) -B.h7=new A.bG(B.aW,[],A.ab("bG")) -B.L9=new A.bG(B.aW,[],A.ab("bG")) -B.u2=new A.bG(B.aW,[],A.ab("bG>")) -B.Ld=new A.bG(B.aW,[],A.ab("bG")) -B.Le=new A.bG(B.aW,[],A.ab("bG")) -B.u4=new A.bG(B.aW,[],A.ab("bG")) -B.u1=new A.bG(B.aW,[],A.ab("bG")) -B.Lb=new A.bG(B.aW,[],A.ab("bG")) -B.u5=new A.bG(B.aW,[],A.ab("bG>")) -B.kA=new A.aS(B.bF,!1,!1,!0,!1) -B.kx=new A.aS(B.bu,!1,!1,!0,!1) -B.ky=new A.aS(B.bv,!1,!1,!0,!1) -B.kz=new A.aS(B.bG,!1,!1,!0,!1) -B.yX=new A.aS(B.bF,!1,!1,!1,!0) -B.yU=new A.aS(B.bu,!1,!1,!1,!0) -B.yV=new A.aS(B.bv,!1,!1,!1,!0) -B.yW=new A.aS(B.bG,!1,!1,!1,!0) -B.kw=new A.aS(B.eh,!1,!0,!1,!1) -B.kB=new A.aS(B.eg,!1,!0,!1,!1) -B.hD=new A.aS(B.cJ,!1,!0,!1,!1) -B.hC=new A.aS(B.cK,!1,!0,!1,!1) -B.yQ=new A.aS(B.bu,!0,!1,!1,!1) -B.yR=new A.aS(B.bv,!0,!1,!1,!1) -B.yS=new A.aS(B.bu,!0,!0,!1,!1) -B.yT=new A.aS(B.bv,!0,!0,!1,!1) -B.hB=new A.aS(B.cJ,!1,!1,!1,!1) -B.hA=new A.aS(B.cK,!1,!1,!1,!1) -B.yZ=new A.aS(B.cJ,!0,!1,!1,!1) -B.yY=new A.aS(B.cK,!0,!1,!1,!1) -B.Lf=new A.d3([B.kA,B.t,B.kx,B.t,B.ky,B.t,B.kz,B.t,B.yX,B.t,B.yU,B.t,B.yV,B.t,B.yW,B.t,B.kw,B.t,B.kB,B.t,B.hD,B.t,B.hC,B.t,B.eN,B.t,B.hE,B.t,B.hF,B.t,B.eM,B.t,B.yQ,B.t,B.yR,B.t,B.yS,B.t,B.yT,B.t,B.eK,B.t,B.eL,B.t,B.hB,B.t,B.hA,B.t,B.yZ,B.t,B.yY,B.t,B.hG,B.t,B.hz,B.t],t.Fp) -B.LT={in:0,iw:1,ji:2,jw:3,mo:4,aam:5,adp:6,aue:7,ayx:8,bgm:9,bjd:10,ccq:11,cjr:12,cka:13,cmk:14,coy:15,cqu:16,drh:17,drw:18,gav:19,gfx:20,ggn:21,gti:22,guv:23,hrr:24,ibi:25,ilw:26,jeg:27,kgc:28,kgh:29,koj:30,krm:31,ktr:32,kvs:33,kwq:34,kxe:35,kzj:36,kzt:37,lii:38,lmm:39,meg:40,mst:41,mwj:42,myt:43,nad:44,ncp:45,nnx:46,nts:47,oun:48,pcr:49,pmc:50,pmu:51,ppa:52,ppr:53,pry:54,puz:55,sca:56,skk:57,tdu:58,thc:59,thx:60,tie:61,tkk:62,tlw:63,tmp:64,tne:65,tnf:66,tsf:67,uok:68,xba:69,xia:70,xkh:71,xsj:72,ybd:73,yma:74,ymt:75,yos:76,yuu:77} -B.bI=new A.bG(B.LT,["id","he","yi","jv","ro","aas","dz","ktz","nun","bcg","drl","rki","mom","cmr","xch","pij","quh","khk","prs","dev","vaj","gvr","nyc","duz","jal","opa","gal","oyb","tdf","kml","kwv","bmf","dtp","gdj","yam","tvd","dtp","dtp","raq","rmx","cir","mry","vaj","mry","xny","kdz","ngv","pij","vaj","adx","huw","phr","bfy","lcq","prt","pub","hle","oyb","dtp","tpo","oyb","ras","twm","weo","tyj","kak","prs","taj","ema","cax","acn","waw","suj","rki","lrr","mtm","zom","yug"],t.li) -B.LO={A:0,B:1,C:2,D:3,E:4,F:5,G:6,H:7,I:8,J:9,K:10,L:11,M:12,N:13,O:14,P:15,Q:16,R:17,S:18,T:19,U:20,V:21,W:22,X:23,Y:24,Z:25,"\xc0":26,"\xc1":27,"\xc2":28,"\xc3":29,"\xc4":30,"\xc5":31,"\xc6":32,"\xc7":33,"\xc8":34,"\xc9":35,"\xca":36,"\xcb":37,"\xcc":38,"\xcd":39,"\xce":40,"\xcf":41,"\xd0":42,"\xd1":43,"\xd2":44,"\xd3":45,"\xd4":46,"\xd5":47,"\xd6":48,"\xd8":49,"\xd9":50,"\xda":51,"\xdb":52,"\xdc":53,"\xdd":54,"\xde":55,"\u0100":56,"\u0102":57,"\u0104":58,"\u0106":59,"\u0108":60,"\u010a":61,"\u010c":62,"\u010e":63,"\u0110":64,"\u0112":65,"\u0114":66,"\u0116":67,"\u0118":68,"\u011a":69,"\u011c":70,"\u011e":71,"\u0120":72,"\u0122":73,"\u0124":74,"\u0126":75,"\u0128":76,"\u012a":77,"\u012c":78,"\u012e":79,"\u0130":80,"\u0134":81,"\u0136":82,"\u0139":83,"\u013b":84,"\u013d":85,"\u013f":86,"\u0141":87,"\u0143":88,"\u0145":89,"\u0147":90,"\u014a":91,"\u014c":92,"\u014e":93,"\u0150":94,"\u0154":95,"\u0156":96,"\u0158":97,"\u015a":98,"\u015c":99,"\u015e":100,"\u0160":101,"\u0162":102,"\u0164":103,"\u0166":104,"\u0168":105,"\u016a":106,"\u016c":107,"\u016e":108,"\u0170":109,"\u0172":110,"\u0174":111,"\u0176":112,"\u0178":113,"\u0179":114,"\u017b":115,"\u017d":116,"\u0181":117,"\u0182":118,"\u0184":119,"\u0186":120,"\u0187":121,"\u0189":122,"\u018a":123,"\u018b":124,"\u018e":125,"\u018f":126,"\u0190":127,"\u0191":128,"\u0193":129,"\u0194":130,"\u0196":131,"\u0197":132,"\u0198":133,"\u019c":134,"\u019d":135,"\u019f":136,"\u01a0":137,"\u01a2":138,"\u01a4":139,"\u01a7":140,"\u01a9":141,"\u01ac":142,"\u01ae":143,"\u01af":144,"\u01b1":145,"\u01b2":146,"\u01b3":147,"\u01b5":148,"\u01b7":149,"\u01b8":150,"\u01bc":151,"\u01c4":152,"\u01c5":153,"\u01c7":154,"\u01c8":155,"\u01ca":156,"\u01cb":157,"\u01cd":158,"\u01cf":159,"\u01d1":160,"\u01d3":161,"\u01d5":162,"\u01d7":163,"\u01d9":164,"\u01db":165,"\u01de":166,"\u01e0":167,"\u01e2":168,"\u01e4":169,"\u01e6":170,"\u01e8":171,"\u01ea":172,"\u01ec":173,"\u01ee":174,"\u01f1":175,"\u01f2":176,"\u01f4":177,"\u01f6":178,"\u01f7":179,"\u01f8":180,"\u01fa":181,"\u01fc":182,"\u01fe":183,"\u0200":184,"\u0202":185,"\u0204":186,"\u0206":187,"\u0208":188,"\u020a":189,"\u020c":190,"\u020e":191,"\u0210":192,"\u0212":193,"\u0214":194,"\u0216":195,"\u0218":196,"\u021a":197,"\u021c":198,"\u021e":199,"\u0220":200,"\u0222":201,"\u0224":202,"\u0226":203,"\u0228":204,"\u022a":205,"\u022c":206,"\u022e":207,"\u0230":208,"\u0232":209,"\u023a":210,"\u023b":211,"\u023d":212,"\u023e":213,"\u0241":214,"\u0243":215,"\u0244":216,"\u0245":217,"\u0246":218,"\u0248":219,"\u024a":220,"\u024c":221,"\u024e":222,"\u0370":223,"\u0372":224,"\u0376":225,"\u037f":226,"\u0386":227,"\u0388":228,"\u0389":229,"\u038a":230,"\u038c":231,"\u038e":232,"\u038f":233,"\u0391":234,"\u0392":235,"\u0393":236,"\u0394":237,"\u0395":238,"\u0396":239,"\u0397":240,"\u0398":241,"\u0399":242,"\u039a":243,"\u039b":244,"\u039c":245,"\u039d":246,"\u039e":247,"\u039f":248,"\u03a0":249,"\u03a1":250,"\u03a3":251,"\u03a4":252,"\u03a5":253,"\u03a6":254,"\u03a7":255,"\u03a8":256,"\u03a9":257,"\u03aa":258,"\u03ab":259,"\u03e2":260,"\u03e4":261,"\u03e6":262,"\u03e8":263,"\u03ea":264,"\u03ec":265,"\u03ee":266,"\u03f7":267,"\u03fa":268,"\u0400":269,"\u0401":270,"\u0402":271,"\u0403":272,"\u0404":273,"\u0405":274,"\u0406":275,"\u0407":276,"\u0408":277,"\u0409":278,"\u040a":279,"\u040b":280,"\u040c":281,"\u040d":282,"\u040e":283,"\u040f":284,"\u0410":285,"\u0411":286,"\u0412":287,"\u0413":288,"\u0414":289,"\u0415":290,"\u0416":291,"\u0417":292,"\u0418":293,"\u0419":294,"\u041a":295,"\u041b":296,"\u041c":297,"\u041d":298,"\u041e":299,"\u041f":300,"\u0420":301,"\u0421":302,"\u0422":303,"\u0423":304,"\u0424":305,"\u0425":306,"\u0426":307,"\u0427":308,"\u0428":309,"\u0429":310,"\u042a":311,"\u042b":312,"\u042c":313,"\u042d":314,"\u042e":315,"\u042f":316,"\u0460":317,"\u0462":318,"\u0464":319,"\u0466":320,"\u0468":321,"\u046a":322,"\u046c":323,"\u046e":324,"\u0470":325,"\u0472":326,"\u0474":327,"\u0476":328,"\u0478":329,"\u047a":330,"\u047c":331,"\u047e":332,"\u0480":333,"\u048a":334,"\u048c":335,"\u048e":336,"\u0490":337,"\u0492":338,"\u0494":339,"\u0496":340,"\u0498":341,"\u049a":342,"\u049c":343,"\u049e":344,"\u04a0":345,"\u04a2":346,"\u04a6":347,"\u04a8":348,"\u04aa":349,"\u04ac":350,"\u04ae":351,"\u04b0":352,"\u04b2":353,"\u04b6":354,"\u04b8":355,"\u04ba":356,"\u04bc":357,"\u04be":358,"\u04c1":359,"\u04c3":360,"\u04c5":361,"\u04c7":362,"\u04c9":363,"\u04cb":364,"\u04cd":365,"\u04d0":366,"\u04d2":367,"\u04d6":368,"\u04d8":369,"\u04da":370,"\u04dc":371,"\u04de":372,"\u04e0":373,"\u04e2":374,"\u04e4":375,"\u04e6":376,"\u04e8":377,"\u04ea":378,"\u04ec":379,"\u04ee":380,"\u04f0":381,"\u04f2":382,"\u04f4":383,"\u04f6":384,"\u04f8":385,"\u04fa":386,"\u04fc":387,"\u04fe":388,"\u0500":389,"\u0502":390,"\u0504":391,"\u0506":392,"\u0508":393,"\u050a":394,"\u050c":395,"\u050e":396,"\u0510":397,"\u0512":398,"\u0514":399,"\u0516":400,"\u0518":401,"\u051a":402,"\u051c":403,"\u051e":404,"\u0520":405,"\u0522":406,"\u0524":407,"\u0526":408,"\u0528":409,"\u052a":410,"\u052c":411,"\u052e":412,"\u0531":413,"\u0532":414,"\u0533":415,"\u0534":416,"\u0535":417,"\u0536":418,"\u0537":419,"\u0538":420,"\u0539":421,"\u053a":422,"\u053b":423,"\u053c":424,"\u053d":425,"\u053e":426,"\u053f":427,"\u0540":428,"\u0541":429,"\u0542":430,"\u0543":431,"\u0544":432,"\u0545":433,"\u0546":434,"\u0547":435,"\u0548":436,"\u0549":437,"\u054a":438,"\u054b":439,"\u054c":440,"\u054d":441,"\u054e":442,"\u054f":443,"\u0550":444,"\u0551":445,"\u0552":446,"\u0553":447,"\u0554":448,"\u0555":449,"\u0556":450,"\u10a0":451,"\u10a1":452,"\u10a2":453,"\u10a3":454,"\u10a4":455,"\u10a5":456,"\u10a6":457,"\u10a7":458,"\u10a8":459,"\u10a9":460,"\u10aa":461,"\u10ab":462,"\u10ac":463,"\u10ad":464,"\u10ae":465,"\u10af":466,"\u10b0":467,"\u10b1":468,"\u10b2":469,"\u10b3":470,"\u10b4":471,"\u10b5":472,"\u10b6":473,"\u10b7":474,"\u10b8":475,"\u10b9":476,"\u10ba":477,"\u10bb":478,"\u10bc":479,"\u10bd":480,"\u10be":481,"\u10bf":482,"\u10c0":483,"\u10c1":484,"\u10c2":485,"\u10c3":486,"\u10c4":487,"\u10c5":488,"\u10c7":489,"\u10cd":490,"\u1c90":491,"\u1c91":492,"\u1c92":493,"\u1c93":494,"\u1c94":495,"\u1c95":496,"\u1c96":497,"\u1c97":498,"\u1c98":499,"\u1c99":500,"\u1c9a":501,"\u1c9b":502,"\u1c9c":503,"\u1c9d":504,"\u1c9e":505,"\u1c9f":506,"\u1ca0":507,"\u1ca1":508,"\u1ca2":509,"\u1ca3":510,"\u1ca4":511,"\u1ca5":512,"\u1ca6":513,"\u1ca7":514,"\u1ca8":515,"\u1ca9":516,"\u1caa":517,"\u1cab":518,"\u1cac":519,"\u1cad":520,"\u1cae":521,"\u1caf":522,"\u1cb0":523,"\u1cb1":524,"\u1cb2":525,"\u1cb3":526,"\u1cb4":527,"\u1cb5":528,"\u1cb6":529,"\u1cb7":530,"\u1cb8":531,"\u1cb9":532,"\u1cba":533,"\u1cbd":534,"\u1cbe":535,"\u1cbf":536,"\u1e00":537,"\u1e02":538,"\u1e04":539,"\u1e06":540,"\u1e08":541,"\u1e0a":542,"\u1e0c":543,"\u1e0e":544,"\u1e10":545,"\u1e12":546,"\u1e14":547,"\u1e16":548,"\u1e18":549,"\u1e1a":550,"\u1e1c":551,"\u1e1e":552,"\u1e20":553,"\u1e22":554,"\u1e24":555,"\u1e26":556,"\u1e28":557,"\u1e2a":558,"\u1e2c":559,"\u1e2e":560,"\u1e30":561,"\u1e32":562,"\u1e34":563,"\u1e36":564,"\u1e38":565,"\u1e3a":566,"\u1e3c":567,"\u1e3e":568,"\u1e40":569,"\u1e42":570,"\u1e44":571,"\u1e46":572,"\u1e48":573,"\u1e4a":574,"\u1e4c":575,"\u1e4e":576,"\u1e50":577,"\u1e52":578,"\u1e54":579,"\u1e56":580,"\u1e58":581,"\u1e5a":582,"\u1e5c":583,"\u1e5e":584,"\u1e60":585,"\u1e62":586,"\u1e64":587,"\u1e66":588,"\u1e68":589,"\u1e6a":590,"\u1e6c":591,"\u1e6e":592,"\u1e70":593,"\u1e72":594,"\u1e74":595,"\u1e76":596,"\u1e78":597,"\u1e7a":598,"\u1e7c":599,"\u1e7e":600,"\u1e80":601,"\u1e82":602,"\u1e84":603,"\u1e86":604,"\u1e88":605,"\u1e8a":606,"\u1e8c":607,"\u1e8e":608,"\u1e90":609,"\u1e92":610,"\u1e94":611,"\u1e9e":612,"\u1ea0":613,"\u1ea2":614,"\u1ea4":615,"\u1ea6":616,"\u1ea8":617,"\u1eaa":618,"\u1eac":619,"\u1eae":620,"\u1eb0":621,"\u1eb2":622,"\u1eb4":623,"\u1eb6":624,"\u1eb8":625,"\u1eba":626,"\u1ebc":627,"\u1ebe":628,"\u1ec0":629,"\u1ec2":630,"\u1ec4":631,"\u1ec6":632,"\u1ec8":633,"\u1eca":634,"\u1ecc":635,"\u1ece":636,"\u1ed0":637,"\u1ed2":638,"\u1ed4":639,"\u1ed6":640,"\u1ed8":641,"\u1eda":642,"\u1edc":643,"\u1ede":644,"\u1ee0":645,"\u1ee2":646,"\u1ee4":647,"\u1ee6":648,"\u1ee8":649,"\u1eea":650,"\u1eec":651,"\u1eee":652,"\u1ef0":653,"\u1ef2":654,"\u1ef4":655,"\u1ef6":656,"\u1ef8":657,"\u1efa":658,"\u1efc":659,"\u1efe":660,"\u1f08":661,"\u1f09":662,"\u1f0a":663,"\u1f0b":664,"\u1f0c":665,"\u1f0d":666,"\u1f0e":667,"\u1f0f":668,"\u1f18":669,"\u1f19":670,"\u1f1a":671,"\u1f1b":672,"\u1f1c":673,"\u1f1d":674,"\u1f28":675,"\u1f29":676,"\u1f2a":677,"\u1f2b":678,"\u1f2c":679,"\u1f2d":680,"\u1f2e":681,"\u1f2f":682,"\u1f38":683,"\u1f39":684,"\u1f3a":685,"\u1f3b":686,"\u1f3c":687,"\u1f3d":688,"\u1f3e":689,"\u1f3f":690,"\u1f48":691,"\u1f49":692,"\u1f4a":693,"\u1f4b":694,"\u1f4c":695,"\u1f4d":696,"\u1f59":697,"\u1f5b":698,"\u1f5d":699,"\u1f5f":700,"\u1f68":701,"\u1f69":702,"\u1f6a":703,"\u1f6b":704,"\u1f6c":705,"\u1f6d":706,"\u1f6e":707,"\u1f6f":708,"\u1f88":709,"\u1f89":710,"\u1f8a":711,"\u1f8b":712,"\u1f8c":713,"\u1f8d":714,"\u1f8e":715,"\u1f8f":716,"\u1f98":717,"\u1f99":718,"\u1f9a":719,"\u1f9b":720,"\u1f9c":721,"\u1f9d":722,"\u1f9e":723,"\u1f9f":724,"\u1fa8":725,"\u1fa9":726,"\u1faa":727,"\u1fab":728,"\u1fac":729,"\u1fad":730,"\u1fae":731,"\u1faf":732,"\u1fb8":733,"\u1fb9":734,"\u1fba":735,"\u1fbb":736,"\u1fbc":737,"\u1fc8":738,"\u1fc9":739,"\u1fca":740,"\u1fcb":741,"\u1fcc":742,"\u1fd8":743,"\u1fd9":744,"\u1fda":745,"\u1fdb":746,"\u1fe8":747,"\u1fe9":748,"\u1fea":749,"\u1feb":750,"\u1fec":751,"\u1ff8":752,"\u1ff9":753,"\u1ffa":754,"\u1ffb":755,"\u1ffc":756,"\u24b6":757,"\u24b7":758,"\u24b8":759,"\u24b9":760,"\u24ba":761,"\u24bb":762,"\u24bc":763,"\u24bd":764,"\u24be":765,"\u24bf":766,"\u24c0":767,"\u24c1":768,"\u24c2":769,"\u24c3":770,"\u24c4":771,"\u24c5":772,"\u24c6":773,"\u24c7":774,"\u24c8":775,"\u24c9":776,"\u24ca":777,"\u24cb":778,"\u24cc":779,"\u24cd":780,"\u24ce":781,"\u24cf":782,"\u2c00":783,"\u2c01":784,"\u2c02":785,"\u2c03":786,"\u2c04":787,"\u2c05":788,"\u2c06":789,"\u2c07":790,"\u2c08":791,"\u2c09":792,"\u2c0a":793,"\u2c0b":794,"\u2c0c":795,"\u2c0d":796,"\u2c0e":797,"\u2c0f":798,"\u2c10":799,"\u2c11":800,"\u2c12":801,"\u2c13":802,"\u2c14":803,"\u2c15":804,"\u2c16":805,"\u2c17":806,"\u2c18":807,"\u2c19":808,"\u2c1a":809,"\u2c1b":810,"\u2c1c":811,"\u2c1d":812,"\u2c1e":813,"\u2c1f":814,"\u2c20":815,"\u2c21":816,"\u2c22":817,"\u2c23":818,"\u2c24":819,"\u2c25":820,"\u2c26":821,"\u2c27":822,"\u2c28":823,"\u2c29":824,"\u2c2a":825,"\u2c2b":826,"\u2c2c":827,"\u2c2d":828,"\u2c2e":829,"\u2c2f":830,"\u2c60":831,"\u2c62":832,"\u2c63":833,"\u2c64":834,"\u2c67":835,"\u2c69":836,"\u2c6b":837,"\u2c6d":838,"\u2c6e":839,"\u2c6f":840,"\u2c70":841,"\u2c72":842,"\u2c75":843,"\u2c7e":844,"\u2c7f":845,"\u2c80":846,"\u2c82":847,"\u2c84":848,"\u2c86":849,"\u2c88":850,"\u2c8a":851,"\u2c8c":852,"\u2c8e":853,"\u2c90":854,"\u2c92":855,"\u2c94":856,"\u2c96":857,"\u2c98":858,"\u2c9a":859,"\u2c9c":860,"\u2c9e":861,"\u2ca0":862,"\u2ca2":863,"\u2ca4":864,"\u2ca6":865,"\u2ca8":866,"\u2caa":867,"\u2cac":868,"\u2cae":869,"\u2cb0":870,"\u2cb2":871,"\u2cb4":872,"\u2cb6":873,"\u2cb8":874,"\u2cba":875,"\u2cbc":876,"\u2cbe":877,"\u2cc0":878,"\u2cc2":879,"\u2cc4":880,"\u2cc6":881,"\u2cc8":882,"\u2cca":883,"\u2ccc":884,"\u2cce":885,"\u2cd0":886,"\u2cd2":887,"\u2cd4":888,"\u2cd6":889,"\u2cd8":890,"\u2cda":891,"\u2cdc":892,"\u2cde":893,"\u2ce0":894,"\u2ce2":895,"\u2ceb":896,"\u2ced":897,"\u2cf2":898,"\ua640":899,"\ua642":900,"\ua644":901,"\ua646":902,"\ua648":903,"\ua64a":904,"\ua64c":905,"\ua64e":906,"\ua650":907,"\ua652":908,"\ua654":909,"\ua656":910,"\ua658":911,"\ua65a":912,"\ua65c":913,"\ua65e":914,"\ua660":915,"\ua662":916,"\ua664":917,"\ua666":918,"\ua668":919,"\ua66a":920,"\ua66c":921,"\ua680":922,"\ua682":923,"\ua684":924,"\ua686":925,"\ua688":926,"\ua68a":927,"\ua68c":928,"\ua68e":929,"\ua690":930,"\ua692":931,"\ua694":932,"\ua696":933,"\ua698":934,"\ua69a":935,"\ua722":936,"\ua724":937,"\ua726":938,"\ua728":939,"\ua72a":940,"\ua72c":941,"\ua72e":942,"\ua732":943,"\ua734":944,"\ua736":945,"\ua738":946,"\ua73a":947,"\ua73c":948,"\ua73e":949,"\ua740":950,"\ua742":951,"\ua744":952,"\ua746":953,"\ua748":954,"\ua74a":955,"\ua74c":956,"\ua74e":957,"\ua750":958,"\ua752":959,"\ua754":960,"\ua756":961,"\ua758":962,"\ua75a":963,"\ua75c":964,"\ua75e":965,"\ua760":966,"\ua762":967,"\ua764":968,"\ua766":969,"\ua768":970,"\ua76a":971,"\ua76c":972,"\ua76e":973,"\ua779":974,"\ua77b":975,"\ua77d":976,"\ua77e":977,"\ua780":978,"\ua782":979,"\ua784":980,"\ua786":981,"\ua78b":982,"\ua78d":983,"\ua790":984,"\ua792":985,"\ua796":986,"\ua798":987,"\ua79a":988,"\ua79c":989,"\ua79e":990,"\ua7a0":991,"\ua7a2":992,"\ua7a4":993,"\ua7a6":994,"\ua7a8":995,"\ua7aa":996,"\ua7ab":997,"\ua7ac":998,"\ua7ad":999,"\ua7ae":1000,"\ua7b0":1001,"\ua7b1":1002,"\ua7b2":1003,"\ua7b3":1004,"\ua7b4":1005,"\ua7b6":1006,"\ua7b8":1007,"\ua7ba":1008,"\ua7bc":1009,"\ua7be":1010,"\ua7c0":1011,"\ua7c2":1012,"\ua7c4":1013,"\ua7c5":1014,"\ua7c6":1015,"\ua7c7":1016,"\ua7c9":1017,"\ua7d0":1018,"\ua7d6":1019,"\ua7d8":1020,"\ua7f5":1021,"\uff21":1022,"\uff22":1023,"\uff23":1024,"\uff24":1025,"\uff25":1026,"\uff26":1027,"\uff27":1028,"\uff28":1029,"\uff29":1030,"\uff2a":1031,"\uff2b":1032,"\uff2c":1033,"\uff2d":1034,"\uff2e":1035,"\uff2f":1036,"\uff30":1037,"\uff31":1038,"\uff32":1039,"\uff33":1040,"\uff34":1041,"\uff35":1042,"\uff36":1043,"\uff37":1044,"\uff38":1045,"\uff39":1046,"\uff3a":1047,"\ud801\udc00":1048,"\ud801\udc01":1049,"\ud801\udc02":1050,"\ud801\udc03":1051,"\ud801\udc04":1052,"\ud801\udc05":1053,"\ud801\udc06":1054,"\ud801\udc07":1055,"\ud801\udc08":1056,"\ud801\udc09":1057,"\ud801\udc0a":1058,"\ud801\udc0b":1059,"\ud801\udc0c":1060,"\ud801\udc0d":1061,"\ud801\udc0e":1062,"\ud801\udc0f":1063,"\ud801\udc10":1064,"\ud801\udc11":1065,"\ud801\udc12":1066,"\ud801\udc13":1067,"\ud801\udc14":1068,"\ud801\udc15":1069,"\ud801\udc16":1070,"\ud801\udc17":1071,"\ud801\udc18":1072,"\ud801\udc19":1073,"\ud801\udc1a":1074,"\ud801\udc1b":1075,"\ud801\udc1c":1076,"\ud801\udc1d":1077,"\ud801\udc1e":1078,"\ud801\udc1f":1079,"\ud801\udc20":1080,"\ud801\udc21":1081,"\ud801\udc22":1082,"\ud801\udc23":1083,"\ud801\udc24":1084,"\ud801\udc25":1085,"\ud801\udc26":1086,"\ud801\udc27":1087,"\ud801\udcb0":1088,"\ud801\udcb1":1089,"\ud801\udcb2":1090,"\ud801\udcb3":1091,"\ud801\udcb4":1092,"\ud801\udcb5":1093,"\ud801\udcb6":1094,"\ud801\udcb7":1095,"\ud801\udcb8":1096,"\ud801\udcb9":1097,"\ud801\udcba":1098,"\ud801\udcbb":1099,"\ud801\udcbc":1100,"\ud801\udcbd":1101,"\ud801\udcbe":1102,"\ud801\udcbf":1103,"\ud801\udcc0":1104,"\ud801\udcc1":1105,"\ud801\udcc2":1106,"\ud801\udcc3":1107,"\ud801\udcc4":1108,"\ud801\udcc5":1109,"\ud801\udcc6":1110,"\ud801\udcc7":1111,"\ud801\udcc8":1112,"\ud801\udcc9":1113,"\ud801\udcca":1114,"\ud801\udccb":1115,"\ud801\udccc":1116,"\ud801\udccd":1117,"\ud801\udcce":1118,"\ud801\udccf":1119,"\ud801\udcd0":1120,"\ud801\udcd1":1121,"\ud801\udcd2":1122,"\ud801\udcd3":1123,"\ud801\udd70":1124,"\ud801\udd71":1125,"\ud801\udd72":1126,"\ud801\udd73":1127,"\ud801\udd74":1128,"\ud801\udd75":1129,"\ud801\udd76":1130,"\ud801\udd77":1131,"\ud801\udd78":1132,"\ud801\udd79":1133,"\ud801\udd7a":1134,"\ud801\udd7c":1135,"\ud801\udd7d":1136,"\ud801\udd7e":1137,"\ud801\udd7f":1138,"\ud801\udd80":1139,"\ud801\udd81":1140,"\ud801\udd82":1141,"\ud801\udd83":1142,"\ud801\udd84":1143,"\ud801\udd85":1144,"\ud801\udd86":1145,"\ud801\udd87":1146,"\ud801\udd88":1147,"\ud801\udd89":1148,"\ud801\udd8a":1149,"\ud801\udd8c":1150,"\ud801\udd8d":1151,"\ud801\udd8e":1152,"\ud801\udd8f":1153,"\ud801\udd90":1154,"\ud801\udd91":1155,"\ud801\udd92":1156,"\ud801\udd94":1157,"\ud801\udd95":1158,"\ud803\udc80":1159,"\ud803\udc81":1160,"\ud803\udc82":1161,"\ud803\udc83":1162,"\ud803\udc84":1163,"\ud803\udc85":1164,"\ud803\udc86":1165,"\ud803\udc87":1166,"\ud803\udc88":1167,"\ud803\udc89":1168,"\ud803\udc8a":1169,"\ud803\udc8b":1170,"\ud803\udc8c":1171,"\ud803\udc8d":1172,"\ud803\udc8e":1173,"\ud803\udc8f":1174,"\ud803\udc90":1175,"\ud803\udc91":1176,"\ud803\udc92":1177,"\ud803\udc93":1178,"\ud803\udc94":1179,"\ud803\udc95":1180,"\ud803\udc96":1181,"\ud803\udc97":1182,"\ud803\udc98":1183,"\ud803\udc99":1184,"\ud803\udc9a":1185,"\ud803\udc9b":1186,"\ud803\udc9c":1187,"\ud803\udc9d":1188,"\ud803\udc9e":1189,"\ud803\udc9f":1190,"\ud803\udca0":1191,"\ud803\udca1":1192,"\ud803\udca2":1193,"\ud803\udca3":1194,"\ud803\udca4":1195,"\ud803\udca5":1196,"\ud803\udca6":1197,"\ud803\udca7":1198,"\ud803\udca8":1199,"\ud803\udca9":1200,"\ud803\udcaa":1201,"\ud803\udcab":1202,"\ud803\udcac":1203,"\ud803\udcad":1204,"\ud803\udcae":1205,"\ud803\udcaf":1206,"\ud803\udcb0":1207,"\ud803\udcb1":1208,"\ud803\udcb2":1209,"\ud806\udca0":1210,"\ud806\udca1":1211,"\ud806\udca2":1212,"\ud806\udca3":1213,"\ud806\udca4":1214,"\ud806\udca5":1215,"\ud806\udca6":1216,"\ud806\udca7":1217,"\ud806\udca8":1218,"\ud806\udca9":1219,"\ud806\udcaa":1220,"\ud806\udcab":1221,"\ud806\udcac":1222,"\ud806\udcad":1223,"\ud806\udcae":1224,"\ud806\udcaf":1225,"\ud806\udcb0":1226,"\ud806\udcb1":1227,"\ud806\udcb2":1228,"\ud806\udcb3":1229,"\ud806\udcb4":1230,"\ud806\udcb5":1231,"\ud806\udcb6":1232,"\ud806\udcb7":1233,"\ud806\udcb8":1234,"\ud806\udcb9":1235,"\ud806\udcba":1236,"\ud806\udcbb":1237,"\ud806\udcbc":1238,"\ud806\udcbd":1239,"\ud806\udcbe":1240,"\ud806\udcbf":1241,"\ud81b\ude40":1242,"\ud81b\ude41":1243,"\ud81b\ude42":1244,"\ud81b\ude43":1245,"\ud81b\ude44":1246,"\ud81b\ude45":1247,"\ud81b\ude46":1248,"\ud81b\ude47":1249,"\ud81b\ude48":1250,"\ud81b\ude49":1251,"\ud81b\ude4a":1252,"\ud81b\ude4b":1253,"\ud81b\ude4c":1254,"\ud81b\ude4d":1255,"\ud81b\ude4e":1256,"\ud81b\ude4f":1257,"\ud81b\ude50":1258,"\ud81b\ude51":1259,"\ud81b\ude52":1260,"\ud81b\ude53":1261,"\ud81b\ude54":1262,"\ud81b\ude55":1263,"\ud81b\ude56":1264,"\ud81b\ude57":1265,"\ud81b\ude58":1266,"\ud81b\ude59":1267,"\ud81b\ude5a":1268,"\ud81b\ude5b":1269,"\ud81b\ude5c":1270,"\ud81b\ude5d":1271,"\ud81b\ude5e":1272,"\ud81b\ude5f":1273,"\ud83a\udd00":1274,"\ud83a\udd01":1275,"\ud83a\udd02":1276,"\ud83a\udd03":1277,"\ud83a\udd04":1278,"\ud83a\udd05":1279,"\ud83a\udd06":1280,"\ud83a\udd07":1281,"\ud83a\udd08":1282,"\ud83a\udd09":1283,"\ud83a\udd0a":1284,"\ud83a\udd0b":1285,"\ud83a\udd0c":1286,"\ud83a\udd0d":1287,"\ud83a\udd0e":1288,"\ud83a\udd0f":1289,"\ud83a\udd10":1290,"\ud83a\udd11":1291,"\ud83a\udd12":1292,"\ud83a\udd13":1293,"\ud83a\udd14":1294,"\ud83a\udd15":1295,"\ud83a\udd16":1296,"\ud83a\udd17":1297,"\ud83a\udd18":1298,"\ud83a\udd19":1299,"\ud83a\udd1a":1300,"\ud83a\udd1b":1301,"\ud83a\udd1c":1302,"\ud83a\udd1d":1303,"\ud83a\udd1e":1304,"\ud83a\udd1f":1305,"\ud83a\udd20":1306,"\ud83a\udd21":1307} -B.Lg=new A.bG(B.LO,["a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","\xe0","\xe1","\xe2","\xe3","\xe4","\xe5","\xe6","\xe7","\xe8","\xe9","\xea","\xeb","\xec","\xed","\xee","\xef","\xf0","\xf1","\xf2","\xf3","\xf4","\xf5","\xf6","\xf8","\xf9","\xfa","\xfb","\xfc","\xfd","\xfe","\u0101","\u0103","\u0105","\u0107","\u0109","\u010b","\u010d","\u010f","\u0111","\u0113","\u0115","\u0117","\u0119","\u011b","\u011d","\u011f","\u0121","\u0123","\u0125","\u0127","\u0129","\u012b","\u012d","\u012f","i\u0307","\u0135","\u0137","\u013a","\u013c","\u013e","\u0140","\u0142","\u0144","\u0146","\u0148","\u014b","\u014d","\u014f","\u0151","\u0155","\u0157","\u0159","\u015b","\u015d","\u015f","\u0161","\u0163","\u0165","\u0167","\u0169","\u016b","\u016d","\u016f","\u0171","\u0173","\u0175","\u0177","\xff","\u017a","\u017c","\u017e","\u0253","\u0183","\u0185","\u0254","\u0188","\u0256","\u0257","\u018c","\u01dd","\u0259","\u025b","\u0192","\u0260","\u0263","\u0269","\u0268","\u0199","\u026f","\u0272","\u0275","\u01a1","\u01a3","\u01a5","\u01a8","\u0283","\u01ad","\u0288","\u01b0","\u028a","\u028b","\u01b4","\u01b6","\u0292","\u01b9","\u01bd","\u01c6","\u01c6","\u01c9","\u01c9","\u01cc","\u01cc","\u01ce","\u01d0","\u01d2","\u01d4","\u01d6","\u01d8","\u01da","\u01dc","\u01df","\u01e1","\u01e3","\u01e5","\u01e7","\u01e9","\u01eb","\u01ed","\u01ef","\u01f3","\u01f3","\u01f5","\u0195","\u01bf","\u01f9","\u01fb","\u01fd","\u01ff","\u0201","\u0203","\u0205","\u0207","\u0209","\u020b","\u020d","\u020f","\u0211","\u0213","\u0215","\u0217","\u0219","\u021b","\u021d","\u021f","\u019e","\u0223","\u0225","\u0227","\u0229","\u022b","\u022d","\u022f","\u0231","\u0233","\u2c65","\u023c","\u019a","\u2c66","\u0242","\u0180","\u0289","\u028c","\u0247","\u0249","\u024b","\u024d","\u024f","\u0371","\u0373","\u0377","\u03f3","\u03ac","\u03ad","\u03ae","\u03af","\u03cc","\u03cd","\u03ce","\u03b1","\u03b2","\u03b3","\u03b4","\u03b5","\u03b6","\u03b7","\u03b8","\u03b9","\u03ba","\u03bb","\u03bc","\u03bd","\u03be","\u03bf","\u03c0","\u03c1","\u03c3","\u03c4","\u03c5","\u03c6","\u03c7","\u03c8","\u03c9","\u03ca","\u03cb","\u03e3","\u03e5","\u03e7","\u03e9","\u03eb","\u03ed","\u03ef","\u03f8","\u03fb","\u0450","\u0451","\u0452","\u0453","\u0454","\u0455","\u0456","\u0457","\u0458","\u0459","\u045a","\u045b","\u045c","\u045d","\u045e","\u045f","\u0430","\u0431","\u0432","\u0433","\u0434","\u0435","\u0436","\u0437","\u0438","\u0439","\u043a","\u043b","\u043c","\u043d","\u043e","\u043f","\u0440","\u0441","\u0442","\u0443","\u0444","\u0445","\u0446","\u0447","\u0448","\u0449","\u044a","\u044b","\u044c","\u044d","\u044e","\u044f","\u0461","\u0463","\u0465","\u0467","\u0469","\u046b","\u046d","\u046f","\u0471","\u0473","\u0475","\u0477","\u0479","\u047b","\u047d","\u047f","\u0481","\u048b","\u048d","\u048f","\u0491","\u0493","\u0495","\u0497","\u0499","\u049b","\u049d","\u049f","\u04a1","\u04a3","\u04a7","\u04a9","\u04ab","\u04ad","\u04af","\u04b1","\u04b3","\u04b7","\u04b9","\u04bb","\u04bd","\u04bf","\u04c2","\u04c4","\u04c6","\u04c8","\u04ca","\u04cc","\u04ce","\u04d1","\u04d3","\u04d7","\u04d9","\u04db","\u04dd","\u04df","\u04e1","\u04e3","\u04e5","\u04e7","\u04e9","\u04eb","\u04ed","\u04ef","\u04f1","\u04f3","\u04f5","\u04f7","\u04f9","\u04fb","\u04fd","\u04ff","\u0501","\u0503","\u0505","\u0507","\u0509","\u050b","\u050d","\u050f","\u0511","\u0513","\u0515","\u0517","\u0519","\u051b","\u051d","\u051f","\u0521","\u0523","\u0525","\u0527","\u0529","\u052b","\u052d","\u052f","\u0561","\u0562","\u0563","\u0564","\u0565","\u0566","\u0567","\u0568","\u0569","\u056a","\u056b","\u056c","\u056d","\u056e","\u056f","\u0570","\u0571","\u0572","\u0573","\u0574","\u0575","\u0576","\u0577","\u0578","\u0579","\u057a","\u057b","\u057c","\u057d","\u057e","\u057f","\u0580","\u0581","\u0582","\u0583","\u0584","\u0585","\u0586","\u2d00","\u2d01","\u2d02","\u2d03","\u2d04","\u2d05","\u2d06","\u2d07","\u2d08","\u2d09","\u2d0a","\u2d0b","\u2d0c","\u2d0d","\u2d0e","\u2d0f","\u2d10","\u2d11","\u2d12","\u2d13","\u2d14","\u2d15","\u2d16","\u2d17","\u2d18","\u2d19","\u2d1a","\u2d1b","\u2d1c","\u2d1d","\u2d1e","\u2d1f","\u2d20","\u2d21","\u2d22","\u2d23","\u2d24","\u2d25","\u2d27","\u2d2d","\u10d0","\u10d1","\u10d2","\u10d3","\u10d4","\u10d5","\u10d6","\u10d7","\u10d8","\u10d9","\u10da","\u10db","\u10dc","\u10dd","\u10de","\u10df","\u10e0","\u10e1","\u10e2","\u10e3","\u10e4","\u10e5","\u10e6","\u10e7","\u10e8","\u10e9","\u10ea","\u10eb","\u10ec","\u10ed","\u10ee","\u10ef","\u10f0","\u10f1","\u10f2","\u10f3","\u10f4","\u10f5","\u10f6","\u10f7","\u10f8","\u10f9","\u10fa","\u10fd","\u10fe","\u10ff","\u1e01","\u1e03","\u1e05","\u1e07","\u1e09","\u1e0b","\u1e0d","\u1e0f","\u1e11","\u1e13","\u1e15","\u1e17","\u1e19","\u1e1b","\u1e1d","\u1e1f","\u1e21","\u1e23","\u1e25","\u1e27","\u1e29","\u1e2b","\u1e2d","\u1e2f","\u1e31","\u1e33","\u1e35","\u1e37","\u1e39","\u1e3b","\u1e3d","\u1e3f","\u1e41","\u1e43","\u1e45","\u1e47","\u1e49","\u1e4b","\u1e4d","\u1e4f","\u1e51","\u1e53","\u1e55","\u1e57","\u1e59","\u1e5b","\u1e5d","\u1e5f","\u1e61","\u1e63","\u1e65","\u1e67","\u1e69","\u1e6b","\u1e6d","\u1e6f","\u1e71","\u1e73","\u1e75","\u1e77","\u1e79","\u1e7b","\u1e7d","\u1e7f","\u1e81","\u1e83","\u1e85","\u1e87","\u1e89","\u1e8b","\u1e8d","\u1e8f","\u1e91","\u1e93","\u1e95","ss","\u1ea1","\u1ea3","\u1ea5","\u1ea7","\u1ea9","\u1eab","\u1ead","\u1eaf","\u1eb1","\u1eb3","\u1eb5","\u1eb7","\u1eb9","\u1ebb","\u1ebd","\u1ebf","\u1ec1","\u1ec3","\u1ec5","\u1ec7","\u1ec9","\u1ecb","\u1ecd","\u1ecf","\u1ed1","\u1ed3","\u1ed5","\u1ed7","\u1ed9","\u1edb","\u1edd","\u1edf","\u1ee1","\u1ee3","\u1ee5","\u1ee7","\u1ee9","\u1eeb","\u1eed","\u1eef","\u1ef1","\u1ef3","\u1ef5","\u1ef7","\u1ef9","\u1efb","\u1efd","\u1eff","\u1f00","\u1f01","\u1f02","\u1f03","\u1f04","\u1f05","\u1f06","\u1f07","\u1f10","\u1f11","\u1f12","\u1f13","\u1f14","\u1f15","\u1f20","\u1f21","\u1f22","\u1f23","\u1f24","\u1f25","\u1f26","\u1f27","\u1f30","\u1f31","\u1f32","\u1f33","\u1f34","\u1f35","\u1f36","\u1f37","\u1f40","\u1f41","\u1f42","\u1f43","\u1f44","\u1f45","\u1f51","\u1f53","\u1f55","\u1f57","\u1f60","\u1f61","\u1f62","\u1f63","\u1f64","\u1f65","\u1f66","\u1f67","\u1f00\u03b9","\u1f01\u03b9","\u1f02\u03b9","\u1f03\u03b9","\u1f04\u03b9","\u1f05\u03b9","\u1f06\u03b9","\u1f07\u03b9","\u1f20\u03b9","\u1f21\u03b9","\u1f22\u03b9","\u1f23\u03b9","\u1f24\u03b9","\u1f25\u03b9","\u1f26\u03b9","\u1f27\u03b9","\u1f60\u03b9","\u1f61\u03b9","\u1f62\u03b9","\u1f63\u03b9","\u1f64\u03b9","\u1f65\u03b9","\u1f66\u03b9","\u1f67\u03b9","\u1fb0","\u1fb1","\u1f70","\u1f71","\u03b1\u03b9","\u1f72","\u1f73","\u1f74","\u1f75","\u03b7\u03b9","\u1fd0","\u1fd1","\u1f76","\u1f77","\u1fe0","\u1fe1","\u1f7a","\u1f7b","\u1fe5","\u1f78","\u1f79","\u1f7c","\u1f7d","\u03c9\u03b9","\u24d0","\u24d1","\u24d2","\u24d3","\u24d4","\u24d5","\u24d6","\u24d7","\u24d8","\u24d9","\u24da","\u24db","\u24dc","\u24dd","\u24de","\u24df","\u24e0","\u24e1","\u24e2","\u24e3","\u24e4","\u24e5","\u24e6","\u24e7","\u24e8","\u24e9","\u2c30","\u2c31","\u2c32","\u2c33","\u2c34","\u2c35","\u2c36","\u2c37","\u2c38","\u2c39","\u2c3a","\u2c3b","\u2c3c","\u2c3d","\u2c3e","\u2c3f","\u2c40","\u2c41","\u2c42","\u2c43","\u2c44","\u2c45","\u2c46","\u2c47","\u2c48","\u2c49","\u2c4a","\u2c4b","\u2c4c","\u2c4d","\u2c4e","\u2c4f","\u2c50","\u2c51","\u2c52","\u2c53","\u2c54","\u2c55","\u2c56","\u2c57","\u2c58","\u2c59","\u2c5a","\u2c5b","\u2c5c","\u2c5d","\u2c5e","\u2c5f","\u2c61","\u026b","\u1d7d","\u027d","\u2c68","\u2c6a","\u2c6c","\u0251","\u0271","\u0250","\u0252","\u2c73","\u2c76","\u023f","\u0240","\u2c81","\u2c83","\u2c85","\u2c87","\u2c89","\u2c8b","\u2c8d","\u2c8f","\u2c91","\u2c93","\u2c95","\u2c97","\u2c99","\u2c9b","\u2c9d","\u2c9f","\u2ca1","\u2ca3","\u2ca5","\u2ca7","\u2ca9","\u2cab","\u2cad","\u2caf","\u2cb1","\u2cb3","\u2cb5","\u2cb7","\u2cb9","\u2cbb","\u2cbd","\u2cbf","\u2cc1","\u2cc3","\u2cc5","\u2cc7","\u2cc9","\u2ccb","\u2ccd","\u2ccf","\u2cd1","\u2cd3","\u2cd5","\u2cd7","\u2cd9","\u2cdb","\u2cdd","\u2cdf","\u2ce1","\u2ce3","\u2cec","\u2cee","\u2cf3","\ua641","\ua643","\ua645","\ua647","\ua649","\ua64b","\ua64d","\ua64f","\ua651","\ua653","\ua655","\ua657","\ua659","\ua65b","\ua65d","\ua65f","\ua661","\ua663","\ua665","\ua667","\ua669","\ua66b","\ua66d","\ua681","\ua683","\ua685","\ua687","\ua689","\ua68b","\ua68d","\ua68f","\ua691","\ua693","\ua695","\ua697","\ua699","\ua69b","\ua723","\ua725","\ua727","\ua729","\ua72b","\ua72d","\ua72f","\ua733","\ua735","\ua737","\ua739","\ua73b","\ua73d","\ua73f","\ua741","\ua743","\ua745","\ua747","\ua749","\ua74b","\ua74d","\ua74f","\ua751","\ua753","\ua755","\ua757","\ua759","\ua75b","\ua75d","\ua75f","\ua761","\ua763","\ua765","\ua767","\ua769","\ua76b","\ua76d","\ua76f","\ua77a","\ua77c","\u1d79","\ua77f","\ua781","\ua783","\ua785","\ua787","\ua78c","\u0265","\ua791","\ua793","\ua797","\ua799","\ua79b","\ua79d","\ua79f","\ua7a1","\ua7a3","\ua7a5","\ua7a7","\ua7a9","\u0266","\u025c","\u0261","\u026c","\u026a","\u029e","\u0287","\u029d","\uab53","\ua7b5","\ua7b7","\ua7b9","\ua7bb","\ua7bd","\ua7bf","\ua7c1","\ua7c3","\ua794","\u0282","\u1d8e","\ua7c8","\ua7ca","\ua7d1","\ua7d7","\ua7d9","\ua7f6","\uff41","\uff42","\uff43","\uff44","\uff45","\uff46","\uff47","\uff48","\uff49","\uff4a","\uff4b","\uff4c","\uff4d","\uff4e","\uff4f","\uff50","\uff51","\uff52","\uff53","\uff54","\uff55","\uff56","\uff57","\uff58","\uff59","\uff5a","\ud801\udc28","\ud801\udc29","\ud801\udc2a","\ud801\udc2b","\ud801\udc2c","\ud801\udc2d","\ud801\udc2e","\ud801\udc2f","\ud801\udc30","\ud801\udc31","\ud801\udc32","\ud801\udc33","\ud801\udc34","\ud801\udc35","\ud801\udc36","\ud801\udc37","\ud801\udc38","\ud801\udc39","\ud801\udc3a","\ud801\udc3b","\ud801\udc3c","\ud801\udc3d","\ud801\udc3e","\ud801\udc3f","\ud801\udc40","\ud801\udc41","\ud801\udc42","\ud801\udc43","\ud801\udc44","\ud801\udc45","\ud801\udc46","\ud801\udc47","\ud801\udc48","\ud801\udc49","\ud801\udc4a","\ud801\udc4b","\ud801\udc4c","\ud801\udc4d","\ud801\udc4e","\ud801\udc4f","\ud801\udcd8","\ud801\udcd9","\ud801\udcda","\ud801\udcdb","\ud801\udcdc","\ud801\udcdd","\ud801\udcde","\ud801\udcdf","\ud801\udce0","\ud801\udce1","\ud801\udce2","\ud801\udce3","\ud801\udce4","\ud801\udce5","\ud801\udce6","\ud801\udce7","\ud801\udce8","\ud801\udce9","\ud801\udcea","\ud801\udceb","\ud801\udcec","\ud801\udced","\ud801\udcee","\ud801\udcef","\ud801\udcf0","\ud801\udcf1","\ud801\udcf2","\ud801\udcf3","\ud801\udcf4","\ud801\udcf5","\ud801\udcf6","\ud801\udcf7","\ud801\udcf8","\ud801\udcf9","\ud801\udcfa","\ud801\udcfb","\ud801\udd97","\ud801\udd98","\ud801\udd99","\ud801\udd9a","\ud801\udd9b","\ud801\udd9c","\ud801\udd9d","\ud801\udd9e","\ud801\udd9f","\ud801\udda0","\ud801\udda1","\ud801\udda3","\ud801\udda4","\ud801\udda5","\ud801\udda6","\ud801\udda7","\ud801\udda8","\ud801\udda9","\ud801\uddaa","\ud801\uddab","\ud801\uddac","\ud801\uddad","\ud801\uddae","\ud801\uddaf","\ud801\uddb0","\ud801\uddb1","\ud801\uddb3","\ud801\uddb4","\ud801\uddb5","\ud801\uddb6","\ud801\uddb7","\ud801\uddb8","\ud801\uddb9","\ud801\uddbb","\ud801\uddbc","\ud803\udcc0","\ud803\udcc1","\ud803\udcc2","\ud803\udcc3","\ud803\udcc4","\ud803\udcc5","\ud803\udcc6","\ud803\udcc7","\ud803\udcc8","\ud803\udcc9","\ud803\udcca","\ud803\udccb","\ud803\udccc","\ud803\udccd","\ud803\udcce","\ud803\udccf","\ud803\udcd0","\ud803\udcd1","\ud803\udcd2","\ud803\udcd3","\ud803\udcd4","\ud803\udcd5","\ud803\udcd6","\ud803\udcd7","\ud803\udcd8","\ud803\udcd9","\ud803\udcda","\ud803\udcdb","\ud803\udcdc","\ud803\udcdd","\ud803\udcde","\ud803\udcdf","\ud803\udce0","\ud803\udce1","\ud803\udce2","\ud803\udce3","\ud803\udce4","\ud803\udce5","\ud803\udce6","\ud803\udce7","\ud803\udce8","\ud803\udce9","\ud803\udcea","\ud803\udceb","\ud803\udcec","\ud803\udced","\ud803\udcee","\ud803\udcef","\ud803\udcf0","\ud803\udcf1","\ud803\udcf2","\ud806\udcc0","\ud806\udcc1","\ud806\udcc2","\ud806\udcc3","\ud806\udcc4","\ud806\udcc5","\ud806\udcc6","\ud806\udcc7","\ud806\udcc8","\ud806\udcc9","\ud806\udcca","\ud806\udccb","\ud806\udccc","\ud806\udccd","\ud806\udcce","\ud806\udccf","\ud806\udcd0","\ud806\udcd1","\ud806\udcd2","\ud806\udcd3","\ud806\udcd4","\ud806\udcd5","\ud806\udcd6","\ud806\udcd7","\ud806\udcd8","\ud806\udcd9","\ud806\udcda","\ud806\udcdb","\ud806\udcdc","\ud806\udcdd","\ud806\udcde","\ud806\udcdf","\ud81b\ude60","\ud81b\ude61","\ud81b\ude62","\ud81b\ude63","\ud81b\ude64","\ud81b\ude65","\ud81b\ude66","\ud81b\ude67","\ud81b\ude68","\ud81b\ude69","\ud81b\ude6a","\ud81b\ude6b","\ud81b\ude6c","\ud81b\ude6d","\ud81b\ude6e","\ud81b\ude6f","\ud81b\ude70","\ud81b\ude71","\ud81b\ude72","\ud81b\ude73","\ud81b\ude74","\ud81b\ude75","\ud81b\ude76","\ud81b\ude77","\ud81b\ude78","\ud81b\ude79","\ud81b\ude7a","\ud81b\ude7b","\ud81b\ude7c","\ud81b\ude7d","\ud81b\ude7e","\ud81b\ude7f","\ud83a\udd22","\ud83a\udd23","\ud83a\udd24","\ud83a\udd25","\ud83a\udd26","\ud83a\udd27","\ud83a\udd28","\ud83a\udd29","\ud83a\udd2a","\ud83a\udd2b","\ud83a\udd2c","\ud83a\udd2d","\ud83a\udd2e","\ud83a\udd2f","\ud83a\udd30","\ud83a\udd31","\ud83a\udd32","\ud83a\udd33","\ud83a\udd34","\ud83a\udd35","\ud83a\udd36","\ud83a\udd37","\ud83a\udd38","\ud83a\udd39","\ud83a\udd3a","\ud83a\udd3b","\ud83a\udd3c","\ud83a\udd3d","\ud83a\udd3e","\ud83a\udd3f","\ud83a\udd40","\ud83a\udd41","\ud83a\udd42","\ud83a\udd43"],t.li) -B.LP={Abort:0,Again:1,AltLeft:2,AltRight:3,ArrowDown:4,ArrowLeft:5,ArrowRight:6,ArrowUp:7,AudioVolumeDown:8,AudioVolumeMute:9,AudioVolumeUp:10,Backquote:11,Backslash:12,Backspace:13,BracketLeft:14,BracketRight:15,BrightnessDown:16,BrightnessUp:17,BrowserBack:18,BrowserFavorites:19,BrowserForward:20,BrowserHome:21,BrowserRefresh:22,BrowserSearch:23,BrowserStop:24,CapsLock:25,Comma:26,ContextMenu:27,ControlLeft:28,ControlRight:29,Convert:30,Copy:31,Cut:32,Delete:33,Digit0:34,Digit1:35,Digit2:36,Digit3:37,Digit4:38,Digit5:39,Digit6:40,Digit7:41,Digit8:42,Digit9:43,DisplayToggleIntExt:44,Eject:45,End:46,Enter:47,Equal:48,Escape:49,Esc:50,F1:51,F10:52,F11:53,F12:54,F13:55,F14:56,F15:57,F16:58,F17:59,F18:60,F19:61,F2:62,F20:63,F21:64,F22:65,F23:66,F24:67,F3:68,F4:69,F5:70,F6:71,F7:72,F8:73,F9:74,Find:75,Fn:76,FnLock:77,GameButton1:78,GameButton10:79,GameButton11:80,GameButton12:81,GameButton13:82,GameButton14:83,GameButton15:84,GameButton16:85,GameButton2:86,GameButton3:87,GameButton4:88,GameButton5:89,GameButton6:90,GameButton7:91,GameButton8:92,GameButton9:93,GameButtonA:94,GameButtonB:95,GameButtonC:96,GameButtonLeft1:97,GameButtonLeft2:98,GameButtonMode:99,GameButtonRight1:100,GameButtonRight2:101,GameButtonSelect:102,GameButtonStart:103,GameButtonThumbLeft:104,GameButtonThumbRight:105,GameButtonX:106,GameButtonY:107,GameButtonZ:108,Help:109,Home:110,Hyper:111,Insert:112,IntlBackslash:113,IntlRo:114,IntlYen:115,KanaMode:116,KeyA:117,KeyB:118,KeyC:119,KeyD:120,KeyE:121,KeyF:122,KeyG:123,KeyH:124,KeyI:125,KeyJ:126,KeyK:127,KeyL:128,KeyM:129,KeyN:130,KeyO:131,KeyP:132,KeyQ:133,KeyR:134,KeyS:135,KeyT:136,KeyU:137,KeyV:138,KeyW:139,KeyX:140,KeyY:141,KeyZ:142,KeyboardLayoutSelect:143,Lang1:144,Lang2:145,Lang3:146,Lang4:147,Lang5:148,LaunchApp1:149,LaunchApp2:150,LaunchAssistant:151,LaunchControlPanel:152,LaunchMail:153,LaunchScreenSaver:154,MailForward:155,MailReply:156,MailSend:157,MediaFastForward:158,MediaPause:159,MediaPlay:160,MediaPlayPause:161,MediaRecord:162,MediaRewind:163,MediaSelect:164,MediaStop:165,MediaTrackNext:166,MediaTrackPrevious:167,MetaLeft:168,MetaRight:169,MicrophoneMuteToggle:170,Minus:171,NonConvert:172,NumLock:173,Numpad0:174,Numpad1:175,Numpad2:176,Numpad3:177,Numpad4:178,Numpad5:179,Numpad6:180,Numpad7:181,Numpad8:182,Numpad9:183,NumpadAdd:184,NumpadBackspace:185,NumpadClear:186,NumpadClearEntry:187,NumpadComma:188,NumpadDecimal:189,NumpadDivide:190,NumpadEnter:191,NumpadEqual:192,NumpadMemoryAdd:193,NumpadMemoryClear:194,NumpadMemoryRecall:195,NumpadMemoryStore:196,NumpadMemorySubtract:197,NumpadMultiply:198,NumpadParenLeft:199,NumpadParenRight:200,NumpadSubtract:201,Open:202,PageDown:203,PageUp:204,Paste:205,Pause:206,Period:207,Power:208,PrintScreen:209,PrivacyScreenToggle:210,Props:211,Quote:212,Resume:213,ScrollLock:214,Select:215,SelectTask:216,Semicolon:217,ShiftLeft:218,ShiftRight:219,ShowAllWindows:220,Slash:221,Sleep:222,Space:223,Super:224,Suspend:225,Tab:226,Turbo:227,Undo:228,WakeUp:229,ZoomToggle:230} -B.u6=new A.bG(B.LP,[B.xd,B.wU,B.dk,B.dm,B.wj,B.wi,B.wh,B.wk,B.x1,B.x_,B.x0,B.vU,B.vR,B.vK,B.vP,B.vQ,B.xt,B.xs,B.xO,B.xS,B.xP,B.xN,B.xR,B.xM,B.xQ,B.cM,B.vV,B.wC,B.di,B.eu,B.x6,B.wX,B.wW,B.we,B.vI,B.vz,B.vA,B.vB,B.vC,B.vD,B.vE,B.vF,B.vG,B.vH,B.xr,B.xC,B.wf,B.vJ,B.vO,B.k6,B.k6,B.vY,B.w6,B.w7,B.w8,B.wF,B.wG,B.wH,B.wI,B.wJ,B.wK,B.wL,B.vZ,B.wM,B.wN,B.wO,B.wP,B.wQ,B.w_,B.w0,B.w1,B.w2,B.w3,B.w4,B.w5,B.wZ,B.et,B.uz,B.uF,B.uO,B.uP,B.uQ,B.uR,B.uS,B.uT,B.uU,B.uG,B.uH,B.uI,B.uJ,B.uK,B.uL,B.uM,B.uN,B.uV,B.uW,B.uX,B.uY,B.uZ,B.v_,B.v0,B.v1,B.v2,B.v3,B.v4,B.v5,B.v6,B.v7,B.v8,B.wS,B.wc,B.ux,B.wb,B.wB,B.x3,B.x5,B.x4,B.v9,B.va,B.vb,B.vc,B.vd,B.ve,B.vf,B.vg,B.vh,B.vi,B.vj,B.vk,B.vl,B.vm,B.vn,B.vo,B.vp,B.vq,B.vr,B.vs,B.vt,B.vu,B.vv,B.vw,B.vx,B.vy,B.xX,B.x8,B.x9,B.xa,B.xb,B.xc,B.xH,B.xG,B.xL,B.xI,B.xF,B.xK,B.xV,B.xU,B.xW,B.xx,B.xv,B.xu,B.xD,B.xw,B.xy,B.xE,B.xB,B.xz,B.xA,B.dl,B.ew,B.uE,B.vN,B.x7,B.hg,B.wz,B.wq,B.wr,B.ws,B.wt,B.wu,B.wv,B.ww,B.wx,B.wy,B.wo,B.xh,B.xn,B.xo,B.x2,B.wA,B.wl,B.wp,B.wE,B.xl,B.xk,B.xj,B.xi,B.xm,B.wm,B.xf,B.xg,B.wn,B.wR,B.wg,B.wd,B.wY,B.wa,B.vW,B.wD,B.w9,B.uD,B.xe,B.vT,B.uB,B.hf,B.wT,B.xJ,B.vS,B.dj,B.ev,B.xY,B.vX,B.xp,B.vM,B.uy,B.uA,B.vL,B.uC,B.wV,B.xq,B.xT],A.ab("bG")) -B.II=A.b(s([]),t.V) -B.BK=new A.bv(-2,B.y,B.bB,B.co,1) -B.BD=new A.bv(0,B.y,B.bA,B.ha,2) -B.BE=new A.bv(0,B.y,B.bc,B.bx,5) -B.IQ=A.b(s([B.BK,B.BD,B.BE]),t.V) -B.BL=new A.bv(-2,B.y,B.bB,B.co,3) -B.BF=new A.bv(0,B.y,B.bA,B.co,4) -B.BG=new A.bv(0,B.y,B.bc,B.bx,8) -B.IR=A.b(s([B.BL,B.BF,B.BG]),t.V) -B.Bg=new A.bv(-1,B.y,B.bB,B.ha,4) -B.BH=new A.bv(0,B.y,B.bA,B.ul,5) -B.BI=new A.bv(0,B.y,B.bc,B.bx,10) -B.J4=A.b(s([B.Bg,B.BH,B.BI]),t.V) -B.Bh=new A.bv(-1,B.y,B.bB,B.co,5) -B.um=new A.k(0,6) -B.Bp=new A.bv(0,B.y,B.bA,B.um,10) -B.Bq=new A.bv(0,B.y,B.bc,B.bx,18) -B.J5=A.b(s([B.Bh,B.Bp,B.Bq]),t.V) -B.k2=new A.k(0,5) -B.Bi=new A.bv(-3,B.y,B.bB,B.k2,5) -B.k3=new A.k(0,8) -B.Br=new A.bv(1,B.y,B.bA,B.k3,10) -B.Bs=new A.bv(2,B.y,B.bc,B.co,14) -B.HZ=A.b(s([B.Bi,B.Br,B.Bs]),t.V) -B.Bj=new A.bv(-3,B.y,B.bB,B.k2,6) -B.un=new A.k(0,9) -B.Bt=new A.bv(1,B.y,B.bA,B.un,12) -B.Bu=new A.bv(2,B.y,B.bc,B.co,16) -B.I_=A.b(s([B.Bj,B.Bt,B.Bu]),t.V) -B.M5=new A.k(0,7) -B.Bd=new A.bv(-4,B.y,B.bB,B.M5,8) -B.M0=new A.k(0,12) -B.Bv=new A.bv(2,B.y,B.bA,B.M0,17) -B.Bw=new A.bv(4,B.y,B.bc,B.k2,22) -B.Im=A.b(s([B.Bd,B.Bv,B.Bw]),t.V) -B.Be=new A.bv(-5,B.y,B.bB,B.k3,10) -B.M1=new A.k(0,16) -B.Bx=new A.bv(2,B.y,B.bA,B.M1,24) -B.By=new A.bv(5,B.y,B.bc,B.um,30) -B.IW=A.b(s([B.Be,B.Bx,B.By]),t.V) -B.M_=new A.k(0,11) -B.BJ=new A.bv(-7,B.y,B.bB,B.M_,15) -B.M3=new A.k(0,24) -B.BA=new A.bv(3,B.y,B.bA,B.M3,38) -B.BB=new A.bv(8,B.y,B.bc,B.un,46) -B.Io=A.b(s([B.BJ,B.BA,B.BB]),t.V) -B.Lh=new A.d3([0,B.II,1,B.o5,2,B.IQ,3,B.IR,4,B.J4,6,B.J5,8,B.HZ,9,B.I_,12,B.Im,16,B.IW,24,B.Io],A.ab("d3>")) -B.LQ={KeyA:0,KeyB:1,KeyC:2,KeyD:3,KeyE:4,KeyF:5,KeyG:6,KeyH:7,KeyI:8,KeyJ:9,KeyK:10,KeyL:11,KeyM:12,KeyN:13,KeyO:14,KeyP:15,KeyQ:16,KeyR:17,KeyS:18,KeyT:19,KeyU:20,KeyV:21,KeyW:22,KeyX:23,KeyY:24,KeyZ:25,Digit1:26,Digit2:27,Digit3:28,Digit4:29,Digit5:30,Digit6:31,Digit7:32,Digit8:33,Digit9:34,Digit0:35,Minus:36,Equal:37,BracketLeft:38,BracketRight:39,Backslash:40,Semicolon:41,Quote:42,Backquote:43,Comma:44,Period:45,Slash:46} -B.jX=new A.bG(B.LQ,["a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","1","2","3","4","5","6","7","8","9","0","-","=","[","]","\\",";","'","`",",",".","/"],t.li) -B.Hp=A.b(s([42,null,null,8589935146]),t.Z) -B.Hq=A.b(s([43,null,null,8589935147]),t.Z) -B.Hr=A.b(s([45,null,null,8589935149]),t.Z) -B.Hs=A.b(s([46,null,null,8589935150]),t.Z) -B.Ht=A.b(s([47,null,null,8589935151]),t.Z) -B.Hu=A.b(s([48,null,null,8589935152]),t.Z) -B.Hv=A.b(s([49,null,null,8589935153]),t.Z) -B.HB=A.b(s([50,null,null,8589935154]),t.Z) -B.HC=A.b(s([51,null,null,8589935155]),t.Z) -B.HD=A.b(s([52,null,null,8589935156]),t.Z) -B.HE=A.b(s([53,null,null,8589935157]),t.Z) -B.HF=A.b(s([54,null,null,8589935158]),t.Z) -B.HG=A.b(s([55,null,null,8589935159]),t.Z) -B.HH=A.b(s([56,null,null,8589935160]),t.Z) -B.HI=A.b(s([57,null,null,8589935161]),t.Z) -B.HU=A.b(s([8589934852,8589934852,8589934853,null]),t.Z) -B.He=A.b(s([4294967555,null,4294967555,null]),t.Z) -B.Hf=A.b(s([4294968065,null,null,8589935154]),t.Z) -B.Hg=A.b(s([4294968066,null,null,8589935156]),t.Z) -B.Hh=A.b(s([4294968067,null,null,8589935158]),t.Z) -B.Hi=A.b(s([4294968068,null,null,8589935160]),t.Z) -B.Hn=A.b(s([4294968321,null,null,8589935157]),t.Z) -B.HV=A.b(s([8589934848,8589934848,8589934849,null]),t.Z) -B.Hd=A.b(s([4294967423,null,null,8589935150]),t.Z) -B.Hj=A.b(s([4294968069,null,null,8589935153]),t.Z) -B.Hc=A.b(s([4294967309,null,null,8589935117]),t.Z) -B.Hk=A.b(s([4294968070,null,null,8589935159]),t.Z) -B.Ho=A.b(s([4294968327,null,null,8589935152]),t.Z) -B.HW=A.b(s([8589934854,8589934854,8589934855,null]),t.Z) -B.Hl=A.b(s([4294968071,null,null,8589935155]),t.Z) -B.Hm=A.b(s([4294968072,null,null,8589935161]),t.Z) -B.HX=A.b(s([8589934850,8589934850,8589934851,null]),t.Z) -B.u7=new A.d3(["*",B.Hp,"+",B.Hq,"-",B.Hr,".",B.Hs,"/",B.Ht,"0",B.Hu,"1",B.Hv,"2",B.HB,"3",B.HC,"4",B.HD,"5",B.HE,"6",B.HF,"7",B.HG,"8",B.HH,"9",B.HI,"Alt",B.HU,"AltGraph",B.He,"ArrowDown",B.Hf,"ArrowLeft",B.Hg,"ArrowRight",B.Hh,"ArrowUp",B.Hi,"Clear",B.Hn,"Control",B.HV,"Delete",B.Hd,"End",B.Hj,"Enter",B.Hc,"Home",B.Hk,"Insert",B.Ho,"Meta",B.HW,"PageDown",B.Hl,"PageUp",B.Hm,"Shift",B.HX],A.ab("d3>")) -B.IZ=A.b(s([B.of,null,null,B.tW]),t.L) -B.J_=A.b(s([B.tI,null,null,B.tX]),t.L) -B.J0=A.b(s([B.tJ,null,null,B.tY]),t.L) -B.J1=A.b(s([B.tK,null,null,B.jK]),t.L) -B.J2=A.b(s([B.tL,null,null,B.tZ]),t.L) -B.I0=A.b(s([B.tM,null,null,B.jL]),t.L) -B.I1=A.b(s([B.tN,null,null,B.jM]),t.L) -B.I2=A.b(s([B.tO,null,null,B.jN]),t.L) -B.I3=A.b(s([B.tP,null,null,B.jO]),t.L) -B.I4=A.b(s([B.tQ,null,null,B.jP]),t.L) -B.I5=A.b(s([B.tR,null,null,B.jQ]),t.L) -B.I6=A.b(s([B.tS,null,null,B.jR]),t.L) -B.I7=A.b(s([B.tT,null,null,B.jS]),t.L) -B.Jd=A.b(s([B.tU,null,null,B.jT]),t.L) -B.Je=A.b(s([B.tV,null,null,B.jU]),t.L) -B.IS=A.b(s([B.ej,B.ej,B.h4,null]),t.L) -B.Jf=A.b(s([B.h0,null,B.h0,null]),t.L) -B.Ic=A.b(s([B.bF,null,null,B.jN]),t.L) -B.Id=A.b(s([B.bu,null,null,B.jP]),t.L) -B.Ie=A.b(s([B.bv,null,null,B.jR]),t.L) -B.It=A.b(s([B.bG,null,null,B.jT]),t.L) -B.IM=A.b(s([B.jH,null,null,B.jQ]),t.L) -B.IT=A.b(s([B.ei,B.ei,B.h3,null]),t.L) -B.HY=A.b(s([B.b1,null,null,B.jK]),t.L) -B.If=A.b(s([B.cJ,null,null,B.jM]),t.L) -B.J3=A.b(s([B.h_,null,null,B.jJ]),t.L) -B.Ig=A.b(s([B.cK,null,null,B.jS]),t.L) -B.IN=A.b(s([B.jI,null,null,B.jL]),t.L) -B.IU=A.b(s([B.ek,B.ek,B.h5,null]),t.L) -B.Ih=A.b(s([B.eg,null,null,B.jO]),t.L) -B.IO=A.b(s([B.eh,null,null,B.jU]),t.L) -B.IV=A.b(s([B.bi,B.bi,B.bw,null]),t.L) -B.Li=new A.d3(["*",B.IZ,"+",B.J_,"-",B.J0,".",B.J1,"/",B.J2,"0",B.I0,"1",B.I1,"2",B.I2,"3",B.I3,"4",B.I4,"5",B.I5,"6",B.I6,"7",B.I7,"8",B.Jd,"9",B.Je,"Alt",B.IS,"AltGraph",B.Jf,"ArrowDown",B.Ic,"ArrowLeft",B.Id,"ArrowRight",B.Ie,"ArrowUp",B.It,"Clear",B.IM,"Control",B.IT,"Delete",B.HY,"End",B.If,"Enter",B.J3,"Home",B.Ig,"Insert",B.IN,"Meta",B.IU,"PageDown",B.Ih,"PageUp",B.IO,"Shift",B.IV],A.ab("d3>")) -B.Lj=new A.Pe(0,"baseline") -B.Lk=new A.Pe(1,"start") -B.Ll=new A.r5(0,"material") -B.Lm=new A.r5(1,"cupertino") -B.Ln=new A.r5(2,"platform") -B.Lo=new A.BU(null,null,null,null,null,null,null,null) -B.E3=new A.L(4293457385) -B.DX=new A.L(4291356361) -B.DU=new A.L(4289058471) -B.DP=new A.L(4286695300) -B.DO=new A.L(4284922730) -B.DM=new A.L(4283215696) -B.DK=new A.L(4282622023) -B.DI=new A.L(4281896508) -B.DH=new A.L(4281236786) -B.DD=new A.L(4279983648) -B.KW=new A.d3([50,B.E3,100,B.DX,200,B.DU,300,B.DP,400,B.DO,500,B.DM,600,B.DK,700,B.DI,800,B.DH,900,B.DD],t.pl) -B.u8=new A.r8(B.KW,4283215696) -B.Ea=new A.L(4294962158) -B.E8=new A.L(4294954450) -B.E5=new A.L(4293892762) -B.E1=new A.L(4293227379) -B.E4=new A.L(4293874512) -B.E6=new A.L(4294198070) -B.E0=new A.L(4293212469) -B.DW=new A.L(4291176488) -B.DV=new A.L(4290190364) -B.KX=new A.d3([50,B.Ea,100,B.E8,200,B.E5,300,B.E1,400,B.E4,500,B.E6,600,B.E0,700,B.iH,800,B.DW,900,B.DV],t.pl) -B.em=new A.r8(B.KX,4294198070) -B.ad=new A.cR(0,"hovered") -B.a3=new A.cR(1,"focused") -B.ag=new A.cR(2,"pressed") -B.u9=new A.cR(3,"dragged") -B.au=new A.cR(4,"selected") -B.ua=new A.cR(5,"scrolledUnder") -B.x=new A.cR(6,"disabled") -B.jY=new A.cR(7,"error") -B.Lp=new A.ra(0,"padded") -B.ub=new A.ra(1,"shrinkWrap") -B.Lr=new A.Pp(0,"none") -B.Ls=new A.Pp(2,"truncateAfterCompositionEnds") -B.Lt=new A.Pr(null) -B.Lu=new A.BY(null) -B.Lv=new A.vz(null) -B.h8=new A.Pu(0,"user") -B.uc=new A.Pu(1,"agent") -B.Lw=new A.iO("popRoute",null) -B.ud=new A.jA("plugins.flutter.io/url_launcher",B.b0,null) -B.k_=new A.jA("plugins.flutter.io/google_sign_in",B.b0,null) -B.Lx=new A.jA("flutter/service_worker",B.b0,null) -B.ue=new A.jA("plugins.flutter.io/shared_preferences",B.b0,null) -B.Ly=new A.jA("PonnamKarthik/fluttertoast",B.b0,null) -B.LA=new A.rg(0,"clipRect") -B.LB=new A.rg(1,"clipRRect") -B.LC=new A.rg(2,"clipPath") -B.LD=new A.rg(3,"transform") -B.LE=new A.rg(4,"opacity") -B.LF=new A.Ce(null,null,null,null,null,null,null,null,null,null) -B.LG=new A.Cf(null,null,null,null,null,null,null,null,null,null) -B.cL=new A.agI(0,"traditional") -B.LH=new A.Cg(null,null,null,null,null,null,null,null,null,null,null,null,null) -B.uk=new A.fE(B.e,B.e) -B.M2=new A.k(0,20) -B.M4=new A.k(0,26) -B.M6=new A.k(11,-4) -B.M8=new A.k(1,3) -B.Ma=new A.k(22,0) -B.Mb=new A.k(3,0) -B.Mc=new A.k(3,-3) -B.Md=new A.k(6,6) -B.Me=new A.k(5,10.5) -B.up=new A.k(9,9) -B.Mg=new A.k(14.4,9) -B.Mj=new A.k(17976931348623157e292,0) -B.Mk=new A.k(0,-0.25) -B.aP=new A.k(0,-0.005) -B.Mm=new A.k(-0.3333333333333333,0) -B.Mo=new A.k(2.6999999999999997,8.1) -B.Mp=new A.k(1/0,1/0) -B.Mq=new A.k(3.6,9) -B.uq=new A.k(7.2,12.6) -B.Mu=new A.k(1/0,0) -B.My=new A.k(-3,0) -B.Mz=new A.k(-3,3) -B.MA=new A.k(-3,-3) -B.MC=new A.k(15.299999999999999,4.5) -B.aI=new A.mn(0,"iOs") -B.hb=new A.mn(1,"android") -B.k4=new A.mn(2,"linux") -B.us=new A.mn(3,"windows") -B.bJ=new A.mn(4,"macOs") -B.MD=new A.mn(5,"unknown") -B.f8=new A.aeb() -B.b2=new A.jG("flutter/platform",B.f8,null) -B.ME=new A.jG("flutter/keyboard",B.b0,null) -B.MF=new A.jG("flutter/mousecursor",B.b0,null) -B.ut=new A.jG("flutter/menu",B.b0,null) -B.uu=new A.jG("flutter/textinput",B.f8,null) -B.MG=new A.jG("flutter/undomanager",B.f8,null) -B.hc=new A.jG("flutter/navigation",B.f8,null) -B.MH=new A.jG("flutter/spellcheck",B.b0,null) -B.k5=new A.jG("flutter/restoration",B.b0,null) -B.MI=new A.rk(0,null) -B.uv=new A.rk(1,null) -B.hd=new A.Q4(0,"portrait") -B.he=new A.Q4(1,"landscape") -B.MJ=new A.Ct(null) -B.aX=new A.Qs(0,"fill") -B.Q=new A.Qs(1,"stroke") -B.XF=new A.ahg(3,"free") -B.MK=new A.mq(1/0) -B.bK=new A.Qv(0,"nonZero") -B.dg=new A.Qv(1,"evenOdd") -B.ML=new A.ahl(2,"union") -B.bj=new A.rp(0,"created") -B.aA=new A.rp(1,"active") -B.dh=new A.rp(2,"pendingRetention") -B.MM=new A.rp(3,"pendingUpdate") -B.uw=new A.rp(4,"released") -B.MN=new A.vR(null,A.ab("vR")) -B.hh=new A.ou(0,"baseline") -B.hi=new A.ou(1,"aboveBaseline") -B.hj=new A.ou(2,"belowBaseline") -B.hk=new A.ou(3,"top") -B.cp=new A.ou(4,"bottom") -B.hl=new A.ou(5,"middle") -B.Nq=new A.vV(B.o,B.cp,null,null) -B.k7=new A.mt(0,"cancel") -B.k8=new A.mt(1,"add") -B.Nr=new A.mt(2,"remove") -B.cN=new A.mt(3,"hover") -B.y_=new A.mt(4,"down") -B.ex=new A.mt(5,"move") -B.k9=new A.mt(6,"up") -B.ao=new A.l_(0,"touch") -B.b3=new A.l_(1,"mouse") -B.bk=new A.l_(2,"stylus") -B.cq=new A.l_(3,"invertedStylus") -B.aQ=new A.l_(4,"trackpad") -B.bL=new A.l_(5,"unknown") -B.dn=new A.vX(0,"none") -B.Ns=new A.vX(1,"scroll") -B.Nt=new A.vX(3,"scale") -B.Nu=new A.vX(4,"unknown") -B.Nv=new A.w0(null,null,null,null,null,null,null,null,null,null) -B.y0=new A.w2(0,"platformDefault") -B.y1=new A.w2(1,"inAppWebView") -B.Nw=new A.w2(2,"externalApplication") -B.y2=new A.w2(3,"externalNonBrowserApplication") -B.ka=new A.l0(0,"generic") -B.y3=new A.l0(1,"incrementable") -B.kb=new A.l0(2,"scrollable") -B.kc=new A.l0(3,"button") -B.y4=new A.l0(4,"textField") -B.kd=new A.l0(5,"checkable") -B.y5=new A.l0(6,"image") -B.hm=new A.l0(7,"dialog") -B.Nx=new A.w6(null,null,null,null,null) -B.Ny=new A.CX(null,null,null,null,null,null) -B.dp=new A.bc(1,1) -B.Nz=new A.bc(15.5,15.5) -B.NA=new A.bc(1.5,1.5) -B.y6=new A.yj(1e5,10) -B.y7=new A.yj(1e4,100) -B.y8=new A.yj(20,5e4) -B.NB=new A.k5(!1,null) -B.y9=new A.HL(0,0,1) -B.NC=new A.y(-1/0,-1/0,1/0,1/0) -B.ey=new A.y(-1e9,-1e9,1e9,1e9) -B.ya=new A.wc(0,"start") -B.kf=new A.wc(1,"stable") -B.ND=new A.wc(2,"changed") -B.NE=new A.wc(3,"unstable") -B.cs=new A.wd(0,"identical") -B.NF=new A.wd(1,"metadata") -B.NG=new A.wd(2,"paint") -B.b4=new A.wd(3,"layout") -B.NH=new A.rL(0,"focusable") -B.NI=new A.rL(1,"tappable") -B.NJ=new A.rL(2,"labelAndValue") -B.NK=new A.rL(3,"liveRegion") -B.NL=new A.rL(4,"routeName") -B.kg=new A.cF(B.am,B.n) -B.AK=new A.dc(B.dp,B.dp,B.dp,B.dp) -B.NN=new A.cF(B.AK,B.n) -B.NM=new A.cF(B.f6,B.n) -B.ez=new A.cF(B.f5,B.n) -B.kh=new A.RQ(0,"none") -B.NO=new A.RQ(1,"neglect") -B.yb=new A.wm(0,"pop") -B.NP=new A.wm(1,"doNotPop") -B.NQ=new A.wm(2,"bubble") -B.hq=new A.jN(null,null) -B.cT=new A.Ua(1,"down") -B.Gt=new A.dK(B.nz,null,B.k,null,null) -B.c1=new A.e1(8,null,null,null) -B.dx=new A.v(!0,B.k,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) -B.Uk=new A.dP("New Task",null,B.dx,null,null,null,null,null,null) -B.Ia=A.b(s([B.Gt,B.c1,B.Uk]),t.p) -B.NR=new A.rN(B.aC,B.G,B.K,B.v,null,B.cT,null,B.Ia,null) -B.NS=new A.Dz(1333) -B.ki=new A.Dz(2222) -B.NT=new A.S_(null,null) -B.dr=new A.rP(0,"idle") -B.NU=new A.rP(1,"transientCallbacks") -B.NV=new A.rP(2,"midFrameMicrotasks") -B.kj=new A.rP(3,"persistentCallbacks") -B.yc=new A.rP(4,"postFrameCallbacks") -B.yd=new A.akv(0,"englishLike") -B.hr=new A.DL(0,"idle") -B.kk=new A.DL(1,"forward") -B.kl=new A.DL(2,"reverse") -B.XG=new A.rR(0,"explicit") -B.cP=new A.rR(1,"keepVisibleAtEnd") -B.cQ=new A.rR(2,"keepVisibleAtStart") -B.yh=new A.S8(0,"manual") -B.O1=new A.S8(1,"onDrag") -B.O2=new A.DR(0,"left") -B.O3=new A.DR(1,"right") -B.O4=new A.DR(3,"bottom") -B.O5=new A.DS(null,null,null,null,null,null,null,null,null,null,null,null) -B.O6=new A.DT(null,null,null,null,null,null,null,null,null,null,null) -B.O7=new A.DU(null,null,null,null,null,null,null,null,null) -B.O8=new A.DV(null,null) -B.ah=new A.iU(0,"tap") -B.yi=new A.iU(1,"doubleTap") -B.aJ=new A.iU(2,"longPress") -B.eB=new A.iU(3,"forcePress") -B.av=new A.iU(5,"toolbar") -B.a5=new A.iU(6,"drag") -B.hu=new A.iU(7,"scribble") -B.yj=new A.DW(0,"startEdgeUpdate") -B.eC=new A.DW(1,"endEdgeUpdate") -B.hv=new A.wv(0,"previousLine") -B.hw=new A.wv(1,"nextLine") -B.eD=new A.wv(2,"forward") -B.eE=new A.wv(3,"backward") -B.ds=new A.DX(2,"none") -B.Oa=new A.oM(null,null,B.ds,B.jA,!1) -B.yk=new A.oM(null,null,B.ds,B.jA,!0) -B.b5=new A.oN(0,"next") -B.b6=new A.oN(1,"previous") -B.aK=new A.oN(2,"end") -B.kn=new A.oN(3,"pending") -B.eF=new A.oN(4,"none") -B.ko=new A.DX(0,"uncollapsed") -B.Ob=new A.DX(1,"collapsed") -B.Oc=new A.dp(1048576,"moveCursorBackwardByWord") -B.yl=new A.dp(128,"decrease") -B.Od=new A.dp(16384,"paste") -B.eG=new A.dp(16,"scrollUp") -B.cR=new A.dp(1,"tap") -B.Oe=new A.dp(2048,"setSelection") -B.Of=new A.dp(2097152,"setText") -B.Og=new A.dp(256,"showOnScreen") -B.Oh=new A.dp(262144,"dismiss") -B.ym=new A.dp(2,"longPress") -B.yn=new A.dp(32768,"didGainAccessibilityFocus") -B.eH=new A.dp(32,"scrollDown") -B.Oi=new A.dp(4096,"copy") -B.eI=new A.dp(4,"scrollLeft") -B.Oj=new A.dp(512,"moveCursorForwardByCharacter") -B.Ok=new A.dp(524288,"moveCursorForwardByWord") -B.yo=new A.dp(64,"increase") -B.yp=new A.dp(65536,"didLoseAccessibilityFocus") -B.Ol=new A.dp(8192,"cut") -B.eJ=new A.dp(8,"scrollRight") -B.Om=new A.dp(1024,"moveCursorBackwardByCharacter") -B.yq=new A.d8(1024,"isObscured") -B.yr=new A.d8(1048576,"isReadOnly") -B.kp=new A.d8(128,"isEnabled") -B.kq=new A.d8(131072,"isToggled") -B.ys=new A.d8(16384,"isImage") -B.On=new A.d8(16777216,"isKeyboardKey") -B.yt=new A.d8(16,"isTextField") -B.hx=new A.d8(1,"hasCheckedState") -B.yu=new A.d8(2048,"scopesRoute") -B.yv=new A.d8(2097152,"isFocusable") -B.Oo=new A.d8(256,"isInMutuallyExclusiveGroup") -B.Op=new A.d8(262144,"hasImplicitScrolling") -B.yw=new A.d8(2,"isChecked") -B.yx=new A.d8(32768,"isLiveRegion") -B.kr=new A.d8(32,"isFocused") -B.yy=new A.d8(33554432,"isCheckStateMixed") -B.yz=new A.d8(4096,"namesRoute") -B.ks=new A.d8(4194304,"isLink") -B.yA=new A.d8(4,"isSelected") -B.yB=new A.d8(512,"isHeader") -B.yC=new A.d8(524288,"isMultiline") -B.kt=new A.d8(64,"hasEnabledState") -B.ku=new A.d8(65536,"hasToggledState") -B.hy=new A.d8(8192,"isHidden") -B.Oq=new A.d8(8388608,"isSlider") -B.yD=new A.d8(8,"isButton") -B.yE=new A.jR("RenderViewport.twoPane") -B.Or=new A.jR("RenderViewport.excludeFromScrolling") -B.Os=new A.jR("_InputDecoratorState.prefix") -B.Ot=new A.jR("_InputDecoratorState.suffix") -B.yF=new A.E0(0,"idle") -B.Ou=new A.E0(1,"updating") -B.Ov=new A.E0(2,"postUpdate") -B.Ow=new A.f1([B.aY,B.aL,B.dt],A.ab("f1")) -B.yG=new A.f1([B.ao,B.bk,B.cq,B.aQ,B.bL],t.Lu) -B.Ox=new A.f1([B.ad],t.b4) -B.LR={click:0,keyup:1,keydown:2,mouseup:3,mousedown:4,pointerdown:5,pointerup:6} -B.Oy=new A.fs(B.LR,7,t.fF) -B.LN={_:0,"-":1} -B.Oz=new A.fs(B.LN,2,t.fF) -B.OA=new A.f1([32,8203],t.Ih) -B.LJ={click:0,touchstart:1,touchend:2,pointerdown:3,pointermove:4,pointerup:5} -B.OB=new A.fs(B.LJ,6,t.fF) -B.OC=new A.f1([B.cq,B.bk,B.ao,B.bL,B.aQ],t.Lu) -B.LM={" ":0,"*":1,_:2,"~":3,"(":4,">":5} -B.OD=new A.fs(B.LM,6,t.fF) -B.OE=new A.f1([B.a3],t.b4) -B.LL={"canvaskit.js":0} -B.OF=new A.fs(B.LL,1,t.fF) -B.OG=new A.f1([10,11,12,13,133,8232,8233],t.Ih) -B.OH=new A.fs(B.aW,0,A.ab("fs")) -B.OI=new A.fs(B.aW,0,A.ab("fs")) -B.LK={mailto:0,tel:1,sms:2} -B.yH=new A.fs(B.LK,3,t.fF) -B.OJ=new A.f1([B.ag],t.b4) -B.LZ={serif:0,"sans-serif":1,monospace:2,cursive:3,fantasy:4,"system-ui":5,math:6,emoji:7,fangsong:8} -B.OK=new A.fs(B.LZ,9,t.fF) -B.kv=new A.f1([B.bJ,B.k4,B.us],A.ab("f1")) -B.OL=new A.alT(0,"standard") -B.yL=new A.aS(B.bF,!1,!0,!1,!1) -B.yI=new A.aS(B.bu,!1,!0,!1,!1) -B.yJ=new A.aS(B.bv,!1,!0,!1,!1) -B.yK=new A.aS(B.bG,!1,!0,!1,!1) -B.OU=new A.aS(B.bF,!1,!0,!1,!0) -B.OR=new A.aS(B.bu,!1,!0,!1,!0) -B.OS=new A.aS(B.bv,!1,!0,!1,!0) -B.OT=new A.aS(B.bG,!1,!0,!1,!0) -B.OQ=new A.aS(B.bF,!0,!0,!1,!1) -B.OP=new A.aS(B.bG,!0,!0,!1,!1) -B.OW=new A.aS(B.cJ,!0,!0,!1,!1) -B.OV=new A.aS(B.cK,!0,!0,!1,!1) -B.yP=new A.aS(B.bF,!1,!0,!0,!1) -B.yM=new A.aS(B.bu,!1,!0,!0,!1) -B.yN=new A.aS(B.bv,!1,!0,!0,!1) -B.yO=new A.aS(B.bG,!1,!0,!0,!1) -B.z2=new A.aS(B.jV,!1,!1,!1,!0) -B.z4=new A.aS(B.jW,!1,!1,!1,!0) -B.z5=new A.aS(B.jE,!1,!1,!1,!0) -B.z3=new A.aS(B.jF,!1,!1,!1,!0) -B.OX=new A.aS(B.ed,!1,!1,!1,!0) -B.OY=new A.aS(B.ed,!1,!0,!1,!0) -B.kC=new A.aS(B.jV,!0,!1,!1,!1) -B.P0=new A.aS(B.u_,!0,!1,!1,!1) -B.z0=new A.aS(B.jW,!0,!1,!1,!1) -B.OZ=new A.aS(B.o9,!0,!1,!1,!1) -B.P_=new A.aS(B.oa,!0,!1,!1,!1) -B.P1=new A.aS(B.ob,!0,!1,!1,!1) -B.P2=new A.aS(B.oc,!0,!1,!1,!1) -B.P5=new A.aS(B.od,!0,!1,!1,!1) -B.z1=new A.aS(B.jE,!0,!1,!1,!1) -B.z_=new A.aS(B.jF,!0,!1,!1,!1) -B.P3=new A.aS(B.ed,!0,!1,!1,!1) -B.P4=new A.aS(B.ed,!0,!0,!1,!1) -B.P7=new A.Q(1e5,1e5) -B.P9=new A.Q(10,10) -B.Pa=new A.Q(18,18) -B.Pb=new A.Q(20,20) -B.Pc=new A.Q(22,22) -B.Pd=new A.Q(40,40) -B.Pe=new A.Q(48,36) -B.z6=new A.Q(48,48) -B.kD=new A.Q(64,36) -B.Pf=new A.Q(80,47.5) -B.Pg=new A.Q(77.37,37.9) -B.kE=new A.Q(1/0,1/0) -B.ai=new A.e1(0,0,null,null) -B.Ph=new A.e1(10,null,null,null) -B.hH=new A.e1(20,null,null,null) -B.T6=new A.v(!0,B.k,null,"Archivo",null,null,12.5,B.w,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) -B.Uf=new A.dP("Agents operating in Continuous Mode will perform Actions without requesting authorization from the user. Configure the number of steps in the settings menu.",null,B.T6,B.bl,null,null,null,null,null) -B.Pi=new A.e1(220,null,B.Uf,null) -B.z7=new A.e1(null,10,null,null) -B.Pj=new A.e1(null,11,null,null) -B.Pk=new A.e1(null,14,null,null) -B.Pl=new A.e1(null,16,null,null) -B.Pm=new A.e1(null,20,null,null) -B.Pn=new A.e1(null,6,null,null) -B.kF=new A.e1(null,8,null,null) -B.hI=new A.e1(null,null,null,null) -B.Pr=new A.Ee(null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) -B.z9=new A.SA(0,0,0,0,0,0,!1,!1,null,0) -B.za=new A.ami(1,"enabled") -B.zb=new A.amj(1,"enabled") -B.XH=new A.Eh(3,"hide") -B.Ps=new A.Eh(5,"timeout") -B.Pt=new A.Ei(null,null,null,null,null,null,null,null,null,null,null,null,null) -B.zc=new A.SF(0,"permissive") -B.XI=new A.SF(1,"normal") -B.Pu=new A.SQ(null) -B.eO=new A.Ek(null,null,null,null,!1) -B.Pv=new A.En(0,"criticallyDamped") -B.Pw=new A.En(1,"underDamped") -B.Px=new A.En(2,"overDamped") -B.bM=new A.Ep(0,"loose") -B.Py=new A.Ep(1,"expand") -B.Pz=new A.Ep(2,"passthrough") -B.PA=new A.jU("...",-1,"","","",-1,-1,"","...") -B.PB=new A.jU("",-1,"","","",-1,-1,"","asynchronous suspension") -B.zd=new A.hj(B.n) -B.ct=new A.f5("") -B.cu=new A.Ey(0,"butt") -B.ze=new A.Ey(1,"round") -B.PD=new A.Ey(2,"square") -B.hJ=new A.T1(0,"miter") -B.zf=new A.T1(1,"round") -B.PE=new A.wP(null,null,null,null,null,null,null,null,null) -B.PF=new A.cV(0) -B.PQ=new A.cV(0) -B.PO=new A.cV(0) -B.PM=new A.cV(0) -B.PN=new A.cV(0) -B.PL=new A.cV(0) -B.PP=new A.cV(0) -B.PK=new A.cV(0) -B.PH=new A.cV(0) -B.PJ=new A.cV(0) -B.PG=new A.cV(0) -B.PI=new A.cV(0) -B.PR=new A.cV(1) -B.PS=new A.cV(10) -B.PT=new A.cV(11) -B.PU=new A.cV(12) -B.PV=new A.cV(13) -B.PW=new A.cV(14) -B.PX=new A.cV(15) -B.PY=new A.cV(16) -B.PZ=new A.cV(2) -B.Q_=new A.cV(3) -B.Q0=new A.cV(4) -B.Q1=new A.cV(5) -B.Q2=new A.cV(6) -B.Q3=new A.cV(7) -B.Q4=new A.cV(8) -B.Q5=new A.cV(9) -B.Q6=new A.wT(null,null,null,null,null,null,null,null,null) -B.Q7=new A.mK("call") -B.bN=new A.oX("basic") -B.c2=new A.oX("click") -B.kG=new A.oX("text") -B.Q8=new A.T6(0,"click") -B.Q9=new A.T6(1,"alert") -B.Qa=new A.lf(B.k,null,B.an,null,null,B.Y,B.an,null) -B.Qb=new A.lf(B.k,null,B.an,null,null,B.an,B.Y,null) -B.Qc=new A.EC(null,null,null,null,null,null,null,null,null,null,null,null,null) -B.XJ=new A.Ta(0,"top") -B.zg=new A.Ta(1,"middle") -B.zi=new A.anT("tap") -B.zj=new A.Tj(0,"checked") -B.Qd=new A.Tj(1,"unchecked") -B.hK=new A.EL(0,"runSingleTest") -B.kH=new A.EL(1,"runTestSuiteIncludingSelectedNodeAndAncestors") -B.kI=new A.EL(2,"runAllTestsInCategory") -B.zk=new A.To(0) -B.zl=new A.To(-1) -B.N=new A.EP(0,"alphabetic") -B.Qe=new A.EQ(null) -B.kJ=new A.wZ(3,"none") -B.zm=new A.ER(B.kJ) -B.zn=new A.wZ(0,"words") -B.zo=new A.wZ(1,"sentences") -B.zp=new A.wZ(2,"characters") -B.zq=new A.aok(3,"none") -B.f=new A.x_(0) -B.zs=new A.x_(4) -B.kO=new A.hm(0,0,B.l,!1,0,0) -B.kK=new A.dg("",B.kO,B.b7) -B.Qg=new A.x2(0,"character") -B.Qh=new A.x2(1,"word") -B.Qi=new A.x2(2,"line") -B.Qj=new A.x2(3,"document") -B.kN=new A.Tw(0,"proportional") -B.zu=new A.EV(B.kN) -B.Qk=new A.hl(0,"none") -B.Ql=new A.hl(1,"unspecified") -B.Qm=new A.hl(10,"route") -B.Qn=new A.hl(11,"emergencyCall") -B.zv=new A.hl(12,"newline") -B.kL=new A.hl(2,"done") -B.Qo=new A.hl(3,"go") -B.Qp=new A.hl(4,"search") -B.Qq=new A.hl(5,"send") -B.Qr=new A.hl(6,"next") -B.Qs=new A.hl(7,"previous") -B.Qt=new A.hl(8,"continueAction") -B.Qu=new A.hl(9,"join") -B.zw=new A.EY(0,null,null) -B.kM=new A.EY(1,null,null) -B.zx=new A.Tw(1,"even") -B.XK=new A.Tx(null,!0) -B.aZ=new A.F_(2,"ellipsis") -B.Qv=new A.F_(3,"visible") -B.eQ=new A.bf(0,B.l) -B.hM=new A.F2(0,"left") -B.hN=new A.F2(1,"right") -B.eR=new A.F2(2,"collapsed") -B.Qw=new A.F3(null,null,null) -B.Qx=new A.F4(B.e,null) -B.Qy=new A.hn("\n",null,null,B.bp,null,null) -B.zr=new A.x_(1) -B.zy=new A.v(!0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,B.zr,null,null,null,null,null,null,null,null) -B.R5=new A.v(!0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,B.zs,null,null,null,null,null,null,null,null) -B.RK=new A.v(!0,null,null,null,null,null,null,B.fE,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) -B.zD=new A.v(!1,B.fq,null,".SF Pro Text",null,null,17,null,null,-0.41,null,null,null,null,null,null,null,B.f,null,null,null,null,null,null,null,null) -B.kP=new A.v(!0,B.j,null,"Archivo",null,null,12.5,B.w,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) -B.SH=new A.v(!0,null,null,"monospace",null,null,12,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) -B.zE=new A.v(!1,null,null,null,null,null,14,B.w,null,-0.15,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) -B.Tc=new A.v(!1,null,null,null,null,null,15,B.w,null,-0.15,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) -B.Tn=new A.v(!0,B.c_,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) -B.zH=new A.v(!1,B.bU,null,".SF Pro Text",null,null,10,B.aF,null,-0.24,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) -B.Ds=new A.L(3506372608) -B.Eb=new A.L(4294967040) -B.Qf=new A.aol(1,"double") -B.TK=new A.v(!0,B.Ds,null,"monospace",null,null,48,B.ns,null,null,null,null,null,null,null,null,null,B.zr,B.Eb,B.Qf,null,"fallback style; consider putting your text in a Material",null,null,null,null) -B.QX=new A.v(!0,B.O,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackRedwoodCity displayLarge",null,null,null,null) -B.Rk=new A.v(!0,B.O,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackRedwoodCity displayMedium",null,null,null,null) -B.QY=new A.v(!0,B.O,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackRedwoodCity displaySmall",null,null,null,null) -B.QT=new A.v(!0,B.O,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackRedwoodCity headlineLarge",null,null,null,null) -B.RX=new A.v(!0,B.O,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackRedwoodCity headlineMedium",null,null,null,null) -B.Sm=new A.v(!0,B.J,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackRedwoodCity headlineSmall",null,null,null,null) -B.Ti=new A.v(!0,B.J,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackRedwoodCity titleLarge",null,null,null,null) -B.Tb=new A.v(!0,B.J,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackRedwoodCity titleMedium",null,null,null,null) -B.TJ=new A.v(!0,B.k,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackRedwoodCity titleSmall",null,null,null,null) -B.TC=new A.v(!0,B.J,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackRedwoodCity bodyLarge",null,null,null,null) -B.Sl=new A.v(!0,B.J,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackRedwoodCity bodyMedium",null,null,null,null) -B.Ta=new A.v(!0,B.O,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackRedwoodCity bodySmall",null,null,null,null) -B.So=new A.v(!0,B.J,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackRedwoodCity labelLarge",null,null,null,null) -B.RZ=new A.v(!0,B.k,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackRedwoodCity labelMedium",null,null,null,null) -B.Tv=new A.v(!0,B.k,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackRedwoodCity labelSmall",null,null,null,null) -B.TV=new A.eb(B.QX,B.Rk,B.QY,B.QT,B.RX,B.Sm,B.Ti,B.Tb,B.TJ,B.TC,B.Sl,B.Ta,B.So,B.RZ,B.Tv) -B.QM=new A.v(!0,B.O,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackMountainView displayLarge",null,null,null,null) -B.R7=new A.v(!0,B.O,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackMountainView displayMedium",null,null,null,null) -B.Ru=new A.v(!0,B.O,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackMountainView displaySmall",null,null,null,null) -B.Tr=new A.v(!0,B.O,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackMountainView headlineLarge",null,null,null,null) -B.TH=new A.v(!0,B.O,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackMountainView headlineMedium",null,null,null,null) -B.TE=new A.v(!0,B.J,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackMountainView headlineSmall",null,null,null,null) -B.Rp=new A.v(!0,B.J,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackMountainView titleLarge",null,null,null,null) -B.Tj=new A.v(!0,B.J,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackMountainView titleMedium",null,null,null,null) -B.Rg=new A.v(!0,B.k,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackMountainView titleSmall",null,null,null,null) -B.Rn=new A.v(!0,B.J,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackMountainView bodyLarge",null,null,null,null) -B.R2=new A.v(!0,B.J,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackMountainView bodyMedium",null,null,null,null) -B.Rt=new A.v(!0,B.O,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackMountainView bodySmall",null,null,null,null) -B.TP=new A.v(!0,B.J,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackMountainView labelLarge",null,null,null,null) -B.SO=new A.v(!0,B.k,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackMountainView labelMedium",null,null,null,null) -B.Ss=new A.v(!0,B.k,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackMountainView labelSmall",null,null,null,null) -B.TW=new A.eb(B.QM,B.R7,B.Ru,B.Tr,B.TH,B.TE,B.Rp,B.Tj,B.Rg,B.Rn,B.R2,B.Rt,B.TP,B.SO,B.Ss) -B.QH=new A.v(!0,B.E,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteRedwoodCity displayLarge",null,null,null,null) -B.Rr=new A.v(!0,B.E,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteRedwoodCity displayMedium",null,null,null,null) -B.QI=new A.v(!0,B.E,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteRedwoodCity displaySmall",null,null,null,null) -B.QW=new A.v(!0,B.E,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteRedwoodCity headlineLarge",null,null,null,null) -B.R_=new A.v(!0,B.E,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteRedwoodCity headlineMedium",null,null,null,null) -B.T8=new A.v(!0,B.j,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteRedwoodCity headlineSmall",null,null,null,null) -B.RA=new A.v(!0,B.j,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteRedwoodCity titleLarge",null,null,null,null) -B.RL=new A.v(!0,B.j,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteRedwoodCity titleMedium",null,null,null,null) -B.Sa=new A.v(!0,B.j,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteRedwoodCity titleSmall",null,null,null,null) -B.SE=new A.v(!0,B.j,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteRedwoodCity bodyLarge",null,null,null,null) -B.RS=new A.v(!0,B.j,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteRedwoodCity bodyMedium",null,null,null,null) -B.Te=new A.v(!0,B.E,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteRedwoodCity bodySmall",null,null,null,null) -B.T7=new A.v(!0,B.j,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteRedwoodCity labelLarge",null,null,null,null) -B.RD=new A.v(!0,B.j,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteRedwoodCity labelMedium",null,null,null,null) -B.SF=new A.v(!0,B.j,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteRedwoodCity labelSmall",null,null,null,null) -B.TX=new A.eb(B.QH,B.Rr,B.QI,B.QW,B.R_,B.T8,B.RA,B.RL,B.Sa,B.SE,B.RS,B.Te,B.T7,B.RD,B.SF) -B.T=A.b(s(["Ubuntu","Cantarell","DejaVu Sans","Liberation Sans","Arial"]),t.s) -B.Sr=new A.v(!0,B.O,null,"Roboto",B.T,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackHelsinki displayLarge",null,null,null,null) -B.SN=new A.v(!0,B.O,null,"Roboto",B.T,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackHelsinki displayMedium",null,null,null,null) -B.Se=new A.v(!0,B.O,null,"Roboto",B.T,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackHelsinki displaySmall",null,null,null,null) -B.Rc=new A.v(!0,B.O,null,"Roboto",B.T,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackHelsinki headlineLarge",null,null,null,null) -B.RB=new A.v(!0,B.O,null,"Roboto",B.T,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackHelsinki headlineMedium",null,null,null,null) -B.RM=new A.v(!0,B.J,null,"Roboto",B.T,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackHelsinki headlineSmall",null,null,null,null) -B.T2=new A.v(!0,B.J,null,"Roboto",B.T,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackHelsinki titleLarge",null,null,null,null) -B.Re=new A.v(!0,B.J,null,"Roboto",B.T,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackHelsinki titleMedium",null,null,null,null) -B.QE=new A.v(!0,B.k,null,"Roboto",B.T,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackHelsinki titleSmall",null,null,null,null) -B.Tw=new A.v(!0,B.J,null,"Roboto",B.T,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackHelsinki bodyLarge",null,null,null,null) -B.Qz=new A.v(!0,B.J,null,"Roboto",B.T,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackHelsinki bodyMedium",null,null,null,null) -B.SD=new A.v(!0,B.O,null,"Roboto",B.T,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackHelsinki bodySmall",null,null,null,null) -B.Ro=new A.v(!0,B.J,null,"Roboto",B.T,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackHelsinki labelLarge",null,null,null,null) -B.Sv=new A.v(!0,B.k,null,"Roboto",B.T,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackHelsinki labelMedium",null,null,null,null) -B.TL=new A.v(!0,B.k,null,"Roboto",B.T,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackHelsinki labelSmall",null,null,null,null) -B.TY=new A.eb(B.Sr,B.SN,B.Se,B.Rc,B.RB,B.RM,B.T2,B.Re,B.QE,B.Tw,B.Qz,B.SD,B.Ro,B.Sv,B.TL) -B.SP=new A.v(!0,B.E,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteRedmond displayLarge",null,null,null,null) -B.S_=new A.v(!0,B.E,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteRedmond displayMedium",null,null,null,null) -B.Rz=new A.v(!0,B.E,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteRedmond displaySmall",null,null,null,null) -B.TD=new A.v(!0,B.E,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteRedmond headlineLarge",null,null,null,null) -B.R3=new A.v(!0,B.E,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteRedmond headlineMedium",null,null,null,null) -B.QQ=new A.v(!0,B.j,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteRedmond headlineSmall",null,null,null,null) -B.RH=new A.v(!0,B.j,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteRedmond titleLarge",null,null,null,null) -B.Sn=new A.v(!0,B.j,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteRedmond titleMedium",null,null,null,null) -B.RP=new A.v(!0,B.j,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteRedmond titleSmall",null,null,null,null) -B.S5=new A.v(!0,B.j,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteRedmond bodyLarge",null,null,null,null) -B.T4=new A.v(!0,B.j,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteRedmond bodyMedium",null,null,null,null) -B.QS=new A.v(!0,B.E,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteRedmond bodySmall",null,null,null,null) -B.SB=new A.v(!0,B.j,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteRedmond labelLarge",null,null,null,null) -B.RU=new A.v(!0,B.j,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteRedmond labelMedium",null,null,null,null) -B.Tl=new A.v(!0,B.j,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteRedmond labelSmall",null,null,null,null) -B.TZ=new A.eb(B.SP,B.S_,B.Rz,B.TD,B.R3,B.QQ,B.RH,B.Sn,B.RP,B.S5,B.T4,B.QS,B.SB,B.RU,B.Tl) -B.Sk=new A.v(!0,B.E,null,".SF UI Display",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteCupertino displayLarge",null,null,null,null) -B.T3=new A.v(!0,B.E,null,".SF UI Display",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteCupertino displayMedium",null,null,null,null) -B.RJ=new A.v(!0,B.E,null,".SF UI Display",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteCupertino displaySmall",null,null,null,null) -B.S3=new A.v(!0,B.E,null,".SF UI Display",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteCupertino headlineLarge",null,null,null,null) -B.Rj=new A.v(!0,B.E,null,".SF UI Display",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteCupertino headlineMedium",null,null,null,null) -B.S1=new A.v(!0,B.j,null,".SF UI Display",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteCupertino headlineSmall",null,null,null,null) -B.Rq=new A.v(!0,B.j,null,".SF UI Display",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteCupertino titleLarge",null,null,null,null) -B.SR=new A.v(!0,B.j,null,".SF UI Text",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteCupertino titleMedium",null,null,null,null) -B.Ry=new A.v(!0,B.j,null,".SF UI Text",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteCupertino titleSmall",null,null,null,null) -B.RN=new A.v(!0,B.j,null,".SF UI Text",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteCupertino bodyLarge",null,null,null,null) -B.S0=new A.v(!0,B.j,null,".SF UI Text",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteCupertino bodyMedium",null,null,null,null) -B.QZ=new A.v(!0,B.E,null,".SF UI Text",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteCupertino bodySmall",null,null,null,null) -B.T_=new A.v(!0,B.j,null,".SF UI Text",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteCupertino labelLarge",null,null,null,null) -B.S7=new A.v(!0,B.j,null,".SF UI Text",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteCupertino labelMedium",null,null,null,null) -B.SM=new A.v(!0,B.j,null,".SF UI Text",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteCupertino labelSmall",null,null,null,null) -B.U_=new A.eb(B.Sk,B.T3,B.RJ,B.S3,B.Rj,B.S1,B.Rq,B.SR,B.Ry,B.RN,B.S0,B.QZ,B.T_,B.S7,B.SM) -B.SJ=new A.v(!1,null,null,null,null,null,112,B.w,null,null,null,B.N,null,null,null,null,null,null,null,null,null,"tall displayLarge 2014",null,null,null,null) -B.TA=new A.v(!1,null,null,null,null,null,56,B.w,null,null,null,B.N,null,null,null,null,null,null,null,null,null,"tall displayMedium 2014",null,null,null,null) -B.St=new A.v(!1,null,null,null,null,null,45,B.w,null,null,null,B.N,null,null,null,null,null,null,null,null,null,"tall displaySmall 2014",null,null,null,null) -B.Sh=new A.v(!1,null,null,null,null,null,40,B.w,null,null,null,B.N,null,null,null,null,null,null,null,null,null,"tall headlineLarge 2014",null,null,null,null) -B.TF=new A.v(!1,null,null,null,null,null,34,B.w,null,null,null,B.N,null,null,null,null,null,null,null,null,null,"tall headlineMedium 2014",null,null,null,null) -B.SW=new A.v(!1,null,null,null,null,null,24,B.w,null,null,null,B.N,null,null,null,null,null,null,null,null,null,"tall headlineSmall 2014",null,null,null,null) -B.QU=new A.v(!1,null,null,null,null,null,21,B.bs,null,null,null,B.N,null,null,null,null,null,null,null,null,null,"tall titleLarge 2014",null,null,null,null) -B.QD=new A.v(!1,null,null,null,null,null,17,B.w,null,null,null,B.N,null,null,null,null,null,null,null,null,null,"tall titleMedium 2014",null,null,null,null) -B.Tt=new A.v(!1,null,null,null,null,null,15,B.aF,null,null,null,B.N,null,null,null,null,null,null,null,null,null,"tall titleSmall 2014",null,null,null,null) -B.Tf=new A.v(!1,null,null,null,null,null,15,B.bs,null,null,null,B.N,null,null,null,null,null,null,null,null,null,"tall bodyLarge 2014",null,null,null,null) -B.QA=new A.v(!1,null,null,null,null,null,15,B.w,null,null,null,B.N,null,null,null,null,null,null,null,null,null,"tall bodyMedium 2014",null,null,null,null) -B.RI=new A.v(!1,null,null,null,null,null,13,B.w,null,null,null,B.N,null,null,null,null,null,null,null,null,null,"tall bodySmall 2014",null,null,null,null) -B.Tp=new A.v(!1,null,null,null,null,null,15,B.bs,null,null,null,B.N,null,null,null,null,null,null,null,null,null,"tall labelLarge 2014",null,null,null,null) -B.SL=new A.v(!1,null,null,null,null,null,12,B.w,null,null,null,B.N,null,null,null,null,null,null,null,null,null,"tall labelMedium 2014",null,null,null,null) -B.Rx=new A.v(!1,null,null,null,null,null,11,B.w,null,null,null,B.N,null,null,null,null,null,null,null,null,null,"tall labelSmall 2014",null,null,null,null) -B.U0=new A.eb(B.SJ,B.TA,B.St,B.Sh,B.TF,B.SW,B.QU,B.QD,B.Tt,B.Tf,B.QA,B.RI,B.Tp,B.SL,B.Rx) -B.aS=new A.EP(1,"ideographic") -B.Rw=new A.v(!1,null,null,null,null,null,112,B.jj,null,null,null,B.aS,null,null,null,null,null,null,null,null,null,"dense displayLarge 2014",null,null,null,null) -B.QC=new A.v(!1,null,null,null,null,null,56,B.w,null,null,null,B.aS,null,null,null,null,null,null,null,null,null,"dense displayMedium 2014",null,null,null,null) -B.RC=new A.v(!1,null,null,null,null,null,45,B.w,null,null,null,B.aS,null,null,null,null,null,null,null,null,null,"dense displaySmall 2014",null,null,null,null) -B.RG=new A.v(!1,null,null,null,null,null,40,B.w,null,null,null,B.aS,null,null,null,null,null,null,null,null,null,"dense headlineLarge 2014",null,null,null,null) -B.TS=new A.v(!1,null,null,null,null,null,34,B.w,null,null,null,B.aS,null,null,null,null,null,null,null,null,null,"dense headlineMedium 2014",null,null,null,null) -B.SX=new A.v(!1,null,null,null,null,null,24,B.w,null,null,null,B.aS,null,null,null,null,null,null,null,null,null,"dense headlineSmall 2014",null,null,null,null) -B.SZ=new A.v(!1,null,null,null,null,null,21,B.aF,null,null,null,B.aS,null,null,null,null,null,null,null,null,null,"dense titleLarge 2014",null,null,null,null) -B.S2=new A.v(!1,null,null,null,null,null,17,B.w,null,null,null,B.aS,null,null,null,null,null,null,null,null,null,"dense titleMedium 2014",null,null,null,null) -B.TG=new A.v(!1,null,null,null,null,null,15,B.aF,null,null,null,B.aS,null,null,null,null,null,null,null,null,null,"dense titleSmall 2014",null,null,null,null) -B.Sq=new A.v(!1,null,null,null,null,null,15,B.aF,null,null,null,B.aS,null,null,null,null,null,null,null,null,null,"dense bodyLarge 2014",null,null,null,null) -B.SQ=new A.v(!1,null,null,null,null,null,15,B.w,null,null,null,B.aS,null,null,null,null,null,null,null,null,null,"dense bodyMedium 2014",null,null,null,null) -B.QG=new A.v(!1,null,null,null,null,null,13,B.w,null,null,null,B.aS,null,null,null,null,null,null,null,null,null,"dense bodySmall 2014",null,null,null,null) -B.Rd=new A.v(!1,null,null,null,null,null,15,B.aF,null,null,null,B.aS,null,null,null,null,null,null,null,null,null,"dense labelLarge 2014",null,null,null,null) -B.TO=new A.v(!1,null,null,null,null,null,12,B.w,null,null,null,B.aS,null,null,null,null,null,null,null,null,null,"dense labelMedium 2014",null,null,null,null) -B.QR=new A.v(!1,null,null,null,null,null,11,B.w,null,null,null,B.aS,null,null,null,null,null,null,null,null,null,"dense labelSmall 2014",null,null,null,null) -B.U1=new A.eb(B.Rw,B.QC,B.RC,B.RG,B.TS,B.SX,B.SZ,B.S2,B.TG,B.Sq,B.SQ,B.QG,B.Rd,B.TO,B.QR) -B.Sf=new A.v(!0,B.O,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackRedmond displayLarge",null,null,null,null) -B.Rv=new A.v(!0,B.O,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackRedmond displayMedium",null,null,null,null) -B.Tx=new A.v(!0,B.O,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackRedmond displaySmall",null,null,null,null) -B.R0=new A.v(!0,B.O,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackRedmond headlineLarge",null,null,null,null) -B.Tg=new A.v(!0,B.O,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackRedmond headlineMedium",null,null,null,null) -B.QJ=new A.v(!0,B.J,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackRedmond headlineSmall",null,null,null,null) -B.RQ=new A.v(!0,B.J,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackRedmond titleLarge",null,null,null,null) -B.S6=new A.v(!0,B.J,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackRedmond titleMedium",null,null,null,null) -B.QB=new A.v(!0,B.k,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackRedmond titleSmall",null,null,null,null) -B.SU=new A.v(!0,B.J,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackRedmond bodyLarge",null,null,null,null) -B.R1=new A.v(!0,B.J,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackRedmond bodyMedium",null,null,null,null) -B.TM=new A.v(!0,B.O,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackRedmond bodySmall",null,null,null,null) -B.S8=new A.v(!0,B.J,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackRedmond labelLarge",null,null,null,null) -B.QV=new A.v(!0,B.k,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackRedmond labelMedium",null,null,null,null) -B.R4=new A.v(!0,B.k,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackRedmond labelSmall",null,null,null,null) -B.U2=new A.eb(B.Sf,B.Rv,B.Tx,B.R0,B.Tg,B.QJ,B.RQ,B.S6,B.QB,B.SU,B.R1,B.TM,B.S8,B.QV,B.R4) -B.Sd=new A.v(!1,null,null,null,null,null,112,B.jj,null,null,null,B.N,null,null,null,null,null,null,null,null,null,"englishLike displayLarge 2014",null,null,null,null) -B.RR=new A.v(!1,null,null,null,null,null,56,B.w,null,null,null,B.N,null,null,null,null,null,null,null,null,null,"englishLike displayMedium 2014",null,null,null,null) -B.TR=new A.v(!1,null,null,null,null,null,45,B.w,null,null,null,B.N,null,null,null,null,null,null,null,null,null,"englishLike displaySmall 2014",null,null,null,null) -B.SG=new A.v(!1,null,null,null,null,null,40,B.w,null,null,null,B.N,null,null,null,null,null,null,null,null,null,"englishLike headlineLarge 2014",null,null,null,null) -B.SC=new A.v(!1,null,null,null,null,null,34,B.w,null,null,null,B.N,null,null,null,null,null,null,null,null,null,"englishLike headlineMedium 2014",null,null,null,null) -B.T5=new A.v(!1,null,null,null,null,null,24,B.w,null,null,null,B.N,null,null,null,null,null,null,null,null,null,"englishLike headlineSmall 2014",null,null,null,null) -B.RE=new A.v(!1,null,null,null,null,null,20,B.aF,null,null,null,B.N,null,null,null,null,null,null,null,null,null,"englishLike titleLarge 2014",null,null,null,null) -B.SI=new A.v(!1,null,null,null,null,null,16,B.w,null,null,null,B.N,null,null,null,null,null,null,null,null,null,"englishLike titleMedium 2014",null,null,null,null) -B.Sy=new A.v(!1,null,null,null,null,null,14,B.aF,null,0.1,null,B.N,null,null,null,null,null,null,null,null,null,"englishLike titleSmall 2014",null,null,null,null) -B.RT=new A.v(!1,null,null,null,null,null,14,B.aF,null,null,null,B.N,null,null,null,null,null,null,null,null,null,"englishLike bodyLarge 2014",null,null,null,null) -B.T0=new A.v(!1,null,null,null,null,null,14,B.w,null,null,null,B.N,null,null,null,null,null,null,null,null,null,"englishLike bodyMedium 2014",null,null,null,null) -B.QN=new A.v(!1,null,null,null,null,null,12,B.w,null,null,null,B.N,null,null,null,null,null,null,null,null,null,"englishLike bodySmall 2014",null,null,null,null) -B.QL=new A.v(!1,null,null,null,null,null,14,B.aF,null,null,null,B.N,null,null,null,null,null,null,null,null,null,"englishLike labelLarge 2014",null,null,null,null) -B.TI=new A.v(!1,null,null,null,null,null,12,B.w,null,null,null,B.N,null,null,null,null,null,null,null,null,null,"englishLike labelMedium 2014",null,null,null,null) -B.SV=new A.v(!1,null,null,null,null,null,10,B.w,null,1.5,null,B.N,null,null,null,null,null,null,null,null,null,"englishLike labelSmall 2014",null,null,null,null) -B.U3=new A.eb(B.Sd,B.RR,B.TR,B.SG,B.SC,B.T5,B.RE,B.SI,B.Sy,B.RT,B.T0,B.QN,B.QL,B.TI,B.SV) -B.RY=new A.v(!0,B.E,null,"Roboto",B.T,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteHelsinki displayLarge",null,null,null,null) -B.Sb=new A.v(!0,B.E,null,"Roboto",B.T,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteHelsinki displayMedium",null,null,null,null) -B.To=new A.v(!0,B.E,null,"Roboto",B.T,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteHelsinki displaySmall",null,null,null,null) -B.SY=new A.v(!0,B.E,null,"Roboto",B.T,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteHelsinki headlineLarge",null,null,null,null) -B.TN=new A.v(!0,B.E,null,"Roboto",B.T,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteHelsinki headlineMedium",null,null,null,null) -B.Si=new A.v(!0,B.j,null,"Roboto",B.T,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteHelsinki headlineSmall",null,null,null,null) -B.Rh=new A.v(!0,B.j,null,"Roboto",B.T,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteHelsinki titleLarge",null,null,null,null) -B.TT=new A.v(!0,B.j,null,"Roboto",B.T,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteHelsinki titleMedium",null,null,null,null) -B.R8=new A.v(!0,B.j,null,"Roboto",B.T,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteHelsinki titleSmall",null,null,null,null) -B.QF=new A.v(!0,B.j,null,"Roboto",B.T,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteHelsinki bodyLarge",null,null,null,null) -B.RO=new A.v(!0,B.j,null,"Roboto",B.T,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteHelsinki bodyMedium",null,null,null,null) -B.Rs=new A.v(!0,B.E,null,"Roboto",B.T,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteHelsinki bodySmall",null,null,null,null) -B.QO=new A.v(!0,B.j,null,"Roboto",B.T,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteHelsinki labelLarge",null,null,null,null) -B.Sg=new A.v(!0,B.j,null,"Roboto",B.T,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteHelsinki labelMedium",null,null,null,null) -B.QP=new A.v(!0,B.j,null,"Roboto",B.T,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteHelsinki labelSmall",null,null,null,null) -B.U4=new A.eb(B.RY,B.Sb,B.To,B.SY,B.TN,B.Si,B.Rh,B.TT,B.R8,B.QF,B.RO,B.Rs,B.QO,B.Sg,B.QP) -B.RW=new A.v(!0,B.O,null,".SF UI Display",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackCupertino displayLarge",null,null,null,null) -B.T1=new A.v(!0,B.O,null,".SF UI Display",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackCupertino displayMedium",null,null,null,null) -B.SA=new A.v(!0,B.O,null,".SF UI Display",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackCupertino displaySmall",null,null,null,null) -B.SK=new A.v(!0,B.O,null,".SF UI Display",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackCupertino headlineLarge",null,null,null,null) -B.QK=new A.v(!0,B.O,null,".SF UI Display",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackCupertino headlineMedium",null,null,null,null) -B.Su=new A.v(!0,B.J,null,".SF UI Display",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackCupertino headlineSmall",null,null,null,null) -B.Rm=new A.v(!0,B.J,null,".SF UI Display",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackCupertino titleLarge",null,null,null,null) -B.Sx=new A.v(!0,B.J,null,".SF UI Text",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackCupertino titleMedium",null,null,null,null) -B.R6=new A.v(!0,B.k,null,".SF UI Text",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackCupertino titleSmall",null,null,null,null) -B.Tu=new A.v(!0,B.J,null,".SF UI Text",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackCupertino bodyLarge",null,null,null,null) -B.Td=new A.v(!0,B.J,null,".SF UI Text",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackCupertino bodyMedium",null,null,null,null) -B.Sp=new A.v(!0,B.O,null,".SF UI Text",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackCupertino bodySmall",null,null,null,null) -B.Rl=new A.v(!0,B.J,null,".SF UI Text",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackCupertino labelLarge",null,null,null,null) -B.Rf=new A.v(!0,B.k,null,".SF UI Text",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackCupertino labelMedium",null,null,null,null) -B.T9=new A.v(!0,B.k,null,".SF UI Text",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"blackCupertino labelSmall",null,null,null,null) -B.U5=new A.eb(B.RW,B.T1,B.SA,B.SK,B.QK,B.Su,B.Rm,B.Sx,B.R6,B.Tu,B.Td,B.Sp,B.Rl,B.Rf,B.T9) -B.Sz=new A.v(!0,B.E,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteMountainView displayLarge",null,null,null,null) -B.TQ=new A.v(!0,B.E,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteMountainView displayMedium",null,null,null,null) -B.Tz=new A.v(!0,B.E,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteMountainView displaySmall",null,null,null,null) -B.Ri=new A.v(!0,B.E,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteMountainView headlineLarge",null,null,null,null) -B.Ts=new A.v(!0,B.E,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteMountainView headlineMedium",null,null,null,null) -B.Sw=new A.v(!0,B.j,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteMountainView headlineSmall",null,null,null,null) -B.TU=new A.v(!0,B.j,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteMountainView titleLarge",null,null,null,null) -B.RF=new A.v(!0,B.j,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteMountainView titleMedium",null,null,null,null) -B.Sc=new A.v(!0,B.j,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteMountainView titleSmall",null,null,null,null) -B.Tk=new A.v(!0,B.j,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteMountainView bodyLarge",null,null,null,null) -B.Rb=new A.v(!0,B.j,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteMountainView bodyMedium",null,null,null,null) -B.TB=new A.v(!0,B.E,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteMountainView bodySmall",null,null,null,null) -B.Tq=new A.v(!0,B.j,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteMountainView labelLarge",null,null,null,null) -B.Th=new A.v(!0,B.j,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteMountainView labelMedium",null,null,null,null) -B.ST=new A.v(!0,B.j,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.f,null,null,null,"whiteMountainView labelSmall",null,null,null,null) -B.U6=new A.eb(B.Sz,B.TQ,B.Tz,B.Ri,B.Ts,B.Sw,B.TU,B.RF,B.Sc,B.Tk,B.Rb,B.TB,B.Tq,B.Th,B.ST) -B.U7=new A.dP("Proceed",null,B.kP,B.bl,null,null,null,null,null) -B.U8=new A.dP("Sign Out",null,B.dx,null,null,null,null,null,null) -B.U9=new A.dP("Reset",null,null,null,null,null,null,null,null) -B.Ua=new A.dP("Developer Mode",null,null,null,null,null,null,null,null) -B.Ub=new A.dP("Settings",null,null,null,null,null,null,null,null) -B.zB=new A.v(!0,null,null,null,null,null,null,B.nr,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) -B.Uc=new A.dP("Sign in with GitHub",null,B.zB,null,null,null,null,null,null) -B.zG=new A.v(!0,B.k,null,null,null,null,16,B.bs,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) -B.Ud=new A.dP("Agent",null,B.zG,null,null,null,null,null,null) -B.Ue=new A.dP("User",null,B.zG,null,null,null,null,null,null) -B.R9=new A.v(!0,B.k,null,"Archivo",null,null,11,B.w,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) -B.Ug=new A.dP("Don't ask again",null,B.R9,null,null,null,null,null,null) -B.Ui=new A.dP("Update",null,null,null,null,null,null,null,null) -B.Uj=new A.dP("Sign in with Google",null,B.zB,null,null,null,null,null,null) -B.Ul=new A.dP("An error occurred",null,null,null,null,null,null,null,null) -B.Ra=new A.v(!0,B.k,null,"Archivo",null,null,16,B.fE,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) -B.Um=new A.dP("Continuous Mode",null,B.Ra,B.bl,null,null,null,null,null) -B.Uo=new A.dP("Cancel",null,B.kP,B.bl,null,null,null,null,null) -B.XL=new A.apj(0,"system") -B.Mv=new A.k(0.056,0.024) -B.Mi=new A.k(0.108,0.3085) -B.MB=new A.k(0.198,0.541) -B.Mn=new A.k(0.3655,1) -B.Mt=new A.k(0.5465,0.989) -B.zL=new A.F6(B.Mv,B.Mi,B.MB,B.Mn,B.Mt) -B.Mh=new A.k(0.05,0) -B.Ms=new A.k(0.133333,0.06) -B.Mf=new A.k(0.166666,0.4) -B.Ml=new A.k(0.208333,0.82) -B.Mr=new A.k(0.25,1) -B.Up=new A.F6(B.Mh,B.Ms,B.Mf,B.Ml,B.Mr) -B.zM=new A.F7(0) -B.Uq=new A.F7(0.5) -B.Ur=new A.F8(null) -B.cv=new A.TH(0,"clamp") -B.zN=new A.TH(3,"decal") -B.Us=new A.F9(null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) -B.kS=new A.TL(0,"TOP") -B.Ut=new A.TL(2,"CENTER") -B.kT=new A.apm(1,"LENGTH_LONG") -B.Uu=new A.Fa(null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) -B.c4=new A.TM(0.001,0.001) -B.zO=new A.Fb(!1,!1,!1,!1) -B.Uv=new A.Fb(!0,!1,!1,!0) -B.Uw=new A.Fb(!0,!0,!0,!0) -B.Ux=new A.Fd(null,null,null,null,null,null,null,null,null) -B.zP=new A.Fh(0,"identity") -B.zQ=new A.Fh(1,"transform2d") -B.hP=new A.Fh(2,"complex") -B.Uz=new A.tf(3,"left") -B.kU=new A.TU(0,"closedLoop") -B.UA=new A.TU(1,"leaveFlutterView") -B.UC=A.aB("m0") -B.UB=A.aB("m1") -B.UD=A.aB("i9") -B.UE=A.aB("li") -B.UF=A.aB("m_") -B.UG=A.aB("mD") -B.UH=A.aB("qs") -B.hQ=A.aB("ni") -B.UI=A.aB("yW") -B.UJ=A.aB("d1") -B.zS=A.aB("nt") -B.UK=A.aB("LA") -B.UL=A.aB("cB") -B.UM=A.aB("ko") -B.zT=A.aB("A3") -B.UN=A.aB("ut") -B.UO=A.aB("qh") -B.UP=A.aB("qi") -B.zU=A.aB("nH") -B.kV=A.aB("hC") -B.UQ=A.aB("aXj") -B.UR=A.aB("jt") -B.US=A.aB("uE") -B.UT=A.aB("a9j") -B.UU=A.aB("nP") -B.UV=A.aB("kB") -B.UW=A.aB("aa3") -B.UX=A.aB("aa4") -B.zV=A.aB("jv") -B.UY=A.aB("ms") -B.UZ=A.aB("adV") -B.V_=A.aB("adW") -B.V0=A.aB("adX") -B.V1=A.aB("b8E") -B.V2=A.aB("bB>") -B.V3=A.aB("jy") -B.kW=A.aB("hL") -B.kX=A.aB("aJf") -B.V4=A.aB("r4") -B.b_=A.aB("r9") -B.V5=A.aB("rj") -B.V6=A.aB("O") -B.V7=A.aB("vH") -B.hR=A.aB("jH") -B.V8=A.aB("kY") -B.V9=A.aB("or") -B.Va=A.aB("rC") -B.Vb=A.aB("mx") -B.Vc=A.aB("oC") -B.Vd=A.aB("jL") -B.Ve=A.aB("aE0") -B.Vf=A.aB("jO") -B.kY=A.aB("eI") -B.Vg=A.aB("mE") -B.Vh=A.aB("oQ") -B.Vi=A.aB("rZ") -B.Vj=A.aB("n") -B.Vk=A.aB("lj") -B.kZ=A.aB("hS") -B.Vl=A.aB("p2") -B.Vm=A.aB("apT") -B.Vn=A.aB("xb") -B.Vo=A.aB("apU") -B.Vp=A.aB("fM") -B.Vq=A.aB("p3") -B.Vr=A.aB("j2") -B.Vs=A.aB("Fq") -B.Vt=A.aB("j3") -B.Vu=A.aB("aEn") -B.l_=A.aB("jw") -B.Vv=A.aB("Fw") -B.Vw=A.aB("xs") -B.Vx=A.aB("k4<@>") -B.Vy=A.aB("lx") -B.Vz=A.aB("ly") -B.VA=A.aB("nO") -B.VB=A.aB("m2") -B.VC=A.aB("qp") -B.l0=A.aB("k_") -B.VD=A.aB("Aj") -B.VE=A.aB("qu") -B.VF=A.aB("qq") -B.VG=A.aB("qt") -B.VH=A.aB("aXi") -B.VI=A.aB("qj") -B.VJ=new A.jX(B.lN,B.lP) -B.VK=new A.TX(0,"undo") -B.VL=new A.TX(1,"redo") -B.VM=new A.xe(!1,!1) -B.VN=new A.TZ(0,"scope") -B.zW=new A.TZ(1,"previouslyFocusedChild") -B.VO=new A.da(11264,55297,B.p,t.O) -B.VP=new A.da(1425,1775,B.a4,t.O) -B.VQ=new A.da(1786,2303,B.a4,t.O) -B.VR=new A.da(192,214,B.p,t.O) -B.VS=new A.da(216,246,B.p,t.O) -B.VT=new A.da(2304,8191,B.p,t.O) -B.VU=new A.da(248,696,B.p,t.O) -B.VV=new A.da(55298,55299,B.a4,t.O) -B.VW=new A.da(55300,55353,B.p,t.O) -B.VX=new A.da(55354,55355,B.a4,t.O) -B.VY=new A.da(55356,56319,B.p,t.O) -B.VZ=new A.da(63744,64284,B.p,t.O) -B.W_=new A.da(64285,65023,B.a4,t.O) -B.W0=new A.da(65024,65135,B.p,t.O) -B.W1=new A.da(65136,65276,B.a4,t.O) -B.W2=new A.da(65277,65535,B.p,t.O) -B.W3=new A.da(65,90,B.p,t.O) -B.W4=new A.da(768,1424,B.p,t.O) -B.W5=new A.da(8206,8206,B.p,t.O) -B.W6=new A.da(8207,8207,B.a4,t.O) -B.W7=new A.da(97,122,B.p,t.O) -B.cw=new A.U9(!1) -B.zX=new A.th(B.e,0,B.q,B.e) -B.l2=new A.Ua(0,"up") -B.zY=new A.mR(0,0) -B.W8=new A.mR(-2,-2) -B.Z=new A.aqm(0,"start") -B.Wb=new A.Ul(0,"start") -B.Wc=new A.Ul(2,"center") -B.aB=new A.xr(0,"forward") -B.l8=new A.xr(1,"reverse") -B.Wd=new A.FR(0,"checkbox") -B.We=new A.FR(1,"radio") -B.Wf=new A.FR(2,"toggle") -B.XN=new A.ash(0,"material") -B.Wg=new A.FU(0,"inside") -B.Wh=new A.FU(1,"higher") -B.Wi=new A.FU(2,"lower") -B.Ef=new A.L(67108864) -B.HS=A.b(s([B.Ef,B.C]),t.t_) -B.Wj=new A.k1(B.HS) -B.Wk=new A.k1(null) -B.l9=new A.to(0,"backButton") -B.la=new A.to(1,"nextButton") -B.cU=new A.Gl(0,"ready") -B.f_=new A.Gm(0,"ready") -B.Wq=new A.Gl(1,"possible") -B.lc=new A.Gm(1,"possible") -B.hV=new A.Gl(2,"accepted") -B.hW=new A.Gm(2,"accepted") -B.R=new A.xK(0,"initial") -B.cV=new A.xK(1,"active") -B.Wr=new A.xK(2,"inactive") -B.A3=new A.xK(3,"defunct") -B.A4=new A.tq(0) -B.cx=new A.Gz(B.c2,"clickable") -B.Ws=new A.Gz(B.kG,"textable") -B.Wt=new A.WQ(1,0,"forward") -B.Wu=new A.WQ(-1,1,"backward") -B.Wv=new A.GE(1,"small") -B.Ww=new A.GE(2,"large") -B.A5=new A.GE(3,"extended") -B.ld=new A.tr(0,"ready") -B.hX=new A.tr(1,"possible") -B.A6=new A.tr(2,"accepted") -B.hY=new A.tr(3,"started") -B.Wx=new A.tr(4,"peaked") -B.f0=new A.GM(0,"pan") -B.hZ=new A.GM(1,"scale") -B.Wy=new A.GM(2,"rotate") -B.i_=new A.xS(0,"idle") -B.Wz=new A.xS(1,"absorb") -B.i0=new A.xS(2,"pull") -B.A7=new A.xS(3,"recede") -B.dz=new A.pg(0,"pressed") -B.dA=new A.pg(1,"hover") -B.A8=new A.pg(2,"focus") -B.XO=new A.aub(0,"standard") -B.V=new A.y_(0,"minWidth") -B.a_=new A.y_(1,"maxWidth") -B.ab=new A.y_(2,"minHeight") -B.aU=new A.y_(3,"maxHeight") -B.i1=new A.eP(0,"size") -B.A9=new A.eP(1,"orientation") -B.Aa=new A.eP(10,"accessibleNavigation") -B.WL=new A.eP(11,"invertColors") -B.Ab=new A.eP(12,"highContrast") -B.le=new A.eP(14,"boldText") -B.dB=new A.eP(15,"navigationMode") -B.Ac=new A.eP(16,"gestureSettings") -B.bP=new A.eP(2,"devicePixelRatio") -B.bQ=new A.eP(3,"textScaleFactor") -B.lf=new A.eP(4,"platformBrightness") -B.bo=new A.eP(5,"padding") -B.i2=new A.eP(6,"viewInsets") -B.Ad=new A.eP(8,"viewPadding") -B.lg=new A.pj(1/0,1/0,1/0,1/0,1/0,1/0) -B.WM=new A.dq(B.en,B.da) -B.fJ=new A.qW(1,"left") -B.WN=new A.dq(B.en,B.fJ) -B.fK=new A.qW(2,"right") -B.WO=new A.dq(B.en,B.fK) -B.WP=new A.dq(B.en,B.bY) -B.WQ=new A.dq(B.eo,B.da) -B.WR=new A.dq(B.eo,B.fJ) -B.WS=new A.dq(B.eo,B.fK) -B.WT=new A.dq(B.eo,B.bY) -B.WU=new A.dq(B.ep,B.da) -B.WV=new A.dq(B.ep,B.fJ) -B.WW=new A.dq(B.ep,B.fK) -B.WX=new A.dq(B.ep,B.bY) -B.WY=new A.dq(B.eq,B.da) -B.WZ=new A.dq(B.eq,B.fJ) -B.X_=new A.dq(B.eq,B.fK) -B.X0=new A.dq(B.eq,B.bY) -B.X1=new A.dq(B.uf,B.bY) -B.X2=new A.dq(B.ug,B.bY) -B.X3=new A.dq(B.uh,B.bY) -B.X4=new A.dq(B.ui,B.bY) -B.X7=new A.YD(null) -B.X6=new A.YE(null) -B.X5=new A.YG(null) -B.lh=new A.fR(1,"add") -B.Ae=new A.fR(10,"remove") -B.Xa=new A.fR(11,"popping") -B.Xb=new A.fR(12,"removing") -B.li=new A.fR(13,"dispose") -B.Xc=new A.fR(14,"disposing") -B.i3=new A.fR(15,"disposed") -B.Xd=new A.fR(2,"adding") -B.Af=new A.fR(3,"push") -B.Ag=new A.fR(4,"pushReplace") -B.Ah=new A.fR(5,"pushing") -B.Xe=new A.fR(6,"replace") -B.dC=new A.fR(7,"idle") -B.lj=new A.fR(8,"pop") -B.i4=new A.i0(0,"body") -B.i5=new A.i0(1,"appBar") -B.ll=new A.i0(10,"endDrawer") -B.i6=new A.i0(11,"statusBar") -B.i7=new A.i0(2,"bodyScrim") -B.i8=new A.i0(3,"bottomSheet") -B.dD=new A.i0(4,"snackBar") -B.i9=new A.i0(5,"materialBanner") -B.lm=new A.i0(6,"persistentFooter") -B.ln=new A.i0(7,"bottomNavigationBar") -B.ia=new A.i0(8,"floatingActionButton") -B.lo=new A.i0(9,"drawer") -B.f2=new A.yo(0,"ready") -B.f3=new A.yo(1,"possible") -B.Ai=new A.yo(2,"accepted") -B.ib=new A.yo(3,"started") -B.Xg=new A.k8(B.o,B.ai,B.cp,null,null) -B.P8=new A.Q(100,0) -B.Xh=new A.k8(B.P8,B.ai,B.cp,null,null) -B.i=new A.axA(0,"created") -B.cW=new A.a0a(0,"trailing") -B.Aj=new A.a0a(1,"leading") -B.lp=new A.yu(0,"idle") -B.Xi=new A.yu(1,"absorb") -B.lq=new A.yu(2,"pull") -B.lr=new A.yu(3,"recede") -B.XP=new A.axT(0,"material") -B.Xj=new A.axV(0,"material") -B.Ak=new A.yz(0,"first") -B.Xk=new A.yz(1,"middle") -B.Al=new A.yz(2,"last") -B.ls=new A.yz(3,"only") -B.Xl=new A.IZ(B.fq,B.bU) -B.ic=new A.J3(0,"leading") -B.id=new A.J3(1,"middle") -B.ie=new A.J3(2,"trailing") -B.Xm=new A.a17(0,"minimize") -B.Xn=new A.a17(1,"maximize") -B.lt=new A.iz(null,t.Wo)})();(function staticFields(){$.iA=null -$.bU=A.bg("canvasKit") -$.e6=A.bg("_instance") -$.aWe=A.m(t.N,A.ab("at")) -$.aKZ=!1 -$.aKY=null -$.cP=null -$.aO_=0 -$.ew=null -$.aF_=!1 -$.ji=A.b([],t.kZ) -$.aL_=0 -$.azM=0 -$.na=A.b([],A.ab("w")) -$.aBL=A.b([],t.nx) -$.aFy=null -$.aYy=A.bg("_instance") -$.anA=null -$.aLA=null -$.aFM=A.b([],t.cD) -$.aN9=B.F5 -$.pz=A.b([],t.l) -$.K5=B.mX -$.yG=null -$.aen=null -$.aDJ=null -$.aOY=null -$.aOS=null -$.aK1=null -$.aMD=null -$.aM3=0 -$.aF0=A.b([],t.no) -$.aFg=-1 -$.aER=-1 -$.aEQ=-1 -$.aFa=-1 -$.aNn=-1 -$.aDZ=null -$.abk=A.bg("_programCache") -$.aJJ=null -$.eF=null -$.E_=null -$.aNa=null -$.aKU=A.m(A.ab("EW"),A.ab("Tu")) -$.aAj=null -$.aNd=-1 -$.aNc=-1 -$.aNe="" -$.aNb="" -$.aNf=-1 -$.Ke=A.m(t.N,t.e) -$.aMV=null -$.auE=null -$.tN=A.b([],t.jl) -$.aK8=null -$.ai9=0 -$.R1=A.b4_() -$.aHm=null -$.aHl=null -$.aOl=null -$.aNG=null -$.aOT=null -$.aAT=null -$.aBk=null -$.aFz=null -$.aw8=A.b([],A.ab("w?>")) -$.yK=null -$.K6=null -$.K7=null -$.aF6=!1 -$.ai=B.as -$.aLr="" -$.aLs=null -$.aMX=A.m(t.N,t.xd) -$.nK=null -$.aCZ=null -$.aIt=null -$.aIs=null -$.Xd=A.m(t.N,t._8) -$.aNm=A.m(t.C_,t.e) -$.aY5=A.m(t.N,A.ab("uO")) -$.afM=A.m(t.N,A.ab("rf")) -$.afH=A.m(t.N,A.ab("Px")) -$.aDF=A.m(t.N,A.ab("iX>")) -$.aJs=A.m(t.N,A.ab("iX>")) -$.aJt=A.m(t.N,A.ab("iX>")) -$.aD7=null -$.aD8=A.m(t.N,A.ab("iX")) -$.aID=A.m(t.N,A.ab("iX")) -$.aIE=A.m(t.N,A.ab("iX")) -$.m4=null -$.C_=A.m(t.N,A.ab("BZ")) -$.aJu=!1 -$.aIG=function(){var s=t.z -return A.m(s,s)}() -$.aYf=A.b4A() -$.aDa=0 -$.NF=A.b([],A.ab("w")) -$.aJa=null -$.a34=0 -$.aA_=null -$.aEW=!1 -$.h5=null -$.aED=!0 -$.aEC=!1 -$.tb=A.b([],A.ab("w")) -$.io=null -$.RK=null -$.aJ9=0 -$.c6=null -$.al0=null -$.aHP=0 -$.aHN=A.m(t.S,t.I7) -$.aHO=A.m(t.I7,t.S) -$.alf=0 -$.fH=null -$.wU=null -$.aEd=null -$.aLa=1 -$.av=null -$.lR=null -$.uq=null -$.aM8=1 -$.aDP=-9007199254740992 -$.a56=!1 -$.aMS=null -$.azZ=null -$.alC=null -$.aYZ=A.m(t.S,A.ab("b8J")) -$.aJm=null -$.aJk=null -$.aJl=null})();(function lazyInitializers(){var s=hunkHelpers.lazyFinal,r=hunkHelpers.lazy -s($,"baM","cr",()=>{var q="navigator" -return A.b5s(A.aYQ(A.M(A.M(self.window,q),"vendor")),B.c.rK(A.aXx(A.M(self.window,q))))}) -s($,"bbw","e5",()=>A.b5u()) -s($,"b7z","aFX",()=>A.PM(8)) -s($,"baP","a3z",()=>A.M(A.M(A.al(),"ClipOp"),"Intersect")) -s($,"bbI","aRe",()=>{var q="FontSlant" -return A.b([A.M(A.M(A.al(),q),"Upright"),A.M(A.M(A.al(),q),"Italic")],t.J)}) -s($,"bbJ","aRf",()=>{var q="FontWeight" -return A.b([A.M(A.M(A.al(),q),"Thin"),A.M(A.M(A.al(),q),"ExtraLight"),A.M(A.M(A.al(),q),"Light"),A.M(A.M(A.al(),q),"Normal"),A.M(A.M(A.al(),q),"Medium"),A.M(A.M(A.al(),q),"SemiBold"),A.M(A.M(A.al(),q),"Bold"),A.M(A.M(A.al(),q),"ExtraBold"),A.M(A.M(A.al(),q),"ExtraBlack")],t.J)}) -s($,"bbU","aRp",()=>{var q="TextDirection" -return A.b([A.M(A.M(A.al(),q),"RTL"),A.M(A.M(A.al(),q),"LTR")],t.J)}) -s($,"bbR","aRn",()=>{var q="TextAlign" -return A.b([A.M(A.M(A.al(),q),"Left"),A.M(A.M(A.al(),q),"Right"),A.M(A.M(A.al(),q),"Center"),A.M(A.M(A.al(),q),"Justify"),A.M(A.M(A.al(),q),"Start"),A.M(A.M(A.al(),q),"End")],t.J)}) -s($,"bbV","aRq",()=>{var q="TextHeightBehavior" -return A.b([A.M(A.M(A.al(),q),"All"),A.M(A.M(A.al(),q),"DisableFirstAscent"),A.M(A.M(A.al(),q),"DisableLastDescent"),A.M(A.M(A.al(),q),"DisableAll")],t.J)}) -s($,"bbN","aRj",()=>{var q="RectHeightStyle" -return A.b([A.M(A.M(A.al(),q),"Tight"),A.M(A.M(A.al(),q),"Max"),A.M(A.M(A.al(),q),"IncludeLineSpacingMiddle"),A.M(A.M(A.al(),q),"IncludeLineSpacingTop"),A.M(A.M(A.al(),q),"IncludeLineSpacingBottom"),A.M(A.M(A.al(),q),"Strut")],t.J)}) -s($,"bbO","aRk",()=>{var q="RectWidthStyle" -return A.b([A.M(A.M(A.al(),q),"Tight"),A.M(A.M(A.al(),q),"Max")],t.J)}) -s($,"bbG","aGu",()=>A.b([A.M(A.M(A.al(),"ClipOp"),"Difference"),A.M(A.M(A.al(),"ClipOp"),"Intersect")],t.J)) -s($,"bbH","a3C",()=>{var q="FillType" -return A.b([A.M(A.M(A.al(),q),"Winding"),A.M(A.M(A.al(),q),"EvenOdd")],t.J)}) -s($,"bbL","aRh",()=>{var q="PathOp" -return A.b([A.M(A.M(A.al(),q),"Difference"),A.M(A.M(A.al(),q),"Intersect"),A.M(A.M(A.al(),q),"Union"),A.M(A.M(A.al(),q),"XOR"),A.M(A.M(A.al(),q),"ReverseDifference")],t.J)}) -s($,"bbF","aRd",()=>{var q="BlurStyle" -return A.b([A.M(A.M(A.al(),q),"Normal"),A.M(A.M(A.al(),q),"Solid"),A.M(A.M(A.al(),q),"Outer"),A.M(A.M(A.al(),q),"Inner")],t.J)}) -s($,"bbP","aRl",()=>{var q="StrokeCap" -return A.b([A.M(A.M(A.al(),q),"Butt"),A.M(A.M(A.al(),q),"Round"),A.M(A.M(A.al(),q),"Square")],t.J)}) -s($,"bbK","aRg",()=>{var q="PaintStyle" -return A.b([A.M(A.M(A.al(),q),"Fill"),A.M(A.M(A.al(),q),"Stroke")],t.J)}) -s($,"bbE","aGt",()=>{var q="BlendMode" -return A.b([A.M(A.M(A.al(),q),"Clear"),A.M(A.M(A.al(),q),"Src"),A.M(A.M(A.al(),q),"Dst"),A.M(A.M(A.al(),q),"SrcOver"),A.M(A.M(A.al(),q),"DstOver"),A.M(A.M(A.al(),q),"SrcIn"),A.M(A.M(A.al(),q),"DstIn"),A.M(A.M(A.al(),q),"SrcOut"),A.M(A.M(A.al(),q),"DstOut"),A.M(A.M(A.al(),q),"SrcATop"),A.M(A.M(A.al(),q),"DstATop"),A.M(A.M(A.al(),q),"Xor"),A.M(A.M(A.al(),q),"Plus"),A.M(A.M(A.al(),q),"Modulate"),A.M(A.M(A.al(),q),"Screen"),A.M(A.M(A.al(),q),"Overlay"),A.M(A.M(A.al(),q),"Darken"),A.M(A.M(A.al(),q),"Lighten"),A.M(A.M(A.al(),q),"ColorDodge"),A.M(A.M(A.al(),q),"ColorBurn"),A.M(A.M(A.al(),q),"HardLight"),A.M(A.M(A.al(),q),"SoftLight"),A.M(A.M(A.al(),q),"Difference"),A.M(A.M(A.al(),q),"Exclusion"),A.M(A.M(A.al(),q),"Multiply"),A.M(A.M(A.al(),q),"Hue"),A.M(A.M(A.al(),q),"Saturation"),A.M(A.M(A.al(),q),"Color"),A.M(A.M(A.al(),q),"Luminosity")],t.J)}) -s($,"bbQ","aRm",()=>{var q="StrokeJoin" -return A.b([A.M(A.M(A.al(),q),"Miter"),A.M(A.M(A.al(),q),"Round"),A.M(A.M(A.al(),q),"Bevel")],t.J)}) -s($,"bbW","aGw",()=>{var q="TileMode" -return A.b([A.M(A.M(A.al(),q),"Clamp"),A.M(A.M(A.al(),q),"Repeat"),A.M(A.M(A.al(),q),"Mirror"),A.M(A.M(A.al(),q),"Decal")],t.J)}) -s($,"baV","aGn",()=>{var q="FilterMode",p="MipmapMode",o="Linear" -return A.l([B.fB,{filter:A.M(A.M(A.al(),q),"Nearest"),mipmap:A.M(A.M(A.al(),p),"None")},B.fC,{filter:A.M(A.M(A.al(),q),o),mipmap:A.M(A.M(A.al(),p),"None")},B.nk,{filter:A.M(A.M(A.al(),q),o),mipmap:A.M(A.M(A.al(),p),o)},B.je,{B:A.aIo(0.3333333333333333),C:A.aIo(0.3333333333333333)}],A.ab("qw"),t.e)}) -s($,"bb5","aQP",()=>{var q=A.PM(2) -q[0]=0 -q[1]=1 -return q}) -s($,"bbD","aCd",()=>A.b6r(4)) -s($,"bbT","aRo",()=>{var q="DecorationStyle" -return A.b([A.M(A.M(A.al(),q),"Solid"),A.M(A.M(A.al(),q),"Double"),A.M(A.M(A.al(),q),"Dotted"),A.M(A.M(A.al(),q),"Dashed"),A.M(A.M(A.al(),q),"Wavy")],t.J)}) -s($,"bbS","aGv",()=>{var q="TextBaseline" -return A.b([A.M(A.M(A.al(),q),"Alphabetic"),A.M(A.M(A.al(),q),"Ideographic")],t.J)}) -s($,"bbM","aRi",()=>{var q="PlaceholderAlignment" -return A.b([A.M(A.M(A.al(),q),"Baseline"),A.M(A.M(A.al(),q),"AboveBaseline"),A.M(A.M(A.al(),q),"BelowBaseline"),A.M(A.M(A.al(),q),"Top"),A.M(A.M(A.al(),q),"Bottom"),A.M(A.M(A.al(),q),"Middle")],t.J)}) -r($,"b8z","aC4",()=>{var q=t.S,p=t.t -return new A.Oj(A.aXT(),A.m(q,A.ab("b87")),A.m(q,A.ab("ba0")),A.m(q,A.ab("ld")),A.aE(q),A.b([],p),A.b([],p),$.cX().giq(),A.m(q,A.ab("ca")))}) -r($,"baW","aQG",()=>{var q=A.aIP(new A.aA4()),p=self.window.FinalizationRegistry -p.toString -return A.b2L(p,q)}) -r($,"ber","aTw",()=>new A.agH()) -s($,"bb1","aQL",()=>A.aZu(B.Jg)) -s($,"bb0","aCb",()=>A.afh(A.aWr($.aQL()))) -s($,"baO","aQE",()=>A.aKJ(A.M(A.al(),"ParagraphBuilder"))) -s($,"b7D","aPc",()=>A.aML(A.K4(A.K4(A.K4(A.aOm(),"window"),"flutterCanvasKit"),"Paint"))) -s($,"b7C","aPb",()=>{var q=A.aML(A.K4(A.K4(A.K4(A.aOm(),"window"),"flutterCanvasKit"),"Paint")) -A.b03(q,0) -return q}) -s($,"bfd","aUb",()=>{var q=t.N,p=A.ab("+breaks,graphemes,words(xb,xb,xb)"),o=A.aDy(B.y6.a,q,p),n=A.aDy(B.y7.a,q,p) -return new A.ZI(A.aDy(B.y8.a,q,p),n,o)}) -s($,"bb_","aQK",()=>A.l([B.nH,A.aNW("grapheme"),B.nI,A.aNW("word")],A.ab("Bj"),t.e)) -s($,"bc4","aRx",()=>A.aNZ()) -s($,"bc3","aRw",()=>{var q=A.M(self.window,"trustedTypes") -q.toString -return A.b2P(q,"createPolicy",A.b0j("flutter-engine"),{createScriptURL:A.aIP(new A.aAt())})}) -r($,"bcs","aRU",()=>self.window.FinalizationRegistry!=null) -s($,"baX","aQH",()=>B.a9.cD(A.l(["type","fontsChange"],t.N,t.z))) -s($,"bdZ","aGH",()=>{var q=A.aNX() -A.aI5(q,"width",0) -A.aI5(q,"height",0) -A.aI0(A.M(q,"style"),"absolute") -return q}) -s($,"ban","aGj",()=>A.PM(4)) -r($,"bbC","aGs",()=>new A.aly()) -s($,"ba_","aQb",()=>A.aJB(A.b([0,1,2,2,3,0],t.t))) -s($,"bbX","aRr",()=>A.aFv(A.aFv(A.aFv(self.window,"Image"),"prototype"),"decode")!=null) -s($,"baL","aQC",()=>A.aWz("ftyp")) -s($,"beJ","a3I",()=>{var q=t.N,p=t.S -return new A.ahJ(A.m(q,t._8),A.m(p,t.e),A.aE(q),A.m(p,q))}) -s($,"bb6","aGo",()=>8589934852) -s($,"bb7","aQQ",()=>8589934853) -s($,"bb8","aGp",()=>8589934848) -s($,"bb9","aQR",()=>8589934849) -s($,"bbd","aGr",()=>8589934850) -s($,"bbe","aQU",()=>8589934851) -s($,"bbb","aGq",()=>8589934854) -s($,"bbc","aQT",()=>8589934855) -s($,"bbj","aQZ",()=>458978) -s($,"bbk","aR_",()=>458982) -s($,"bdX","aGF",()=>458976) -s($,"bdY","aGG",()=>458980) -s($,"bbn","aR2",()=>458977) -s($,"bbo","aR3",()=>458981) -s($,"bbl","aR0",()=>458979) -s($,"bbm","aR1",()=>458983) -s($,"bba","aQS",()=>A.l([$.aGo(),new A.aAa(),$.aQQ(),new A.aAb(),$.aGp(),new A.aAc(),$.aQR(),new A.aAd(),$.aGr(),new A.aAe(),$.aQU(),new A.aAf(),$.aGq(),new A.aAg(),$.aQT(),new A.aAh()],t.S,A.ab("J(kC)"))) -s($,"bb3","aQN",()=>124) -s($,"bb4","aQO",()=>59) -r($,"b8t","aC3",()=>new A.Oa(A.b([],A.ab("w<~(J)>")),A.aIm(self.window,"(forced-colors: active)"))) -s($,"b8b","bi",()=>{var q,p=A.aD1(),o=A.b5D(),n=A.aXV(0) -if(A.aXv($.aC3().b))n.saqq(!0) -p=A.aZL(n.bq(),!1,"/",p,B.an,!1,null,o) -o=A.aIm(self.window,"(prefers-color-scheme: dark)") -A.b5k() -o=new A.Ne(p,A.m(t.S,A.ab("qy")),A.m(t.K,A.ab("Ue")),o,B.as) -o.a6n() -p=$.aC3() -q=p.a -if(B.b.ga8(q))A.aMM(p.b,"addListener",p.gRN()) -q.push(o.gUb()) -o.a6t() -o.a6x() -A.aOW(o.gcL()) -o.a0B("flutter/lifecycle",B.k0.am2(A.aZx(B.A.j0(B.ik.I())).buffer),null) -return o}) -r($,"b9e","aPM",()=>new A.ak9()) -r($,"b3q","aQI",()=>A.K8()) -s($,"bbA","ad",()=>(A.aNS().gZU()!=null?A.aNS().gZU()==="canvaskit":A.b6f())?new A.LC():new A.acU()) -r($,"bct","aGA",()=>{var q=self.window.ImageDecoder -q=(q==null?null:q)!=null&&A.b4M()===B.ca -return q}) -s($,"beH","aTL",()=>A.amR(65532)) -s($,"b8w","aPw",()=>A.aG("[a-z0-9\\s]+",!1,!1,!1,!1)) -s($,"b8x","aPx",()=>A.aG("\\b\\d",!0,!1,!1,!1)) -s($,"bfx","tP",()=>A.aXr(A.Kc(0,0))) -s($,"b9r","aPS",()=>{var q=A.b5f("flt-ruler-host"),p=new A.RU(q),o=A.M(q,"style") -A.aI0(o,"fixed") -A.aXo(o,"hidden") -A.aXm(o,"hidden") -A.aXn(o,"0") -A.aXl(o,"0") -A.aXp(o,"0") -A.aXk(o,"0") -A.aMM(A.b5I().gaaG(),"appendChild",q) -A.aOW(p.gcL()) -return p}) -s($,"bc1","aGy",()=>A.b10(A.b([B.W3,B.W7,B.VR,B.VS,B.VU,B.W4,B.VP,B.VQ,B.VT,B.W5,B.W6,B.VO,B.VV,B.VW,B.VX,B.VY,B.VZ,B.W_,B.W0,B.W1,B.W2],A.ab("w>")),null,A.ab("lk?"))) -r($,"bfP","Kz",()=>A.b11("000a!E000b000cF000d!D000w!R000y!A0013!B0018!M001a!N001c001lO001m!L001n!M001t002iK002n!P002p003eK003p!F004q!K004t!I0051!K0053!L0056!K005c005yK0060006uK006w00k7K00ke00lbK00lc00ofG00og00okK00om00onK00oq00otK00ou!M00ov!K00p2!K00p3!L00p400p6K00p8!K00pa00ptK00pv00s5K00s700w1K00w300w9G00wa010vK010x011yK01210124K0126!K0127!L0128013cK013d!M013e!K013l014tG014v!G014x014yG01500151G0153!G015c0162C0167016aC016b!K016c!L016o016tI01700171M0174017eG017g!I017k018qK018r019bG019c019lO019n!O019o!M019q019rK019s!G019t01cjK01cl!K01cm01csG01ct!I01cv01d0G01d101d2K01d301d4G01d601d9G01da01dbK01dc01dlO01dm01doK01dr!K01e7!I01e8!K01e9!G01ea01f3K01f401fuG01fx01idK01ie01ioG01ip!K01j401jdO01je01kaK01kb01kjG01kk01klK01ko!M01kq!K01kt!G01kw01lhK01li01llG01lm!K01ln01lvG01lw!K01lx01lzG01m0!K01m101m5G01mo01ncK01nd01nfG01nk01nuK01pc01pwK01py01qfK01qr01r5G01r6!I01r701s3G01s401tlK01tm01toG01tp!K01tq01u7G01u8!K01u901ufG01ug01upK01uq01urG01uu01v3O01v501vkK01vl01vnG01vp01vwK01vz01w0K01w301woK01wq01wwK01wy!K01x201x5K01x8!G01x9!K01xa01xgG01xj01xkG01xn01xpG01xq!K01xz!G01y401y5K01y701y9K01ya01ybG01ye01ynO01yo01ypK01z0!K01z2!G01z501z7G01z901zeK01zj01zkK01zn0208K020a020gK020i020jK020l020mK020o020pK020s!G020u020yG02130214G02170219G021d!G021l021oK021q!K021y0227O02280229G022a022cK022d!G022p022rG022t0231K02330235K0237023sK023u0240K02420243K02450249K024c!G024d!K024e024lG024n024pG024r024tG024w!K025c025dK025e025fG025i025rO0261!K02620267G0269026bG026d026kK026n026oK026r027cK027e027kK027m027nK027p027tK027w!G027x!K027y0284G02870288G028b028dG028l028nG028s028tK028v028xK028y028zG0292029bO029d!K029u!G029v!K029x02a2K02a602a8K02aa02adK02ah02aiK02ak!K02am02anK02ar02asK02aw02ayK02b202bdK02bi02bmG02bq02bsG02bu02bxG02c0!K02c7!G02cm02cvO02dc02dgG02dh02doK02dq02dsK02du02egK02ei02exK02f1!K02f202f8G02fa02fcG02fe02fhG02fp02fqG02fs02fuK02g002g1K02g202g3G02g602gfO02gw!K02gx02gzG02h102h8K02ha02hcK02he02i0K02i202ibK02id02ihK02ik!G02il!K02im02isG02iu02iwG02iy02j1G02j902jaG02ji!K02jk02jlK02jm02jnG02jq02jzO02k102k2K02kg02kjG02kk02ksK02ku02kwK02ky02m2K02m302m4G02m5!K02m602mcG02me02mgG02mi02mlG02mm!K02ms02muK02mv!G02n302n5K02n602n7G02na02njO02nu02nzK02o102o3G02o502omK02oq02pdK02pf02pnK02pp!K02ps02pyK02q2!G02q702qcG02qe!G02qg02qnG02qu02r3O02r602r7G02sx!G02t002t6G02tj02tqG02ts02u1O02wh!G02wk02wsG02x402x9G02xc02xlO02yo!K02zc02zdG02zk02ztO0305!G0307!G0309!G030e030fG030g030nK030p031oK031t032cG032e032fG032g032kK032l032vG032x033wG0346!G036z037iG037k037tO03860389G038e038gG038i038kG038n038tG038x0390G039e039pG039r!G039s03a1O03a203a5G03a803b9K03bb!K03bh!K03bk03cqK03cs03m0K03m203m5K03m803meK03mg!K03mi03mlK03mo03nsK03nu03nxK03o003owK03oy03p1K03p403paK03pc!K03pe03phK03pk03pyK03q003rkK03rm03rpK03rs03tmK03tp03trG03uo03v3K03vk03xxK03y003y5K03y904fgK04fj04fzK04g0!R04g104gqK04gw04iyK04j204jcK04jk04jwK04jy04k1K04k204k4G04kg04kxK04ky04l0G04lc04ltK04lu04lvG04m804mkK04mm04moK04mq04mrG04ok04pfG04pp!G04ps04q1O04qz04r1G04r2!I04r404rdO04rk04u0K04u804ucK04ud04ueG04uf04vcK04vd!G04ve!K04vk04xhK04xs04ymK04yo04yzG04z404zfG04zq04zzO053k053tO054w055iK055j055nG0579057iG057k058cG058f!G058g058pO058w0595O059s05a8G05c005c4G05c505dfK05dg05dwG05dx05e3K05e805ehO05ez05f7G05fk05fmG05fn05ggK05gh05gtG05gu05gvK05gw05h5O05h605idK05ie05irG05j405k3K05k405knG05kw05l5O05l905lbK05lc05llO05lm05mlK05mo05mwK05n405oaK05od05ofK05ow05oyG05p005pkG05pl05poK05pp!G05pq05pvK05pw!G05px05pyK05pz05q1G05q2!K05q805vjK05vk05x5G05x705xbG05xc0651K06540659K065c066dK066g066lK066o066vK066x!K066z!K0671!K0673067xK0680069gK069i069oK069q!K069u069wK069y06a4K06a806abK06ae06ajK06ao06b0K06b606b8K06ba06bgK06bk06bqR06bs06buR06bw!G06bx!Q06by06bzI06c806c9N06ck!N06cn!L06co06cpF06cq06cuI06cv!P06db06dcP06dg!M06dw!P06e7!R06e806ecI06ee06enI06ep!K06f3!K06fk06fwK06hc06i8G06iq!K06iv!K06iy06j7K06j9!K06jd06jhK06jo!K06jq!K06js!K06ju06jxK06jz06k9K06kc06kfK06kl06kpK06ku!K06lc06mgK079207ahK08ow08q6K08q808riK08rk08v8K08vf08viK08vj08vlG08vm08vnK08w008x1K08x3!K08x9!K08xc08yvK08z3!K08zj!G08zk0906K090g090mK090o090uK090w0912K0914091aK091c091iK091k091qK091s091yK09200926K09280933G094f!K09hc!R09hh!K09ii09inG09ip09itJ09iz09j0K09ll09lmG09ln09loJ09ls09oaJ09oc09ofJ09ol09prK09pt09seK09sw09trK09v409vjJ0a1c0a2mJ0a2o0a53J0vls0wi4K0wk00wl9K0wlc0wssK0wsw0wtbK0wtc0wtlO0wtm0wtnK0wu80wviK0wvj0wvmG0wvo0wvxG0wvz0wwtK0wwu0wwvG0www0wz3K0wz40wz5G0wzs0x4vK0x4y0x56K0x6d0x6pK0x6q!G0x6r0x6tK0x6u!G0x6v0x6yK0x6z!G0x700x7mK0x7n0x7rG0x7w!G0x8g0x9vK0xa80xa9G0xaa0xbnK0xbo0xc5G0xcg0xcpO0xcw0xddG0xde0xdjK0xdn!K0xdp0xdqK0xdr!G0xds0xe1O0xe20xetK0xeu0xf1G0xf40xfqK0xfr0xg3G0xgg0xh8K0xhc0xhfG0xhg0xiqK0xir0xj4G0xjj!K0xjk0xjtO0xk5!G0xkg0xkpO0xkw0xm0K0xm10xmeG0xmo0xmqK0xmr!G0xms0xmzK0xn00xn1G0xn40xndO0xob0xodG0xps!G0xpu0xpwG0xpz0xq0G0xq60xq7G0xq9!G0xr40xreK0xrf0xrjG0xrm0xroK0xrp0xrqG0xs10xs6K0xs90xseK0xsh0xsmK0xsw0xt2K0xt40xtaK0xtc0xuxK0xv40xyaK0xyb0xyiG0xyk0xylG0xyo0xyxO0xz416lfK16ls16meK16mj16nvK1dkw1dl2K1dlf1dljK1dlp!C1dlq!G1dlr1dm0C1dm21dmeC1dmg1dmkC1dmm!C1dmo1dmpC1dmr1dmsC1dmu1dn3C1dn41dptK1dqr1e0tK1e1c1e33K1e361e4nK1e5s1e63K1e681e6nG1e6o!M1e6r!L1e6s!M1e741e7jG1e7n1e7oP1e8d1e8fP1e8g!M1e8i!N1e8k!M1e8l!L1e9c1e9gK1e9i1ed8K1edb!I1edj!N1edo!M1edq!N1eds1ee1O1ee2!L1ee3!M1ee91eeyK1ef3!P1ef51efuK1eg61ehpJ1ehq1ehrG1ehs1eimK1eiq1eivK1eiy1ej3K1ej61ejbK1eje1ejgK1ek91ekbI1ekg1ekrK1ekt1eliK1elk1em2K1em41em5K1em71emlK1emo1en1K1eo01ereK1etc1eusK1eyl!G1f281f30K1f341f4gK1f4w!G1f5s1f6nK1f711f7uK1f801f91K1f921f96G1f9c1fa5K1fa81fb7K1fbc1fbjK1fbl1fbpK1fcw1fh9K1fhc1fhlO1fhs1firK1fiw1fjvK1fk01fl3K1flc1fmrK1fr41fzqK1g001g0lK1g0w1g13K1g5c1g5hK1g5k!K1g5m1g6tK1g6v1g6wK1g70!K1g731g7pK1g801g8mK1g8w1g9qK1gbk1gc2K1gc41gc5K1gcg1gd1K1gdc1ge1K1gg01ghjK1ghq1ghrK1gjk!K1gjl1gjnG1gjp1gjqG1gjw1gjzG1gk01gk3K1gk51gk7K1gk91gl1K1gl41gl6G1glb!G1gm81gn0K1gn41gnwK1gow1gp3K1gp51gpwK1gpx1gpyG1gqo1gs5K1gsg1gt1K1gtc1gtuK1gu81gupK1gxs1gzsK1h1c1h2qK1h341h4iK1h4w1h5vK1h5w1h5zG1h681h6hO1hfk1hgpK1hgr1hgsG1hgw1hgxK1hj41hjwK1hk7!K1hkg1hl1K1hl21hlcG1ho01hokK1hpc1hpyK1hq81hqaG1hqb1hrrK1hrs1hs6G1ht21htbO1htr1htuG1htv1hv3K1hv41hveG1hvh!I1hvx!I1hw01hwoK1hww1hx5O1hxc1hxeG1hxf1hyeK1hyf1hysG1hyu1hz3O1hz8!K1hz91hzaG1hzb!K1hzk1i0iK1i0j!G1i0m!K1i0w1i0yG1i0z1i2aK1i2b1i2oG1i2p1i2sK1i2x1i30G1i321i33G1i341i3dO1i3e!K1i3g!K1i4g1i4xK1i4z1i5nK1i5o1i5zG1i66!G1i801i86K1i88!K1i8a1i8dK1i8f1i8tK1i8v1i94K1i9c1iamK1ian1iayG1ib41ibdO1ibk1ibnG1ibp1ibwK1ibz1ic0K1ic31icoK1icq1icwK1icy1iczK1id11id5K1id71id8G1id9!K1ida1idgG1idj1idkG1idn1idpG1ids!K1idz!G1ie51ie9K1iea1iebG1iee1iekG1ieo1iesG1iio1ik4K1ik51ikmG1ikn1ikqK1ikw1il5O1ila!G1ilb1ildK1im81injK1ink1io3G1io41io5K1io7!K1iog1iopO1itc1iumK1iun1iutG1iuw1iv4G1ivs1ivvK1ivw1ivxG1iww1iy7K1iy81iyoG1iys!K1iz41izdO1j0g1j1mK1j1n1j1zG1j20!K1j281j2hO1j4t1j57G1j5c1j5lO1jb41jcbK1jcc1jcqG1jfk1jhbK1jhc1jhlO1ji71jieK1jih!K1jik1jirK1jit1jiuK1jiw1jjjK1jjk1jjpG1jjr1jjsG1jjv1jjyG1jjz!K1jk0!G1jk1!K1jk21jk3G1jkg1jkpO1jmo1jmvK1jmy1jo0K1jo11jo7G1joa1jogG1joh!K1joj!K1jok!G1jpc!K1jpd1jpmG1jpn1jqqK1jqr1jqxG1jqy!K1jqz1jr2G1jrb!G1jrk!K1jrl1jrvG1jrw1jt5K1jt61jtlG1jtp!K1juo1jw8K1k3k1k3sK1k3u1k4uK1k4v1k52G1k541k5bG1k5c!K1k5s1k61O1k6q1k7jK1k7m1k87G1k891k8mG1kao1kauK1kaw1kaxK1kaz1kc0K1kc11kc6G1kca!G1kcc1kcdG1kcf1kclG1kcm!K1kcn!G1kcw1kd5O1kdc1kdhK1kdj1kdkK1kdm1kehK1kei1kemG1keo1kepG1ker1kevG1kew!K1kf41kfdO1ko01koiK1koj1komG1kts!K1kw01lllK1log1lriK1ls01lxfK1o1s1oviK1ovk1ovsI1s001sg6K1z401zjsK1zk01zkuK1zkw1zl5O1zo01zotK1zow1zp0G1zpc1zqnK1zqo1zquG1zr41zr7K1zrk1zrtO1zs31zsnK1zst1ztbK20cg20e7K20hs20juK20jz!G20k0!K20k120ljG20lr20luG20lv20m7K20o020o1K20o3!K20o4!G20og20ohG2dc0!J2dlw2dlzJ2fpc2fsaK2fsg2fssK2fsw2ft4K2ftc2ftlK2ftp2ftqG2fts2ftvI2jxh2jxlG2jxp2jxuG2jxv2jy2I2jy32jyaG2jyd2jyjG2jze2jzhG2k3m2k3oG2kg02kicK2kie2kkcK2kke2kkfK2kki!K2kkl2kkmK2kkp2kksK2kku2kl5K2kl7!K2kl92klfK2klh2kn9K2knb2kneK2knh2knoK2knq2knwK2kny2kopK2kor2kouK2kow2kp0K2kp2!K2kp62kpcK2kpe2kytK2kyw2kzkK2kzm2l0aK2l0c2l16K2l182l1wK2l1y2l2sK2l2u2l3iK2l3k2l4eK2l4g2l54K2l562l60K2l622l6qK2l6s2l6zK2l722l8fO2lmo2lo6G2lob2lpoG2lpx!G2lqc!G2lqz2lr3G2lr52lrjG2mtc2mtiG2mtk2mu0G2mu32mu9G2mub2mucG2mue2muiG2n0g2n1oK2n1s2n1yG2n1z2n25K2n282n2hO2n2m!K2ncw2ne3K2ne42ne7G2ne82nehO2oe82ojoK2ok02ok6G2olc2on7K2on82oneG2onf!K2onk2ontO2pkw2pkzK2pl12plrK2plt2pluK2plw!K2plz!K2pm12pmaK2pmc2pmfK2pmh!K2pmj!K2pmq!K2pmv!K2pmx!K2pmz!K2pn12pn3K2pn52pn6K2pn8!K2pnb!K2pnd!K2pnf!K2pnh!K2pnj!K2pnl2pnmK2pno!K2pnr2pnuK2pnw2po2K2po42po7K2po92pocK2poe!K2pog2popK2por2pp7K2ppd2ppfK2pph2pplK2ppn2pq3K2q7k2q89K2q8g2q95K2q9c2qa1K2qcm2qdbH2qrf2qrjG2sc02sc9Ojny9!Ijnz4jo1rGjo5cjobzG",231,B.J9,B.zZ,A.ab("dR"))) -s($,"b7s","aPa",()=>{var q=t.N -return new A.a5d(A.l(["birthday","bday","birthdayDay","bday-day","birthdayMonth","bday-month","birthdayYear","bday-year","countryCode","country","countryName","country-name","creditCardExpirationDate","cc-exp","creditCardExpirationMonth","cc-exp-month","creditCardExpirationYear","cc-exp-year","creditCardFamilyName","cc-family-name","creditCardGivenName","cc-given-name","creditCardMiddleName","cc-additional-name","creditCardName","cc-name","creditCardNumber","cc-number","creditCardSecurityCode","cc-csc","creditCardType","cc-type","email","email","familyName","family-name","fullStreetAddress","street-address","gender","sex","givenName","given-name","impp","impp","jobTitle","organization-title","language","language","middleName","middleName","name","name","namePrefix","honorific-prefix","nameSuffix","honorific-suffix","newPassword","new-password","nickname","nickname","oneTimeCode","one-time-code","organizationName","organization","password","current-password","photo","photo","postalCode","postal-code","streetAddressLevel1","address-level1","streetAddressLevel2","address-level2","streetAddressLevel3","address-level3","streetAddressLevel4","address-level4","streetAddressLine1","address-line1","streetAddressLine2","address-line2","streetAddressLine3","address-line3","telephoneNumber","tel","telephoneNumberAreaCode","tel-area-code","telephoneNumberCountryCode","tel-country-code","telephoneNumberExtension","tel-extension","telephoneNumberLocal","tel-local","telephoneNumberLocalPrefix","tel-local-prefix","telephoneNumberLocalSuffix","tel-local-suffix","telephoneNumberNational","tel-national","transactionAmount","transaction-amount","transactionCurrency","transaction-currency","url","url","username","username"],q,q))}) -s($,"bfy","a3J",()=>new A.ad8()) -s($,"bc_","aRt",()=>A.PM(4)) -s($,"bbY","aGx",()=>A.PM(16)) -s($,"bbZ","aRs",()=>A.aZh($.aGx())) -r($,"beN","eh",()=>A.aXs(A.M(self.window,"console"))) -s($,"bfO","cX",()=>A.aXY(0,$.bi())) -s($,"b7O","a3t",()=>A.aOk("_$dart_dartClosure")) -s($,"bex","aCh",()=>B.as.hi(new A.aBK())) -s($,"b9H","aPY",()=>A.mN(A.apS({ -toString:function(){return"$receiver$"}}))) -s($,"b9I","aPZ",()=>A.mN(A.apS({$method$:null, -toString:function(){return"$receiver$"}}))) -s($,"b9J","aQ_",()=>A.mN(A.apS(null))) -s($,"b9K","aQ0",()=>A.mN(function(){var $argumentsExpr$="$arguments$" -try{null.$method$($argumentsExpr$)}catch(q){return q.message}}())) -s($,"b9N","aQ3",()=>A.mN(A.apS(void 0))) -s($,"b9O","aQ4",()=>A.mN(function(){var $argumentsExpr$="$arguments$" -try{(void 0).$method$($argumentsExpr$)}catch(q){return q.message}}())) -s($,"b9M","aQ2",()=>A.mN(A.aLq(null))) -s($,"b9L","aQ1",()=>A.mN(function(){try{null.$method$}catch(q){return q.message}}())) -s($,"b9Q","aQ6",()=>A.mN(A.aLq(void 0))) -s($,"b9P","aQ5",()=>A.mN(function(){try{(void 0).$method$}catch(q){return q.message}}())) -s($,"bbt","aR7",()=>A.amR(254)) -s($,"bbf","aQV",()=>97) -s($,"bbr","aR5",()=>65) -s($,"bbg","aQW",()=>122) -s($,"bbs","aR6",()=>90) -s($,"bbh","aQX",()=>48) -s($,"ba5","aGf",()=>A.b1g()) -s($,"b8o","pK",()=>A.ab("ae").a($.aCh())) -s($,"b9Y","aQ9",()=>new A.aqd().$0()) -s($,"b9Z","aQa",()=>new A.aqc().$0()) -s($,"ba7","aGg",()=>A.aZw(A.jg(A.b([-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-1,-2,-2,-2,-2,-2,62,-2,62,-2,63,52,53,54,55,56,57,58,59,60,61,-2,-2,-2,-1,-2,-2,-2,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,-2,-2,-2,-2,63,-2,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,-2,-2,-2,-2,-2],t.t)))) -r($,"ba6","aQe",()=>A.aJC(0)) -s($,"b89","aPp",()=>A.l(["iso_8859-1:1987",B.bb,"iso-ir-100",B.bb,"iso_8859-1",B.bb,"iso-8859-1",B.bb,"latin1",B.bb,"l1",B.bb,"ibm819",B.bb,"cp819",B.bb,"csisolatin1",B.bb,"iso-ir-6",B.ba,"ansi_x3.4-1968",B.ba,"ansi_x3.4-1986",B.ba,"iso_646.irv:1991",B.ba,"iso646-us",B.ba,"us-ascii",B.ba,"us",B.ba,"ibm367",B.ba,"cp367",B.ba,"csascii",B.ba,"ascii",B.ba,"csutf8",B.A,"utf-8",B.A],t.N,A.ab("nL"))) -s($,"bav","aGk",()=>typeof process!="undefined"&&Object.prototype.toString.call(process)=="[object process]"&&process.platform=="win32") -s($,"baw","aQt",()=>A.aG("^[\\-\\.0-9A-Z_a-z~]*$",!0,!1,!1,!1)) -r($,"baY","aQJ",()=>new Error().stack!=void 0) -s($,"b7P","aPe",()=>A.aG("^([+-]?\\d{4,6})-?(\\d\\d)-?(\\d\\d)(?:[ T](\\d\\d)(?::?(\\d\\d)(?::?(\\d\\d)(?:[.,](\\d+))?)?)?( ?[zZ]| ?([-+])(\\d\\d)(?::?(\\d\\d))?)?)?$",!0,!1,!1,!1)) -s($,"baZ","eA",()=>A.pI(B.V6)) -s($,"b9u","a3v",()=>{A.b_a() -return $.ai9}) -s($,"bbB","aRc",()=>A.b38()) -s($,"b7J","aPd",()=>({})) -s($,"bak","aQo",()=>A.og(["A","ABBR","ACRONYM","ADDRESS","AREA","ARTICLE","ASIDE","AUDIO","B","BDI","BDO","BIG","BLOCKQUOTE","BR","BUTTON","CANVAS","CAPTION","CENTER","CITE","CODE","COL","COLGROUP","COMMAND","DATA","DATALIST","DD","DEL","DETAILS","DFN","DIR","DIV","DL","DT","EM","FIELDSET","FIGCAPTION","FIGURE","FONT","FOOTER","FORM","H1","H2","H3","H4","H5","H6","HEADER","HGROUP","HR","I","IFRAME","IMG","INPUT","INS","KBD","LABEL","LEGEND","LI","MAP","MARK","MENU","METER","NAV","NOBR","OL","OPTGROUP","OPTION","OUTPUT","P","PRE","PROGRESS","Q","S","SAMP","SECTION","SELECT","SMALL","SOURCE","SPAN","STRIKE","STRONG","SUB","SUMMARY","SUP","TABLE","TBODY","TD","TEXTAREA","TFOOT","TH","THEAD","TIME","TR","TRACK","TT","U","UL","VAR","VIDEO","WBR"],t.N)) -s($,"b83","aG0",()=>B.c.AZ(A.aCM(),"Opera",0)) -s($,"b82","aPm",()=>!$.aG0()&&B.c.AZ(A.aCM(),"Trident/",0)) -s($,"b81","aPl",()=>B.c.AZ(A.aCM(),"Firefox",0)) -s($,"b80","aPk",()=>"-"+$.aPn()+"-") -s($,"b84","aPn",()=>{if($.aPl())var q="moz" -else if($.aPm())q="ms" -else q=$.aG0()?"o":"webkit" -return q}) -s($,"baQ","yR",()=>A.b2U(A.aFh(self))) -s($,"bag","aGh",()=>A.aOk("_$dart_dartObject")) -s($,"baR","aGl",()=>function DartObject(a){this.o=a}) -s($,"b8a","eg",()=>A.rh(A.aJB(A.b([1],t.t)).buffer,0,null).getInt8(0)===1?B.ay:B.C6) -s($,"bcy","Kw",()=>new A.a5R(A.m(t.N,A.ab("mT")))) -r($,"bbz","aCc",()=>B.Cc) -s($,"beK","aGK",()=>new A.ahM()) -s($,"b9o","aPR",()=>new A.l7(A.alE())) -s($,"b8f","aPs",()=>new A.O()) -s($,"b8h","Ks",()=>new A.O()) -s($,"b8S","aG5",()=>new A.O()) -s($,"b8T","aG6",()=>new A.O()) -s($,"b8Z","aPE",()=>new A.O()) -s($,"b9G","aPX",()=>new A.O()) -s($,"b98","aPH",()=>new A.O()) -s($,"b9W","aC9",()=>new A.O()) -s($,"b9V","aC8",()=>new A.O()) -s($,"b9X","aQ8",()=>A.AH(A.ab("p6"))) -s($,"b7o","aP8",()=>A.AH(A.ab("L2"))) -s($,"b8U","aPD",()=>A.AH(A.ab("PH"))) -r($,"b8R","aG4",()=>new A.a9K()) -s($,"b8j","aG1",()=>new A.O()) -r($,"aY7","Kt",()=>{var q=new A.Pv() -q.yg($.aG1()) -return q}) -s($,"b8g","tO",()=>new A.O()) -s($,"b8k","aPt",()=>new A.O()) -r($,"b8i","aC2",()=>A.l(["core",A.aY8("app",null,"core")],t.N,A.ab("m3"))) -s($,"b7l","aP7",()=>A.AH(t.Gu)) -s($,"bcQ","aGB",()=>new A.VK()) -s($,"bbp","aR4",()=>A.iv(B.df,B.e,t.EP)) -s($,"bbi","aQY",()=>A.iv(B.e,B.Mm,t.EP)) -r($,"baf","aQk",()=>A.aWV(B.Wk,B.Wj)) -s($,"bcR","aGC",()=>new A.Mn()) -r($,"bal","aQp",()=>new A.YC(B.X7,B.R)) -s($,"bc0","aRu",()=>new A.aAq().$0()) -s($,"baN","aQD",()=>new A.azF().$0()) -r($,"b8l","jj",()=>$.aYf) -s($,"b7A","aO",()=>A.aT(0,null,!1,t.Nw)) -s($,"bae","Kv",()=>new A.pc(0,$.aQj())) -s($,"bad","aQj",()=>A.b43(0)) -s($,"baS","a3A",()=>A.oh(null,t.N)) -s($,"baT","aGm",()=>A.b0f()) -s($,"ba3","aQd",()=>A.aJC(8)) -s($,"b9t","aPT",()=>A.aG("^\\s*at ([^\\s]+).*$",!0,!1,!1,!1)) -s($,"bcW","aCf",()=>new A.Wc()) -s($,"bas","aQq",()=>A.iv(0.75,1,t.i)) -s($,"bat","aQr",()=>A.hA(B.Uq)) -s($,"b8B","aPy",()=>A.hA(B.aD)) -s($,"b8C","aPz",()=>A.hA(B.GK)) -r($,"b9D","aGb",()=>new A.Tx(new A.aoW(),A.bA()===B.aL)) -s($,"baF","aQB",()=>{var q=t.i -return A.b([A.aLp(A.iv(0,0.4,q).iT(A.hA(B.Ek)),0.166666,q),A.aLp(A.iv(0.4,1,q).iT(A.hA(B.En)),0.833334,q)],A.ab("w>"))}) -s($,"baE","a3y",()=>A.aLo($.aQB(),t.i)) -s($,"bax","aQu",()=>A.iv(0,1,t.i).iT(A.hA(B.GI))) -s($,"bay","aQv",()=>A.iv(1.1,1,t.i).iT($.a3y())) -s($,"baz","aQw",()=>A.iv(0.85,1,t.i).iT($.a3y())) -s($,"baA","aQx",()=>A.iv(0,0.6,t.PM).iT(A.hA(B.GQ))) -s($,"baB","aQy",()=>A.iv(1,0,t.i).iT(A.hA(B.GT))) -s($,"baD","aQA",()=>A.iv(1,1.05,t.i).iT($.a3y())) -s($,"baC","aQz",()=>A.iv(1,0.9,t.i).iT($.a3y())) -s($,"bab","aQh",()=>A.hA(B.GS).iT(A.hA(B.ki))) -s($,"bac","aQi",()=>A.hA(B.GR).iT(A.hA(B.ki))) -s($,"ba9","aQf",()=>A.hA(B.ki)) -s($,"baa","aQg",()=>A.hA(B.NS)) -s($,"bah","aQl",()=>A.iv(0.875,1,t.i).iT(A.hA(B.ce))) -s($,"bef","aGI",()=>new A.Pn()) -s($,"b9F","aPW",()=>A.b0M()) -s($,"b9E","aPV",()=>new A.WM(A.m(A.ab("xX"),t.we),5,A.ab("WM"))) -s($,"b8P","aC5",()=>A.aZv(4)) -r($,"b9a","aPI",()=>B.Du) -r($,"b9c","aPK",()=>{var q=null -return A.aLe(q,B.iE,q,q,q,q,"sans-serif",q,q,18,q,q,q,q,q,q,q,q,q,q,q)}) -r($,"b9b","aPJ",()=>{var q=null -return A.aDS(q,q,q,q,q,q,q,q,q,B.dw,B.p,q)}) -s($,"bau","aQs",()=>A.aZi()) -s($,"b9d","aPL",()=>A.amR(65532)) -s($,"bc2","aRv",()=>{var q=A.aZG() -q.saf(0,B.C) -return q}) -s($,"bbq","a3B",()=>98304) -s($,"b9j","aC7",()=>A.l6()) -s($,"b9i","aPO",()=>A.aJz(0)) -s($,"b9k","aPP",()=>A.aJz(0)) -s($,"b9l","aPQ",()=>A.aZj().a) -s($,"bf1","Ky",()=>{var q=t.N,p=t.L0 -return new A.ahE(A.m(q,A.ab("at")),A.m(q,p),A.m(q,p))}) -s($,"b7t","aFW",()=>new A.a5g()) -s($,"b8F","aPB",()=>A.l([4294967562,B.H0,4294967564,B.H1,4294967556,B.H2],t.S,t.SQ)) -s($,"b97","aC6",()=>new A.ain(A.b([],A.ab("w<~(jK)>")),A.m(t.v3,t.bd))) -s($,"b96","aPG",()=>{var q=t.v3 -return A.l([B.WV,A.cJ([B.dk],q),B.WW,A.cJ([B.dm],q),B.WX,A.cJ([B.dk,B.dm],q),B.WU,A.cJ([B.dk],q),B.WR,A.cJ([B.dj],q),B.WS,A.cJ([B.ev],q),B.WT,A.cJ([B.dj,B.ev],q),B.WQ,A.cJ([B.dj],q),B.WN,A.cJ([B.di],q),B.WO,A.cJ([B.eu],q),B.WP,A.cJ([B.di,B.eu],q),B.WM,A.cJ([B.di],q),B.WZ,A.cJ([B.dl],q),B.X_,A.cJ([B.ew],q),B.X0,A.cJ([B.dl,B.ew],q),B.WY,A.cJ([B.dl],q),B.X1,A.cJ([B.cM],q),B.X2,A.cJ([B.hg],q),B.X3,A.cJ([B.hf],q),B.X4,A.cJ([B.et],q)],A.ab("dq"),A.ab("ca"))}) -s($,"b95","aG7",()=>A.l([B.dk,B.ej,B.dm,B.h4,B.dj,B.bi,B.ev,B.bw,B.di,B.ei,B.eu,B.h3,B.dl,B.ek,B.ew,B.h5,B.cM,B.ef,B.hg,B.h1,B.hf,B.h2],t.v3,t.bd)) -s($,"b94","aPF",()=>{var q=A.m(t.v3,t.bd) -q.m(0,B.et,B.jG) -q.K(0,$.aG7()) -return q}) -s($,"b8e","aPr",()=>new A.Ns("\n",!1,"")) -s($,"b9C","cv",()=>{var q=$.a3x() -q=new A.Tv(q,A.cJ([q],A.ab("EX")),A.m(t.N,A.ab("aKz"))) -q.c=B.uu -q.ga7v().nw(q.gaeF()) -return q}) -s($,"bao","a3x",()=>new A.YV()) -s($,"b9S","aGc",()=>{var q=new A.TY() -q.a=B.MG -q.gakm().nw(q.gadz()) -return q}) -r($,"ba2","aQc",()=>{var q=A.ab("~(br)") -return A.l([B.UQ,A.aI_(!0),B.VH,A.aI_(!1),B.Ve,new A.RL(A.Co(q)),B.V5,new A.PU(A.Co(q)),B.Va,new A.QZ(A.Co(q)),B.zU,new A.Ah(!1,A.Co(q)),B.kY,A.b_B(),B.Vb,new A.R2(A.Co(q)),B.Vu,new A.Ui(A.Co(q))],t.A,t.od)}) -s($,"b7S","aC1",()=>{var q,p,o,n=t.vz,m=A.m(t.Vz,n) -for(q=A.ab("aS"),p=0;p<2;++p){o=B.jD[p] -m.K(0,A.l([A.eK(B.bh,!1,!1,!1,o),B.iS,A.eK(B.bh,!1,!0,!1,o),B.iW,A.eK(B.bh,!0,!1,!1,o),B.iU,A.eK(B.b1,!1,!1,!1,o),B.iT,A.eK(B.b1,!1,!0,!1,o),B.iX,A.eK(B.b1,!0,!1,!1,o),B.iV],q,n))}m.m(0,B.hE,B.dZ) -m.m(0,B.hF,B.e_) -m.m(0,B.eM,B.fz) -m.m(0,B.eN,B.fA) -m.m(0,B.yI,B.j6) -m.m(0,B.yJ,B.j7) -m.m(0,B.yK,B.ja) -m.m(0,B.yL,B.jb) -m.m(0,B.kx,B.cD) -m.m(0,B.ky,B.cE) -m.m(0,B.kz,B.fx) -m.m(0,B.kA,B.fy) -m.m(0,B.yM,B.nc) -m.m(0,B.yN,B.nd) -m.m(0,B.yO,B.na) -m.m(0,B.yP,B.nb) -m.m(0,B.yQ,B.j8) -m.m(0,B.yR,B.j9) -m.m(0,B.yS,B.FB) -m.m(0,B.yT,B.FC) -m.m(0,B.OP,B.Fz) -m.m(0,B.OQ,B.FA) -m.m(0,B.eK,B.ni) -m.m(0,B.eL,B.nj) -m.m(0,B.kw,B.jc) -m.m(0,B.kB,B.jd) -m.m(0,B.z_,B.mR) -m.m(0,B.z0,B.mQ) -m.m(0,B.z1,B.m6) -m.m(0,B.kC,B.m9) -m.m(0,B.P3,B.mb) -m.m(0,B.P4,B.m8) -m.m(0,B.hG,B.t) -m.m(0,B.hz,B.t) -return m}) -s($,"b7R","aFY",()=>$.aC1()) -s($,"b7T","aPf",()=>$.aFY()) -s($,"b7V","aPh",()=>{var q=A.qZ($.aC1(),t.Vz,t.vz) -q.m(0,B.hA,B.cD) -q.m(0,B.hB,B.cE) -q.m(0,B.hC,B.nc) -q.m(0,B.hD,B.nd) -return q}) -s($,"b7W","aFZ",()=>{var q,p,o,n=t.vz,m=A.m(t.Vz,n) -for(q=A.ab("aS"),p=0;p<2;++p){o=B.jD[p] -m.K(0,A.l([A.eK(B.bh,!1,!1,!1,o),B.iS,A.eK(B.bh,!0,!1,!1,o),B.iW,A.eK(B.bh,!1,!1,!0,o),B.iU,A.eK(B.b1,!1,!1,!1,o),B.iT,A.eK(B.b1,!0,!1,!1,o),B.iX,A.eK(B.b1,!1,!1,!0,o),B.iV],q,n))}m.m(0,B.hE,B.dZ) -m.m(0,B.hF,B.e_) -m.m(0,B.eM,B.fz) -m.m(0,B.eN,B.fA) -m.m(0,B.yI,B.j6) -m.m(0,B.yJ,B.j7) -m.m(0,B.yK,B.ja) -m.m(0,B.yL,B.jb) -m.m(0,B.kx,B.j8) -m.m(0,B.ky,B.j9) -m.m(0,B.kz,B.cD) -m.m(0,B.kA,B.cE) -m.m(0,B.yM,B.ng) -m.m(0,B.yN,B.nh) -m.m(0,B.yO,B.ne) -m.m(0,B.yP,B.nf) -m.m(0,B.yU,B.cD) -m.m(0,B.yV,B.cE) -m.m(0,B.yW,B.fx) -m.m(0,B.yX,B.fy) -m.m(0,B.OR,B.n8) -m.m(0,B.OS,B.n9) -m.m(0,B.OT,B.j4) -m.m(0,B.OU,B.j5) -m.m(0,B.P5,B.ma) -m.m(0,B.hA,B.yf) -m.m(0,B.hB,B.yg) -m.m(0,B.hC,B.j4) -m.m(0,B.hD,B.j5) -m.m(0,B.eK,B.km) -m.m(0,B.eL,B.ht) -m.m(0,B.kw,B.jc) -m.m(0,B.kB,B.jd) -m.m(0,B.z3,B.mR) -m.m(0,B.z4,B.mQ) -m.m(0,B.z5,B.m6) -m.m(0,B.z2,B.m9) -m.m(0,B.OX,B.mb) -m.m(0,B.OY,B.m8) -m.m(0,B.OZ,B.cE) -m.m(0,B.kC,B.cD) -m.m(0,B.P_,B.e_) -m.m(0,B.P0,B.dZ) -m.m(0,B.P1,B.fA) -m.m(0,B.P2,B.fz) -m.m(0,B.hG,B.t) -m.m(0,B.hz,B.t) -return m}) -s($,"b7U","aPg",()=>$.aFZ()) -s($,"b7Y","aPj",()=>{var q=A.qZ($.aC1(),t.Vz,t.vz) -q.m(0,B.eK,B.ni) -q.m(0,B.eL,B.nj) -q.m(0,B.hA,B.Fx) -q.m(0,B.hB,B.Fy) -q.m(0,B.hC,B.Fv) -q.m(0,B.hD,B.Fw) -q.m(0,B.yY,B.fx) -q.m(0,B.yZ,B.fy) -q.m(0,B.OV,B.na) -q.m(0,B.OW,B.nb) -return q}) -s($,"b7X","aPi",()=>{var q,p,o,n=t.vz,m=A.m(t.Vz,n) -for(q=A.ab("aS"),p=0;p<2;++p){o=B.jD[p] -m.K(0,A.l([A.eK(B.bh,!1,!1,!1,o),B.t,A.eK(B.b1,!1,!1,!1,o),B.t,A.eK(B.bh,!0,!1,!1,o),B.t,A.eK(B.b1,!0,!1,!1,o),B.t,A.eK(B.bh,!1,!0,!1,o),B.t,A.eK(B.b1,!1,!0,!1,o),B.t,A.eK(B.bh,!1,!1,!0,o),B.t,A.eK(B.b1,!1,!1,!0,o),B.t],q,n))}m.K(0,B.Lf) -m.m(0,B.z_,B.t) -m.m(0,B.z3,B.t) -m.m(0,B.z0,B.t) -m.m(0,B.z4,B.t) -m.m(0,B.z1,B.t) -m.m(0,B.z5,B.t) -m.m(0,B.kC,B.t) -m.m(0,B.z2,B.t) -return m}) -r($,"bam","aGi",()=>new A.YB(B.X5,B.R)) -s($,"baj","aQn",()=>A.iv(1,0,t.i)) -s($,"b8W","ke",()=>A.AH(t.uK)) -r($,"bar","aCa",()=>{var q=A.eu(null,t.u),p=A.aWC(t.H) -return new A.YA(B.hq,q,p)}) -s($,"bai","aQm",()=>A.d2(16667,0,0)) -s($,"b9f","aPN",()=>A.aKV(0.5,1.1,100)) -s($,"b7E","aC0",()=>A.aOx(0.78)/A.aOx(0.9)) -s($,"bdV","aT4",()=>new A.aBq()) -s($,"bdW","aT5",()=>new A.aBr()) -s($,"bfM","aUH",()=>new A.ahN(A.m(t.N,A.ab("at?(cB?)")))) -s($,"b8p","aG2",()=>new A.O()) -r($,"aYs","a3u",()=>{var q=new A.Pw() -q.yg($.aG2()) -return q}) -s($,"bdT","aT2",()=>B.ar.mU(B.A,t.Cm).mU(B.is,t.N)) -s($,"bdU","aT3",()=>A.aG("^(?
      [^\\.\\s]+)\\.(?[^\\.\\s]+)\\.(?[^\\.\\s]+)$",!0,!1,!1,!1)) -s($,"bdA","aSO",()=>{var q=t.z,p=A.m(q,q),o=t.N -q=A.m(q,q) -o=new A.Ob(p.hz(p,o,t.n),q.hz(q,o,o)) -$.aRC().N(0,o.gatE()) -return o}) -s($,"be0","aT7",()=>{var q,p="~contains~1~contains~0~contains~0~contains~2",o=null,n="~contains~1~contains~0~contains~0~contains~1",m="~contains~1~contains~0~contains~0~contains~0",l="~contains~0~contains~0",k="[A-Za-z\u0410-\u042f\u0430-\u044f\u0451\u0401_][A-Za-z\u0410-\u042f\u0430-\u044f\u0451\u0401_0-9]+",j="null \u0438\u0441\u0442\u0438\u043d\u0430 \u043b\u043e\u0436\u044c \u043d\u0435\u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u043e",i=t._,h=t.N,g=A.l([p,A.a(o,"'",o,o,o,A.b([A.a(o,"\\d{4}([\\.\\\\/:-]?\\d{2}){0,5}",o,o,"number",o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o)],i),o,"'",o,o,o,!0,!0,o,o,o,o,o,o,o,o,o,o,o,o,o),n,A.a(o,'"|\\|',o,o,"string",A.b([A.a(o,'""',o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o)],i),o,'"|$',o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o),m,A.a(o,"\\b\\d+(\\.\\d+)?",o,o,"number",o,o,o,o,o,o,o,o,o,o,o,o,o,0,o,o,o,o,o,o,o),l,A.a(o,"//",o,o,"comment",A.b([$.aq(),A.a(o,"(?:TODO|FIXME|NOTE|BUG|XXX):",o,o,"doctag",o,o,o,o,o,o,o,o,o,o,o,o,o,0,o,o,o,o,o,o,o)],i),o,"$",o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o)],h,t.n),f=A.l(["keyword","\u0434\u0430\u043b\u0435\u0435 \u0432\u043e\u0437\u0432\u0440\u0430\u0442 \u0432\u044b\u0437\u0432\u0430\u0442\u044c\u0438\u0441\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435 \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0434\u043b\u044f \u0435\u0441\u043b\u0438 \u0438 \u0438\u0437 \u0438\u043b\u0438 \u0438\u043d\u0430\u0447\u0435 \u0438\u043d\u0430\u0447\u0435\u0435\u0441\u043b\u0438 \u0438\u0441\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435 \u043a\u0430\u0436\u0434\u043e\u0433\u043e \u043a\u043e\u043d\u0435\u0446\u0435\u0441\u043b\u0438 \u043a\u043e\u043d\u0435\u0446\u043f\u043e\u043f\u044b\u0442\u043a\u0438 \u043a\u043e\u043d\u0435\u0446\u0446\u0438\u043a\u043b\u0430 \u043d\u0435 \u043d\u043e\u0432\u044b\u0439 \u043f\u0435\u0440\u0435\u0439\u0442\u0438 \u043f\u0435\u0440\u0435\u043c \u043f\u043e \u043f\u043e\u043a\u0430 \u043f\u043e\u043f\u044b\u0442\u043a\u0430 \u043f\u0440\u0435\u0440\u0432\u0430\u0442\u044c \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u044c \u0442\u043e\u0433\u0434\u0430 \u0446\u0438\u043a\u043b \u044d\u043a\u0441\u043f\u043e\u0440\u0442 ","built_in","\u0440\u0430\u0437\u0434\u0435\u043b\u0438\u0442\u0435\u043b\u044c\u0441\u0442\u0440\u0430\u043d\u0438\u0446 \u0440\u0430\u0437\u0434\u0435\u043b\u0438\u0442\u0435\u043b\u044c\u0441\u0442\u0440\u043e\u043a \u0441\u0438\u043c\u0432\u043e\u043b\u0442\u0430\u0431\u0443\u043b\u044f\u0446\u0438\u0438 ansitooem oemtoansi \u0432\u0432\u0435\u0441\u0442\u0438\u0432\u0438\u0434\u0441\u0443\u0431\u043a\u043e\u043d\u0442\u043e \u0432\u0432\u0435\u0441\u0442\u0438\u043f\u0435\u0440\u0435\u0447\u0438\u0441\u043b\u0435\u043d\u0438\u0435 \u0432\u0432\u0435\u0441\u0442\u0438\u043f\u0435\u0440\u0438\u043e\u0434 \u0432\u0432\u0435\u0441\u0442\u0438\u043f\u043b\u0430\u043d\u0441\u0447\u0435\u0442\u043e\u0432 \u0432\u044b\u0431\u0440\u0430\u043d\u043d\u044b\u0439\u043f\u043b\u0430\u043d\u0441\u0447\u0435\u0442\u043e\u0432 \u0434\u0430\u0442\u0430\u0433\u043e\u0434 \u0434\u0430\u0442\u0430\u043c\u0435\u0441\u044f\u0446 \u0434\u0430\u0442\u0430\u0447\u0438\u0441\u043b\u043e \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a\u0441\u0438\u0441\u0442\u0435\u043c\u044b \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435\u0432\u0441\u0442\u0440\u043e\u043a\u0443 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435\u0438\u0437\u0441\u0442\u0440\u043e\u043a\u0438 \u043a\u0430\u0442\u0430\u043b\u043e\u0433\u0438\u0431 \u043a\u0430\u0442\u0430\u043b\u043e\u0433\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u043a\u043e\u0434\u0441\u0438\u043c\u0432 \u043a\u043e\u043d\u0433\u043e\u0434\u0430 \u043a\u043e\u043d\u0435\u0446\u043f\u0435\u0440\u0438\u043e\u0434\u0430\u0431\u0438 \u043a\u043e\u043d\u0435\u0446\u0440\u0430\u0441\u0441\u0447\u0438\u0442\u0430\u043d\u043d\u043e\u0433\u043e\u043f\u0435\u0440\u0438\u043e\u0434\u0430\u0431\u0438 \u043a\u043e\u043d\u0435\u0446\u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u043e\u0433\u043e\u0438\u043d\u0442\u0435\u0440\u0432\u0430\u043b\u0430 \u043a\u043e\u043d\u043a\u0432\u0430\u0440\u0442\u0430\u043b\u0430 \u043a\u043e\u043d\u043c\u0435\u0441\u044f\u0446\u0430 \u043a\u043e\u043d\u043d\u0435\u0434\u0435\u043b\u0438 \u043b\u043e\u0433 \u043b\u043e\u043310 \u043c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u043e\u0435\u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e\u0441\u0443\u0431\u043a\u043e\u043d\u0442\u043e \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435\u0438\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441\u0430 \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435\u043d\u0430\u0431\u043e\u0440\u0430\u043f\u0440\u0430\u0432 \u043d\u0430\u0437\u043d\u0430\u0447\u0438\u0442\u044c\u0432\u0438\u0434 \u043d\u0430\u0437\u043d\u0430\u0447\u0438\u0442\u044c\u0441\u0447\u0435\u0442 \u043d\u0430\u0439\u0442\u0438\u0441\u0441\u044b\u043b\u043a\u0438 \u043d\u0430\u0447\u0430\u043b\u043e\u043f\u0435\u0440\u0438\u043e\u0434\u0430\u0431\u0438 \u043d\u0430\u0447\u0430\u043b\u043e\u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u043e\u0433\u043e\u0438\u043d\u0442\u0435\u0440\u0432\u0430\u043b\u0430 \u043d\u0430\u0447\u0433\u043e\u0434\u0430 \u043d\u0430\u0447\u043a\u0432\u0430\u0440\u0442\u0430\u043b\u0430 \u043d\u0430\u0447\u043c\u0435\u0441\u044f\u0446\u0430 \u043d\u0430\u0447\u043d\u0435\u0434\u0435\u043b\u0438 \u043d\u043e\u043c\u0435\u0440\u0434\u043d\u044f\u0433\u043e\u0434\u0430 \u043d\u043e\u043c\u0435\u0440\u0434\u043d\u044f\u043d\u0435\u0434\u0435\u043b\u0438 \u043d\u043e\u043c\u0435\u0440\u043d\u0435\u0434\u0435\u043b\u0438\u0433\u043e\u0434\u0430 \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0430\u043e\u0436\u0438\u0434\u0430\u043d\u0438\u044f \u043e\u0441\u043d\u043e\u0432\u043d\u043e\u0439\u0436\u0443\u0440\u043d\u0430\u043b\u0440\u0430\u0441\u0447\u0435\u0442\u043e\u0432 \u043e\u0441\u043d\u043e\u0432\u043d\u043e\u0439\u043f\u043b\u0430\u043d\u0441\u0447\u0435\u0442\u043e\u0432 \u043e\u0441\u043d\u043e\u0432\u043d\u043e\u0439\u044f\u0437\u044b\u043a \u043e\u0447\u0438\u0441\u0442\u0438\u0442\u044c\u043e\u043a\u043d\u043e\u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043f\u0435\u0440\u0438\u043e\u0434\u0441\u0442\u0440 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c\u0432\u0440\u0435\u043c\u044f\u0442\u0430 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c\u0434\u0430\u0442\u0443\u0442\u0430 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0442\u0430 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f\u043e\u0442\u0431\u043e\u0440\u0430 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c\u043f\u043e\u0437\u0438\u0446\u0438\u044e\u0442\u0430 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c\u043f\u0443\u0441\u0442\u043e\u0435\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c\u0442\u0430 \u043f\u0440\u0435\u0444\u0438\u043a\u0441\u0430\u0432\u0442\u043e\u043d\u0443\u043c\u0435\u0440\u0430\u0446\u0438\u0438 \u043f\u0440\u043e\u043f\u0438\u0441\u044c \u043f\u0443\u0441\u0442\u043e\u0435\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0440\u0430\u0437\u043c \u0440\u0430\u0437\u043e\u0431\u0440\u0430\u0442\u044c\u043f\u043e\u0437\u0438\u0446\u0438\u044e\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430 \u0440\u0430\u0441\u0441\u0447\u0438\u0442\u0430\u0442\u044c\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u044b\u043d\u0430 \u0440\u0430\u0441\u0441\u0447\u0438\u0442\u0430\u0442\u044c\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u044b\u043f\u043e \u0441\u0438\u043c\u0432 \u0441\u043e\u0437\u0434\u0430\u0442\u044c\u043e\u0431\u044a\u0435\u043a\u0442 \u0441\u0442\u0430\u0442\u0443\u0441\u0432\u043e\u0437\u0432\u0440\u0430\u0442\u0430 \u0441\u0442\u0440\u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e\u0441\u0442\u0440\u043e\u043a \u0441\u0444\u043e\u0440\u043c\u0438\u0440\u043e\u0432\u0430\u0442\u044c\u043f\u043e\u0437\u0438\u0446\u0438\u044e\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430 \u0441\u0447\u0435\u0442\u043f\u043e\u043a\u043e\u0434\u0443 \u0442\u0435\u043a\u0443\u0449\u0435\u0435\u0432\u0440\u0435\u043c\u044f \u0442\u0438\u043f\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f \u0442\u0438\u043f\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f\u0441\u0442\u0440 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c\u0442\u0430\u043d\u0430 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c\u0442\u0430\u043f\u043e \u0444\u0438\u043a\u0441\u0448\u0430\u0431\u043b\u043e\u043d \u0448\u0430\u0431\u043b\u043e\u043d acos asin atan base64\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 base64\u0441\u0442\u0440\u043e\u043a\u0430 cos exp log log10 pow sin sqrt tan xml\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 xml\u0441\u0442\u0440\u043e\u043a\u0430 xml\u0442\u0438\u043f xml\u0442\u0438\u043f\u0437\u043d\u0447 \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0435\u043e\u043a\u043d\u043e \u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u044b\u0439\u0440\u0435\u0436\u0438\u043c \u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u044b\u0439\u0440\u0435\u0436\u0438\u043c\u0440\u0430\u0437\u0434\u0435\u043b\u0435\u043d\u0438\u044f\u0434\u0430\u043d\u043d\u044b\u0445 \u0431\u0443\u043b\u0435\u0432\u043e \u0432\u0432\u0435\u0441\u0442\u0438\u0434\u0430\u0442\u0443 \u0432\u0432\u0435\u0441\u0442\u0438\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0432\u0432\u0435\u0441\u0442\u0438\u0441\u0442\u0440\u043e\u043a\u0443 \u0432\u0432\u0435\u0441\u0442\u0438\u0447\u0438\u0441\u043b\u043e \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044c\u0447\u0442\u0435\u043d\u0438\u044fxml \u0432\u043e\u043f\u0440\u043e\u0441 \u0432\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0432\u0440\u0435\u0433 \u0432\u044b\u0433\u0440\u0443\u0437\u0438\u0442\u044c\u0436\u0443\u0440\u043d\u0430\u043b\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438 \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c\u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0443\u043e\u043f\u043e\u0432\u0435\u0449\u0435\u043d\u0438\u044f \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c\u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0443\u043f\u0440\u0430\u0432\u0434\u043e\u0441\u0442\u0443\u043f\u0430 \u0432\u044b\u0447\u0438\u0441\u043b\u0438\u0442\u044c \u0433\u043e\u0434 \u0434\u0430\u043d\u043d\u044b\u0435\u0444\u043e\u0440\u043c\u044b\u0432\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0434\u0430\u0442\u0430 \u0434\u0435\u043d\u044c \u0434\u0435\u043d\u044c\u0433\u043e\u0434\u0430 \u0434\u0435\u043d\u044c\u043d\u0435\u0434\u0435\u043b\u0438 \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c\u043c\u0435\u0441\u044f\u0446 \u0437\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u0442\u044c\u0434\u0430\u043d\u043d\u044b\u0435\u0434\u043b\u044f\u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u0437\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u0442\u044c\u0440\u0430\u0431\u043e\u0442\u0443\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0437\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u044c\u0440\u0430\u0431\u043e\u0442\u0443\u0441\u0438\u0441\u0442\u0435\u043c\u044b \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c\u0432\u043d\u0435\u0448\u043d\u044e\u044e\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u0443 \u0437\u0430\u043a\u0440\u044b\u0442\u044c\u0441\u043f\u0440\u0430\u0432\u043a\u0443 \u0437\u0430\u043f\u0438\u0441\u0430\u0442\u044cjson \u0437\u0430\u043f\u0438\u0441\u0430\u0442\u044cxml \u0437\u0430\u043f\u0438\u0441\u0430\u0442\u044c\u0434\u0430\u0442\u0443json \u0437\u0430\u043f\u0438\u0441\u044c\u0436\u0443\u0440\u043d\u0430\u043b\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438 \u0437\u0430\u043f\u043e\u043b\u043d\u0438\u0442\u044c\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f\u0441\u0432\u043e\u0439\u0441\u0442\u0432 \u0437\u0430\u043f\u0440\u043e\u0441\u0438\u0442\u044c\u0440\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u0438\u0435\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0437\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u0437\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c\u0441\u0438\u0441\u0442\u0435\u043c\u0443 \u0437\u0430\u0444\u0438\u043a\u0441\u0438\u0440\u043e\u0432\u0430\u0442\u044c\u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044e \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435\u0432\u0434\u0430\u043d\u043d\u044b\u0435\u0444\u043e\u0440\u043c\u044b \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435\u0432\u0441\u0442\u0440\u043e\u043a\u0443\u0432\u043d\u0443\u0442\u0440 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435\u0432\u0444\u0430\u0439\u043b \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435\u0437\u0430\u043f\u043e\u043b\u043d\u0435\u043d\u043e \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435\u0438\u0437\u0441\u0442\u0440\u043e\u043a\u0438\u0432\u043d\u0443\u0442\u0440 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435\u0438\u0437\u0444\u0430\u0439\u043b\u0430 \u0438\u0437xml\u0442\u0438\u043f\u0430 \u0438\u043c\u043f\u043e\u0440\u0442\u043c\u043e\u0434\u0435\u043b\u0438xdto \u0438\u043c\u044f\u043a\u043e\u043c\u043f\u044c\u044e\u0442\u0435\u0440\u0430 \u0438\u043c\u044f\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0438\u043d\u0438\u0446\u0438\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c\u043f\u0440\u0435\u0434\u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u043d\u044b\u0435\u0434\u0430\u043d\u043d\u044b\u0435 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f\u043e\u0431\u043e\u0448\u0438\u0431\u043a\u0435 \u043a\u0430\u0442\u0430\u043b\u043e\u0433\u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0438\u043c\u043e\u0431\u0438\u043b\u044c\u043d\u043e\u0433\u043e\u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u043a\u0430\u0442\u0430\u043b\u043e\u0433\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0445\u0444\u0430\u0439\u043b\u043e\u0432 \u043a\u0430\u0442\u0430\u043b\u043e\u0433\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u043e\u0432 \u043a\u0430\u0442\u0430\u043b\u043e\u0433\u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u044b \u043a\u043e\u0434\u0438\u0440\u043e\u0432\u0430\u0442\u044c\u0441\u0442\u0440\u043e\u043a\u0443 \u043a\u043e\u0434\u043b\u043e\u043a\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438\u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u043e\u043d\u043d\u043e\u0439\u0431\u0430\u0437\u044b \u043a\u043e\u0434\u0441\u0438\u043c\u0432\u043e\u043b\u0430 \u043a\u043e\u043c\u0430\u043d\u0434\u0430\u0441\u0438\u0441\u0442\u0435\u043c\u044b \u043a\u043e\u043d\u0435\u0446\u0433\u043e\u0434\u0430 \u043a\u043e\u043d\u0435\u0446\u0434\u043d\u044f \u043a\u043e\u043d\u0435\u0446\u043a\u0432\u0430\u0440\u0442\u0430\u043b\u0430 \u043a\u043e\u043d\u0435\u0446\u043c\u0435\u0441\u044f\u0446\u0430 \u043a\u043e\u043d\u0435\u0446\u043c\u0438\u043d\u0443\u0442\u044b \u043a\u043e\u043d\u0435\u0446\u043d\u0435\u0434\u0435\u043b\u0438 \u043a\u043e\u043d\u0435\u0446\u0447\u0430\u0441\u0430 \u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044f\u0431\u0430\u0437\u044b\u0434\u0430\u043d\u043d\u044b\u0445\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0430\u0434\u0438\u043d\u0430\u043c\u0438\u0447\u0435\u0441\u043a\u0438 \u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044f\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0430 \u043a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c\u0434\u0430\u043d\u043d\u044b\u0435\u0444\u043e\u0440\u043c\u044b \u043a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c\u0444\u0430\u0439\u043b \u043a\u0440\u0430\u0442\u043a\u043e\u0435\u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u0435\u043e\u0448\u0438\u0431\u043a\u0438 \u043b\u0435\u0432 \u043c\u0430\u043a\u0441 \u043c\u0435\u0441\u0442\u043d\u043e\u0435\u0432\u0440\u0435\u043c\u044f \u043c\u0435\u0441\u044f\u0446 \u043c\u0438\u043d \u043c\u0438\u043d\u0443\u0442\u0430 \u043c\u043e\u043d\u043e\u043f\u043e\u043b\u044c\u043d\u044b\u0439\u0440\u0435\u0436\u0438\u043c \u043d\u0430\u0439\u0442\u0438 \u043d\u0430\u0439\u0442\u0438\u043d\u0435\u0434\u043e\u043f\u0443\u0441\u0442\u0438\u043c\u044b\u0435\u0441\u0438\u043c\u0432\u043e\u043b\u044bxml \u043d\u0430\u0439\u0442\u0438\u043e\u043a\u043d\u043e\u043f\u043e\u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u043e\u043d\u043d\u043e\u0439\u0441\u0441\u044b\u043b\u043a\u0435 \u043d\u0430\u0439\u0442\u0438\u043f\u043e\u043c\u0435\u0447\u0435\u043d\u043d\u044b\u0435\u043d\u0430\u0443\u0434\u0430\u043b\u0435\u043d\u0438\u0435 \u043d\u0430\u0439\u0442\u0438\u043f\u043e\u0441\u0441\u044b\u043b\u043a\u0430\u043c \u043d\u0430\u0439\u0442\u0438\u0444\u0430\u0439\u043b\u044b \u043d\u0430\u0447\u0430\u043b\u043e\u0433\u043e\u0434\u0430 \u043d\u0430\u0447\u0430\u043b\u043e\u0434\u043d\u044f \u043d\u0430\u0447\u0430\u043b\u043e\u043a\u0432\u0430\u0440\u0442\u0430\u043b\u0430 \u043d\u0430\u0447\u0430\u043b\u043e\u043c\u0435\u0441\u044f\u0446\u0430 \u043d\u0430\u0447\u0430\u043b\u043e\u043c\u0438\u043d\u0443\u0442\u044b \u043d\u0430\u0447\u0430\u043b\u043e\u043d\u0435\u0434\u0435\u043b\u0438 \u043d\u0430\u0447\u0430\u043b\u043e\u0447\u0430\u0441\u0430 \u043d\u0430\u0447\u0430\u0442\u044c\u0437\u0430\u043f\u0440\u043e\u0441\u0440\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u0438\u044f\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u043d\u0430\u0447\u0430\u0442\u044c\u0437\u0430\u043f\u0443\u0441\u043a\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u043d\u0430\u0447\u0430\u0442\u044c\u043a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435\u0444\u0430\u0439\u043b\u0430 \u043d\u0430\u0447\u0430\u0442\u044c\u043f\u0435\u0440\u0435\u043c\u0435\u0449\u0435\u043d\u0438\u0435\u0444\u0430\u0439\u043b\u0430 \u043d\u0430\u0447\u0430\u0442\u044c\u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435\u0432\u043d\u0435\u0448\u043d\u0435\u0439\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b \u043d\u0430\u0447\u0430\u0442\u044c\u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435\u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u044f\u0440\u0430\u0431\u043e\u0442\u044b\u0441\u043a\u0440\u0438\u043f\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u0435\u0439 \u043d\u0430\u0447\u0430\u0442\u044c\u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435\u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u044f\u0440\u0430\u0431\u043e\u0442\u044b\u0441\u0444\u0430\u0439\u043b\u0430\u043c\u0438 \u043d\u0430\u0447\u0430\u0442\u044c\u043f\u043e\u0438\u0441\u043a\u0444\u0430\u0439\u043b\u043e\u0432 \u043d\u0430\u0447\u0430\u0442\u044c\u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u0435\u043a\u0430\u0442\u0430\u043b\u043e\u0433\u0430\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0445\u0444\u0430\u0439\u043b\u043e\u0432 \u043d\u0430\u0447\u0430\u0442\u044c\u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u0435\u043a\u0430\u0442\u0430\u043b\u043e\u0433\u0430\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u043e\u0432 \u043d\u0430\u0447\u0430\u0442\u044c\u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u0435\u0440\u0430\u0431\u043e\u0447\u0435\u0433\u043e\u043a\u0430\u0442\u0430\u043b\u043e\u0433\u0430\u0434\u0430\u043d\u043d\u044b\u0445\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u043d\u0430\u0447\u0430\u0442\u044c\u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u0435\u0444\u0430\u0439\u043b\u043e\u0432 \u043d\u0430\u0447\u0430\u0442\u044c\u043f\u043e\u043c\u0435\u0449\u0435\u043d\u0438\u0435\u0444\u0430\u0439\u043b\u0430 \u043d\u0430\u0447\u0430\u0442\u044c\u043f\u043e\u043c\u0435\u0449\u0435\u043d\u0438\u0435\u0444\u0430\u0439\u043b\u043e\u0432 \u043d\u0430\u0447\u0430\u0442\u044c\u0441\u043e\u0437\u0434\u0430\u043d\u0438\u0435\u0434\u0432\u043e\u0438\u0447\u043d\u044b\u0445\u0434\u0430\u043d\u043d\u044b\u0445\u0438\u0437\u0444\u0430\u0439\u043b\u0430 \u043d\u0430\u0447\u0430\u0442\u044c\u0441\u043e\u0437\u0434\u0430\u043d\u0438\u0435\u043a\u0430\u0442\u0430\u043b\u043e\u0433\u0430 \u043d\u0430\u0447\u0430\u0442\u044c\u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044e \u043d\u0430\u0447\u0430\u0442\u044c\u0443\u0434\u0430\u043b\u0435\u043d\u0438\u0435\u0444\u0430\u0439\u043b\u043e\u0432 \u043d\u0430\u0447\u0430\u0442\u044c\u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0443\u0432\u043d\u0435\u0448\u043d\u0435\u0439\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b \u043d\u0430\u0447\u0430\u0442\u044c\u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0443\u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u044f\u0440\u0430\u0431\u043e\u0442\u044b\u0441\u043a\u0440\u0438\u043f\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u0435\u0439 \u043d\u0430\u0447\u0430\u0442\u044c\u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0443\u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u044f\u0440\u0430\u0431\u043e\u0442\u044b\u0441\u0444\u0430\u0439\u043b\u0430\u043c\u0438 \u043d\u0435\u0434\u0435\u043b\u044f\u0433\u043e\u0434\u0430 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e\u0441\u0442\u044c\u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u044f\u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u044f \u043d\u043e\u043c\u0435\u0440\u0441\u0435\u0430\u043d\u0441\u0430\u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u043e\u043d\u043d\u043e\u0439\u0431\u0430\u0437\u044b \u043d\u043e\u043c\u0435\u0440\u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u044f\u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u043e\u043d\u043d\u043e\u0439\u0431\u0430\u0437\u044b \u043d\u0440\u0435\u0433 \u043d\u0441\u0442\u0440 \u043e\u0431\u043d\u043e\u0432\u0438\u0442\u044c\u0438\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441 \u043e\u0431\u043d\u043e\u0432\u0438\u0442\u044c\u043d\u0443\u043c\u0435\u0440\u0430\u0446\u0438\u044e\u043e\u0431\u044a\u0435\u043a\u0442\u043e\u0432 \u043e\u0431\u043d\u043e\u0432\u0438\u0442\u044c\u043f\u043e\u0432\u0442\u043e\u0440\u043d\u043e\u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u043c\u044b\u0435\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0430\u043f\u0440\u0435\u0440\u044b\u0432\u0430\u043d\u0438\u044f\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u043e\u0431\u044a\u0435\u0434\u0438\u043d\u0438\u0442\u044c\u0444\u0430\u0439\u043b\u044b \u043e\u043a\u0440 \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u0435\u043e\u0448\u0438\u0431\u043a\u0438 \u043e\u043f\u043e\u0432\u0435\u0441\u0442\u0438\u0442\u044c \u043e\u043f\u043e\u0432\u0435\u0441\u0442\u0438\u0442\u044c\u043e\u0431\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0438 \u043e\u0442\u043a\u043b\u044e\u0447\u0438\u0442\u044c\u043e\u0431\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u043a\u0437\u0430\u043f\u0440\u043e\u0441\u0430\u043d\u0430\u0441\u0442\u0440\u043e\u0435\u043a\u043a\u043b\u0438\u0435\u043d\u0442\u0430\u043b\u0438\u0446\u0435\u043d\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u043e\u0442\u043a\u043b\u044e\u0447\u0438\u0442\u044c\u043e\u0431\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u043a\u043e\u0436\u0438\u0434\u0430\u043d\u0438\u044f \u043e\u0442\u043a\u043b\u044e\u0447\u0438\u0442\u044c\u043e\u0431\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u043a\u043e\u043f\u043e\u0432\u0435\u0449\u0435\u043d\u0438\u044f \u043e\u0442\u043a\u0440\u044b\u0442\u044c\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u043e\u0442\u043a\u0440\u044b\u0442\u044c\u0438\u043d\u0434\u0435\u043a\u0441\u0441\u043f\u0440\u0430\u0432\u043a\u0438 \u043e\u0442\u043a\u0440\u044b\u0442\u044c\u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435\u0441\u043f\u0440\u0430\u0432\u043a\u0438 \u043e\u0442\u043a\u0440\u044b\u0442\u044c\u0441\u043f\u0440\u0430\u0432\u043a\u0443 \u043e\u0442\u043a\u0440\u044b\u0442\u044c\u0444\u043e\u0440\u043c\u0443 \u043e\u0442\u043a\u0440\u044b\u0442\u044c\u0444\u043e\u0440\u043c\u0443\u043c\u043e\u0434\u0430\u043b\u044c\u043d\u043e \u043e\u0442\u043c\u0435\u043d\u0438\u0442\u044c\u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044e \u043e\u0447\u0438\u0441\u0442\u0438\u0442\u044c\u0436\u0443\u0440\u043d\u0430\u043b\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438 \u043e\u0447\u0438\u0441\u0442\u0438\u0442\u044c\u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u043e\u0447\u0438\u0441\u0442\u0438\u0442\u044c\u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b\u0434\u043e\u0441\u0442\u0443\u043f\u0430 \u043f\u0435\u0440\u0435\u0439\u0442\u0438\u043f\u043e\u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u043e\u043d\u043d\u043e\u0439\u0441\u0441\u044b\u043b\u043a\u0435 \u043f\u0435\u0440\u0435\u043c\u0435\u0441\u0442\u0438\u0442\u044c\u0444\u0430\u0439\u043b \u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0438\u0442\u044c\u0432\u043d\u0435\u0448\u043d\u044e\u044e\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u0443 \u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0438\u0442\u044c\u043e\u0431\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u043a\u0437\u0430\u043f\u0440\u043e\u0441\u0430\u043d\u0430\u0441\u0442\u0440\u043e\u0435\u043a\u043a\u043b\u0438\u0435\u043d\u0442\u0430\u043b\u0438\u0446\u0435\u043d\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0438\u0442\u044c\u043e\u0431\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u043a\u043e\u0436\u0438\u0434\u0430\u043d\u0438\u044f \u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0438\u0442\u044c\u043e\u0431\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u043a\u043e\u043f\u043e\u0432\u0435\u0449\u0435\u043d\u0438\u044f \u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0438\u0442\u044c\u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u0435\u0440\u0430\u0431\u043e\u0442\u044b\u0441\u043a\u0440\u0438\u043f\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u0435\u0439 \u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0438\u0442\u044c\u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u0435\u0440\u0430\u0431\u043e\u0442\u044b\u0441\u0444\u0430\u0439\u043b\u0430\u043c\u0438 \u043f\u043e\u0434\u0440\u043e\u0431\u043d\u043e\u0435\u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u0435\u043e\u0448\u0438\u0431\u043a\u0438 \u043f\u043e\u043a\u0430\u0437\u0430\u0442\u044c\u0432\u0432\u043e\u0434\u0434\u0430\u0442\u044b \u043f\u043e\u043a\u0430\u0437\u0430\u0442\u044c\u0432\u0432\u043e\u0434\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f \u043f\u043e\u043a\u0430\u0437\u0430\u0442\u044c\u0432\u0432\u043e\u0434\u0441\u0442\u0440\u043e\u043a\u0438 \u043f\u043e\u043a\u0430\u0437\u0430\u0442\u044c\u0432\u0432\u043e\u0434\u0447\u0438\u0441\u043b\u0430 \u043f\u043e\u043a\u0430\u0437\u0430\u0442\u044c\u0432\u043e\u043f\u0440\u043e\u0441 \u043f\u043e\u043a\u0430\u0437\u0430\u0442\u044c\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u043f\u043e\u043a\u0430\u0437\u0430\u0442\u044c\u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e\u043e\u0431\u043e\u0448\u0438\u0431\u043a\u0435 \u043f\u043e\u043a\u0430\u0437\u0430\u0442\u044c\u043d\u0430\u043a\u0430\u0440\u0442\u0435 \u043f\u043e\u043a\u0430\u0437\u0430\u0442\u044c\u043e\u043f\u043e\u0432\u0435\u0449\u0435\u043d\u0438\u0435\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u043f\u043e\u043a\u0430\u0437\u0430\u0442\u044c\u043f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0436\u0434\u0435\u043d\u0438\u0435 \u043f\u043e\u043b\u043d\u043e\u0435\u0438\u043c\u044f\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044ccom\u043e\u0431\u044a\u0435\u043a\u0442 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044cxml\u0442\u0438\u043f \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c\u0430\u0434\u0440\u0435\u0441\u043f\u043e\u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044e \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0443\u0441\u0435\u0430\u043d\u0441\u043e\u0432 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c\u0432\u0440\u0435\u043c\u044f\u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u044f\u0441\u043f\u044f\u0449\u0435\u0433\u043e\u0441\u0435\u0430\u043d\u0441\u0430 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c\u0432\u0440\u0435\u043c\u044f\u0437\u0430\u0441\u044b\u043f\u0430\u043d\u0438\u044f\u043f\u0430\u0441\u0441\u0438\u0432\u043d\u043e\u0433\u043e\u0441\u0435\u0430\u043d\u0441\u0430 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c\u0432\u0440\u0435\u043c\u044f\u043e\u0436\u0438\u0434\u0430\u043d\u0438\u044f\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0438\u0434\u0430\u043d\u043d\u044b\u0445 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c\u0434\u0430\u043d\u043d\u044b\u0435\u0432\u044b\u0431\u043e\u0440\u0430 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c\u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0439\u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043a\u043b\u0438\u0435\u043d\u0442\u0430\u043b\u0438\u0446\u0435\u043d\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c\u0434\u043e\u043f\u0443\u0441\u0442\u0438\u043c\u044b\u0435\u043a\u043e\u0434\u044b\u043b\u043e\u043a\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c\u0434\u043e\u043f\u0443\u0441\u0442\u0438\u043c\u044b\u0435\u0447\u0430\u0441\u043e\u0432\u044b\u0435\u043f\u043e\u044f\u0441\u0430 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c\u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a\u043a\u043b\u0438\u0435\u043d\u0442\u0441\u043a\u043e\u0433\u043e\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c\u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a\u0441\u0438\u0441\u0442\u0435\u043c\u044b \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f\u043e\u0442\u0431\u043e\u0440\u0430\u0436\u0443\u0440\u043d\u0430\u043b\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c\u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440\u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0438 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c\u0438\u0437\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e\u0433\u043e\u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0430 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c\u0438\u043c\u044f\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e\u0433\u043e\u0444\u0430\u0439\u043b\u0430 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c\u0438\u043c\u044f\u043a\u043b\u0438\u0435\u043d\u0442\u0430\u043b\u0438\u0446\u0435\u043d\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c\u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e\u044d\u043a\u0440\u0430\u043d\u043e\u0432\u043a\u043b\u0438\u0435\u043d\u0442\u0430 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c\u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435\u0436\u0443\u0440\u043d\u0430\u043b\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c\u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435\u0441\u043e\u0431\u044b\u0442\u0438\u044f\u0436\u0443\u0440\u043d\u0430\u043b\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c\u043a\u0440\u0430\u0442\u043a\u0438\u0439\u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c\u043c\u0430\u043a\u0435\u0442\u043e\u0444\u043e\u0440\u043c\u043b\u0435\u043d\u0438\u044f \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c\u043c\u0430\u0441\u043a\u0443\u0432\u0441\u0435\u0444\u0430\u0439\u043b\u044b \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c\u043c\u0430\u0441\u043a\u0443\u0432\u0441\u0435\u0444\u0430\u0439\u043b\u044b\u043a\u043b\u0438\u0435\u043d\u0442\u0430 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c\u043c\u0430\u0441\u043a\u0443\u0432\u0441\u0435\u0444\u0430\u0439\u043b\u044b\u0441\u0435\u0440\u0432\u0435\u0440\u0430 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c\u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435\u043f\u043e\u0430\u0434\u0440\u0435\u0441\u0443 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c\u043c\u0438\u043d\u0438\u043c\u0430\u043b\u044c\u043d\u0443\u044e\u0434\u043b\u0438\u043d\u0443\u043f\u0430\u0440\u043e\u043b\u0435\u0439\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c\u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u043e\u043d\u043d\u0443\u044e\u0441\u0441\u044b\u043b\u043a\u0443 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c\u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u043e\u043d\u043d\u0443\u044e\u0441\u0441\u044b\u043b\u043a\u0443\u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u043e\u043d\u043d\u043e\u0439\u0431\u0430\u0437\u044b \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c\u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435\u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0438\u0431\u0430\u0437\u044b\u0434\u0430\u043d\u043d\u044b\u0445 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c\u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435\u043f\u0440\u0435\u0434\u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u043d\u044b\u0445\u0434\u0430\u043d\u043d\u044b\u0445\u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u043e\u043d\u043d\u043e\u0439\u0431\u0430\u0437\u044b \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c\u043e\u0431\u0449\u0438\u0439\u043c\u0430\u043a\u0435\u0442 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c\u043e\u0431\u0449\u0443\u044e\u0444\u043e\u0440\u043c\u0443 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c\u043e\u043a\u043d\u0430 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c\u043e\u043f\u0435\u0440\u0430\u0442\u0438\u0432\u043d\u0443\u044e\u043e\u0442\u043c\u0435\u0442\u043a\u0443\u0432\u0440\u0435\u043c\u0435\u043d\u0438 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c\u043e\u0442\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435\u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0433\u043e\u0440\u0435\u0436\u0438\u043c\u0430 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c\u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b\u0444\u0443\u043d\u043a\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0445\u043e\u043f\u0446\u0438\u0439\u0438\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441\u0430 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c\u043f\u043e\u043b\u043d\u043e\u0435\u0438\u043c\u044f\u043f\u0440\u0435\u0434\u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u043d\u043e\u0433\u043e\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c\u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f\u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u043e\u043d\u043d\u044b\u0445\u0441\u0441\u044b\u043b\u043e\u043a \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c\u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0443\u0441\u043b\u043e\u0436\u043d\u043e\u0441\u0442\u0438\u043f\u0430\u0440\u043e\u043b\u0435\u0439\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c\u0440\u0430\u0437\u0434\u0435\u043b\u0438\u0442\u0435\u043b\u044c\u043f\u0443\u0442\u0438 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c\u0440\u0430\u0437\u0434\u0435\u043b\u0438\u0442\u0435\u043b\u044c\u043f\u0443\u0442\u0438\u043a\u043b\u0438\u0435\u043d\u0442\u0430 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c\u0440\u0430\u0437\u0434\u0435\u043b\u0438\u0442\u0435\u043b\u044c\u043f\u0443\u0442\u0438\u0441\u0435\u0440\u0432\u0435\u0440\u0430 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c\u0441\u0435\u0430\u043d\u0441\u044b\u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u043e\u043d\u043d\u043e\u0439\u0431\u0430\u0437\u044b \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c\u0441\u043a\u043e\u0440\u043e\u0441\u0442\u044c\u043a\u043b\u0438\u0435\u043d\u0442\u0441\u043a\u043e\u0433\u043e\u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u044f \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c\u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u044f\u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u043e\u043d\u043d\u043e\u0439\u0431\u0430\u0437\u044b \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c\u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c\u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0438\u0435\u043e\u0431\u044a\u0435\u043a\u0442\u0430\u0438\u0444\u043e\u0440\u043c\u044b \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c\u0441\u043e\u0441\u0442\u0430\u0432\u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u043e\u0433\u043e\u0438\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441\u0430odata \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0443\u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f\u0431\u0430\u0437\u044b\u0434\u0430\u043d\u043d\u044b\u0445 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c\u0442\u0435\u043a\u0443\u0449\u0438\u0439\u0441\u0435\u0430\u043d\u0441\u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u043e\u043d\u043d\u043e\u0439\u0431\u0430\u0437\u044b \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c\u0444\u0430\u0439\u043b \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c\u0444\u0430\u0439\u043b\u044b \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c\u0444\u043e\u0440\u043c\u0443 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c\u0444\u0443\u043d\u043a\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u0443\u044e\u043e\u043f\u0446\u0438\u044e \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c\u0444\u0443\u043d\u043a\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u0443\u044e\u043e\u043f\u0446\u0438\u044e\u0438\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441\u0430 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c\u0447\u0430\u0441\u043e\u0432\u043e\u0439\u043f\u043e\u044f\u0441\u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u043e\u043d\u043d\u043e\u0439\u0431\u0430\u0437\u044b \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438\u043e\u0441 \u043f\u043e\u043c\u0435\u0441\u0442\u0438\u0442\u044c\u0432\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e\u0435\u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0435 \u043f\u043e\u043c\u0435\u0441\u0442\u0438\u0442\u044c\u0444\u0430\u0439\u043b \u043f\u043e\u043c\u0435\u0441\u0442\u0438\u0442\u044c\u0444\u0430\u0439\u043b\u044b \u043f\u0440\u0430\u0432 \u043f\u0440\u0430\u0432\u043e\u0434\u043e\u0441\u0442\u0443\u043f\u0430 \u043f\u0440\u0435\u0434\u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u043d\u043e\u0435\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u0435\u043a\u043e\u0434\u0430\u043b\u043e\u043a\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u0435\u043f\u0435\u0440\u0438\u043e\u0434\u0430 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u0435\u043f\u0440\u0430\u0432\u0430 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u0435\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u0435\u0441\u043e\u0431\u044b\u0442\u0438\u044f\u0436\u0443\u0440\u043d\u0430\u043b\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u0435\u0447\u0430\u0441\u043e\u0432\u043e\u0433\u043e\u043f\u043e\u044f\u0441\u0430 \u043f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0436\u0434\u0435\u043d\u0438\u0435 \u043f\u0440\u0435\u043a\u0440\u0430\u0442\u0438\u0442\u044c\u0440\u0430\u0431\u043e\u0442\u0443\u0441\u0438\u0441\u0442\u0435\u043c\u044b \u043f\u0440\u0438\u0432\u0438\u043b\u0435\u0433\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439\u0440\u0435\u0436\u0438\u043c \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u044c\u0432\u044b\u0437\u043e\u0432 \u043f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044cjson \u043f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044cxml \u043f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c\u0434\u0430\u0442\u0443json \u043f\u0443\u0441\u0442\u0430\u044f\u0441\u0442\u0440\u043e\u043a\u0430 \u0440\u0430\u0431\u043e\u0447\u0438\u0439\u043a\u0430\u0442\u0430\u043b\u043e\u0433\u0434\u0430\u043d\u043d\u044b\u0445\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0440\u0430\u0437\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u0442\u044c\u0434\u0430\u043d\u043d\u044b\u0435\u0434\u043b\u044f\u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u0440\u0430\u0437\u0434\u0435\u043b\u0438\u0442\u044c\u0444\u0430\u0439\u043b \u0440\u0430\u0437\u043e\u0440\u0432\u0430\u0442\u044c\u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u0435\u0441\u0432\u043d\u0435\u0448\u043d\u0438\u043c\u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u043e\u043c\u0434\u0430\u043d\u043d\u044b\u0445 \u0440\u0430\u0441\u043a\u043e\u0434\u0438\u0440\u043e\u0432\u0430\u0442\u044c\u0441\u0442\u0440\u043e\u043a\u0443 \u0440\u043e\u043b\u044c\u0434\u043e\u0441\u0442\u0443\u043f\u043d\u0430 \u0441\u0435\u043a\u0443\u043d\u0434\u0430 \u0441\u0438\u0433\u043d\u0430\u043b \u0441\u0438\u043c\u0432\u043e\u043b \u0441\u043a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c\u0436\u0443\u0440\u043d\u0430\u043b\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438 \u0441\u043c\u0435\u0449\u0435\u043d\u0438\u0435\u043b\u0435\u0442\u043d\u0435\u0433\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u0438 \u0441\u043c\u0435\u0449\u0435\u043d\u0438\u0435\u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u043e\u0433\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u0438 \u0441\u043e\u0435\u0434\u0438\u043d\u0438\u0442\u044c\u0431\u0443\u0444\u0435\u0440\u044b\u0434\u0432\u043e\u0438\u0447\u043d\u044b\u0445\u0434\u0430\u043d\u043d\u044b\u0445 \u0441\u043e\u0437\u0434\u0430\u0442\u044c\u043a\u0430\u0442\u0430\u043b\u043e\u0433 \u0441\u043e\u0437\u0434\u0430\u0442\u044c\u0444\u0430\u0431\u0440\u0438\u043a\u0443xdto \u0441\u043e\u043a\u0440\u043b \u0441\u043e\u043a\u0440\u043b\u043f \u0441\u043e\u043a\u0440\u043f \u0441\u043e\u043e\u0431\u0449\u0438\u0442\u044c \u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0441\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0441\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c\u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0441\u0440\u0435\u0434 \u0441\u0442\u0440\u0434\u043b\u0438\u043d\u0430 \u0441\u0442\u0440\u0437\u0430\u043a\u0430\u043d\u0447\u0438\u0432\u0430\u0435\u0442\u0441\u044f\u043d\u0430 \u0441\u0442\u0440\u0437\u0430\u043c\u0435\u043d\u0438\u0442\u044c \u0441\u0442\u0440\u043d\u0430\u0439\u0442\u0438 \u0441\u0442\u0440\u043d\u0430\u0447\u0438\u043d\u0430\u0435\u0442\u0441\u044f\u0441 \u0441\u0442\u0440\u043e\u043a\u0430 \u0441\u0442\u0440\u043e\u043a\u0430\u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u044f\u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u043e\u043d\u043d\u043e\u0439\u0431\u0430\u0437\u044b \u0441\u0442\u0440\u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c\u0441\u0442\u0440\u043e\u043a\u0443 \u0441\u0442\u0440\u0440\u0430\u0437\u0434\u0435\u043b\u0438\u0442\u044c \u0441\u0442\u0440\u0441\u043e\u0435\u0434\u0438\u043d\u0438\u0442\u044c \u0441\u0442\u0440\u0441\u0440\u0430\u0432\u043d\u0438\u0442\u044c \u0441\u0442\u0440\u0447\u0438\u0441\u043b\u043e\u0432\u0445\u043e\u0436\u0434\u0435\u043d\u0438\u0439 \u0441\u0442\u0440\u0447\u0438\u0441\u043b\u043e\u0441\u0442\u0440\u043e\u043a \u0441\u0442\u0440\u0448\u0430\u0431\u043b\u043e\u043d \u0442\u0435\u043a\u0443\u0449\u0430\u044f\u0434\u0430\u0442\u0430 \u0442\u0435\u043a\u0443\u0449\u0430\u044f\u0434\u0430\u0442\u0430\u0441\u0435\u0430\u043d\u0441\u0430 \u0442\u0435\u043a\u0443\u0449\u0430\u044f\u0443\u043d\u0438\u0432\u0435\u0440\u0441\u0430\u043b\u044c\u043d\u0430\u044f\u0434\u0430\u0442\u0430 \u0442\u0435\u043a\u0443\u0449\u0430\u044f\u0443\u043d\u0438\u0432\u0435\u0440\u0441\u0430\u043b\u044c\u043d\u0430\u044f\u0434\u0430\u0442\u0430\u0432\u043c\u0438\u043b\u043b\u0438\u0441\u0435\u043a\u0443\u043d\u0434\u0430\u0445 \u0442\u0435\u043a\u0443\u0449\u0438\u0439\u0432\u0430\u0440\u0438\u0430\u043d\u0442\u0438\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441\u0430\u043a\u043b\u0438\u0435\u043d\u0442\u0441\u043a\u043e\u0433\u043e\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u0442\u0435\u043a\u0443\u0449\u0438\u0439\u0432\u0430\u0440\u0438\u0430\u043d\u0442\u043e\u0441\u043d\u043e\u0432\u043d\u043e\u0433\u043e\u0448\u0440\u0438\u0444\u0442\u0430\u043a\u043b\u0438\u0435\u043d\u0442\u0441\u043a\u043e\u0433\u043e\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u0442\u0435\u043a\u0443\u0449\u0438\u0439\u043a\u043e\u0434\u043b\u043e\u043a\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u0442\u0435\u043a\u0443\u0449\u0438\u0439\u0440\u0435\u0436\u0438\u043c\u0437\u0430\u043f\u0443\u0441\u043a\u0430 \u0442\u0435\u043a\u0443\u0449\u0438\u0439\u044f\u0437\u044b\u043a \u0442\u0435\u043a\u0443\u0449\u0438\u0439\u044f\u0437\u044b\u043a\u0441\u0438\u0441\u0442\u0435\u043c\u044b \u0442\u0438\u043f \u0442\u0438\u043f\u0437\u043d\u0447 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u044f\u0430\u043a\u0442\u0438\u0432\u043d\u0430 \u0442\u0440\u0435\u0433 \u0443\u0434\u0430\u043b\u0438\u0442\u044c\u0434\u0430\u043d\u043d\u044b\u0435\u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u043e\u043d\u043d\u043e\u0439\u0431\u0430\u0437\u044b \u0443\u0434\u0430\u043b\u0438\u0442\u044c\u0438\u0437\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e\u0433\u043e\u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0430 \u0443\u0434\u0430\u043b\u0438\u0442\u044c\u043e\u0431\u044a\u0435\u043a\u0442\u044b \u0443\u0434\u0430\u043b\u0438\u0442\u044c\u0444\u0430\u0439\u043b\u044b \u0443\u043d\u0438\u0432\u0435\u0440\u0441\u0430\u043b\u044c\u043d\u043e\u0435\u0432\u0440\u0435\u043c\u044f \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c\u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u044b\u0439\u0440\u0435\u0436\u0438\u043c \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c\u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u044b\u0439\u0440\u0435\u0436\u0438\u043c\u0440\u0430\u0437\u0434\u0435\u043b\u0435\u043d\u0438\u044f\u0434\u0430\u043d\u043d\u044b\u0445 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0443\u0441\u0435\u0430\u043d\u0441\u043e\u0432 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c\u0432\u043d\u0435\u0448\u043d\u044e\u044e\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u0443 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c\u0432\u0440\u0435\u043c\u044f\u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u044f\u0441\u043f\u044f\u0449\u0435\u0433\u043e\u0441\u0435\u0430\u043d\u0441\u0430 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c\u0432\u0440\u0435\u043c\u044f\u0437\u0430\u0441\u044b\u043f\u0430\u043d\u0438\u044f\u043f\u0430\u0441\u0441\u0438\u0432\u043d\u043e\u0433\u043e\u0441\u0435\u0430\u043d\u0441\u0430 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c\u0432\u0440\u0435\u043c\u044f\u043e\u0436\u0438\u0434\u0430\u043d\u0438\u044f\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0438\u0434\u0430\u043d\u043d\u044b\u0445 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c\u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a\u043a\u043b\u0438\u0435\u043d\u0442\u0441\u043a\u043e\u0433\u043e\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c\u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a\u0441\u0438\u0441\u0442\u0435\u043c\u044b \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c\u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435\u0436\u0443\u0440\u043d\u0430\u043b\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c\u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435\u0441\u043e\u0431\u044b\u0442\u0438\u044f\u0436\u0443\u0440\u043d\u0430\u043b\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c\u043a\u0440\u0430\u0442\u043a\u0438\u0439\u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c\u043c\u0438\u043d\u0438\u043c\u0430\u043b\u044c\u043d\u0443\u044e\u0434\u043b\u0438\u043d\u0443\u043f\u0430\u0440\u043e\u043b\u0435\u0439\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c\u043c\u043e\u043d\u043e\u043f\u043e\u043b\u044c\u043d\u044b\u0439\u0440\u0435\u0436\u0438\u043c \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c\u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438\u043a\u043b\u0438\u0435\u043d\u0442\u0430\u043b\u0438\u0446\u0435\u043d\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c\u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435\u043f\u0440\u0435\u0434\u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u043d\u044b\u0445\u0434\u0430\u043d\u043d\u044b\u0445\u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u043e\u043d\u043d\u043e\u0439\u0431\u0430\u0437\u044b \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c\u043e\u0442\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435\u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0433\u043e\u0440\u0435\u0436\u0438\u043c\u0430 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c\u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b\u0444\u0443\u043d\u043a\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0445\u043e\u043f\u0446\u0438\u0439\u0438\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441\u0430 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c\u043f\u0440\u0438\u0432\u0438\u043b\u0435\u0433\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439\u0440\u0435\u0436\u0438\u043c \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c\u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0443\u0441\u043b\u043e\u0436\u043d\u043e\u0441\u0442\u0438\u043f\u0430\u0440\u043e\u043b\u0435\u0439\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c\u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u0435\u0440\u0430\u0431\u043e\u0442\u044b\u0441\u043a\u0440\u0438\u043f\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u0435\u0439 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c\u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u0435\u0440\u0430\u0431\u043e\u0442\u044b\u0441\u0444\u0430\u0439\u043b\u0430\u043c\u0438 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c\u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u0435\u0441\u0432\u043d\u0435\u0448\u043d\u0438\u043c\u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u043e\u043c\u0434\u0430\u043d\u043d\u044b\u0445 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c\u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0438\u0435\u043e\u0431\u044a\u0435\u043a\u0442\u0430\u0438\u0444\u043e\u0440\u043c\u044b \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c\u0441\u043e\u0441\u0442\u0430\u0432\u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u043e\u0433\u043e\u0438\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441\u0430odata \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c\u0447\u0430\u0441\u043e\u0432\u043e\u0439\u043f\u043e\u044f\u0441\u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u043e\u043d\u043d\u043e\u0439\u0431\u0430\u0437\u044b \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c\u0447\u0430\u0441\u043e\u0432\u043e\u0439\u043f\u043e\u044f\u0441\u0441\u0435\u0430\u043d\u0441\u0430 \u0444\u043e\u0440\u043c\u0430\u0442 \u0446\u0435\u043b \u0447\u0430\u0441 \u0447\u0430\u0441\u043e\u0432\u043e\u0439\u043f\u043e\u044f\u0441 \u0447\u0430\u0441\u043e\u0432\u043e\u0439\u043f\u043e\u044f\u0441\u0441\u0435\u0430\u043d\u0441\u0430 \u0447\u0438\u0441\u043b\u043e \u0447\u0438\u0441\u043b\u043e\u043f\u0440\u043e\u043f\u0438\u0441\u044c\u044e \u044d\u0442\u043e\u0430\u0434\u0440\u0435\u0441\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e\u0433\u043e\u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0430 ws\u0441\u0441\u044b\u043b\u043a\u0438 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430\u043a\u0430\u0440\u0442\u0438\u043d\u043e\u043a \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430\u043c\u0430\u043a\u0435\u0442\u043e\u0432\u043e\u0444\u043e\u0440\u043c\u043b\u0435\u043d\u0438\u044f\u043a\u043e\u043c\u043f\u043e\u043d\u043e\u0432\u043a\u0438\u0434\u0430\u043d\u043d\u044b\u0445 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430\u0441\u0442\u0438\u043b\u0435\u0439 \u0431\u0438\u0437\u043d\u0435\u0441\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u044b \u0432\u043d\u0435\u0448\u043d\u0438\u0435\u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u0438\u0434\u0430\u043d\u043d\u044b\u0445 \u0432\u043d\u0435\u0448\u043d\u0438\u0435\u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0438 \u0432\u043d\u0435\u0448\u043d\u0438\u0435\u043e\u0442\u0447\u0435\u0442\u044b \u0432\u0441\u0442\u0440\u043e\u0435\u043d\u043d\u044b\u0435\u043f\u043e\u043a\u0443\u043f\u043a\u0438 \u0433\u043b\u0430\u0432\u043d\u044b\u0439\u0438\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441 \u0433\u043b\u0430\u0432\u043d\u044b\u0439\u0441\u0442\u0438\u043b\u044c \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u044b \u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u043c\u044b\u0435\u0443\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u044f \u0436\u0443\u0440\u043d\u0430\u043b\u044b\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u043e\u0432 \u0437\u0430\u0434\u0430\u0447\u0438 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f\u043e\u0431\u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u0438 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435\u0440\u0430\u0431\u043e\u0447\u0435\u0439\u0434\u0430\u0442\u044b \u0438\u0441\u0442\u043e\u0440\u0438\u044f\u0440\u0430\u0431\u043e\u0442\u044b\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u043a\u043e\u043d\u0441\u0442\u0430\u043d\u0442\u044b \u043a\u0440\u0438\u0442\u0435\u0440\u0438\u0438\u043e\u0442\u0431\u043e\u0440\u0430 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435 \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0438 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435\u0440\u0435\u043a\u043b\u0430\u043c\u044b \u043e\u0442\u043f\u0440\u0430\u0432\u043a\u0430\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u043c\u044b\u0445\u0443\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u0439 \u043e\u0442\u0447\u0435\u0442\u044b \u043f\u0430\u043d\u0435\u043b\u044c\u0437\u0430\u0434\u0430\u0447\u043e\u0441 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0437\u0430\u043f\u0443\u0441\u043a\u0430 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b\u0441\u0435\u0430\u043d\u0441\u0430 \u043f\u0435\u0440\u0435\u0447\u0438\u0441\u043b\u0435\u043d\u0438\u044f \u043f\u043b\u0430\u043d\u044b\u0432\u0438\u0434\u043e\u0432\u0440\u0430\u0441\u0447\u0435\u0442\u0430 \u043f\u043b\u0430\u043d\u044b\u0432\u0438\u0434\u043e\u0432\u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0438\u0441\u0442\u0438\u043a \u043f\u043b\u0430\u043d\u044b\u043e\u0431\u043c\u0435\u043d\u0430 \u043f\u043b\u0430\u043d\u044b\u0441\u0447\u0435\u0442\u043e\u0432 \u043f\u043e\u043b\u043d\u043e\u0442\u0435\u043a\u0441\u0442\u043e\u0432\u044b\u0439\u043f\u043e\u0438\u0441\u043a \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438\u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u043e\u043d\u043d\u043e\u0439\u0431\u0430\u0437\u044b \u043f\u043e\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u0438 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430\u0432\u0441\u0442\u0440\u043e\u0435\u043d\u043d\u044b\u0445\u043f\u043e\u043a\u0443\u043f\u043e\u043a \u0440\u0430\u0431\u043e\u0447\u0430\u044f\u0434\u0430\u0442\u0430 \u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u044f\u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0438 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u044b\u0431\u0443\u0445\u0433\u0430\u043b\u0442\u0435\u0440\u0438\u0438 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u044b\u043d\u0430\u043a\u043e\u043f\u043b\u0435\u043d\u0438\u044f \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u044b\u0440\u0430\u0441\u0447\u0435\u0442\u0430 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u044b\u0441\u0432\u0435\u0434\u0435\u043d\u0438\u0439 \u0440\u0435\u0433\u043b\u0430\u043c\u0435\u043d\u0442\u043d\u044b\u0435\u0437\u0430\u0434\u0430\u043d\u0438\u044f \u0441\u0435\u0440\u0438\u0430\u043b\u0438\u0437\u0430\u0442\u043e\u0440xdto \u0441\u043f\u0440\u0430\u0432\u043e\u0447\u043d\u0438\u043a\u0438 \u0441\u0440\u0435\u0434\u0441\u0442\u0432\u0430\u0433\u0435\u043e\u043f\u043e\u0437\u0438\u0446\u0438\u043e\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u0441\u0440\u0435\u0434\u0441\u0442\u0432\u0430\u043a\u0440\u0438\u043f\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u0438 \u0441\u0440\u0435\u0434\u0441\u0442\u0432\u0430\u043c\u0443\u043b\u044c\u0442\u0438\u043c\u0435\u0434\u0438\u0430 \u0441\u0440\u0435\u0434\u0441\u0442\u0432\u0430\u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f\u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0441\u0440\u0435\u0434\u0441\u0442\u0432\u0430\u043f\u043e\u0447\u0442\u044b \u0441\u0440\u0435\u0434\u0441\u0442\u0432\u0430\u0442\u0435\u043b\u0435\u0444\u043e\u043d\u0438\u0438 \u0444\u0430\u0431\u0440\u0438\u043a\u0430xdto \u0444\u0430\u0439\u043b\u043e\u0432\u044b\u0435\u043f\u043e\u0442\u043e\u043a\u0438 \u0444\u043e\u043d\u043e\u0432\u044b\u0435\u0437\u0430\u0434\u0430\u043d\u0438\u044f \u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0430\u043d\u0430\u0441\u0442\u0440\u043e\u0435\u043a \u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0435\u0432\u0430\u0440\u0438\u0430\u043d\u0442\u043e\u0432\u043e\u0442\u0447\u0435\u0442\u043e\u0432 \u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0435\u043d\u0430\u0441\u0442\u0440\u043e\u0435\u043a\u0434\u0430\u043d\u043d\u044b\u0445\u0444\u043e\u0440\u043c \u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0435\u043e\u0431\u0449\u0438\u0445\u043d\u0430\u0441\u0442\u0440\u043e\u0435\u043a \u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0435\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0445\u043d\u0430\u0441\u0442\u0440\u043e\u0435\u043a\u0434\u0438\u043d\u0430\u043c\u0438\u0447\u0435\u0441\u043a\u0438\u0445\u0441\u043f\u0438\u0441\u043a\u043e\u0432 \u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0435\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0445\u043d\u0430\u0441\u0442\u0440\u043e\u0435\u043a\u043e\u0442\u0447\u0435\u0442\u043e\u0432 \u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0435\u0441\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u0445\u043d\u0430\u0441\u0442\u0440\u043e\u0435\u043a ","class","web\u0446\u0432\u0435\u0442\u0430 windows\u0446\u0432\u0435\u0442\u0430 windows\u0448\u0440\u0438\u0444\u0442\u044b \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430\u043a\u0430\u0440\u0442\u0438\u043d\u043e\u043a \u0440\u0430\u043c\u043a\u0438\u0441\u0442\u0438\u043b\u044f \u0441\u0438\u043c\u0432\u043e\u043b\u044b \u0446\u0432\u0435\u0442\u0430\u0441\u0442\u0438\u043b\u044f \u0448\u0440\u0438\u0444\u0442\u044b\u0441\u0442\u0438\u043b\u044f \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0435\u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u0438\u0435\u0434\u0430\u043d\u043d\u044b\u0445\u0444\u043e\u0440\u043c\u044b\u0432\u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430\u0445 \u0430\u0432\u0442\u043e\u043d\u0443\u043c\u0435\u0440\u0430\u0446\u0438\u044f\u0432\u0444\u043e\u0440\u043c\u0435 \u0430\u0432\u0442\u043e\u0440\u0430\u0437\u0434\u0432\u0438\u0436\u0435\u043d\u0438\u0435\u0441\u0435\u0440\u0438\u0439 \u0430\u043d\u0438\u043c\u0430\u0446\u0438\u044f\u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u044b \u0432\u0430\u0440\u0438\u0430\u043d\u0442\u0432\u044b\u0440\u0430\u0432\u043d\u0438\u0432\u0430\u043d\u0438\u044f\u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432\u0438\u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u043e\u0432 \u0432\u0430\u0440\u0438\u0430\u043d\u0442\u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f\u0432\u044b\u0441\u043e\u0442\u043e\u0439\u0442\u0430\u0431\u043b\u0438\u0446\u044b \u0432\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u044c\u043d\u0430\u044f\u043f\u0440\u043e\u043a\u0440\u0443\u0442\u043a\u0430\u0444\u043e\u0440\u043c\u044b \u0432\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u044c\u043d\u043e\u0435\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u0432\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u044c\u043d\u043e\u0435\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435\u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430 \u0432\u0438\u0434\u0433\u0440\u0443\u043f\u043f\u044b\u0444\u043e\u0440\u043c\u044b \u0432\u0438\u0434\u0434\u0435\u043a\u043e\u0440\u0430\u0446\u0438\u0438\u0444\u043e\u0440\u043c\u044b \u0432\u0438\u0434\u0434\u043e\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f\u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430\u0444\u043e\u0440\u043c\u044b \u0432\u0438\u0434\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f\u0434\u0430\u043d\u043d\u044b\u0445 \u0432\u0438\u0434\u043a\u043d\u043e\u043f\u043a\u0438\u0444\u043e\u0440\u043c\u044b \u0432\u0438\u0434\u043f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0430\u0442\u0435\u043b\u044f \u0432\u0438\u0434\u043f\u043e\u0434\u043f\u0438\u0441\u0435\u0439\u043a\u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u0435 \u0432\u0438\u0434\u043f\u043e\u043b\u044f\u0444\u043e\u0440\u043c\u044b \u0432\u0438\u0434\u0444\u043b\u0430\u0436\u043a\u0430 \u0432\u043b\u0438\u044f\u043d\u0438\u0435\u0440\u0430\u0437\u043c\u0435\u0440\u0430\u043d\u0430\u043f\u0443\u0437\u044b\u0440\u0435\u043a\u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u044b \u0433\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u043e\u0435\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u0433\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u043e\u0435\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435\u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430 \u0433\u0440\u0443\u043f\u043f\u0438\u0440\u043e\u0432\u043a\u0430\u043a\u043e\u043b\u043e\u043d\u043e\u043a \u0433\u0440\u0443\u043f\u043f\u0438\u0440\u043e\u0432\u043a\u0430\u043f\u043e\u0434\u0447\u0438\u043d\u0435\u043d\u043d\u044b\u0445\u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432\u0444\u043e\u0440\u043c\u044b \u0433\u0440\u0443\u043f\u043f\u044b\u0438\u044d\u043b\u0435\u043c\u0435\u043d\u0442\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435\u043f\u0435\u0440\u0435\u0442\u0430\u0441\u043a\u0438\u0432\u0430\u043d\u0438\u044f \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0439\u0440\u0435\u0436\u0438\u043c\u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u0434\u043e\u043f\u0443\u0441\u0442\u0438\u043c\u044b\u0435\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f\u043f\u0435\u0440\u0435\u0442\u0430\u0441\u043a\u0438\u0432\u0430\u043d\u0438\u044f \u0438\u043d\u0442\u0435\u0440\u0432\u0430\u043b\u043c\u0435\u0436\u0434\u0443\u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430\u043c\u0438\u0444\u043e\u0440\u043c\u044b \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435\u0432\u044b\u0432\u043e\u0434\u0430 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435\u043f\u043e\u043b\u043e\u0441\u044b\u043f\u0440\u043e\u043a\u0440\u0443\u0442\u043a\u0438 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u043c\u043e\u0435\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435\u0442\u043e\u0447\u043a\u0438\u0431\u0438\u0440\u0436\u0435\u0432\u043e\u0439\u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u044b \u0438\u0441\u0442\u043e\u0440\u0438\u044f\u0432\u044b\u0431\u043e\u0440\u0430\u043f\u0440\u0438\u0432\u0432\u043e\u0434\u0435 \u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0439\u043e\u0441\u0438\u0442\u043e\u0447\u0435\u043a\u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u044b \u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f\u0440\u0430\u0437\u043c\u0435\u0440\u0430\u043f\u0443\u0437\u044b\u0440\u044c\u043a\u0430\u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u044b \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f\u0433\u0440\u0443\u043f\u043f\u044b\u043a\u043e\u043c\u0430\u043d\u0434 \u043c\u0430\u043a\u0441\u0438\u043c\u0443\u043c\u0441\u0435\u0440\u0438\u0439 \u043d\u0430\u0447\u0430\u043b\u044c\u043d\u043e\u0435\u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435\u0434\u0435\u0440\u0435\u0432\u0430 \u043d\u0430\u0447\u0430\u043b\u044c\u043d\u043e\u0435\u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435\u0441\u043f\u0438\u0441\u043a\u0430 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435\u0442\u0435\u043a\u0441\u0442\u0430\u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u043e\u0440\u0438\u0435\u043d\u0442\u0430\u0446\u0438\u044f\u0434\u0435\u043d\u0434\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u044b \u043e\u0440\u0438\u0435\u043d\u0442\u0430\u0446\u0438\u044f\u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u044b \u043e\u0440\u0438\u0435\u043d\u0442\u0430\u0446\u0438\u044f\u043c\u0435\u0442\u043e\u043a\u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u044b \u043e\u0440\u0438\u0435\u043d\u0442\u0430\u0446\u0438\u044f\u043c\u0435\u0442\u043e\u043a\u0441\u0432\u043e\u0434\u043d\u043e\u0439\u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u044b \u043e\u0440\u0438\u0435\u043d\u0442\u0430\u0446\u0438\u044f\u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430\u0444\u043e\u0440\u043c\u044b \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435\u0432\u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u0435 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435\u0432\u043b\u0435\u0433\u0435\u043d\u0434\u0435\u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u044b \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435\u0433\u0440\u0443\u043f\u043f\u044b\u043a\u043d\u043e\u043f\u043e\u043a \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435\u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0430\u0448\u043a\u0430\u043b\u044b\u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u044b \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0439\u0441\u0432\u043e\u0434\u043d\u043e\u0439\u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u044b \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f\u0438\u0437\u043c\u0435\u0440\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0439\u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u044b \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435\u0438\u043d\u0442\u0435\u0440\u0432\u0430\u043b\u0430\u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u044b\u0433\u0430\u043d\u0442\u0430 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435\u043a\u043d\u043e\u043f\u043a\u0438 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435\u043a\u043d\u043e\u043f\u043a\u0438\u0432\u044b\u0431\u043e\u0440\u0430 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435\u043e\u0431\u0441\u0443\u0436\u0434\u0435\u043d\u0438\u0439\u0444\u043e\u0440\u043c\u044b \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435\u043e\u0431\u044b\u0447\u043d\u043e\u0439\u0433\u0440\u0443\u043f\u043f\u044b \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435\u043e\u0442\u0440\u0438\u0446\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u0445\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0439\u043f\u0443\u0437\u044b\u0440\u044c\u043a\u043e\u0432\u043e\u0439\u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u044b \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435\u043f\u0430\u043d\u0435\u043b\u0438\u043f\u043e\u0438\u0441\u043a\u0430 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435\u043f\u043e\u0434\u0441\u043a\u0430\u0437\u043a\u0438 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435\u043f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0436\u0434\u0435\u043d\u0438\u044f\u043f\u0440\u0438\u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0438 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435\u0440\u0430\u0437\u043c\u0435\u0442\u043a\u0438\u043f\u043e\u043b\u043e\u0441\u044b\u0440\u0435\u0433\u0443\u043b\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435\u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0444\u043e\u0440\u043c\u044b \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435\u0442\u0430\u0431\u043b\u0438\u0446\u044b \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435\u0442\u0435\u043a\u0441\u0442\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f\u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u044b\u0433\u0430\u043d\u0442\u0430 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435\u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f\u043e\u0431\u044b\u0447\u043d\u043e\u0439\u0433\u0440\u0443\u043f\u043f\u044b \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435\u0444\u0438\u0433\u0443\u0440\u044b\u043a\u043d\u043e\u043f\u043a\u0438 \u043f\u0430\u043b\u0438\u0442\u0440\u0430\u0446\u0432\u0435\u0442\u043e\u0432\u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u044b \u043f\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u0435\u043e\u0431\u044b\u0447\u043d\u043e\u0439\u0433\u0440\u0443\u043f\u043f\u044b \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0430\u043c\u0430\u0441\u0448\u0442\u0430\u0431\u0430\u0434\u0435\u043d\u0434\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u044b \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0430\u043c\u0430\u0441\u0448\u0442\u0430\u0431\u0430\u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u044b\u0433\u0430\u043d\u0442\u0430 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0430\u043c\u0430\u0441\u0448\u0442\u0430\u0431\u0430\u0441\u0432\u043e\u0434\u043d\u043e\u0439\u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u044b \u043f\u043e\u0438\u0441\u043a\u0432\u0442\u0430\u0431\u043b\u0438\u0446\u0435\u043f\u0440\u0438\u0432\u0432\u043e\u0434\u0435 \u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435\u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0430\u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430\u0444\u043e\u0440\u043c\u044b \u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435\u043a\u0430\u0440\u0442\u0438\u043d\u043a\u0438\u043a\u043d\u043e\u043f\u043a\u0438\u0444\u043e\u0440\u043c\u044b \u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435\u043a\u0430\u0440\u0442\u0438\u043d\u043a\u0438\u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430\u0433\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043a\u043e\u0439\u0441\u0445\u0435\u043c\u044b \u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435\u043a\u043e\u043c\u0430\u043d\u0434\u043d\u043e\u0439\u043f\u0430\u043d\u0435\u043b\u0438\u0444\u043e\u0440\u043c\u044b \u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435\u043a\u043e\u043c\u0430\u043d\u0434\u043d\u043e\u0439\u043f\u0430\u043d\u0435\u043b\u0438\u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430\u0444\u043e\u0440\u043c\u044b \u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435\u043e\u043f\u043e\u0440\u043d\u043e\u0439\u0442\u043e\u0447\u043a\u0438\u043e\u0442\u0440\u0438\u0441\u043e\u0432\u043a\u0438 \u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435\u043f\u043e\u0434\u043f\u0438\u0441\u0435\u0439\u043a\u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u0435 \u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435\u043f\u043e\u0434\u043f\u0438\u0441\u0435\u0439\u0448\u043a\u0430\u043b\u044b\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0439\u0438\u0437\u043c\u0435\u0440\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0439\u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u044b \u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435\u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u044f\u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430 \u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435\u0441\u0442\u0440\u043e\u043a\u0438\u043f\u043e\u0438\u0441\u043a\u0430 \u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435\u0442\u0435\u043a\u0441\u0442\u0430\u0441\u043e\u0435\u0434\u0438\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0439\u043b\u0438\u043d\u0438\u0438 \u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435\u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f\u043f\u043e\u0438\u0441\u043a\u043e\u043c \u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435\u0448\u043a\u0430\u043b\u044b\u0432\u0440\u0435\u043c\u0435\u043d\u0438 \u043f\u043e\u0440\u044f\u0434\u043e\u043a\u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f\u0442\u043e\u0447\u0435\u043a\u0433\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u043e\u0439\u0433\u0438\u0441\u0442\u043e\u0433\u0440\u0430\u043c\u043c\u044b \u043f\u043e\u0440\u044f\u0434\u043e\u043a\u0441\u0435\u0440\u0438\u0439\u0432\u043b\u0435\u0433\u0435\u043d\u0434\u0435\u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u044b \u0440\u0430\u0437\u043c\u0435\u0440\u043a\u0430\u0440\u0442\u0438\u043d\u043a\u0438 \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435\u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0430\u0448\u043a\u0430\u043b\u044b\u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u044b \u0440\u0430\u0441\u0442\u044f\u0433\u0438\u0432\u0430\u043d\u0438\u0435\u043f\u043e\u0432\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u0438\u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u044b\u0433\u0430\u043d\u0442\u0430 \u0440\u0435\u0436\u0438\u043c\u0430\u0432\u0442\u043e\u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f\u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u044f \u0440\u0435\u0436\u0438\u043c\u0432\u0432\u043e\u0434\u0430\u0441\u0442\u0440\u043e\u043a\u0442\u0430\u0431\u043b\u0438\u0446\u044b \u0440\u0435\u0436\u0438\u043c\u0432\u044b\u0431\u043e\u0440\u0430\u043d\u0435\u0437\u0430\u043f\u043e\u043b\u043d\u0435\u043d\u043d\u043e\u0433\u043e \u0440\u0435\u0436\u0438\u043c\u0432\u044b\u0434\u0435\u043b\u0435\u043d\u0438\u044f\u0434\u0430\u0442\u044b \u0440\u0435\u0436\u0438\u043c\u0432\u044b\u0434\u0435\u043b\u0435\u043d\u0438\u044f\u0441\u0442\u0440\u043e\u043a\u0438\u0442\u0430\u0431\u043b\u0438\u0446\u044b \u0440\u0435\u0436\u0438\u043c\u0432\u044b\u0434\u0435\u043b\u0435\u043d\u0438\u044f\u0442\u0430\u0431\u043b\u0438\u0446\u044b \u0440\u0435\u0436\u0438\u043c\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f\u0440\u0430\u0437\u043c\u0435\u0440\u0430 \u0440\u0435\u0436\u0438\u043c\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f\u0441\u0432\u044f\u0437\u0430\u043d\u043d\u043e\u0433\u043e\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f \u0440\u0435\u0436\u0438\u043c\u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f\u0434\u0438\u0430\u043b\u043e\u0433\u0430\u043f\u0435\u0447\u0430\u0442\u0438 \u0440\u0435\u0436\u0438\u043c\u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f\u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0430\u043a\u043e\u043c\u0430\u043d\u0434\u044b \u0440\u0435\u0436\u0438\u043c\u043c\u0430\u0441\u0448\u0442\u0430\u0431\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f\u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430 \u0440\u0435\u0436\u0438\u043c\u043e\u0441\u043d\u043e\u0432\u043d\u043e\u0433\u043e\u043e\u043a\u043d\u0430\u043a\u043b\u0438\u0435\u043d\u0442\u0441\u043a\u043e\u0433\u043e\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u0440\u0435\u0436\u0438\u043c\u043e\u0442\u043a\u0440\u044b\u0442\u0438\u044f\u043e\u043a\u043d\u0430\u0444\u043e\u0440\u043c\u044b \u0440\u0435\u0436\u0438\u043c\u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f\u0432\u044b\u0434\u0435\u043b\u0435\u043d\u0438\u044f \u0440\u0435\u0436\u0438\u043c\u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f\u0433\u0435\u043e\u0433\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043a\u043e\u0439\u0441\u0445\u0435\u043c\u044b \u0440\u0435\u0436\u0438\u043c\u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0439\u0441\u0435\u0440\u0438\u0438 \u0440\u0435\u0436\u0438\u043c\u043e\u0442\u0440\u0438\u0441\u043e\u0432\u043a\u0438\u0441\u0435\u0442\u043a\u0438\u0433\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043a\u043e\u0439\u0441\u0445\u0435\u043c\u044b \u0440\u0435\u0436\u0438\u043c\u043f\u043e\u043b\u0443\u043f\u0440\u043e\u0437\u0440\u0430\u0447\u043d\u043e\u0441\u0442\u0438\u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u044b \u0440\u0435\u0436\u0438\u043c\u043f\u0440\u043e\u0431\u0435\u043b\u043e\u0432\u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u044b \u0440\u0435\u0436\u0438\u043c\u0440\u0430\u0437\u043c\u0435\u0449\u0435\u043d\u0438\u044f\u043d\u0430\u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0435 \u0440\u0435\u0436\u0438\u043c\u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f\u043a\u043e\u043b\u043e\u043d\u043a\u0438 \u0440\u0435\u0436\u0438\u043c\u0441\u0433\u043b\u0430\u0436\u0438\u0432\u0430\u043d\u0438\u044f\u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u044b \u0440\u0435\u0436\u0438\u043c\u0441\u0433\u043b\u0430\u0436\u0438\u0432\u0430\u043d\u0438\u044f\u0438\u043d\u0434\u0438\u043a\u0430\u0442\u043e\u0440\u0430 \u0440\u0435\u0436\u0438\u043c\u0441\u043f\u0438\u0441\u043a\u0430\u0437\u0430\u0434\u0430\u0447 \u0441\u043a\u0432\u043e\u0437\u043d\u043e\u0435\u0432\u044b\u0440\u0430\u0432\u043d\u0438\u0432\u0430\u043d\u0438\u0435 \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u0438\u0435\u0434\u0430\u043d\u043d\u044b\u0445\u0444\u043e\u0440\u043c\u044b\u0432\u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430\u0445 \u0441\u043f\u043e\u0441\u043e\u0431\u0437\u0430\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f\u0442\u0435\u043a\u0441\u0442\u0430\u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0430\u0448\u043a\u0430\u043b\u044b\u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u044b \u0441\u043f\u043e\u0441\u043e\u0431\u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044f\u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0438\u0432\u0430\u044e\u0449\u0435\u0433\u043e\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f\u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u044b \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u0430\u044f\u0433\u0440\u0443\u043f\u043f\u0430\u043a\u043e\u043c\u0430\u043d\u0434 \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u043e\u0435\u043e\u0444\u043e\u0440\u043c\u043b\u0435\u043d\u0438\u0435 \u0441\u0442\u0430\u0442\u0443\u0441\u043e\u043f\u043e\u0432\u0435\u0449\u0435\u043d\u0438\u044f\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0441\u0442\u0438\u043b\u044c\u0441\u0442\u0440\u0435\u043b\u043a\u0438 \u0442\u0438\u043f\u0430\u043f\u043f\u0440\u043e\u043a\u0441\u0438\u043c\u0430\u0446\u0438\u0438\u043b\u0438\u043d\u0438\u0438\u0442\u0440\u0435\u043d\u0434\u0430\u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u044b \u0442\u0438\u043f\u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u044b \u0442\u0438\u043f\u0435\u0434\u0438\u043d\u0438\u0446\u044b\u0448\u043a\u0430\u043b\u044b\u0432\u0440\u0435\u043c\u0435\u043d\u0438 \u0442\u0438\u043f\u0438\u043c\u043f\u043e\u0440\u0442\u0430\u0441\u0435\u0440\u0438\u0439\u0441\u043b\u043e\u044f\u0433\u0435\u043e\u0433\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043a\u043e\u0439\u0441\u0445\u0435\u043c\u044b \u0442\u0438\u043f\u043b\u0438\u043d\u0438\u0438\u0433\u0435\u043e\u0433\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043a\u043e\u0439\u0441\u0445\u0435\u043c\u044b \u0442\u0438\u043f\u043b\u0438\u043d\u0438\u0438\u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u044b \u0442\u0438\u043f\u043c\u0430\u0440\u043a\u0435\u0440\u0430\u0433\u0435\u043e\u0433\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043a\u043e\u0439\u0441\u0445\u0435\u043c\u044b \u0442\u0438\u043f\u043c\u0430\u0440\u043a\u0435\u0440\u0430\u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u044b \u0442\u0438\u043f\u043e\u0431\u043b\u0430\u0441\u0442\u0438\u043e\u0444\u043e\u0440\u043c\u043b\u0435\u043d\u0438\u044f \u0442\u0438\u043f\u043e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0446\u0438\u0438\u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u0430\u0434\u0430\u043d\u043d\u044b\u0445\u0433\u0435\u043e\u0433\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043a\u043e\u0439\u0441\u0445\u0435\u043c\u044b \u0442\u0438\u043f\u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f\u0441\u0435\u0440\u0438\u0438\u0441\u043b\u043e\u044f\u0433\u0435\u043e\u0433\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043a\u043e\u0439\u0441\u0445\u0435\u043c\u044b \u0442\u0438\u043f\u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f\u0442\u043e\u0447\u0435\u0447\u043d\u043e\u0433\u043e\u043e\u0431\u044a\u0435\u043a\u0442\u0430\u0433\u0435\u043e\u0433\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043a\u043e\u0439\u0441\u0445\u0435\u043c\u044b \u0442\u0438\u043f\u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f\u0448\u043a\u0430\u043b\u044b\u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430\u043b\u0435\u0433\u0435\u043d\u0434\u044b\u0433\u0435\u043e\u0433\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043a\u043e\u0439\u0441\u0445\u0435\u043c\u044b \u0442\u0438\u043f\u043f\u043e\u0438\u0441\u043a\u0430\u043e\u0431\u044a\u0435\u043a\u0442\u043e\u0432\u0433\u0435\u043e\u0433\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043a\u043e\u0439\u0441\u0445\u0435\u043c\u044b \u0442\u0438\u043f\u043f\u0440\u043e\u0435\u043a\u0446\u0438\u0438\u0433\u0435\u043e\u0433\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043a\u043e\u0439\u0441\u0445\u0435\u043c\u044b \u0442\u0438\u043f\u0440\u0430\u0437\u043c\u0435\u0449\u0435\u043d\u0438\u044f\u0438\u0437\u043c\u0435\u0440\u0435\u043d\u0438\u0439 \u0442\u0438\u043f\u0440\u0430\u0437\u043c\u0435\u0449\u0435\u043d\u0438\u044f\u0440\u0435\u043a\u0432\u0438\u0437\u0438\u0442\u043e\u0432\u0438\u0437\u043c\u0435\u0440\u0435\u043d\u0438\u0439 \u0442\u0438\u043f\u0440\u0430\u043c\u043a\u0438\u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430\u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0442\u0438\u043f\u0441\u0432\u043e\u0434\u043d\u043e\u0439\u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u044b \u0442\u0438\u043f\u0441\u0432\u044f\u0437\u0438\u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u044b\u0433\u0430\u043d\u0442\u0430 \u0442\u0438\u043f\u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u044f\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0439\u043f\u043e\u0441\u0435\u0440\u0438\u044f\u043c\u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u044b \u0442\u0438\u043f\u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u044f\u0442\u043e\u0447\u0435\u043a\u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u044b \u0442\u0438\u043f\u0441\u043e\u0435\u0434\u0438\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0439\u043b\u0438\u043d\u0438\u0438 \u0442\u0438\u043f\u0441\u0442\u043e\u0440\u043e\u043d\u044b\u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430\u0433\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043a\u043e\u0439\u0441\u0445\u0435\u043c\u044b \u0442\u0438\u043f\u0444\u043e\u0440\u043c\u044b\u043e\u0442\u0447\u0435\u0442\u0430 \u0442\u0438\u043f\u0448\u043a\u0430\u043b\u044b\u0440\u0430\u0434\u0430\u0440\u043d\u043e\u0439\u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u044b \u0444\u0430\u043a\u0442\u043e\u0440\u043b\u0438\u043d\u0438\u0438\u0442\u0440\u0435\u043d\u0434\u0430\u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u044b \u0444\u0438\u0433\u0443\u0440\u0430\u043a\u043d\u043e\u043f\u043a\u0438 \u0444\u0438\u0433\u0443\u0440\u044b\u0433\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043a\u043e\u0439\u0441\u0445\u0435\u043c\u044b \u0444\u0438\u043a\u0441\u0430\u0446\u0438\u044f\u0432\u0442\u0430\u0431\u043b\u0438\u0446\u0435 \u0444\u043e\u0440\u043c\u0430\u0442\u0434\u043d\u044f\u0448\u043a\u0430\u043b\u044b\u0432\u0440\u0435\u043c\u0435\u043d\u0438 \u0444\u043e\u0440\u043c\u0430\u0442\u043a\u0430\u0440\u0442\u0438\u043d\u043a\u0438 \u0448\u0438\u0440\u0438\u043d\u0430\u043f\u043e\u0434\u0447\u0438\u043d\u0435\u043d\u043d\u044b\u0445\u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432\u0444\u043e\u0440\u043c\u044b \u0432\u0438\u0434\u0434\u0432\u0438\u0436\u0435\u043d\u0438\u044f\u0431\u0443\u0445\u0433\u0430\u043b\u0442\u0435\u0440\u0438\u0438 \u0432\u0438\u0434\u0434\u0432\u0438\u0436\u0435\u043d\u0438\u044f\u043d\u0430\u043a\u043e\u043f\u043b\u0435\u043d\u0438\u044f \u0432\u0438\u0434\u043f\u0435\u0440\u0438\u043e\u0434\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0440\u0430\u0441\u0447\u0435\u0442\u0430 \u0432\u0438\u0434\u0441\u0447\u0435\u0442\u0430 \u0432\u0438\u0434\u0442\u043e\u0447\u043a\u0438\u043c\u0430\u0440\u0448\u0440\u0443\u0442\u0430\u0431\u0438\u0437\u043d\u0435\u0441\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435\u0430\u0433\u0440\u0435\u0433\u0430\u0442\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u043d\u0430\u043a\u043e\u043f\u043b\u0435\u043d\u0438\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435\u0433\u0440\u0443\u043f\u043f\u0438\u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435\u0440\u0435\u0436\u0438\u043c\u0430\u043f\u0440\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435\u0441\u0440\u0435\u0437\u0430 \u043f\u0435\u0440\u0438\u043e\u0434\u0438\u0447\u043d\u043e\u0441\u0442\u044c\u0430\u0433\u0440\u0435\u0433\u0430\u0442\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u043d\u0430\u043a\u043e\u043f\u043b\u0435\u043d\u0438\u044f \u0440\u0435\u0436\u0438\u043c\u0430\u0432\u0442\u043e\u0432\u0440\u0435\u043c\u044f \u0440\u0435\u0436\u0438\u043c\u0437\u0430\u043f\u0438\u0441\u0438\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430 \u0440\u0435\u0436\u0438\u043c\u043f\u0440\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u044f\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430 \u0430\u0432\u0442\u043e\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u044f\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439 \u0434\u043e\u043f\u0443\u0441\u0442\u0438\u043c\u044b\u0439\u043d\u043e\u043c\u0435\u0440\u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f \u043e\u0442\u043f\u0440\u0430\u0432\u043a\u0430\u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445 \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u0435\u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435\u0440\u0430\u0441\u0448\u0438\u0444\u0440\u043e\u0432\u043a\u0438\u0442\u0430\u0431\u043b\u0438\u0447\u043d\u043e\u0433\u043e\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430 \u043e\u0440\u0438\u0435\u043d\u0442\u0430\u0446\u0438\u044f\u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b \u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435\u0438\u0442\u043e\u0433\u043e\u0432\u043a\u043e\u043b\u043e\u043d\u043e\u043a\u0441\u0432\u043e\u0434\u043d\u043e\u0439\u0442\u0430\u0431\u043b\u0438\u0446\u044b \u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435\u0438\u0442\u043e\u0433\u043e\u0432\u0441\u0442\u0440\u043e\u043a\u0441\u0432\u043e\u0434\u043d\u043e\u0439\u0442\u0430\u0431\u043b\u0438\u0446\u044b \u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435\u0442\u0435\u043a\u0441\u0442\u0430\u043e\u0442\u043d\u043e\u0441\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u043a\u0430\u0440\u0442\u0438\u043d\u043a\u0438 \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435\u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0430\u0433\u0440\u0443\u043f\u043f\u0438\u0440\u043e\u0432\u043a\u0438\u0442\u0430\u0431\u043b\u0438\u0447\u043d\u043e\u0433\u043e\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430 \u0441\u043f\u043e\u0441\u043e\u0431\u0447\u0442\u0435\u043d\u0438\u044f\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0439\u0442\u0430\u0431\u043b\u0438\u0447\u043d\u043e\u0433\u043e\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430 \u0442\u0438\u043f\u0434\u0432\u0443\u0441\u0442\u043e\u0440\u043e\u043d\u043d\u0435\u0439\u043f\u0435\u0447\u0430\u0442\u0438 \u0442\u0438\u043f\u0437\u0430\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f\u043e\u0431\u043b\u0430\u0441\u0442\u0438\u0442\u0430\u0431\u043b\u0438\u0447\u043d\u043e\u0433\u043e\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430 \u0442\u0438\u043f\u043a\u0443\u0440\u0441\u043e\u0440\u043e\u0432\u0442\u0430\u0431\u043b\u0438\u0447\u043d\u043e\u0433\u043e\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430 \u0442\u0438\u043f\u043b\u0438\u043d\u0438\u0438\u0440\u0438\u0441\u0443\u043d\u043a\u0430\u0442\u0430\u0431\u043b\u0438\u0447\u043d\u043e\u0433\u043e\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430 \u0442\u0438\u043f\u043b\u0438\u043d\u0438\u0438\u044f\u0447\u0435\u0439\u043a\u0438\u0442\u0430\u0431\u043b\u0438\u0447\u043d\u043e\u0433\u043e\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430 \u0442\u0438\u043f\u043d\u0430\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f\u043f\u0435\u0440\u0435\u0445\u043e\u0434\u0430\u0442\u0430\u0431\u043b\u0438\u0447\u043d\u043e\u0433\u043e\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430 \u0442\u0438\u043f\u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f\u0432\u044b\u0434\u0435\u043b\u0435\u043d\u0438\u044f\u0442\u0430\u0431\u043b\u0438\u0447\u043d\u043e\u0433\u043e\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430 \u0442\u0438\u043f\u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f\u043b\u0438\u043d\u0438\u0439\u0441\u0432\u043e\u0434\u043d\u043e\u0439\u0442\u0430\u0431\u043b\u0438\u0446\u044b \u0442\u0438\u043f\u0440\u0430\u0437\u043c\u0435\u0449\u0435\u043d\u0438\u044f\u0442\u0435\u043a\u0441\u0442\u0430\u0442\u0430\u0431\u043b\u0438\u0447\u043d\u043e\u0433\u043e\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430 \u0442\u0438\u043f\u0440\u0438\u0441\u0443\u043d\u043a\u0430\u0442\u0430\u0431\u043b\u0438\u0447\u043d\u043e\u0433\u043e\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430 \u0442\u0438\u043f\u0441\u043c\u0435\u0449\u0435\u043d\u0438\u044f\u0442\u0430\u0431\u043b\u0438\u0447\u043d\u043e\u0433\u043e\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430 \u0442\u0438\u043f\u0443\u0437\u043e\u0440\u0430\u0442\u0430\u0431\u043b\u0438\u0447\u043d\u043e\u0433\u043e\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430 \u0442\u0438\u043f\u0444\u0430\u0439\u043b\u0430\u0442\u0430\u0431\u043b\u0438\u0447\u043d\u043e\u0433\u043e\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430 \u0442\u043e\u0447\u043d\u043e\u0441\u0442\u044c\u043f\u0435\u0447\u0430\u0442\u0438 \u0447\u0435\u0440\u0435\u0434\u043e\u0432\u0430\u043d\u0438\u0435\u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044f\u0441\u0442\u0440\u0430\u043d\u0438\u0446 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435\u0432\u0440\u0435\u043c\u0435\u043d\u0438\u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432\u043f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0449\u0438\u043a\u0430 \u0442\u0438\u043f\u0444\u0430\u0439\u043b\u0430\u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0433\u043e\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430 \u043e\u0431\u0445\u043e\u0434\u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0430\u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u0442\u0438\u043f\u0437\u0430\u043f\u0438\u0441\u0438\u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u0432\u0438\u0434\u0437\u0430\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f\u0440\u0430\u0441\u0448\u0438\u0444\u0440\u043e\u0432\u043a\u0438\u043f\u043e\u0441\u0442\u0440\u043e\u0438\u0442\u0435\u043b\u044f\u043e\u0442\u0447\u0435\u0442\u0430 \u0442\u0438\u043f\u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u044f\u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u0439 \u0442\u0438\u043f\u0438\u0437\u043c\u0435\u0440\u0435\u043d\u0438\u044f\u043f\u043e\u0441\u0442\u0440\u043e\u0438\u0442\u0435\u043b\u044f\u043e\u0442\u0447\u0435\u0442\u0430 \u0442\u0438\u043f\u0440\u0430\u0437\u043c\u0435\u0449\u0435\u043d\u0438\u044f\u0438\u0442\u043e\u0433\u043e\u0432 \u0434\u043e\u0441\u0442\u0443\u043f\u043a\u0444\u0430\u0439\u043b\u0443 \u0440\u0435\u0436\u0438\u043c\u0434\u0438\u0430\u043b\u043e\u0433\u0430\u0432\u044b\u0431\u043e\u0440\u0430\u0444\u0430\u0439\u043b\u0430 \u0440\u0435\u0436\u0438\u043c\u043e\u0442\u043a\u0440\u044b\u0442\u0438\u044f\u0444\u0430\u0439\u043b\u0430 \u0442\u0438\u043f\u0438\u0437\u043c\u0435\u0440\u0435\u043d\u0438\u044f\u043f\u043e\u0441\u0442\u0440\u043e\u0438\u0442\u0435\u043b\u044f\u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u0432\u0438\u0434\u0434\u0430\u043d\u043d\u044b\u0445\u0430\u043d\u0430\u043b\u0438\u0437\u0430 \u043c\u0435\u0442\u043e\u0434\u043a\u043b\u0430\u0441\u0442\u0435\u0440\u0438\u0437\u0430\u0446\u0438\u0438 \u0442\u0438\u043f\u0435\u0434\u0438\u043d\u0438\u0446\u044b\u0438\u043d\u0442\u0435\u0440\u0432\u0430\u043b\u0430\u0432\u0440\u0435\u043c\u0435\u043d\u0438\u0430\u043d\u0430\u043b\u0438\u0437\u0430\u0434\u0430\u043d\u043d\u044b\u0445 \u0442\u0438\u043f\u0437\u0430\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f\u0442\u0430\u0431\u043b\u0438\u0446\u044b\u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0430\u0430\u043d\u0430\u043b\u0438\u0437\u0430\u0434\u0430\u043d\u043d\u044b\u0445 \u0442\u0438\u043f\u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f\u0447\u0438\u0441\u043b\u043e\u0432\u044b\u0445\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0439\u0430\u043d\u0430\u043b\u0438\u0437\u0430\u0434\u0430\u043d\u043d\u044b\u0445 \u0442\u0438\u043f\u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u0430\u0434\u0430\u043d\u043d\u044b\u0445\u043f\u043e\u0438\u0441\u043a\u0430\u0430\u0441\u0441\u043e\u0446\u0438\u0430\u0446\u0438\u0439 \u0442\u0438\u043f\u043a\u043e\u043b\u043e\u043d\u043a\u0438\u0430\u043d\u0430\u043b\u0438\u0437\u0430\u0434\u0430\u043d\u043d\u044b\u0445\u0434\u0435\u0440\u0435\u0432\u043e\u0440\u0435\u0448\u0435\u043d\u0438\u0439 \u0442\u0438\u043f\u043a\u043e\u043b\u043e\u043d\u043a\u0438\u0430\u043d\u0430\u043b\u0438\u0437\u0430\u0434\u0430\u043d\u043d\u044b\u0445\u043a\u043b\u0430\u0441\u0442\u0435\u0440\u0438\u0437\u0430\u0446\u0438\u044f \u0442\u0438\u043f\u043a\u043e\u043b\u043e\u043d\u043a\u0438\u0430\u043d\u0430\u043b\u0438\u0437\u0430\u0434\u0430\u043d\u043d\u044b\u0445\u043e\u0431\u0449\u0430\u044f\u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430 \u0442\u0438\u043f\u043a\u043e\u043b\u043e\u043d\u043a\u0438\u0430\u043d\u0430\u043b\u0438\u0437\u0430\u0434\u0430\u043d\u043d\u044b\u0445\u043f\u043e\u0438\u0441\u043a\u0430\u0441\u0441\u043e\u0446\u0438\u0430\u0446\u0438\u0439 \u0442\u0438\u043f\u043a\u043e\u043b\u043e\u043d\u043a\u0438\u0430\u043d\u0430\u043b\u0438\u0437\u0430\u0434\u0430\u043d\u043d\u044b\u0445\u043f\u043e\u0438\u0441\u043a\u043f\u043e\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u0435\u0439 \u0442\u0438\u043f\u043a\u043e\u043b\u043e\u043d\u043a\u0438\u043c\u043e\u0434\u0435\u043b\u0438\u043f\u0440\u043e\u0433\u043d\u043e\u0437\u0430 \u0442\u0438\u043f\u043c\u0435\u0440\u044b\u0440\u0430\u0441\u0441\u0442\u043e\u044f\u043d\u0438\u044f\u0430\u043d\u0430\u043b\u0438\u0437\u0430\u0434\u0430\u043d\u043d\u044b\u0445 \u0442\u0438\u043f\u043e\u0442\u0441\u0435\u0447\u0435\u043d\u0438\u044f\u043f\u0440\u0430\u0432\u0438\u043b\u0430\u0441\u0441\u043e\u0446\u0438\u0430\u0446\u0438\u0438 \u0442\u0438\u043f\u043f\u043e\u043b\u044f\u0430\u043d\u0430\u043b\u0438\u0437\u0430\u0434\u0430\u043d\u043d\u044b\u0445 \u0442\u0438\u043f\u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438\u0437\u0430\u0446\u0438\u0438\u0430\u043d\u0430\u043b\u0438\u0437\u0430\u0434\u0430\u043d\u043d\u044b\u0445 \u0442\u0438\u043f\u0443\u043f\u043e\u0440\u044f\u0434\u043e\u0447\u0438\u0432\u0430\u043d\u0438\u044f\u043f\u0440\u0430\u0432\u0438\u043b\u0430\u0441\u0441\u043e\u0446\u0438\u0430\u0446\u0438\u0438\u0430\u043d\u0430\u043b\u0438\u0437\u0430\u0434\u0430\u043d\u043d\u044b\u0445 \u0442\u0438\u043f\u0443\u043f\u043e\u0440\u044f\u0434\u043e\u0447\u0438\u0432\u0430\u043d\u0438\u044f\u0448\u0430\u0431\u043b\u043e\u043d\u043e\u0432\u043f\u043e\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u0435\u0439\u0430\u043d\u0430\u043b\u0438\u0437\u0430\u0434\u0430\u043d\u043d\u044b\u0445 \u0442\u0438\u043f\u0443\u043f\u0440\u043e\u0449\u0435\u043d\u0438\u044f\u0434\u0435\u0440\u0435\u0432\u0430\u0440\u0435\u0448\u0435\u043d\u0438\u0439 ws\u043d\u0430\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435\u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0430 \u0432\u0430\u0440\u0438\u0430\u043d\u0442xpathxs \u0432\u0430\u0440\u0438\u0430\u043d\u0442\u0437\u0430\u043f\u0438\u0441\u0438\u0434\u0430\u0442\u044bjson \u0432\u0430\u0440\u0438\u0430\u043d\u0442\u043f\u0440\u043e\u0441\u0442\u043e\u0433\u043e\u0442\u0438\u043f\u0430xs \u0432\u0438\u0434\u0433\u0440\u0443\u043f\u043f\u044b\u043c\u043e\u0434\u0435\u043b\u0438xs \u0432\u0438\u0434\u0444\u0430\u0441\u0435\u0442\u0430xdto \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435\u043f\u043e\u0441\u0442\u0440\u043e\u0438\u0442\u0435\u043b\u044fdom \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u043d\u043e\u0441\u0442\u044c\u043f\u0440\u043e\u0441\u0442\u043e\u0433\u043e\u0442\u0438\u043f\u0430xs \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u043d\u043e\u0441\u0442\u044c\u0441\u043e\u0441\u0442\u0430\u0432\u043d\u043e\u0433\u043e\u0442\u0438\u043f\u0430xs \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u043d\u043e\u0441\u0442\u044c\u0441\u0445\u0435\u043c\u044bxs \u0437\u0430\u043f\u0440\u0435\u0449\u0435\u043d\u043d\u044b\u0435\u043f\u043e\u0434\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0438xs \u0438\u0441\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f\u0433\u0440\u0443\u043f\u043f\u043f\u043e\u0434\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0438xs \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f\u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f\u0430\u0442\u0440\u0438\u0431\u0443\u0442\u0430xs \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f\u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f\u0438\u0434\u0435\u043d\u0442\u0438\u0447\u043d\u043e\u0441\u0442\u0438xs \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f\u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f\u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u0438\u043c\u0435\u043dxs \u043c\u0435\u0442\u043e\u0434\u043d\u0430\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u043d\u0438\u044fxs \u043c\u043e\u0434\u0435\u043b\u044c\u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0433\u043exs \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435\u0442\u0438\u043f\u0430xml \u043d\u0435\u0434\u043e\u043f\u0443\u0441\u0442\u0438\u043c\u044b\u0435\u043f\u043e\u0434\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0438xs \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0430\u043f\u0440\u043e\u0431\u0435\u043b\u044c\u043d\u044b\u0445\u0441\u0438\u043c\u0432\u043e\u043b\u043e\u0432xs \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0430\u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0433\u043exs \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044fxs \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b\u043e\u0442\u0431\u043e\u0440\u0430\u0443\u0437\u043b\u043e\u0432dom \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0441\u0442\u0440\u043e\u043ajson \u043f\u043e\u0437\u0438\u0446\u0438\u044f\u0432\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0435dom \u043f\u0440\u043e\u0431\u0435\u043b\u044c\u043d\u044b\u0435\u0441\u0438\u043c\u0432\u043e\u043b\u044bxml \u0442\u0438\u043f\u0430\u0442\u0440\u0438\u0431\u0443\u0442\u0430xml \u0442\u0438\u043f\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044fjson \u0442\u0438\u043f\u043a\u0430\u043d\u043e\u043d\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043exml \u0442\u0438\u043f\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044bxs \u0442\u0438\u043f\u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0438xml \u0442\u0438\u043f\u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0430domxpath \u0442\u0438\u043f\u0443\u0437\u043b\u0430dom \u0442\u0438\u043f\u0443\u0437\u043b\u0430xml \u0444\u043e\u0440\u043c\u0430xml \u0444\u043e\u0440\u043c\u0430\u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044fxs \u0444\u043e\u0440\u043c\u0430\u0442\u0434\u0430\u0442\u044bjson \u044d\u043a\u0440\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435\u0441\u0438\u043c\u0432\u043e\u043b\u043e\u0432json \u0432\u0438\u0434\u0441\u0440\u0430\u0432\u043d\u0435\u043d\u0438\u044f\u043a\u043e\u043c\u043f\u043e\u043d\u043e\u0432\u043a\u0438\u0434\u0430\u043d\u043d\u044b\u0445 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435\u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0438\u0440\u0430\u0441\u0448\u0438\u0444\u0440\u043e\u0432\u043a\u0438\u043a\u043e\u043c\u043f\u043e\u043d\u043e\u0432\u043a\u0438\u0434\u0430\u043d\u043d\u044b\u0445 \u043d\u0430\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435\u0441\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u043a\u0438\u043a\u043e\u043c\u043f\u043e\u043d\u043e\u0432\u043a\u0438\u0434\u0430\u043d\u043d\u044b\u0445 \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435\u0432\u043b\u043e\u0436\u0435\u043d\u043d\u044b\u0445\u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432\u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0430\u043a\u043e\u043c\u043f\u043e\u043d\u043e\u0432\u043a\u0438\u0434\u0430\u043d\u043d\u044b\u0445 \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435\u0438\u0442\u043e\u0433\u043e\u0432\u043a\u043e\u043c\u043f\u043e\u043d\u043e\u0432\u043a\u0438\u0434\u0430\u043d\u043d\u044b\u0445 \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435\u0433\u0440\u0443\u043f\u043f\u0438\u0440\u043e\u0432\u043a\u0438\u043a\u043e\u043c\u043f\u043e\u043d\u043e\u0432\u043a\u0438\u0434\u0430\u043d\u043d\u044b\u0445 \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435\u043f\u043e\u043b\u0435\u0439\u0433\u0440\u0443\u043f\u043f\u0438\u0440\u043e\u0432\u043a\u0438\u043a\u043e\u043c\u043f\u043e\u043d\u043e\u0432\u043a\u0438\u0434\u0430\u043d\u043d\u044b\u0445 \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435\u043f\u043e\u043b\u044f\u043a\u043e\u043c\u043f\u043e\u043d\u043e\u0432\u043a\u0438\u0434\u0430\u043d\u043d\u044b\u0445 \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435\u0440\u0435\u043a\u0432\u0438\u0437\u0438\u0442\u043e\u0432\u043a\u043e\u043c\u043f\u043e\u043d\u043e\u0432\u043a\u0438\u0434\u0430\u043d\u043d\u044b\u0445 \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435\u0440\u0435\u0441\u0443\u0440\u0441\u043e\u0432\u043a\u043e\u043c\u043f\u043e\u043d\u043e\u0432\u043a\u0438\u0434\u0430\u043d\u043d\u044b\u0445 \u0442\u0438\u043f\u0431\u0443\u0445\u0433\u0430\u043b\u0442\u0435\u0440\u0441\u043a\u043e\u0433\u043e\u043e\u0441\u0442\u0430\u0442\u043a\u0430\u043a\u043e\u043c\u043f\u043e\u043d\u043e\u0432\u043a\u0438\u0434\u0430\u043d\u043d\u044b\u0445 \u0442\u0438\u043f\u0432\u044b\u0432\u043e\u0434\u0430\u0442\u0435\u043a\u0441\u0442\u0430\u043a\u043e\u043c\u043f\u043e\u043d\u043e\u0432\u043a\u0438\u0434\u0430\u043d\u043d\u044b\u0445 \u0442\u0438\u043f\u0433\u0440\u0443\u043f\u043f\u0438\u0440\u043e\u0432\u043a\u0438\u043a\u043e\u043c\u043f\u043e\u043d\u043e\u0432\u043a\u0438\u0434\u0430\u043d\u043d\u044b\u0445 \u0442\u0438\u043f\u0433\u0440\u0443\u043f\u043f\u044b\u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432\u043e\u0442\u0431\u043e\u0440\u0430\u043a\u043e\u043c\u043f\u043e\u043d\u043e\u0432\u043a\u0438\u0434\u0430\u043d\u043d\u044b\u0445 \u0442\u0438\u043f\u0434\u043e\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f\u043f\u0435\u0440\u0438\u043e\u0434\u0430\u043a\u043e\u043c\u043f\u043e\u043d\u043e\u0432\u043a\u0438\u0434\u0430\u043d\u043d\u044b\u0445 \u0442\u0438\u043f\u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0430\u043f\u043e\u043b\u0435\u0439\u043a\u043e\u043c\u043f\u043e\u043d\u043e\u0432\u043a\u0438\u0434\u0430\u043d\u043d\u044b\u0445 \u0442\u0438\u043f\u043c\u0430\u043a\u0435\u0442\u0430\u0433\u0440\u0443\u043f\u043f\u0438\u0440\u043e\u0432\u043a\u0438\u043a\u043e\u043c\u043f\u043e\u043d\u043e\u0432\u043a\u0438\u0434\u0430\u043d\u043d\u044b\u0445 \u0442\u0438\u043f\u043c\u0430\u043a\u0435\u0442\u0430\u043e\u0431\u043b\u0430\u0441\u0442\u0438\u043a\u043e\u043c\u043f\u043e\u043d\u043e\u0432\u043a\u0438\u0434\u0430\u043d\u043d\u044b\u0445 \u0442\u0438\u043f\u043e\u0441\u0442\u0430\u0442\u043a\u0430\u043a\u043e\u043c\u043f\u043e\u043d\u043e\u0432\u043a\u0438\u0434\u0430\u043d\u043d\u044b\u0445 \u0442\u0438\u043f\u043f\u0435\u0440\u0438\u043e\u0434\u0430\u043a\u043e\u043c\u043f\u043e\u043d\u043e\u0432\u043a\u0438\u0434\u0430\u043d\u043d\u044b\u0445 \u0442\u0438\u043f\u0440\u0430\u0437\u043c\u0435\u0449\u0435\u043d\u0438\u044f\u0442\u0435\u043a\u0441\u0442\u0430\u043a\u043e\u043c\u043f\u043e\u043d\u043e\u0432\u043a\u0438\u0434\u0430\u043d\u043d\u044b\u0445 \u0442\u0438\u043f\u0441\u0432\u044f\u0437\u0438\u043d\u0430\u0431\u043e\u0440\u043e\u0432\u0434\u0430\u043d\u043d\u044b\u0445\u043a\u043e\u043c\u043f\u043e\u043d\u043e\u0432\u043a\u0438\u0434\u0430\u043d\u043d\u044b\u0445 \u0442\u0438\u043f\u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430\u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0430\u043a\u043e\u043c\u043f\u043e\u043d\u043e\u0432\u043a\u0438\u0434\u0430\u043d\u043d\u044b\u0445 \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435\u043b\u0435\u0433\u0435\u043d\u0434\u044b\u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u044b\u043a\u043e\u043c\u043f\u043e\u043d\u043e\u0432\u043a\u0438\u0434\u0430\u043d\u043d\u044b\u0445 \u0442\u0438\u043f\u043f\u0440\u0438\u043c\u0435\u043d\u0435\u043d\u0438\u044f\u043e\u0442\u0431\u043e\u0440\u0430\u043a\u043e\u043c\u043f\u043e\u043d\u043e\u0432\u043a\u0438\u0434\u0430\u043d\u043d\u044b\u0445 \u0440\u0435\u0436\u0438\u043c\u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f\u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430\u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438\u043a\u043e\u043c\u043f\u043e\u043d\u043e\u0432\u043a\u0438\u0434\u0430\u043d\u043d\u044b\u0445 \u0440\u0435\u0436\u0438\u043c\u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f\u043d\u0430\u0441\u0442\u0440\u043e\u0435\u043a\u043a\u043e\u043c\u043f\u043e\u043d\u043e\u0432\u043a\u0438\u0434\u0430\u043d\u043d\u044b\u0445 \u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435\u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430\u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438\u043a\u043e\u043c\u043f\u043e\u043d\u043e\u0432\u043a\u0438\u0434\u0430\u043d\u043d\u044b\u0445 \u0441\u043f\u043e\u0441\u043e\u0431\u0432\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f\u043d\u0430\u0441\u0442\u0440\u043e\u0435\u043a\u043a\u043e\u043c\u043f\u043e\u043d\u043e\u0432\u043a\u0438\u0434\u0430\u043d\u043d\u044b\u0445 \u0440\u0435\u0436\u0438\u043c\u043a\u043e\u043c\u043f\u043e\u043d\u043e\u0432\u043a\u0438\u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0430 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435\u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0430\u043a\u043e\u043c\u043f\u043e\u043d\u043e\u0432\u043a\u0438\u0434\u0430\u043d\u043d\u044b\u0445 \u0430\u0432\u0442\u043e\u043f\u043e\u0437\u0438\u0446\u0438\u044f\u0440\u0435\u0441\u0443\u0440\u0441\u043e\u0432\u043a\u043e\u043c\u043f\u043e\u043d\u043e\u0432\u043a\u0438\u0434\u0430\u043d\u043d\u044b\u0445 \u0432\u0430\u0440\u0438\u0430\u043d\u0442\u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f\u0433\u0440\u0443\u043f\u043f\u0438\u0440\u043e\u0432\u043a\u0438\u043a\u043e\u043c\u043f\u043e\u043d\u043e\u0432\u043a\u0438\u0434\u0430\u043d\u043d\u044b\u0445 \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435\u0440\u0435\u0441\u0443\u0440\u0441\u043e\u0432\u0432\u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u0435\u043a\u043e\u043c\u043f\u043e\u043d\u043e\u0432\u043a\u0438\u0434\u0430\u043d\u043d\u044b\u0445 \u0444\u0438\u043a\u0441\u0430\u0446\u0438\u044f\u043a\u043e\u043c\u043f\u043e\u043d\u043e\u0432\u043a\u0438\u0434\u0430\u043d\u043d\u044b\u0445 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435\u0443\u0441\u043b\u043e\u0432\u043d\u043e\u0433\u043e\u043e\u0444\u043e\u0440\u043c\u043b\u0435\u043d\u0438\u044f\u043a\u043e\u043c\u043f\u043e\u043d\u043e\u0432\u043a\u0438\u0434\u0430\u043d\u043d\u044b\u0445 \u0432\u0430\u0436\u043d\u043e\u0441\u0442\u044c\u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u043f\u043e\u0447\u0442\u043e\u0432\u043e\u0433\u043e\u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0430\u0442\u0435\u043a\u0441\u0442\u0430\u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u043f\u043e\u0447\u0442\u043e\u0432\u043e\u0433\u043e\u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f \u0441\u043f\u043e\u0441\u043e\u0431\u043a\u043e\u0434\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f\u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u043f\u043e\u0447\u0442\u043e\u0432\u043e\u0433\u043e\u0432\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u0441\u043f\u043e\u0441\u043e\u0431\u043a\u043e\u0434\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f\u043d\u0435ascii\u0441\u0438\u043c\u0432\u043e\u043b\u043e\u0432\u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u043f\u043e\u0447\u0442\u043e\u0432\u043e\u0433\u043e\u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f \u0442\u0438\u043f\u0442\u0435\u043a\u0441\u0442\u0430\u043f\u043e\u0447\u0442\u043e\u0432\u043e\u0433\u043e\u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f \u043f\u0440\u043e\u0442\u043e\u043a\u043e\u043b\u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u043f\u043e\u0447\u0442\u044b \u0441\u0442\u0430\u0442\u0443\u0441\u0440\u0430\u0437\u0431\u043e\u0440\u0430\u043f\u043e\u0447\u0442\u043e\u0432\u043e\u0433\u043e\u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f \u0440\u0435\u0436\u0438\u043c\u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u0438\u0437\u0430\u043f\u0438\u0441\u0438\u0436\u0443\u0440\u043d\u0430\u043b\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438 \u0441\u0442\u0430\u0442\u0443\u0441\u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u0438\u0437\u0430\u043f\u0438\u0441\u0438\u0436\u0443\u0440\u043d\u0430\u043b\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438 \u0443\u0440\u043e\u0432\u0435\u043d\u044c\u0436\u0443\u0440\u043d\u0430\u043b\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438 \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435\u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0430\u0441\u0435\u0440\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0432\u043a\u0440\u0438\u043f\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u0438 \u0440\u0435\u0436\u0438\u043c\u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f\u0441\u0435\u0440\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0432\u043a\u0440\u0438\u043f\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u0438 \u0440\u0435\u0436\u0438\u043c\u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0438\u0441\u0435\u0440\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u0430\u043a\u0440\u0438\u043f\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u0438 \u0442\u0438\u043f\u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0430\u0441\u0435\u0440\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0432\u043a\u0440\u0438\u043f\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u0438 \u043a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0430\u0438\u043c\u0435\u043d\u0444\u0430\u0439\u043b\u043e\u0432\u0432zip\u0444\u0430\u0439\u043b\u0435 \u043c\u0435\u0442\u043e\u0434\u0441\u0436\u0430\u0442\u0438\u044fzip \u043c\u0435\u0442\u043e\u0434\u0448\u0438\u0444\u0440\u043e\u0432\u0430\u043d\u0438\u044fzip \u0440\u0435\u0436\u0438\u043c\u0432\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f\u043f\u0443\u0442\u0435\u0439\u0444\u0430\u0439\u043b\u043e\u0432zip \u0440\u0435\u0436\u0438\u043c\u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0438\u043f\u043e\u0434\u043a\u0430\u0442\u0430\u043b\u043e\u0433\u043e\u0432zip \u0440\u0435\u0436\u0438\u043c\u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f\u043f\u0443\u0442\u0435\u0439zip \u0443\u0440\u043e\u0432\u0435\u043d\u044c\u0441\u0436\u0430\u0442\u0438\u044fzip \u0437\u0432\u0443\u043a\u043e\u0432\u043e\u0435\u043e\u043f\u043e\u0432\u0435\u0449\u0435\u043d\u0438\u0435 \u043d\u0430\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435\u043f\u0435\u0440\u0435\u0445\u043e\u0434\u0430\u043a\u0441\u0442\u0440\u043e\u043a\u0435 \u043f\u043e\u0437\u0438\u0446\u0438\u044f\u0432\u043f\u043e\u0442\u043e\u043a\u0435 \u043f\u043e\u0440\u044f\u0434\u043e\u043a\u0431\u0430\u0439\u0442\u043e\u0432 \u0440\u0435\u0436\u0438\u043c\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0438\u0434\u0430\u043d\u043d\u044b\u0445 \u0440\u0435\u0436\u0438\u043c\u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u043e\u0439\u0434\u0430\u043d\u043d\u044b\u0445 \u0441\u0435\u0440\u0432\u0438\u0441\u0432\u0441\u0442\u0440\u043e\u0435\u043d\u043d\u044b\u0445\u043f\u043e\u043a\u0443\u043f\u043e\u043a \u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435\u0444\u043e\u043d\u043e\u0432\u043e\u0433\u043e\u0437\u0430\u0434\u0430\u043d\u0438\u044f \u0442\u0438\u043f\u043f\u043e\u0434\u043f\u0438\u0441\u0447\u0438\u043a\u0430\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u043c\u044b\u0445\u0443\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u0439 \u0443\u0440\u043e\u0432\u0435\u043d\u044c\u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f\u0437\u0430\u0449\u0438\u0449\u0435\u043d\u043d\u043e\u0433\u043e\u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u044fftp \u043d\u0430\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435\u043f\u043e\u0440\u044f\u0434\u043a\u0430\u0441\u0445\u0435\u043c\u044b\u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u0442\u0438\u043f\u0434\u043e\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f\u043f\u0435\u0440\u0438\u043e\u0434\u0430\u043c\u0438\u0441\u0445\u0435\u043c\u044b\u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u0442\u0438\u043f\u043a\u043e\u043d\u0442\u0440\u043e\u043b\u044c\u043d\u043e\u0439\u0442\u043e\u0447\u043a\u0438\u0441\u0445\u0435\u043c\u044b\u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u0442\u0438\u043f\u043e\u0431\u044a\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u044f\u0441\u0445\u0435\u043c\u044b\u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u0442\u0438\u043f\u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0430\u0434\u043e\u0441\u0442\u0443\u043f\u043d\u043e\u0439\u0442\u0430\u0431\u043b\u0438\u0446\u044b\u0441\u0445\u0435\u043c\u044b\u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u0442\u0438\u043f\u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u044f\u0441\u0445\u0435\u043c\u044b\u0437\u0430\u043f\u0440\u043e\u0441\u0430 http\u043c\u0435\u0442\u043e\u0434 \u0430\u0432\u0442\u043e\u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435\u043e\u0431\u0449\u0435\u0433\u043e\u0440\u0435\u043a\u0432\u0438\u0437\u0438\u0442\u0430 \u0430\u0432\u0442\u043e\u043f\u0440\u0435\u0444\u0438\u043a\u0441\u043d\u043e\u043c\u0435\u0440\u0430\u0437\u0430\u0434\u0430\u0447\u0438 \u0432\u0430\u0440\u0438\u0430\u043d\u0442\u0432\u0441\u0442\u0440\u043e\u0435\u043d\u043d\u043e\u0433\u043e\u044f\u0437\u044b\u043a\u0430 \u0432\u0438\u0434\u0438\u0435\u0440\u0430\u0440\u0445\u0438\u0438 \u0432\u0438\u0434\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u043d\u0430\u043a\u043e\u043f\u043b\u0435\u043d\u0438\u044f \u0432\u0438\u0434\u0442\u0430\u0431\u043b\u0438\u0446\u044b\u0432\u043d\u0435\u0448\u043d\u0435\u0433\u043e\u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u0430\u0434\u0430\u043d\u043d\u044b\u0445 \u0437\u0430\u043f\u0438\u0441\u044c\u0434\u0432\u0438\u0436\u0435\u043d\u0438\u0439\u043f\u0440\u0438\u043f\u0440\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u0438 \u0437\u0430\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u0435\u043f\u043e\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u0435\u0439 \u0438\u043d\u0434\u0435\u043a\u0441\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435\u0431\u0430\u0437\u044b\u043f\u043b\u0430\u043d\u0430\u0432\u0438\u0434\u043e\u0432\u0440\u0430\u0441\u0447\u0435\u0442\u0430 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435\u0431\u044b\u0441\u0442\u0440\u043e\u0433\u043e\u0432\u044b\u0431\u043e\u0440\u0430 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435\u043e\u0431\u0449\u0435\u0433\u043e\u0440\u0435\u043a\u0432\u0438\u0437\u0438\u0442\u0430 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435\u043f\u043e\u0434\u0447\u0438\u043d\u0435\u043d\u0438\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435\u043f\u043e\u043b\u043d\u043e\u0442\u0435\u043a\u0441\u0442\u043e\u0432\u043e\u0433\u043e\u043f\u043e\u0438\u0441\u043a\u0430 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435\u0440\u0430\u0437\u0434\u0435\u043b\u044f\u0435\u043c\u044b\u0445\u0434\u0430\u043d\u043d\u044b\u0445\u043e\u0431\u0449\u0435\u0433\u043e\u0440\u0435\u043a\u0432\u0438\u0437\u0438\u0442\u0430 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435\u0440\u0435\u043a\u0432\u0438\u0437\u0438\u0442\u0430 \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435\u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435\u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u044f\u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0438 \u043d\u0430\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435\u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0438 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435\u043f\u0440\u0435\u0434\u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u043d\u044b\u0445\u0434\u0430\u043d\u043d\u044b\u0445 \u043e\u043f\u0435\u0440\u0430\u0442\u0438\u0432\u043d\u043e\u0435\u043f\u0440\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u0435 \u043e\u0441\u043d\u043e\u0432\u043d\u043e\u0435\u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u0435\u0432\u0438\u0434\u0430\u0440\u0430\u0441\u0447\u0435\u0442\u0430 \u043e\u0441\u043d\u043e\u0432\u043d\u043e\u0435\u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u0435\u0432\u0438\u0434\u0430\u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0438\u0441\u0442\u0438\u043a\u0438 \u043e\u0441\u043d\u043e\u0432\u043d\u043e\u0435\u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u0435\u0437\u0430\u0434\u0430\u0447\u0438 \u043e\u0441\u043d\u043e\u0432\u043d\u043e\u0435\u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u0435\u043f\u043b\u0430\u043d\u0430\u043e\u0431\u043c\u0435\u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u043d\u043e\u0435\u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u0435\u0441\u043f\u0440\u0430\u0432\u043e\u0447\u043d\u0438\u043a\u0430 \u043e\u0441\u043d\u043e\u0432\u043d\u043e\u0435\u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u0435\u0441\u0447\u0435\u0442\u0430 \u043f\u0435\u0440\u0435\u043c\u0435\u0449\u0435\u043d\u0438\u0435\u0433\u0440\u0430\u043d\u0438\u0446\u044b\u043f\u0440\u0438\u043f\u0440\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u0438 \u043f\u0435\u0440\u0438\u043e\u0434\u0438\u0447\u043d\u043e\u0441\u0442\u044c\u043d\u043e\u043c\u0435\u0440\u0430\u0431\u0438\u0437\u043d\u0435\u0441\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430 \u043f\u0435\u0440\u0438\u043e\u0434\u0438\u0447\u043d\u043e\u0441\u0442\u044c\u043d\u043e\u043c\u0435\u0440\u0430\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430 \u043f\u0435\u0440\u0438\u043e\u0434\u0438\u0447\u043d\u043e\u0441\u0442\u044c\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0440\u0430\u0441\u0447\u0435\u0442\u0430 \u043f\u0435\u0440\u0438\u043e\u0434\u0438\u0447\u043d\u043e\u0441\u0442\u044c\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0441\u0432\u0435\u0434\u0435\u043d\u0438\u0439 \u043f\u043e\u0432\u0442\u043e\u0440\u043d\u043e\u0435\u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435\u0432\u043e\u0437\u0432\u0440\u0430\u0449\u0430\u0435\u043c\u044b\u0445\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0439 \u043f\u043e\u043b\u043d\u043e\u0442\u0435\u043a\u0441\u0442\u043e\u0432\u044b\u0439\u043f\u043e\u0438\u0441\u043a\u043f\u0440\u0438\u0432\u0432\u043e\u0434\u0435\u043f\u043e\u0441\u0442\u0440\u043e\u043a\u0435 \u043f\u0440\u0438\u043d\u0430\u0434\u043b\u0435\u0436\u043d\u043e\u0441\u0442\u044c\u043e\u0431\u044a\u0435\u043a\u0442\u0430 \u043f\u0440\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u0435 \u0440\u0430\u0437\u0434\u0435\u043b\u0435\u043d\u0438\u0435\u0430\u0443\u0442\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438\u043e\u0431\u0449\u0435\u0433\u043e\u0440\u0435\u043a\u0432\u0438\u0437\u0438\u0442\u0430 \u0440\u0430\u0437\u0434\u0435\u043b\u0435\u043d\u0438\u0435\u0434\u0430\u043d\u043d\u044b\u0445\u043e\u0431\u0449\u0435\u0433\u043e\u0440\u0435\u043a\u0432\u0438\u0437\u0438\u0442\u0430 \u0440\u0430\u0437\u0434\u0435\u043b\u0435\u043d\u0438\u0435\u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u0439\u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0438\u043e\u0431\u0449\u0435\u0433\u043e\u0440\u0435\u043a\u0432\u0438\u0437\u0438\u0442\u0430 \u0440\u0435\u0436\u0438\u043c\u0430\u0432\u0442\u043e\u043d\u0443\u043c\u0435\u0440\u0430\u0446\u0438\u0438\u043e\u0431\u044a\u0435\u043a\u0442\u043e\u0432 \u0440\u0435\u0436\u0438\u043c\u0437\u0430\u043f\u0438\u0441\u0438\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430 \u0440\u0435\u0436\u0438\u043c\u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f\u043c\u043e\u0434\u0430\u043b\u044c\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u0436\u0438\u043c\u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f\u0441\u0438\u043d\u0445\u0440\u043e\u043d\u043d\u044b\u0445\u0432\u044b\u0437\u043e\u0432\u043e\u0432\u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u0439\u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u044b\u0438\u0432\u043d\u0435\u0448\u043d\u0438\u0445\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442 \u0440\u0435\u0436\u0438\u043c\u043f\u043e\u0432\u0442\u043e\u0440\u043d\u043e\u0433\u043e\u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f\u0441\u0435\u0430\u043d\u0441\u043e\u0432 \u0440\u0435\u0436\u0438\u043c\u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f\u0434\u0430\u043d\u043d\u044b\u0445\u0432\u044b\u0431\u043e\u0440\u0430\u043f\u0440\u0438\u0432\u0432\u043e\u0434\u0435\u043f\u043e\u0441\u0442\u0440\u043e\u043a\u0435 \u0440\u0435\u0436\u0438\u043c\u0441\u043e\u0432\u043c\u0435\u0441\u0442\u0438\u043c\u043e\u0441\u0442\u0438 \u0440\u0435\u0436\u0438\u043c\u0441\u043e\u0432\u043c\u0435\u0441\u0442\u0438\u043c\u043e\u0441\u0442\u0438\u0438\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441\u0430 \u0440\u0435\u0436\u0438\u043c\u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u043e\u0439\u0434\u0430\u043d\u043d\u044b\u0445\u043f\u043e\u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e \u0441\u0435\u0440\u0438\u0438\u043a\u043e\u0434\u043e\u0432\u043f\u043b\u0430\u043d\u0430\u0432\u0438\u0434\u043e\u0432\u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0438\u0441\u0442\u0438\u043a \u0441\u0435\u0440\u0438\u0438\u043a\u043e\u0434\u043e\u0432\u043f\u043b\u0430\u043d\u0430\u0441\u0447\u0435\u0442\u043e\u0432 \u0441\u0435\u0440\u0438\u0438\u043a\u043e\u0434\u043e\u0432\u0441\u043f\u0440\u0430\u0432\u043e\u0447\u043d\u0438\u043a\u0430 \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u0435\u043f\u0440\u0438\u0432\u0432\u043e\u0434\u0435 \u0441\u043f\u043e\u0441\u043e\u0431\u0432\u044b\u0431\u043e\u0440\u0430 \u0441\u043f\u043e\u0441\u043e\u0431\u043f\u043e\u0438\u0441\u043a\u0430\u0441\u0442\u0440\u043e\u043a\u0438\u043f\u0440\u0438\u0432\u0432\u043e\u0434\u0435\u043f\u043e\u0441\u0442\u0440\u043e\u043a\u0435 \u0441\u043f\u043e\u0441\u043e\u0431\u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u0442\u0438\u043f\u0434\u0430\u043d\u043d\u044b\u0445\u0442\u0430\u0431\u043b\u0438\u0446\u044b\u0432\u043d\u0435\u0448\u043d\u0435\u0433\u043e\u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u0430\u0434\u0430\u043d\u043d\u044b\u0445 \u0442\u0438\u043f\u043a\u043e\u0434\u0430\u043f\u043b\u0430\u043d\u0430\u0432\u0438\u0434\u043e\u0432\u0440\u0430\u0441\u0447\u0435\u0442\u0430 \u0442\u0438\u043f\u043a\u043e\u0434\u0430\u0441\u043f\u0440\u0430\u0432\u043e\u0447\u043d\u0438\u043a\u0430 \u0442\u0438\u043f\u043c\u0430\u043a\u0435\u0442\u0430 \u0442\u0438\u043f\u043d\u043e\u043c\u0435\u0440\u0430\u0431\u0438\u0437\u043d\u0435\u0441\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430 \u0442\u0438\u043f\u043d\u043e\u043c\u0435\u0440\u0430\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430 \u0442\u0438\u043f\u043d\u043e\u043c\u0435\u0440\u0430\u0437\u0430\u0434\u0430\u0447\u0438 \u0442\u0438\u043f\u0444\u043e\u0440\u043c\u044b \u0443\u0434\u0430\u043b\u0435\u043d\u0438\u0435\u0434\u0432\u0438\u0436\u0435\u043d\u0438\u0439 \u0432\u0430\u0436\u043d\u043e\u0441\u0442\u044c\u043f\u0440\u043e\u0431\u043b\u0435\u043c\u044b\u043f\u0440\u0438\u043c\u0435\u043d\u0435\u043d\u0438\u044f\u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u044f\u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0438 \u0432\u0430\u0440\u0438\u0430\u043d\u0442\u0438\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441\u0430\u043a\u043b\u0438\u0435\u043d\u0442\u0441\u043a\u043e\u0433\u043e\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u0432\u0430\u0440\u0438\u0430\u043d\u0442\u043c\u0430\u0441\u0448\u0442\u0430\u0431\u0430\u0444\u043e\u0440\u043c\u043a\u043b\u0438\u0435\u043d\u0442\u0441\u043a\u043e\u0433\u043e\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u0432\u0430\u0440\u0438\u0430\u043d\u0442\u043e\u0441\u043d\u043e\u0432\u043d\u043e\u0433\u043e\u0448\u0440\u0438\u0444\u0442\u0430\u043a\u043b\u0438\u0435\u043d\u0442\u0441\u043a\u043e\u0433\u043e\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u0432\u0430\u0440\u0438\u0430\u043d\u0442\u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u043e\u0433\u043e\u043f\u0435\u0440\u0438\u043e\u0434\u0430 \u0432\u0430\u0440\u0438\u0430\u043d\u0442\u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u043e\u0439\u0434\u0430\u0442\u044b\u043d\u0430\u0447\u0430\u043b\u0430 \u0432\u0438\u0434\u0433\u0440\u0430\u043d\u0438\u0446\u044b \u0432\u0438\u0434\u043a\u0430\u0440\u0442\u0438\u043d\u043a\u0438 \u0432\u0438\u0434\u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f\u043f\u043e\u043b\u043d\u043e\u0442\u0435\u043a\u0441\u0442\u043e\u0432\u043e\u0433\u043e\u043f\u043e\u0438\u0441\u043a\u0430 \u0432\u0438\u0434\u0440\u0430\u043c\u043a\u0438 \u0432\u0438\u0434\u0441\u0440\u0430\u0432\u043d\u0435\u043d\u0438\u044f \u0432\u0438\u0434\u0446\u0432\u0435\u0442\u0430 \u0432\u0438\u0434\u0447\u0438\u0441\u043b\u043e\u0432\u043e\u0433\u043e\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f \u0432\u0438\u0434\u0448\u0440\u0438\u0444\u0442\u0430 \u0434\u043e\u043f\u0443\u0441\u0442\u0438\u043c\u0430\u044f\u0434\u043b\u0438\u043d\u0430 \u0434\u043e\u043f\u0443\u0441\u0442\u0438\u043c\u044b\u0439\u0437\u043d\u0430\u043a \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435byteordermark \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435\u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445\u043f\u043e\u043b\u043d\u043e\u0442\u0435\u043a\u0441\u0442\u043e\u0432\u043e\u0433\u043e\u043f\u043e\u0438\u0441\u043a\u0430 \u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u0439\u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0438 \u043a\u043b\u0430\u0432\u0438\u0448\u0430 \u043a\u043e\u0434\u0432\u043e\u0437\u0432\u0440\u0430\u0442\u0430\u0434\u0438\u0430\u043b\u043e\u0433\u0430 \u043a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0430xbase \u043a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0430\u0442\u0435\u043a\u0441\u0442\u0430 \u043d\u0430\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435\u043f\u043e\u0438\u0441\u043a\u0430 \u043d\u0430\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435\u0441\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u043a\u0438 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435\u043f\u0440\u0435\u0434\u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u043d\u044b\u0445\u0434\u0430\u043d\u043d\u044b\u0445 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435\u043f\u0440\u0438\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0438\u0434\u0430\u043d\u043d\u044b\u0445 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435\u043f\u0430\u043d\u0435\u043b\u0438\u0440\u0430\u0437\u0434\u0435\u043b\u043e\u0432 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430\u0437\u0430\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u0440\u0435\u0436\u0438\u043c\u0434\u0438\u0430\u043b\u043e\u0433\u0430\u0432\u043e\u043f\u0440\u043e\u0441 \u0440\u0435\u0436\u0438\u043c\u0437\u0430\u043f\u0443\u0441\u043a\u0430\u043a\u043b\u0438\u0435\u043d\u0442\u0441\u043a\u043e\u0433\u043e\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u0440\u0435\u0436\u0438\u043c\u043e\u043a\u0440\u0443\u0433\u043b\u0435\u043d\u0438\u044f \u0440\u0435\u0436\u0438\u043c\u043e\u0442\u043a\u0440\u044b\u0442\u0438\u044f\u0444\u043e\u0440\u043c\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u0440\u0435\u0436\u0438\u043c\u043f\u043e\u043b\u043d\u043e\u0442\u0435\u043a\u0441\u0442\u043e\u0432\u043e\u0433\u043e\u043f\u043e\u0438\u0441\u043a\u0430 \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u044c\u043a\u043b\u0438\u0435\u043d\u0442\u0441\u043a\u043e\u0433\u043e\u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u044f \u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435\u0432\u043d\u0435\u0448\u043d\u0435\u0433\u043e\u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u0430\u0434\u0430\u043d\u043d\u044b\u0445 \u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435\u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f\u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0438\u0431\u0430\u0437\u044b\u0434\u0430\u043d\u043d\u044b\u0445 \u0441\u043f\u043e\u0441\u043e\u0431\u0432\u044b\u0431\u043e\u0440\u0430\u0441\u0435\u0440\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u0430windows \u0441\u043f\u043e\u0441\u043e\u0431\u043a\u043e\u0434\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f\u0441\u0442\u0440\u043e\u043a\u0438 \u0441\u0442\u0430\u0442\u0443\u0441\u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f \u0442\u0438\u043f\u0432\u043d\u0435\u0448\u043d\u0435\u0439\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b \u0442\u0438\u043f\u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u044b \u0442\u0438\u043f\u043f\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u044f\u043a\u043b\u0430\u0432\u0438\u0448\u0438enter \u0442\u0438\u043f\u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430\u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438\u043e\u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u0438\u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f\u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0438\u0431\u0430\u0437\u044b\u0434\u0430\u043d\u043d\u044b\u0445 \u0443\u0440\u043e\u0432\u0435\u043d\u044c\u0438\u0437\u043e\u043b\u044f\u0446\u0438\u0438\u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u0439 \u0445\u0435\u0448\u0444\u0443\u043d\u043a\u0446\u0438\u044f \u0447\u0430\u0441\u0442\u0438\u0434\u0430\u0442\u044b","type","com\u043e\u0431\u044a\u0435\u043a\u0442 ftp\u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u0435 http\u0437\u0430\u043f\u0440\u043e\u0441 http\u0441\u0435\u0440\u0432\u0438\u0441\u043e\u0442\u0432\u0435\u0442 http\u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u0435 ws\u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044f ws\u043f\u0440\u043e\u043a\u0441\u0438 xbase \u0430\u043d\u0430\u043b\u0438\u0437\u0434\u0430\u043d\u043d\u044b\u0445 \u0430\u043d\u043d\u043e\u0442\u0430\u0446\u0438\u044fxs \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0430\u0434\u0430\u043d\u043d\u044b\u0445 \u0431\u0443\u0444\u0435\u0440\u0434\u0432\u043e\u0438\u0447\u043d\u044b\u0445\u0434\u0430\u043d\u043d\u044b\u0445 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435xs \u0432\u044b\u0440\u0430\u0436\u0435\u043d\u0438\u0435\u043a\u043e\u043c\u043f\u043e\u043d\u043e\u0432\u043a\u0438\u0434\u0430\u043d\u043d\u044b\u0445 \u0433\u0435\u043d\u0435\u0440\u0430\u0442\u043e\u0440\u0441\u043b\u0443\u0447\u0430\u0439\u043d\u044b\u0445\u0447\u0438\u0441\u0435\u043b \u0433\u0435\u043e\u0433\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043a\u0430\u044f\u0441\u0445\u0435\u043c\u0430 \u0433\u0435\u043e\u0433\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043a\u0438\u0435\u043a\u043e\u043e\u0440\u0434\u0438\u043d\u0430\u0442\u044b \u0433\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043a\u0430\u044f\u0441\u0445\u0435\u043c\u0430 \u0433\u0440\u0443\u043f\u043f\u0430\u043c\u043e\u0434\u0435\u043b\u0438xs \u0434\u0430\u043d\u043d\u044b\u0435\u0440\u0430\u0441\u0448\u0438\u0444\u0440\u043e\u0432\u043a\u0438\u043a\u043e\u043c\u043f\u043e\u043d\u043e\u0432\u043a\u0438\u0434\u0430\u043d\u043d\u044b\u0445 \u0434\u0432\u043e\u0438\u0447\u043d\u044b\u0435\u0434\u0430\u043d\u043d\u044b\u0435 \u0434\u0435\u043d\u0434\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u0430 \u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u0430 \u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u0430\u0433\u0430\u043d\u0442\u0430 \u0434\u0438\u0430\u043b\u043e\u0433\u0432\u044b\u0431\u043e\u0440\u0430\u0444\u0430\u0439\u043b\u0430 \u0434\u0438\u0430\u043b\u043e\u0433\u0432\u044b\u0431\u043e\u0440\u0430\u0446\u0432\u0435\u0442\u0430 \u0434\u0438\u0430\u043b\u043e\u0433\u0432\u044b\u0431\u043e\u0440\u0430\u0448\u0440\u0438\u0444\u0442\u0430 \u0434\u0438\u0430\u043b\u043e\u0433\u0440\u0430\u0441\u043f\u0438\u0441\u0430\u043d\u0438\u044f\u0440\u0435\u0433\u043b\u0430\u043c\u0435\u043d\u0442\u043d\u043e\u0433\u043e\u0437\u0430\u0434\u0430\u043d\u0438\u044f \u0434\u0438\u0430\u043b\u043e\u0433\u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f\u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u043e\u0433\u043e\u043f\u0435\u0440\u0438\u043e\u0434\u0430 \u0434\u0438\u0430\u043f\u0430\u0437\u043e\u043d \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442dom \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442html \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044fxs \u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u043c\u043e\u0435\u0443\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u0435 \u0437\u0430\u043f\u0438\u0441\u044cdom \u0437\u0430\u043f\u0438\u0441\u044cfastinfoset \u0437\u0430\u043f\u0438\u0441\u044chtml \u0437\u0430\u043f\u0438\u0441\u044cjson \u0437\u0430\u043f\u0438\u0441\u044cxml \u0437\u0430\u043f\u0438\u0441\u044czip\u0444\u0430\u0439\u043b\u0430 \u0437\u0430\u043f\u0438\u0441\u044c\u0434\u0430\u043d\u043d\u044b\u0445 \u0437\u0430\u043f\u0438\u0441\u044c\u0442\u0435\u043a\u0441\u0442\u0430 \u0437\u0430\u043f\u0438\u0441\u044c\u0443\u0437\u043b\u043e\u0432dom \u0437\u0430\u043f\u0440\u043e\u0441 \u0437\u0430\u0449\u0438\u0449\u0435\u043d\u043d\u043e\u0435\u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u0435openssl \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f\u043f\u043e\u043b\u0435\u0439\u0440\u0430\u0441\u0448\u0438\u0444\u0440\u043e\u0432\u043a\u0438\u043a\u043e\u043c\u043f\u043e\u043d\u043e\u0432\u043a\u0438\u0434\u0430\u043d\u043d\u044b\u0445 \u0438\u0437\u0432\u043b\u0435\u0447\u0435\u043d\u0438\u0435\u0442\u0435\u043a\u0441\u0442\u0430 \u0438\u043c\u043f\u043e\u0440\u0442xs \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u043f\u043e\u0447\u0442\u0430 \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u043f\u043e\u0447\u0442\u043e\u0432\u043e\u0435\u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435 \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u043f\u043e\u0447\u0442\u043e\u0432\u044b\u0439\u043f\u0440\u043e\u0444\u0438\u043b\u044c \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u043f\u0440\u043e\u043a\u0441\u0438 \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u0435 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f\u0434\u043b\u044f\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044fxs \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435\u0430\u0442\u0440\u0438\u0431\u0443\u0442\u0430xs \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435\u0441\u043e\u0431\u044b\u0442\u0438\u044f\u0436\u0443\u0440\u043d\u0430\u043b\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438 \u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u0445\u043d\u0430\u0441\u0442\u0440\u043e\u0435\u043a\u043a\u043e\u043c\u043f\u043e\u043d\u043e\u0432\u043a\u0438\u0434\u0430\u043d\u043d\u044b\u0445 \u0438\u0442\u0435\u0440\u0430\u0442\u043e\u0440\u0443\u0437\u043b\u043e\u0432dom \u043a\u0430\u0440\u0442\u0438\u043d\u043a\u0430 \u043a\u0432\u0430\u043b\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440\u044b\u0434\u0430\u0442\u044b \u043a\u0432\u0430\u043b\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440\u044b\u0434\u0432\u043e\u0438\u0447\u043d\u044b\u0445\u0434\u0430\u043d\u043d\u044b\u0445 \u043a\u0432\u0430\u043b\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440\u044b\u0441\u0442\u0440\u043e\u043a\u0438 \u043a\u0432\u0430\u043b\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440\u044b\u0447\u0438\u0441\u043b\u0430 \u043a\u043e\u043c\u043f\u043e\u043d\u043e\u0432\u0449\u0438\u043a\u043c\u0430\u043a\u0435\u0442\u0430\u043a\u043e\u043c\u043f\u043e\u043d\u043e\u0432\u043a\u0438\u0434\u0430\u043d\u043d\u044b\u0445 \u043a\u043e\u043c\u043f\u043e\u043d\u043e\u0432\u0449\u0438\u043a\u043d\u0430\u0441\u0442\u0440\u043e\u0435\u043a\u043a\u043e\u043c\u043f\u043e\u043d\u043e\u0432\u043a\u0438\u0434\u0430\u043d\u043d\u044b\u0445 \u043a\u043e\u043d\u0441\u0442\u0440\u0443\u043a\u0442\u043e\u0440\u043c\u0430\u043a\u0435\u0442\u0430\u043e\u0444\u043e\u0440\u043c\u043b\u0435\u043d\u0438\u044f\u043a\u043e\u043c\u043f\u043e\u043d\u043e\u0432\u043a\u0438\u0434\u0430\u043d\u043d\u044b\u0445 \u043a\u043e\u043d\u0441\u0442\u0440\u0443\u043a\u0442\u043e\u0440\u043d\u0430\u0441\u0442\u0440\u043e\u0435\u043a\u043a\u043e\u043c\u043f\u043e\u043d\u043e\u0432\u043a\u0438\u0434\u0430\u043d\u043d\u044b\u0445 \u043a\u043e\u043d\u0441\u0442\u0440\u0443\u043a\u0442\u043e\u0440\u0444\u043e\u0440\u043c\u0430\u0442\u043d\u043e\u0439\u0441\u0442\u0440\u043e\u043a\u0438 \u043b\u0438\u043d\u0438\u044f \u043c\u0430\u043a\u0435\u0442\u043a\u043e\u043c\u043f\u043e\u043d\u043e\u0432\u043a\u0438\u0434\u0430\u043d\u043d\u044b\u0445 \u043c\u0430\u043a\u0435\u0442\u043e\u0431\u043b\u0430\u0441\u0442\u0438\u043a\u043e\u043c\u043f\u043e\u043d\u043e\u0432\u043a\u0438\u0434\u0430\u043d\u043d\u044b\u0445 \u043c\u0430\u043a\u0435\u0442\u043e\u0444\u043e\u0440\u043c\u043b\u0435\u043d\u0438\u044f\u043a\u043e\u043c\u043f\u043e\u043d\u043e\u0432\u043a\u0438\u0434\u0430\u043d\u043d\u044b\u0445 \u043c\u0430\u0441\u043a\u0430xs \u043c\u0435\u043d\u0435\u0434\u0436\u0435\u0440\u043a\u0440\u0438\u043f\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u0438 \u043d\u0430\u0431\u043e\u0440\u0441\u0445\u0435\u043cxml \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438\u043a\u043e\u043c\u043f\u043e\u043d\u043e\u0432\u043a\u0438\u0434\u0430\u043d\u043d\u044b\u0445 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438\u0441\u0435\u0440\u0438\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438json \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0430\u043a\u0430\u0440\u0442\u0438\u043d\u043e\u043a \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0430\u0440\u0430\u0441\u0448\u0438\u0444\u0440\u043e\u0432\u043a\u0438\u043a\u043e\u043c\u043f\u043e\u043d\u043e\u0432\u043a\u0438\u0434\u0430\u043d\u043d\u044b\u0445 \u043e\u0431\u0445\u043e\u0434\u0434\u0435\u0440\u0435\u0432\u0430dom \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0435\u0430\u0442\u0440\u0438\u0431\u0443\u0442\u0430xs \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0435\u043d\u043e\u0442\u0430\u0446\u0438\u0438xs \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0435\u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430xs \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u0435\u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f\u0441\u043e\u0431\u044b\u0442\u0438\u044f\u0434\u043e\u0441\u0442\u0443\u043f\u0436\u0443\u0440\u043d\u0430\u043b\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438 \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u0435\u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f\u0441\u043e\u0431\u044b\u0442\u0438\u044f\u043e\u0442\u043a\u0430\u0437\u0432\u0434\u043e\u0441\u0442\u0443\u043f\u0435\u0436\u0443\u0440\u043d\u0430\u043b\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438 \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u0435\u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0438\u0440\u0430\u0441\u0448\u0438\u0444\u0440\u043e\u0432\u043a\u0438\u043a\u043e\u043c\u043f\u043e\u043d\u043e\u0432\u043a\u0438\u0434\u0430\u043d\u043d\u044b\u0445 \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u0435\u043f\u0435\u0440\u0435\u0434\u0430\u0432\u0430\u0435\u043c\u043e\u0433\u043e\u0444\u0430\u0439\u043b\u0430 \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u0435\u0442\u0438\u043f\u043e\u0432 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435\u0433\u0440\u0443\u043f\u043f\u044b\u0430\u0442\u0440\u0438\u0431\u0443\u0442\u043e\u0432xs \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435\u0433\u0440\u0443\u043f\u043f\u044b\u043c\u043e\u0434\u0435\u043b\u0438xs \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435\u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f\u0438\u0434\u0435\u043d\u0442\u0438\u0447\u043d\u043e\u0441\u0442\u0438xs \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435\u043f\u0440\u043e\u0441\u0442\u043e\u0433\u043e\u0442\u0438\u043f\u0430xs \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435\u0441\u043e\u0441\u0442\u0430\u0432\u043d\u043e\u0433\u043e\u0442\u0438\u043f\u0430xs \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435\u0442\u0438\u043f\u0430\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430dom \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044fxpathxs \u043e\u0442\u0431\u043e\u0440\u043a\u043e\u043c\u043f\u043e\u043d\u043e\u0432\u043a\u0438\u0434\u0430\u043d\u043d\u044b\u0445 \u043f\u0430\u043a\u0435\u0442\u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0435\u043c\u044b\u0445\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u043e\u0432 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0432\u044b\u0431\u043e\u0440\u0430 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043a\u043e\u043c\u043f\u043e\u043d\u043e\u0432\u043a\u0438\u0434\u0430\u043d\u043d\u044b\u0445 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b\u0437\u0430\u043f\u0438\u0441\u0438json \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b\u0437\u0430\u043f\u0438\u0441\u0438xml \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b\u0447\u0442\u0435\u043d\u0438\u044fxml \u043f\u0435\u0440\u0435\u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435xs \u043f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0449\u0438\u043a \u043f\u043e\u043b\u0435\u0430\u043d\u0430\u043b\u0438\u0437\u0430\u0434\u0430\u043d\u043d\u044b\u0445 \u043f\u043e\u043b\u0435\u043a\u043e\u043c\u043f\u043e\u043d\u043e\u0432\u043a\u0438\u0434\u0430\u043d\u043d\u044b\u0445 \u043f\u043e\u0441\u0442\u0440\u043e\u0438\u0442\u0435\u043b\u044cdom \u043f\u043e\u0441\u0442\u0440\u043e\u0438\u0442\u0435\u043b\u044c\u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u043f\u043e\u0441\u0442\u0440\u043e\u0438\u0442\u0435\u043b\u044c\u043e\u0442\u0447\u0435\u0442\u0430 \u043f\u043e\u0441\u0442\u0440\u043e\u0438\u0442\u0435\u043b\u044c\u043e\u0442\u0447\u0435\u0442\u0430\u0430\u043d\u0430\u043b\u0438\u0437\u0430\u0434\u0430\u043d\u043d\u044b\u0445 \u043f\u043e\u0441\u0442\u0440\u043e\u0438\u0442\u0435\u043b\u044c\u0441\u0445\u0435\u043cxml \u043f\u043e\u0442\u043e\u043a \u043f\u043e\u0442\u043e\u043a\u0432\u043f\u0430\u043c\u044f\u0442\u0438 \u043f\u043e\u0447\u0442\u0430 \u043f\u043e\u0447\u0442\u043e\u0432\u043e\u0435\u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435 \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u043d\u0438\u0435xsl \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u043d\u0438\u0435\u043a\u043a\u0430\u043d\u043e\u043d\u0438\u0447\u0435\u0441\u043a\u043e\u043c\u0443xml \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u043e\u0440\u0432\u044b\u0432\u043e\u0434\u0430\u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0430\u043a\u043e\u043c\u043f\u043e\u043d\u043e\u0432\u043a\u0438\u0434\u0430\u043d\u043d\u044b\u0445\u0432\u043a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u044e\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0439 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u043e\u0440\u0432\u044b\u0432\u043e\u0434\u0430\u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0430\u043a\u043e\u043c\u043f\u043e\u043d\u043e\u0432\u043a\u0438\u0434\u0430\u043d\u043d\u044b\u0445\u0432\u0442\u0430\u0431\u043b\u0438\u0447\u043d\u044b\u0439\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u043e\u0440\u043a\u043e\u043c\u043f\u043e\u043d\u043e\u0432\u043a\u0438\u0434\u0430\u043d\u043d\u044b\u0445 \u0440\u0430\u0437\u044b\u043c\u0435\u043d\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u0438\u043c\u0435\u043ddom \u0440\u0430\u043c\u043a\u0430 \u0440\u0430\u0441\u043f\u0438\u0441\u0430\u043d\u0438\u0435\u0440\u0435\u0433\u043b\u0430\u043c\u0435\u043d\u0442\u043d\u043e\u0433\u043e\u0437\u0430\u0434\u0430\u043d\u0438\u044f \u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u043d\u043e\u0435\u0438\u043c\u044fxml \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0447\u0442\u0435\u043d\u0438\u044f\u0434\u0430\u043d\u043d\u044b\u0445 \u0441\u0432\u043e\u0434\u043d\u0430\u044f\u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u0430 \u0441\u0432\u044f\u0437\u044c\u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0430\u0432\u044b\u0431\u043e\u0440\u0430 \u0441\u0432\u044f\u0437\u044c\u043f\u043e\u0442\u0438\u043f\u0443 \u0441\u0432\u044f\u0437\u044c\u043f\u043e\u0442\u0438\u043f\u0443\u043a\u043e\u043c\u043f\u043e\u043d\u043e\u0432\u043a\u0438\u0434\u0430\u043d\u043d\u044b\u0445 \u0441\u0435\u0440\u0438\u0430\u043b\u0438\u0437\u0430\u0442\u043e\u0440xdto \u0441\u0435\u0440\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043a\u043b\u0438\u0435\u043d\u0442\u0430windows \u0441\u0435\u0440\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043a\u043b\u0438\u0435\u043d\u0442\u0430\u0444\u0430\u0439\u043b \u0441\u0435\u0440\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043a\u0440\u0438\u043f\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u0438 \u0441\u0435\u0440\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u044b\u0443\u0434\u043e\u0441\u0442\u043e\u0432\u0435\u0440\u044f\u044e\u0449\u0438\u0445\u0446\u0435\u043d\u0442\u0440\u043e\u0432windows \u0441\u0435\u0440\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u044b\u0443\u0434\u043e\u0441\u0442\u043e\u0432\u0435\u0440\u044f\u044e\u0449\u0438\u0445\u0446\u0435\u043d\u0442\u0440\u043e\u0432\u0444\u0430\u0439\u043b \u0441\u0436\u0430\u0442\u0438\u0435\u0434\u0430\u043d\u043d\u044b\u0445 \u0441\u0438\u0441\u0442\u0435\u043c\u043d\u0430\u044f\u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e \u0441\u043e\u0447\u0435\u0442\u0430\u043d\u0438\u0435\u043a\u043b\u0430\u0432\u0438\u0448 \u0441\u0440\u0430\u0432\u043d\u0435\u043d\u0438\u0435\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0439 \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u0430\u044f\u0434\u0430\u0442\u0430\u043d\u0430\u0447\u0430\u043b\u0430 \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u044b\u0439\u043f\u0435\u0440\u0438\u043e\u0434 \u0441\u0445\u0435\u043c\u0430xml \u0441\u0445\u0435\u043c\u0430\u043a\u043e\u043c\u043f\u043e\u043d\u043e\u0432\u043a\u0438\u0434\u0430\u043d\u043d\u044b\u0445 \u0442\u0430\u0431\u043b\u0438\u0447\u043d\u044b\u0439\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442 \u0442\u0435\u043a\u0441\u0442\u043e\u0432\u044b\u0439\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442 \u0442\u0435\u0441\u0442\u0438\u0440\u0443\u0435\u043c\u043e\u0435\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u0442\u0438\u043f\u0434\u0430\u043d\u043d\u044b\u0445xml \u0443\u043d\u0438\u043a\u0430\u043b\u044c\u043d\u044b\u0439\u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0444\u0430\u0431\u0440\u0438\u043a\u0430xdto \u0444\u0430\u0439\u043b \u0444\u0430\u0439\u043b\u043e\u0432\u044b\u0439\u043f\u043e\u0442\u043e\u043a \u0444\u0430\u0441\u0435\u0442\u0434\u043b\u0438\u043d\u044bxs \u0444\u0430\u0441\u0435\u0442\u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u0430\u0440\u0430\u0437\u0440\u044f\u0434\u043e\u0432\u0434\u0440\u043e\u0431\u043d\u043e\u0439\u0447\u0430\u0441\u0442\u0438xs \u0444\u0430\u0441\u0435\u0442\u043c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u043e\u0433\u043e\u0432\u043a\u043b\u044e\u0447\u0430\u044e\u0449\u0435\u0433\u043e\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044fxs \u0444\u0430\u0441\u0435\u0442\u043c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u043e\u0433\u043e\u0438\u0441\u043a\u043b\u044e\u0447\u0430\u044e\u0449\u0435\u0433\u043e\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044fxs \u0444\u0430\u0441\u0435\u0442\u043c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u043e\u0439\u0434\u043b\u0438\u043d\u044bxs \u0444\u0430\u0441\u0435\u0442\u043c\u0438\u043d\u0438\u043c\u0430\u043b\u044c\u043d\u043e\u0433\u043e\u0432\u043a\u043b\u044e\u0447\u0430\u044e\u0449\u0435\u0433\u043e\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044fxs \u0444\u0430\u0441\u0435\u0442\u043c\u0438\u043d\u0438\u043c\u0430\u043b\u044c\u043d\u043e\u0433\u043e\u0438\u0441\u043a\u043b\u044e\u0447\u0430\u044e\u0449\u0435\u0433\u043e\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044fxs \u0444\u0430\u0441\u0435\u0442\u043c\u0438\u043d\u0438\u043c\u0430\u043b\u044c\u043d\u043e\u0439\u0434\u043b\u0438\u043d\u044bxs \u0444\u0430\u0441\u0435\u0442\u043e\u0431\u0440\u0430\u0437\u0446\u0430xs \u0444\u0430\u0441\u0435\u0442\u043e\u0431\u0449\u0435\u0433\u043e\u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u0430\u0440\u0430\u0437\u0440\u044f\u0434\u043e\u0432xs \u0444\u0430\u0441\u0435\u0442\u043f\u0435\u0440\u0435\u0447\u0438\u0441\u043b\u0435\u043d\u0438\u044fxs \u0444\u0430\u0441\u0435\u0442\u043f\u0440\u043e\u0431\u0435\u043b\u044c\u043d\u044b\u0445\u0441\u0438\u043c\u0432\u043e\u043b\u043e\u0432xs \u0444\u0438\u043b\u044c\u0442\u0440\u0443\u0437\u043b\u043e\u0432dom \u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u0430\u044f\u0441\u0442\u0440\u043e\u043a\u0430 \u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442 \u0444\u0440\u0430\u0433\u043c\u0435\u043d\u0442xs \u0445\u0435\u0448\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435\u0434\u0430\u043d\u043d\u044b\u0445 \u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0435\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f \u0446\u0432\u0435\u0442 \u0447\u0442\u0435\u043d\u0438\u0435fastinfoset \u0447\u0442\u0435\u043d\u0438\u0435html \u0447\u0442\u0435\u043d\u0438\u0435json \u0447\u0442\u0435\u043d\u0438\u0435xml \u0447\u0442\u0435\u043d\u0438\u0435zip\u0444\u0430\u0439\u043b\u0430 \u0447\u0442\u0435\u043d\u0438\u0435\u0434\u0430\u043d\u043d\u044b\u0445 \u0447\u0442\u0435\u043d\u0438\u0435\u0442\u0435\u043a\u0441\u0442\u0430 \u0447\u0442\u0435\u043d\u0438\u0435\u0443\u0437\u043b\u043e\u0432dom \u0448\u0440\u0438\u0444\u0442 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0430\u043a\u043e\u043c\u043f\u043e\u043d\u043e\u0432\u043a\u0438\u0434\u0430\u043d\u043d\u044b\u0445 comsafearray \u0434\u0435\u0440\u0435\u0432\u043e\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0439 \u043c\u0430\u0441\u0441\u0438\u0432 \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0438\u0435 \u0441\u043f\u0438\u0441\u043e\u043a\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0439 \u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430 \u0442\u0430\u0431\u043b\u0438\u0446\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0439 \u0444\u0438\u043a\u0441\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u0430\u044f\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430 \u0444\u0438\u043a\u0441\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0435\u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0438\u0435 \u0444\u0438\u043a\u0441\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439\u043c\u0430\u0441\u0441\u0438\u0432 ","literal",j],h,h),e=A.l(["meta-keyword","\u0434\u0430\u043b\u0435\u0435 \u0432\u043e\u0437\u0432\u0440\u0430\u0442 \u0432\u044b\u0437\u0432\u0430\u0442\u044c\u0438\u0441\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435 \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0434\u043b\u044f \u0435\u0441\u043b\u0438 \u0438 \u0438\u0437 \u0438\u043b\u0438 \u0438\u043d\u0430\u0447\u0435 \u0438\u043d\u0430\u0447\u0435\u0435\u0441\u043b\u0438 \u0438\u0441\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435 \u043a\u0430\u0436\u0434\u043e\u0433\u043e \u043a\u043e\u043d\u0435\u0446\u0435\u0441\u043b\u0438 \u043a\u043e\u043d\u0435\u0446\u043f\u043e\u043f\u044b\u0442\u043a\u0438 \u043a\u043e\u043d\u0435\u0446\u0446\u0438\u043a\u043b\u0430 \u043d\u0435 \u043d\u043e\u0432\u044b\u0439 \u043f\u0435\u0440\u0435\u0439\u0442\u0438 \u043f\u0435\u0440\u0435\u043c \u043f\u043e \u043f\u043e\u043a\u0430 \u043f\u043e\u043f\u044b\u0442\u043a\u0430 \u043f\u0440\u0435\u0440\u0432\u0430\u0442\u044c \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u044c \u0442\u043e\u0433\u0434\u0430 \u0446\u0438\u043a\u043b \u044d\u043a\u0441\u043f\u043e\u0440\u0442 \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c\u0438\u0437\u0444\u0430\u0439\u043b\u0430 \u0432\u0435\u0431\u043a\u043b\u0438\u0435\u043d\u0442 \u0432\u043c\u0435\u0441\u0442\u043e \u0432\u043d\u0435\u0448\u043d\u0435\u0435\u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u0435 \u043a\u043b\u0438\u0435\u043d\u0442 \u043a\u043e\u043d\u0435\u0446\u043e\u0431\u043b\u0430\u0441\u0442\u0438 \u043c\u043e\u0431\u0438\u043b\u044c\u043d\u043e\u0435\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435\u043a\u043b\u0438\u0435\u043d\u0442 \u043c\u043e\u0431\u0438\u043b\u044c\u043d\u043e\u0435\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435\u0441\u0435\u0440\u0432\u0435\u0440 \u043d\u0430\u043a\u043b\u0438\u0435\u043d\u0442\u0435 \u043d\u0430\u043a\u043b\u0438\u0435\u043d\u0442\u0435\u043d\u0430\u0441\u0435\u0440\u0432\u0435\u0440\u0435 \u043d\u0430\u043a\u043b\u0438\u0435\u043d\u0442\u0435\u043d\u0430\u0441\u0435\u0440\u0432\u0435\u0440\u0435\u0431\u0435\u0437\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442\u0430 \u043d\u0430\u0441\u0435\u0440\u0432\u0435\u0440\u0435 \u043d\u0430\u0441\u0435\u0440\u0432\u0435\u0440\u0435\u0431\u0435\u0437\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442\u0430 \u043e\u0431\u043b\u0430\u0441\u0442\u044c \u043f\u0435\u0440\u0435\u0434 \u043f\u043e\u0441\u043b\u0435 \u0441\u0435\u0440\u0432\u0435\u0440 \u0442\u043e\u043b\u0441\u0442\u044b\u0439\u043a\u043b\u0438\u0435\u043d\u0442\u043e\u0431\u044b\u0447\u043d\u043e\u0435\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u0442\u043e\u043b\u0441\u0442\u044b\u0439\u043a\u043b\u0438\u0435\u043d\u0442\u0443\u043f\u0440\u0430\u0432\u043b\u044f\u0435\u043c\u043e\u0435\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u0442\u043e\u043d\u043a\u0438\u0439\u043a\u043b\u0438\u0435\u043d\u0442 "],h,h) -e=A.a(o,"#|&",o,o,"meta",A.b([A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,l,o,o,o,o,o,o,o,o,o)],i),o,"$",o,o,o,o,o,o,e,k,o,o,o,o,o,o,o,o,o,o) -q=A.b([A.a(o,"\u043f\u0440\u043e\u0446\u0435\u0434\u0443\u0440\u0430|\u0444\u0443\u043d\u043a\u0446\u0438\u044f",o,o,o,o,o,"\\)",o,o,o,o,o,o,"\u043f\u0440\u043e\u0446\u0435\u0434\u0443\u0440\u0430 \u0444\u0443\u043d\u043a\u0446\u0438\u044f",o,o,o,o,o,o,o,o,o,o,o),A.a(o,"\u043a\u043e\u043d\u0435\u0446\u043f\u0440\u043e\u0446\u0435\u0434\u0443\u0440\u044b|\u043a\u043e\u043d\u0435\u0446\u0444\u0443\u043d\u043a\u0446\u0438\u0438",o,o,o,o,o,o,o,o,o,o,o,o,"\u043a\u043e\u043d\u0435\u0446\u043f\u0440\u043e\u0446\u0435\u0434\u0443\u0440\u044b \u043a\u043e\u043d\u0435\u0446\u0444\u0443\u043d\u043a\u0446\u0438\u0438",o,o,o,o,o,o,o,o,o,o,o)],i) -h=A.l(["keyword","\u0437\u043d\u0430\u0447","literal",j],h,h) -return A.a(o,o,o,!0,o,A.b([e,A.a(o,o,o,o,"function",A.b([A.a(o,"\\(",o,o,o,A.b([A.a(o,k,o,o,"params",A.b([A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,m,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,n,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,p,o,o,o,o,o,o,o,o,o)],i),o,",",o,o,!0,o,!0,o,h,k,o,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,l,o,o,o,o,o,o,o,o,o)],i),o,"\\)",o,!0,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o),A.a(o,k,o,o,"title",o,o,o,o,o,o,o,o,o,o,o,o,o,0,o,o,o,o,o,o,o)],i),o,o,o,o,o,o,o,o,o,k,o,o,o,o,o,o,o,o,o,q),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,l,o,o,o,o,o,o,o,o,o),A.a(o,"\\x7e",o,o,"symbol",o,o,";|:",o,o,o,o,!0,o,o,o,o,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,m,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,n,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,p,o,o,o,o,o,o,o,o,o)],i),o,o,o,o,o,o,o,o,f,k,o,g,o,o,o,o,o,o,o,o)}) -s($,"bc5","aRy",()=>{var q=null,p="symbol",o=t._ -return A.a(q,q,q,q,q,A.b([A.a(q,"^[a-zA-Z][a-zA-Z0-9-]*(?=\\s*=)",q,q,"attribute",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,";",q,q,"comment",A.b([$.aq(),A.a(q,"(?:TODO|FIXME|NOTE|BUG|XXX):",q,q,"doctag",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q)],o),q,"$",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"%b[0-1]+(-[0-1]+|(\\.[0-1]+)+){0,1}",q,q,p,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"%d[0-9]+(-[0-9]+|(\\.[0-9]+)+){0,1}",q,q,p,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"%x[0-9A-F]+(-[0-9A-F]+|(\\.[0-9A-F]+)+){0,1}",q,q,p,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"%[si]",q,q,p,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),$.aM(),$.dB()],o),q,q,q,q,q,q,q,"[!@#$^&',?+\\x7e`|:]","ALPHA BIT CHAR CR CRLF CTL DIGIT DQUOTE HEXDIG HTAB LF LWSP OCTET SP VCHAR WSP",q,q,A.m(t.N,t.n),q,q,q,q,q,q,q,q)}) -s($,"bc6","aRz",()=>{var q=null,p="string",o="\\n",n=t._ -return A.a(q,q,q,q,q,A.b([A.a(q,"^\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}(:\\d{1,5})?\\b",q,q,"number",q,q,q,q,q,q,q,q,q,q,q,q,q,5,q,q,q,q,q,q,q),A.a(q,"\\b\\d+\\b",q,q,"number",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q),A.a(q,'"(GET|POST|HEAD|PUT|DELETE|CONNECT|OPTIONS|PATCH|TRACE)',q,q,p,A.b([A.a(q,"HTTP/[12]\\.\\d",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,5,q,q,q,q,q,q,q)],n),q,'"',q,q,q,q,q,o,"GET POST HEAD PUT DELETE CONNECT OPTIONS PATCH TRACE",q,q,q,5,q,q,q,q,q,q,q),A.a(q,"\\[\\d[^\\]\\n]{8,}\\]",q,q,p,q,q,q,q,q,q,q,q,o,q,q,q,q,1,q,q,q,q,q,q,q),A.a(q,"\\[",q,q,p,q,q,"\\]",q,q,q,q,q,o,q,q,q,q,0,q,q,q,q,q,q,q),A.a(q,'"Mozilla/\\d\\.\\d \\(',q,q,p,q,q,'"',q,q,q,q,q,o,q,q,q,q,3,q,q,q,q,q,q,q),A.a(q,'"',q,q,p,q,q,'"',q,q,q,q,q,o,q,q,q,q,0,q,q,q,q,q,q,q)],n),q,q,q,q,q,q,q,q,q,q,q,A.m(t.N,t.n),q,q,q,q,q,q,q,q)}) -s($,"bc7","aRA",()=>{var q=null,p="function",o=t.N,n=A.b(["as"],t.s),m=A.l(["keyword","as break case catch class const continue default delete do dynamic each else extends final finally for function get if implements import in include instanceof interface internal is namespace native new override package private protected public return set static super switch this throw try typeof use var void while with","literal","true false null undefined"],o,o),l=$.c0(),k=$.aM(),j=$.ba(),i=$.b_(),h=$.bw(),g=$.jk(),f=t._ -return A.a(n,q,q,q,q,A.b([l,k,j,i,h,A.a(q,q,"package",q,"class",A.b([g],f),q,"{",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,q,"class interface",q,"class",A.b([A.a(q,q,"extends implements",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),g],f),q,"{",q,q,q,q,!0,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,q,"import include",q,"meta",q,q,";",q,q,q,q,q,q,A.l(["meta-keyword","import include"],o,o),q,q,q,q,q,q,q,q,q,q,q),A.a(q,q,p,q,p,A.b([g,A.a(q,"\\(",q,q,"params",A.b([l,k,j,i,A.a(q,"[.]{3}",q,q,"rest_arg",q,q,"[a-zA-Z_$][a-zA-Z0-9_$]*",q,q,q,q,q,q,q,q,q,q,10,q,q,q,q,q,q,q)],f),q,"\\)",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,":\\s*([*]|[a-zA-Z_$][a-zA-Z0-9_$]*)",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],f),q,"[{;]",q,q,q,q,!0,"\\S",q,q,q,q,q,q,q,q,q,q,q,q),$.aG3()],f),q,q,q,q,q,q,q,"#",m,q,q,A.m(o,t.n),q,q,q,q,q,q,q,q)}) -s($,"bc8","aRB",()=>{var q="~contains~6~contains~2",p="[]{}%#'\"",o=null,n="type",m="~contains~0",l=t._,k=t.N,j=A.l([q,A.a(o,"\\s+:\\s+",o,o,o,A.b([A.a(o,o,"loop for declare others",o,o,o,o,o,o,!0,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o),A.a(o,o,"not null constant access function procedure in out aliased exception",o,"keyword",o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o),A.a(o,"[A-Za-z](_?[A-Za-z0-9.])*",o,o,n,o,o,o,o,!0,o,o,o,o,o,o,o,o,0,o,o,o,o,o,o,o)],l),o,"\\s*(:=|;|\\)|=>|$)",o,o,o,o,o,p,o,o,o,o,o,o,o,o,o,o,o,o),"~contains~0",A.a(o,"--",o,o,"comment",A.b([$.aq(),A.a(o,"(?:TODO|FIXME|NOTE|BUG|XXX):",o,o,"doctag",o,o,o,o,o,o,o,o,o,o,o,o,o,0,o,o,o,o,o,o,o)],l),o,"$",o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o)],k,t.n) -k=A.l(["keyword","abort else new return abs elsif not reverse abstract end accept entry select access exception of separate aliased exit or some all others subtype and for out synchronized array function overriding at tagged generic package task begin goto pragma terminate body private then if procedure type case in protected constant interface is raise use declare range delay limited record when delta loop rem while digits renames with do mod requeue xor","literal","True False"],k,k) -return A.a(o,o,o,!0,o,A.b([A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,m,o,o,o,o,o,o,o,o,o),A.a(o,'"',o,o,"string",A.b([A.a(o,'""',o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,0,o,o,o,o,o,o,o)],l),o,'"',o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o),A.a(o,"'.'",o,o,"string",o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o),A.a(o,u.f,o,o,"number",o,o,o,o,o,o,o,o,o,o,o,o,o,0,o,o,o,o,o,o,o),A.a(o,"'[A-Za-z](_?[A-Za-z0-9.])*",o,o,"symbol",o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o),A.a(o,"(\\bwith\\s+)?(\\bprivate\\s+)?\\bpackage\\s+(\\bbody\\s+)?",o,o,"title",o,o,"(is|$)",o,o,o,!0,!0,p,"package body",o,o,o,o,o,o,o,o,o,o,o),A.a(o,"(\\b(with|overriding)\\s+)?\\b(function|procedure)\\s+",o,o,o,A.b([A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,m,o,o,o,o,o,o,o,o,o),A.a(o,"(\\bwith\\s+)?\\b(function|procedure)\\s+",o,o,"title",o,o,"(\\(|\\s+|$)",o,o,o,!0,!0,p,o,o,o,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,q,o,o,o,o,o,o,o,o,o),A.a(o,"\\breturn\\s+",o,o,n,o,o,"(\\s+|;|$)",o,!0,o,!0,!0,p,"return",o,o,o,o,o,o,o,o,o,o,o)],l),o,"(\\bis|\\bwith|\\brenames|\\)\\s*;)",o,o,o,o,o,o,"overriding function procedure with is renames return",o,o,o,o,!0,o,o,o,o,o,o),A.a(o,"\\b(sub)?type\\s+",o,o,n,o,o,"\\s+",o,o,o,!0,o,p,n,o,o,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,q,o,o,o,o,o,o,o,o,o)],l),o,o,o,o,o,o,o,o,k,o,o,j,o,o,o,o,o,o,o,o)}) -s($,"bcF","aS3",()=>A.l(["vue",$.aUG(),"graphql",$.aSI(),"gn",$.aSE(),"solidity",$.aUg()],t.N,t.n)) -s($,"bcu","aRV",()=>A.l(["1c",$.aT7(),"abnf",$.aRy(),"accesslog",$.aRz(),"actionscript",$.aRA(),"ada",$.aRB(),"angelscript",$.aRD(),"apache",$.aRE(),"applescript",$.aRF(),"arcade",$.aRG(),"arduino",$.aRH(),"armasm",$.aRI(),"asciidoc",$.aRJ(),"aspectj",$.aRK(),"autohotkey",$.aRL(),"autoit",$.aRM(),"avrasm",$.aRN(),"awk",$.aRO(),"axapta",$.aRP(),"bash",$.aRQ(),"basic",$.aRR(),"bnf",$.aRS(),"brainfuck",$.aRT(),"cal",$.aRW(),"capnproto",$.aRX(),"ceylon",$.aRY(),"clean",$.aRZ(),"clojure-repl",$.aS0(),"clojure",$.aS_(),"cmake",$.aS1(),"coffeescript",$.aS2(),"coq",$.aS4(),"cos",$.aS5(),"cpp",$.aS6(),"crmsh",$.aS7(),"crystal",$.aS8(),"cs",$.aS9(),"csp",$.aSa(),"css",$.aSb(),"d",$.aSc(),"dart",$.aSd(),"delphi",$.aSe(),"diff",$.aSf(),"django",$.aSg(),"dns",$.aSh(),"dockerfile",$.aSi(),"dos",$.aSj(),"dsconfig",$.aSk(),"dts",$.aSl(),"dust",$.aSm(),"ebnf",$.aSn(),"elixir",$.aSo(),"elm",$.aSp(),"erb",$.aSq(),"erlang-repl",$.aSs(),"erlang",$.aSr(),"excel",$.aSt(),"fix",$.aSu(),"flix",$.aSv(),"fortran",$.aSw(),"fsharp",$.aSx(),"gams",$.aSy(),"gauss",$.aSz(),"gcode",$.aSA(),"gherkin",$.aSB(),"glsl",$.aSC(),"gml",$.aSD(),"go",$.aSF(),"golo",$.aSG(),"gradle",$.aSH(),"groovy",$.aSJ(),"haml",$.aSK(),"handlebars",$.aSL(),"haskell",$.aSM(),"haxe",$.aSN(),"hsp",$.aSP(),"htmlbars",$.aSQ(),"http",$.aSR(),"hy",$.aSS(),"inform7",$.aST(),"ini",$.aSU(),"irpf90",$.aSV(),"isbl",$.aSW(),"java",$.aSX(),"javascript",$.aSY(),"jboss-cli",$.aSZ(),"json",$.aT_(),"julia-repl",$.aT1(),"julia",$.aT0(),"kotlin",$.aT6(),"lasso",$.aT8(),"ldif",$.aT9(),"leaf",$.aTa(),"less",$.aTb(),"lisp",$.aTd(),"livecodeserver",$.aTe(),"livescript",$.aTf(),"llvm",$.aTg(),"lsl",$.aTh(),"lua",$.aTi(),"makefile",$.aTj(),"markdown",$.aTk(),"mathematica",$.aTl(),"matlab",$.aTm(),"maxima",$.aTn(),"mel",$.aTo(),"mercury",$.aTp(),"mipsasm",$.aTq(),"mizar",$.aTr(),"mojolicious",$.aTs(),"monkey",$.aTt(),"moonscript",$.aTu(),"n1ql",$.aTv(),"nginx",$.aTx(),"nimrod",$.aTy(),"nix",$.aTz(),"nsis",$.aTB(),"objectivec",$.aTC(),"ocaml",$.aTD(),"openscad",$.aTE(),"oxygene",$.aTF(),"parser3",$.aTG(),"perl",$.aTH(),"pf",$.aTI(),"pgsql",$.aTJ(),"php",$.aTK(),"plaintext",$.aGJ(),"pony",$.aTM(),"powershell",$.aTN(),"processing",$.aTO(),"profile",$.aTP(),"prolog",$.aTQ(),"properties",$.aTR(),"protobuf",$.aTS(),"puppet",$.aTT(),"purebasic",$.aTU(),"python",$.aTV(),"q",$.aTW(),"qml",$.aTX(),"r",$.aTY(),"reasonml",$.aTZ(),"rib",$.aU_(),"roboconf",$.aU0(),"routeros",$.aU1(),"rsl",$.aU2(),"ruby",$.aU3(),"ruleslanguage",$.aU4(),"rust",$.aU5(),"sas",$.aU6(),"scala",$.aU7(),"scheme",$.aU8(),"scilab",$.aU9(),"scss",$.aUa(),"shell",$.aUc(),"smali",$.aUd(),"smalltalk",$.aUe(),"sml",$.aUf(),"sqf",$.aUh(),"sql",$.aUi(),"stan",$.aUj(),"stata",$.aUk(),"step21",$.aUl(),"stylus",$.aUm(),"subunit",$.aUn(),"swift",$.aUo(),"taggerscript",$.aUq(),"tap",$.aUr(),"tcl",$.aUs(),"tex",$.aUt(),"thrift",$.aUu(),"tp",$.aUw(),"twig",$.aUx(),"typescript",$.aUy(),"vala",$.aUz(),"vbnet",$.aUA(),"vbscript-html",$.aUC(),"vbscript",$.aUB(),"verilog",$.aUD(),"vhdl",$.aUE(),"vim",$.aUF(),"x86asm",$.aUJ(),"xl",$.aUK(),"xml",$.aUL(),"xquery",$.aUM(),"yaml",$.aUN(),"zephir",$.aUO()],t.N,t.n)) -s($,"bc9","aRC",()=>{var q=A.qZ($.aRV(),t.N,t.n) -q.K(0,$.aS3()) -return q}) -s($,"bca","aRD",()=>{var q="~contains~7~contains~0~contains~1",p="symbol",o="~contains~7~contains~0",n=null,m="~contains~7",l="string",k="[a-zA-Z0-9_]+",j=t._,i=A.l([q,A.a(n,"[a-zA-Z0-9_]+@",n,n,p,A.b([A.a(n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,o,n,n,n,n,n,n,n,n,n)],j),n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n),o,A.a(n,"<",n,n,"keyword",A.b([A.a(n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,m,n,n,n,n,n,n,n,n,n),A.a(n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,q,n,n,n,n,n,n,n,n,n)],j),n,">",n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n),"~contains~7",A.a(n,"\\b(void|bool|int|int8|int16|int32|int64|uint|uint8|uint16|uint32|uint64|string|ref|array|double|float|auto|dictionary)",n,n,"built_in",A.b([A.a(n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,o,n,n,n,n,n,n,n,n,n)],j),n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n)],t.N,t.n),h=A.b(["asc"],t.s),g=$.aZ() -return A.a(h,n,n,n,n,A.b([A.a(n,"'",n,n,l,A.b([g],j),n,"'",n,n,n,n,n,"\\n",n,n,n,n,0,n,n,n,n,n,n,n),A.a(n,'"',n,n,l,A.b([g],j),n,'"',n,n,n,n,n,"\\n",n,n,n,n,0,n,n,n,n,n,n,n),A.a(n,'"""',n,n,l,n,n,'"""',n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n),$.ba(),$.b_(),A.a(n,n,"interface namespace",n,n,A.b([A.a(n,k,n,n,p,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n)],j),n,"{",n,n,n,n,n,"[;.\\-]",n,n,n,n,n,n,n,n,n,n,n,n),A.a(n,n,"class",n,n,A.b([A.a(n,k,n,n,p,A.b([A.a(n,"[:,]\\s*",n,n,n,A.b([A.a(n,k,n,n,p,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n)],j),n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n)],j),n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n)],j),n,"{",n,n,n,n,n,"[;.\\-]",n,n,n,n,n,n,n,n,n,n,n,n),A.a(n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,m,n,n,n,n,n,n,n,n,n),A.a(n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,q,n,n,n,n,n,n,n,n,n),A.a(n,"\\b(null|true|false)",n,n,"literal",n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n),A.a(n,"(-?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?f?|\\.\\d+f?)([eE][-+]?\\d+f?)?)",n,n,"number",n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n)],j),n,n,n,n,n,n,n,"(^using\\s+[A-Za-z0-9_\\.]+;$|\\bfunctions*[^\\(])","for in|0 break continue while do|0 return if else case switch namespace is cast or and xor not get|0 in inout|10 out override set|0 private public const default|0 final shared external mixin|10 enum typedef funcdef this super import from interface abstract|0 try catch protected explicit property",n,n,i,n,n,n,n,n,n,n,n)}) -s($,"bcb","aRE",()=>{var q,p="~contains~2~starts~contains~1~contains~1",o=null,n=t.N,m=A.l([p,A.a(o,"[\\$%]\\d+",o,o,"number",o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o)],n,t.n),l=A.b(["apacheconf"],t.s),k=$.ch(),j=A.a(o,"",o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o),i=A.l(["nomarkup","order deny allow setenv rewriterule rewriteengine rewritecond documentroot sethandler errordocument loadmodule options header listen serverroot servername"],n,n) -n=A.l(["literal","on off all"],n,n) -q=t._ -return A.a(l,o,o,!0,o,A.b([k,j,A.a(o,"\\w+",o,o,"attribute",o,o,o,o,o,o,o,o,o,i,o,o,o,0,o,o,o,o,A.a(o,o,o,o,o,A.b([A.a(o,"\\s\\[",o,o,"meta",o,o,"\\]$",o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o),A.a(o,"[\\$%]\\{",o,o,"variable",A.b([A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,!0,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,p,o,o,o,o,o,o,o,o,o)],q),o,"\\}",o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,p,o,o,o,o,o,o,o,o,o),$.aM()],q),o,"$",o,o,o,o,o,o,n,o,o,o,0,o,o,o,o,o,o,o),o,o)],q),o,o,o,o,o,o,o,"\\S",o,o,o,m,o,o,o,o,o,o,o,o)}) -s($,"bcc","aRF",()=>{var q,p,o="~contains~6",n="(?:TODO|FIXME|NOTE|BUG|XXX):",m=null,l="~contains~0",k=$.aq(),j=t._,i=t.N,h=A.l(["~contains~6",A.a(m,"--",m,m,"comment",A.b([k,A.a(m,n,m,m,"doctag",m,m,m,m,m,m,m,m,m,m,m,m,m,0,m,m,m,m,m,m,m)],j),m,"$",m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m),"~contains~0",A.a(m,'"',m,m,"string",A.b([$.aZ()],j),m,'"',m,m,m,m,m,"",m,m,m,m,m,m,m,m,m,m,m,m)],i,t.n),g=A.b(["osascript"],t.s) -i=A.l(["keyword","about above after against and around as at back before beginning behind below beneath beside between but by considering contain contains continue copy div does eighth else end equal equals error every exit fifth first for fourth from front get given global if ignoring in into is it its last local me middle mod my ninth not of on onto or over prop property put ref reference repeat returning script second set seventh since sixth some tell tenth that the|0 then third through thru timeout times to transaction try until where while whose with without","literal","AppleScript false linefeed return pi quote result space tab true","built_in","alias application boolean class constant date file integer list number real record string text activate beep count delay launch log offset read round run say summarize write character characters contents day frontmost id item length month name paragraph paragraphs rest reverse running time version weekday word words year"],i,i) -q=A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,l,m,m,m,m,m,m,m,m,m) -p=$.bw() -return A.a(g,m,m,m,m,A.b([q,p,A.a(m,"\\b(clipboard info|the clipboard|info for|list (disks|folder)|mount volume|path to|(close|open for) access|(get|set) eof|current date|do shell script|get volume settings|random number|set volume|system attribute|system info|time to GMT|(load|run|store) script|scripting components|ASCII (character|number)|localized string|choose (application|color|file|file name|folder|from list|remote application|URL)|display (alert|dialog))\\b|^\\s*return\\b",m,m,"built_in",m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m),A.a(m,"\\b(text item delimiters|current application|missing value)\\b",m,m,"literal",m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m),A.a(m,"\\b(apart from|aside from|instead of|out of|greater than|isn't|(doesn't|does not) (equal|come before|come after|contain)|(greater|less) than( or equal)?|(starts?|ends|begins?) with|contained by|comes (before|after)|a (ref|reference)|POSIX file|POSIX path|(date|time) string|quoted form)\\b",m,m,"keyword",m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m),A.a(m,m,"on",m,m,A.b([$.dU(),A.a(m,"\\(",m,m,"params",A.b([A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,!0,m,m,m,m),p,A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,l,m,m,m,m,m,m,m,m,m)],j),m,"\\)",m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m)],j),m,m,m,m,m,m,m,"[${=;\\n]",m,m,m,m,m,m,m,m,m,m,m,m),A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,o,m,m,m,m,m,m,m,m,m),A.a(m,"\\(\\*",m,m,"comment",A.b([A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,!0,m,m,m,m),A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,o,m,m,m,m,m,m,m,m,m),k,A.a(m,n,m,m,"doctag",m,m,m,m,m,m,m,m,m,m,m,m,m,0,m,m,m,m,m,m,m)],j),m,"\\*\\)",m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m),$.ch()],j),m,m,m,m,m,m,m,"//|->|=>|\\[\\[",i,m,m,h,m,m,m,m,m,m,m,m)}) -s($,"bcd","aRG",()=>{var q,p,o,n,m,l,k="~contains~2~contains~1~contains~3",j=null,i="~contains~2",h="if for while var new function do return void else break",g="BackSlash DoubleQuote false ForwardSlash Infinity NaN NewLine null PI SingleQuote Tab TextFormatting true undefined",f="Abs Acos Angle Attachments Area AreaGeodetic Asin Atan Atan2 Average Bearing Boolean Buffer BufferGeodetic Ceil Centroid Clip Console Constrain Contains Cos Count Crosses Cut Date DateAdd DateDiff Day Decode DefaultValue Dictionary Difference Disjoint Distance DistanceGeodetic Distinct DomainCode DomainName Equals Exp Extent Feature FeatureSet FeatureSetByAssociation FeatureSetById FeatureSetByPortalItem FeatureSetByRelationshipName FeatureSetByTitle FeatureSetByUrl Filter First Floor Geometry GroupBy Guid HasKey Hour IIf IndexOf Intersection Intersects IsEmpty IsNan IsSelfIntersecting Length LengthGeodetic Log Max Mean Millisecond Min Minute Month MultiPartToSinglePart Multipoint NextSequenceValue Now Number OrderBy Overlaps Point Polygon Polyline Portal Pow Random Relate Reverse RingIsClockWise Round Second SetGeometry Sin Sort Sqrt Stdev Sum SymmetricDifference Tan Text Timestamp Today ToLocal Top Touches ToUTC TrackCurrentTime TrackGeometryWindow TrackIndex TrackStartTime TrackWindow TypeOf Union UrlEncode Variance Weekday When Within Year ",e="[A-Za-z_][0-9A-Za-z_]*",d="function",c=t._,b=A.a(j,j,j,j,"number",j,j,j,j,j,j,j,j,j,j,j,j,j,0,j,j,j,j,j,j,A.b([A.a(j,"\\b(0[bB][01]+)",j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j),A.a(j,"\\b(0[oO][0-7]+)",j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j),A.a(j,u.O,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j)],c)),a=$.aZ(),a0=t.N,a1=A.l(["keyword",h,"literal",g,"built_in",f],a0,a0),a2=$.c0(),a3=$.aM(),a4=A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,i,j,j,j,j,j,j,j,j,j),a5=A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,k,j,j,j,j,j,j,j,j,j),a6=$.yQ() -a1=A.l([k,b,"~contains~2",A.a(j,"`",j,j,"string",A.b([a,A.a(j,"\\$\\{",j,j,"subst",A.b([a2,a3,a4,a5,a6],c),j,"\\}",j,j,j,j,j,j,a1,j,j,j,j,j,j,j,j,j,j,j)],c),j,"`",j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j)],a0,t.n) -a5=A.b(["arcade"],t.s) -a4=A.l(["keyword",h,"literal",g,"built_in",f],a0,a0) -a=A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,i,j,j,j,j,j,j,j,j,j) -b=$.ba() -q=$.b_() -p=A.a(j,"\\$[datastore|feature|layer|map|measure|sourcefeature|sourcelayer|targetfeature|targetlayer|value|view]+",j,j,"symbol",j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j) -o=A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,k,j,j,j,j,j,j,j,j,j) -n=A.a(j,"[{,]\\s*",j,j,j,A.b([A.a(j,"[A-Za-z_][0-9A-Za-z_]*\\s*:",j,j,j,A.b([A.a(j,e,j,j,"attr",j,j,j,j,j,j,j,j,j,j,j,j,j,0,j,j,j,j,j,j,j)],c),j,j,j,j,j,j,j,j,j,j,j,j,0,!0,j,j,j,j,j,j)],c),j,j,j,j,j,j,j,j,j,j,j,j,0,j,j,j,j,j,j,j) -m=A.a(j,e,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j) -l=A.a(j,"\\(\\s*\\)",j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j) -a0=A.l(["keyword",h,"literal",g,"built_in",f],a0,a0) -return A.a(a5,j,j,j,j,A.b([a2,a3,a,b,q,p,o,n,A.a(j,"(!|!=|!==|%|%=|&|&&|&=|\\*|\\*=|\\+|\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\?|\\[|\\{|\\(|\\^|\\^=|\\||\\|=|\\|\\||\\x7e|\\b(return)\\b)\\s*",j,j,j,A.b([b,q,a6,A.a(j,"(\\(.*?\\)|[A-Za-z_][0-9A-Za-z_]*)\\s*=>",j,j,d,A.b([A.a(j,j,j,j,"params",j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,A.b([m,l,A.a(j,"\\(",j,j,j,A.b([a2,a3,A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,i,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,k,j,j,j,j,j,j,j,j,j),a6,q,b],c),j,"\\)",j,j,j,!0,!0,j,a0,j,j,j,j,j,j,j,j,j,j,j)],c))],c),j,"\\s*=>",j,j,j,j,j,j,j,j,j,j,j,!0,j,j,j,j,j,j)],c),j,j,j,j,j,j,j,j,"return",j,j,j,0,j,j,j,j,j,j,j),A.a(j,j,d,j,d,A.b([A.a(j,e,j,j,"title",j,j,j,j,j,j,j,j,j,j,j,j,j,0,j,j,j,j,j,j,j),A.a(j,"\\(",j,j,"params",A.b([a2,a3,A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,i,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,k,j,j,j,j,j,j,j,j,j),a6,q,b],c),j,"\\)",j,j,j,!0,!0,j,j,j,j,j,j,j,j,j,j,j,j,j)],c),j,"\\{",j,j,j,j,!0,"\\[|%",j,j,j,j,j,j,j,j,j,j,j,j),A.a(j,"\\$[(.]",j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j)],c),j,j,j,j,j,j,j,"#(?!!)",a4,j,j,a1,j,j,j,j,j,j,j,j)}) -s($,"bce","aRH",()=>{var q,p,o,n,m,l,k,j,i="~contains~1~contains~6",h=null,g="meta-string",f="~contains~0~contains~4~variants~0",e="~contains~0~contains~4~variants~1",d="~contains~0~contains~4~variants~2",c="~contains~0~contains~4",b="~contains~0~contains~3",a="~contains~0~contains~0",a0="int float while private char char8_t char16_t char32_t catch import module export virtual operator sizeof dynamic_cast|10 typedef const_cast|10 const for static_cast|10 union namespace unsigned long volatile static protected bool template mutable if public friend do goto auto void enum else break extern using asm case typeid wchar_tshort reinterpret_cast|10 default double register explicit signed typename try this switch continue inline delete alignas alignof constexpr consteval constinit decltype concept co_await co_return co_yield requires noexcept static_assert thread_local restrict final override atomic_bool atomic_char atomic_schar atomic_uchar atomic_short atomic_ushort atomic_int atomic_uint atomic_long atomic_ulong atomic_llong atomic_ullong new throw return and and_eq bitand bitor compl not not_eq or or_eq xor xor_eq boolean byte word String",a1="std string wstring cin cout cerr clog stdin stdout stderr stringstream istringstream ostringstream auto_ptr deque list queue stack vector map set bitset multiset multimap unordered_set unordered_map unordered_multiset unordered_multimap array shared_ptr abort terminate abs acos asin atan2 atan calloc ceil cosh cos exit exp fabs floor fmod fprintf fputs free frexp fscanf future isalnum isalpha iscntrl isdigit isgraph islower isprint ispunct isspace isupper isxdigit tolower toupper labs ldexp log10 log malloc realloc memchr memcmp memcpy memset modf pow printf putchar puts scanf sinh sin snprintf sprintf sqrt sscanf strcat strchr strcmp strcpy strcspn strlen strncat strncmp strncpy strpbrk strrchr strspn strstr tanh tan vfprintf vprintf vsprintf endl initializer_list unique_ptr _Bool complex _Complex imaginary _Imaginary setup loopKeyboardController MouseController SoftwareSerial EthernetServer EthernetClient LiquidCrystal RobotControl GSMVoiceCall EthernetUDP EsploraTFT HttpClient RobotMotor WiFiClient GSMScanner FileSystem Scheduler GSMServer YunClient YunServer IPAddress GSMClient GSMModem Keyboard Ethernet Console GSMBand Esplora Stepper Process WiFiUDP GSM_SMS Mailbox USBHost Firmata PImage Client Server GSMPIN FileIO Bridge Serial EEPROM Stream Mouse Audio Servo File Task GPRS WiFi Wire TFT GSM SPI SD runShellCommandAsynchronously analogWriteResolution retrieveCallingNumber printFirmwareVersion analogReadResolution sendDigitalPortPair noListenOnLocalhost readJoystickButton setFirmwareVersion readJoystickSwitch scrollDisplayRight getVoiceCallStatus scrollDisplayLeft writeMicroseconds delayMicroseconds beginTransmission getSignalStrength runAsynchronously getAsynchronously listenOnLocalhost getCurrentCarrier readAccelerometer messageAvailable sendDigitalPorts lineFollowConfig countryNameWrite runShellCommand readStringUntil rewindDirectory readTemperature setClockDivider readLightSensor endTransmission analogReference detachInterrupt countryNameRead attachInterrupt encryptionType readBytesUntil robotNameWrite readMicrophone robotNameRead cityNameWrite userNameWrite readJoystickY readJoystickX mouseReleased openNextFile scanNetworks noInterrupts digitalWrite beginSpeaker mousePressed isActionDone mouseDragged displayLogos noAutoscroll addParameter remoteNumber getModifiers keyboardRead userNameRead waitContinue processInput parseCommand printVersion readNetworks writeMessage blinkVersion cityNameRead readMessage setDataMode parsePacket isListening setBitOrder beginPacket isDirectory motorsWrite drawCompass digitalRead clearScreen serialEvent rightToLeft setTextSize leftToRight requestFrom keyReleased compassRead analogWrite interrupts WiFiServer disconnect playMelody parseFloat autoscroll getPINUsed setPINUsed setTimeout sendAnalog readSlider analogRead beginWrite createChar motorsStop keyPressed tempoWrite readButton subnetMask debugPrint macAddress writeGreen randomSeed attachGPRS readString sendString remotePort releaseAll mouseMoved background getXChange getYChange answerCall getResult voiceCall endPacket constrain getSocket writeJSON getButton available connected findUntil readBytes exitValue readGreen writeBlue startLoop IPAddress isPressed sendSysex pauseMode gatewayIP setCursor getOemKey tuneWrite noDisplay loadImage switchPIN onRequest onReceive changePIN playFile noBuffer parseInt overflow checkPIN knobRead beginTFT bitClear updateIR bitWrite position writeRGB highByte writeRed setSpeed readBlue noStroke remoteIP transfer shutdown hangCall beginSMS endWrite attached maintain noCursor checkReg checkPUK shiftOut isValid shiftIn pulseIn connect println localIP pinMode getIMEI display noBlink process getBand running beginSD drawBMP lowByte setBand release bitRead prepare pointTo readRed setMode noFill remove listen stroke detach attach noTone exists buffer height bitSet circle config cursor random IRread setDNS endSMS getKey micros millis begin print write ready flush width isPIN blink clear press mkdir rmdir close point yield image BSSID click delay read text move peek beep rect line open seek fill size turn stop home find step tone sqrt RSSI SSID end bit tan cos sin pow map abs max min get run put",a2="true false nullptr NULL DIGITAL_MESSAGE FIRMATA_STRING ANALOG_MESSAGE REPORT_DIGITAL REPORT_ANALOG INPUT_PULLUP SET_PIN_MODE INTERNAL2V56 SYSTEM_RESET LED_BUILTIN INTERNAL1V1 SYSEX_START INTERNAL EXTERNAL DEFAULT OUTPUT INPUT HIGH LOW",a3="\\(",a4="\\)",a5=t.N,a6=A.l(["meta-keyword",u.i],a5,a5),a7=A.a(h,"\\\\\\n",h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,0,h,h,h,h,h,h,h),a8=t._,a9=A.a(h,h,h,h,g,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,A.b([A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,f,h,h,h,h,h,h,h,h,h),A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,e,h,h,h,h,h,h,h,h,h),A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,d,h,h,h,h,h,h,h,h,h)],a8)),b0=A.a(h,"<.*?>",h,h,g,h,h,"$",h,h,h,h,h,"\\n",h,h,h,h,h,h,h,h,h,h,h,h),b1=$.ba(),b2=$.b_() -a6=A.l([i,A.a(h,"#\\s*[a-z]+\\b",h,h,"meta",A.b([a7,a9,b0,b1,b2],a8),h,"$",h,h,h,h,h,h,a6,h,h,h,h,h,h,h,h,h,h,h),d,A.a(h,u.m,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h),e,A.a(h,u.F,h,h,h,h,h,"'",h,h,h,h,h,".",h,h,h,h,h,h,h,h,h,h,h,h),f,A.a(h,'(u8?|U|L)?"',h,h,h,A.b([$.aZ()],a8),h,'"',h,h,h,h,h,"\\n",h,h,h,h,h,h,h,h,h,h,h,h),c,A.a(h,h,h,h,"string",h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,A.b([A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,f,h,h,h,h,h,h,h,h,h),A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,e,h,h,h,h,h,h,h,h,h),A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,d,h,h,h,h,h,h,h,h,h)],a8)),b,A.a(h,h,h,h,"number",h,h,h,h,h,h,h,h,h,h,h,h,h,0,h,h,h,h,h,h,A.b([A.a(h,"\\b(0b[01']+)",h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h),A.a(h,u.A,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h),A.a(h,u.c,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h)],a8)),a,A.a(h,"\\b[a-z\\d_]*_t\\b",h,h,"keyword",h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h)],a5,t.n) -b0=A.b(["c","cc","h","c++","h++","hpp","hh","hxx","cxx"],t.s) -a9=A.l(["keyword",a0,"built_in",a1,"literal",a2],a5,a5) -a7=A.b([A.a(h,"=",h,h,h,h,h,";",h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h),A.a(h,a3,h,h,h,h,h,a4,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h),A.a(h,h,"new throw return else",h,h,h,h,";",h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h)],a8) -q=A.l(["keyword",a0,"built_in",a1,"literal",a2],a5,a5) -p=A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,a,h,h,h,h,h,h,h,h,h) -o=A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,b,h,h,h,h,h,h,h,h,h) -n=A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,c,h,h,h,h,h,h,h,h,h) -m=A.l(["keyword",a0,"built_in",a1,"literal",a2],a5,a5) -a7=A.a(h,h,h,h,h,A.b([p,b1,b2,o,n,A.a(h,a3,h,h,h,A.b([A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,a,h,h,h,h,h,h,h,h,h),b1,b2,A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,b,h,h,h,h,h,h,h,h,h),A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,c,h,h,h,h,h,h,h,h,h),A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,!0,h,h,h,h)],a8),h,a4,h,h,h,h,h,h,m,h,h,h,0,h,h,h,h,h,h,h)],a8),h,h,h,h,h,h,h,h,q,h,h,h,0,h,h,h,h,h,h,a7) -q=A.l(["keyword",a0,"built_in",a1,"literal",a2],a5,a5) -m=A.a(h,"decltype\\(auto\\)",h,h,h,h,h,h,h,h,h,h,h,h,A.l(["keyword",a0,"built_in",a1,"literal",a2],a5,a5),h,h,h,0,h,h,h,h,h,h,h) -n=A.a(h,"(?:[a-zA-Z_]\\w*::)?[a-zA-Z]\\w*\\s*\\(",h,h,h,A.b([A.a(h,"(?:[a-zA-Z_]\\w*::)?[a-zA-Z]\\w*",h,h,"title",h,h,h,h,h,h,h,h,h,h,h,h,h,0,h,h,h,h,h,h,h)],a8),h,h,h,h,h,h,h,h,h,h,h,h,0,!0,h,h,h,h,h,h) -o=A.l(["keyword",a0,"built_in",a1,"literal",a2],a5,a5) -p=A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,c,h,h,h,h,h,h,h,h,h) -l=A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,b,h,h,h,h,h,h,h,h,h) -k=A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,a,h,h,h,h,h,h,h,h,h) -j=A.l(["keyword",a0,"built_in",a1,"literal",a2],a5,a5) -q=A.a(h,u.P,h,h,"function",A.b([m,n,A.a(h,a3,h,h,"params",A.b([b1,b2,p,l,k,A.a(h,a3,h,h,h,A.b([A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,!0,h,h,h,h),b1,b2,A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,c,h,h,h,h,h,h,h,h,h),A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,b,h,h,h,h,h,h,h,h,h),A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,a,h,h,h,h,h,h,h,h,h)],a8),h,a4,h,h,h,h,h,h,j,h,h,h,0,h,h,h,h,h,h,h)],a8),h,a4,h,h,h,h,h,h,o,h,h,h,0,h,h,h,h,h,h,h),A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,a,h,h,h,h,h,h,h,h,h),b1,b2,A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,i,h,h,h,h,h,h,h,h,h)],a8),h,"[{;=]",h,h,h,h,!0,"[^\\w\\s\\*&:<>]",q,h,h,h,h,!0,h,h,h,h,h,h) -o=A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,a,h,h,h,h,h,h,h,h,h) -j=A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,b,h,h,h,h,h,h,h,h,h) -k=A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,c,h,h,h,h,h,h,h,h,h) -l=A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,i,h,h,h,h,h,h,h,h,h) -p=A.l(["keyword",a0,"built_in",a1,"literal",a2],a5,a5) -return A.a(b0,h,h,h,h,A.b([a7,q,o,b1,b2,j,k,l,A.a(h,u.M,h,h,h,A.b([A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,!0,h,h,h,h),A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,a,h,h,h,h,h,h,h,h,h)],a8),h,">",h,h,h,h,h,h,p,h,h,h,h,h,h,h,h,h,h,h),A.a(h,"[a-zA-Z]\\w*::",h,h,h,h,h,h,h,h,h,h,h,h,A.l(["keyword",a0,"built_in",a1,"literal",a2],a5,a5),h,h,h,h,h,h,h,h,h,h,h),A.a(h,h,"class struct",h,"class",A.b([A.a(h,"<",h,h,h,A.b([A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,!0,h,h,h,h)],a8),h,">",h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h),$.jk()],a8),h,"[{;:]",h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h)],a8),h,h,h,h,h,h,h,"{var q=null,p=t.N,o=A.b(["arm"],t.s),n=A.l(["meta",".2byte .4byte .align .ascii .asciz .balign .byte .code .data .else .end .endif .endm .endr .equ .err .exitm .extern .global .hword .if .ifdef .ifndef .include .irp .long .macro .rept .req .section .set .skip .space .text .word .arm .thumb .code16 .code32 .force_thumb .thumb_func .ltorg ALIAS ALIGN ARM AREA ASSERT ATTR CN CODE CODE16 CODE32 COMMON CP DATA DCB DCD DCDU DCDO DCFD DCFDU DCI DCQ DCQU DCW DCWU DN ELIF ELSE END ENDFUNC ENDIF ENDP ENTRY EQU EXPORT EXPORTAS EXTERN FIELD FILL FUNCTION GBLA GBLL GBLS GET GLOBAL IF IMPORT INCBIN INCLUDE INFO KEEP LCLA LCLL LCLS LTORG MACRO MAP MEND MEXIT NOFP OPT PRESERVE8 PROC QN READONLY RELOC REQUIRE REQUIRE8 RLIST FN ROUT SETA SETL SETS SN SPACE SUBT THUMB THUMBX TTL WHILE WEND ","built_in","r0 r1 r2 r3 r4 r5 r6 r7 r8 r9 r10 r11 r12 r13 r14 r15 pc lr sp ip sl sb fp a1 a2 a3 a4 v1 v2 v3 v4 v5 v6 v7 v8 f0 f1 f2 f3 f4 f5 f6 f7 p0 p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12 p13 p14 p15 c0 c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 q0 q1 q2 q3 q4 q5 q6 q7 q8 q9 q10 q11 q12 q13 q14 q15 cpsr_c cpsr_x cpsr_s cpsr_f cpsr_cx cpsr_cxs cpsr_xs cpsr_xsf cpsr_sf cpsr_cxsf spsr_c spsr_x spsr_s spsr_f spsr_cx spsr_cxs spsr_xs spsr_xsf spsr_sf spsr_cxsf s0 s1 s2 s3 s4 s5 s6 s7 s8 s9 s10 s11 s12 s13 s14 s15 s16 s17 s18 s19 s20 s21 s22 s23 s24 s25 s26 s27 s28 s29 s30 s31 d0 d1 d2 d3 d4 d5 d6 d7 d8 d9 d10 d11 d12 d13 d14 d15 d16 d17 d18 d19 d20 d21 d22 d23 d24 d25 d26 d27 d28 d29 d30 d31 {PC} {VAR} {TRUE} {FALSE} {OPT} {CONFIG} {ENDIAN} {CODESIZE} {CPU} {FPU} {ARCHITECTURE} {PCSTOREOFFSET} {ARMASM_VERSION} {INTER} {ROPI} {RWPI} {SWST} {NOSWST} . @"],p,p),m=t._ -return A.a(o,q,q,!0,q,A.b([A.a(q,"\\b(adc|(qd?|sh?|u[qh]?)?add(8|16)?|usada?8|(q|sh?|u[qh]?)?(as|sa)x|and|adrl?|sbc|rs[bc]|asr|b[lx]?|blx|bxj|cbn?z|tb[bh]|bic|bfc|bfi|[su]bfx|bkpt|cdp2?|clz|clrex|cmp|cmn|cpsi[ed]|cps|setend|dbg|dmb|dsb|eor|isb|it[te]{0,3}|lsl|lsr|ror|rrx|ldm(([id][ab])|f[ds])?|ldr((s|ex)?[bhd])?|movt?|mvn|mra|mar|mul|[us]mull|smul[bwt][bt]|smu[as]d|smmul|smmla|mla|umlaal|smlal?([wbt][bt]|d)|mls|smlsl?[ds]|smc|svc|sev|mia([bt]{2}|ph)?|mrr?c2?|mcrr2?|mrs|msr|orr|orn|pkh(tb|bt)|rbit|rev(16|sh)?|sel|[su]sat(16)?|nop|pop|push|rfe([id][ab])?|stm([id][ab])?|str(ex)?[bhd]?|(qd?)?sub|(sh?|q|u[qh]?)?sub(8|16)|[su]xt(a?h|a?b(16)?)|srs([id][ab])?|swpb?|swi|smi|tst|teq|wfe|wfi|yield)(eq|ne|cs|cc|mi|pl|vs|vc|hi|ls|ge|lt|gt|le|al|hs|lo)?[sptrx]?",q,q,"keyword",q,q,"\\s",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"[;@]",q,q,"comment",A.b([$.aq(),A.a(q,"(?:TODO|FIXME|NOTE|BUG|XXX):",q,q,"doctag",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q)],m),q,"$",q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q),$.b_(),$.aM(),A.a(q,"'",q,q,"string",q,q,"[^\\\\]'",q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q),A.a(q,"\\|",q,q,"title",q,q,"\\|",q,q,q,q,q,"\\n",q,q,q,q,0,q,q,q,q,q,q,q),A.a(q,q,q,q,"number",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,A.b([A.a(q,"[#$=]?0x[0-9a-f]+",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"[#$=]?0b[01]+",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"[#$=]\\d+",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\b\\d+",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],m)),A.a(q,q,q,q,"symbol",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,A.b([A.a(q,"^[a-z_\\.\\$][a-z0-9_\\.\\$]+",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"^\\s*[a-z_\\.\\$][a-z0-9_\\.\\$]+:",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"[=#]\\w+",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],m))],m),q,q,q,q,q,q,q,q,n,"\\.?[a-zA-Z]\\w*",q,A.m(p,t.n),q,q,q,q,q,q,q,q)}) -s($,"bcg","aRJ",()=>{var q="(?:TODO|FIXME|NOTE|BUG|XXX):",p=null,o="code",n="emphasis",m=t.s,l=A.b(["adoc"],m),k=$.aq(),j=t._ -return A.a(l,p,p,p,p,A.b([A.a(p,"^/{4,}\\n",p,p,"comment",A.b([k,A.a(p,q,p,p,"doctag",p,p,p,p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p)],j),p,"\\n/{4,}$",p,p,p,p,p,p,p,p,p,p,10,p,p,p,p,p,p,p),A.a(p,"^//",p,p,"comment",A.b([k,A.a(p,q,p,p,"doctag",p,p,p,p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p)],j),p,"$",p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p),A.a(p,"^\\.\\w.*$",p,p,"title",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"^[=\\*]{4,}\\n",p,p,p,p,p,"\\n^[=\\*]{4,}$",p,p,p,p,p,p,p,p,p,p,10,p,p,p,p,p,p,p),A.a(p,p,p,p,"section",p,p,p,p,p,p,p,p,p,p,p,p,p,10,p,p,p,p,p,p,A.b([A.a(p,"^(={1,5}) .+?( \\1)?$",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"^[^\\[\\]\\n]+?\\n[=\\-\\x7e\\^\\+]{2,}$",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p)],j)),A.a(p,"^:.+?:",p,p,"meta",p,p,"\\s",p,p,p,p,!0,p,p,p,p,p,10,p,p,p,p,p,p,p),A.a(p,"^\\[.+?\\]$",p,p,"meta",p,p,p,p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p),A.a(p,"^_{4,}\\n",p,p,"quote",p,p,"\\n_{4,}$",p,p,p,p,p,p,p,p,p,p,10,p,p,p,p,p,p,p),A.a(p,"^[\\-\\.]{4,}\\n",p,p,o,p,p,"\\n[\\-\\.]{4,}$",p,p,p,p,p,p,p,p,p,p,10,p,p,p,p,p,p,p),A.a(p,"^\\+{4,}\\n",p,p,p,A.b([A.a(p,"<",p,p,p,p,p,">",p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,A.b(["xml"],m),p)],j),p,"\\n\\+{4,}$",p,p,p,p,p,p,p,p,p,p,10,p,p,p,p,p,p,p),A.a(p,"^(\\*+|\\-+|\\.+|[^\\n]+?::)\\s+",p,p,"bullet",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"^(NOTE|TIP|IMPORTANT|WARNING|CAUTION):\\s+",p,p,"symbol",p,p,p,p,p,p,p,p,p,p,p,p,p,10,p,p,p,p,p,p,p),A.a(p,"\\B\\*(?![\\*\\s])",p,p,"strong",A.b([A.a(p,"\\\\*\\w",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p)],j),p,"(\\n{2}|\\*)",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"\\B'(?!['\\s])",p,p,n,A.b([A.a(p,"\\\\'\\w",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p)],j),p,"(\\n{2}|')",p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p),A.a(p,"_(?![_\\s])",p,p,n,p,p,"(\\n{2}|_)",p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p),A.a(p,p,p,p,"string",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,A.b([A.a(p,"``.+?''",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"`.+?'",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p)],j)),A.a(p,"(`.+?`|\\+.+?\\+)",p,p,o,p,p,p,p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p),A.a(p,"^[ \\t]",p,p,o,p,p,"$",p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p),A.a(p,"^'{3,}[ \\t]*$",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,10,p,p,p,p,p,p,p),A.a(p,"(link:)?(http|https|ftp|file|irc|image:?):\\S+\\[.*?\\]",p,p,p,A.b([A.a(p,"(link|image:?):",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p),A.a(p,"\\w",p,p,"link",p,p,"[^\\[]+",p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p),A.a(p,"\\[",p,p,"string",p,p,"\\]",p,p,p,!0,!0,p,p,p,p,p,0,p,p,p,p,p,p,p)],j),p,p,p,p,p,p,p,p,p,p,p,p,10,!0,p,p,p,p,p,p)],j),p,p,p,p,p,p,p,p,p,p,p,A.m(t.N,t.n),p,p,p,p,p,p,p,p)}) -s($,"bch","aRK",()=>{var q,p,o,n,m,l="false synchronized int abstract float private char boolean static null if const for true while long throw strictfp finally protected import native final return void enum else extends implements break transient new catch instanceof byte super volatile case assert short package default double public try this switch continue throws privileged aspectOf adviceexecution proceed cflowbelow cflow initialization preinitialization staticinitialization withincode target within execution getWithinTypeName handler thisJoinPoint thisJoinPointStaticPart thisEnclosingJoinPointStaticPart declare parents warning error soft precedence thisAspectInstance",k=null,j="@[A-Za-z]+",i="[{;=]",h="false synchronized int abstract float private char boolean static null if const for true while long throw strictfp finally protected import native final return void enum else extends implements break transient new catch instanceof byte super volatile case assert short package default double public try this switch continue throws privileged aspectOf adviceexecution proceed cflowbelow cflow initialization preinitialization staticinitialization withincode target within execution getWithinTypeName handler thisJoinPoint thisJoinPointStaticPart thisEnclosingJoinPointStaticPart declare parents warning error soft precedence thisAspectInstance get set args call",g="class interface",f="[a-zA-Z_]\\w*\\s*\\(",e=t._,d=A.a(k,"/\\*\\*",k,k,"comment",A.b([A.a(k,"\\w+@",k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,0,k,k,k,k,k,k,k),A.a(k,j,k,k,"doctag",k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k),$.aq(),A.a(k,"(?:TODO|FIXME|NOTE|BUG|XXX):",k,k,"doctag",k,k,k,k,k,k,k,k,k,k,k,k,k,0,k,k,k,k,k,k,k)],e),k,"\\*/",k,k,k,k,k,k,k,k,k,k,0,k,k,k,k,k,k,k),c=$.ba(),b=$.b_(),a=$.c0(),a0=$.aM(),a1=A.a(k,k,"extends implements pertypewithin perthis pertarget percflowbelow percflow issingleton",k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k),a2=$.dU() -a1=A.a(k,k,"aspect",k,"class",A.b([a1,a2,A.a(k,"\\([^\\)]*",k,k,k,k,k,"[)]+",k,k,k,k,!1,k,h,k,k,k,k,k,k,k,k,k,k,k)],e),k,i,k,k,k,k,!0,'[:;"\\[\\]]',k,k,k,k,k,k,k,k,k,k,k,k) -q=A.a(k,k,g,k,"class",A.b([A.a(k,k,"extends implements",k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k),a2],e),k,i,k,k,k,k,!0,'[:"\\[\\]]',g,k,k,k,0,k,k,k,k,k,k,k) -p=A.a(k,k,"pointcut after before around throwing returning",k,k,A.b([A.a(k,f,k,k,k,A.b([a2],e),k,k,k,k,k,k,k,k,k,k,k,k,k,!0,k,k,k,k,k,k)],e),k,"[)]",k,k,k,k,!1,'["\\[\\]]',k,k,k,k,k,k,k,k,k,k,k,k) -o=A.a(k,"[:]",k,k,k,A.b([A.a(k,f,k,k,k,k,k,k,k,k,k,k,k,k,h,k,k,k,0,k,k,k,k,k,k,k),a0],e),k,"[{;]",k,k,k,k,!1,'["\\[\\]]',l,k,k,k,0,!0,k,k,k,k,k,k) -n=A.a(k,k,"new throw",k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,0,k,k,k,k,k,k,k) -a2=A.a(k,f,k,k,k,A.b([a2],e),k,k,k,k,k,k,k,k,k,k,k,k,0,!0,k,k,k,k,k,k) -m=$.bw() -return A.a(k,k,k,k,k,A.b([d,c,b,a,a0,a1,q,p,o,n,A.a(k,"\\w+ +\\w+(\\.)?\\w+\\s*\\([^\\)]*\\)\\s*((throws)[\\w\\s,]+)?[\\{;]",k,k,"function",A.b([a2,A.a(k,"\\(",k,k,"params",A.b([a,a0,m,b],e),k,"\\)",k,k,k,k,k,k,l,k,k,k,0,k,k,k,k,k,k,k),c,b],e),k,i,k,k,k,k,!0,k,l,k,k,k,k,!0,k,k,k,k,k,k),m,A.a(k,j,k,k,"meta",k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k)],e),k,k,k,k,k,k,k,"<\\/|#",l,k,k,A.m(t.N,t.n),k,k,k,k,k,k,k,k)}) -s($,"bci","aRL",()=>{var q,p="~contains~0",o=null,n="built_in",m=t.N,l=A.l(["~contains~0",A.a(o,"`[\\s\\S]",o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o)],m,t.n),k=A.b(["ahk"],t.s) -m=A.l(["keyword","Break Continue Critical Exit ExitApp Gosub Goto New OnExit Pause return SetBatchLines SetTimer Suspend Thread Throw Until ahk_id ahk_class ahk_pid ahk_exe ahk_group","literal","true false NOT AND OR","built_in","ComSpec Clipboard ClipboardAll ErrorLevel"],m,m) -q=t._ -return A.a(k,o,o,!0,o,A.b([A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,p,o,o,o,o,o,o,o,o,o),A.a(o,'"',o,o,"string",A.b([A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,p,o,o,o,o,o,o,o,o,o)],q),o,'"',o,o,o,o,o,"\\n",o,o,o,o,o,o,o,o,o,o,o,o),A.a(o,";",o,o,"comment",A.b([$.aq(),A.a(o,"(?:TODO|FIXME|NOTE|BUG|XXX):",o,o,"doctag",o,o,o,o,o,o,o,o,o,o,o,o,o,0,o,o,o,o,o,o,o)],q),o,"$",o,o,o,o,o,o,o,o,o,o,0,o,o,o,o,o,o,o),$.b_(),A.a(o,"\\b\\d+(\\.\\d+)?",o,o,"number",o,o,o,o,o,o,o,o,o,o,o,o,o,0,o,o,o,o,o,o,o),A.a(o,"%[a-zA-Z0-9#_$@]+%",o,o,"variable",o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o),A.a(o,"^\\s*\\w+\\s*(,|%)",o,o,n,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,"title",o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,A.b([A.a(o,'^[^\\n";]+::(?!=)',o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o),A.a(o,'^[^\\n";]+:(?!=)',o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,0,o,o,o,o,o,o,o)],q)),A.a(o,"^\\s*#\\w+",o,o,"meta",o,o,"$",o,o,o,o,o,o,o,o,o,o,0,o,o,o,o,o,o,o),A.a(o,"A_[a-zA-Z0-9]+",o,o,n,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o),A.a(o,",\\s*,",o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o)],q),o,o,o,o,o,o,o,o,m,o,o,l,o,o,o,o,o,o,o,o)}) -s($,"bcj","aRM",()=>{var q,p,o,n,m="~contains~3",l=null,k="~contains~2",j="~contains~1",i="~contains~0",h="comment",g="doctag",f="(?:TODO|FIXME|NOTE|BUG|XXX):",e=t._,d=A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,A.b([$.ng(),$.bw()],e)),c=A.a(l,l,l,l,"string",l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,A.b([A.a(l,'"',l,l,l,A.b([A.a(l,'""',l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,0,l,l,l,l,l,l,l)],e),l,'"',l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l),A.a(l,"'",l,l,l,A.b([A.a(l,"''",l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,0,l,l,l,l,l,l,l)],e),l,"'",l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l)],e)),b=A.a(l,"\\$[A-z0-9_]+",l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l),a=$.aq(),a0=t.N -a=A.l(["~contains~3",d,"~contains~2",c,"~contains~1",b,"~contains~0",A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,A.b([A.a(l,";",l,l,h,A.b([a,A.a(l,f,l,l,g,l,l,l,l,l,l,l,l,l,l,l,l,l,0,l,l,l,l,l,l,l)],e),l,"$",l,l,l,l,l,l,l,l,l,l,0,l,l,l,l,l,l,l),A.a(l,"#cs",l,l,h,A.b([a,A.a(l,f,l,l,g,l,l,l,l,l,l,l,l,l,l,l,l,l,0,l,l,l,l,l,l,l)],e),l,"#ce",l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l),A.a(l,"#comments-start",l,l,h,A.b([a,A.a(l,f,l,l,g,l,l,l,l,l,l,l,l,l,l,l,l,l,0,l,l,l,l,l,l,l)],e),l,"#comments-end",l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l)],e))],a0,t.n) -b=A.l(["keyword","ByRef Case Const ContinueCase ContinueLoop Default Dim Do Else ElseIf EndFunc EndIf EndSelect EndSwitch EndWith Enum Exit ExitLoop For Func Global If In Local Next ReDim Return Select Static Step Switch Then To Until Volatile WEnd While With","built_in","Abs ACos AdlibRegister AdlibUnRegister Asc AscW ASin Assign ATan AutoItSetOption AutoItWinGetTitle AutoItWinSetTitle Beep Binary BinaryLen BinaryMid BinaryToString BitAND BitNOT BitOR BitRotate BitShift BitXOR BlockInput Break Call CDTray Ceiling Chr ChrW ClipGet ClipPut ConsoleRead ConsoleWrite ConsoleWriteError ControlClick ControlCommand ControlDisable ControlEnable ControlFocus ControlGetFocus ControlGetHandle ControlGetPos ControlGetText ControlHide ControlListView ControlMove ControlSend ControlSetText ControlShow ControlTreeView Cos Dec DirCopy DirCreate DirGetSize DirMove DirRemove DllCall DllCallAddress DllCallbackFree DllCallbackGetPtr DllCallbackRegister DllClose DllOpen DllStructCreate DllStructGetData DllStructGetPtr DllStructGetSize DllStructSetData DriveGetDrive DriveGetFileSystem DriveGetLabel DriveGetSerial DriveGetType DriveMapAdd DriveMapDel DriveMapGet DriveSetLabel DriveSpaceFree DriveSpaceTotal DriveStatus EnvGet EnvSet EnvUpdate Eval Execute Exp FileChangeDir FileClose FileCopy FileCreateNTFSLink FileCreateShortcut FileDelete FileExists FileFindFirstFile FileFindNextFile FileFlush FileGetAttrib FileGetEncoding FileGetLongName FileGetPos FileGetShortcut FileGetShortName FileGetSize FileGetTime FileGetVersion FileInstall FileMove FileOpen FileOpenDialog FileRead FileReadLine FileReadToArray FileRecycle FileRecycleEmpty FileSaveDialog FileSelectFolder FileSetAttrib FileSetEnd FileSetPos FileSetTime FileWrite FileWriteLine Floor FtpSetProxy FuncName GUICreate GUICtrlCreateAvi GUICtrlCreateButton GUICtrlCreateCheckbox GUICtrlCreateCombo GUICtrlCreateContextMenu GUICtrlCreateDate GUICtrlCreateDummy GUICtrlCreateEdit GUICtrlCreateGraphic GUICtrlCreateGroup GUICtrlCreateIcon GUICtrlCreateInput GUICtrlCreateLabel GUICtrlCreateList GUICtrlCreateListView GUICtrlCreateListViewItem GUICtrlCreateMenu GUICtrlCreateMenuItem GUICtrlCreateMonthCal GUICtrlCreateObj GUICtrlCreatePic GUICtrlCreateProgress GUICtrlCreateRadio GUICtrlCreateSlider GUICtrlCreateTab GUICtrlCreateTabItem GUICtrlCreateTreeView GUICtrlCreateTreeViewItem GUICtrlCreateUpdown GUICtrlDelete GUICtrlGetHandle GUICtrlGetState GUICtrlRead GUICtrlRecvMsg GUICtrlRegisterListViewSort GUICtrlSendMsg GUICtrlSendToDummy GUICtrlSetBkColor GUICtrlSetColor GUICtrlSetCursor GUICtrlSetData GUICtrlSetDefBkColor GUICtrlSetDefColor GUICtrlSetFont GUICtrlSetGraphic GUICtrlSetImage GUICtrlSetLimit GUICtrlSetOnEvent GUICtrlSetPos GUICtrlSetResizing GUICtrlSetState GUICtrlSetStyle GUICtrlSetTip GUIDelete GUIGetCursorInfo GUIGetMsg GUIGetStyle GUIRegisterMsg GUISetAccelerators GUISetBkColor GUISetCoord GUISetCursor GUISetFont GUISetHelp GUISetIcon GUISetOnEvent GUISetState GUISetStyle GUIStartGroup GUISwitch Hex HotKeySet HttpSetProxy HttpSetUserAgent HWnd InetClose InetGet InetGetInfo InetGetSize InetRead IniDelete IniRead IniReadSection IniReadSectionNames IniRenameSection IniWrite IniWriteSection InputBox Int IsAdmin IsArray IsBinary IsBool IsDeclared IsDllStruct IsFloat IsFunc IsHWnd IsInt IsKeyword IsNumber IsObj IsPtr IsString Log MemGetStats Mod MouseClick MouseClickDrag MouseDown MouseGetCursor MouseGetPos MouseMove MouseUp MouseWheel MsgBox Number ObjCreate ObjCreateInterface ObjEvent ObjGet ObjName OnAutoItExitRegister OnAutoItExitUnRegister Ping PixelChecksum PixelGetColor PixelSearch ProcessClose ProcessExists ProcessGetStats ProcessList ProcessSetPriority ProcessWait ProcessWaitClose ProgressOff ProgressOn ProgressSet Ptr Random RegDelete RegEnumKey RegEnumVal RegRead RegWrite Round Run RunAs RunAsWait RunWait Send SendKeepActive SetError SetExtended ShellExecute ShellExecuteWait Shutdown Sin Sleep SoundPlay SoundSetWaveVolume SplashImageOn SplashOff SplashTextOn Sqrt SRandom StatusbarGetText StderrRead StdinWrite StdioClose StdoutRead String StringAddCR StringCompare StringFormat StringFromASCIIArray StringInStr StringIsAlNum StringIsAlpha StringIsASCII StringIsDigit StringIsFloat StringIsInt StringIsLower StringIsSpace StringIsUpper StringIsXDigit StringLeft StringLen StringLower StringMid StringRegExp StringRegExpReplace StringReplace StringReverse StringRight StringSplit StringStripCR StringStripWS StringToASCIIArray StringToBinary StringTrimLeft StringTrimRight StringUpper Tan TCPAccept TCPCloseSocket TCPConnect TCPListen TCPNameToIP TCPRecv TCPSend TCPShutdown, UDPShutdown TCPStartup, UDPStartup TimerDiff TimerInit ToolTip TrayCreateItem TrayCreateMenu TrayGetMsg TrayItemDelete TrayItemGetHandle TrayItemGetState TrayItemGetText TrayItemSetOnEvent TrayItemSetState TrayItemSetText TraySetClick TraySetIcon TraySetOnEvent TraySetPauseIcon TraySetState TraySetToolTip TrayTip UBound UDPBind UDPCloseSocket UDPOpen UDPRecv UDPSend VarGetType WinActivate WinActive WinClose WinExists WinFlash WinGetCaretPos WinGetClassList WinGetClientSize WinGetHandle WinGetPos WinGetProcess WinGetState WinGetText WinGetTitle WinKill WinList WinMenuSelectItem WinMinimizeAll WinMinimizeAllUndo WinMove WinSetOnTop WinSetState WinSetTitle WinSetTrans WinWait","literal","True False And Null Not Or"],a0,a0) -c=A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,i,l,l,l,l,l,l,l,l,l) -d=A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,j,l,l,l,l,l,l,l,l,l) -q=A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,k,l,l,l,l,l,l,l,l,l) -p=A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,m,l,l,l,l,l,l,l,l,l) -o=A.l(["meta-keyword","comments include include-once NoTrayIcon OnAutoItStartRegister pragma compile RequireAdmin"],a0,a0) -n=A.a(l,"\\\\\\n",l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,0,l,l,l,l,l,l,l) -a0=A.l(["meta-keyword","include"],a0,a0) -return A.a(l,l,l,!0,l,A.b([c,d,q,p,A.a(l,"#",l,l,"meta",A.b([n,A.a(l,l,"include",l,l,A.b([A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,k,l,l,l,l,l,l,l,l,l),A.a(l,l,l,l,"meta-string",l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,A.b([A.a(l,"<",l,l,l,l,l,">",l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l),A.a(l,'"',l,l,l,A.b([A.a(l,'""',l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,0,l,l,l,l,l,l,l)],e),l,'"',l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l),A.a(l,"'",l,l,l,A.b([A.a(l,"''",l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,0,l,l,l,l,l,l,l)],e),l,"'",l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l)],e))],e),l,"$",l,l,l,l,l,l,a0,l,l,l,l,l,l,l,l,l,l,l),A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,k,l,l,l,l,l,l,l,l,l),A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,i,l,l,l,l,l,l,l,l,l)],e),l,"$",l,l,l,l,l,l,o,l,l,l,l,l,l,l,l,l,l,l),A.a(l,"@[A-z0-9_]+",l,l,"symbol",l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l),A.a(l,l,"Func",l,"function",A.b([$.dU(),A.a(l,"\\(",l,l,"params",A.b([A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,j,l,l,l,l,l,l,l,l,l),A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,k,l,l,l,l,l,l,l,l,l),A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,m,l,l,l,l,l,l,l,l,l)],e),l,"\\)",l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l)],e),l,"$",l,l,l,l,l,"\\$|\\[|%",l,l,l,l,l,l,l,l,l,l,l,l)],e),l,l,l,l,l,l,l,"\\/\\*",b,l,l,a,l,l,l,l,l,l,l,l)}) -s($,"bck","aRN",()=>{var q=null,p=t.N,o=A.l(["keyword","adc add adiw and andi asr bclr bld brbc brbs brcc brcs break breq brge brhc brhs brid brie brlo brlt brmi brne brpl brsh brtc brts brvc brvs bset bst call cbi cbr clc clh cli cln clr cls clt clv clz com cp cpc cpi cpse dec eicall eijmp elpm eor fmul fmuls fmulsu icall ijmp in inc jmp ld ldd ldi lds lpm lsl lsr mov movw mul muls mulsu neg nop or ori out pop push rcall ret reti rjmp rol ror sbc sbr sbrc sbrs sec seh sbi sbci sbic sbis sbiw sei sen ser ses set sev sez sleep spm st std sts sub subi swap tst wdr","built_in","r0 r1 r2 r3 r4 r5 r6 r7 r8 r9 r10 r11 r12 r13 r14 r15 r16 r17 r18 r19 r20 r21 r22 r23 r24 r25 r26 r27 r28 r29 r30 r31 x|0 xh xl y|0 yh yl z|0 zh zl ucsr1c udr1 ucsr1a ucsr1b ubrr1l ubrr1h ucsr0c ubrr0h tccr3c tccr3a tccr3b tcnt3h tcnt3l ocr3ah ocr3al ocr3bh ocr3bl ocr3ch ocr3cl icr3h icr3l etimsk etifr tccr1c ocr1ch ocr1cl twcr twdr twar twsr twbr osccal xmcra xmcrb eicra spmcsr spmcr portg ddrg ping portf ddrf sreg sph spl xdiv rampz eicrb eimsk gimsk gicr eifr gifr timsk tifr mcucr mcucsr tccr0 tcnt0 ocr0 assr tccr1a tccr1b tcnt1h tcnt1l ocr1ah ocr1al ocr1bh ocr1bl icr1h icr1l tccr2 tcnt2 ocr2 ocdr wdtcr sfior eearh eearl eedr eecr porta ddra pina portb ddrb pinb portc ddrc pinc portd ddrd pind spdr spsr spcr udr0 ucsr0a ucsr0b ubrr0l acsr admux adcsr adch adcl porte ddre pine pinf","meta",".byte .cseg .db .def .device .dseg .dw .endmacro .equ .eseg .exit .include .list .listmac .macro .nolist .org .set"],p,p),n=t._ -return A.a(q,q,q,!0,q,A.b([$.b_(),A.a(q,";",q,q,"comment",A.b([$.aq(),A.a(q,"(?:TODO|FIXME|NOTE|BUG|XXX):",q,q,"doctag",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q)],n),q,"$",q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q),$.bw(),$.ng(),A.a(q,"\\b(\\$[a-zA-Z0-9]+|0o[0-7]+)",q,q,"number",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),$.aM(),A.a(q,"'",q,q,"string",q,q,"[^\\\\]'",q,q,q,q,q,"[^\\\\][^']",q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"^[A-Za-z0-9_.$]+:",q,q,"symbol",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"#",q,q,"meta",q,q,"$",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"@[0-9]+",q,q,"subst",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],n),q,q,q,q,q,q,q,q,o,"\\.?[a-zA-Z]\\w*",q,A.m(p,t.n),q,q,q,q,q,q,q,q)}) -s($,"bcl","aRO",()=>{var q=null,p=t.N,o=A.l(["keyword","BEGIN END if else while do for in break continue delete next nextfile function func exit|10"],p,p),n=t._ -return A.a(q,q,q,q,q,A.b([A.a(q,q,q,q,"variable",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,A.b([A.a(q,"\\$[\\w\\d#@][\\w\\d_]*",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\$\\{(.*?)}",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],n)),A.a(q,q,q,q,"string",A.b([$.aZ()],n),q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,A.b([A.a(q,"(u|b)?r?'''",q,q,q,q,q,"'''",q,q,q,q,q,q,q,q,q,q,10,q,q,q,q,q,q,q),A.a(q,'(u|b)?r?"""',q,q,q,q,q,'"""',q,q,q,q,q,q,q,q,q,q,10,q,q,q,q,q,q,q),A.a(q,"(u|r|ur)'",q,q,q,q,q,"'",q,q,q,q,q,q,q,q,q,q,10,q,q,q,q,q,q,q),A.a(q,'(u|r|ur)"',q,q,q,q,q,'"',q,q,q,q,q,q,q,q,q,q,10,q,q,q,q,q,q,q),A.a(q,"(b|br)'",q,q,q,q,q,"'",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,'(b|br)"',q,q,q,q,q,'"',q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),$.c0(),$.aM()],n)),$.yQ(),$.ch(),$.dB()],n),q,q,q,q,q,q,q,q,o,q,q,A.m(p,t.n),q,q,q,q,q,q,q,q)}) -s($,"bcm","aRP",()=>{var q=null,p=t._ -return A.a(q,q,q,q,q,A.b([$.ba(),$.b_(),$.c0(),$.aM(),$.bw(),A.a(q,"#",q,q,"meta",q,q,"$",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,q,"class interface",q,"class",A.b([A.a(q,q,"extends implements",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),$.dU()],p),q,"{",q,q,q,q,!0,":",q,q,q,q,q,q,q,q,q,q,q,q)],p),q,q,q,q,q,q,q,q,"false int abstract private char boolean static null if for true while long throw finally protected final return void enum else break new catch byte super case short default double public try this switch continue reverse firstfast firstonly forupdate nofetch sum avg minof maxof count order group by asc desc index hint like dispaly edit client server ttsbegin ttscommit str real date container anytype common div mod",q,q,A.m(t.N,t.n),q,q,q,q,q,q,q,q)}) -s($,"bcn","aRQ",()=>{var q,p,o,n,m="~contains~3~contains~1",l="variable",k=null,j=t._,i=t.N,h=A.l([m,A.a(k,k,k,k,l,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,A.b([A.a(k,"\\$[\\w\\d#@][\\w\\d_]*",k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k),A.a(k,"\\$\\{(.*?)}",k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k)],j))],i,t.n),g=A.b(["sh","zsh"],t.s) -i=A.l(["keyword","if then else elif fi for while in do done case esac function","literal","true false","built_in","break cd continue eval exec exit export getopts hash pwd readonly return shift test times trap umask unset alias bind builtin caller command declare echo enable help let local logout mapfile printf read readarray source type typeset ulimit unalias set shopt autoload bg bindkey bye cap chdir clone comparguments compcall compctl compdescribe compfiles compgroups compquote comptags comptry compvalues dirs disable disown echotc echoti emulate fc fg float functions getcap getln history integer jobs kill limit log noglob popd print pushd pushln rehash sched setcap setopt stat suspend ttyctl unfunction unhash unlimit unsetopt vared wait whence where which zcompile zformat zftp zle zmodload zparseopts zprof zpty zregexparse zsocket zstyle ztcp","_","-ne -eq -lt -gt -f -d -e -s -l -a"],i,i) -q=A.a(k,"^#![^\\n]+sh\\s*$",k,k,"meta",k,k,k,k,k,k,k,k,k,k,k,k,k,10,k,k,k,k,k,k,k) -p=A.a(k,"\\w[\\w\\d_]*\\s*\\(\\s*\\)\\s*\\{",k,k,"function",A.b([A.a(k,"\\w[\\w\\d_]*",k,k,"title",k,k,k,k,k,k,k,k,k,k,k,k,k,0,k,k,k,k,k,k,k)],j),k,k,k,k,k,k,k,k,k,k,k,k,0,!0,k,k,k,k,k,k) -o=$.ch() -n=$.aZ() -return A.a(g,k,k,k,k,A.b([q,p,o,A.a(k,'"',k,k,"string",A.b([n,A.a(k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,m,k,k,k,k,k,k,k,k,k),A.a(k,"\\$\\(",k,k,l,A.b([n],j),k,"\\)",k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k)],j),k,'"',k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k),A.a(k,'\\\\"',k,k,"",k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k),A.a(k,"'",k,k,"string",k,k,"'",k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k),A.a(k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,m,k,k,k,k,k,k,k,k,k)],j),k,k,k,k,k,k,k,k,i,"\\b-?[a-z\\._]+\\b",k,h,k,k,k,k,k,k,k,k)}) -s($,"bco","aRR",()=>{var q="(?:TODO|FIXME|NOTE|BUG|XXX):",p=null,o="number",n=t.N,m=A.l(["keyword","ABS ASC AND ATN AUTO|0 BEEP BLOAD|10 BSAVE|10 CALL CALLS CDBL CHAIN CHDIR CHR$|10 CINT CIRCLE CLEAR CLOSE CLS COLOR COM COMMON CONT COS CSNG CSRLIN CVD CVI CVS DATA DATE$ DEFDBL DEFINT DEFSNG DEFSTR DEF|0 SEG USR DELETE DIM DRAW EDIT END ENVIRON ENVIRON$ EOF EQV ERASE ERDEV ERDEV$ ERL ERR ERROR EXP FIELD FILES FIX FOR|0 FRE GET GOSUB|10 GOTO HEX$ IF THEN ELSE|0 INKEY$ INP INPUT INPUT# INPUT$ INSTR IMP INT IOCTL IOCTL$ KEY ON OFF LIST KILL LEFT$ LEN LET LINE LLIST LOAD LOC LOCATE LOF LOG LPRINT USING LSET MERGE MID$ MKDIR MKD$ MKI$ MKS$ MOD NAME NEW NEXT NOISE NOT OCT$ ON OR PEN PLAY STRIG OPEN OPTION BASE OUT PAINT PALETTE PCOPY PEEK PMAP POINT POKE POS PRINT PRINT] PSET PRESET PUT RANDOMIZE READ REM RENUM RESET|0 RESTORE RESUME RETURN|0 RIGHT$ RMDIR RND RSET RUN SAVE SCREEN SGN SHELL SIN SOUND SPACE$ SPC SQR STEP STICK STOP STR$ STRING$ SWAP SYSTEM TAB TAN TIME$ TIMER TROFF TRON TO USR VAL VARPTR VARPTR$ VIEW WAIT WHILE WEND WIDTH WINDOW WRITE XOR"],n,n),l=$.aM(),k=$.aq(),j=t._ -return A.a(p,p,p,!0,p,A.b([l,A.a(p,"REM",p,p,"comment",A.b([k,A.a(p,q,p,p,"doctag",p,p,p,p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p)],j),p,"$",p,p,p,p,p,p,p,p,p,p,10,p,p,p,p,p,p,p),A.a(p,"'",p,p,"comment",A.b([k,A.a(p,q,p,p,"doctag",p,p,p,p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p)],j),p,"$",p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p),A.a(p,"^[0-9]+ ",p,p,"symbol",p,p,p,p,p,p,p,p,p,p,p,p,p,10,p,p,p,p,p,p,p),A.a(p,"\\b([0-9]+[0-9edED.]*[#!]?)",p,p,o,p,p,p,p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p),A.a(p,"(&[hH][0-9a-fA-F]{1,4})",p,p,o,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"(&[oO][0-7]{1,6})",p,p,o,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p)],j),p,p,p,p,p,p,p,"^.",m,"[a-zA-Z][a-zA-Z0-9_$%!#]*",p,A.m(n,t.n),p,p,p,p,p,p,p,p)}) -s($,"bcq","aRS",()=>{var q=null,p=t._ -return A.a(q,q,q,q,q,A.b([A.a(q,"<",q,q,"attribute",q,q,">",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"::=",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,A.a(q,q,q,q,q,A.b([A.a(q,"<",q,q,q,q,q,">",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),$.ba(),$.b_(),$.c0(),$.aM()],p),q,"$",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),q,q)],p),q,q,q,q,q,q,q,q,q,q,q,A.m(t.N,t.n),q,q,q,q,q,q,q,q)}) -s($,"bcr","aRT",()=>{var q="~contains~3~contains~0",p=null,o=A.l([q,A.a(p,"[\\+\\-]",p,p,"literal",p,p,p,p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p)],t.N,t.n),n=t._ -return A.a(A.b(["bf"],t.s),p,p,p,p,A.b([A.a(p,"[^\\[\\]\\.,\\+\\-<> \r\n]",p,p,"comment",A.b([$.aq(),A.a(p,"(?:TODO|FIXME|NOTE|BUG|XXX):",p,p,"doctag",p,p,p,p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p)],n),p,"[\\[\\]\\.,\\+\\-<> \r\n]",p,p,p,p,p,p,p,p,p,p,0,p,!0,p,p,p,p,p),A.a(p,"[\\[\\]]",p,p,"title",p,p,p,p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p),A.a(p,"[\\.,]",p,p,"string",p,p,p,p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p),A.a(p,"(?:\\+\\+|\\-\\-)",p,p,p,A.b([A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,q,p,p,p,p,p,p,p,p,p)],n),p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,q,p,p,p,p,p,p,p,p,p)],n),p,p,p,p,p,p,p,p,p,p,p,o,p,p,p,p,p,p,p,p)}) -s($,"bcv","aRW",()=>{var q="~contains~5~contains~1",p="div mod in and or not xor asserterror begin case do downto else end exit for if of repeat then to until while with var",o="~contains~0",n=null,m="~contains~1",l="(?:TODO|FIXME|NOTE|BUG|XXX):",k="string",j=$.jk(),i=t._,h=A.a(n,"\\(",n,n,"params",A.b([A.a(n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,o,n,n,n,n,n,n,n,n,n),A.a(n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,m,n,n,n,n,n,n,n,n,n)],i),n,"\\)",n,n,n,n,n,n,p,n,n,n,n,n,n,n,n,n,n,n),g=$.ba(),f=$.aq(),e=t.N -f=A.l([q,A.a(n,n,"procedure",n,"function",A.b([j,h,g,A.a(n,"\\{",n,n,"comment",A.b([f,A.a(n,l,n,n,"doctag",n,n,n,n,n,n,n,n,n,n,n,n,n,0,n,n,n,n,n,n,n)],i),n,"\\}",n,n,n,n,n,n,n,n,n,n,0,n,n,n,n,n,n,n),A.a(n,"\\(\\*",n,n,"comment",A.b([f,A.a(n,l,n,n,"doctag",n,n,n,n,n,n,n,n,n,n,n,n,n,0,n,n,n,n,n,n,n)],i),n,"\\*\\)",n,n,n,n,n,n,n,n,n,n,10,n,n,n,n,n,n,n)],i),n,"[:;]",n,n,n,n,n,n,"procedure|10",n,n,n,n,n,n,n,n,n,n,n),"~contains~1",A.a(n,"(#\\d+)+",n,n,k,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n),"~contains~0",A.a(n,"'",n,n,k,A.b([A.a(n,"''",n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n)],i),n,"'",n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n)],e,t.n) -e=A.l(["keyword",p,"literal","false true"],e,e) -return A.a(n,n,n,!0,n,A.b([A.a(n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,o,n,n,n,n,n,n,n,n,n),A.a(n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,m,n,n,n,n,n,n,n,n,n),A.a(n,"\\b\\d+(\\.\\d+)?(DT|D|T)",n,n,"number",n,n,n,n,n,n,n,n,n,n,n,n,n,0,n,n,n,n,n,n,n),A.a(n,'"',n,n,k,n,n,'"',n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n),$.dB(),A.a(n,"OBJECT (Table|Form|Report|Dataport|Codeunit|XMLport|MenuSuite|Page|Query) (\\d+) ([^\\r\\n]+)",n,n,"class",A.b([j,A.a(n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,q,n,n,n,n,n,n,n,n,n)],i),n,n,n,n,n,n,n,n,n,n,n,n,n,!0,n,n,n,n,n,n),A.a(n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,q,n,n,n,n,n,n,n,n,n)],i),n,n,n,n,n,n,n,"\\/\\*",e,n,n,f,n,n,n,n,n,n,n,n)}) -s($,"bcw","aRX",()=>{var q=null,p="[a-zA-Z]\\w*",o=t.N,n=A.b(["capnp"],t.s),m=A.l(["keyword","struct enum interface union group import using const annotation extends in of on as with from fixed","built_in","Void Bool Int8 Int16 Int32 Int64 UInt8 UInt16 UInt32 UInt64 Float32 Float64 Text Data AnyPointer AnyStruct Capability List","literal","true false"],o,o),l=t._ -return A.a(n,q,q,q,q,A.b([$.aM(),$.dB(),$.ch(),A.a(q,"@0x[\\w\\d]{16};",q,q,"meta",q,q,q,q,q,q,q,q,"\\n",q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"@\\d+\\b",q,q,"symbol",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,q,"struct enum",q,"class",A.b([A.a(q,p,q,q,"title",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,A.a(q,q,q,q,q,q,q,q,q,q,!0,q,!0,q,q,q,q,q,q,q,q,q,q,q,q,q),q,q)],l),q,"\\{",q,q,q,q,q,"\\n",q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,q,"interface",q,"class",A.b([A.a(q,p,q,q,"title",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,A.a(q,q,q,q,q,q,q,q,q,q,!0,q,!0,q,q,q,q,q,q,q,q,q,q,q,q,q),q,q)],l),q,"\\{",q,q,q,q,q,"\\n",q,q,q,q,q,q,q,q,q,q,q,q)],l),q,q,q,q,q,q,q,q,m,q,q,A.m(o,t.n),q,q,q,q,q,q,q,q)}) -s($,"bcx","aRY",()=>{var q="~contains~4~contains~0~contains~3",p=null,o="~contains~4~contains~0~contains~2",n="string",m="~contains~4",l="~contains~3",k=t._,j=t.N,i=A.l([q,A.a(p,"#[0-9a-fA-F_]+|\\$[01_]+|[0-9_]+(?:\\.[0-9_](?:[eE][+-]?\\d+)?)?[kMGTPmunpf]?",p,p,"number",p,p,p,p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p),o,A.a(p,"'",p,p,n,p,p,"'",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),"~contains~4",A.a(p,'"',p,p,n,A.b([A.a(p,"``",p,p,"subst",A.b([A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,l,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,m,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,o,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,q,p,p,p,p,p,p,p,p,p)],k),p,"``",p,p,p,!0,!0,p,"assembly module package import alias class interface object given value assign void function new of extends satisfies abstracts in out return break continue throw assert dynamic if else switch case for while try catch finally then let this outer super is exists nonempty",p,p,p,10,p,p,p,p,p,p,p)],k),p,'"',p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),"~contains~3",A.a(p,'"""',p,p,n,p,p,'"""',p,p,p,p,p,p,p,p,p,p,10,p,p,p,p,p,p,p)],j,t.n) -j=A.l(["keyword","assembly module package import alias class interface object given value assign void function new of extends satisfies abstracts in out return break continue throw assert dynamic if else switch case for while try catch finally then let this outer super is exists nonempty shared abstract formal default actual variable late native deprecatedfinal sealed annotation suppressWarnings small","meta","doc by license see throws tagged"],j,j) -return A.a(p,p,p,p,p,A.b([$.ba(),A.a(p,"/\\*",p,p,"comment",A.b([A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,!0,p,p,p,p),$.aq(),A.a(p,"(?:TODO|FIXME|NOTE|BUG|XXX):",p,p,"doctag",p,p,p,p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p)],k),p,"\\*/",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,'@[a-z]\\w*(?:\\:"[^"]*")?',p,p,"meta",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,l,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,m,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,o,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,q,p,p,p,p,p,p,p,p,p)],k),p,p,p,p,p,p,p,"\\$[^01]|#[^0-9a-fA-F]",j,p,p,i,p,p,p,p,p,p,p,p)}) -s($,"bcz","aRZ",()=>{var q=null,p=t.N,o=A.b(["clean","icl","dcl"],t.s),n=A.l(["keyword","if let in with where case of class instance otherwise implementation definition system module from import qualified as special code inline foreign export ccall stdcall generic derive infix infixl infixr","built_in","Int Real Char Bool","literal","True False"],p,p) -return A.a(o,q,q,q,q,A.b([$.ba(),$.b_(),$.c0(),$.aM(),$.bw(),A.a(q,"->|<-[|:]?|#!?|>>=|\\{\\||\\|\\}|:==|=:|<>",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],t._),q,q,q,q,q,q,q,q,n,q,q,A.m(p,t.n),q,q,q,q,q,q,q,q)}) -s($,"bcB","aS0",()=>{var q=null -return A.a(q,q,q,q,q,A.b([A.a(q,"^([\\w.-]+|\\s*#_)?=>",q,q,"meta",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,A.a(q,q,q,q,q,q,q,"$",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,A.b(["clojure"],t.s),q),q,q)],t._),q,q,q,q,q,q,q,q,q,q,q,A.m(t.N,t.n),q,q,q,q,q,q,q,q)}) -s($,"bcA","aS_",()=>{var q="~contains~0~contains~1~starts~contains~3~contains~0~contains~9",p=u.R,o=null,n="~contains~0~contains~1~starts~contains~3~contains~0~contains~8",m="~contains~0~contains~1~starts~contains~3~contains~0~contains~7",l="~contains~0~contains~1~starts~contains~3~contains~0~contains~5",k="~contains~0~contains~1~starts~contains~3~contains~0~contains~4",j="comment",i="(?:TODO|FIXME|NOTE|BUG|XXX):",h="~contains~0~contains~1~starts~contains~3~contains~0",g="~contains~0",f="~contains~0~contains~1~starts~contains~1",e="~contains~0~contains~1~starts~contains~2",d="~contains~0~contains~1~starts~contains~3",c="~contains~0~contains~1~starts",b=A.a(o,p,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,0,o,o,o,o,o,o,o),a=A.a(o,"\\b(true|false|nil)\\b",o,o,"literal",o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o),a0=A.a(o,"[-+]?\\d+(\\.\\d+)?",o,o,"number",o,o,o,o,o,o,o,o,o,o,o,o,o,0,o,o,o,o,o,o,o),a1=A.a(o,u.h,o,o,"symbol",o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o),a2=$.aq(),a3=t._,a4=t.N -a4=A.l([q,b,n,a,m,a0,l,a1,k,A.a(o,";",o,o,j,A.b([a2,A.a(o,i,o,o,"doctag",o,o,o,o,o,o,o,o,o,o,o,o,o,0,o,o,o,o,o,o,o)],a3),o,"$",o,o,o,o,o,o,o,o,o,o,0,o,o,o,o,o,o,o),h,A.a(o,"[\\[\\{]",o,o,o,A.b([A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,g,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,f,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,e,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,d,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,k,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,l,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,h,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,m,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,n,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,q,o,o,o,o,o,o,o,o,o)],a3),o,"[\\]\\}]",o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o),d,A.a(o,"\\^\\{",o,o,j,A.b([A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,h,o,o,o,o,o,o,o,o,o)],a3),o,"\\}",o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o),e,A.a(o,u.g,o,o,j,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o),f,A.a(o,'"',o,o,"string",A.b([$.aZ()],a3),o,'"',o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o),c,A.a(o,o,o,o,o,A.b([A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,g,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,f,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,e,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,d,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,k,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,l,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,h,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,m,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,n,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,q,o,o,o,o,o,o,o,o,o)],a3),o,o,o,o,!0,o,o,o,o,o,o,o,0,o,o,o,o,o,o,o),"~contains~0",A.a(o,"\\(",o,o,o,A.b([A.a(o,j,o,o,j,A.b([a2,A.a(o,i,o,o,"doctag",o,o,o,o,o,o,o,o,o,o,o,o,o,0,o,o,o,o,o,o,o)],a3),o,"",o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o),A.a(o,p,o,o,"name",o,o,o,o,o,o,o,o,o,A.l(["builtin-name","def defonce cond apply if-not if-let if not not= = < > <= >= == + / * - rem quot neg? pos? delay? symbol? keyword? true? false? integer? empty? coll? list? set? ifn? fn? associative? sequential? sorted? counted? reversible? number? decimal? class? distinct? isa? float? rational? reduced? ratio? odd? even? char? seq? vector? string? map? nil? contains? zero? instance? not-every? not-any? libspec? -> ->> .. . inc compare do dotimes mapcat take remove take-while drop letfn drop-last take-last drop-while while intern condp case reduced cycle split-at split-with repeat replicate iterate range merge zipmap declare line-seq sort comparator sort-by dorun doall nthnext nthrest partition eval doseq await await-for let agent atom send send-off release-pending-sends add-watch mapv filterv remove-watch agent-error restart-agent set-error-handler error-handler set-error-mode! error-mode shutdown-agents quote var fn loop recur throw try monitor-enter monitor-exit defmacro defn defn- macroexpand macroexpand-1 for dosync and or when when-not when-let comp juxt partial sequence memoize constantly complement identity assert peek pop doto proxy defstruct first rest cons defprotocol cast coll deftype defrecord last butlast sigs reify second ffirst fnext nfirst nnext defmulti defmethod meta with-meta ns in-ns create-ns import refer keys select-keys vals key val rseq name namespace promise into transient persistent! conj! assoc! dissoc! pop! disj! use class type num float double short byte boolean bigint biginteger bigdec print-method print-dup throw-if printf format load compile get-in update-in pr pr-on newline flush read slurp read-line subvec with-open memfn time re-find re-groups rand-int rand mod locking assert-valid-fdecl alias resolve ref deref refset swap! reset! set-validator! compare-and-set! alter-meta! reset-meta! commute get-validator alter ref-set ref-history-count ref-min-history ref-max-history ensure sync io! new next conj set! to-array future future-call into-array aset gen-class reduce map filter find empty hash-map hash-set sorted-map sorted-map-by sorted-set sorted-set-by vec vector seq flatten reverse assoc dissoc list disj get union difference intersection extend extend-type extend-protocol int nth delay count concat chunk chunk-buffer chunk-append chunk-first chunk-rest max min dec unchecked-inc-int unchecked-inc unchecked-dec-inc unchecked-dec unchecked-negate unchecked-add-int unchecked-add unchecked-subtract-int unchecked-subtract chunk-next chunk-cons chunked-seq? prn vary-meta lazy-seq spread list* str find-keyword keyword symbol gensym force rationalize"],a4,a4),p,o,o,o,o,o,o,o,A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,c,o,o,o,o,o,o,o,o,o),o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,c,o,o,o,o,o,o,o,o,o)],a3),o,"\\)",o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o)],a4,t.n) -return A.a(A.b(["clj"],t.s),o,o,o,o,A.b([A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,g,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,f,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,e,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,d,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,k,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,l,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,h,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,m,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,n,o,o,o,o,o,o,o,o,o)],a3),o,o,o,o,o,o,o,"\\S",o,o,o,a4,o,o,o,o,o,o,o,o)}) -s($,"bcC","aS1",()=>{var q=null,p=t.N,o=A.b(["cmake.in"],t.s),n=A.l(["keyword","break cmake_host_system_information cmake_minimum_required cmake_parse_arguments cmake_policy configure_file continue elseif else endforeach endfunction endif endmacro endwhile execute_process file find_file find_library find_package find_path find_program foreach function get_cmake_property get_directory_property get_filename_component get_property if include include_guard list macro mark_as_advanced math message option return separate_arguments set_directory_properties set_property set site_name string unset variable_watch while add_compile_definitions add_compile_options add_custom_command add_custom_target add_definitions add_dependencies add_executable add_library add_link_options add_subdirectory add_test aux_source_directory build_command create_test_sourcelist define_property enable_language enable_testing export fltk_wrap_ui get_source_file_property get_target_property get_test_property include_directories include_external_msproject include_regular_expression install link_directories link_libraries load_cache project qt_wrap_cpp qt_wrap_ui remove_definitions set_source_files_properties set_target_properties set_tests_properties source_group target_compile_definitions target_compile_features target_compile_options target_include_directories target_link_directories target_link_libraries target_link_options target_sources try_compile try_run ctest_build ctest_configure ctest_coverage ctest_empty_binary_directory ctest_memcheck ctest_read_custom_files ctest_run_script ctest_sleep ctest_start ctest_submit ctest_test ctest_update ctest_upload build_name exec_program export_library_dependencies install_files install_programs install_targets load_command make_directory output_required_files remove subdir_depends subdirs use_mangled_mesa utility_source variable_requires write_file qt5_use_modules qt5_use_package qt5_wrap_cpp on off true false and or not command policy target test exists is_newer_than is_directory is_symlink is_absolute matches less greater equal less_equal greater_equal strless strgreater strequal strless_equal strgreater_equal version_less version_greater version_equal version_less_equal version_greater_equal in_list defined"],p,p) -return A.a(o,q,q,!0,q,A.b([A.a(q,"\\${",q,q,"variable",q,q,"}",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),$.ch(),$.aM(),$.dB()],t._),q,q,q,q,q,q,q,q,n,q,q,A.m(p,t.n),q,q,q,q,q,q,q,q)}) -s($,"bcE","aS2",()=>{var q,p,o,n,m,l,k,j="~contains~8~contains~1",i="in if for while finally new do return else break catch instanceof throw try this switch continue typeof delete debugger super yield import export from as default await then unless until loop of by when and or is isnt not",h="true false null undefined yes no on off",g=u.n,f=null,e="~contains~1",d="~contains~2",c=u.aL,b=u.Y,a=u.bk,a0="~contains~8~contains~0",a1="~contains~2~variants~2~contains~1",a2="function",a3='[:="\\[\\]]',a4=t.N,a5=A.l(["keyword",i,"literal",h,"built_in",g],a4,a4),a6=A.a(f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,!0,f,f,f,f),a7=$.ng(),a8=t._ -a5=A.a(f,"\\([^\\(]",f,f,"params",A.b([A.a(f,"\\(",f,f,f,A.b([a6,a7,A.a(f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,e,f,f,f,f,f,f,f,f,f),A.a(f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,d,f,f,f,f,f,f,f,f,f),A.a(f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,c,f,f,f,f,f,f,f,f,f),A.a(f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,b,f,f,f,f,f,f,f,f,f),A.a(f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,a,f,f,f,f,f,f,f,f,f)],a8),f,"\\)",f,f,f,f,f,f,a5,f,f,f,f,f,f,f,f,f,f,f)],a8),f,f,f,f,f,f,f,f,f,f,f,f,f,!0,f,f,f,f,f,f) -a6=A.a(f,"[A-Za-z$_][0-9A-Za-z$_]*",f,f,"title",f,f,f,f,f,f,f,f,f,f,f,f,f,0,f,f,f,f,f,f,f) -q=t.s -p=A.a(f,f,f,f,f,f,f,f,f,f,f,!0,!0,f,f,f,f,f,f,f,f,f,f,f,A.b(["javascript"],q),A.b([A.a(f,"```",f,f,f,f,f,"```",f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f),A.a(f,"`",f,f,f,f,f,"`",f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f)],a8)) -o=A.a(f,"@[A-Za-z$_][0-9A-Za-z$_]*",f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f) -n=A.a(f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,a1,f,f,f,f,f,f,f,f,f) -m=$.ch() -n=A.a(f,f,f,f,"regexp",f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,A.b([A.a(f,"///",f,f,f,A.b([n,m],a8),f,"///",f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f),A.a(f,"//[gim]{0,3}(?=\\W)",f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,0,f,f,f,f,f,f,f),A.a(f,"\\/(?![ *]).*?(?![\\\\]).\\/[gim]{0,3}(?=\\W)",f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f)],a8)) -l=A.l(["keyword",i,"literal",h,"built_in",g],a4,a4) -l=A.a(f,"#\\{",f,f,"subst",A.b([a7,A.a(f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,e,f,f,f,f,f,f,f,f,f),A.a(f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,d,f,f,f,f,f,f,f,f,f),A.a(f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,c,f,f,f,f,f,f,f,f,f),A.a(f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,b,f,f,f,f,f,f,f,f,f),A.a(f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,a,f,f,f,f,f,f,f,f,f)],a8),f,"}",f,f,f,f,f,f,l,f,f,f,f,f,f,f,f,f,f,f) -k=$.aZ() -k=A.l([j,a5,a0,a6,a,p,b,o,c,n,a1,l,"~contains~2",A.a(f,f,f,f,"string",f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,A.b([A.a(f,"'''",f,f,f,A.b([k],a8),f,"'''",f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f),A.a(f,"'",f,f,f,A.b([k],a8),f,"'",f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f),A.a(f,'"""',f,f,f,A.b([k,A.a(f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,a1,f,f,f,f,f,f,f,f,f)],a8),f,'"""',f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f),A.a(f,'"',f,f,f,A.b([k,A.a(f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,a1,f,f,f,f,f,f,f,f,f)],a8),f,'"',f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f)],a8)),"~contains~1",A.a(f,u.O,f,f,"number",f,f,f,f,f,f,f,f,f,f,f,f,f,0,f,f,f,f,A.a(f,f,f,f,f,f,f,"(\\s*/)?",f,f,f,f,f,f,f,f,f,f,0,f,f,f,f,f,f,f),f,f)],a4,t.n) -q=A.b(["coffee","cson","iced"],q) -a4=A.l(["keyword",i,"literal",h,"built_in",g],a4,a4) -return A.a(q,f,f,f,f,A.b([a7,A.a(f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,e,f,f,f,f,f,f,f,f,f),A.a(f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,d,f,f,f,f,f,f,f,f,f),A.a(f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,c,f,f,f,f,f,f,f,f,f),A.a(f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,b,f,f,f,f,f,f,f,f,f),A.a(f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,a,f,f,f,f,f,f,f,f,f),A.a(f,"###",f,f,"comment",A.b([$.aq(),A.a(f,"(?:TODO|FIXME|NOTE|BUG|XXX):",f,f,"doctag",f,f,f,f,f,f,f,f,f,f,f,f,f,0,f,f,f,f,f,f,f)],a8),f,"###",f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f),m,A.a(f,u.r,f,f,a2,A.b([A.a(f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,a0,f,f,f,f,f,f,f,f,f),A.a(f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,j,f,f,f,f,f,f,f,f,f)],a8),f,"[-=]>",f,f,f,f,f,f,f,f,f,f,f,!0,f,f,f,f,f,f),A.a(f,"[:\\(,=]\\s*",f,f,f,A.b([A.a(f,"(\\(.*\\))?\\s*\\B[-=]>",f,f,a2,A.b([A.a(f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,j,f,f,f,f,f,f,f,f,f)],a8),f,"[-=]>",f,f,f,f,f,f,f,f,f,f,f,!0,f,f,f,f,f,f)],a8),f,f,f,f,f,f,f,f,f,f,f,f,0,f,f,f,f,f,f,f),A.a(f,f,"class",f,"class",A.b([A.a(f,f,"extends",f,f,A.b([A.a(f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,a0,f,f,f,f,f,f,f,f,f)],a8),f,f,f,f,!0,f,f,a3,f,f,f,f,f,f,f,f,f,f,f,f),A.a(f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,a0,f,f,f,f,f,f,f,f,f)],a8),f,"$",f,f,f,f,f,a3,f,f,f,f,f,f,f,f,f,f,f,f),A.a(f,"[A-Za-z$_][0-9A-Za-z$_]*:",f,f,f,f,f,":",f,f,f,f,f,f,f,f,f,f,0,!0,!0,f,f,f,f,f)],a8),f,f,f,f,f,f,f,"\\/\\*",a4,f,f,k,f,f,f,f,f,f,f,f)}) -s($,"bcH","aS4",()=>{var q=null,p=t.N,o=A.l(["keyword","_|0 as at cofix else end exists exists2 fix for forall fun if IF in let match mod Prop return Set then Type using where with Abort About Add Admit Admitted All Arguments Assumptions Axiom Back BackTo Backtrack Bind Blacklist Canonical Cd Check Class Classes Close Coercion Coercions CoFixpoint CoInductive Collection Combined Compute Conjecture Conjectures Constant constr Constraint Constructors Context Corollary CreateHintDb Cut Declare Defined Definition Delimit Dependencies DependentDerive Drop eauto End Equality Eval Example Existential Existentials Existing Export exporting Extern Extract Extraction Fact Field Fields File Fixpoint Focus for From Function Functional Generalizable Global Goal Grab Grammar Graph Guarded Heap Hint HintDb Hints Hypotheses Hypothesis ident Identity If Immediate Implicit Import Include Inductive Infix Info Initial Inline Inspect Instance Instances Intro Intros Inversion Inversion_clear Language Left Lemma Let Libraries Library Load LoadPath Local Locate Ltac ML Mode Module Modules Monomorphic Morphism Next NoInline Notation Obligation Obligations Opaque Open Optimize Options Parameter Parameters Parametric Path Paths pattern Polymorphic Preterm Print Printing Program Projections Proof Proposition Pwd Qed Quit Rec Record Recursive Redirect Relation Remark Remove Require Reserved Reset Resolve Restart Rewrite Right Ring Rings Save Scheme Scope Scopes Script Search SearchAbout SearchHead SearchPattern SearchRewrite Section Separate Set Setoid Show Solve Sorted Step Strategies Strategy Structure SubClass Table Tables Tactic Term Test Theorem Time Timeout Transparent Type Typeclasses Types Undelimit Undo Unfocus Unfocused Unfold Universe Universes Unset Unshelve using Variable Variables Variant Verbose Visibility where with","built_in","abstract absurd admit after apply as assert assumption at auto autorewrite autounfold before bottom btauto by case case_eq cbn cbv change classical_left classical_right clear clearbody cofix compare compute congruence constr_eq constructor contradict contradiction cut cutrewrite cycle decide decompose dependent destruct destruction dintuition discriminate discrR do double dtauto eapply eassumption eauto ecase econstructor edestruct ediscriminate eelim eexact eexists einduction einjection eleft elim elimtype enough equality erewrite eright esimplify_eq esplit evar exact exactly_once exfalso exists f_equal fail field field_simplify field_simplify_eq first firstorder fix fold fourier functional generalize generalizing gfail give_up has_evar hnf idtac in induction injection instantiate intro intro_pattern intros intuition inversion inversion_clear is_evar is_var lapply lazy left lia lra move native_compute nia nsatz omega once pattern pose progress proof psatz quote record red refine reflexivity remember rename repeat replace revert revgoals rewrite rewrite_strat right ring ring_simplify rtauto set setoid_reflexivity setoid_replace setoid_rewrite setoid_symmetry setoid_transitivity shelve shelve_unifiable simpl simple simplify_eq solve specialize split split_Rabs split_Rmult stepl stepr subst sum swap symmetry tactic tauto time timeout top transitivity trivial try tryif unfold unify until using vm_compute with"],p,p),n=t._ -return A.a(q,q,q,q,q,A.b([$.aM(),A.a(q,"\\(\\*",q,q,"comment",A.b([$.aq(),A.a(q,"(?:TODO|FIXME|NOTE|BUG|XXX):",q,q,"doctag",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q)],n),q,"\\*\\)",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),$.bw(),A.a(q,"\\|\\s*",q,q,"type",q,q,"\\w+",q,q,q,!0,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"[-=]>",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],n),q,q,q,q,q,q,q,q,o,q,q,A.m(p,t.n),q,q,q,q,q,q,q,q)}) -s($,"bcI","aS5",()=>{var q=null,p="built_in",o=t.s,n=t._ -return A.a(A.b(["cos","cls"],o),q,q,!0,q,A.b([A.a(q,"\\b(\\d+(\\.\\d*)?|\\.\\d+)",q,q,"number",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q),A.a(q,q,q,q,"string",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,A.b([A.a(q,'"',q,q,q,A.b([A.a(q,'""',q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q)],n),q,'"',q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],n)),$.ba(),$.b_(),A.a(q,";",q,q,"comment",q,q,"$",q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q),A.a(q,"(?:\\$\\$?|\\.\\.)\\^?[a-zA-Z]+",q,q,p,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\$\\$\\$[a-zA-Z]+",q,q,p,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"%[a-z]+(?:\\.[a-z]+)*",q,q,p,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\^%?[a-zA-Z][\\w]*",q,q,"symbol",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"##class|##super|#define|#dim",q,q,"keyword",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"&sql\\(",q,q,q,q,q,"\\)",q,q,q,!0,!0,q,q,q,q,q,q,q,q,q,q,q,A.b(["sql"],o),q),A.a(q,"&(js|jscript|javascript)<",q,q,q,q,q,">",q,q,q,!0,!0,q,q,q,q,q,q,q,q,q,q,q,A.b(["javascript"],o),q),A.a(q,"&html<\\s*<",q,q,q,q,q,">\\s*>",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,A.b(["xml"],o),q)],n),q,q,q,q,q,q,q,q,"property parameter class classmethod clientmethod extends as break catch close continue do d|0 else elseif for goto halt hang h|0 if job j|0 kill k|0 lock l|0 merge new open quit q|0 read r|0 return set s|0 tcommit throw trollback try tstart use view while write w|0 xecute x|0 zkill znspace zn ztrap zwrite zw zzdump zzwrite print zbreak zinsert zload zprint zremove zsave zzprint mv mvcall mvcrt mvdim mvprint zquit zsync ascii",q,q,A.m(t.N,t.n),q,q,q,q,q,q,q,q)}) -s($,"bcJ","aS6",()=>{var q,p,o,n,m,l,k,j,i="~contains~1~contains~6",h=null,g="meta-string",f="~contains~0~contains~4~variants~0",e="~contains~0~contains~4~variants~1",d="~contains~0~contains~4~variants~2",c="~contains~0~contains~4",b="~contains~0~contains~3",a="~contains~0~contains~0",a0="int float while private char char8_t char16_t char32_t catch import module export virtual operator sizeof dynamic_cast|10 typedef const_cast|10 const for static_cast|10 union namespace unsigned long volatile static protected bool template mutable if public friend do goto auto void enum else break extern using asm case typeid wchar_tshort reinterpret_cast|10 default double register explicit signed typename try this switch continue inline delete alignas alignof constexpr consteval constinit decltype concept co_await co_return co_yield requires noexcept static_assert thread_local restrict final override atomic_bool atomic_char atomic_schar atomic_uchar atomic_short atomic_ushort atomic_int atomic_uint atomic_long atomic_ulong atomic_llong atomic_ullong new throw return and and_eq bitand bitor compl not not_eq or or_eq xor xor_eq",a1="std string wstring cin cout cerr clog stdin stdout stderr stringstream istringstream ostringstream auto_ptr deque list queue stack vector map set bitset multiset multimap unordered_set unordered_map unordered_multiset unordered_multimap array shared_ptr abort terminate abs acos asin atan2 atan calloc ceil cosh cos exit exp fabs floor fmod fprintf fputs free frexp fscanf future isalnum isalpha iscntrl isdigit isgraph islower isprint ispunct isspace isupper isxdigit tolower toupper labs ldexp log10 log malloc realloc memchr memcmp memcpy memset modf pow printf putchar puts scanf sinh sin snprintf sprintf sqrt sscanf strcat strchr strcmp strcpy strcspn strlen strncat strncmp strncpy strpbrk strrchr strspn strstr tanh tan vfprintf vprintf vsprintf endl initializer_list unique_ptr _Bool complex _Complex imaginary _Imaginary",a2="true false nullptr NULL",a3="\\(",a4="\\)",a5=t.N,a6=A.l(["meta-keyword",u.i],a5,a5),a7=A.a(h,"\\\\\\n",h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,0,h,h,h,h,h,h,h),a8=t._,a9=A.a(h,h,h,h,g,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,A.b([A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,f,h,h,h,h,h,h,h,h,h),A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,e,h,h,h,h,h,h,h,h,h),A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,d,h,h,h,h,h,h,h,h,h)],a8)),b0=A.a(h,"<.*?>",h,h,g,h,h,"$",h,h,h,h,h,"\\n",h,h,h,h,h,h,h,h,h,h,h,h),b1=$.ba(),b2=$.b_() -a6=A.l([i,A.a(h,"#\\s*[a-z]+\\b",h,h,"meta",A.b([a7,a9,b0,b1,b2],a8),h,"$",h,h,h,h,h,h,a6,h,h,h,h,h,h,h,h,h,h,h),d,A.a(h,u.m,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h),e,A.a(h,u.F,h,h,h,h,h,"'",h,h,h,h,h,".",h,h,h,h,h,h,h,h,h,h,h,h),f,A.a(h,'(u8?|U|L)?"',h,h,h,A.b([$.aZ()],a8),h,'"',h,h,h,h,h,"\\n",h,h,h,h,h,h,h,h,h,h,h,h),c,A.a(h,h,h,h,"string",h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,A.b([A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,f,h,h,h,h,h,h,h,h,h),A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,e,h,h,h,h,h,h,h,h,h),A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,d,h,h,h,h,h,h,h,h,h)],a8)),b,A.a(h,h,h,h,"number",h,h,h,h,h,h,h,h,h,h,h,h,h,0,h,h,h,h,h,h,A.b([A.a(h,"\\b(0b[01']+)",h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h),A.a(h,u.A,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h),A.a(h,u.c,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h)],a8)),a,A.a(h,"\\b[a-z\\d_]*_t\\b",h,h,"keyword",h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h)],a5,t.n) -b0=A.b(["c","cc","h","c++","h++","hpp","hh","hxx","cxx"],t.s) -a9=A.l(["keyword",a0,"built_in",a1,"literal",a2],a5,a5) -a7=A.b([A.a(h,"=",h,h,h,h,h,";",h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h),A.a(h,a3,h,h,h,h,h,a4,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h),A.a(h,h,"new throw return else",h,h,h,h,";",h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h)],a8) -q=A.l(["keyword",a0,"built_in",a1,"literal",a2],a5,a5) -p=A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,a,h,h,h,h,h,h,h,h,h) -o=A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,b,h,h,h,h,h,h,h,h,h) -n=A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,c,h,h,h,h,h,h,h,h,h) -m=A.l(["keyword",a0,"built_in",a1,"literal",a2],a5,a5) -a7=A.a(h,h,h,h,h,A.b([p,b1,b2,o,n,A.a(h,a3,h,h,h,A.b([A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,a,h,h,h,h,h,h,h,h,h),b1,b2,A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,b,h,h,h,h,h,h,h,h,h),A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,c,h,h,h,h,h,h,h,h,h),A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,!0,h,h,h,h)],a8),h,a4,h,h,h,h,h,h,m,h,h,h,0,h,h,h,h,h,h,h)],a8),h,h,h,h,h,h,h,h,q,h,h,h,0,h,h,h,h,h,h,a7) -q=A.l(["keyword",a0,"built_in",a1,"literal",a2],a5,a5) -m=A.a(h,"decltype\\(auto\\)",h,h,h,h,h,h,h,h,h,h,h,h,A.l(["keyword",a0,"built_in",a1,"literal",a2],a5,a5),h,h,h,0,h,h,h,h,h,h,h) -n=A.a(h,"(?:[a-zA-Z_]\\w*::)?[a-zA-Z]\\w*\\s*\\(",h,h,h,A.b([A.a(h,"(?:[a-zA-Z_]\\w*::)?[a-zA-Z]\\w*",h,h,"title",h,h,h,h,h,h,h,h,h,h,h,h,h,0,h,h,h,h,h,h,h)],a8),h,h,h,h,h,h,h,h,h,h,h,h,0,!0,h,h,h,h,h,h) -o=A.l(["keyword",a0,"built_in",a1,"literal",a2],a5,a5) -p=A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,c,h,h,h,h,h,h,h,h,h) -l=A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,b,h,h,h,h,h,h,h,h,h) -k=A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,a,h,h,h,h,h,h,h,h,h) -j=A.l(["keyword",a0,"built_in",a1,"literal",a2],a5,a5) -q=A.a(h,u.P,h,h,"function",A.b([m,n,A.a(h,a3,h,h,"params",A.b([b1,b2,p,l,k,A.a(h,a3,h,h,h,A.b([A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,!0,h,h,h,h),b1,b2,A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,c,h,h,h,h,h,h,h,h,h),A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,b,h,h,h,h,h,h,h,h,h),A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,a,h,h,h,h,h,h,h,h,h)],a8),h,a4,h,h,h,h,h,h,j,h,h,h,0,h,h,h,h,h,h,h)],a8),h,a4,h,h,h,h,h,h,o,h,h,h,0,h,h,h,h,h,h,h),A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,a,h,h,h,h,h,h,h,h,h),b1,b2,A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,i,h,h,h,h,h,h,h,h,h)],a8),h,"[{;=]",h,h,h,h,!0,"[^\\w\\s\\*&:<>]",q,h,h,h,h,!0,h,h,h,h,h,h) -o=A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,a,h,h,h,h,h,h,h,h,h) -j=A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,b,h,h,h,h,h,h,h,h,h) -k=A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,c,h,h,h,h,h,h,h,h,h) -l=A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,i,h,h,h,h,h,h,h,h,h) -p=A.l(["keyword",a0,"built_in",a1,"literal",a2],a5,a5) -return A.a(b0,h,h,h,h,A.b([a7,q,o,b1,b2,j,k,l,A.a(h,u.M,h,h,h,A.b([A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,!0,h,h,h,h),A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,a,h,h,h,h,h,h,h,h,h)],a8),h,">",h,h,h,h,h,h,p,h,h,h,h,h,h,h,h,h,h,h),A.a(h,"[a-zA-Z]\\w*::",h,h,h,h,h,h,h,h,h,h,h,h,A.l(["keyword",a0,"built_in",a1,"literal",a2],a5,a5),h,h,h,h,h,h,h,h,h,h,h),A.a(h,h,"class struct",h,"class",A.b([A.a(h,"<",h,h,h,A.b([A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,!0,h,h,h,h)],a8),h,">",h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h),$.jk()],a8),h,"[{;:]",h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h)],a8),h,h,h,h,h,h,h,"{var q="\\s*([\\w_-]+:)?",p="title",o="\\s*[\\$\\w_][\\w_-]*",n=null,m=t.N,l=A.b(["crm","pcmk"],t.s),k=A.l(["keyword","params meta operations op rule attributes utilization read write deny defined not_defined in_range date spec in ref reference attribute type xpath version and or lt gt tag lte gte eq ne \\ number string","literal","Master Started Slave Stopped start promote demote stop monitor true false"],m,m) -return A.a(l,n,n,!0,n,A.b([$.ch(),A.a(n,n,"node",n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,A.a(n,n,n,n,n,n,n,q,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,A.a(n,n,n,n,p,n,n,o,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n),n,n),n,n),A.a(n,n,"primitive rsc_template",n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,A.a(n,n,n,n,p,n,n,o,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,A.a(n,n,n,n,n,n,n,"\\s*@?[\\w_][\\w_\\.:-]*",n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n),n,n),n,n),A.a(n,"\\b(group|clone|ms|master|location|colocation|order|fencing_topology|rsc_ticket|acl_target|acl_group|user|role|tag|xml)\\s+",n,n,n,n,n,n,n,n,n,n,n,n,"group clone ms master location colocation order fencing_topology rsc_ticket acl_target acl_group user role tag xml",n,n,n,n,n,n,n,n,A.a(n,n,n,n,p,n,n,"[\\$\\w_][\\w_-]*",n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n),n,n),A.a(n,n,"property rsc_defaults op_defaults",n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,A.a(n,n,n,n,p,n,n,q,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n),n,n),$.aM(),A.a(n,"(ocf|systemd|service|lsb):[\\w_:-]+",n,n,"meta",n,n,n,n,n,n,n,n,n,n,n,n,n,0,n,n,n,n,n,n,n),A.a(n,"\\b\\d+(\\.\\d+)?(ms|s|h|m)?",n,n,"number",n,n,n,n,n,n,n,n,n,n,n,n,n,0,n,n,n,n,n,n,n),A.a(n,"[-]?(infinity|inf)",n,n,"literal",n,n,n,n,n,n,n,n,n,n,n,n,n,0,n,n,n,n,n,n,n),A.a(n,"([A-Za-z\\$_\\#][\\w_-]+)=",n,n,"attr",n,n,n,n,n,n,n,n,n,n,n,n,n,0,n,n,n,n,n,n,n),A.a(n,"",n,n,n,n,n,n,n,n,n,n,0,n,n,n,n,n,n,n)],t._),n,n,n,n,n,n,n,n,k,n,n,A.m(m,t.n),n,n,n,n,n,n,n,n)}) -s($,"bcM","aS8",()=>{var q,p,o="~contains~0~contains~0~variants~6~contains~0",n=">",m=null,l="~contains~0~contains~0~variants~5~contains~0",k="}",j="~contains~0~contains~0~variants~4~contains~0",i="\\]",h="~contains~0~contains~0~variants~3~contains~0",g="\\)",f="~contains~0~contains~0~contains~1~contains~9",e="title",d="[A-Za-z_]\\w*(::\\w+)*(\\?|\\!)?",c="~contains~0~contains~0~contains~1~contains~8",b="~contains~0~contains~0~contains~1~contains~7",a="~contains~0~contains~0~contains~1~contains~5",a0="~contains~0~contains~0~contains~1~contains~4",a1="~contains~0~contains~0~contains~1",a2="~contains~0~contains~0~contains~1~contains~3~variants~3~contains~0",a3="~contains~0~contains~0~contains~1~contains~3~variants~2~contains~0",a4="~contains~0~contains~0~contains~1~contains~3~variants~1~contains~0",a5="~contains~0~contains~0~contains~1~contains~3~variants~0~contains~0",a6="~contains~0~contains~0~contains~1~contains~3",a7="~contains~0~contains~0~contains~1~contains~2~variants~3~contains~0",a8="~contains~0~contains~0~contains~1~contains~2~variants~2~contains~0",a9="~contains~0~contains~0~contains~1~contains~2~variants~1~contains~0",b0="~contains~0~contains~0~contains~1~contains~2~variants~0~contains~0",b1="~contains~0~contains~0~contains~1~contains~2",b2="^\\s*\\w+$",b3="~contains~0~contains~0~contains~1~contains~14",b4="~contains~0~contains~0~contains~1~contains~13",b5="~contains~0~contains~0",b6="[a-zA-Z_]\\w*[!?=]?|[-+\\x7e]\\@|<<|>>|[=!]~|===?|<=>|[<>]=?|\\*\\*|[-/+%^&*~|]|//|//=|&[-+*]=?|&\\*\\*|\\[\\][=?]?",b7="~contains~0~contains~0~contains~1~contains~12",b8="~contains~0~contains~0~contains~1~contains~11",b9="function",c0="~contains~0~contains~0~contains~1~contains~10",c1="abstract alias annotation as as? asm begin break case class def do else elsif end ensure enum extend for fun if include instance_sizeof is_a? lib macro module next nil? of out pointerof private protected rescue responds_to? return require select self sizeof struct super then type typeof union uninitialized unless until verbatim when while with yield __DIR__ __END_LINE__ __FILE__ __LINE__",c2="~contains~0",c3=t._,c4=A.a(m,"<",m,m,m,A.b([A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,o,m,m,m,m,m,m,m,m,m)],c3),m,n,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m),c5=A.a(m,"{",m,m,m,A.b([A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,l,m,m,m,m,m,m,m,m,m)],c3),m,k,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m),c6=A.a(m,"\\[",m,m,m,A.b([A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,j,m,m,m,m,m,m,m,m,m)],c3),m,i,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m),c7=A.a(m,"\\(",m,m,m,A.b([A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,h,m,m,m,m,m,m,m,m,m)],c3),m,g,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m),c8=$.ch(),c9=A.a(m,m,"annotation",m,m,A.b([c8,A.a(m,d,m,m,e,m,m,m,m,m,m,m,m,m,m,m,m,m,0,m,m,m,m,m,m,m)],c3),m,"$|;",m,m,m,m,m,"=",m,m,m,m,10,m,m,m,m,m,m,m),d0=A.a(m,m,"lib enum union",m,"class",A.b([c8,A.a(m,d,m,m,e,m,m,m,m,m,m,m,m,m,m,m,m,m,0,m,m,m,m,m,m,m)],c3),m,"$|;",m,m,m,m,m,"=",m,m,m,m,10,m,m,m,m,m,m,m),d1=A.a(m,m,"class module struct",m,"class",A.b([c8,A.a(m,d,m,m,e,m,m,m,m,m,m,m,m,m,m,m,m,m,0,m,m,m,m,m,m,m),A.a(m,"<",m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m)],c3),m,"$|;",m,m,m,m,m,"=",m,m,m,m,m,m,m,m,m,m,m,m),d2=$.aZ(),d3=A.a(m,"@\\[",m,m,"meta",A.b([A.a(m,'"',m,m,"meta-string",A.b([d2],c3),m,'"',m,m,m,m,m,"\\n",m,m,m,m,m,m,m,m,m,m,m,m)],c3),m,i,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m),d4=A.a(m,"(?!%})(!|!=|!==|%|%=|&|&&|&=|\\*|\\*=|\\+|\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\?|\\[|\\{|\\(|\\^|\\^=|\\||\\|=|\\|\\||\\x7e|\\n|\\b(case|if|select|unless|until|when|while)\\b)\\s*",m,m,m,A.b([A.a(m,m,m,m,"regexp",A.b([d2,A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,a1,m,m,m,m,m,m,m,m,m)],c3),m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,A.b([A.a(m,"//[a-z]*",m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,0,m,m,m,m,m,m,m),A.a(m,"/(?!\\/)",m,m,m,m,m,"/[a-z]*",m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m)],c3))],c3),m,m,m,m,m,m,m,m,"case if select unless until when while",m,m,m,0,m,m,m,m,m,m,m),d5=A.a(m,"<",m,m,m,A.b([A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,a2,m,m,m,m,m,m,m,m,m)],c3),m,n,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m),d6=A.a(m,"{",m,m,m,A.b([A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,a3,m,m,m,m,m,m,m,m,m)],c3),m,k,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m),d7=A.a(m,"\\[",m,m,m,A.b([A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,a4,m,m,m,m,m,m,m,m,m)],c3),m,i,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m),d8=A.a(m,"\\(",m,m,m,A.b([A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,a5,m,m,m,m,m,m,m,m,m)],c3),m,g,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m),d9=A.a(m,m,m,m,"regexp",A.b([d2,A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,a1,m,m,m,m,m,m,m,m,m)],c3),m,m,m,m,m,m,m,m,m,m,m,m,0,m,m,m,m,m,m,A.b([A.a(m,"%r\\(",m,m,m,A.b([A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,a5,m,m,m,m,m,m,m,m,m)],c3),m,g,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m),A.a(m,"%r\\[",m,m,m,A.b([A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,a4,m,m,m,m,m,m,m,m,m)],c3),m,i,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m),A.a(m,"%r{",m,m,m,A.b([A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,a3,m,m,m,m,m,m,m,m,m)],c3),m,k,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m),A.a(m,"%r<",m,m,m,A.b([A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,a2,m,m,m,m,m,m,m,m,m)],c3),m,n,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m),A.a(m,"%r\\|",m,m,m,m,m,"\\|",m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m)],c3)),e0=A.a(m,"<",m,m,m,A.b([A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,a7,m,m,m,m,m,m,m,m,m)],c3),m,n,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m),e1=A.a(m,"{",m,m,m,A.b([A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,a8,m,m,m,m,m,m,m,m,m)],c3),m,k,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m),e2=A.a(m,"\\[",m,m,m,A.b([A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,a9,m,m,m,m,m,m,m,m,m)],c3),m,i,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m),e3=A.a(m,"\\(",m,m,m,A.b([A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,b0,m,m,m,m,m,m,m,m,m)],c3),m,g,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m),e4=A.a(m,m,m,m,"string",m,m,m,m,m,m,m,m,m,m,m,m,m,0,m,m,m,m,m,m,A.b([A.a(m,"%q\\(",m,m,m,A.b([A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,b0,m,m,m,m,m,m,m,m,m)],c3),m,g,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m),A.a(m,"%q\\[",m,m,m,A.b([A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,a9,m,m,m,m,m,m,m,m,m)],c3),m,i,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m),A.a(m,"%q{",m,m,m,A.b([A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,a8,m,m,m,m,m,m,m,m,m)],c3),m,k,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m),A.a(m,"%q<",m,m,m,A.b([A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,a7,m,m,m,m,m,m,m,m,m)],c3),m,n,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m),A.a(m,"%q\\|",m,m,m,m,m,"\\|",m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m),A.a(m,"<<-'\\w+'$",m,m,m,m,m,b2,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m)],c3)),e5=A.a(m,m,m,m,"number",m,m,m,m,m,m,m,m,m,m,m,m,m,0,m,m,m,m,m,m,A.b([A.a(m,"\\b0b([01_]+)(_*[ui](8|16|32|64|128))?",m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m),A.a(m,"\\b0o([0-7_]+)(_*[ui](8|16|32|64|128))?",m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m),A.a(m,"\\b0x([A-Fa-f0-9_]+)(_*[ui](8|16|32|64|128))?",m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m),A.a(m,"\\b([1-9][0-9_]*[0-9]|[0-9])(\\.[0-9][0-9_]*)?([eE]_*[-+]?[0-9_]*)?(_*f(32|64))?(?!_)",m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m),A.a(m,"\\b([1-9][0-9_]*|0)(_*[ui](8|16|32|64|128))?",m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m)],c3)),e6=A.a(m,":",m,m,"symbol",A.b([A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,b5,m,m,m,m,m,m,m,m,m),A.a(m,b6,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m)],c3),m,m,m,m,m,m,m,m,m,m,m,m,0,m,m,m,m,m,m,m),e7=A.a(m,"[a-zA-Z_]\\w*(\\!|\\?)?:",m,m,"symbol",m,m,m,m,m,m,m,m,m,m,m,m,m,0,m,m,m,m,m,m,m),e8=A.a(m,m,"fun macro",m,b9,A.b([A.a(m,b6,m,m,e,m,m,m,m,!0,m,m,m,m,m,m,m,m,0,m,m,m,m,m,m,m)],c3),m,"\\B\\b",m,m,m,m,m,m,m,m,m,m,5,m,m,m,m,m,m,m),e9=A.a(m,m,"def",m,b9,A.b([A.a(m,b6,m,m,e,m,m,m,m,!0,m,m,m,m,m,m,m,m,0,m,m,m,m,m,m,m)],c3),m,"\\B\\b",m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m),f0=t.N,f1=A.l(["keyword",c1,"literal","false nil true"],f0,f0) -f1=A.a(m,"#{",m,m,"subst",A.b([A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,c2,m,m,m,m,m,m,m,m,m),A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,b5,m,m,m,m,m,m,m,m,m),A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,b1,m,m,m,m,m,m,m,m,m),A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,a6,m,m,m,m,m,m,m,m,m),A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,a0,m,m,m,m,m,m,m,m,m),A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,a,m,m,m,m,m,m,m,m,m),c8,A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,b,m,m,m,m,m,m,m,m,m),A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,c,m,m,m,m,m,m,m,m,m),A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,f,m,m,m,m,m,m,m,m,m),A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,c0,m,m,m,m,m,m,m,m,m),A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,b8,m,m,m,m,m,m,m,m,m),A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,b7,m,m,m,m,m,m,m,m,m),A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,b4,m,m,m,m,m,m,m,m,m),A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,b3,m,m,m,m,m,m,m,m,m)],c3),m,k,m,m,m,m,m,m,f1,m,m,m,m,m,m,m,m,m,m,m) -d2=A.a(m,m,m,m,"string",A.b([d2,A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,a1,m,m,m,m,m,m,m,m,m)],c3),m,m,m,m,m,m,m,m,m,m,m,m,0,m,m,m,m,m,m,A.b([A.a(m,"'",m,m,m,m,m,"'",m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m),A.a(m,'"',m,m,m,m,m,'"',m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m),A.a(m,"`",m,m,m,m,m,"`",m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m),A.a(m,"%[Qwi]?\\(",m,m,m,A.b([A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,h,m,m,m,m,m,m,m,m,m)],c3),m,g,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m),A.a(m,"%[Qwi]?\\[",m,m,m,A.b([A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,j,m,m,m,m,m,m,m,m,m)],c3),m,i,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m),A.a(m,"%[Qwi]?{",m,m,m,A.b([A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,l,m,m,m,m,m,m,m,m,m)],c3),m,k,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m),A.a(m,"%[Qwi]?<",m,m,m,A.b([A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,o,m,m,m,m,m,m,m,m,m)],c3),m,n,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m),A.a(m,"%[Qwi]?\\|",m,m,m,m,m,"\\|",m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m),A.a(m,"<<-\\w+$",m,m,m,m,m,b2,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m)],c3)) -q=A.b([A.a(m,"\\{\\{",m,m,m,m,m,"\\}\\}",m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m),A.a(m,"\\{%",m,m,m,m,m,"%\\}",m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m)],c3) -p=A.l(["keyword",c1,"literal","false nil true"],f0,f0) -q=A.l([o,c4,l,c5,j,c6,h,c7,f,c9,c,d0,b,d1,a,d3,a0,d4,a2,d5,a3,d6,a4,d7,a5,d8,a6,d9,a7,e0,a8,e1,a9,e2,b0,e3,b1,e4,b3,e5,b4,e6,b7,e7,b8,e8,c0,e9,a1,f1,b5,d2,"~contains~0",A.a(m,m,m,m,"template-variable",A.b([A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,b5,m,m,m,m,m,m,m,m,m),A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,b1,m,m,m,m,m,m,m,m,m),A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,a6,m,m,m,m,m,m,m,m,m),A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,a0,m,m,m,m,m,m,m,m,m),A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,a,m,m,m,m,m,m,m,m,m),c8,A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,b,m,m,m,m,m,m,m,m,m),A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,c,m,m,m,m,m,m,m,m,m),A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,f,m,m,m,m,m,m,m,m,m),A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,c0,m,m,m,m,m,m,m,m,m),A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,b8,m,m,m,m,m,m,m,m,m),A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,b7,m,m,m,m,m,m,m,m,m),A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,b4,m,m,m,m,m,m,m,m,m),A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,b3,m,m,m,m,m,m,m,m,m)],c3),m,m,m,m,m,m,m,m,p,m,m,m,m,m,m,m,m,m,m,q)],f0,t.n) -p=A.b(["cr"],t.s) -f0=A.l(["keyword",c1,"literal","false nil true"],f0,f0) -return A.a(p,m,m,m,m,A.b([A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,c2,m,m,m,m,m,m,m,m,m),A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,b5,m,m,m,m,m,m,m,m,m),A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,b1,m,m,m,m,m,m,m,m,m),A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,a6,m,m,m,m,m,m,m,m,m),A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,a0,m,m,m,m,m,m,m,m,m),A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,a,m,m,m,m,m,m,m,m,m),c8,A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,b,m,m,m,m,m,m,m,m,m),A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,c,m,m,m,m,m,m,m,m,m),A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,f,m,m,m,m,m,m,m,m,m),A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,c0,m,m,m,m,m,m,m,m,m),A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,b8,m,m,m,m,m,m,m,m,m),A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,b7,m,m,m,m,m,m,m,m,m),A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,b4,m,m,m,m,m,m,m,m,m),A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,b3,m,m,m,m,m,m,m,m,m)],c3),m,m,m,m,m,m,m,m,f0,"[a-zA-Z_]\\w*[!?=]?",m,q,m,m,m,m,m,m,m,m)}) -s($,"bcN","aS9",()=>{var q,p,o,n,m,l,k="~contains~4~variants~0~contains~3~contains~2",j="string",i='"',h="~contains~4~variants~0~contains~3~contains~1~contains~3~contains~2~contains~0",g=null,f="~contains~4~variants~0~contains~3~contains~1~contains~3~contains~5",e="~contains~4~variants~0~contains~3~contains~1~contains~3",d="abstract as base bool break byte case catch char checked const continue decimal default delegate do double enum event explicit extern finally fixed float for foreach goto if implicit in int interface internal is lock long object operator out override params private protected public readonly ref sbyte sealed short sizeof stackalloc static string struct switch this try typeof uint ulong unchecked unsafe ushort using virtual void volatile while add alias ascending async await by descending dynamic equals from get global group into join let nameof on orderby partial remove select set value var when where yield",c="\\n",b="~contains~4~variants~0~contains~3~contains~1",a="doctag",a0="(?:TODO|FIXME|NOTE|BUG|XXX):",a1="~contains~4~variants~0",a2="~contains~4",a3=t._,a4=A.a(g,'@"',g,g,j,A.b([A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,h,g,g,g,g,g,g,g,g,g)],a3),g,i,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g),a5=A.a(g,g,g,g,"number",g,g,g,g,g,g,g,g,g,g,g,g,g,0,g,g,g,g,g,g,A.b([A.a(g,"\\b(0b[01']+)",g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g),A.a(g,u.A,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g),A.a(g,u.c,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g)],a3)),a6=A.a(g,'""',g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g),a7=t.N,a8=A.l(["keyword",d,"literal","null false true"],a7,a7),a9=A.a(g,'\\$@"',g,g,j,A.b([A.a(g,"{{",g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g),A.a(g,"}}",g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g),A.a(g,'""',g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g),A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,e,g,g,g,g,g,g,g,g,g)],a3),g,i,g,g,g,g,g,c,g,g,g,g,g,g,g,g,g,g,g,g),b0=A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,b,g,g,g,g,g,g,g,g,g),b1=A.a(g,'@"',g,g,j,A.b([A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,h,g,g,g,g,g,g,g,g,g)],a3),g,i,g,g,g,g,g,c,g,g,g,g,g,g,g,g,g,g,g,g),b2=$.c0(),b3=$.aM(),b4=A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,f,g,g,g,g,g,g,g,g,g),b5=$.aq() -a8=A.a(g,"{",g,g,"subst",A.b([a9,b0,b1,b2,b3,b4,A.a(g,"/\\*",g,g,"comment",A.b([b5,A.a(g,a0,g,g,a,g,g,g,g,g,g,g,g,g,g,g,g,g,0,g,g,g,g,g,g,g)],a3),g,"\\*/",g,g,g,g,g,c,g,g,g,g,g,g,g,g,g,g,g,g)],a3),g,"}",g,g,g,g,g,c,a8,g,g,g,g,g,g,g,g,g,g,g) -b4=A.a(g,'\\$"',g,g,j,A.b([A.a(g,"{{",g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g),A.a(g,"}}",g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g),$.aZ(),A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,e,g,g,g,g,g,g,g,g,g)],a3),g,i,g,g,g,g,g,c,g,g,g,g,g,g,g,g,g,g,g,g) -b1=A.a(g,"{{",g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g) -b0=A.a(g,"}}",g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g) -a9=A.a(g,'""',g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g) -q=A.l(["keyword",d,"literal","null false true"],a7,a7) -p=A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,a1,g,g,g,g,g,g,g,g,g) -o=A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,b,g,g,g,g,g,g,g,g,g) -n=A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,k,g,g,g,g,g,g,g,g,g) -m=A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,f,g,g,g,g,g,g,g,g,g) -l=$.b_() -b3=A.l([k,a4,f,a5,h,a6,e,a8,b,b4,a1,A.a(g,'\\$@"',g,g,j,A.b([b1,b0,a9,A.a(g,"{",g,g,"subst",A.b([p,o,n,b2,b3,m,l],a3),g,"}",g,g,g,g,g,g,q,g,g,g,g,g,g,g,g,g,g,g)],a3),g,i,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g),"~contains~4",A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,A.b([A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,a1,g,g,g,g,g,g,g,g,g),A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,b,g,g,g,g,g,g,g,g,g),A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,k,g,g,g,g,g,g,g,g,g),b2,b3],a3))],a7,t.n) -b2=A.b(["csharp","c#"],t.s) -q=A.l(["keyword",d,"literal","null false true"],a7,a7) -b5=A.a(g,"///",g,g,"comment",A.b([A.a(g,g,g,g,a,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,A.b([A.a(g,"///",g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,0,g,g,g,g,g,g,g),A.a(g,"",g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g),A.a(g,"",g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g)],a3)),b5,A.a(g,a0,g,g,a,g,g,g,g,g,g,g,g,g,g,g,g,g,0,g,g,g,g,g,g,g)],a3),g,"$",g,g,g,g,g,g,g,g,g,g,g,!0,g,g,g,g,g,g) -m=$.ba() -n=A.a(g,"#",g,g,"meta",g,g,"$",g,g,g,g,g,g,A.l(["meta-keyword","if else elif endif define undef warning error line region endregion pragma checksum"],a7,a7),g,g,g,g,g,g,g,g,g,g,g) -o=A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,a2,g,g,g,g,g,g,g,g,g) -p=A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,f,g,g,g,g,g,g,g,g,g) -a9=$.jk() -b0=A.a(g,g,"class interface",g,g,A.b([a9,m,l],a3),g,"[{;=]",g,g,g,g,g,"[^\\s:,]",g,g,g,g,g,g,g,g,g,g,g,g) -b1=A.a(g,g,"namespace",g,g,A.b([A.a(g,"[a-zA-Z](\\.?\\w)*",g,g,"title",g,g,g,g,g,g,g,g,g,g,g,g,g,0,g,g,g,g,g,g,g),m,l],a3),g,"[{;=]",g,g,g,g,g,"[^\\s:]",g,g,g,g,g,g,g,g,g,g,g,g) -b4=A.a(g,"^\\s*\\[",g,g,"meta",A.b([A.a(g,i,g,g,"meta-string",g,g,i,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g)],a3),g,"\\]",g,g,g,!0,!0,g,g,g,g,g,g,g,g,g,g,g,g,g) -a8=A.a(g,g,"new return throw await else",g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,0,g,g,g,g,g,g,g) -a6=A.l(["keyword",d,"literal","null false true"],a7,a7) -a9=A.a(g,"[a-zA-Z]\\w*\\s*\\(",g,g,g,A.b([a9],a3),g,g,g,g,g,g,g,g,g,g,g,g,0,!0,g,g,g,g,g,g) -a7=A.l(["keyword",d,"literal","null false true"],a7,a7) -return A.a(b2,g,g,g,g,A.b([b5,m,l,n,o,p,b0,b1,b4,a8,A.a(g,"([a-zA-Z]\\w*(<[a-zA-Z]\\w*(\\s*,\\s*[a-zA-Z]\\w*)*>)?(\\[\\])?\\s+)+[a-zA-Z]\\w*\\s*\\(",g,g,"function",A.b([a9,A.a(g,"\\(",g,g,"params",A.b([A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,a2,g,g,g,g,g,g,g,g,g),A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,f,g,g,g,g,g,g,g,g,g),l],a3),g,"\\)",g,g,g,!0,!0,g,a7,g,g,g,0,g,g,g,g,g,g,g),m,l],a3),g,"\\s*[{;=]",g,g,g,g,!0,g,a6,g,g,g,g,!0,g,g,g,g,g,g)],a3),g,g,g,g,g,g,g,"::",q,g,g,b3,g,g,g,g,g,g,g,g)}) -s($,"bcO","aSa",()=>{var q=null,p=t.N,o=A.l(["keyword","base-uri child-src connect-src default-src font-src form-action frame-ancestors frame-src img-src media-src object-src plugin-types report-uri sandbox script-src style-src"],p,p) -return A.a(q,q,q,!1,q,A.b([A.a(q,"'",q,q,"string",q,q,"'",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"^Content",q,q,"attribute",q,q,":",q,q,q,q,!0,q,q,q,q,q,q,q,q,q,q,q,q,q)],t._),q,q,q,q,q,q,q,q,o,"[a-zA-Z][a-zA-Z0-9_-]*",q,A.m(p,t.n),q,q,q,q,q,q,q,q)}) -s($,"bcP","aSb",()=>{var q=null,p="attribute",o=$.b_(),n=A.a(q,"#[A-Za-z0-9_-]+",q,q,"selector-id",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),m=A.a(q,"\\.[A-Za-z0-9_-]+",q,q,"selector-class",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),l=$.c0(),k=$.aM(),j=t._,i=A.a(q,"\\[",q,q,"selector-attr",A.b([l,k],j),q,"\\]",q,q,q,q,q,"$",q,q,q,q,q,q,q,q,q,q,q,q),h=A.a(q,":(:)?[a-zA-Z0-9\\_\\-\\+\\(\\)\"'.]+",q,q,"selector-pseudo",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),g=A.a(q,"@(page|font-face)",q,q,q,q,q,q,q,q,q,q,q,q,"@page @font-face","@[a-z-]+",q,q,q,q,q,q,q,q,q,q),f=A.a(q,"@\\-?\\w[\\w]*(\\-\\w+)*",q,q,"keyword",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),e=A.a(q,"[a-z-]+:",q,q,p,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),d=$.a3s() -return A.a(q,q,q,!0,q,A.b([o,n,m,i,h,g,A.a(q,"@",q,q,q,A.b([f,A.a(q,"\\s",q,q,q,A.b([e,l,k,d],j),q,q,q,q,!0,q,!0,q,"and or not only",q,q,q,0,q,q,q,q,q,q,q)],j),q,"[{;]",q,q,q,q,q,":",q,q,q,q,q,!0,q,q,q,q,q,q),A.a(q,"[a-zA-Z-][a-zA-Z0-9_-]*",q,q,"selector-tag",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q),A.a(q,"{",q,q,q,A.b([o,A.a(q,"(?:[A-Z\\_\\.\\-]+|--[a-zA-Z0-9_-]+)\\s*:",q,q,q,A.b([A.a(q,"\\S",q,q,p,q,q,":",q,q,q,q,!0,q,q,q,q,q,q,q,q,q,q,A.a(q,q,q,q,q,A.b([A.a(q,"[\\w-]+\\(",q,q,q,A.b([A.a(q,"[\\w-]+",q,q,"built_in",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\(",q,q,q,A.b([l,k,d],j),q,"\\)",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],j),q,q,q,q,q,q,q,q,q,q,q,q,q,!0,q,q,q,q,q,q),d,k,l,o,A.a(q,"#[0-9A-Fa-f]+",q,q,"number",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"!important",q,q,"meta",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],j),q,q,q,q,!0,q,!0,q,q,q,q,q,q,q,q,q,q,q,q,q),q,q)],j),q,";",q,q,!0,q,q,q,q,q,q,q,q,!0,q,q,q,q,q,q)],j),q,"}",q,q,q,q,q,"\\S",q,q,q,q,q,q,q,q,q,q,q,q)],j),q,q,q,q,q,q,q,"[=\\/|'\\$]",q,q,q,A.m(t.N,t.n),q,q,q,q,q,q,q,q)}) -s($,"bcS","aSc",()=>{var q=null,p="string",o=t.N,n=A.l(["keyword","abstract alias align asm assert auto body break byte case cast catch class const continue debug default delete deprecated do else enum export extern final finally for foreach foreach_reverse|10 goto if immutable import in inout int interface invariant is lazy macro mixin module new nothrow out override package pragma private protected public pure ref return scope shared static struct super switch synchronized template this throw try typedef typeid typeof union unittest version void volatile while with __FILE__ __LINE__ __gshared|10 __thread __traits __DATE__ __EOF__ __TIME__ __TIMESTAMP__ __VENDOR__ __VERSION__","built_in","bool cdouble cent cfloat char creal dchar delegate double dstring float function idouble ifloat ireal long real short string ubyte ucent uint ulong ushort wchar wstring","literal","false null true"],o,o),m=t._ -return A.a(q,q,q,q,q,A.b([$.ba(),$.b_(),A.a(q,"\\/\\+",q,q,"comment",A.b([A.a(q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,!0,q,q,q,q),$.aq(),A.a(q,"(?:TODO|FIXME|NOTE|BUG|XXX):",q,q,"doctag",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q)],m),q,"\\+\\/",q,q,q,q,q,q,q,q,q,q,10,q,q,q,q,q,q,q),A.a(q,'x"[\\da-fA-F\\s\\n\\r]*"[cwd]?',q,q,p,q,q,q,q,q,q,q,q,q,q,q,q,q,10,q,q,q,q,q,q,q),A.a(q,'"',q,q,p,A.b([A.a(q,"\\\\(['\"\\?\\\\abfnrtv]|u[\\dA-Fa-f]{4}|[0-7]{1,3}|x[\\dA-Fa-f]{2}|U[\\dA-Fa-f]{8})|&[a-zA-Z\\d]{2,};",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q)],m),q,'"[cwd]?',q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,'[rq]"',q,q,p,q,q,'"[cwd]?',q,q,q,q,q,q,q,q,q,q,5,q,q,q,q,q,q,q),A.a(q,"`",q,q,p,q,q,"`[cwd]?",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,'q"\\{',q,q,p,q,q,'\\}"',q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\b(((0[xX](([\\da-fA-F][\\da-fA-F_]*|_[\\da-fA-F][\\da-fA-F_]*)\\.([\\da-fA-F][\\da-fA-F_]*|_[\\da-fA-F][\\da-fA-F_]*)|\\.?([\\da-fA-F][\\da-fA-F_]*|_[\\da-fA-F][\\da-fA-F_]*))[pP][+-]?(0|[1-9][\\d_]*|\\d[\\d_]*|[\\d_]+?\\d))|((0|[1-9][\\d_]*|\\d[\\d_]*|[\\d_]+?\\d)(\\.\\d*|([eE][+-]?(0|[1-9][\\d_]*|\\d[\\d_]*|[\\d_]+?\\d)))|\\d+\\.(0|[1-9][\\d_]*|\\d[\\d_]*|[\\d_]+?\\d)(0|[1-9][\\d_]*|\\d[\\d_]*|[\\d_]+?\\d)|\\.(0|[1-9][\\d_]*)([eE][+-]?(0|[1-9][\\d_]*|\\d[\\d_]*|[\\d_]+?\\d))?))([fF]|L|i|[fF]i|Li)?|((0|[1-9][\\d_]*)|0[bB][01_]+|0[xX]([\\da-fA-F][\\da-fA-F_]*|_[\\da-fA-F][\\da-fA-F_]*))(i|[fF]i|Li))",q,q,"number",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q),A.a(q,"\\b((0|[1-9][\\d_]*)|0[bB][01_]+|0[xX]([\\da-fA-F][\\da-fA-F_]*|_[\\da-fA-F][\\da-fA-F_]*))(L|u|U|Lu|LU|uL|UL)?",q,q,"number",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q),A.a(q,"'(\\\\(['\"\\?\\\\abfnrtv]|u[\\dA-Fa-f]{4}|[0-7]{1,3}|x[\\dA-Fa-f]{2}|U[\\dA-Fa-f]{8})|&[a-zA-Z\\d]{2,};|.)",q,q,p,q,q,"'",q,q,q,q,q,".",q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"^#!",q,q,"meta",q,q,"$",q,q,q,q,q,q,q,q,q,q,5,q,q,q,q,q,q,q),A.a(q,"#(line)",q,q,"meta",q,q,"$",q,q,q,q,q,q,q,q,q,q,5,q,q,q,q,q,q,q),A.a(q,"@[a-zA-Z_][a-zA-Z_\\d]*",q,q,"keyword",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],m),q,q,q,q,q,q,q,q,n,"[a-zA-Z_]\\w*",q,A.m(o,t.n),q,q,q,q,q,q,q,q)}) -s($,"bcT","aSd",()=>{var q,p,o,n,m,l,k,j="~contains~0~variants~4~contains~2",i=null,h="~contains~0",g="~contains~0~variants~4~contains~1",f="\\n",e="(?:TODO|FIXME|NOTE|BUG|XXX):",d=t._,c=A.b([A.a(i,"\\${",i,i,i,i,i,"}",i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i)],d),b=$.bw() -c=A.a(i,i,i,i,"subst",A.b([b,A.a(i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,h,i,i,i,i,i,i,i,i,i)],d),i,i,i,i,i,i,i,i,"true false null this is new super",i,i,i,i,i,i,i,i,i,i,c) -q=A.a(i,i,i,i,"subst",i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,A.b([A.a(i,"\\$[A-Za-z0-9_]+",i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i)],d)) -p=A.a(i,"r'''",i,i,i,i,i,"'''",i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i) -o=A.a(i,'r"""',i,i,i,i,i,'"""',i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i) -n=A.a(i,"r'",i,i,i,i,i,"'",i,i,i,i,i,f,i,i,i,i,i,i,i,i,i,i,i,i) -m=A.a(i,'r"',i,i,i,i,i,'"',i,i,i,i,i,f,i,i,i,i,i,i,i,i,i,i,i,i) -l=$.aZ() -k=t.N -l=A.l([j,c,g,q,"~contains~0",A.a(i,i,i,i,"string",i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,A.b([p,o,n,m,A.a(i,"'''",i,i,i,A.b([l,A.a(i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,g,i,i,i,i,i,i,i,i,i),A.a(i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,j,i,i,i,i,i,i,i,i,i)],d),i,"'''",i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i),A.a(i,'"""',i,i,i,A.b([l,A.a(i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,g,i,i,i,i,i,i,i,i,i),A.a(i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,j,i,i,i,i,i,i,i,i,i)],d),i,'"""',i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i),A.a(i,"'",i,i,i,A.b([l,A.a(i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,g,i,i,i,i,i,i,i,i,i),A.a(i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,j,i,i,i,i,i,i,i,i,i)],d),i,"'",i,i,i,i,i,f,i,i,i,i,i,i,i,i,i,i,i,i),A.a(i,'"',i,i,i,A.b([l,A.a(i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,g,i,i,i,i,i,i,i,i,i),A.a(i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,j,i,i,i,i,i,i,i,i,i)],d),i,'"',i,i,i,i,i,f,i,i,i,i,i,i,i,i,i,i,i,i)],d))],k,t.n) -k=A.l(["keyword","abstract as assert async await break case catch class const continue covariant default deferred do dynamic else enum export extends extension external factory false final finally for Function get hide if implements import in inferface is library mixin new null on operator part rethrow return set show static super switch sync this throw true try typedef var void while with yield","built_in","Comparable DateTime Duration Function Iterable Iterator List Map Match Null Object Pattern RegExp Set Stopwatch String StringBuffer StringSink Symbol Type Uri bool double dynamic int num print Element ElementList document querySelector querySelectorAll window"],k,k) -m=A.a(i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,h,i,i,i,i,i,i,i,i,i) -n=$.aq() -o=t.s -return A.a(i,i,i,i,i,A.b([m,A.a(i,"/\\*\\*",i,i,"comment",A.b([n,A.a(i,e,i,i,"doctag",i,i,i,i,i,i,i,i,i,i,i,i,i,0,i,i,i,i,i,i,i)],d),i,"\\*/",i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,A.b(["markdown"],o),i),A.a(i,"///+\\s*",i,i,"comment",A.b([A.a(i,".",i,i,i,i,i,"$",i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,A.b(["markdown"],o),i),n,A.a(i,e,i,i,"doctag",i,i,i,i,i,i,i,i,i,i,i,i,i,0,i,i,i,i,i,i,i)],d),i,"$",i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i),$.ba(),$.b_(),A.a(i,i,"class interface",i,"class",A.b([A.a(i,i,"extends implements",i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i),$.dU()],d),i,"{",i,i,i,i,!0,i,i,i,i,i,i,i,i,i,i,i,i,i),b,A.a(i,"@[A-Za-z]+",i,i,"meta",i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i),A.a(i,"=>",i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i)],d),i,i,i,i,i,i,i,i,k,i,i,l,i,i,i,i,i,i,i,i)}) -s($,"bcV","aSe",()=>{var q,p,o,n,m,l,k,j,i,h,g="~contains~4~contains~1~contains~5",f="(?:TODO|FIXME|NOTE|BUG|XXX):",e=null,d="~contains~4~contains~1~contains~4",c="~contains~4~contains~1~contains~2",b="~contains~1",a="~contains~0",a0="exports register file shl array record property for mod while set ally label uses raise not stored class safecall var interface or private static exit index inherited to else stdcall override shr asm far resourcestring finalization packed virtual out and protected library do xorwrite goto near function end div overload object unit begin string on inline repeat until destructor write message program with read initialization except default nil if case cdecl in downto threadvar of try pascal const external constructor type public then implementation finally published procedure absolute reintroduce operator as is abstract alias assembler bitpacked break continue cppdecl cvar enumerator experimental platform deprecated unimplemented dynamic export far16 forward generic helper implements interrupt iochecks local name nodefault noreturn nostackframe oldfpccall otherwise saveregisters softfloat specialize strict unaligned varargs ",a1=$.aq(),a2=t._ -a1=A.l([g,A.a(e,"\\(\\*",e,e,"comment",A.b([a1,A.a(e,f,e,e,"doctag",e,e,e,e,e,e,e,e,e,e,e,e,e,0,e,e,e,e,e,e,e)],a2),e,"\\*\\)",e,e,e,e,e,e,e,e,e,e,10,e,e,e,e,e,e,e),d,A.a(e,"\\{",e,e,"comment",A.b([a1,A.a(e,f,e,e,"doctag",e,e,e,e,e,e,e,e,e,e,e,e,e,0,e,e,e,e,e,e,e)],a2),e,"\\}",e,e,e,e,e,e,e,e,e,e,0,e,e,e,e,e,e,e),c,A.a(e,e,e,e,"meta",e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,A.b([A.a(e,"\\{\\$",e,e,e,e,e,"\\}",e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e),A.a(e,"\\(\\*\\$",e,e,e,e,e,"\\*\\)",e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e)],a2)),"~contains~1",A.a(e,"(#\\d+)+",e,e,"string",e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e),"~contains~0",A.a(e,"'",e,e,"string",A.b([A.a(e,"''",e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e)],a2),e,"'",e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e)],t.N,t.n) -q=A.b(["dpr","dfm","pas","pascal","freepascal","lazarus","lpr","lfm"],t.s) -p=A.a(e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,a,e,e,e,e,e,e,e,e,e) -o=A.a(e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,b,e,e,e,e,e,e,e,e,e) -n=$.dB() -m=$.jk() -l=A.a(e,"[a-zA-Z]\\w*\\s*=\\s*class\\s*\\(",e,e,e,A.b([m],a2),e,e,e,e,e,e,e,e,e,e,e,e,e,!0,e,e,e,e,e,e) -k=A.a(e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,a,e,e,e,e,e,e,e,e,e) -j=A.a(e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,b,e,e,e,e,e,e,e,e,e) -i=A.a(e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,c,e,e,e,e,e,e,e,e,e) -h=$.ba() -return A.a(q,e,e,!0,e,A.b([p,o,n,l,A.a(e,e,"function constructor destructor procedure",e,"function",A.b([m,A.a(e,"\\(",e,e,"params",A.b([k,j,i,h,A.a(e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,d,e,e,e,e,e,e,e,e,e),A.a(e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,g,e,e,e,e,e,e,e,e,e)],a2),e,"\\)",e,e,e,e,e,e,a0,e,e,e,e,e,e,e,e,e,e,e),A.a(e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,c,e,e,e,e,e,e,e,e,e),h,A.a(e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,d,e,e,e,e,e,e,e,e,e),A.a(e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,g,e,e,e,e,e,e,e,e,e)],a2),e,"[:;]",e,e,e,e,e,e,"function constructor|10 destructor|10 procedure|10",e,e,e,e,e,e,e,e,e,e,e),A.a(e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,c,e,e,e,e,e,e,e,e,e),h,A.a(e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,d,e,e,e,e,e,e,e,e,e),A.a(e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,g,e,e,e,e,e,e,e,e,e)],a2),e,e,e,e,e,e,e,'"|\\$[G-Zg-z]|\\/\\*|<\\/|\\|',a0,e,e,a1,e,e,e,e,e,e,e,e)}) -s($,"bcX","aSf",()=>{var q=null,p="$",o="addition",n=t._ -return A.a(A.b(["patch"],t.s),q,q,q,q,A.b([A.a(q,q,q,q,"meta",q,q,q,q,q,q,q,q,q,q,q,q,q,10,q,q,q,q,q,q,A.b([A.a(q,"^@@ +\\-\\d+,\\d+ +\\+\\d+,\\d+ +@@$",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"^\\*\\*\\* +\\d+,\\d+ +\\*\\*\\*\\*$",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"^\\-\\-\\- +\\d+,\\d+ +\\-\\-\\-\\-$",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],n)),A.a(q,q,q,q,"comment",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,A.b([A.a(q,"Index: ",q,q,q,q,q,p,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"={3,}",q,q,q,q,q,p,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"^\\-{3}",q,q,q,q,q,p,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"^\\*{3} ",q,q,q,q,q,p,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"^\\+{3}",q,q,q,q,q,p,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"^\\*{15}$",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],n)),A.a(q,"^\\+",q,q,o,q,q,p,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"^\\-",q,q,"deletion",q,q,p,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"^\\!",q,q,o,q,q,p,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],n),q,q,q,q,q,q,q,q,q,q,q,A.m(t.N,t.n),q,q,q,q,q,q,q,q)}) -s($,"bcY","aSg",()=>{var q,p,o,n="~contains~2~contains~0~starts~contains~0",m=null,l="(?:TODO|FIXME|NOTE|BUG|XXX):",k=t.N,j=A.l(["name","truncatewords removetags linebreaksbr yesno get_digit timesince random striptags filesizeformat escape linebreaks length_is ljust rjust cut urlize fix_ampersands title floatformat capfirst pprint divisibleby add make_list unordered_list urlencode timeuntil urlizetrunc wordcount stringformat linenumbers slice date dictsort dictsortreversed default_if_none pluralize lower join center default truncatewords_html upper length phone2numeric wordwrap time addslashes slugify first escapejs force_escape iriencode last safe safeseq truncatechars localize unlocalize localtime utc timezone"],k,k),i=t._ -j=A.l([n,A.a(m,"\\|[A-Za-z]+:?",m,m,m,A.b([$.aM(),$.c0()],i),m,m,m,m,m,m,m,m,j,m,m,m,m,m,m,m,m,m,m,m)],k,t.n) -q=t.s -p=A.b(["jinja"],q) -q=A.b(["xml"],q) -o=$.aq() -return A.a(p,m,m,!0,m,A.b([A.a(m,"\\{%\\s*comment\\s*%}",m,m,"comment",A.b([o,A.a(m,l,m,m,"doctag",m,m,m,m,m,m,m,m,m,m,m,m,m,0,m,m,m,m,m,m,m)],i),m,"\\{%\\s*endcomment\\s*%}",m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m),A.a(m,"\\{#",m,m,"comment",A.b([o,A.a(m,l,m,m,"doctag",m,m,m,m,m,m,m,m,m,m,m,m,m,0,m,m,m,m,m,m,m)],i),m,"#}",m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m),A.a(m,"\\{%",m,m,"template-tag",A.b([A.a(m,"\\w+",m,m,"name",m,m,m,m,m,m,m,m,m,A.l(["name","comment endcomment load templatetag ifchanged endifchanged if endif firstof for endfor ifnotequal endifnotequal widthratio extends include spaceless endspaceless regroup ifequal endifequal ssi now with cycle url filter endfilter debug block endblock else autoescape endautoescape csrf_token empty elif endwith static trans blocktrans endblocktrans get_static_prefix get_media_prefix plural get_current_language language get_available_languages get_current_language_bidi get_language_info get_language_info_list localize endlocalize localtime endlocaltime timezone endtimezone get_current_timezone verbatim"],k,k),m,m,m,m,m,m,m,m,A.a(m,m,m,m,m,A.b([A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,n,m,m,m,m,m,m,m,m,m)],i),m,m,m,m,!0,m,m,m,"in by as",m,m,m,0,m,m,m,m,m,m,m),m,m)],i),m,"%}",m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m),A.a(m,"\\{\\{",m,m,"template-variable",A.b([A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,n,m,m,m,m,m,m,m,m,m)],i),m,"}}",m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m)],i),m,m,m,m,m,m,m,m,m,m,m,j,m,m,m,m,m,m,q,m)}) -s($,"bcZ","aSh",()=>{var q=null,p="number",o=t.N,n=A.b(["bind","zone"],t.s),m=A.l(["keyword","IN A AAAA AFSDB APL CAA CDNSKEY CDS CERT CNAME DHCID DLV DNAME DNSKEY DS HIP IPSECKEY KEY KX LOC MX NAPTR NS NSEC NSEC3 NSEC3PARAM PTR RRSIG RP SIG SOA SRV SSHFP TA TKEY TLSA TSIG TXT"],o,o),l=t._ -return A.a(n,q,q,q,q,A.b([A.a(q,";",q,q,"comment",A.b([$.aq(),A.a(q,"(?:TODO|FIXME|NOTE|BUG|XXX):",q,q,"doctag",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q)],l),q,"$",q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q),A.a(q,"^\\$(TTL|GENERATE|INCLUDE|ORIGIN)\\b",q,q,"meta",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"((([0-9A-Fa-f]{1,4}:){7}([0-9A-Fa-f]{1,4}|:))|(([0-9A-Fa-f]{1,4}:){6}(:[0-9A-Fa-f]{1,4}|((25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)){3})|:))|(([0-9A-Fa-f]{1,4}:){5}(((:[0-9A-Fa-f]{1,4}){1,2})|:((25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)){3})|:))|(([0-9A-Fa-f]{1,4}:){4}(((:[0-9A-Fa-f]{1,4}){1,3})|((:[0-9A-Fa-f]{1,4})?:((25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){3}(((:[0-9A-Fa-f]{1,4}){1,4})|((:[0-9A-Fa-f]{1,4}){0,2}:((25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){2}(((:[0-9A-Fa-f]{1,4}){1,5})|((:[0-9A-Fa-f]{1,4}){0,3}:((25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){1}(((:[0-9A-Fa-f]{1,4}){1,6})|((:[0-9A-Fa-f]{1,4}){0,4}:((25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)){3}))|:))|(:(((:[0-9A-Fa-f]{1,4}){1,7})|((:[0-9A-Fa-f]{1,4}){0,5}:((25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)){3}))|:)))\\b",q,q,p,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]).){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\\b",q,q,p,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\b\\d+[dhwm]?",q,q,p,q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q)],l),q,q,q,q,q,q,q,q,m,q,q,A.m(o,t.n),q,q,q,q,q,q,q,q)}) -s($,"bd_","aSi",()=>{var q=null,p=t.s -return A.a(A.b(["docker"],p),q,q,!0,q,A.b([$.ch(),$.c0(),$.aM(),$.dB(),A.a(q,q,"run cmd entrypoint volume add copy workdir label healthcheck shell",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,A.a(q,q,q,q,q,q,q,"[^\\\\]$",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,A.b(["bash"],p),q),q,q)],t._),q,q,q,q,q,q,q,"{var q="~contains~1~contains~1",p=null,o=t._,n=t.N,m=A.l([q,A.a(p,"^\\s*@?rem\\b",p,p,"comment",A.b([$.aq(),A.a(p,"(?:TODO|FIXME|NOTE|BUG|XXX):",p,p,"doctag",p,p,p,p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p)],o),p,"$",p,p,p,p,p,p,p,p,p,p,10,p,p,p,p,p,p,p)],n,t.n),l=A.b(["bat","cmd"],t.s) -n=A.l(["keyword","if else goto for in do call exit not exist errorlevel defined equ neq lss leq gtr geq","built_in","prn nul lpt3 lpt2 lpt1 con com4 com3 com2 com1 aux shift cd dir echo setlocal endlocal set pause copy append assoc at attrib break cacls cd chcp chdir chkdsk chkntfs cls cmd color comp compact convert date dir diskcomp diskcopy doskey erase fs find findstr format ftype graftabl help keyb label md mkdir mode more move path pause print popd pushd promt rd recover rem rename replace restore rmdir shiftsort start subst time title tree type ver verify vol ping net ipconfig taskkill xcopy ren del"],n,n) -return A.a(l,p,p,!0,p,A.b([A.a(p,"%%[^ ]|%[^ ]+?%|![^ ]+?!",p,p,"variable",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,u.v,p,p,"function",A.b([A.a(p,u.b,p,p,"title",p,p,p,p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,q,p,p,p,p,p,p,p,p,p)],o),p,"goto:eof",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"\\b\\d+",p,p,"number",p,p,p,p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,q,p,p,p,p,p,p,p,p,p)],o),p,p,p,p,p,p,p,"\\/\\*",n,p,p,m,p,p,p,p,p,p,p,p)}) -s($,"bd1","aSk",()=>{var q=null,p="built_in",o="string" -return A.a(q,q,q,q,q,A.b([A.a(q,"^dsconfig",q,q,"keyword",q,q,"\\s",q,q,q,q,!0,q,q,q,q,q,10,q,q,q,q,q,q,q),A.a(q,"(list|create|get|set|delete)-(\\w+)",q,q,p,q,q,"\\s",q,q,q,q,!0,"!@#$%^&*()",q,q,q,q,10,q,q,q,q,q,q,q),A.a(q,"--(\\w+)",q,q,p,q,q,"\\s",q,q,q,q,!0,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,'"',q,q,o,q,q,'"',q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"'",q,q,o,q,q,"'",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"[\\w-?]+:\\w+",q,q,o,q,q,"\\W",q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q),A.a(q,"\\w+-?\\w+",q,q,o,q,q,"\\W",q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q),$.ch()],t._),q,q,q,q,q,q,q,q,"dsconfig",q,q,A.m(t.N,t.n),q,q,q,q,q,q,q,q)}) -s($,"bd2","aSl",()=>{var q,p,o,n,m,l,k,j,i,h,g,f="~contains~0~contains~8~variants~2",e=null,d="~contains~0~contains~8~variants~1",c="~contains~0~contains~8~variants~0",b="~contains~0~contains~8",a="~contains~0~contains~4~contains~0",a0="~contains~0~contains~4",a1="~contains~0~contains~0",a2="~contains~0~contains~3",a3="~contains~0~contains~2",a4="~contains~0~contains~1",a5="meta-string",a6=A.a(e,"'\\\\?.",e,e,e,e,e,"'",e,e,e,e,e,".",e,e,e,e,e,e,e,e,e,e,e,e),a7=$.aZ(),a8=t._,a9=t.N -a7=A.l([f,a6,d,A.a(e,'(u8?|U)?R"',e,e,e,A.b([a7],a8),e,'"',e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e),c,A.a(e,'((u8?|U)|L)?"',e,e,"string",A.b([a7],a8),e,'"',e,e,e,e,e,"\\n",e,e,e,e,e,e,e,e,e,e,e,e),b,A.a(e,e,e,e,"string",e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,A.b([A.a(e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,c,e,e,e,e,e,e,e,e,e),A.a(e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,d,e,e,e,e,e,e,e,e,e),A.a(e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,f,e,e,e,e,e,e,e,e,e)],a8)),a,A.a(e,e,e,e,"number",e,e,e,e,e,e,e,e,e,e,e,e,e,0,e,e,e,e,e,e,A.b([A.a(e,"\\b(\\d+(\\.\\d*)?|\\.\\d+)(u|U|l|L|ul|UL|f|F)",e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e),A.a(e,u.O,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e)],a8)),a0,A.a(e,"<",e,e,"params",A.b([A.a(e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,a,e,e,e,e,e,e,e,e,e),A.a(e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,a1,e,e,e,e,e,e,e,e,e)],a8),e,">",e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e),a2,A.a(e,"[a-zA-Z_][a-zA-Z\\d_@]*\\s{",e,e,"class",e,e,"[{;=]",e,e,e,e,!0,e,e,e,e,e,e,!0,e,e,e,e,e,e),a3,A.a(e,"^\\s*[a-zA-Z_][a-zA-Z\\d_]*:",e,e,"symbol",e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e),a4,A.a(e,"/[a-z][a-z\\d-]*/",e,e,"meta-keyword",e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e),a1,A.a(e,"\\&[a-z\\d_]*\\b",e,e,"variable",e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e)],a9,t.n) -a6=A.a(e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,a1,e,e,e,e,e,e,e,e,e) -q=A.a(e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,a4,e,e,e,e,e,e,e,e,e) -p=A.a(e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,a3,e,e,e,e,e,e,e,e,e) -o=A.a(e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,a2,e,e,e,e,e,e,e,e,e) -n=A.a(e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,a0,e,e,e,e,e,e,e,e,e) -m=$.ba() -l=$.b_() -n=A.a(e,"/\\s*{",e,e,"class",A.b([a6,q,p,o,n,m,l,A.a(e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,a,e,e,e,e,e,e,e,e,e),A.a(e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,b,e,e,e,e,e,e,e,e,e)],a8),e,"};",e,e,e,e,e,e,e,e,e,e,10,e,e,e,e,e,e,e) -o=A.a(e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,a1,e,e,e,e,e,e,e,e,e) -p=A.a(e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,a4,e,e,e,e,e,e,e,e,e) -q=A.a(e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,a3,e,e,e,e,e,e,e,e,e) -a6=A.a(e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,a2,e,e,e,e,e,e,e,e,e) -k=A.a(e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,a0,e,e,e,e,e,e,e,e,e) -j=A.a(e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,a,e,e,e,e,e,e,e,e,e) -i=A.a(e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,b,e,e,e,e,e,e,e,e,e) -h=A.l(["meta-keyword","if else elif endif define undef ifdef ifndef"],a9,a9) -g=A.a(e,"\\\\\\n",e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,0,e,e,e,e,e,e,e) -a9=A.l(["meta-keyword","include"],a9,a9) -return A.a(e,e,e,e,e,A.b([n,o,p,q,a6,k,m,l,j,i,A.a(e,"#",e,e,"meta",A.b([g,A.a(e,e,"include",e,e,A.b([A.a(e,e,e,e,a5,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,A.b([A.a(e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,c,e,e,e,e,e,e,e,e,e),A.a(e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,d,e,e,e,e,e,e,e,e,e),A.a(e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,f,e,e,e,e,e,e,e,e,e)],a8)),A.a(e,"<",e,e,a5,e,e,">",e,e,e,e,e,"\\n",e,e,e,e,e,e,e,e,e,e,e,e)],a8),e,"$",e,e,e,e,e,e,a9,e,e,e,e,e,e,e,e,e,e,e),A.a(e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,b,e,e,e,e,e,e,e,e,e),m,l],a8),e,"$",e,e,e,e,e,e,h,e,e,e,e,e,e,e,e,e,e,e),A.a(e,"[a-zA-Z]\\w*::",e,e,e,e,e,e,e,e,e,e,e,e,"",e,e,e,e,e,e,e,e,e,e,e)],a8),e,e,e,e,e,e,e,e,"",e,e,a7,e,e,e,e,e,e,e,e)}) -s($,"bd4","aSm",()=>{var q,p=null,o=t.s,n=A.b(["dst"],o) -o=A.b(["xml"],o) -q=t._ -return A.a(n,p,p,!0,p,A.b([A.a(p,"\\{[#\\/]",p,p,"template-tag",A.b([A.a(p,"[a-zA-Z\\.-]+",p,p,"name",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,A.a(p,p,p,p,p,A.b([$.aM()],q),p,p,p,p,!0,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p),p,p)],q),p,"\\}",p,p,p,p,p,";",p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"\\{",p,p,"template-variable",p,p,"\\}",p,p,p,p,p,";","if eq ne lt lte gt gte select default math sep",p,p,p,p,p,p,p,p,p,p,p)],q),p,p,p,p,p,p,p,p,p,p,p,A.m(t.N,t.n),p,p,p,p,p,p,o,p)}) -s($,"bd5","aSn",()=>{var q="~contains~0",p=null,o=t._,n=A.l(["~contains~0",A.a(p,"\\(\\*",p,p,"comment",A.b([$.aq(),A.a(p,"(?:TODO|FIXME|NOTE|BUG|XXX):",p,p,"doctag",p,p,p,p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p)],o),p,"\\*\\)",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p)],t.N,t.n) -return A.a(p,p,p,p,p,A.b([A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,q,p,p,p,p,p,p,p,p,p),A.a(p,"^[ ]*[a-zA-Z][a-zA-Z-_]*([\\s-_]+[a-zA-Z][a-zA-Z]*)*",p,p,"attribute",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"=",p,p,p,A.b([A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,q,p,p,p,p,p,p,p,p,p),A.a(p,"\\?.*\\?",p,p,"meta",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,"string",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,A.b([$.c0(),$.aM(),A.a(p,"`",p,p,p,p,p,"`",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p)],o))],o),p,"[.;]",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p)],o),p,p,p,p,p,p,p,"\\S",p,p,p,n,p,p,p,p,p,p,p,p)}) -s($,"bd6","aSo",()=>{var q="~contains~0~contains~1~contains~9",p=null,o="~contains~0~contains~1~contains~8",n="~contains~0~contains~1~contains~7",m="~contains~0",l="~contains~0~contains~1~contains~6",k="~contains~0~contains~1~contains~5",j="~contains~0~contains~1~contains~4~contains~0",i="[a-zA-Z_][a-zA-Z0-9_.]*(\\!|\\?)?",h="~contains~0~contains~1~contains~4",g="~contains~0~contains~1~contains~2",f="string",e="~contains~0~contains~1",d='"',c="'",b="\\/",a="\\|",a0="~contains~0~contains~1~contains~12",a1="~contains~0~contains~1~contains~11",a2="~contains~0~contains~1~contains~10",a3="~contains~0~contains~1~contains~1",a4="and false then defined module in return redo retry end for true self when next until do begin unless nil break not case cond alias while ensure or include use alias fn quote require import with|0",a5=A.a(p,"(\\b0o[0-7_]+)|(\\b0b[01_]+)|(\\b0x[0-9a-fA-F_]+)|(-?\\b[1-9][0-9_]*(.[0-9_]+([eE][-+]?[0-9]+)?)?)",p,p,"number",p,p,p,p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p),a6=A.a(p,"[a-zA-Z_][a-zA-Z0-9_.]*(\\!|\\?)?:(?!:)",p,p,"symbol",p,p,p,p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p),a7=t._,a8=A.a(p,":(?![\\s:])",p,p,"symbol",A.b([A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,m,p,p,p,p,p,p,p,p,p),A.a(p,u.Z,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p)],a7),p,p,p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p),a9=A.a(p,"::",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),b0=A.a(p,p,"def defp defmacro",p,"function",A.b([A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,j,p,p,p,p,p,p,p,p,p)],a7),p,"\\B\\b",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),b1=A.a(p,i,p,p,"title",p,p,p,p,!0,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p),b2=A.a(p,p,"defimpl defmodule defprotocol defrecord",p,"class",A.b([A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,j,p,p,p,p,p,p,p,p,p)],a7),p,"\\bdo\\b|$|;",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),b3=$.aZ(),b4=A.a(p,"\\x7e[a-z](?=[/|([{<\"'])",p,p,f,A.b([A.a(p,p,p,p,p,A.b([A.a(p,p,p,p,p,A.b([b3,A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,e,p,p,p,p,p,p,p,p,p)],a7),p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,A.b([A.a(p,d,p,p,p,p,p,d,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,c,p,p,p,p,p,c,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,b,p,p,p,p,p,b,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,a,p,p,p,p,p,a,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"\\(",p,p,p,p,p,"\\)",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"\\[",p,p,p,p,p,"\\]",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"\\{",p,p,p,p,p,"\\}",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"<",p,p,p,p,p,">",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p)],a7))],a7),p,p,p,!0,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p)],a7),p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),b5=$.ch() -b3=A.l([q,a5,o,a6,n,a8,l,a9,k,b0,j,b1,h,b2,g,b4,a0,A.a(p,"(!|!=|!==|%|%=|&|&&|&=|\\*|\\*=|\\+|\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\?|\\[|\\{|\\(|\\^|\\^=|\\||\\|=|\\|\\||\\x7e)\\s*",p,p,p,A.b([b5,A.a(p,p,p,p,"regexp",A.b([b3,A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,e,p,p,p,p,p,p,p,p,p)],a7),p,p,p,p,p,p,p,"\\n",p,p,p,p,p,p,p,p,p,p,p,A.b([A.a(p,"/",p,p,p,p,p,"/[a-z]*",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"%r\\[",p,p,p,p,p,"\\][a-z]*",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p)],a7))],a7),p,p,p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p),a1,A.a(p,"->",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),a2,A.a(p,"(\\$\\W)|((\\$|\\@\\@?)(\\w+))",p,p,"variable",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),a3,A.a(p,"\\x7e[A-Z](?=[/|([{<\"'])",p,p,f,A.b([A.a(p,d,p,p,p,p,p,d,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,c,p,p,p,p,p,c,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,b,p,p,p,p,p,b,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,a,p,p,p,p,p,a,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"\\(",p,p,p,p,p,"\\)",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"\\[",p,p,p,p,p,"\\]",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"\\{",p,p,p,p,p,"\\}",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"\\<",p,p,p,p,p,"\\>",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p)],a7),p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),e,A.a(p,"#\\{",p,p,"subst",A.b([A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,m,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,a3,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,g,p,p,p,p,p,p,p,p,p),b5,A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,h,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,k,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,l,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,n,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,o,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,q,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,a2,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,a1,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,a0,p,p,p,p,p,p,p,p,p)],a7),p,"}",p,p,p,p,p,p,a4,i,p,p,p,p,p,p,p,p,p,p),"~contains~0",A.a(p,p,p,p,f,A.b([b3,A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,e,p,p,p,p,p,p,p,p,p)],a7),p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,A.b([A.a(p,'"""',p,p,p,p,p,'"""',p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"'''",p,p,p,p,p,"'''",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,'\\x7eS"""',p,p,p,A.b([],a7),p,'"""',p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,'\\x7eS"',p,p,p,A.b([],a7),p,d,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"\\x7eS'''",p,p,p,A.b([],a7),p,"'''",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"\\x7eS'",p,p,p,A.b([],a7),p,c,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,c,p,p,p,p,p,c,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,d,p,p,p,p,p,d,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p)],a7))],t.N,t.n) -return A.a(p,p,p,p,p,A.b([A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,m,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,a3,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,g,p,p,p,p,p,p,p,p,p),b5,A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,h,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,k,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,l,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,n,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,o,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,q,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,a2,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,a1,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,a0,p,p,p,p,p,p,p,p,p)],a7),p,p,p,p,p,p,p,p,a4,i,p,b3,p,p,p,p,p,p,p,p)}) -s($,"bd7","aSp",()=>{var q,p,o,n="~contains~2~contains~0",m="type",l=null,k="~contains~0~contains~0~contains~1",j="(?:TODO|FIXME|NOTE|BUG|XXX):",i="~contains~0~contains~0~contains~0",h="~contains~0~contains~0",g=A.a(l,"\\b[A-Z][\\w']*",l,l,m,l,l,l,l,l,l,l,l,l,l,l,l,l,0,l,l,l,l,l,l,l),f=$.aq(),e=t._ -f=A.l([n,g,k,A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,A.b([A.a(l,"--",l,l,"comment",A.b([f,A.a(l,j,l,l,"doctag",l,l,l,l,l,l,l,l,l,l,l,l,l,0,l,l,l,l,l,l,l)],e),l,"$",l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l),A.a(l,"{-",l,l,"comment",A.b([A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,!0,l,l,l,l),f,A.a(l,j,l,l,"doctag",l,l,l,l,l,l,l,l,l,l,l,l,l,0,l,l,l,l,l,l,l)],e),l,"-}",l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l)],e)),i,A.a(l,"\\b[A-Z][\\w]*(\\((\\.\\.|,|\\w+)\\))?",l,l,m,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l),h,A.a(l,"\\(",l,l,l,A.b([A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,i,l,l,l,l,l,l,l,l,l),A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,k,l,l,l,l,l,l,l,l,l)],e),l,"\\)",l,l,l,l,l,'"',l,l,l,l,l,l,l,l,l,l,l,l)],t.N,t.n) -g=A.a(l,l,"port effect module",l,l,A.b([A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,h,l,l,l,l,l,l,l,l,l),A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,k,l,l,l,l,l,l,l,l,l)],e),l,"exposing",l,l,l,l,l,"\\W\\.|;","port effect module where command subscription exposing",l,l,l,l,l,l,l,l,l,l,l) -q=A.a(l,"import",l,l,l,A.b([A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,h,l,l,l,l,l,l,l,l,l),A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,k,l,l,l,l,l,l,l,l,l)],e),l,"$",l,l,l,l,l,"\\W\\.|;","import as exposing",l,l,l,l,l,l,l,l,l,l,l) -p=A.a(l,m,l,l,l,A.b([A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,n,l,l,l,l,l,l,l,l,l),A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,h,l,l,l,l,l,l,l,l,l),A.a(l,"{",l,l,l,A.b([A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,i,l,l,l,l,l,l,l,l,l),A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,k,l,l,l,l,l,l,l,l,l)],e),l,"}",l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l),A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,k,l,l,l,l,l,l,l,l,l)],e),l,"$",l,l,l,l,l,l,"type alias",l,l,l,l,l,l,l,l,l,l,l) -o=$.bw() -return A.a(l,l,l,l,l,A.b([g,q,p,A.a(l,l,"infix infixl infixr",l,l,A.b([o,A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,k,l,l,l,l,l,l,l,l,l)],e),l,"$",l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l),A.a(l,"port",l,l,l,A.b([A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,k,l,l,l,l,l,l,l,l,l)],e),l,"$",l,l,l,l,l,l,"port",l,l,l,l,l,l,l,l,l,l,l),A.a(l,"'\\\\?.",l,l,"string",l,l,"'",l,l,l,l,l,".",l,l,l,l,l,l,l,l,l,l,l,l),$.aM(),o,A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,n,l,l,l,l,l,l,l,l,l),A.a(l,"^[_a-z][\\w']*",l,l,"title",l,l,l,l,l,l,l,l,l,l,l,l,l,0,l,l,l,l,l,l,l),A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,k,l,l,l,l,l,l,l,l,l),A.a(l,"->|<-",l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l)],e),l,l,l,l,l,l,l,";","let in if then else case of where module import exposing type alias as infix infixl infixr port effect command subscription",l,l,f,l,l,l,l,l,l,l,l)}) -s($,"bd9","aSq",()=>{var q=null,p=t.s,o=A.b(["xml"],p),n=t._ -return A.a(q,q,q,q,q,A.b([A.a(q,"<%#",q,q,"comment",A.b([$.aq(),A.a(q,"(?:TODO|FIXME|NOTE|BUG|XXX):",q,q,"doctag",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q)],n),q,"%>",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"<%[%=-]?",q,q,q,q,q,"[%-]?%>",q,q,q,!0,!0,q,q,q,q,q,q,q,q,q,q,q,A.b(["ruby"],p),q)],n),q,q,q,q,q,q,q,q,q,q,q,A.m(t.N,t.n),q,q,q,q,q,q,o,q)}) -s($,"bdb","aSs",()=>{var q=null,p=t.N,o=A.l(["built_in","spawn spawn_link self","keyword","after and andalso|10 band begin bnot bor bsl bsr bxor case catch cond div end fun if let not of or orelse|10 query receive rem try when xor"],p,p),n=t._ -return A.a(q,q,q,q,q,A.b([A.a(q,"^[0-9]+> ",q,q,"meta",q,q,q,q,q,q,q,q,q,q,q,q,q,10,q,q,q,q,q,q,q),A.a(q,"%",q,q,"comment",A.b([$.aq(),A.a(q,"(?:TODO|FIXME|NOTE|BUG|XXX):",q,q,"doctag",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q)],n),q,"$",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,u._,q,q,"number",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q),$.c0(),$.aM(),A.a(q,"\\?(::)?([A-Z]\\w*(::)?)+",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"->",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"ok",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"!",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"(\\b[a-z'][a-zA-Z0-9_']*:[a-z'][a-zA-Z0-9_']*)|(\\b[a-z'][a-zA-Z0-9_']*)",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q),A.a(q,"[A-Z][a-zA-Z0-9_']*",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q)],n),q,q,q,q,q,q,q,q,o,q,q,A.m(p,t.n),q,q,q,q,q,q,q,q)}) -s($,"bda","aSr",()=>{var q,p,o,n="~contains~0~contains~0~contains~2~contains~4~contains~1~contains~6~contains~9",m="#[a-zA-Z_]\\w*",l=null,k="~contains~0~contains~0~contains~0",j="~contains~0~contains~0~contains~1",i="~contains~0~contains~0~contains~2",h="~contains~0~contains~0~contains~2~contains~4",g="~contains~0~contains~0~contains~2~contains~4~contains~1~contains~5",f="~contains~0~contains~0~contains~2~contains~4~contains~1~contains~6",e="~contains~0~contains~0~contains~2~contains~4~contains~1~contains~6~contains~7",d="~contains~0~contains~0~contains~2~contains~4~contains~1~contains~6~contains~8",c="after and andalso|10 band begin bnot bor bsl bzr bxor case catch cond div end fun if let not of orelse|10 query receive rem try when xor",b="~contains~0~contains~0",a=A.a(l,m,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,0,l,l,l,l,l,l,l),a0=A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,k,l,l,l,l,l,l,l,l,l),a1=A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,j,l,l,l,l,l,l,l,l,l),a2=A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,i,l,l,l,l,l,l,l,l,l),a3=A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,h,l,l,l,l,l,l,l,l,l),a4=$.aM(),a5=t._ -a3=A.a(l,m,l,l,l,A.b([a,A.a(l,"{",l,l,l,A.b([a0,a1,a2,a3,a4,A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,g,l,l,l,l,l,l,l,l,l),A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,f,l,l,l,l,l,l,l,l,l),A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,e,l,l,l,l,l,l,l,l,l),A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,d,l,l,l,l,l,l,l,l,l),A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,n,l,l,l,l,l,l,l,l,l)],a5),l,"}",l,l,l,l,l,l,l,l,l,l,0,l,l,l,l,l,l,l)],a5),l,l,l,l,l,l,l,l,l,l,l,l,0,!0,l,l,l,l,l,l) -a2=A.a(l,"[A-Z][a-zA-Z0-9_]*",l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,0,l,l,l,l,l,l,l) -a1=A.a(l,"\\b_([A-Z][A-Za-z0-9_]*)?",l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,0,l,l,l,l,l,l,l) -a0=A.a(l,"{",l,l,l,A.b([A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,k,l,l,l,l,l,l,l,l,l),A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,j,l,l,l,l,l,l,l,l,l),A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,i,l,l,l,l,l,l,l,l,l),A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,h,l,l,l,l,l,l,l,l,l),a4,A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,g,l,l,l,l,l,l,l,l,l),A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,f,l,l,l,l,l,l,l,l,l),A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,e,l,l,l,l,l,l,l,l,l),A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,d,l,l,l,l,l,l,l,l,l),A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,n,l,l,l,l,l,l,l,l,l)],a5),l,"}",l,l,l,l,l,l,l,l,l,l,0,l,l,l,l,l,l,l) -a=A.a(l,u._,l,l,"number",l,l,l,l,l,l,l,l,l,l,l,l,l,0,l,l,l,l,l,l,l) -q=A.a(l,"([a-z'][a-zA-Z0-9_']*:[a-z'][a-zA-Z0-9_']*|[a-z'][a-zA-Z0-9_']*)\\(",l,l,l,A.b([A.a(l,"([a-z'][a-zA-Z0-9_']*:[a-z'][a-zA-Z0-9_']*|[a-z'][a-zA-Z0-9_']*)",l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,0,l,l,l,l,l,l,l),A.a(l,"\\(",l,l,l,A.b([A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,k,l,l,l,l,l,l,l,l,l),A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,j,l,l,l,l,l,l,l,l,l),A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,i,l,l,l,l,l,l,l,l,l),A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,h,l,l,l,l,l,l,l,l,l),a4,A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,g,l,l,l,l,l,l,l,l,l),A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,f,l,l,l,l,l,l,l,l,l),A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,e,l,l,l,l,l,l,l,l,l),A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,d,l,l,l,l,l,l,l,l,l),A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,n,l,l,l,l,l,l,l,l,l)],a5),l,"\\)",l,l,!0,l,l,l,l,l,l,l,0,l,!0,l,l,l,l,l)],a5),l,"\\)",l,l,l,l,l,l,l,l,l,l,0,!0,l,l,l,l,l,l) -p=t.N -o=A.l(["keyword",c,"literal","false true"],p,p) -o=A.l([n,a3,d,a2,e,a1,f,a0,g,a,h,q,i,A.a(l,l,"fun receive if try case",l,l,A.b([A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,k,l,l,l,l,l,l,l,l,l),A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,j,l,l,l,l,l,l,l,l,l),A.a(l,"'",l,l,"",A.b([$.aZ()],a5),l,"'",l,l,l,l,l,"\\n",l,l,l,l,l,l,l,l,l,l,l,l),A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,i,l,l,l,l,l,l,l,l,l),A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,h,l,l,l,l,l,l,l,l,l),a4,A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,g,l,l,l,l,l,l,l,l,l),A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,f,l,l,l,l,l,l,l,l,l),A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,e,l,l,l,l,l,l,l,l,l),A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,d,l,l,l,l,l,l,l,l,l),A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,n,l,l,l,l,l,l,l,l,l)],a5),l,"end",l,l,l,l,l,l,o,l,l,l,l,l,l,l,l,l,l,l),j,A.a(l,"fun\\s+[a-z'][a-zA-Z0-9_']*/\\d+",l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l),k,A.a(l,"%",l,l,"comment",A.b([$.aq(),A.a(l,"(?:TODO|FIXME|NOTE|BUG|XXX):",l,l,"doctag",l,l,l,l,l,l,l,l,l,l,l,l,l,0,l,l,l,l,l,l,l)],a5),l,"$",l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l),b,A.a(l,"\\(",l,l,"params",A.b([A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,k,l,l,l,l,l,l,l,l,l),A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,j,l,l,l,l,l,l,l,l,l),A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,i,l,l,l,l,l,l,l,l,l),A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,h,l,l,l,l,l,l,l,l,l),a4,A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,g,l,l,l,l,l,l,l,l,l),A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,f,l,l,l,l,l,l,l,l,l),A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,e,l,l,l,l,l,l,l,l,l),A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,d,l,l,l,l,l,l,l,l,l),A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,n,l,l,l,l,l,l,l,l,l)],a5),l,"\\)",l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l)],p,t.n) -q=A.b(["erl"],t.s) -a=A.l(["keyword",c,"literal","false true"],p,p) -a0=A.b([A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,b,l,l,l,l,l,l,l,l,l),A.a(l,"[a-z'][a-zA-Z0-9_']*",l,l,"title",l,l,l,l,l,l,l,l,l,l,l,l,l,0,l,l,l,l,l,l,l)],a5) -p=A.l(["keyword",c,"literal","false true"],p,p) -return A.a(q,l,l,l,l,A.b([A.a(l,"^[a-z'][a-zA-Z0-9_']*\\s*\\(",l,l,"function",a0,l,"->",l,l,l,l,l,"\\(|#|//|/\\*|\\\\|:|;",l,l,l,l,l,!0,l,l,l,A.a(l,l,l,l,l,A.b([A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,k,l,l,l,l,l,l,l,l,l),A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,j,l,l,l,l,l,l,l,l,l),A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,i,l,l,l,l,l,l,l,l,l),A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,h,l,l,l,l,l,l,l,l,l),a4,A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,g,l,l,l,l,l,l,l,l,l),A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,f,l,l,l,l,l,l,l,l,l),A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,e,l,l,l,l,l,l,l,l,l),A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,d,l,l,l,l,l,l,l,l,l),A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,n,l,l,l,l,l,l,l,l,l)],a5),l,";|\\.",l,l,l,l,l,l,p,l,l,l,l,l,l,l,l,l,l,l),l,l),A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,k,l,l,l,l,l,l,l,l,l),A.a(l,"^-",l,l,l,A.b([A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,b,l,l,l,l,l,l,l,l,l)],a5),l,"\\.",l,l,l,l,!0,l,"-module -record -undef -export -ifdef -ifndef -author -copyright -doc -vsn -import -include -include_lib -compile -define -else -endif -file -behaviour -behavior -spec","-[a-zA-Z]\\w*",l,l,0,!0,l,l,l,l,l,l),A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,g,l,l,l,l,l,l,l,l,l),a4,A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,n,l,l,l,l,l,l,l,l,l),A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,e,l,l,l,l,l,l,l,l,l),A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,d,l,l,l,l,l,l,l,l,l),A.a(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,f,l,l,l,l,l,l,l,l,l),A.a(l,"\\.$",l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l)],a5),l,l,l,l,l,l,l,"({var q=null,p=t.N,o=A.b(["xlsx","xls"],t.s),n=A.l(["built_in","ABS ACCRINT ACCRINTM ACOS ACOSH ACOT ACOTH AGGREGATE ADDRESS AMORDEGRC AMORLINC AND ARABIC AREAS ASC ASIN ASINH ATAN ATAN2 ATANH AVEDEV AVERAGE AVERAGEA AVERAGEIF AVERAGEIFS BAHTTEXT BASE BESSELI BESSELJ BESSELK BESSELY BETADIST BETA.DIST BETAINV BETA.INV BIN2DEC BIN2HEX BIN2OCT BINOMDIST BINOM.DIST BINOM.DIST.RANGE BINOM.INV BITAND BITLSHIFT BITOR BITRSHIFT BITXOR CALL CEILING CEILING.MATH CEILING.PRECISE CELL CHAR CHIDIST CHIINV CHITEST CHISQ.DIST CHISQ.DIST.RT CHISQ.INV CHISQ.INV.RT CHISQ.TEST CHOOSE CLEAN CODE COLUMN COLUMNS COMBIN COMBINA COMPLEX CONCAT CONCATENATE CONFIDENCE CONFIDENCE.NORM CONFIDENCE.T CONVERT CORREL COS COSH COT COTH COUNT COUNTA COUNTBLANK COUNTIF COUNTIFS COUPDAYBS COUPDAYS COUPDAYSNC COUPNCD COUPNUM COUPPCD COVAR COVARIANCE.P COVARIANCE.S CRITBINOM CSC CSCH CUBEKPIMEMBER CUBEMEMBER CUBEMEMBERPROPERTY CUBERANKEDMEMBER CUBESET CUBESETCOUNT CUBEVALUE CUMIPMT CUMPRINC DATE DATEDIF DATEVALUE DAVERAGE DAY DAYS DAYS360 DB DBCS DCOUNT DCOUNTA DDB DEC2BIN DEC2HEX DEC2OCT DECIMAL DEGREES DELTA DEVSQ DGET DISC DMAX DMIN DOLLAR DOLLARDE DOLLARFR DPRODUCT DSTDEV DSTDEVP DSUM DURATION DVAR DVARP EDATE EFFECT ENCODEURL EOMONTH ERF ERF.PRECISE ERFC ERFC.PRECISE ERROR.TYPE EUROCONVERT EVEN EXACT EXP EXPON.DIST EXPONDIST FACT FACTDOUBLE FALSE|0 F.DIST FDIST F.DIST.RT FILTERXML FIND FINDB F.INV F.INV.RT FINV FISHER FISHERINV FIXED FLOOR FLOOR.MATH FLOOR.PRECISE FORECAST FORECAST.ETS FORECAST.ETS.CONFINT FORECAST.ETS.SEASONALITY FORECAST.ETS.STAT FORECAST.LINEAR FORMULATEXT FREQUENCY F.TEST FTEST FV FVSCHEDULE GAMMA GAMMA.DIST GAMMADIST GAMMA.INV GAMMAINV GAMMALN GAMMALN.PRECISE GAUSS GCD GEOMEAN GESTEP GETPIVOTDATA GROWTH HARMEAN HEX2BIN HEX2DEC HEX2OCT HLOOKUP HOUR HYPERLINK HYPGEOM.DIST HYPGEOMDIST IF IFERROR IFNA IFS IMABS IMAGINARY IMARGUMENT IMCONJUGATE IMCOS IMCOSH IMCOT IMCSC IMCSCH IMDIV IMEXP IMLN IMLOG10 IMLOG2 IMPOWER IMPRODUCT IMREAL IMSEC IMSECH IMSIN IMSINH IMSQRT IMSUB IMSUM IMTAN INDEX INDIRECT INFO INT INTERCEPT INTRATE IPMT IRR ISBLANK ISERR ISERROR ISEVEN ISFORMULA ISLOGICAL ISNA ISNONTEXT ISNUMBER ISODD ISREF ISTEXT ISO.CEILING ISOWEEKNUM ISPMT JIS KURT LARGE LCM LEFT LEFTB LEN LENB LINEST LN LOG LOG10 LOGEST LOGINV LOGNORM.DIST LOGNORMDIST LOGNORM.INV LOOKUP LOWER MATCH MAX MAXA MAXIFS MDETERM MDURATION MEDIAN MID MIDBs MIN MINIFS MINA MINUTE MINVERSE MIRR MMULT MOD MODE MODE.MULT MODE.SNGL MONTH MROUND MULTINOMIAL MUNIT N NA NEGBINOM.DIST NEGBINOMDIST NETWORKDAYS NETWORKDAYS.INTL NOMINAL NORM.DIST NORMDIST NORMINV NORM.INV NORM.S.DIST NORMSDIST NORM.S.INV NORMSINV NOT NOW NPER NPV NUMBERVALUE OCT2BIN OCT2DEC OCT2HEX ODD ODDFPRICE ODDFYIELD ODDLPRICE ODDLYIELD OFFSET OR PDURATION PEARSON PERCENTILE.EXC PERCENTILE.INC PERCENTILE PERCENTRANK.EXC PERCENTRANK.INC PERCENTRANK PERMUT PERMUTATIONA PHI PHONETIC PI PMT POISSON.DIST POISSON POWER PPMT PRICE PRICEDISC PRICEMAT PROB PRODUCT PROPER PV QUARTILE QUARTILE.EXC QUARTILE.INC QUOTIENT RADIANS RAND RANDBETWEEN RANK.AVG RANK.EQ RANK RATE RECEIVED REGISTER.ID REPLACE REPLACEB REPT RIGHT RIGHTB ROMAN ROUND ROUNDDOWN ROUNDUP ROW ROWS RRI RSQ RTD SEARCH SEARCHB SEC SECH SECOND SERIESSUM SHEET SHEETS SIGN SIN SINH SKEW SKEW.P SLN SLOPE SMALL SQL.REQUEST SQRT SQRTPI STANDARDIZE STDEV STDEV.P STDEV.S STDEVA STDEVP STDEVPA STEYX SUBSTITUTE SUBTOTAL SUM SUMIF SUMIFS SUMPRODUCT SUMSQ SUMX2MY2 SUMX2PY2 SUMXMY2 SWITCH SYD T TAN TANH TBILLEQ TBILLPRICE TBILLYIELD T.DIST T.DIST.2T T.DIST.RT TDIST TEXT TEXTJOIN TIME TIMEVALUE T.INV T.INV.2T TINV TODAY TRANSPOSE TREND TRIM TRIMMEAN TRUE|0 TRUNC T.TEST TTEST TYPE UNICHAR UNICODE UPPER VALUE VAR VAR.P VAR.S VARA VARP VARPA VDB VLOOKUP WEBSERVICE WEEKDAY WEEKNUM WEIBULL WEIBULL.DIST WORKDAY WORKDAY.INTL XIRR XNPV XOR YEAR YEARFRAC YIELD YIELDDISC YIELDMAT Z.TEST ZTEST"],p,p),m=t._ -return A.a(o,q,q,!0,q,A.b([A.a(q,"^=",q,q,q,q,q,"[^=]",q,q,q,q,q,"=",q,q,q,q,10,q,!0,q,q,q,q,q),A.a(q,"\\b[A-Z]{1,2}\\d+\\b",q,q,"symbol",q,q,"[^\\d]",q,q,q,q,!0,q,q,q,q,q,0,q,q,q,q,q,q,q),A.a(q,"[A-Z]{0,2}\\d*:[A-Z]{0,2}\\d*",q,q,"symbol",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q),$.aZ(),$.aM(),A.a(q,"\\b\\d+(\\.\\d+)?(%)?",q,q,"number",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q),A.a(q,"\\bN\\(",q,q,"comment",A.b([$.aq(),A.a(q,"(?:TODO|FIXME|NOTE|BUG|XXX):",q,q,"doctag",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q)],m),q,"\\)",q,q,q,!0,!0,"\\n",q,q,q,q,q,q,q,q,q,q,q,q)],m),q,q,q,q,q,q,q,q,n,"[a-zA-Z][\\w\\.]*",q,A.m(p,t.n),q,q,q,q,q,q,q,q)}) -s($,"bdd","aSu",()=>{var q=null,p=t._ -return A.a(q,q,q,!0,q,A.b([A.a(q,"[^\\u2401\\u0001]+",q,q,q,A.b([A.a(q,"([^\\u2401\\u0001=]+)",q,q,"attr",q,q,"=([^\\u2401\\u0001=]+)",q,q,q,q,q,q,q,q,q,q,q,!1,!0,q,q,q,q,q),A.a(q,"=",q,q,"string",q,q,"([\\u2401\\u0001])",q,q,q,!0,!0,q,q,q,q,q,q,q,q,q,q,q,q,q)],p),q,"[\\u2401\\u0001]",q,q,q,q,!0,q,q,q,q,q,q,!0,!1,q,q,q,q,q)],p),q,q,q,q,q,q,q,q,q,q,q,A.m(t.N,t.n),q,q,q,q,q,q,q,q)}) -s($,"bde","aSv",()=>{var q=null,p=t.N,o=A.l(["literal","true false","keyword","case class def else enum if impl import in lat rel index let match namespace switch type yield with"],p,p),n=t._ -return A.a(q,q,q,q,q,A.b([$.ba(),$.b_(),A.a(q,"'(.|\\\\[xXuU][a-zA-Z0-9]+)'",q,q,"string",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,q,q,q,"string",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,A.b([A.a(q,'"',q,q,q,q,q,'"',q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],n)),A.a(q,q,"def",q,"function",A.b([A.a(q,u.J,q,q,"title",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],n),q,"[:={\\[(\\n;]",q,q,q,q,!0,q,q,q,q,q,q,q,q,q,q,q,q,q),$.bw()],n),q,q,q,q,q,q,q,q,o,q,q,A.m(p,t.n),q,q,q,q,q,q,q,q)}) -s($,"bdh","aSw",()=>{var q=null,p=t.N,o=A.b(["f90","f95"],t.s),n=A.l(["literal",".False. .True.","keyword","kind do while private call intrinsic where elsewhere type endtype endmodule endselect endinterface end enddo endif if forall endforall only contains default return stop then block endblock public subroutine|10 function program .and. .or. .not. .le. .eq. .ge. .gt. .lt. goto save else use module select case access blank direct exist file fmt form formatted iostat name named nextrec number opened rec recl sequential status unformatted unit continue format pause cycle exit c_null_char c_alert c_backspace c_form_feed flush wait decimal round iomsg synchronous nopass non_overridable pass protected volatile abstract extends import non_intrinsic value deferred generic final enumerator class associate bind enum c_int c_short c_long c_long_long c_signed_char c_size_t c_int8_t c_int16_t c_int32_t c_int64_t c_int_least8_t c_int_least16_t c_int_least32_t c_int_least64_t c_int_fast8_t c_int_fast16_t c_int_fast32_t c_int_fast64_t c_intmax_t C_intptr_t c_float c_double c_long_double c_float_complex c_double_complex c_long_double_complex c_bool c_char c_null_ptr c_null_funptr c_new_line c_carriage_return c_horizontal_tab c_vertical_tab iso_c_binding c_loc c_funloc c_associated c_f_pointer c_ptr c_funptr iso_fortran_env character_storage_size error_unit file_storage_size input_unit iostat_end iostat_eor numeric_storage_size output_unit c_f_procpointer ieee_arithmetic ieee_support_underflow_control ieee_get_underflow_mode ieee_set_underflow_mode newunit contiguous recursive pad position action delim readwrite eor advance nml interface procedure namelist include sequence elemental pure integer real character complex logical dimension allocatable|10 parameter external implicit|10 none double precision assign intent optional pointer target in out common equivalence data","built_in","alog alog10 amax0 amax1 amin0 amin1 amod cabs ccos cexp clog csin csqrt dabs dacos dasin datan datan2 dcos dcosh ddim dexp dint dlog dlog10 dmax1 dmin1 dmod dnint dsign dsin dsinh dsqrt dtan dtanh float iabs idim idint idnint ifix isign max0 max1 min0 min1 sngl algama cdabs cdcos cdexp cdlog cdsin cdsqrt cqabs cqcos cqexp cqlog cqsin cqsqrt dcmplx dconjg derf derfc dfloat dgamma dimag dlgama iqint qabs qacos qasin qatan qatan2 qcmplx qconjg qcos qcosh qdim qerf qerfc qexp qgamma qimag qlgama qlog qlog10 qmax1 qmin1 qmod qnint qsign qsin qsinh qsqrt qtan qtanh abs acos aimag aint anint asin atan atan2 char cmplx conjg cos cosh exp ichar index int log log10 max min nint sign sin sinh sqrt tan tanh print write dim lge lgt lle llt mod nullify allocate deallocate adjustl adjustr all allocated any associated bit_size btest ceiling count cshift date_and_time digits dot_product eoshift epsilon exponent floor fraction huge iand ibclr ibits ibset ieor ior ishft ishftc lbound len_trim matmul maxexponent maxloc maxval merge minexponent minloc minval modulo mvbits nearest pack present product radix random_number random_seed range repeat reshape rrspacing scale scan selected_int_kind selected_real_kind set_exponent shape size spacing spread sum system_clock tiny transpose trim ubound unpack verify achar iachar transfer dble entry dprod cpu_time command_argument_count get_command get_command_argument get_environment_variable is_iostat_end ieee_arithmetic ieee_support_underflow_control ieee_get_underflow_mode ieee_set_underflow_mode is_iostat_eor move_alloc new_line selected_char_kind same_type_as extends_type_ofacosh asinh atanh bessel_j0 bessel_j1 bessel_jn bessel_y0 bessel_y1 bessel_yn erf erfc erfc_scaled gamma log_gamma hypot norm2 atomic_define atomic_ref execute_command_line leadz trailz storage_size merge_bits bge bgt ble blt dshiftl dshiftr findloc iall iany iparity image_index lcobound ucobound maskl maskr num_images parity popcnt poppar shifta shiftl shiftr this_image"],p,p),m=$.aZ(),l=t._ -return A.a(o,q,q,!0,q,A.b([A.a(q,"'",q,q,"string",A.b([m],l),q,"'",q,q,q,q,q,"\\n",q,q,q,q,0,q,q,q,q,q,q,q),A.a(q,'"',q,q,"string",A.b([m],l),q,'"',q,q,q,q,q,"\\n",q,q,q,q,0,q,q,q,q,q,q,q),A.a(q,q,"subroutine function program",q,"function",A.b([$.dU(),A.a(q,"\\(",q,q,"params",q,q,"\\)",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],l),q,q,q,q,q,q,q,"[${=\\n]",q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"!",q,q,"comment",A.b([$.aq(),A.a(q,"(?:TODO|FIXME|NOTE|BUG|XXX):",q,q,"doctag",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q)],l),q,"$",q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q),A.a(q,u.u,q,q,"number",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q)],l),q,q,q,q,q,q,q,"\\/\\*",n,q,q,A.m(p,t.n),q,q,q,q,q,q,q,q)}) -s($,"bdi","aSx",()=>{var q=null,p="string",o=A.b(["fs"],t.s),n=A.a(q,"\\b(yield|return|let|do)!",q,q,"keyword",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),m=t._,l=A.a(q,'@"',q,q,p,A.b([A.a(q,'""',q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],m),q,'"',q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),k=A.a(q,'"""',q,q,p,q,q,'"""',q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),j=A.a(q,"\\(\\*",q,q,"comment",A.b([$.aq(),A.a(q,"(?:TODO|FIXME|NOTE|BUG|XXX):",q,q,"doctag",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q)],m),q,"\\*\\)",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),i=A.a(q,q,"type",q,"class",A.b([$.dU(),A.a(q,"<",q,q,q,A.b([A.a(q,"'[a-zA-Z0-9_]+",q,q,"title",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q)],m),q,">",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],m),q,"\\(|=|$",q,q,q,q,!0,q,q,q,q,q,q,q,q,q,q,q,q,q),h=A.a(q,"\\[<",q,q,"meta",q,q,">\\]",q,q,q,q,q,q,q,q,q,q,10,q,q,q,q,q,q,q),g=$.aZ() -return A.a(o,q,q,q,q,A.b([n,l,k,j,i,h,A.a(q,"\\B('[A-Za-z])\\b",q,q,"symbol",A.b([g],m),q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),$.ba(),A.a(q,'"',q,q,p,A.b([g],m),q,'"',q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),$.bw()],m),q,q,q,q,q,q,q,"\\/\\*","abstract and as assert base begin class default delegate do done downcast downto elif else end exception extern false finally for fun function global if in inherit inline interface internal lazy let match member module mutable namespace new null of open or override private public rec return sig static struct then to true try type upcast use val void when while with yield",q,q,A.m(t.N,t.n),q,q,q,q,q,q,q,q)}) -s($,"bdj","aSy",()=>{var q,p,o,n,m,l,k,j,i="~contains~9~contains~2",h=null,g="~contains~7~contains~6",f="$",e="~contains~7~contains~5~contains~0",d="~contains~7~contains~5",c="comment",b="abort acronym acronyms alias all and assign binary card diag display else eq file files for free ge gt if integer le loop lt maximizing minimizing model models ne negative no not option options or ord positive prod put putpage puttl repeat sameas semicont semiint smax smin solve sos1 sos2 sum system table then until using while xor yes",a="abs arccos arcsin arctan arctan2 Beta betaReg binomial ceil centropy cos cosh cvPower div div0 eDist entropy errorf execSeed exp fact floor frac gamma gammaReg log logBeta logGamma log10 log2 mapVal max min mod ncpCM ncpF ncpVUpow ncpVUsin normal pi poly power randBinomial randLinear randTriangle round rPower sigmoid sign signPower sin sinh slexp sllog10 slrec sqexp sqlog10 sqr sqrec sqrt tan tanh trunc uniform uniformInt vcPower bool_and bool_eqv bool_imp bool_not bool_or bool_xor ifThen rel_eq rel_ge rel_gt rel_le rel_lt rel_ne gday gdow ghour gleap gmillisec gminute gmonth gsecond gyear jdate jnow jstart jtime errorLevel execError gamsRelease gamsVersion handleCollect handleDelete handleStatus handleSubmit heapFree heapLimit heapSize jobHandle jobKill jobStatus jobTerminate licenseLevel licenseStatus maxExecError sleep timeClose timeComp timeElapsed timeExec timeStart",a0="doctag",a1="(?:TODO|FIXME|NOTE|BUG|XXX):",a2="^\\$[a-z0-9]+",a3=t._,a4=A.a(h,h,h,h,"symbol",h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,A.b([A.a(h,"\\=[lgenxc]=",h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h),A.a(h,"\\$",h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h)],a3)),a5=A.a(h,"[a-z][a-z0-9_]*(\\([a-z0-9_, ]*\\))?[ \\t]+",h,h,h,A.b([A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,e,h,h,h,h,h,h,h,h,h),A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,d,h,h,h,h,h,h,h,h,h),A.a(h,"([ ]*[a-z0-9&#*=?@>\\\\<:\\-,()$\\[\\]_.{}!+%^]+)+",h,h,c,h,h,h,h,h,h,h,h,h,h,h,h,h,0,h,h,h,h,h,h,h)],a3),h,f,h,h,!0,!0,h,h,h,h,h,h,h,h,h,h,h,h,h,h),a6=A.b([A.a(h,"'",h,h,h,h,h,"'",h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h),A.a(h,'"',h,h,h,h,h,'"',h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h)],a3) -a6=A.a(h,h,h,h,c,A.b([$.aZ()],a3),h,h,h,h,h,h,h,"\\n",h,h,h,h,h,h,h,h,h,h,h,a6) -q=t.N -p=A.l(["keyword",b,"literal","eps inf na","built-in",a],q,q) -o=A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,e,h,h,h,h,h,h,h,h,h) -n=$.ba() -m=$.b_() -l=$.aM() -k=$.c0() -j=$.bw() -p=A.l([i,a4,g,a5,e,a6,d,A.a(h,"/",h,h,h,A.b([o,n,m,l,k,j],a3),h,"/",h,h,h,h,h,h,p,h,h,h,h,h,h,h,h,h,h,h)],q,t.n) -o=A.b(["gms"],t.s) -q=A.l(["keyword",b,"literal","eps inf na","built-in",a],q,q) -a6=$.aq() -return A.a(o,h,h,!0,h,A.b([A.a(h,"^\\$ontext",h,h,c,A.b([a6,A.a(h,a1,h,h,a0,h,h,h,h,h,h,h,h,h,h,h,h,h,0,h,h,h,h,h,h,h)],a3),h,"^\\$offtext",h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h),A.a(h,a2,h,h,"meta",A.b([A.a(h,a2,h,h,"meta-keyword",h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h)],a3),h,f,h,h,h,h,h,h,h,h,h,h,h,!0,h,h,h,h,h,h),A.a(h,"^\\*",h,h,c,A.b([a6,A.a(h,a1,h,h,a0,h,h,h,h,h,h,h,h,h,h,h,h,h,0,h,h,h,h,h,h,h)],a3),h,f,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h),n,m,l,k,A.a(h,h,"set sets parameter parameters variable variables scalar scalars equation equations",h,h,A.b([A.a(h,"^\\*",h,h,c,A.b([a6,A.a(h,a1,h,h,a0,h,h,h,h,h,h,h,h,h,h,h,h,h,0,h,h,h,h,h,h,h)],a3),h,f,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h),n,m,l,k,A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,d,h,h,h,h,h,h,h,h,h),A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,g,h,h,h,h,h,h,h,h,h)],a3),h,";",h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h),A.a(h,h,"table",h,h,A.b([A.a(h,h,"table",h,h,A.b([A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,g,h,h,h,h,h,h,h,h,h)],a3),h,f,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h),A.a(h,"^\\*",h,h,c,A.b([a6,A.a(h,a1,h,h,a0,h,h,h,h,h,h,h,h,h,h,h,h,h,0,h,h,h,h,h,h,h)],a3),h,f,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h),n,m,l,k,j],a3),h,";",h,h,h,h,h,h,h,h,h,h,h,!0,h,h,h,h,h,h),A.a(h,"^[a-z][a-z0-9_,\\-+' ()$]+\\.{2}",h,h,"function",A.b([A.a(h,"^[a-z0-9_]+",h,h,"title",h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h),A.a(h,"\\(",h,h,"params",h,h,"\\)",h,h,h,!0,!0,h,h,h,h,h,h,h,h,h,h,h,h,h),A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,i,h,h,h,h,h,h,h,h,h)],a3),h,h,h,h,h,h,h,h,h,h,h,h,h,!0,h,h,h,h,h,h),j,A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,i,h,h,h,h,h,h,h,h,h)],a3),h,h,h,h,h,h,h,h,q,h,h,p,h,h,h,h,h,h,h,h)}) -s($,"bdk","aSz",()=>{var q,p,o,n,m,l,k,j,i,h="~contains~9~contains~2~contains~4",g="bool break call callexe checkinterrupt clear clearg closeall cls comlog compile continue create debug declare delete disable dlibrary dllcall do dos ed edit else elseif enable end endfor endif endp endo errorlog errorlogat expr external fn for format goto gosub graph if keyword let lib library line load loadarray loadexe loadf loadk loadm loadp loads loadx local locate loopnextindex lprint lpwidth lshow matrix msym ndpclex new open output outwidth plot plotsym pop prcsn print printdos proc push retp return rndcon rndmod rndmult rndseed run save saveall screen scroll setarray show sparse stop string struct system trace trap threadfor threadendfor threadbegin threadjoin threadstat threadend until use while winprint ne ge le gt lt and xor or not eq eqv",f="built_in",e="abs acf aconcat aeye amax amean AmericanBinomCall AmericanBinomCall_Greeks AmericanBinomCall_ImpVol AmericanBinomPut AmericanBinomPut_Greeks AmericanBinomPut_ImpVol AmericanBSCall AmericanBSCall_Greeks AmericanBSCall_ImpVol AmericanBSPut AmericanBSPut_Greeks AmericanBSPut_ImpVol amin amult annotationGetDefaults annotationSetBkd annotationSetFont annotationSetLineColor annotationSetLineStyle annotationSetLineThickness annualTradingDays arccos arcsin areshape arrayalloc arrayindex arrayinit arraytomat asciiload asclabel astd astds asum atan atan2 atranspose axmargin balance band bandchol bandcholsol bandltsol bandrv bandsolpd bar base10 begwind besselj bessely beta box boxcox cdfBeta cdfBetaInv cdfBinomial cdfBinomialInv cdfBvn cdfBvn2 cdfBvn2e cdfCauchy cdfCauchyInv cdfChic cdfChii cdfChinc cdfChincInv cdfExp cdfExpInv cdfFc cdfFnc cdfFncInv cdfGam cdfGenPareto cdfHyperGeo cdfLaplace cdfLaplaceInv cdfLogistic cdfLogisticInv cdfmControlCreate cdfMvn cdfMvn2e cdfMvnce cdfMvne cdfMvt2e cdfMvtce cdfMvte cdfN cdfN2 cdfNc cdfNegBinomial cdfNegBinomialInv cdfNi cdfPoisson cdfPoissonInv cdfRayleigh cdfRayleighInv cdfTc cdfTci cdfTnc cdfTvn cdfWeibull cdfWeibullInv cdir ceil ChangeDir chdir chiBarSquare chol choldn cholsol cholup chrs close code cols colsf combinate combinated complex con cond conj cons ConScore contour conv convertsatostr convertstrtosa corrm corrms corrvc corrx corrxs cos cosh counts countwts crossprd crout croutp csrcol csrlin csvReadM csvReadSA cumprodc cumsumc curve cvtos datacreate datacreatecomplex datalist dataload dataloop dataopen datasave date datestr datestring datestrymd dayinyr dayofweek dbAddDatabase dbClose dbCommit dbCreateQuery dbExecQuery dbGetConnectOptions dbGetDatabaseName dbGetDriverName dbGetDrivers dbGetHostName dbGetLastErrorNum dbGetLastErrorText dbGetNumericalPrecPolicy dbGetPassword dbGetPort dbGetTableHeaders dbGetTables dbGetUserName dbHasFeature dbIsDriverAvailable dbIsOpen dbIsOpenError dbOpen dbQueryBindValue dbQueryClear dbQueryCols dbQueryExecPrepared dbQueryFetchAllM dbQueryFetchAllSA dbQueryFetchOneM dbQueryFetchOneSA dbQueryFinish dbQueryGetBoundValue dbQueryGetBoundValues dbQueryGetField dbQueryGetLastErrorNum dbQueryGetLastErrorText dbQueryGetLastInsertID dbQueryGetLastQuery dbQueryGetPosition dbQueryIsActive dbQueryIsForwardOnly dbQueryIsNull dbQueryIsSelect dbQueryIsValid dbQueryPrepare dbQueryRows dbQuerySeek dbQuerySeekFirst dbQuerySeekLast dbQuerySeekNext dbQuerySeekPrevious dbQuerySetForwardOnly dbRemoveDatabase dbRollback dbSetConnectOptions dbSetDatabaseName dbSetHostName dbSetNumericalPrecPolicy dbSetPort dbSetUserName dbTransaction DeleteFile delif delrows denseToSp denseToSpRE denToZero design det detl dfft dffti diag diagrv digamma doswin DOSWinCloseall DOSWinOpen dotfeq dotfeqmt dotfge dotfgemt dotfgt dotfgtmt dotfle dotflemt dotflt dotfltmt dotfne dotfnemt draw drop dsCreate dstat dstatmt dstatmtControlCreate dtdate dtday dttime dttodtv dttostr dttoutc dtvnormal dtvtodt dtvtoutc dummy dummybr dummydn eig eigh eighv eigv elapsedTradingDays endwind envget eof eqSolve eqSolvemt eqSolvemtControlCreate eqSolvemtOutCreate eqSolveset erf erfc erfccplx erfcplx error etdays ethsec etstr EuropeanBinomCall EuropeanBinomCall_Greeks EuropeanBinomCall_ImpVol EuropeanBinomPut EuropeanBinomPut_Greeks EuropeanBinomPut_ImpVol EuropeanBSCall EuropeanBSCall_Greeks EuropeanBSCall_ImpVol EuropeanBSPut EuropeanBSPut_Greeks EuropeanBSPut_ImpVol exctsmpl exec execbg exp extern eye fcheckerr fclearerr feq feqmt fflush fft ffti fftm fftmi fftn fge fgemt fgets fgetsa fgetsat fgetst fgt fgtmt fileinfo filesa fle flemt floor flt fltmt fmod fne fnemt fonts fopen formatcv formatnv fputs fputst fseek fstrerror ftell ftocv ftos ftostrC gamma gammacplx gammaii gausset gdaAppend gdaCreate gdaDStat gdaDStatMat gdaGetIndex gdaGetName gdaGetNames gdaGetOrders gdaGetType gdaGetTypes gdaGetVarInfo gdaIsCplx gdaLoad gdaPack gdaRead gdaReadByIndex gdaReadSome gdaReadSparse gdaReadStruct gdaReportVarInfo gdaSave gdaUpdate gdaUpdateAndPack gdaVars gdaWrite gdaWrite32 gdaWriteSome getarray getdims getf getGAUSShome getmatrix getmatrix4D getname getnamef getNextTradingDay getNextWeekDay getnr getorders getpath getPreviousTradingDay getPreviousWeekDay getRow getscalar3D getscalar4D getTrRow getwind glm gradcplx gradMT gradMTm gradMTT gradMTTm gradp graphprt graphset hasimag header headermt hess hessMT hessMTg hessMTgw hessMTm hessMTmw hessMTT hessMTTg hessMTTgw hessMTTm hessMTw hessp hist histf histp hsec imag indcv indexcat indices indices2 indicesf indicesfn indnv indsav integrate1d integrateControlCreate intgrat2 intgrat3 inthp1 inthp2 inthp3 inthp4 inthpControlCreate intquad1 intquad2 intquad3 intrleav intrleavsa intrsect intsimp inv invpd invswp iscplx iscplxf isden isinfnanmiss ismiss key keyav keyw lag lag1 lagn lapEighb lapEighi lapEighvb lapEighvi lapgEig lapgEigh lapgEighv lapgEigv lapgSchur lapgSvdcst lapgSvds lapgSvdst lapSvdcusv lapSvds lapSvdusv ldlp ldlsol linSolve listwise ln lncdfbvn lncdfbvn2 lncdfmvn lncdfn lncdfn2 lncdfnc lnfact lngammacplx lnpdfmvn lnpdfmvt lnpdfn lnpdft loadd loadstruct loadwind loess loessmt loessmtControlCreate log loglog logx logy lower lowmat lowmat1 ltrisol lu lusol machEpsilon make makevars makewind margin matalloc matinit mattoarray maxbytes maxc maxindc maxv maxvec mbesselei mbesselei0 mbesselei1 mbesseli mbesseli0 mbesseli1 meanc median mergeby mergevar minc minindc minv miss missex missrv moment momentd movingave movingaveExpwgt movingaveWgt nextindex nextn nextnevn nextwind ntos null null1 numCombinations ols olsmt olsmtControlCreate olsqr olsqr2 olsqrmt ones optn optnevn orth outtyp pacf packedToSp packr parse pause pdfCauchy pdfChi pdfExp pdfGenPareto pdfHyperGeo pdfLaplace pdfLogistic pdfn pdfPoisson pdfRayleigh pdfWeibull pi pinv pinvmt plotAddArrow plotAddBar plotAddBox plotAddHist plotAddHistF plotAddHistP plotAddPolar plotAddScatter plotAddShape plotAddTextbox plotAddTS plotAddXY plotArea plotBar plotBox plotClearLayout plotContour plotCustomLayout plotGetDefaults plotHist plotHistF plotHistP plotLayout plotLogLog plotLogX plotLogY plotOpenWindow plotPolar plotSave plotScatter plotSetAxesPen plotSetBar plotSetBarFill plotSetBarStacked plotSetBkdColor plotSetFill plotSetGrid plotSetLegend plotSetLineColor plotSetLineStyle plotSetLineSymbol plotSetLineThickness plotSetNewWindow plotSetTitle plotSetWhichYAxis plotSetXAxisShow plotSetXLabel plotSetXRange plotSetXTicInterval plotSetXTicLabel plotSetYAxisShow plotSetYLabel plotSetYRange plotSetZAxisShow plotSetZLabel plotSurface plotTS plotXY polar polychar polyeval polygamma polyint polymake polymat polymroot polymult polyroot pqgwin previousindex princomp printfm printfmt prodc psi putarray putf putvals pvCreate pvGetIndex pvGetParNames pvGetParVector pvLength pvList pvPack pvPacki pvPackm pvPackmi pvPacks pvPacksi pvPacksm pvPacksmi pvPutParVector pvTest pvUnpack QNewton QNewtonmt QNewtonmtControlCreate QNewtonmtOutCreate QNewtonSet QProg QProgmt QProgmtInCreate qqr qqre qqrep qr qre qrep qrsol qrtsol qtyr qtyre qtyrep quantile quantiled qyr qyre qyrep qz rank rankindx readr real reclassify reclassifyCuts recode recserar recsercp recserrc rerun rescale reshape rets rev rfft rffti rfftip rfftn rfftnp rfftp rndBernoulli rndBeta rndBinomial rndCauchy rndChiSquare rndCon rndCreateState rndExp rndGamma rndGeo rndGumbel rndHyperGeo rndi rndKMbeta rndKMgam rndKMi rndKMn rndKMnb rndKMp rndKMu rndKMvm rndLaplace rndLCbeta rndLCgam rndLCi rndLCn rndLCnb rndLCp rndLCu rndLCvm rndLogNorm rndMTu rndMVn rndMVt rndn rndnb rndNegBinomial rndp rndPoisson rndRayleigh rndStateSkip rndu rndvm rndWeibull rndWishart rotater round rows rowsf rref sampleData satostrC saved saveStruct savewind scale scale3d scalerr scalinfnanmiss scalmiss schtoc schur searchsourcepath seekr select selif seqa seqm setdif setdifsa setvars setvwrmode setwind shell shiftr sin singleindex sinh sleep solpd sortc sortcc sortd sorthc sorthcc sortind sortindc sortmc sortr sortrc spBiconjGradSol spChol spConjGradSol spCreate spDenseSubmat spDiagRvMat spEigv spEye spLDL spline spLU spNumNZE spOnes spreadSheetReadM spreadSheetReadSA spreadSheetWrite spScale spSubmat spToDense spTrTDense spTScalar spZeros sqpSolve sqpSolveMT sqpSolveMTControlCreate sqpSolveMTlagrangeCreate sqpSolveMToutCreate sqpSolveSet sqrt statements stdc stdsc stocv stof strcombine strindx strlen strput strrindx strsect strsplit strsplitPad strtodt strtof strtofcplx strtriml strtrimr strtrunc strtruncl strtruncpad strtruncr submat subscat substute subvec sumc sumr surface svd svd1 svd2 svdcusv svds svdusv sysstate tab tan tanh tempname time timedt timestr timeutc title tkf2eps tkf2ps tocart todaydt toeplitz token topolar trapchk trigamma trimr trunc type typecv typef union unionsa uniqindx uniqindxsa unique uniquesa upmat upmat1 upper utctodt utctodtv utrisol vals varCovMS varCovXS varget vargetl varmall varmares varput varputl vartypef vcm vcms vcx vcxs vec vech vecr vector vget view viewxyz vlist vnamecv volume vput vread vtypecv wait waitc walkindex where window writer xlabel xlsGetSheetCount xlsGetSheetSize xlsGetSheetTypes xlsMakeRange xlsReadM xlsReadSA xlsWrite xlsWriteM xlsWriteSA xpnd xtics xy xyz ylabel ytics zeros zeta zlabel ztics cdfEmpirical dot h5create h5open h5read h5readAttribute h5write h5writeAttribute ldl plotAddErrorBar plotAddSurface plotCDFEmpirical plotSetColormap plotSetContourLabels plotSetLegendFont plotSetTextInterpreter plotSetXTicCount plotSetYTicCount plotSetZLevels powerm strjoin sylvester strtrim",d="DB_AFTER_LAST_ROW DB_ALL_TABLES DB_BATCH_OPERATIONS DB_BEFORE_FIRST_ROW DB_BLOB DB_EVENT_NOTIFICATIONS DB_FINISH_QUERY DB_HIGH_PRECISION DB_LAST_INSERT_ID DB_LOW_PRECISION_DOUBLE DB_LOW_PRECISION_INT32 DB_LOW_PRECISION_INT64 DB_LOW_PRECISION_NUMBERS DB_MULTIPLE_RESULT_SETS DB_NAMED_PLACEHOLDERS DB_POSITIONAL_PLACEHOLDERS DB_PREPARED_QUERIES DB_QUERY_SIZE DB_SIMPLE_LOCKING DB_SYSTEM_TABLES DB_TABLES DB_TRANSACTIONS DB_UNICODE DB_VIEWS __STDIN __STDOUT __STDERR __FILE_DIR",c=null,b="~contains~9~contains~2~contains~3",a="[a-zA-Z_]\\w*",a0="~contains~9~contains~2",a1="~contains~3",a2="~contains~4",a3="~contains~7~contains~1",a4="~contains~7~contains~0~contains~4",a5="~contains~7~contains~0",a6="function",a7=t.N,a8=A.l(["keyword",g,"built_in",e,"literal",d],a7,a7),a9=t._ -a8=A.a(c,"[a-zA-Z_]\\w*\\s*\\(",c,c,c,A.b([A.a(c,c,g,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c),A.a(c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,b,c,c,c,c,c,c,c,c,c),A.a(c,a,c,c,f,c,c,c,c,c,c,c,c,c,c,c,c,c,0,c,c,c,c,c,c,c),A.a(c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,a0,c,c,c,c,c,c,c,c,c)],a9),c,c,c,c,c,c,c,c,a8,c,c,c,0,!0,c,c,c,c,c,c) -q=A.a(c,"\\b(abs|acf|aconcat|aeye|amax|amean|AmericanBinomCall|AmericanBinomCall_Greeks|AmericanBinomCall_ImpVol|AmericanBinomPut|AmericanBinomPut_Greeks|AmericanBinomPut_ImpVol|AmericanBSCall|AmericanBSCall_Greeks|AmericanBSCall_ImpVol|AmericanBSPut|AmericanBSPut_Greeks|AmericanBSPut_ImpVol|amin|amult|annotationGetDefaults|annotationSetBkd|annotationSetFont|annotationSetLineColor|annotationSetLineStyle|annotationSetLineThickness|annualTradingDays|arccos|arcsin|areshape|arrayalloc|arrayindex|arrayinit|arraytomat|asciiload|asclabel|astd|astds|asum|atan|atan2|atranspose|axmargin|balance|band|bandchol|bandcholsol|bandltsol|bandrv|bandsolpd|bar|base10|begwind|besselj|bessely|beta|box|boxcox|cdfBeta|cdfBetaInv|cdfBinomial|cdfBinomialInv|cdfBvn|cdfBvn2|cdfBvn2e|cdfCauchy|cdfCauchyInv|cdfChic|cdfChii|cdfChinc|cdfChincInv|cdfExp|cdfExpInv|cdfFc|cdfFnc|cdfFncInv|cdfGam|cdfGenPareto|cdfHyperGeo|cdfLaplace|cdfLaplaceInv|cdfLogistic|cdfLogisticInv|cdfmControlCreate|cdfMvn|cdfMvn2e|cdfMvnce|cdfMvne|cdfMvt2e|cdfMvtce|cdfMvte|cdfN|cdfN2|cdfNc|cdfNegBinomial|cdfNegBinomialInv|cdfNi|cdfPoisson|cdfPoissonInv|cdfRayleigh|cdfRayleighInv|cdfTc|cdfTci|cdfTnc|cdfTvn|cdfWeibull|cdfWeibullInv|cdir|ceil|ChangeDir|chdir|chiBarSquare|chol|choldn|cholsol|cholup|chrs|close|code|cols|colsf|combinate|combinated|complex|con|cond|conj|cons|ConScore|contour|conv|convertsatostr|convertstrtosa|corrm|corrms|corrvc|corrx|corrxs|cos|cosh|counts|countwts|crossprd|crout|croutp|csrcol|csrlin|csvReadM|csvReadSA|cumprodc|cumsumc|curve|cvtos|datacreate|datacreatecomplex|datalist|dataload|dataloop|dataopen|datasave|date|datestr|datestring|datestrymd|dayinyr|dayofweek|dbAddDatabase|dbClose|dbCommit|dbCreateQuery|dbExecQuery|dbGetConnectOptions|dbGetDatabaseName|dbGetDriverName|dbGetDrivers|dbGetHostName|dbGetLastErrorNum|dbGetLastErrorText|dbGetNumericalPrecPolicy|dbGetPassword|dbGetPort|dbGetTableHeaders|dbGetTables|dbGetUserName|dbHasFeature|dbIsDriverAvailable|dbIsOpen|dbIsOpenError|dbOpen|dbQueryBindValue|dbQueryClear|dbQueryCols|dbQueryExecPrepared|dbQueryFetchAllM|dbQueryFetchAllSA|dbQueryFetchOneM|dbQueryFetchOneSA|dbQueryFinish|dbQueryGetBoundValue|dbQueryGetBoundValues|dbQueryGetField|dbQueryGetLastErrorNum|dbQueryGetLastErrorText|dbQueryGetLastInsertID|dbQueryGetLastQuery|dbQueryGetPosition|dbQueryIsActive|dbQueryIsForwardOnly|dbQueryIsNull|dbQueryIsSelect|dbQueryIsValid|dbQueryPrepare|dbQueryRows|dbQuerySeek|dbQuerySeekFirst|dbQuerySeekLast|dbQuerySeekNext|dbQuerySeekPrevious|dbQuerySetForwardOnly|dbRemoveDatabase|dbRollback|dbSetConnectOptions|dbSetDatabaseName|dbSetHostName|dbSetNumericalPrecPolicy|dbSetPort|dbSetUserName|dbTransaction|DeleteFile|delif|delrows|denseToSp|denseToSpRE|denToZero|design|det|detl|dfft|dffti|diag|diagrv|digamma|doswin|DOSWinCloseall|DOSWinOpen|dotfeq|dotfeqmt|dotfge|dotfgemt|dotfgt|dotfgtmt|dotfle|dotflemt|dotflt|dotfltmt|dotfne|dotfnemt|draw|drop|dsCreate|dstat|dstatmt|dstatmtControlCreate|dtdate|dtday|dttime|dttodtv|dttostr|dttoutc|dtvnormal|dtvtodt|dtvtoutc|dummy|dummybr|dummydn|eig|eigh|eighv|eigv|elapsedTradingDays|endwind|envget|eof|eqSolve|eqSolvemt|eqSolvemtControlCreate|eqSolvemtOutCreate|eqSolveset|erf|erfc|erfccplx|erfcplx|error|etdays|ethsec|etstr|EuropeanBinomCall|EuropeanBinomCall_Greeks|EuropeanBinomCall_ImpVol|EuropeanBinomPut|EuropeanBinomPut_Greeks|EuropeanBinomPut_ImpVol|EuropeanBSCall|EuropeanBSCall_Greeks|EuropeanBSCall_ImpVol|EuropeanBSPut|EuropeanBSPut_Greeks|EuropeanBSPut_ImpVol|exctsmpl|exec|execbg|exp|extern|eye|fcheckerr|fclearerr|feq|feqmt|fflush|fft|ffti|fftm|fftmi|fftn|fge|fgemt|fgets|fgetsa|fgetsat|fgetst|fgt|fgtmt|fileinfo|filesa|fle|flemt|floor|flt|fltmt|fmod|fne|fnemt|fonts|fopen|formatcv|formatnv|fputs|fputst|fseek|fstrerror|ftell|ftocv|ftos|ftostrC|gamma|gammacplx|gammaii|gausset|gdaAppend|gdaCreate|gdaDStat|gdaDStatMat|gdaGetIndex|gdaGetName|gdaGetNames|gdaGetOrders|gdaGetType|gdaGetTypes|gdaGetVarInfo|gdaIsCplx|gdaLoad|gdaPack|gdaRead|gdaReadByIndex|gdaReadSome|gdaReadSparse|gdaReadStruct|gdaReportVarInfo|gdaSave|gdaUpdate|gdaUpdateAndPack|gdaVars|gdaWrite|gdaWrite32|gdaWriteSome|getarray|getdims|getf|getGAUSShome|getmatrix|getmatrix4D|getname|getnamef|getNextTradingDay|getNextWeekDay|getnr|getorders|getpath|getPreviousTradingDay|getPreviousWeekDay|getRow|getscalar3D|getscalar4D|getTrRow|getwind|glm|gradcplx|gradMT|gradMTm|gradMTT|gradMTTm|gradp|graphprt|graphset|hasimag|header|headermt|hess|hessMT|hessMTg|hessMTgw|hessMTm|hessMTmw|hessMTT|hessMTTg|hessMTTgw|hessMTTm|hessMTw|hessp|hist|histf|histp|hsec|imag|indcv|indexcat|indices|indices2|indicesf|indicesfn|indnv|indsav|integrate1d|integrateControlCreate|intgrat2|intgrat3|inthp1|inthp2|inthp3|inthp4|inthpControlCreate|intquad1|intquad2|intquad3|intrleav|intrleavsa|intrsect|intsimp|inv|invpd|invswp|iscplx|iscplxf|isden|isinfnanmiss|ismiss|key|keyav|keyw|lag|lag1|lagn|lapEighb|lapEighi|lapEighvb|lapEighvi|lapgEig|lapgEigh|lapgEighv|lapgEigv|lapgSchur|lapgSvdcst|lapgSvds|lapgSvdst|lapSvdcusv|lapSvds|lapSvdusv|ldlp|ldlsol|linSolve|listwise|ln|lncdfbvn|lncdfbvn2|lncdfmvn|lncdfn|lncdfn2|lncdfnc|lnfact|lngammacplx|lnpdfmvn|lnpdfmvt|lnpdfn|lnpdft|loadd|loadstruct|loadwind|loess|loessmt|loessmtControlCreate|log|loglog|logx|logy|lower|lowmat|lowmat1|ltrisol|lu|lusol|machEpsilon|make|makevars|makewind|margin|matalloc|matinit|mattoarray|maxbytes|maxc|maxindc|maxv|maxvec|mbesselei|mbesselei0|mbesselei1|mbesseli|mbesseli0|mbesseli1|meanc|median|mergeby|mergevar|minc|minindc|minv|miss|missex|missrv|moment|momentd|movingave|movingaveExpwgt|movingaveWgt|nextindex|nextn|nextnevn|nextwind|ntos|null|null1|numCombinations|ols|olsmt|olsmtControlCreate|olsqr|olsqr2|olsqrmt|ones|optn|optnevn|orth|outtyp|pacf|packedToSp|packr|parse|pause|pdfCauchy|pdfChi|pdfExp|pdfGenPareto|pdfHyperGeo|pdfLaplace|pdfLogistic|pdfn|pdfPoisson|pdfRayleigh|pdfWeibull|pi|pinv|pinvmt|plotAddArrow|plotAddBar|plotAddBox|plotAddHist|plotAddHistF|plotAddHistP|plotAddPolar|plotAddScatter|plotAddShape|plotAddTextbox|plotAddTS|plotAddXY|plotArea|plotBar|plotBox|plotClearLayout|plotContour|plotCustomLayout|plotGetDefaults|plotHist|plotHistF|plotHistP|plotLayout|plotLogLog|plotLogX|plotLogY|plotOpenWindow|plotPolar|plotSave|plotScatter|plotSetAxesPen|plotSetBar|plotSetBarFill|plotSetBarStacked|plotSetBkdColor|plotSetFill|plotSetGrid|plotSetLegend|plotSetLineColor|plotSetLineStyle|plotSetLineSymbol|plotSetLineThickness|plotSetNewWindow|plotSetTitle|plotSetWhichYAxis|plotSetXAxisShow|plotSetXLabel|plotSetXRange|plotSetXTicInterval|plotSetXTicLabel|plotSetYAxisShow|plotSetYLabel|plotSetYRange|plotSetZAxisShow|plotSetZLabel|plotSurface|plotTS|plotXY|polar|polychar|polyeval|polygamma|polyint|polymake|polymat|polymroot|polymult|polyroot|pqgwin|previousindex|princomp|printfm|printfmt|prodc|psi|putarray|putf|putvals|pvCreate|pvGetIndex|pvGetParNames|pvGetParVector|pvLength|pvList|pvPack|pvPacki|pvPackm|pvPackmi|pvPacks|pvPacksi|pvPacksm|pvPacksmi|pvPutParVector|pvTest|pvUnpack|QNewton|QNewtonmt|QNewtonmtControlCreate|QNewtonmtOutCreate|QNewtonSet|QProg|QProgmt|QProgmtInCreate|qqr|qqre|qqrep|qr|qre|qrep|qrsol|qrtsol|qtyr|qtyre|qtyrep|quantile|quantiled|qyr|qyre|qyrep|qz|rank|rankindx|readr|real|reclassify|reclassifyCuts|recode|recserar|recsercp|recserrc|rerun|rescale|reshape|rets|rev|rfft|rffti|rfftip|rfftn|rfftnp|rfftp|rndBernoulli|rndBeta|rndBinomial|rndCauchy|rndChiSquare|rndCon|rndCreateState|rndExp|rndGamma|rndGeo|rndGumbel|rndHyperGeo|rndi|rndKMbeta|rndKMgam|rndKMi|rndKMn|rndKMnb|rndKMp|rndKMu|rndKMvm|rndLaplace|rndLCbeta|rndLCgam|rndLCi|rndLCn|rndLCnb|rndLCp|rndLCu|rndLCvm|rndLogNorm|rndMTu|rndMVn|rndMVt|rndn|rndnb|rndNegBinomial|rndp|rndPoisson|rndRayleigh|rndStateSkip|rndu|rndvm|rndWeibull|rndWishart|rotater|round|rows|rowsf|rref|sampleData|satostrC|saved|saveStruct|savewind|scale|scale3d|scalerr|scalinfnanmiss|scalmiss|schtoc|schur|searchsourcepath|seekr|select|selif|seqa|seqm|setdif|setdifsa|setvars|setvwrmode|setwind|shell|shiftr|sin|singleindex|sinh|sleep|solpd|sortc|sortcc|sortd|sorthc|sorthcc|sortind|sortindc|sortmc|sortr|sortrc|spBiconjGradSol|spChol|spConjGradSol|spCreate|spDenseSubmat|spDiagRvMat|spEigv|spEye|spLDL|spline|spLU|spNumNZE|spOnes|spreadSheetReadM|spreadSheetReadSA|spreadSheetWrite|spScale|spSubmat|spToDense|spTrTDense|spTScalar|spZeros|sqpSolve|sqpSolveMT|sqpSolveMTControlCreate|sqpSolveMTlagrangeCreate|sqpSolveMToutCreate|sqpSolveSet|sqrt|statements|stdc|stdsc|stocv|stof|strcombine|strindx|strlen|strput|strrindx|strsect|strsplit|strsplitPad|strtodt|strtof|strtofcplx|strtriml|strtrimr|strtrunc|strtruncl|strtruncpad|strtruncr|submat|subscat|substute|subvec|sumc|sumr|surface|svd|svd1|svd2|svdcusv|svds|svdusv|sysstate|tab|tan|tanh|tempname|time|timedt|timestr|timeutc|title|tkf2eps|tkf2ps|tocart|todaydt|toeplitz|token|topolar|trapchk|trigamma|trimr|trunc|type|typecv|typef|union|unionsa|uniqindx|uniqindxsa|unique|uniquesa|upmat|upmat1|upper|utctodt|utctodtv|utrisol|vals|varCovMS|varCovXS|varget|vargetl|varmall|varmares|varput|varputl|vartypef|vcm|vcms|vcx|vcxs|vec|vech|vecr|vector|vget|view|viewxyz|vlist|vnamecv|volume|vput|vread|vtypecv|wait|waitc|walkindex|where|window|writer|xlabel|xlsGetSheetCount|xlsGetSheetSize|xlsGetSheetTypes|xlsMakeRange|xlsReadM|xlsReadSA|xlsWrite|xlsWriteM|xlsWriteSA|xpnd|xtics|xy|xyz|ylabel|ytics|zeros|zeta|zlabel|ztics|cdfEmpirical|dot|h5create|h5open|h5read|h5readAttribute|h5write|h5writeAttribute|ldl|plotAddErrorBar|plotAddSurface|plotCDFEmpirical|plotSetColormap|plotSetContourLabels|plotSetLegendFont|plotSetTextInterpreter|plotSetXTicCount|plotSetYTicCount|plotSetZLevels|powerm|strjoin|sylvester|strtrim)\\b",c,c,f,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c) -p=A.l(["built_in",e,"literal",d],a7,a7) -o=$.bw() -n=$.b_() -p=A.l([h,a8,b,q,a0,A.a(c,"\\(",c,c,c,A.b([o,n,A.a(c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,a1,c,c,c,c,c,c,c,c,c),A.a(c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,b,c,c,c,c,c,c,c,c,c),A.a(c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,h,c,c,c,c,c,c,c,c,c),A.a(c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,a2,c,c,c,c,c,c,c,c,c),A.a(c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,!0,c,c,c,c)],a9),c,"\\)",c,c,c,c,c,c,p,c,c,c,0,c,c,c,c,c,c,c),a3,A.a(c,a,c,c,"title",c,c,c,c,c,c,c,c,c,c,c,c,c,0,c,c,c,c,c,c,c),a4,A.a(c,"\\bstruct\\s+",c,c,c,A.b([A.a(c,a,c,c,"type",c,c,c,c,c,c,c,c,c,c,c,c,c,0,c,c,c,c,c,c,c)],a9),c,"\\s",c,c,c,c,c,c,"struct",c,c,c,c,c,c,c,c,c,c,c),a5,A.a(c,"\\(",c,c,"params",A.b([A.a(c,"\\.\\.\\.",c,c,"literal",c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c),o,n,A.a(c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,a1,c,c,c,c,c,c,c,c,c),A.a(c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,a4,c,c,c,c,c,c,c,c,c)],a9),c,"\\)",c,c,!0,!0,!0,c,c,c,c,c,0,c,c,c,c,c,c,c),"~contains~4",A.a(c,'"',c,c,"string",A.b([$.aZ()],a9),c,'"',c,c,c,c,c,c,c,c,c,c,0,c,c,c,c,c,c,c),"~contains~3",A.a(c,"@",c,c,"comment",A.b([$.aq(),A.a(c,"(?:TODO|FIXME|NOTE|BUG|XXX):",c,c,"doctag",c,c,c,c,c,c,c,c,c,c,c,c,c,0,c,c,c,c,c,c,c)],a9),c,"@",c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c)],a7,t.n) -q=A.b(["gss"],t.s) -a8=A.l(["keyword",g,"built_in",e,"literal",d],a7,a7) -m=$.ba() -l=A.a(c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,a1,c,c,c,c,c,c,c,c,c) -k=A.a(c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,a2,c,c,c,c,c,c,c,c,c) -j=A.l(["meta-keyword","define definecs|10 undef ifdef ifndef iflight ifdllcall ifmac ifos2win ifunix else endif lineson linesoff srcfile srcline"],a7,a7) -i=A.a(c,"\\\\\\n",c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,0,c,c,c,c,c,c,c) -a7=A.l(["meta-keyword","include"],a7,a7) -return A.a(q,c,c,!0,c,A.b([o,m,n,l,k,A.a(c,"#",c,c,"meta",A.b([i,A.a(c,c,"include",c,c,A.b([A.a(c,'"',c,c,"meta-string",c,c,'"',c,c,c,c,c,"\\n",c,c,c,c,c,c,c,c,c,c,c,c)],a9),c,"$",c,c,c,c,c,c,a7,c,c,c,c,c,c,c,c,c,c,c),m,n,A.a(c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,a1,c,c,c,c,c,c,c,c,c)],a9),c,"$",c,c,c,c,c,c,j,c,c,c,c,c,c,c,c,c,c,c),A.a(c,"\\bexternal (matrix|string|array|sparse matrix|struct|proc|keyword|fn)",c,c,"keyword",c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c),A.a(c,c,"proc keyword",c,a6,A.b([A.a(c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,a5,c,c,c,c,c,c,c,c,c),A.a(c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,a3,c,c,c,c,c,c,c,c,c),o,n,A.a(c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,a1,c,c,c,c,c,c,c,c,c)],a9),c,";",c,c,c,c,!0,c,c,c,c,c,c,c,c,c,c,c,c,c),A.a(c,c,"fn",c,a6,A.b([A.a(c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,a5,c,c,c,c,c,c,c,c,c),A.a(c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,a3,c,c,c,c,c,c,c,c,c),o,n,A.a(c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,a1,c,c,c,c,c,c,c,c,c)],a9),c,"=",c,c,c,c,!0,c,c,c,c,c,c,c,c,c,c,c,c,c),A.a(c,c,"for threadfor",c,c,A.b([n,A.a(c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,a1,c,c,c,c,c,c,c,c,c),A.a(c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,a0,c,c,c,c,c,c,c,c,c)],a9),c,";",c,c,c,c,c,c,c,c,c,c,0,c,c,c,c,c,c,c),A.a(c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,0,c,c,c,c,c,c,A.b([A.a(c,"[a-zA-Z_]\\w*\\.[a-zA-Z_]\\w*",c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c),A.a(c,"[a-zA-Z_]\\w*\\s*=",c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c)],a9)),A.a(c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,h,c,c,c,c,c,c,c,c,c),A.a(c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,c,a4,c,c,c,c,c,c,c,c,c)],a9),c,c,c,c,c,c,c,"(\\{[%#]|[%#]\\}| <- )",a8,c,c,p,c,c,c,c,c,c,c,c)}) -s($,"bdl","aSA",()=>{var q=null,p=A.b(["nc"],t.s),o=A.a(q,"\\%",q,q,"meta",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),n=A.a(q,"([O])([0-9]+)",q,q,"meta",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),m=$.ba(),l=$.b_(),k=t._,j=A.a(q,"\\(",q,q,"comment",A.b([$.aq(),A.a(q,"(?:TODO|FIXME|NOTE|BUG|XXX):",q,q,"doctag",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q)],k),q,"\\)",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),i=A.a(q,"([-+]?([0-9]*\\.?[0-9]+\\.?))|(-?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)",q,q,"number",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q),h=$.aZ() -return A.a(p,q,q,!0,q,A.b([o,n,m,l,j,i,A.a(q,"'",q,q,"string",A.b([h],k),q,"'",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,'"',q,q,"string",A.b([h],k),q,'"',q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"([G])([0-9]+\\.?[0-9]?)",q,q,"name",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"([M])([0-9]+\\.?[0-9]?)",q,q,"name",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"(VC|VS|#)",q,q,"attr",q,q,"(\\d+)",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"(VZOFX|VZOFY|VZOFZ)",q,q,"attr",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"(ATAN|ABS|ACOS|ASIN|SIN|COS|EXP|FIX|FUP|ROUND|LN|TAN)(\\[)",q,q,"built_in",q,q,"([-+]?([0-9]*\\.?[0-9]+\\.?))(\\])",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,q,q,q,"symbol",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,A.b([A.a(q,"N",q,q,q,q,q,"\\d+",q,q,q,q,q,"\\W",q,q,q,q,q,q,q,q,q,q,q,q)],k))],k),q,q,q,q,q,q,q,q,"IF DO WHILE ENDWHILE CALL ENDIF SUB ENDSUB GOTO REPEAT ENDREPEAT EQ LT GT NE GE LE OR XOR","[A-Z_][A-Z0-9_.]*",q,A.m(t.N,t.n),q,q,q,q,q,q,q,q)}) -s($,"bdm","aSB",()=>{var q=null,p=t._ -return A.a(A.b(["feature"],t.s),q,q,q,q,A.b([A.a(q,"\\*",q,q,"symbol",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q),A.a(q,"@[^@\\s]+",q,q,"meta",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\|",q,q,q,A.b([A.a(q,"[^|]+",q,q,"string",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],p),q,"\\|\\w*$",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"<",q,q,"variable",q,q,">",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),$.ch(),A.a(q,'"""',q,q,"string",q,q,'"""',q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),$.aM()],p),q,q,q,q,q,q,q,q,"Feature Background Ability Business Need Scenario Scenarios Scenario Outline Scenario Template Examples Given And Then But When",q,q,A.m(t.N,t.n),q,q,q,q,q,q,q,q)}) -s($,"bdn","aSC",()=>{var q=null,p=t.N,o=A.l(["keyword","break continue discard do else for if return while switch case default attribute binding buffer ccw centroid centroid varying coherent column_major const cw depth_any depth_greater depth_less depth_unchanged early_fragment_tests equal_spacing flat fractional_even_spacing fractional_odd_spacing highp in index inout invariant invocations isolines layout line_strip lines lines_adjacency local_size_x local_size_y local_size_z location lowp max_vertices mediump noperspective offset origin_upper_left out packed patch pixel_center_integer point_mode points precise precision quads r11f_g11f_b10f r16 r16_snorm r16f r16i r16ui r32f r32i r32ui r8 r8_snorm r8i r8ui readonly restrict rg16 rg16_snorm rg16f rg16i rg16ui rg32f rg32i rg32ui rg8 rg8_snorm rg8i rg8ui rgb10_a2 rgb10_a2ui rgba16 rgba16_snorm rgba16f rgba16i rgba16ui rgba32f rgba32i rgba32ui rgba8 rgba8_snorm rgba8i rgba8ui row_major sample shared smooth std140 std430 stream triangle_strip triangles triangles_adjacency uniform varying vertices volatile writeonly","type","atomic_uint bool bvec2 bvec3 bvec4 dmat2 dmat2x2 dmat2x3 dmat2x4 dmat3 dmat3x2 dmat3x3 dmat3x4 dmat4 dmat4x2 dmat4x3 dmat4x4 double dvec2 dvec3 dvec4 float iimage1D iimage1DArray iimage2D iimage2DArray iimage2DMS iimage2DMSArray iimage2DRect iimage3D iimageBufferiimageCube iimageCubeArray image1D image1DArray image2D image2DArray image2DMS image2DMSArray image2DRect image3D imageBuffer imageCube imageCubeArray int isampler1D isampler1DArray isampler2D isampler2DArray isampler2DMS isampler2DMSArray isampler2DRect isampler3D isamplerBuffer isamplerCube isamplerCubeArray ivec2 ivec3 ivec4 mat2 mat2x2 mat2x3 mat2x4 mat3 mat3x2 mat3x3 mat3x4 mat4 mat4x2 mat4x3 mat4x4 sampler1D sampler1DArray sampler1DArrayShadow sampler1DShadow sampler2D sampler2DArray sampler2DArrayShadow sampler2DMS sampler2DMSArray sampler2DRect sampler2DRectShadow sampler2DShadow sampler3D samplerBuffer samplerCube samplerCubeArray samplerCubeArrayShadow samplerCubeShadow image1D uimage1DArray uimage2D uimage2DArray uimage2DMS uimage2DMSArray uimage2DRect uimage3D uimageBuffer uimageCube uimageCubeArray uint usampler1D usampler1DArray usampler2D usampler2DArray usampler2DMS usampler2DMSArray usampler2DRect usampler3D samplerBuffer usamplerCube usamplerCubeArray uvec2 uvec3 uvec4 vec2 vec3 vec4 void","built_in","gl_MaxAtomicCounterBindings gl_MaxAtomicCounterBufferSize gl_MaxClipDistances gl_MaxClipPlanes gl_MaxCombinedAtomicCounterBuffers gl_MaxCombinedAtomicCounters gl_MaxCombinedImageUniforms gl_MaxCombinedImageUnitsAndFragmentOutputs gl_MaxCombinedTextureImageUnits gl_MaxComputeAtomicCounterBuffers gl_MaxComputeAtomicCounters gl_MaxComputeImageUniforms gl_MaxComputeTextureImageUnits gl_MaxComputeUniformComponents gl_MaxComputeWorkGroupCount gl_MaxComputeWorkGroupSize gl_MaxDrawBuffers gl_MaxFragmentAtomicCounterBuffers gl_MaxFragmentAtomicCounters gl_MaxFragmentImageUniforms gl_MaxFragmentInputComponents gl_MaxFragmentInputVectors gl_MaxFragmentUniformComponents gl_MaxFragmentUniformVectors gl_MaxGeometryAtomicCounterBuffers gl_MaxGeometryAtomicCounters gl_MaxGeometryImageUniforms gl_MaxGeometryInputComponents gl_MaxGeometryOutputComponents gl_MaxGeometryOutputVertices gl_MaxGeometryTextureImageUnits gl_MaxGeometryTotalOutputComponents gl_MaxGeometryUniformComponents gl_MaxGeometryVaryingComponents gl_MaxImageSamples gl_MaxImageUnits gl_MaxLights gl_MaxPatchVertices gl_MaxProgramTexelOffset gl_MaxTessControlAtomicCounterBuffers gl_MaxTessControlAtomicCounters gl_MaxTessControlImageUniforms gl_MaxTessControlInputComponents gl_MaxTessControlOutputComponents gl_MaxTessControlTextureImageUnits gl_MaxTessControlTotalOutputComponents gl_MaxTessControlUniformComponents gl_MaxTessEvaluationAtomicCounterBuffers gl_MaxTessEvaluationAtomicCounters gl_MaxTessEvaluationImageUniforms gl_MaxTessEvaluationInputComponents gl_MaxTessEvaluationOutputComponents gl_MaxTessEvaluationTextureImageUnits gl_MaxTessEvaluationUniformComponents gl_MaxTessGenLevel gl_MaxTessPatchComponents gl_MaxTextureCoords gl_MaxTextureImageUnits gl_MaxTextureUnits gl_MaxVaryingComponents gl_MaxVaryingFloats gl_MaxVaryingVectors gl_MaxVertexAtomicCounterBuffers gl_MaxVertexAtomicCounters gl_MaxVertexAttribs gl_MaxVertexImageUniforms gl_MaxVertexOutputComponents gl_MaxVertexOutputVectors gl_MaxVertexTextureImageUnits gl_MaxVertexUniformComponents gl_MaxVertexUniformVectors gl_MaxViewports gl_MinProgramTexelOffset gl_BackColor gl_BackLightModelProduct gl_BackLightProduct gl_BackMaterial gl_BackSecondaryColor gl_ClipDistance gl_ClipPlane gl_ClipVertex gl_Color gl_DepthRange gl_EyePlaneQ gl_EyePlaneR gl_EyePlaneS gl_EyePlaneT gl_Fog gl_FogCoord gl_FogFragCoord gl_FragColor gl_FragCoord gl_FragData gl_FragDepth gl_FrontColor gl_FrontFacing gl_FrontLightModelProduct gl_FrontLightProduct gl_FrontMaterial gl_FrontSecondaryColor gl_GlobalInvocationID gl_InstanceID gl_InvocationID gl_Layer gl_LightModel gl_LightSource gl_LocalInvocationID gl_LocalInvocationIndex gl_ModelViewMatrix gl_ModelViewMatrixInverse gl_ModelViewMatrixInverseTranspose gl_ModelViewMatrixTranspose gl_ModelViewProjectionMatrix gl_ModelViewProjectionMatrixInverse gl_ModelViewProjectionMatrixInverseTranspose gl_ModelViewProjectionMatrixTranspose gl_MultiTexCoord0 gl_MultiTexCoord1 gl_MultiTexCoord2 gl_MultiTexCoord3 gl_MultiTexCoord4 gl_MultiTexCoord5 gl_MultiTexCoord6 gl_MultiTexCoord7 gl_Normal gl_NormalMatrix gl_NormalScale gl_NumSamples gl_NumWorkGroups gl_ObjectPlaneQ gl_ObjectPlaneR gl_ObjectPlaneS gl_ObjectPlaneT gl_PatchVerticesIn gl_Point gl_PointCoord gl_PointSize gl_Position gl_PrimitiveID gl_PrimitiveIDIn gl_ProjectionMatrix gl_ProjectionMatrixInverse gl_ProjectionMatrixInverseTranspose gl_ProjectionMatrixTranspose gl_SampleID gl_SampleMask gl_SampleMaskIn gl_SamplePosition gl_SecondaryColor gl_TessCoord gl_TessLevelInner gl_TessLevelOuter gl_TexCoord gl_TextureEnvColor gl_TextureMatrix gl_TextureMatrixInverse gl_TextureMatrixInverseTranspose gl_TextureMatrixTranspose gl_Vertex gl_VertexID gl_ViewportIndex gl_WorkGroupID gl_WorkGroupSize gl_in gl_out EmitStreamVertex EmitVertex EndPrimitive EndStreamPrimitive abs acos acosh all any asin asinh atan atanh atomicAdd atomicAnd atomicCompSwap atomicCounter atomicCounterDecrement atomicCounterIncrement atomicExchange atomicMax atomicMin atomicOr atomicXor barrier bitCount bitfieldExtract bitfieldInsert bitfieldReverse ceil clamp cos cosh cross dFdx dFdy degrees determinant distance dot equal exp exp2 faceforward findLSB findMSB floatBitsToInt floatBitsToUint floor fma fract frexp ftransform fwidth greaterThan greaterThanEqual groupMemoryBarrier imageAtomicAdd imageAtomicAnd imageAtomicCompSwap imageAtomicExchange imageAtomicMax imageAtomicMin imageAtomicOr imageAtomicXor imageLoad imageSize imageStore imulExtended intBitsToFloat interpolateAtCentroid interpolateAtOffset interpolateAtSample inverse inversesqrt isinf isnan ldexp length lessThan lessThanEqual log log2 matrixCompMult max memoryBarrier memoryBarrierAtomicCounter memoryBarrierBuffer memoryBarrierImage memoryBarrierShared min mix mod modf noise1 noise2 noise3 noise4 normalize not notEqual outerProduct packDouble2x32 packHalf2x16 packSnorm2x16 packSnorm4x8 packUnorm2x16 packUnorm4x8 pow radians reflect refract round roundEven shadow1D shadow1DLod shadow1DProj shadow1DProjLod shadow2D shadow2DLod shadow2DProj shadow2DProjLod sign sin sinh smoothstep sqrt step tan tanh texelFetch texelFetchOffset texture texture1D texture1DLod texture1DProj texture1DProjLod texture2D texture2DLod texture2DProj texture2DProjLod texture3D texture3DLod texture3DProj texture3DProjLod textureCube textureCubeLod textureGather textureGatherOffset textureGatherOffsets textureGrad textureGradOffset textureLod textureLodOffset textureOffset textureProj textureProjGrad textureProjGradOffset textureProjLod textureProjLodOffset textureProjOffset textureQueryLevels textureQueryLod textureSize transpose trunc uaddCarry uintBitsToFloat umulExtended unpackDouble2x32 unpackHalf2x16 unpackSnorm2x16 unpackSnorm4x8 unpackUnorm2x16 unpackUnorm4x8 usubBorrow","literal","true false"],p,p) -return A.a(q,q,q,q,q,A.b([$.ba(),$.b_(),$.bw(),A.a(q,"#",q,q,"meta",q,q,"$",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],t._),q,q,q,q,q,q,q,'"',o,q,q,A.m(p,t.n),q,q,q,q,q,q,q,q)}) -s($,"bdo","aSD",()=>{var q=null,p=t.N,o=A.b(["gml","GML"],t.s),n=A.l(["keyword","begin end if then else while do for break continue with until repeat exit and or xor not return mod div switch case default var globalvar enum #macro #region #endregion","built_in","is_real is_string is_array is_undefined is_int32 is_int64 is_ptr is_vec3 is_vec4 is_matrix is_bool typeof variable_global_exists variable_global_get variable_global_set variable_instance_exists variable_instance_get variable_instance_set variable_instance_get_names array_length_1d array_length_2d array_height_2d array_equals array_create array_copy random random_range irandom irandom_range random_set_seed random_get_seed randomize randomise choose abs round floor ceil sign frac sqrt sqr exp ln log2 log10 sin cos tan arcsin arccos arctan arctan2 dsin dcos dtan darcsin darccos darctan darctan2 degtorad radtodeg power logn min max mean median clamp lerp dot_product dot_product_3d dot_product_normalised dot_product_3d_normalised dot_product_normalized dot_product_3d_normalized math_set_epsilon math_get_epsilon angle_difference point_distance_3d point_distance point_direction lengthdir_x lengthdir_y real string int64 ptr string_format chr ansi_char ord string_length string_byte_length string_pos string_copy string_char_at string_ord_at string_byte_at string_set_byte_at string_delete string_insert string_lower string_upper string_repeat string_letters string_digits string_lettersdigits string_replace string_replace_all string_count string_hash_to_newline clipboard_has_text clipboard_set_text clipboard_get_text date_current_datetime date_create_datetime date_valid_datetime date_inc_year date_inc_month date_inc_week date_inc_day date_inc_hour date_inc_minute date_inc_second date_get_year date_get_month date_get_week date_get_day date_get_hour date_get_minute date_get_second date_get_weekday date_get_day_of_year date_get_hour_of_year date_get_minute_of_year date_get_second_of_year date_year_span date_month_span date_week_span date_day_span date_hour_span date_minute_span date_second_span date_compare_datetime date_compare_date date_compare_time date_date_of date_time_of date_datetime_string date_date_string date_time_string date_days_in_month date_days_in_year date_leap_year date_is_today date_set_timezone date_get_timezone game_set_speed game_get_speed motion_set motion_add place_free place_empty place_meeting place_snapped move_random move_snap move_towards_point move_contact_solid move_contact_all move_outside_solid move_outside_all move_bounce_solid move_bounce_all move_wrap distance_to_point distance_to_object position_empty position_meeting path_start path_end mp_linear_step mp_potential_step mp_linear_step_object mp_potential_step_object mp_potential_settings mp_linear_path mp_potential_path mp_linear_path_object mp_potential_path_object mp_grid_create mp_grid_destroy mp_grid_clear_all mp_grid_clear_cell mp_grid_clear_rectangle mp_grid_add_cell mp_grid_get_cell mp_grid_add_rectangle mp_grid_add_instances mp_grid_path mp_grid_draw mp_grid_to_ds_grid collision_point collision_rectangle collision_circle collision_ellipse collision_line collision_point_list collision_rectangle_list collision_circle_list collision_ellipse_list collision_line_list instance_position_list instance_place_list point_in_rectangle point_in_triangle point_in_circle rectangle_in_rectangle rectangle_in_triangle rectangle_in_circle instance_find instance_exists instance_number instance_position instance_nearest instance_furthest instance_place instance_create_depth instance_create_layer instance_copy instance_change instance_destroy position_destroy position_change instance_id_get instance_deactivate_all instance_deactivate_object instance_deactivate_region instance_activate_all instance_activate_object instance_activate_region room_goto room_goto_previous room_goto_next room_previous room_next room_restart game_end game_restart game_load game_save game_save_buffer game_load_buffer event_perform event_user event_perform_object event_inherited show_debug_message show_debug_overlay debug_event debug_get_callstack alarm_get alarm_set font_texture_page_size keyboard_set_map keyboard_get_map keyboard_unset_map keyboard_check keyboard_check_pressed keyboard_check_released keyboard_check_direct keyboard_get_numlock keyboard_set_numlock keyboard_key_press keyboard_key_release keyboard_clear io_clear mouse_check_button mouse_check_button_pressed mouse_check_button_released mouse_wheel_up mouse_wheel_down mouse_clear draw_self draw_sprite draw_sprite_pos draw_sprite_ext draw_sprite_stretched draw_sprite_stretched_ext draw_sprite_tiled draw_sprite_tiled_ext draw_sprite_part draw_sprite_part_ext draw_sprite_general draw_clear draw_clear_alpha draw_point draw_line draw_line_width draw_rectangle draw_roundrect draw_roundrect_ext draw_triangle draw_circle draw_ellipse draw_set_circle_precision draw_arrow draw_button draw_path draw_healthbar draw_getpixel draw_getpixel_ext draw_set_colour draw_set_color draw_set_alpha draw_get_colour draw_get_color draw_get_alpha merge_colour make_colour_rgb make_colour_hsv colour_get_red colour_get_green colour_get_blue colour_get_hue colour_get_saturation colour_get_value merge_color make_color_rgb make_color_hsv color_get_red color_get_green color_get_blue color_get_hue color_get_saturation color_get_value merge_color screen_save screen_save_part draw_set_font draw_set_halign draw_set_valign draw_text draw_text_ext string_width string_height string_width_ext string_height_ext draw_text_transformed draw_text_ext_transformed draw_text_colour draw_text_ext_colour draw_text_transformed_colour draw_text_ext_transformed_colour draw_text_color draw_text_ext_color draw_text_transformed_color draw_text_ext_transformed_color draw_point_colour draw_line_colour draw_line_width_colour draw_rectangle_colour draw_roundrect_colour draw_roundrect_colour_ext draw_triangle_colour draw_circle_colour draw_ellipse_colour draw_point_color draw_line_color draw_line_width_color draw_rectangle_color draw_roundrect_color draw_roundrect_color_ext draw_triangle_color draw_circle_color draw_ellipse_color draw_primitive_begin draw_vertex draw_vertex_colour draw_vertex_color draw_primitive_end sprite_get_uvs font_get_uvs sprite_get_texture font_get_texture texture_get_width texture_get_height texture_get_uvs draw_primitive_begin_texture draw_vertex_texture draw_vertex_texture_colour draw_vertex_texture_color texture_global_scale surface_create surface_create_ext surface_resize surface_free surface_exists surface_get_width surface_get_height surface_get_texture surface_set_target surface_set_target_ext surface_reset_target surface_depth_disable surface_get_depth_disable draw_surface draw_surface_stretched draw_surface_tiled draw_surface_part draw_surface_ext draw_surface_stretched_ext draw_surface_tiled_ext draw_surface_part_ext draw_surface_general surface_getpixel surface_getpixel_ext surface_save surface_save_part surface_copy surface_copy_part application_surface_draw_enable application_get_position application_surface_enable application_surface_is_enabled display_get_width display_get_height display_get_orientation display_get_gui_width display_get_gui_height display_reset display_mouse_get_x display_mouse_get_y display_mouse_set display_set_ui_visibility window_set_fullscreen window_get_fullscreen window_set_caption window_set_min_width window_set_max_width window_set_min_height window_set_max_height window_get_visible_rects window_get_caption window_set_cursor window_get_cursor window_set_colour window_get_colour window_set_color window_get_color window_set_position window_set_size window_set_rectangle window_center window_get_x window_get_y window_get_width window_get_height window_mouse_get_x window_mouse_get_y window_mouse_set window_view_mouse_get_x window_view_mouse_get_y window_views_mouse_get_x window_views_mouse_get_y audio_listener_position audio_listener_velocity audio_listener_orientation audio_emitter_position audio_emitter_create audio_emitter_free audio_emitter_exists audio_emitter_pitch audio_emitter_velocity audio_emitter_falloff audio_emitter_gain audio_play_sound audio_play_sound_on audio_play_sound_at audio_stop_sound audio_resume_music audio_music_is_playing audio_resume_sound audio_pause_sound audio_pause_music audio_channel_num audio_sound_length audio_get_type audio_falloff_set_model audio_play_music audio_stop_music audio_master_gain audio_music_gain audio_sound_gain audio_sound_pitch audio_stop_all audio_resume_all audio_pause_all audio_is_playing audio_is_paused audio_exists audio_sound_set_track_position audio_sound_get_track_position audio_emitter_get_gain audio_emitter_get_pitch audio_emitter_get_x audio_emitter_get_y audio_emitter_get_z audio_emitter_get_vx audio_emitter_get_vy audio_emitter_get_vz audio_listener_set_position audio_listener_set_velocity audio_listener_set_orientation audio_listener_get_data audio_set_master_gain audio_get_master_gain audio_sound_get_gain audio_sound_get_pitch audio_get_name audio_sound_set_track_position audio_sound_get_track_position audio_create_stream audio_destroy_stream audio_create_sync_group audio_destroy_sync_group audio_play_in_sync_group audio_start_sync_group audio_stop_sync_group audio_pause_sync_group audio_resume_sync_group audio_sync_group_get_track_pos audio_sync_group_debug audio_sync_group_is_playing audio_debug audio_group_load audio_group_unload audio_group_is_loaded audio_group_load_progress audio_group_name audio_group_stop_all audio_group_set_gain audio_create_buffer_sound audio_free_buffer_sound audio_create_play_queue audio_free_play_queue audio_queue_sound audio_get_recorder_count audio_get_recorder_info audio_start_recording audio_stop_recording audio_sound_get_listener_mask audio_emitter_get_listener_mask audio_get_listener_mask audio_sound_set_listener_mask audio_emitter_set_listener_mask audio_set_listener_mask audio_get_listener_count audio_get_listener_info audio_system show_message show_message_async clickable_add clickable_add_ext clickable_change clickable_change_ext clickable_delete clickable_exists clickable_set_style show_question show_question_async get_integer get_string get_integer_async get_string_async get_login_async get_open_filename get_save_filename get_open_filename_ext get_save_filename_ext show_error highscore_clear highscore_add highscore_value highscore_name draw_highscore sprite_exists sprite_get_name sprite_get_number sprite_get_width sprite_get_height sprite_get_xoffset sprite_get_yoffset sprite_get_bbox_left sprite_get_bbox_right sprite_get_bbox_top sprite_get_bbox_bottom sprite_save sprite_save_strip sprite_set_cache_size sprite_set_cache_size_ext sprite_get_tpe sprite_prefetch sprite_prefetch_multi sprite_flush sprite_flush_multi sprite_set_speed sprite_get_speed_type sprite_get_speed font_exists font_get_name font_get_fontname font_get_bold font_get_italic font_get_first font_get_last font_get_size font_set_cache_size path_exists path_get_name path_get_length path_get_time path_get_kind path_get_closed path_get_precision path_get_number path_get_point_x path_get_point_y path_get_point_speed path_get_x path_get_y path_get_speed script_exists script_get_name timeline_add timeline_delete timeline_clear timeline_exists timeline_get_name timeline_moment_clear timeline_moment_add_script timeline_size timeline_max_moment object_exists object_get_name object_get_sprite object_get_solid object_get_visible object_get_persistent object_get_mask object_get_parent object_get_physics object_is_ancestor room_exists room_get_name sprite_set_offset sprite_duplicate sprite_assign sprite_merge sprite_add sprite_replace sprite_create_from_surface sprite_add_from_surface sprite_delete sprite_set_alpha_from_sprite sprite_collision_mask font_add_enable_aa font_add_get_enable_aa font_add font_add_sprite font_add_sprite_ext font_replace font_replace_sprite font_replace_sprite_ext font_delete path_set_kind path_set_closed path_set_precision path_add path_assign path_duplicate path_append path_delete path_add_point path_insert_point path_change_point path_delete_point path_clear_points path_reverse path_mirror path_flip path_rotate path_rescale path_shift script_execute object_set_sprite object_set_solid object_set_visible object_set_persistent object_set_mask room_set_width room_set_height room_set_persistent room_set_background_colour room_set_background_color room_set_view room_set_viewport room_get_viewport room_set_view_enabled room_add room_duplicate room_assign room_instance_add room_instance_clear room_get_camera room_set_camera asset_get_index asset_get_type file_text_open_from_string file_text_open_read file_text_open_write file_text_open_append file_text_close file_text_write_string file_text_write_real file_text_writeln file_text_read_string file_text_read_real file_text_readln file_text_eof file_text_eoln file_exists file_delete file_rename file_copy directory_exists directory_create directory_destroy file_find_first file_find_next file_find_close file_attributes filename_name filename_path filename_dir filename_drive filename_ext filename_change_ext file_bin_open file_bin_rewrite file_bin_close file_bin_position file_bin_size file_bin_seek file_bin_write_byte file_bin_read_byte parameter_count parameter_string environment_get_variable ini_open_from_string ini_open ini_close ini_read_string ini_read_real ini_write_string ini_write_real ini_key_exists ini_section_exists ini_key_delete ini_section_delete ds_set_precision ds_exists ds_stack_create ds_stack_destroy ds_stack_clear ds_stack_copy ds_stack_size ds_stack_empty ds_stack_push ds_stack_pop ds_stack_top ds_stack_write ds_stack_read ds_queue_create ds_queue_destroy ds_queue_clear ds_queue_copy ds_queue_size ds_queue_empty ds_queue_enqueue ds_queue_dequeue ds_queue_head ds_queue_tail ds_queue_write ds_queue_read ds_list_create ds_list_destroy ds_list_clear ds_list_copy ds_list_size ds_list_empty ds_list_add ds_list_insert ds_list_replace ds_list_delete ds_list_find_index ds_list_find_value ds_list_mark_as_list ds_list_mark_as_map ds_list_sort ds_list_shuffle ds_list_write ds_list_read ds_list_set ds_map_create ds_map_destroy ds_map_clear ds_map_copy ds_map_size ds_map_empty ds_map_add ds_map_add_list ds_map_add_map ds_map_replace ds_map_replace_map ds_map_replace_list ds_map_delete ds_map_exists ds_map_find_value ds_map_find_previous ds_map_find_next ds_map_find_first ds_map_find_last ds_map_write ds_map_read ds_map_secure_save ds_map_secure_load ds_map_secure_load_buffer ds_map_secure_save_buffer ds_map_set ds_priority_create ds_priority_destroy ds_priority_clear ds_priority_copy ds_priority_size ds_priority_empty ds_priority_add ds_priority_change_priority ds_priority_find_priority ds_priority_delete_value ds_priority_delete_min ds_priority_find_min ds_priority_delete_max ds_priority_find_max ds_priority_write ds_priority_read ds_grid_create ds_grid_destroy ds_grid_copy ds_grid_resize ds_grid_width ds_grid_height ds_grid_clear ds_grid_set ds_grid_add ds_grid_multiply ds_grid_set_region ds_grid_add_region ds_grid_multiply_region ds_grid_set_disk ds_grid_add_disk ds_grid_multiply_disk ds_grid_set_grid_region ds_grid_add_grid_region ds_grid_multiply_grid_region ds_grid_get ds_grid_get_sum ds_grid_get_max ds_grid_get_min ds_grid_get_mean ds_grid_get_disk_sum ds_grid_get_disk_min ds_grid_get_disk_max ds_grid_get_disk_mean ds_grid_value_exists ds_grid_value_x ds_grid_value_y ds_grid_value_disk_exists ds_grid_value_disk_x ds_grid_value_disk_y ds_grid_shuffle ds_grid_write ds_grid_read ds_grid_sort ds_grid_set ds_grid_get effect_create_below effect_create_above effect_clear part_type_create part_type_destroy part_type_exists part_type_clear part_type_shape part_type_sprite part_type_size part_type_scale part_type_orientation part_type_life part_type_step part_type_death part_type_speed part_type_direction part_type_gravity part_type_colour1 part_type_colour2 part_type_colour3 part_type_colour_mix part_type_colour_rgb part_type_colour_hsv part_type_color1 part_type_color2 part_type_color3 part_type_color_mix part_type_color_rgb part_type_color_hsv part_type_alpha1 part_type_alpha2 part_type_alpha3 part_type_blend part_system_create part_system_create_layer part_system_destroy part_system_exists part_system_clear part_system_draw_order part_system_depth part_system_position part_system_automatic_update part_system_automatic_draw part_system_update part_system_drawit part_system_get_layer part_system_layer part_particles_create part_particles_create_colour part_particles_create_color part_particles_clear part_particles_count part_emitter_create part_emitter_destroy part_emitter_destroy_all part_emitter_exists part_emitter_clear part_emitter_region part_emitter_burst part_emitter_stream external_call external_define external_free window_handle window_device matrix_get matrix_set matrix_build_identity matrix_build matrix_build_lookat matrix_build_projection_ortho matrix_build_projection_perspective matrix_build_projection_perspective_fov matrix_multiply matrix_transform_vertex matrix_stack_push matrix_stack_pop matrix_stack_multiply matrix_stack_set matrix_stack_clear matrix_stack_top matrix_stack_is_empty browser_input_capture os_get_config os_get_info os_get_language os_get_region os_lock_orientation display_get_dpi_x display_get_dpi_y display_set_gui_size display_set_gui_maximise display_set_gui_maximize device_mouse_dbclick_enable display_set_timing_method display_get_timing_method display_set_sleep_margin display_get_sleep_margin virtual_key_add virtual_key_hide virtual_key_delete virtual_key_show draw_enable_drawevent draw_enable_swf_aa draw_set_swf_aa_level draw_get_swf_aa_level draw_texture_flush draw_flush gpu_set_blendenable gpu_set_ztestenable gpu_set_zfunc gpu_set_zwriteenable gpu_set_lightingenable gpu_set_fog gpu_set_cullmode gpu_set_blendmode gpu_set_blendmode_ext gpu_set_blendmode_ext_sepalpha gpu_set_colorwriteenable gpu_set_colourwriteenable gpu_set_alphatestenable gpu_set_alphatestref gpu_set_alphatestfunc gpu_set_texfilter gpu_set_texfilter_ext gpu_set_texrepeat gpu_set_texrepeat_ext gpu_set_tex_filter gpu_set_tex_filter_ext gpu_set_tex_repeat gpu_set_tex_repeat_ext gpu_set_tex_mip_filter gpu_set_tex_mip_filter_ext gpu_set_tex_mip_bias gpu_set_tex_mip_bias_ext gpu_set_tex_min_mip gpu_set_tex_min_mip_ext gpu_set_tex_max_mip gpu_set_tex_max_mip_ext gpu_set_tex_max_aniso gpu_set_tex_max_aniso_ext gpu_set_tex_mip_enable gpu_set_tex_mip_enable_ext gpu_get_blendenable gpu_get_ztestenable gpu_get_zfunc gpu_get_zwriteenable gpu_get_lightingenable gpu_get_fog gpu_get_cullmode gpu_get_blendmode gpu_get_blendmode_ext gpu_get_blendmode_ext_sepalpha gpu_get_blendmode_src gpu_get_blendmode_dest gpu_get_blendmode_srcalpha gpu_get_blendmode_destalpha gpu_get_colorwriteenable gpu_get_colourwriteenable gpu_get_alphatestenable gpu_get_alphatestref gpu_get_alphatestfunc gpu_get_texfilter gpu_get_texfilter_ext gpu_get_texrepeat gpu_get_texrepeat_ext gpu_get_tex_filter gpu_get_tex_filter_ext gpu_get_tex_repeat gpu_get_tex_repeat_ext gpu_get_tex_mip_filter gpu_get_tex_mip_filter_ext gpu_get_tex_mip_bias gpu_get_tex_mip_bias_ext gpu_get_tex_min_mip gpu_get_tex_min_mip_ext gpu_get_tex_max_mip gpu_get_tex_max_mip_ext gpu_get_tex_max_aniso gpu_get_tex_max_aniso_ext gpu_get_tex_mip_enable gpu_get_tex_mip_enable_ext gpu_push_state gpu_pop_state gpu_get_state gpu_set_state draw_light_define_ambient draw_light_define_direction draw_light_define_point draw_light_enable draw_set_lighting draw_light_get_ambient draw_light_get draw_get_lighting shop_leave_rating url_get_domain url_open url_open_ext url_open_full get_timer achievement_login achievement_logout achievement_post achievement_increment achievement_post_score achievement_available achievement_show_achievements achievement_show_leaderboards achievement_load_friends achievement_load_leaderboard achievement_send_challenge achievement_load_progress achievement_reset achievement_login_status achievement_get_pic achievement_show_challenge_notifications achievement_get_challenges achievement_event achievement_show achievement_get_info cloud_file_save cloud_string_save cloud_synchronise ads_enable ads_disable ads_setup ads_engagement_launch ads_engagement_available ads_engagement_active ads_event ads_event_preload ads_set_reward_callback ads_get_display_height ads_get_display_width ads_move ads_interstitial_available ads_interstitial_display device_get_tilt_x device_get_tilt_y device_get_tilt_z device_is_keypad_open device_mouse_check_button device_mouse_check_button_pressed device_mouse_check_button_released device_mouse_x device_mouse_y device_mouse_raw_x device_mouse_raw_y device_mouse_x_to_gui device_mouse_y_to_gui iap_activate iap_status iap_enumerate_products iap_restore_all iap_acquire iap_consume iap_product_details iap_purchase_details facebook_init facebook_login facebook_status facebook_graph_request facebook_dialog facebook_logout facebook_launch_offerwall facebook_post_message facebook_send_invite facebook_user_id facebook_accesstoken facebook_check_permission facebook_request_read_permissions facebook_request_publish_permissions gamepad_is_supported gamepad_get_device_count gamepad_is_connected gamepad_get_description gamepad_get_button_threshold gamepad_set_button_threshold gamepad_get_axis_deadzone gamepad_set_axis_deadzone gamepad_button_count gamepad_button_check gamepad_button_check_pressed gamepad_button_check_released gamepad_button_value gamepad_axis_count gamepad_axis_value gamepad_set_vibration gamepad_set_colour gamepad_set_color os_is_paused window_has_focus code_is_compiled http_get http_get_file http_post_string http_request json_encode json_decode zip_unzip load_csv base64_encode base64_decode md5_string_unicode md5_string_utf8 md5_file os_is_network_connected sha1_string_unicode sha1_string_utf8 sha1_file os_powersave_enable analytics_event analytics_event_ext win8_livetile_tile_notification win8_livetile_tile_clear win8_livetile_badge_notification win8_livetile_badge_clear win8_livetile_queue_enable win8_secondarytile_pin win8_secondarytile_badge_notification win8_secondarytile_delete win8_livetile_notification_begin win8_livetile_notification_secondary_begin win8_livetile_notification_expiry win8_livetile_notification_tag win8_livetile_notification_text_add win8_livetile_notification_image_add win8_livetile_notification_end win8_appbar_enable win8_appbar_add_element win8_appbar_remove_element win8_settingscharm_add_entry win8_settingscharm_add_html_entry win8_settingscharm_add_xaml_entry win8_settingscharm_set_xaml_property win8_settingscharm_get_xaml_property win8_settingscharm_remove_entry win8_share_image win8_share_screenshot win8_share_file win8_share_url win8_share_text win8_search_enable win8_search_disable win8_search_add_suggestions win8_device_touchscreen_available win8_license_initialize_sandbox win8_license_trial_version winphone_license_trial_version winphone_tile_title winphone_tile_count winphone_tile_back_title winphone_tile_back_content winphone_tile_back_content_wide winphone_tile_front_image winphone_tile_front_image_small winphone_tile_front_image_wide winphone_tile_back_image winphone_tile_back_image_wide winphone_tile_background_colour winphone_tile_background_color winphone_tile_icon_image winphone_tile_small_icon_image winphone_tile_wide_content winphone_tile_cycle_images winphone_tile_small_background_image physics_world_create physics_world_gravity physics_world_update_speed physics_world_update_iterations physics_world_draw_debug physics_pause_enable physics_fixture_create physics_fixture_set_kinematic physics_fixture_set_density physics_fixture_set_awake physics_fixture_set_restitution physics_fixture_set_friction physics_fixture_set_collision_group physics_fixture_set_sensor physics_fixture_set_linear_damping physics_fixture_set_angular_damping physics_fixture_set_circle_shape physics_fixture_set_box_shape physics_fixture_set_edge_shape physics_fixture_set_polygon_shape physics_fixture_set_chain_shape physics_fixture_add_point physics_fixture_bind physics_fixture_bind_ext physics_fixture_delete physics_apply_force physics_apply_impulse physics_apply_angular_impulse physics_apply_local_force physics_apply_local_impulse physics_apply_torque physics_mass_properties physics_draw_debug physics_test_overlap physics_remove_fixture physics_set_friction physics_set_density physics_set_restitution physics_get_friction physics_get_density physics_get_restitution physics_joint_distance_create physics_joint_rope_create physics_joint_revolute_create physics_joint_prismatic_create physics_joint_pulley_create physics_joint_wheel_create physics_joint_weld_create physics_joint_friction_create physics_joint_gear_create physics_joint_enable_motor physics_joint_get_value physics_joint_set_value physics_joint_delete physics_particle_create physics_particle_delete physics_particle_delete_region_circle physics_particle_delete_region_box physics_particle_delete_region_poly physics_particle_set_flags physics_particle_set_category_flags physics_particle_draw physics_particle_draw_ext physics_particle_count physics_particle_get_data physics_particle_get_data_particle physics_particle_group_begin physics_particle_group_circle physics_particle_group_box physics_particle_group_polygon physics_particle_group_add_point physics_particle_group_end physics_particle_group_join physics_particle_group_delete physics_particle_group_count physics_particle_group_get_data physics_particle_group_get_mass physics_particle_group_get_inertia physics_particle_group_get_centre_x physics_particle_group_get_centre_y physics_particle_group_get_vel_x physics_particle_group_get_vel_y physics_particle_group_get_ang_vel physics_particle_group_get_x physics_particle_group_get_y physics_particle_group_get_angle physics_particle_set_group_flags physics_particle_get_group_flags physics_particle_get_max_count physics_particle_get_radius physics_particle_get_density physics_particle_get_damping physics_particle_get_gravity_scale physics_particle_set_max_count physics_particle_set_radius physics_particle_set_density physics_particle_set_damping physics_particle_set_gravity_scale network_create_socket network_create_socket_ext network_create_server network_create_server_raw network_connect network_connect_raw network_send_packet network_send_raw network_send_broadcast network_send_udp network_send_udp_raw network_set_timeout network_set_config network_resolve network_destroy buffer_create buffer_write buffer_read buffer_seek buffer_get_surface buffer_set_surface buffer_delete buffer_exists buffer_get_type buffer_get_alignment buffer_poke buffer_peek buffer_save buffer_save_ext buffer_load buffer_load_ext buffer_load_partial buffer_copy buffer_fill buffer_get_size buffer_tell buffer_resize buffer_md5 buffer_sha1 buffer_base64_encode buffer_base64_decode buffer_base64_decode_ext buffer_sizeof buffer_get_address buffer_create_from_vertex_buffer buffer_create_from_vertex_buffer_ext buffer_copy_from_vertex_buffer buffer_async_group_begin buffer_async_group_option buffer_async_group_end buffer_load_async buffer_save_async gml_release_mode gml_pragma steam_activate_overlay steam_is_overlay_enabled steam_is_overlay_activated steam_get_persona_name steam_initialised steam_is_cloud_enabled_for_app steam_is_cloud_enabled_for_account steam_file_persisted steam_get_quota_total steam_get_quota_free steam_file_write steam_file_write_file steam_file_read steam_file_delete steam_file_exists steam_file_size steam_file_share steam_is_screenshot_requested steam_send_screenshot steam_is_user_logged_on steam_get_user_steam_id steam_user_owns_dlc steam_user_installed_dlc steam_set_achievement steam_get_achievement steam_clear_achievement steam_set_stat_int steam_set_stat_float steam_set_stat_avg_rate steam_get_stat_int steam_get_stat_float steam_get_stat_avg_rate steam_reset_all_stats steam_reset_all_stats_achievements steam_stats_ready steam_create_leaderboard steam_upload_score steam_upload_score_ext steam_download_scores_around_user steam_download_scores steam_download_friends_scores steam_upload_score_buffer steam_upload_score_buffer_ext steam_current_game_language steam_available_languages steam_activate_overlay_browser steam_activate_overlay_user steam_activate_overlay_store steam_get_user_persona_name steam_get_app_id steam_get_user_account_id steam_ugc_download steam_ugc_create_item steam_ugc_start_item_update steam_ugc_set_item_title steam_ugc_set_item_description steam_ugc_set_item_visibility steam_ugc_set_item_tags steam_ugc_set_item_content steam_ugc_set_item_preview steam_ugc_submit_item_update steam_ugc_get_item_update_progress steam_ugc_subscribe_item steam_ugc_unsubscribe_item steam_ugc_num_subscribed_items steam_ugc_get_subscribed_items steam_ugc_get_item_install_info steam_ugc_get_item_update_info steam_ugc_request_item_details steam_ugc_create_query_user steam_ugc_create_query_user_ex steam_ugc_create_query_all steam_ugc_create_query_all_ex steam_ugc_query_set_cloud_filename_filter steam_ugc_query_set_match_any_tag steam_ugc_query_set_search_text steam_ugc_query_set_ranked_by_trend_days steam_ugc_query_add_required_tag steam_ugc_query_add_excluded_tag steam_ugc_query_set_return_long_description steam_ugc_query_set_return_total_only steam_ugc_query_set_allow_cached_response steam_ugc_send_query shader_set shader_get_name shader_reset shader_current shader_is_compiled shader_get_sampler_index shader_get_uniform shader_set_uniform_i shader_set_uniform_i_array shader_set_uniform_f shader_set_uniform_f_array shader_set_uniform_matrix shader_set_uniform_matrix_array shader_enable_corner_id texture_set_stage texture_get_texel_width texture_get_texel_height shaders_are_supported vertex_format_begin vertex_format_end vertex_format_delete vertex_format_add_position vertex_format_add_position_3d vertex_format_add_colour vertex_format_add_color vertex_format_add_normal vertex_format_add_texcoord vertex_format_add_textcoord vertex_format_add_custom vertex_create_buffer vertex_create_buffer_ext vertex_delete_buffer vertex_begin vertex_end vertex_position vertex_position_3d vertex_colour vertex_color vertex_argb vertex_texcoord vertex_normal vertex_float1 vertex_float2 vertex_float3 vertex_float4 vertex_ubyte4 vertex_submit vertex_freeze vertex_get_number vertex_get_buffer_size vertex_create_buffer_from_buffer vertex_create_buffer_from_buffer_ext push_local_notification push_get_first_local_notification push_get_next_local_notification push_cancel_local_notification skeleton_animation_set skeleton_animation_get skeleton_animation_mix skeleton_animation_set_ext skeleton_animation_get_ext skeleton_animation_get_duration skeleton_animation_get_frames skeleton_animation_clear skeleton_skin_set skeleton_skin_get skeleton_attachment_set skeleton_attachment_get skeleton_attachment_create skeleton_collision_draw_set skeleton_bone_data_get skeleton_bone_data_set skeleton_bone_state_get skeleton_bone_state_set skeleton_get_minmax skeleton_get_num_bounds skeleton_get_bounds skeleton_animation_get_frame skeleton_animation_set_frame draw_skeleton draw_skeleton_time draw_skeleton_instance draw_skeleton_collision skeleton_animation_list skeleton_skin_list skeleton_slot_data layer_get_id layer_get_id_at_depth layer_get_depth layer_create layer_destroy layer_destroy_instances layer_add_instance layer_has_instance layer_set_visible layer_get_visible layer_exists layer_x layer_y layer_get_x layer_get_y layer_hspeed layer_vspeed layer_get_hspeed layer_get_vspeed layer_script_begin layer_script_end layer_shader layer_get_script_begin layer_get_script_end layer_get_shader layer_set_target_room layer_get_target_room layer_reset_target_room layer_get_all layer_get_all_elements layer_get_name layer_depth layer_get_element_layer layer_get_element_type layer_element_move layer_force_draw_depth layer_is_draw_depth_forced layer_get_forced_depth layer_background_get_id layer_background_exists layer_background_create layer_background_destroy layer_background_visible layer_background_change layer_background_sprite layer_background_htiled layer_background_vtiled layer_background_stretch layer_background_yscale layer_background_xscale layer_background_blend layer_background_alpha layer_background_index layer_background_speed layer_background_get_visible layer_background_get_sprite layer_background_get_htiled layer_background_get_vtiled layer_background_get_stretch layer_background_get_yscale layer_background_get_xscale layer_background_get_blend layer_background_get_alpha layer_background_get_index layer_background_get_speed layer_sprite_get_id layer_sprite_exists layer_sprite_create layer_sprite_destroy layer_sprite_change layer_sprite_index layer_sprite_speed layer_sprite_xscale layer_sprite_yscale layer_sprite_angle layer_sprite_blend layer_sprite_alpha layer_sprite_x layer_sprite_y layer_sprite_get_sprite layer_sprite_get_index layer_sprite_get_speed layer_sprite_get_xscale layer_sprite_get_yscale layer_sprite_get_angle layer_sprite_get_blend layer_sprite_get_alpha layer_sprite_get_x layer_sprite_get_y layer_tilemap_get_id layer_tilemap_exists layer_tilemap_create layer_tilemap_destroy tilemap_tileset tilemap_x tilemap_y tilemap_set tilemap_set_at_pixel tilemap_get_tileset tilemap_get_tile_width tilemap_get_tile_height tilemap_get_width tilemap_get_height tilemap_get_x tilemap_get_y tilemap_get tilemap_get_at_pixel tilemap_get_cell_x_at_pixel tilemap_get_cell_y_at_pixel tilemap_clear draw_tilemap draw_tile tilemap_set_global_mask tilemap_get_global_mask tilemap_set_mask tilemap_get_mask tilemap_get_frame tile_set_empty tile_set_index tile_set_flip tile_set_mirror tile_set_rotate tile_get_empty tile_get_index tile_get_flip tile_get_mirror tile_get_rotate layer_tile_exists layer_tile_create layer_tile_destroy layer_tile_change layer_tile_xscale layer_tile_yscale layer_tile_blend layer_tile_alpha layer_tile_x layer_tile_y layer_tile_region layer_tile_visible layer_tile_get_sprite layer_tile_get_xscale layer_tile_get_yscale layer_tile_get_blend layer_tile_get_alpha layer_tile_get_x layer_tile_get_y layer_tile_get_region layer_tile_get_visible layer_instance_get_instance instance_activate_layer instance_deactivate_layer camera_create camera_create_view camera_destroy camera_apply camera_get_active camera_get_default camera_set_default camera_set_view_mat camera_set_proj_mat camera_set_update_script camera_set_begin_script camera_set_end_script camera_set_view_pos camera_set_view_size camera_set_view_speed camera_set_view_border camera_set_view_angle camera_set_view_target camera_get_view_mat camera_get_proj_mat camera_get_update_script camera_get_begin_script camera_get_end_script camera_get_view_x camera_get_view_y camera_get_view_width camera_get_view_height camera_get_view_speed_x camera_get_view_speed_y camera_get_view_border_x camera_get_view_border_y camera_get_view_angle camera_get_view_target view_get_camera view_get_visible view_get_xport view_get_yport view_get_wport view_get_hport view_get_surface_id view_set_camera view_set_visible view_set_xport view_set_yport view_set_wport view_set_hport view_set_surface_id gesture_drag_time gesture_drag_distance gesture_flick_speed gesture_double_tap_time gesture_double_tap_distance gesture_pinch_distance gesture_pinch_angle_towards gesture_pinch_angle_away gesture_rotate_time gesture_rotate_angle gesture_tap_count gesture_get_drag_time gesture_get_drag_distance gesture_get_flick_speed gesture_get_double_tap_time gesture_get_double_tap_distance gesture_get_pinch_distance gesture_get_pinch_angle_towards gesture_get_pinch_angle_away gesture_get_rotate_time gesture_get_rotate_angle gesture_get_tap_count keyboard_virtual_show keyboard_virtual_hide keyboard_virtual_status keyboard_virtual_height","literal","self other all noone global local undefined pointer_invalid pointer_null path_action_stop path_action_restart path_action_continue path_action_reverse true false pi GM_build_date GM_version GM_runtime_version timezone_local timezone_utc gamespeed_fps gamespeed_microseconds ev_create ev_destroy ev_step ev_alarm ev_keyboard ev_mouse ev_collision ev_other ev_draw ev_draw_begin ev_draw_end ev_draw_pre ev_draw_post ev_keypress ev_keyrelease ev_trigger ev_left_button ev_right_button ev_middle_button ev_no_button ev_left_press ev_right_press ev_middle_press ev_left_release ev_right_release ev_middle_release ev_mouse_enter ev_mouse_leave ev_mouse_wheel_up ev_mouse_wheel_down ev_global_left_button ev_global_right_button ev_global_middle_button ev_global_left_press ev_global_right_press ev_global_middle_press ev_global_left_release ev_global_right_release ev_global_middle_release ev_joystick1_left ev_joystick1_right ev_joystick1_up ev_joystick1_down ev_joystick1_button1 ev_joystick1_button2 ev_joystick1_button3 ev_joystick1_button4 ev_joystick1_button5 ev_joystick1_button6 ev_joystick1_button7 ev_joystick1_button8 ev_joystick2_left ev_joystick2_right ev_joystick2_up ev_joystick2_down ev_joystick2_button1 ev_joystick2_button2 ev_joystick2_button3 ev_joystick2_button4 ev_joystick2_button5 ev_joystick2_button6 ev_joystick2_button7 ev_joystick2_button8 ev_outside ev_boundary ev_game_start ev_game_end ev_room_start ev_room_end ev_no_more_lives ev_animation_end ev_end_of_path ev_no_more_health ev_close_button ev_user0 ev_user1 ev_user2 ev_user3 ev_user4 ev_user5 ev_user6 ev_user7 ev_user8 ev_user9 ev_user10 ev_user11 ev_user12 ev_user13 ev_user14 ev_user15 ev_step_normal ev_step_begin ev_step_end ev_gui ev_gui_begin ev_gui_end ev_cleanup ev_gesture ev_gesture_tap ev_gesture_double_tap ev_gesture_drag_start ev_gesture_dragging ev_gesture_drag_end ev_gesture_flick ev_gesture_pinch_start ev_gesture_pinch_in ev_gesture_pinch_out ev_gesture_pinch_end ev_gesture_rotate_start ev_gesture_rotating ev_gesture_rotate_end ev_global_gesture_tap ev_global_gesture_double_tap ev_global_gesture_drag_start ev_global_gesture_dragging ev_global_gesture_drag_end ev_global_gesture_flick ev_global_gesture_pinch_start ev_global_gesture_pinch_in ev_global_gesture_pinch_out ev_global_gesture_pinch_end ev_global_gesture_rotate_start ev_global_gesture_rotating ev_global_gesture_rotate_end vk_nokey vk_anykey vk_enter vk_return vk_shift vk_control vk_alt vk_escape vk_space vk_backspace vk_tab vk_pause vk_printscreen vk_left vk_right vk_up vk_down vk_home vk_end vk_delete vk_insert vk_pageup vk_pagedown vk_f1 vk_f2 vk_f3 vk_f4 vk_f5 vk_f6 vk_f7 vk_f8 vk_f9 vk_f10 vk_f11 vk_f12 vk_numpad0 vk_numpad1 vk_numpad2 vk_numpad3 vk_numpad4 vk_numpad5 vk_numpad6 vk_numpad7 vk_numpad8 vk_numpad9 vk_divide vk_multiply vk_subtract vk_add vk_decimal vk_lshift vk_lcontrol vk_lalt vk_rshift vk_rcontrol vk_ralt mb_any mb_none mb_left mb_right mb_middle c_aqua c_black c_blue c_dkgray c_fuchsia c_gray c_green c_lime c_ltgray c_maroon c_navy c_olive c_purple c_red c_silver c_teal c_white c_yellow c_orange fa_left fa_center fa_right fa_top fa_middle fa_bottom pr_pointlist pr_linelist pr_linestrip pr_trianglelist pr_trianglestrip pr_trianglefan bm_complex bm_normal bm_add bm_max bm_subtract bm_zero bm_one bm_src_colour bm_inv_src_colour bm_src_color bm_inv_src_color bm_src_alpha bm_inv_src_alpha bm_dest_alpha bm_inv_dest_alpha bm_dest_colour bm_inv_dest_colour bm_dest_color bm_inv_dest_color bm_src_alpha_sat tf_point tf_linear tf_anisotropic mip_off mip_on mip_markedonly audio_falloff_none audio_falloff_inverse_distance audio_falloff_inverse_distance_clamped audio_falloff_linear_distance audio_falloff_linear_distance_clamped audio_falloff_exponent_distance audio_falloff_exponent_distance_clamped audio_old_system audio_new_system audio_mono audio_stereo audio_3d cr_default cr_none cr_arrow cr_cross cr_beam cr_size_nesw cr_size_ns cr_size_nwse cr_size_we cr_uparrow cr_hourglass cr_drag cr_appstart cr_handpoint cr_size_all spritespeed_framespersecond spritespeed_framespergameframe asset_object asset_unknown asset_sprite asset_sound asset_room asset_path asset_script asset_font asset_timeline asset_tiles asset_shader fa_readonly fa_hidden fa_sysfile fa_volumeid fa_directory fa_archive ds_type_map ds_type_list ds_type_stack ds_type_queue ds_type_grid ds_type_priority ef_explosion ef_ring ef_ellipse ef_firework ef_smoke ef_smokeup ef_star ef_spark ef_flare ef_cloud ef_rain ef_snow pt_shape_pixel pt_shape_disk pt_shape_square pt_shape_line pt_shape_star pt_shape_circle pt_shape_ring pt_shape_sphere pt_shape_flare pt_shape_spark pt_shape_explosion pt_shape_cloud pt_shape_smoke pt_shape_snow ps_distr_linear ps_distr_gaussian ps_distr_invgaussian ps_shape_rectangle ps_shape_ellipse ps_shape_diamond ps_shape_line ty_real ty_string dll_cdecl dll_stdcall matrix_view matrix_projection matrix_world os_win32 os_windows os_macosx os_ios os_android os_symbian os_linux os_unknown os_winphone os_tizen os_win8native os_wiiu os_3ds os_psvita os_bb10 os_ps4 os_xboxone os_ps3 os_xbox360 os_uwp os_tvos os_switch browser_not_a_browser browser_unknown browser_ie browser_firefox browser_chrome browser_safari browser_safari_mobile browser_opera browser_tizen browser_edge browser_windows_store browser_ie_mobile device_ios_unknown device_ios_iphone device_ios_iphone_retina device_ios_ipad device_ios_ipad_retina device_ios_iphone5 device_ios_iphone6 device_ios_iphone6plus device_emulator device_tablet display_landscape display_landscape_flipped display_portrait display_portrait_flipped tm_sleep tm_countvsyncs of_challenge_win of_challen ge_lose of_challenge_tie leaderboard_type_number leaderboard_type_time_mins_secs cmpfunc_never cmpfunc_less cmpfunc_equal cmpfunc_lessequal cmpfunc_greater cmpfunc_notequal cmpfunc_greaterequal cmpfunc_always cull_noculling cull_clockwise cull_counterclockwise lighttype_dir lighttype_point iap_ev_storeload iap_ev_product iap_ev_purchase iap_ev_consume iap_ev_restore iap_storeload_ok iap_storeload_failed iap_status_uninitialised iap_status_unavailable iap_status_loading iap_status_available iap_status_processing iap_status_restoring iap_failed iap_unavailable iap_available iap_purchased iap_canceled iap_refunded fb_login_default fb_login_fallback_to_webview fb_login_no_fallback_to_webview fb_login_forcing_webview fb_login_use_system_account fb_login_forcing_safari phy_joint_anchor_1_x phy_joint_anchor_1_y phy_joint_anchor_2_x phy_joint_anchor_2_y phy_joint_reaction_force_x phy_joint_reaction_force_y phy_joint_reaction_torque phy_joint_motor_speed phy_joint_angle phy_joint_motor_torque phy_joint_max_motor_torque phy_joint_translation phy_joint_speed phy_joint_motor_force phy_joint_max_motor_force phy_joint_length_1 phy_joint_length_2 phy_joint_damping_ratio phy_joint_frequency phy_joint_lower_angle_limit phy_joint_upper_angle_limit phy_joint_angle_limits phy_joint_max_length phy_joint_max_torque phy_joint_max_force phy_debug_render_aabb phy_debug_render_collision_pairs phy_debug_render_coms phy_debug_render_core_shapes phy_debug_render_joints phy_debug_render_obb phy_debug_render_shapes phy_particle_flag_water phy_particle_flag_zombie phy_particle_flag_wall phy_particle_flag_spring phy_particle_flag_elastic phy_particle_flag_viscous phy_particle_flag_powder phy_particle_flag_tensile phy_particle_flag_colourmixing phy_particle_flag_colormixing phy_particle_group_flag_solid phy_particle_group_flag_rigid phy_particle_data_flag_typeflags phy_particle_data_flag_position phy_particle_data_flag_velocity phy_particle_data_flag_colour phy_particle_data_flag_color phy_particle_data_flag_category achievement_our_info achievement_friends_info achievement_leaderboard_info achievement_achievement_info achievement_filter_all_players achievement_filter_friends_only achievement_filter_favorites_only achievement_type_achievement_challenge achievement_type_score_challenge achievement_pic_loaded achievement_show_ui achievement_show_profile achievement_show_leaderboard achievement_show_achievement achievement_show_bank achievement_show_friend_picker achievement_show_purchase_prompt network_socket_tcp network_socket_udp network_socket_bluetooth network_type_connect network_type_disconnect network_type_data network_type_non_blocking_connect network_config_connect_timeout network_config_use_non_blocking_socket network_config_enable_reliable_udp network_config_disable_reliable_udp buffer_fixed buffer_grow buffer_wrap buffer_fast buffer_vbuffer buffer_network buffer_u8 buffer_s8 buffer_u16 buffer_s16 buffer_u32 buffer_s32 buffer_u64 buffer_f16 buffer_f32 buffer_f64 buffer_bool buffer_text buffer_string buffer_surface_copy buffer_seek_start buffer_seek_relative buffer_seek_end buffer_generalerror buffer_outofspace buffer_outofbounds buffer_invalidtype text_type button_type input_type ANSI_CHARSET DEFAULT_CHARSET EASTEUROPE_CHARSET RUSSIAN_CHARSET SYMBOL_CHARSET SHIFTJIS_CHARSET HANGEUL_CHARSET GB2312_CHARSET CHINESEBIG5_CHARSET JOHAB_CHARSET HEBREW_CHARSET ARABIC_CHARSET GREEK_CHARSET TURKISH_CHARSET VIETNAMESE_CHARSET THAI_CHARSET MAC_CHARSET BALTIC_CHARSET OEM_CHARSET gp_face1 gp_face2 gp_face3 gp_face4 gp_shoulderl gp_shoulderr gp_shoulderlb gp_shoulderrb gp_select gp_start gp_stickl gp_stickr gp_padu gp_padd gp_padl gp_padr gp_axislh gp_axislv gp_axisrh gp_axisrv ov_friends ov_community ov_players ov_settings ov_gamegroup ov_achievements lb_sort_none lb_sort_ascending lb_sort_descending lb_disp_none lb_disp_numeric lb_disp_time_sec lb_disp_time_ms ugc_result_success ugc_filetype_community ugc_filetype_microtrans ugc_visibility_public ugc_visibility_friends_only ugc_visibility_private ugc_query_RankedByVote ugc_query_RankedByPublicationDate ugc_query_AcceptedForGameRankedByAcceptanceDate ugc_query_RankedByTrend ugc_query_FavoritedByFriendsRankedByPublicationDate ugc_query_CreatedByFriendsRankedByPublicationDate ugc_query_RankedByNumTimesReported ugc_query_CreatedByFollowedUsersRankedByPublicationDate ugc_query_NotYetRated ugc_query_RankedByTotalVotesAsc ugc_query_RankedByVotesUp ugc_query_RankedByTextSearch ugc_sortorder_CreationOrderDesc ugc_sortorder_CreationOrderAsc ugc_sortorder_TitleAsc ugc_sortorder_LastUpdatedDesc ugc_sortorder_SubscriptionDateDesc ugc_sortorder_VoteScoreDesc ugc_sortorder_ForModeration ugc_list_Published ugc_list_VotedOn ugc_list_VotedUp ugc_list_VotedDown ugc_list_WillVoteLater ugc_list_Favorited ugc_list_Subscribed ugc_list_UsedOrPlayed ugc_list_Followed ugc_match_Items ugc_match_Items_Mtx ugc_match_Items_ReadyToUse ugc_match_Collections ugc_match_Artwork ugc_match_Videos ugc_match_Screenshots ugc_match_AllGuides ugc_match_WebGuides ugc_match_IntegratedGuides ugc_match_UsableInGame ugc_match_ControllerBindings vertex_usage_position vertex_usage_colour vertex_usage_color vertex_usage_normal vertex_usage_texcoord vertex_usage_textcoord vertex_usage_blendweight vertex_usage_blendindices vertex_usage_psize vertex_usage_tangent vertex_usage_binormal vertex_usage_fog vertex_usage_depth vertex_usage_sample vertex_type_float1 vertex_type_float2 vertex_type_float3 vertex_type_float4 vertex_type_colour vertex_type_color vertex_type_ubyte4 layerelementtype_undefined layerelementtype_background layerelementtype_instance layerelementtype_oldtilemap layerelementtype_sprite layerelementtype_tilemap layerelementtype_particlesystem layerelementtype_tile tile_rotate tile_flip tile_mirror tile_index_mask kbv_type_default kbv_type_ascii kbv_type_url kbv_type_email kbv_type_numbers kbv_type_phone kbv_type_phone_name kbv_returnkey_default kbv_returnkey_go kbv_returnkey_google kbv_returnkey_join kbv_returnkey_next kbv_returnkey_route kbv_returnkey_search kbv_returnkey_send kbv_returnkey_yahoo kbv_returnkey_done kbv_returnkey_continue kbv_returnkey_emergency kbv_autocapitalize_none kbv_autocapitalize_words kbv_autocapitalize_sentences kbv_autocapitalize_characters","symbol","argument_relative argument argument0 argument1 argument2 argument3 argument4 argument5 argument6 argument7 argument8 argument9 argument10 argument11 argument12 argument13 argument14 argument15 argument_count x y xprevious yprevious xstart ystart hspeed vspeed direction speed friction gravity gravity_direction path_index path_position path_positionprevious path_speed path_scale path_orientation path_endaction object_index id solid persistent mask_index instance_count instance_id room_speed fps fps_real current_time current_year current_month current_day current_weekday current_hour current_minute current_second alarm timeline_index timeline_position timeline_speed timeline_running timeline_loop room room_first room_last room_width room_height room_caption room_persistent score lives health show_score show_lives show_health caption_score caption_lives caption_health event_type event_number event_object event_action application_surface gamemaker_pro gamemaker_registered gamemaker_version error_occurred error_last debug_mode keyboard_key keyboard_lastkey keyboard_lastchar keyboard_string mouse_x mouse_y mouse_button mouse_lastbutton cursor_sprite visible sprite_index sprite_width sprite_height sprite_xoffset sprite_yoffset image_number image_index image_speed depth image_xscale image_yscale image_angle image_alpha image_blend bbox_left bbox_right bbox_top bbox_bottom layer background_colour background_showcolour background_color background_showcolor view_enabled view_current view_visible view_xview view_yview view_wview view_hview view_xport view_yport view_wport view_hport view_angle view_hborder view_vborder view_hspeed view_vspeed view_object view_surface_id view_camera game_id game_display_name game_project_name game_save_id working_directory temp_directory program_directory browser_width browser_height os_type os_device os_browser os_version display_aa async_load delta_time webgl_enabled event_data iap_data phy_rotation phy_position_x phy_position_y phy_angular_velocity phy_linear_velocity_x phy_linear_velocity_y phy_speed_x phy_speed_y phy_speed phy_angular_damping phy_linear_damping phy_bullet phy_fixed_rotation phy_active phy_mass phy_inertia phy_com_x phy_com_y phy_dynamic phy_kinematic phy_sleeping phy_collision_points phy_collision_x phy_collision_y phy_col_normal_x phy_col_normal_y phy_position_xprevious phy_position_yprevious"],p,p) -return A.a(o,q,q,!1,q,A.b([$.ba(),$.b_(),$.c0(),$.aM(),$.bw()],t._),q,q,q,q,q,q,q,q,n,q,q,A.m(p,t.n),q,q,q,q,q,q,q,q)}) -s($,"bdp","aSE",()=>{var q=null,p=t.N,o=A.b(["gn","gni"],t.s),n=A.l(["keyword","if else","literal","true false current_cpu current_os current_toolchain default_toolchain host_cpu host_os root_build_dir root_gen_dir root_out_dir target_cpu target_gen_dir target_out_dir target_os target_name invoker","type","action action_foreach copy executable group shared_library source_set static_library loadable_module generated_file","built_in","assert config declare_args defined exec_script foreach get_label_info get_path_info get_target_outputs getenv import print process_file_template read_file rebase_path set_default_toolchain set_defaults set_sources_assignment_filter template tool toolchain toolchain_args propagates_configs write_file forward_variables_from target get_name_info not_needed","symbol","all_dependent_configs allow_circular_includes_from args asmflags cflags cflags_c cflags_cc cflags_objc cflags_objcc check_includes complete_static_lib configs data data_deps defines depfile deps include_dirs inputs ldflags lib_dirs libs output_extension output_name outputs public public_configs public_deps script sources testonly visibility contents output_conversion rebase data_keys walk_keys"],p,p),m=t._ -return A.a(o,q,q,q,q,A.b([A.a(q,"\\b\\d+(\\.\\d+)?",q,q,"number",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q),A.a(q,'"',q,q,"string",A.b([$.aZ(),A.a(q,q,q,q,"subst",q,q,q,q,q,q,q,q,q,q,q,q,q,2,q,q,q,q,q,q,A.b([A.a(q,"\\$[A-Za-z0-9_]+",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\${",q,q,q,A.b([A.a(q,"[a-zA-Z_]\\w*",q,q,"variable",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q)],m),q,"}",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],m)),A.a(q,":\\w+",q,q,"link",q,q,q,q,q,q,q,q,q,q,q,q,q,5,q,q,q,q,q,q,q)],m),q,'"',q,q,q,q,q,"\\n",q,q,q,q,0,q,q,q,q,q,q,q),$.ch()],m),q,q,q,q,q,q,q,q,n,q,q,A.m(p,t.n),q,q,q,q,q,q,q,q)}) -s($,"bdq","aSF",()=>{var q="break default func interface select case map struct chan else goto package switch const fallthrough if range type continue for import return var go defer bool byte complex64 complex128 float32 float64 int8 int16 int32 int64 string uint8 uint16 uint32 uint64 int uint uintptr rune",p="true false iota nil",o="append cap close complex copy imag len make new panic print println real recover delete",n=null,m=t.N,l=A.b(["golang"],t.s),k=A.l(["keyword",q,"literal",p,"built_in",o],m,m),j=t._ -return A.a(l,n,n,n,n,A.b([$.ba(),$.b_(),A.a(n,n,n,n,"string",n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,A.b([$.aM(),$.c0(),A.a(n,"`",n,n,n,n,n,"`",n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n)],j)),A.a(n,n,n,n,"number",n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,A.b([A.a(n,"(-?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)[i]",n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,1,n,n,n,n,n,n,n),$.bw()],j)),A.a(n,":=",n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n),A.a(n,n,"func",n,"function",A.b([$.jk(),A.a(n,"\\(",n,n,"params",n,n,"\\)",n,n,n,n,n,"[\"']",A.l(["keyword",q,"literal",p,"built_in",o],m,m),n,n,n,n,n,n,n,n,n,n,n)],j),n,"\\s*(\\{|$)",n,n,n,n,!0,n,n,n,n,n,n,n,n,n,n,n,n,n)],j),n,n,n,n,n,n,n,"{var q=null,p=t.N,o=A.l(["keyword","println readln print import module function local return let var while for foreach times in case when match with break continue augment augmentation each find filter reduce if then else otherwise try catch finally raise throw orIfNull DynamicObject|10 DynamicVariable struct Observable map set vector list array","literal","true false null"],p,p) -return A.a(q,q,q,q,q,A.b([$.ch(),$.aM(),$.bw(),A.a(q,"@[A-Za-z]+",q,q,"meta",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],t._),q,q,q,q,q,q,q,q,o,q,q,A.m(p,t.n),q,q,q,q,q,q,q,q)}) -s($,"bds","aSH",()=>{var q=null,p=t.N,o=A.l(["keyword","task project allprojects subprojects artifacts buildscript configurations dependencies repositories sourceSets description delete from into include exclude source classpath destinationDir includes options sourceCompatibility targetCompatibility group flatDir doLast doFirst flatten todir fromdir ant def abstract break case catch continue default do else extends final finally for if implements instanceof native new private protected public return static switch synchronized throw throws transient try volatile while strictfp package import false null super this true antlrtask checkstyle codenarc copy boolean byte char class double float int interface long short void compile runTime file fileTree abs any append asList asWritable call collect compareTo count div dump each eachByte eachFile eachLine every find findAll flatten getAt getErr getIn getOut getText grep immutable inject inspect intersect invokeMethods isCase join leftShift minus multiply newInputStream newOutputStream newPrintWriter newReader newWriter next plus pop power previous print println push putAt read readBytes readLines reverse reverseEach round size sort splitEachLine step subMap times toInteger toList tokenize upto waitForOrKill withPrintWriter withReader withStream withWriter withWriterAppend write writeLine"],p,p) -return A.a(q,q,q,!0,q,A.b([$.ba(),$.b_(),$.c0(),$.aM(),$.dB(),$.yQ()],t._),q,q,q,q,q,q,q,q,o,q,q,A.m(p,t.n),q,q,q,q,q,q,q,q)}) -s($,"bdt","aSI",()=>{var q="\\W",p=null,o=t.N,n=A.b(["gql"],t.s),m=A.l(["keyword","query mutation subscription|10 type interface union scalar fragment|10 enum on ...","literal","true false null"],o,o) -return A.a(n,p,p,p,p,A.b([$.ch(),$.aM(),$.dB(),A.a(p,"[^\\w][A-Z][a-z]",p,p,"type",p,p,q,p,p,p,p,!0,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"[^\\w][A-Z][A-Z]",p,p,"literal",p,p,q,p,p,p,p,!0,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"\\$",p,p,"variable",p,p,q,p,p,p,p,!0,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"[.]{2}",p,p,"keyword",p,p,"\\.",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"@",p,p,"meta",p,p,q,p,p,p,p,!0,p,p,p,p,p,p,p,p,p,p,p,p,p)],t._),p,p,p,p,p,p,p,"([;<']|BEGIN)",m,p,p,A.m(o,t.n),p,p,p,p,p,p,p,p)}) -s($,"bdu","aSJ",()=>{var q=null,p="@[A-Za-z]+",o="string",n=t.N,m=A.l(["literal","true false null","keyword","byte short char int long boolean float double void def as in assert trait super this abstract static volatile transient public private protected synchronized final class interface enum if else for while switch case break default continue throw throws try catch finally implements extends new import package return instanceof"],n,n),l=t._ -return A.a(q,q,q,q,q,A.b([A.a(q,"/\\*\\*",q,q,"comment",A.b([A.a(q,"\\w+@",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q),A.a(q,p,q,q,"doctag",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),$.aq(),A.a(q,"(?:TODO|FIXME|NOTE|BUG|XXX):",q,q,"doctag",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q)],l),q,"\\*/",q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q),$.ba(),$.b_(),A.a(q,'"""',q,q,o,q,q,'"""',q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"'''",q,q,o,q,q,"'''",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\$/",q,q,o,q,q,"/\\$",q,q,q,q,q,q,q,q,q,q,10,q,q,q,q,q,q,q),$.c0(),A.a(q,"\\x7e?\\/[^\\/\\n]+\\/",q,q,"regexp",A.b([$.aZ()],l),q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),$.aM(),A.a(q,"^#!/usr/bin/env",q,q,"meta",q,q,"$",q,q,q,q,q,"\n",q,q,q,q,q,q,q,q,q,q,q,q),$.ng(),A.a(q,q,"class interface trait enum",q,"class",A.b([A.a(q,q,"extends implements",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),$.dU()],l),q,"{",q,q,q,q,q,":",q,q,q,q,q,q,q,q,q,q,q,q),$.bw(),A.a(q,p,q,q,"meta",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"[^\\?]{0}[A-Za-z0-9_$]+ *:",q,q,o,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\?",q,q,q,q,q,"\\:",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"^\\s*[A-Za-z0-9_$]+:",q,q,"symbol",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q)],l),q,q,q,q,q,q,q,"#|<\\/",m,q,q,A.m(n,t.n),q,q,q,q,q,q,q,q)}) -s($,"bdv","aSK",()=>{var q=null,p="\\w+",o=A.a(q,"^!!!( (5|1\\.1|Strict|Frameset|Basic|Mobile|RDFa|XML\\b.*))?$",q,q,"meta",q,q,q,q,q,q,q,q,q,q,q,q,q,10,q,q,q,q,q,q,q),n=t._,m=A.a(q,"^\\s*(!=#|=#|-#|/).*$",q,q,"comment",A.b([$.aq(),A.a(q,"(?:TODO|FIXME|NOTE|BUG|XXX):",q,q,"doctag",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q)],n),q,"false",q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q),l=t.s,k=A.a(q,"^\\s*(-|=|!=)(?!#)",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,A.a(q,q,q,q,q,q,q,"\\n",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,A.b(["ruby"],l),q),q,q),j=A.a(q,p,q,q,"selector-tag",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),i=A.a(q,"#[\\w-]+",q,q,"selector-id",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),h=A.a(q,"\\.[\\w-]+",q,q,"selector-class",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),g=A.a(q,":\\w+",q,q,"attr",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),f=$.c0(),e=$.aM() -return A.a(q,q,q,!0,q,A.b([o,m,k,A.a(q,"^\\s*%",q,q,"tag",A.b([j,i,h,A.a(q,"{\\s*",q,q,q,A.b([A.a(q,":\\w+\\s*=>",q,q,q,A.b([g,f,e,A.a(q,p,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q)],n),q,",\\s+",q,q,!0,q,q,q,q,q,q,q,q,!0,q,q,q,q,q,q)],n),q,"\\s*}",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\(\\s*",q,q,q,A.b([A.a(q,"\\w+\\s*=",q,q,q,A.b([A.a(q,p,q,q,"attr",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q),f,e,A.a(q,p,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q)],n),q,"\\s+",q,q,!0,q,q,q,q,q,q,q,q,!0,q,q,q,q,q,q)],n),q,"\\s*\\)",q,q,q,q,!0,q,q,q,q,q,q,q,q,q,q,q,q,q)],n),q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"^\\s*[=\\x7e]\\s*",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"#{",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,A.a(q,q,q,q,q,q,q,"}",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,A.b(["ruby"],l),q),q,q)],n),q,q,q,q,q,q,q,q,q,q,q,A.m(t.N,t.n),q,q,q,q,q,q,q,q)}) -s($,"bdw","aSL",()=>{var q,p,o,n="~contains~7~contains~0",m="\".*?\"|'.*?'|\\[.*?\\]|\\w+",l="each in with if else unless bindattr action collection debugger log outlet template unbound view yield lookup",k="~contains~4~contains~0~starts",j=null,i="~contains~4~contains~0",h="(?:TODO|FIXME|NOTE|BUG|XXX):",g="\\}\\}",f="template-tag",e="\\}\\}\\}\\}",d="\\{\\{\\{\\{\\/",c="template-variable",b=t.N,a=t._,a0=A.l([n,A.a(j,m,j,j,j,j,j,j,j,j,j,j,j,j,A.l(["builtin-name",l],b,b),j,j,j,0,j,j,j,j,A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,k,j,j,j,j,j,j,j,j,j),j,j),k,A.a(j,j,j,j,j,A.b([A.a(j,m,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,0,j,j,j,j,j,j,j)],a),j,j,j,j,!0,j,j,j,j,j,j,j,0,j,j,j,j,j,j,j),i,A.a(j,m,j,j,"name",j,j,j,j,j,j,j,j,j,A.l(["builtin-name",l],b,b),j,j,j,j,j,j,j,j,A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,k,j,j,j,j,j,j,j,j,j),j,j)],b,t.n),a1=t.s,a2=A.b(["hbs","html.hbs","html.handlebars"],a1),a3=A.b(["xml"],a1),a4=A.a(j,"\\\\\\{\\{",j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,!0,j,j,j),a5=A.a(j,"\\\\\\\\(?=\\{\\{)",j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,!0,j,j,j),a6=$.aq(),a7=A.a(j,"\\{\\{!--",j,j,"comment",A.b([a6,A.a(j,h,j,j,"doctag",j,j,j,j,j,j,j,j,j,j,j,j,j,0,j,j,j,j,j,j,j)],a),j,"--\\}\\}",j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j) -a6=A.a(j,"\\{\\{!",j,j,"comment",A.b([a6,A.a(j,h,j,j,"doctag",j,j,j,j,j,j,j,j,j,j,j,j,j,0,j,j,j,j,j,j,j)],a),j,g,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j) -a1=A.a(j,"\\{\\{\\{\\{(?!\\/)",j,j,f,A.b([A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,i,j,j,j,j,j,j,j,j,j)],a),j,e,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,A.a(j,j,j,j,j,j,j,d,j,j,j,j,j,j,j,j,j,j,j,j,!0,j,j,j,A.b(["xml"],a1),j),j,j) -q=A.a(j,d,j,j,f,A.b([A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,i,j,j,j,j,j,j,j,j,j)],a),j,e,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j) -p=A.a(j,"\\{\\{[#\\/]",j,j,f,A.b([A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,i,j,j,j,j,j,j,j,j,j)],a),j,g,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j) -o=A.l(["builtin-name",l],b,b) -o=A.a(j,"\\{\\{\\{",j,j,c,A.b([A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,n,j,j,j,j,j,j,j,j,j)],a),j,"\\}\\}\\}",j,j,j,j,j,j,o,j,j,j,j,j,j,j,j,j,j,j) -b=A.l(["builtin-name",l],b,b) -return A.a(a2,j,j,!0,j,A.b([a4,a5,a7,a6,a1,q,p,o,A.a(j,"\\{\\{",j,j,c,A.b([A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,n,j,j,j,j,j,j,j,j,j)],a),j,g,j,j,j,j,j,j,b,j,j,j,j,j,j,j,j,j,j,j)],a),j,j,j,j,j,j,j,j,j,j,j,a0,j,j,j,j,j,j,a3,j)}) -s($,"bdx","aSM",()=>{var q,p,o,n,m,l,k,j,i,h="~contains~2~contains~0",g=null,f="~contains~0~contains~0~contains~4",e="$",d="(?:TODO|FIXME|NOTE|BUG|XXX):",c="~contains~0~contains~0~contains~3",b="~contains~0~contains~0~contains~2",a="~contains~0~contains~0~contains~1",a0="meta",a1="~contains~0~contains~0~contains~0",a2="~contains~0~contains~0",a3=A.a(g,"\\b[A-Z][\\w']*",g,g,"type",g,g,g,g,g,g,g,g,g,g,g,g,g,0,g,g,g,g,g,g,g),a4=$.aq(),a5=t._ -a4=A.l([h,a3,f,A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,A.b([A.a(g,"--",g,g,"comment",A.b([a4,A.a(g,d,g,g,"doctag",g,g,g,g,g,g,g,g,g,g,g,g,g,0,g,g,g,g,g,g,g)],a5),g,e,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g),A.a(g,"{-",g,g,"comment",A.b([A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,!0,g,g,g,g),a4,A.a(g,d,g,g,"doctag",g,g,g,g,g,g,g,g,g,g,g,g,g,0,g,g,g,g,g,g,g)],a5),g,"-}",g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g)],a5)),c,A.a(g,"[_a-z][\\w']*",g,g,"title",g,g,g,g,g,g,g,g,g,g,g,g,g,0,g,g,g,g,g,g,g),b,A.a(g,"\\b[A-Z][\\w]*(\\((\\.\\.|,|\\w+)\\))?",g,g,"type",g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g),a,A.a(g,"^#",g,g,a0,g,g,e,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g),a1,A.a(g,"{-#",g,g,a0,g,g,"#-}",g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g),a2,A.a(g,"\\(",g,g,g,A.b([A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,a1,g,g,g,g,g,g,g,g,g),A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,a,g,g,g,g,g,g,g,g,g),A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,b,g,g,g,g,g,g,g,g,g),A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,c,g,g,g,g,g,g,g,g,g),A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,f,g,g,g,g,g,g,g,g,g)],a5),g,"\\)",g,g,g,g,g,'"',g,g,g,g,g,g,g,g,g,g,g,g)],t.N,t.n) -a3=A.b(["hs"],t.s) -q=A.a(g,g,"module",g,g,A.b([A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,a2,g,g,g,g,g,g,g,g,g),A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,f,g,g,g,g,g,g,g,g,g)],a5),g,"where",g,g,g,g,g,"\\W\\.|;","module where",g,g,g,g,g,g,g,g,g,g,g) -p=A.a(g,"\\bimport\\b",g,g,g,A.b([A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,a2,g,g,g,g,g,g,g,g,g),A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,f,g,g,g,g,g,g,g,g,g)],a5),g,e,g,g,g,g,g,"\\W\\.|;","import qualified as hiding",g,g,g,g,g,g,g,g,g,g,g) -o=A.a(g,"^(\\s*)?(class|instance)\\b",g,g,"class",A.b([A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,h,g,g,g,g,g,g,g,g,g),A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,a2,g,g,g,g,g,g,g,g,g),A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,f,g,g,g,g,g,g,g,g,g)],a5),g,"where",g,g,g,g,g,g,"class family instance where",g,g,g,g,g,g,g,g,g,g,g) -n=A.a(g,"\\b(data|(new)?type)\\b",g,g,"class",A.b([A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,a1,g,g,g,g,g,g,g,g,g),A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,h,g,g,g,g,g,g,g,g,g),A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,a2,g,g,g,g,g,g,g,g,g),A.a(g,"{",g,g,g,A.b([A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,a1,g,g,g,g,g,g,g,g,g),A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,a,g,g,g,g,g,g,g,g,g),A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,b,g,g,g,g,g,g,g,g,g),A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,c,g,g,g,g,g,g,g,g,g),A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,f,g,g,g,g,g,g,g,g,g)],a5),g,"}",g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g),A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,f,g,g,g,g,g,g,g,g,g)],a5),g,e,g,g,g,g,g,g,"data family type newtype deriving",g,g,g,g,g,g,g,g,g,g,g) -m=A.a(g,g,"default",g,g,A.b([A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,h,g,g,g,g,g,g,g,g,g),A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,a2,g,g,g,g,g,g,g,g,g),A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,f,g,g,g,g,g,g,g,g,g)],a5),g,e,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g) -l=$.bw() -k=A.a(g,g,"infix infixl infixr",g,g,A.b([l,A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,f,g,g,g,g,g,g,g,g,g)],a5),g,e,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g) -j=A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,h,g,g,g,g,g,g,g,g,g) -i=$.aM() -return A.a(a3,g,g,g,g,A.b([q,p,o,n,m,k,A.a(g,"\\bforeign\\b",g,g,g,A.b([j,i,A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,f,g,g,g,g,g,g,g,g,g)],a5),g,e,g,g,g,g,g,g,"foreign import export ccall stdcall cplusplus jvm dotnet safe unsafe",g,g,g,g,g,g,g,g,g,g,g),A.a(g,"#!\\/usr\\/bin\\/env runhaskell",g,g,a0,g,g,e,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g),A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,a1,g,g,g,g,g,g,g,g,g),A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,a,g,g,g,g,g,g,g,g,g),i,l,A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,h,g,g,g,g,g,g,g,g,g),A.a(g,"^[_a-z][\\w']*",g,g,"title",g,g,g,g,g,g,g,g,g,g,g,g,g,0,g,g,g,g,g,g,g),A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,f,g,g,g,g,g,g,g,g,g),A.a(g,"->|<-",g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g)],a5),g,g,g,g,g,g,g,g,"let in if then else case of where do module import hiding qualified type data newtype deriving class instance as default infix infixl infixr foreign export ccall stdcall cplusplus jvm dotnet safe unsafe family forall mdo proc rec",g,g,a4,g,g,g,g,g,g,g,g)}) -s($,"bdy","aSN",()=>{var q=null,p="type",o="\\W",n="class",m="function",l=t.N,k=A.b(["hx"],t.s),j=A.l(["keyword","break case cast catch continue default do dynamic else enum extern for function here if import in inline never new override package private get set public return static super switch this throw trace try typedef untyped using var while Int Float String Bool Dynamic Void Array ","built_in","trace this","literal","true false null _"],l,l),i=t._,h=A.a(q,"'",q,q,"string",A.b([$.aZ(),A.a(q,"\\$\\{",q,q,"subst",q,q,"\\}",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\$",q,q,"subst",q,q,"\\W}",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],i),q,"'",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),g=$.aM(),f=$.ba(),e=$.b_(),d=$.bw(),c=A.a(q,"@:",q,q,"meta",q,q,"$",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),b=A.a(q,"#",q,q,"meta",q,q,"$",q,q,q,q,q,q,A.l(["meta-keyword","if else elseif end error"],l,l),q,q,q,q,q,q,q,q,q,q,q),a=A.a(q,":[ \t]*",q,q,p,q,q,"[^A-Za-z0-9_ \t\\->]",q,q,q,!0,!0,q,q,q,q,q,0,q,q,q,q,q,q,q),a0=A.a(q,":[ \t]*",q,q,p,q,q,o,q,q,q,!0,!0,q,q,q,q,q,q,q,q,q,q,q,q,q),a1=A.a(q,"new *",q,q,p,q,q,o,q,q,q,!0,!0,q,q,q,q,q,q,q,q,q,q,q,q,q),a2=$.jk() -return A.a(k,q,q,q,q,A.b([h,g,f,e,d,c,b,a,a0,a1,A.a(q,q,"enum",q,n,A.b([a2],i),q,"\\{",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,q,"abstract",q,n,A.b([A.a(q,"\\(",q,q,p,q,q,"\\)",q,q,q,!0,!0,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"from +",q,q,p,q,q,o,q,q,q,!0,!0,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"to +",q,q,p,q,q,o,q,q,q,!0,!0,q,q,q,q,q,q,q,q,q,q,q,q,q),a2],i),q,"[\\{$]",q,q,q,q,q,q,A.l(["keyword","abstract from to"],l,l),q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\b(class|interface) +",q,q,n,A.b([A.a(q,"\\b(extends|implements) +",q,q,"keyword",A.b([A.a(q,"[a-zA-Z]\\w*",q,q,p,q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q)],i),q,q,q,q,q,q,q,q,"extends implements",q,q,q,q,q,q,q,q,q,q,q),a2],i),q,"[\\{$]",q,q,q,q,!0,q,"class interface",q,q,q,q,q,q,q,q,q,q,q),A.a(q,q,m,q,m,A.b([a2],i),q,"\\(",q,q,q,q,!0,"\\S",q,q,q,q,q,q,q,q,q,q,q,q)],i),q,q,q,q,q,q,q,"<\\/",j,q,q,A.m(l,t.n),q,q,q,q,q,q,q,q)}) -s($,"bdC","aSP",()=>{var q,p,o=null,n=t.N,m=$.ba(),l=$.b_(),k=$.aM(),j=$.c0(),i=$.aZ(),h=t._,g=A.a(o,'{"',o,o,"string",A.b([i],h),o,'"}',o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o),f=A.a(o,";",o,o,"comment",A.b([$.aq(),A.a(o,"(?:TODO|FIXME|NOTE|BUG|XXX):",o,o,"doctag",o,o,o,o,o,o,o,o,o,o,o,o,o,0,o,o,o,o,o,o,o)],h),o,"$",o,o,o,o,o,o,o,o,o,o,0,o,o,o,o,o,o,o),e=A.l(["meta-keyword","addion cfunc cmd cmpopt comfunc const defcfunc deffunc define else endif enum epack func global if ifdef ifndef include modcfunc modfunc modinit modterm module pack packopt regcmd runtime undef usecom uselib"],n,n) -i=A.a(o,'"',o,o,"meta-string",A.b([i],h),o,'"',o,o,o,o,o,"\\n",o,o,o,o,o,o,o,o,o,o,o,o) -q=$.dB() -p=$.bw() -return A.a(o,o,o,!0,o,A.b([m,l,k,j,g,f,A.a(o,"#",o,o,"meta",A.b([i,q,p,m,l],h),o,"$",o,o,o,o,o,o,e,o,o,o,o,o,o,o,o,o,o,o),A.a(o,"^\\*(\\w+|@)",o,o,"symbol",o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o),q,p],h),o,o,o,o,o,o,o,o,"goto gosub return break repeat loop continue wait await dim sdim foreach dimtype dup dupptr end stop newmod delmod mref run exgoto on mcall assert logmes newlab resume yield onexit onerror onkey onclick oncmd exist delete mkdir chdir dirlist bload bsave bcopy memfile if else poke wpoke lpoke getstr chdpm memexpand memcpy memset notesel noteadd notedel noteload notesave randomize noteunsel noteget split strrep setease button chgdisp exec dialog mmload mmplay mmstop mci pset pget syscolor mes print title pos circle cls font sysfont objsize picload color palcolor palette redraw width gsel gcopy gzoom gmode bmpsave hsvcolor getkey listbox chkbox combox input mesbox buffer screen bgscr mouse objsel groll line clrobj boxf objprm objmode stick grect grotate gsquare gradf objimage objskip objenable celload celdiv celput newcom querycom delcom cnvstow comres axobj winobj sendmsg comevent comevarg sarrayconv callfunc cnvwtos comevdisp libptr system hspstat hspver stat cnt err strsize looplev sublev iparam wparam lparam refstr refdval int rnd strlen length length2 length3 length4 vartype gettime peek wpeek lpeek varptr varuse noteinfo instr abs limit getease str strmid strf getpath strtrim sin cos tan atan sqrt double absf expf logf limitf powf geteasef mousex mousey mousew hwnd hinstance hdc ginfo objinfo dirinfo sysinfo thismod __hspver__ __hsp30__ __date__ __time__ __line__ __file__ _debug __hspdef__ and or xor not screen_normal screen_palette screen_hide screen_fixedsize screen_tool screen_frame gmode_gdi gmode_mem gmode_rgb0 gmode_alpha gmode_rgb0alpha gmode_add gmode_sub gmode_pixela ginfo_mx ginfo_my ginfo_act ginfo_sel ginfo_wx1 ginfo_wy1 ginfo_wx2 ginfo_wy2 ginfo_vx ginfo_vy ginfo_sizex ginfo_sizey ginfo_winx ginfo_winy ginfo_mesx ginfo_mesy ginfo_r ginfo_g ginfo_b ginfo_paluse ginfo_dispx ginfo_dispy ginfo_cx ginfo_cy ginfo_intid ginfo_newid ginfo_sx ginfo_sy objinfo_mode objinfo_bmscr objinfo_hwnd notemax notesize dir_cur dir_exe dir_win dir_sys dir_cmdline dir_desktop dir_mydoc dir_tv font_normal font_bold font_italic font_underline font_strikeout font_antialias objmode_normal objmode_guifont objmode_usefont gsquare_grad msgothic msmincho do until while wend for next _break _continue switch case default swbreak swend ddim ldim alloc m_pi rad2deg deg2rad ease_linear ease_quad_in ease_quad_out ease_quad_inout ease_cubic_in ease_cubic_out ease_cubic_inout ease_quartic_in ease_quartic_out ease_quartic_inout ease_bounce_in ease_bounce_out ease_bounce_inout ease_shake_in ease_shake_out ease_shake_inout ease_loop","[\\w\\._]+",o,A.m(n,t.n),o,o,o,o,o,o,o,o)}) -s($,"bdF","aSQ",()=>{var q=null,p="\\}\\}",o="action collection component concat debugger each each-in else get hash if input link-to loc log mut outlet partial query-params render textarea unbound unless with yield view",n=t.N,m=A.b(["xml"],t.s),l=t._,k=A.a(q,"{{!(--)?",q,q,"comment",A.b([$.aq(),A.a(q,"(?:TODO|FIXME|NOTE|BUG|XXX):",q,q,"doctag",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q)],l),q,"(--)?}}",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),j=A.l(["builtin-name",o],n,n),i=A.l(["keyword","as","built_in",o],n,n),h=$.aM() -i=A.a(q,"\\{\\{[#\\/]",q,q,"template-tag",A.b([A.a(q,"[a-zA-Z\\.\\-]+",q,q,"name",q,q,q,q,q,q,q,q,q,j,q,q,q,q,q,q,q,q,A.a(q,q,q,q,q,A.b([h,A.a(q,"[a-zA-Z0-9_]+=",q,q,q,A.b([A.a(q,"[a-zA-Z0-9_]+",q,q,"attr",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],l),q,q,q,q,q,q,q,p,q,q,q,q,0,!0,q,q,q,q,q,q),$.dB()],l),q,q,q,q,!0,q,q,q,i,q,q,q,0,q,q,q,q,q,q,q),q,q)],l),q,p,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q) -j=A.l(["keyword","as","built_in",o],n,n) -return A.a(q,q,q,!0,q,A.b([k,i,A.a(q,"\\{\\{[a-zA-Z][a-zA-Z\\-]+",q,q,"template-variable",A.b([h],l),q,p,q,q,q,q,q,q,j,q,q,q,q,q,q,q,q,q,q,q)],l),q,q,q,q,q,q,q,q,q,q,q,A.m(n,t.n),q,q,q,q,q,q,m,q)}) -s($,"bdG","aSR",()=>{var q=null,p=t.s,o=t._ -return A.a(A.b(["https"],p),q,q,q,q,A.b([A.a(q,"^HTTP/[0-9\\.]+",q,q,q,A.b([A.a(q,"\\b\\d{3}\\b",q,q,"number",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],o),q,"$",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"^[A-Z]+ (.*?) HTTP/[0-9\\.]+$",q,q,q,A.b([A.a(q," ",q,q,"string",q,q," ",q,q,q,!0,!0,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"HTTP/[0-9\\.]+",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"[A-Z]+",q,q,"keyword",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],o),q,"$",q,q,q,q,q,q,q,q,q,q,q,!0,q,q,q,q,q,q),A.a(q,"^\\w",q,q,"attribute",q,q,": ",q,q,q,q,!0,"\\n|\\s|=",q,q,q,q,q,q,q,q,q,A.a(q,q,q,q,q,q,q,"$",q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q),q,q),A.a(q,"\\n\\n",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,A.a(q,q,q,q,q,q,q,q,q,q,!0,q,q,q,q,q,q,q,q,q,q,q,q,q,A.b([],p),q),q,q)],o),q,q,q,q,q,q,q,"\\S",q,q,q,A.m(t.N,t.n),q,q,q,q,q,q,q,q)}) -s($,"bdH","aSS",()=>{var q="~contains~1~contains~1~starts~contains~6~contains~9",p=u.R,o=null,n="~contains~1~contains~1~starts~contains~6~contains~8",m="~contains~1~contains~1~starts~contains~6~contains~7",l="~contains~1~contains~1~starts~contains~6",k="~contains~1",j="~contains~1~contains~1~starts~contains~1",i="~contains~1~contains~1~starts~contains~2",h="~contains~1~contains~1~starts~contains~3",g="~contains~1~contains~1~starts~contains~4",f="~contains~1~contains~1~starts~contains~5",e="comment",d="doctag",c="(?:TODO|FIXME|NOTE|BUG|XXX):",b="~contains~1~contains~1~starts",a=A.a(o,p,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,0,o,o,o,o,o,o,o),a0=A.a(o,"\\b([Tt]rue|[Ff]alse|nil|None)\\b",o,o,"literal",o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o),a1=A.a(o,"[-+]?\\d+(\\.\\d+)?",o,o,"number",o,o,o,o,o,o,o,o,o,o,o,o,o,0,o,o,o,o,o,o,o),a2=t._,a3=A.a(o,"[\\[\\{]",o,o,o,A.b([A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,k,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,j,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,i,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,h,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,g,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,f,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,l,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,m,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,n,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,q,o,o,o,o,o,o,o,o,o)],a2),o,"[\\]\\}]",o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o),a4=A.a(o,u.h,o,o,"symbol",o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o),a5=$.aq(),a6=t.N -a6=A.l([q,a,n,a0,m,a1,l,a3,f,a4,g,A.a(o,";",o,o,e,A.b([a5,A.a(o,c,o,o,d,o,o,o,o,o,o,o,o,o,o,o,o,o,0,o,o,o,o,o,o,o)],a2),o,"$",o,o,o,o,o,o,o,o,o,o,0,o,o,o,o,o,o,o),h,A.a(o,"\\^\\{",o,o,e,A.b([a5,A.a(o,c,o,o,d,o,o,o,o,o,o,o,o,o,o,o,o,o,0,o,o,o,o,o,o,o)],a2),o,"\\}",o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o),i,A.a(o,u.g,o,o,e,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o),j,A.a(o,'"',o,o,"string",A.b([$.aZ()],a2),o,'"',o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o),b,A.a(o,o,o,o,o,A.b([A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,k,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,j,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,i,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,h,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,g,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,f,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,l,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,m,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,n,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,q,o,o,o,o,o,o,o,o,o)],a2),o,o,o,o,!0,o,o,o,o,o,o,o,0,o,o,o,o,o,o,o),"~contains~1",A.a(o,"\\(",o,o,o,A.b([A.a(o,e,o,o,e,A.b([a5,A.a(o,c,o,o,d,o,o,o,o,o,o,o,o,o,o,o,o,o,0,o,o,o,o,o,o,o)],a2),o,"",o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o),A.a(o,p,o,o,"name",o,o,o,o,o,o,o,o,o,A.l(["builtin-name","!= % %= & &= * ** **= *= *map + += , --build-class-- --import-- -= . / // //= /= < << <<= <= = > >= >> >>= @ @= ^ ^= abs accumulate all and any ap-compose ap-dotimes ap-each ap-each-while ap-filter ap-first ap-if ap-last ap-map ap-map-when ap-pipe ap-reduce ap-reject apply as-> ascii assert assoc bin break butlast callable calling-module-name car case cdr chain chr coll? combinations compile compress cond cons cons? continue count curry cut cycle dec def default-method defclass defmacro defmacro-alias defmacro/g! defmain defmethod defmulti defn defn-alias defnc defnr defreader defseq del delattr delete-route dict-comp dir disassemble dispatch-reader-macro distinct divmod do doto drop drop-last drop-while empty? end-sequence eval eval-and-compile eval-when-compile even? every? except exec filter first flatten float? fn fnc fnr for for* format fraction genexpr gensym get getattr global globals group-by hasattr hash hex id identity if if* if-not if-python2 import in inc input instance? integer integer-char? integer? interleave interpose is is-coll is-cons is-empty is-even is-every is-float is-instance is-integer is-integer-char is-iterable is-iterator is-keyword is-neg is-none is-not is-numeric is-odd is-pos is-string is-symbol is-zero isinstance islice issubclass iter iterable? iterate iterator? keyword keyword? lambda last len let lif lif-not list* list-comp locals loop macro-error macroexpand macroexpand-1 macroexpand-all map max merge-with method-decorator min multi-decorator multicombinations name neg? next none? nonlocal not not-in not? nth numeric? oct odd? open or ord partition permutations pos? post-route postwalk pow prewalk print product profile/calls profile/cpu put-route quasiquote quote raise range read read-str recursive-replace reduce remove repeat repeatedly repr require rest round route route-with-methods rwm second seq set-comp setattr setv some sorted string string? sum switch symbol? take take-nth take-while tee try unless unquote unquote-splicing vars walk when while with with* with-decorator with-gensyms xi xor yield yield-from zero? zip zip-longest | |= \\x7e"],a6,a6),p,o,o,o,o,o,o,o,A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,b,o,o,o,o,o,o,o,o,o),o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,b,o,o,o,o,o,o,o,o,o)],a2),o,"\\)",o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o)],a6,t.n) -return A.a(A.b(["hylang"],t.s),o,o,o,o,A.b([A.a(o,"^#!",o,o,"meta",o,o,"$",o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,k,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,j,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,i,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,h,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,g,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,f,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,l,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,m,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,n,o,o,o,o,o,o,o,o,o)],a2),o,o,o,o,o,o,o,"\\S",o,o,o,a6,o,o,o,o,o,o,o,o)}) -s($,"bdJ","aST",()=>{var q=null,p=t.N,o=A.b(["i7"],t.s),n=A.l(["keyword","thing room person man woman animal container supporter backdrop door scenery open closed locked inside gender is are say understand kind of rule"],p,p),m=t._ -return A.a(o,q,q,!0,q,A.b([A.a(q,'"',q,q,"string",A.b([A.a(q,"\\[",q,q,"subst",q,q,"\\]",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],m),q,'"',q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q),A.a(q,"^(Volume|Book|Part|Chapter|Section|Table)\\b",q,q,"section",q,q,"$",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"^(Check|Carry out|Report|Instead of|To|Rule|When|Before|After)\\b",q,q,q,A.b([A.a(q,"\\(This",q,q,q,q,q,"\\)",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],m),q,":",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\[",q,q,"comment",A.b([A.a(q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,!0,q,q,q,q)],m),q,"\\]",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],m),q,q,q,q,q,q,q,q,n,q,q,A.m(p,t.n),q,q,q,q,q,q,q,q)}) -s($,"bdK","aSU",()=>{var q="~contains~2~starts~contains~1~contains~4",p=null,o="~contains~2~starts~contains~1~contains~3",n="~contains~2~starts~contains~1~contains~2",m="~contains~2~starts~contains~1~contains~1",l="~contains~0",k=t._,j=A.l([q,A.a(p,p,p,p,"number",p,p,p,p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,A.b([A.a(p,"([\\+\\-]+)?[\\d]+_[\\d_]+",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"\\b\\d+(\\.\\d+)?",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p)],k)),o,A.a(p,p,p,p,"string",A.b([$.aZ()],k),p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,A.b([A.a(p,"'''",p,p,p,p,p,"'''",p,p,p,p,p,p,p,p,p,p,10,p,p,p,p,p,p,p),A.a(p,'"""',p,p,p,p,p,'"""',p,p,p,p,p,p,p,p,p,p,10,p,p,p,p,p,p,p),A.a(p,'"',p,p,p,p,p,'"',p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"'",p,p,p,p,p,"'",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p)],k)),n,A.a(p,p,p,p,"variable",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,A.b([A.a(p,'\\$[\\w\\d"][\\w\\d_]*',p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"\\$\\{(.*?)}",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p)],k)),m,A.a(p,"\\bon|off|true|false|yes|no\\b",p,p,"literal",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),"~contains~0",A.a(p,p,p,p,"comment",A.b([$.aq(),A.a(p,"(?:TODO|FIXME|NOTE|BUG|XXX):",p,p,"doctag",p,p,p,p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p)],k),p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,A.b([A.a(p,";",p,p,p,p,p,"$",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"#",p,p,p,p,p,"$",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p)],k))],t.N,t.n) -return A.a(A.b(["toml"],t.s),p,p,!0,p,A.b([A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,l,p,p,p,p,p,p,p,p,p),A.a(p,"\\[+",p,p,"section",p,p,"\\]+",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"^[a-z0-9\\[\\]_\\.-]+(?=\\s*=\\s*)",p,p,"attr",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,A.a(p,p,p,p,p,A.b([A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,l,p,p,p,p,p,p,p,p,p),A.a(p,"\\[",p,p,p,A.b([A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,l,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,m,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,n,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,o,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,q,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,!0,p,p,p,p)],k),p,"\\]",p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,m,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,n,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,o,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,q,p,p,p,p,p,p,p,p,p)],k),p,"$",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),p,p)],k),p,p,p,p,p,p,p,"\\S",p,p,p,j,p,p,p,p,p,p,p,p)}) -s($,"bdL","aSV",()=>{var q,p,o=null,n="(?:TODO|FIXME|NOTE|BUG|XXX):",m=t.N,l=A.l(["literal",".False. .True.","keyword","kind do while private call intrinsic where elsewhere type endtype endmodule endselect endinterface end enddo endif if forall endforall only contains default return stop then public subroutine|10 function program .and. .or. .not. .le. .eq. .ge. .gt. .lt. goto save else use module select case access blank direct exist file fmt form formatted iostat name named nextrec number opened rec recl sequential status unformatted unit continue format pause cycle exit c_null_char c_alert c_backspace c_form_feed flush wait decimal round iomsg synchronous nopass non_overridable pass protected volatile abstract extends import non_intrinsic value deferred generic final enumerator class associate bind enum c_int c_short c_long c_long_long c_signed_char c_size_t c_int8_t c_int16_t c_int32_t c_int64_t c_int_least8_t c_int_least16_t c_int_least32_t c_int_least64_t c_int_fast8_t c_int_fast16_t c_int_fast32_t c_int_fast64_t c_intmax_t C_intptr_t c_float c_double c_long_double c_float_complex c_double_complex c_long_double_complex c_bool c_char c_null_ptr c_null_funptr c_new_line c_carriage_return c_horizontal_tab c_vertical_tab iso_c_binding c_loc c_funloc c_associated c_f_pointer c_ptr c_funptr iso_fortran_env character_storage_size error_unit file_storage_size input_unit iostat_end iostat_eor numeric_storage_size output_unit c_f_procpointer ieee_arithmetic ieee_support_underflow_control ieee_get_underflow_mode ieee_set_underflow_mode newunit contiguous recursive pad position action delim readwrite eor advance nml interface procedure namelist include sequence elemental pure integer real character complex logical dimension allocatable|10 parameter external implicit|10 none double precision assign intent optional pointer target in out common equivalence data begin_provider &begin_provider end_provider begin_shell end_shell begin_template end_template subst assert touch soft_touch provide no_dep free irp_if irp_else irp_endif irp_write irp_read","built_in","alog alog10 amax0 amax1 amin0 amin1 amod cabs ccos cexp clog csin csqrt dabs dacos dasin datan datan2 dcos dcosh ddim dexp dint dlog dlog10 dmax1 dmin1 dmod dnint dsign dsin dsinh dsqrt dtan dtanh float iabs idim idint idnint ifix isign max0 max1 min0 min1 sngl algama cdabs cdcos cdexp cdlog cdsin cdsqrt cqabs cqcos cqexp cqlog cqsin cqsqrt dcmplx dconjg derf derfc dfloat dgamma dimag dlgama iqint qabs qacos qasin qatan qatan2 qcmplx qconjg qcos qcosh qdim qerf qerfc qexp qgamma qimag qlgama qlog qlog10 qmax1 qmin1 qmod qnint qsign qsin qsinh qsqrt qtan qtanh abs acos aimag aint anint asin atan atan2 char cmplx conjg cos cosh exp ichar index int log log10 max min nint sign sin sinh sqrt tan tanh print write dim lge lgt lle llt mod nullify allocate deallocate adjustl adjustr all allocated any associated bit_size btest ceiling count cshift date_and_time digits dot_product eoshift epsilon exponent floor fraction huge iand ibclr ibits ibset ieor ior ishft ishftc lbound len_trim matmul maxexponent maxloc maxval merge minexponent minloc minval modulo mvbits nearest pack present product radix random_number random_seed range repeat reshape rrspacing scale scan selected_int_kind selected_real_kind set_exponent shape size spacing spread sum system_clock tiny transpose trim ubound unpack verify achar iachar transfer dble entry dprod cpu_time command_argument_count get_command get_command_argument get_environment_variable is_iostat_end ieee_arithmetic ieee_support_underflow_control ieee_get_underflow_mode ieee_set_underflow_mode is_iostat_eor move_alloc new_line selected_char_kind same_type_as extends_type_ofacosh asinh atanh bessel_j0 bessel_j1 bessel_jn bessel_y0 bessel_y1 bessel_yn erf erfc erfc_scaled gamma log_gamma hypot norm2 atomic_define atomic_ref execute_command_line leadz trailz storage_size merge_bits bge bgt ble blt dshiftl dshiftr findloc iall iany iparity image_index lcobound ucobound maskl maskr num_images parity popcnt poppar shifta shiftl shiftr this_image IRP_ALIGN irp_here"],m,m),k=$.aZ(),j=t._,i=A.a(o,"'",o,o,"string",A.b([k],j),o,"'",o,o,o,o,o,"\\n",o,o,o,o,0,o,o,o,o,o,o,o) -k=A.a(o,'"',o,o,"string",A.b([k],j),o,'"',o,o,o,o,o,"\\n",o,o,o,o,0,o,o,o,o,o,o,o) -q=A.a(o,o,"subroutine function program",o,"function",A.b([$.dU(),A.a(o,"\\(",o,o,"params",o,o,"\\)",o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o)],j),o,o,o,o,o,o,o,"[${=\\n]",o,o,o,o,o,o,o,o,o,o,o,o) -p=$.aq() -return A.a(o,o,o,!0,o,A.b([i,k,q,A.a(o,"!",o,o,"comment",A.b([p,A.a(o,n,o,o,"doctag",o,o,o,o,o,o,o,o,o,o,o,o,o,0,o,o,o,o,o,o,o)],j),o,"$",o,o,o,o,o,o,o,o,o,o,0,o,o,o,o,o,o,o),A.a(o,"begin_doc",o,o,"comment",A.b([p,A.a(o,n,o,o,"doctag",o,o,o,o,o,o,o,o,o,o,o,o,o,0,o,o,o,o,o,o,o)],j),o,"end_doc",o,o,o,o,o,o,o,o,o,o,10,o,o,o,o,o,o,o),A.a(o,u.u,o,o,"number",o,o,o,o,o,o,o,o,o,o,o,o,o,0,o,o,o,o,o,o,o)],j),o,o,o,o,o,o,o,"\\/\\*",l,o,o,A.m(m,t.n),o,o,o,o,o,o,o,o)}) -s($,"bdM","aSW",()=>{var q,p,o,n,m,l="~contains~0~contains~5~variants~0~contains~1",k=null,j="~contains~0~contains~5",i="~contains~0~contains~4",h="~contains~0~contains~3",g="~contains~0~contains~2~contains~0",f="~contains~0~contains~2",e="[A-Za-z\u0410-\u042f\u0430-\u044f\u0451\u0401_!][A-Za-z\u0410-\u042f\u0430-\u044f\u0451\u0401_0-9]*",d="and \u0438 else \u0438\u043d\u0430\u0447\u0435 endexcept endfinally endforeach \u043a\u043e\u043d\u0435\u0446\u0432\u0441\u0435 endif \u043a\u043e\u043d\u0435\u0446\u0435\u0441\u043b\u0438 endwhile \u043a\u043e\u043d\u0435\u0446\u043f\u043e\u043a\u0430 except exitfor finally foreach \u0432\u0441\u0435 if \u0435\u0441\u043b\u0438 in \u0432 not \u043d\u0435 or \u0438\u043b\u0438 try while \u043f\u043e\u043a\u0430 ",c="SYSRES_CONST_ACCES_RIGHT_TYPE_EDIT SYSRES_CONST_ACCES_RIGHT_TYPE_FULL SYSRES_CONST_ACCES_RIGHT_TYPE_VIEW SYSRES_CONST_ACCESS_MODE_REQUISITE_CODE SYSRES_CONST_ACCESS_NO_ACCESS_VIEW SYSRES_CONST_ACCESS_NO_ACCESS_VIEW_CODE SYSRES_CONST_ACCESS_RIGHTS_ADD_REQUISITE_CODE SYSRES_CONST_ACCESS_RIGHTS_ADD_REQUISITE_YES_CODE SYSRES_CONST_ACCESS_RIGHTS_CHANGE_REQUISITE_CODE SYSRES_CONST_ACCESS_RIGHTS_CHANGE_REQUISITE_YES_CODE SYSRES_CONST_ACCESS_RIGHTS_DELETE_REQUISITE_CODE SYSRES_CONST_ACCESS_RIGHTS_DELETE_REQUISITE_YES_CODE SYSRES_CONST_ACCESS_RIGHTS_EXECUTE_REQUISITE_CODE SYSRES_CONST_ACCESS_RIGHTS_EXECUTE_REQUISITE_YES_CODE SYSRES_CONST_ACCESS_RIGHTS_NO_ACCESS_REQUISITE_CODE SYSRES_CONST_ACCESS_RIGHTS_NO_ACCESS_REQUISITE_YES_CODE SYSRES_CONST_ACCESS_RIGHTS_RATIFY_REQUISITE_CODE SYSRES_CONST_ACCESS_RIGHTS_RATIFY_REQUISITE_YES_CODE SYSRES_CONST_ACCESS_RIGHTS_REQUISITE_CODE SYSRES_CONST_ACCESS_RIGHTS_VIEW SYSRES_CONST_ACCESS_RIGHTS_VIEW_CODE SYSRES_CONST_ACCESS_RIGHTS_VIEW_REQUISITE_CODE SYSRES_CONST_ACCESS_RIGHTS_VIEW_REQUISITE_YES_CODE SYSRES_CONST_ACCESS_TYPE_CHANGE SYSRES_CONST_ACCESS_TYPE_CHANGE_CODE SYSRES_CONST_ACCESS_TYPE_EXISTS SYSRES_CONST_ACCESS_TYPE_EXISTS_CODE SYSRES_CONST_ACCESS_TYPE_FULL SYSRES_CONST_ACCESS_TYPE_FULL_CODE SYSRES_CONST_ACCESS_TYPE_VIEW SYSRES_CONST_ACCESS_TYPE_VIEW_CODE SYSRES_CONST_ACTION_TYPE_ABORT SYSRES_CONST_ACTION_TYPE_ACCEPT SYSRES_CONST_ACTION_TYPE_ACCESS_RIGHTS SYSRES_CONST_ACTION_TYPE_ADD_ATTACHMENT SYSRES_CONST_ACTION_TYPE_CHANGE_CARD SYSRES_CONST_ACTION_TYPE_CHANGE_KIND SYSRES_CONST_ACTION_TYPE_CHANGE_STORAGE SYSRES_CONST_ACTION_TYPE_CONTINUE SYSRES_CONST_ACTION_TYPE_COPY SYSRES_CONST_ACTION_TYPE_CREATE SYSRES_CONST_ACTION_TYPE_CREATE_VERSION SYSRES_CONST_ACTION_TYPE_DELETE SYSRES_CONST_ACTION_TYPE_DELETE_ATTACHMENT SYSRES_CONST_ACTION_TYPE_DELETE_VERSION SYSRES_CONST_ACTION_TYPE_DISABLE_DELEGATE_ACCESS_RIGHTS SYSRES_CONST_ACTION_TYPE_ENABLE_DELEGATE_ACCESS_RIGHTS SYSRES_CONST_ACTION_TYPE_ENCRYPTION_BY_CERTIFICATE SYSRES_CONST_ACTION_TYPE_ENCRYPTION_BY_CERTIFICATE_AND_PASSWORD SYSRES_CONST_ACTION_TYPE_ENCRYPTION_BY_PASSWORD SYSRES_CONST_ACTION_TYPE_EXPORT_WITH_LOCK SYSRES_CONST_ACTION_TYPE_EXPORT_WITHOUT_LOCK SYSRES_CONST_ACTION_TYPE_IMPORT_WITH_UNLOCK SYSRES_CONST_ACTION_TYPE_IMPORT_WITHOUT_UNLOCK SYSRES_CONST_ACTION_TYPE_LIFE_CYCLE_STAGE SYSRES_CONST_ACTION_TYPE_LOCK SYSRES_CONST_ACTION_TYPE_LOCK_FOR_SERVER SYSRES_CONST_ACTION_TYPE_LOCK_MODIFY SYSRES_CONST_ACTION_TYPE_MARK_AS_READED SYSRES_CONST_ACTION_TYPE_MARK_AS_UNREADED SYSRES_CONST_ACTION_TYPE_MODIFY SYSRES_CONST_ACTION_TYPE_MODIFY_CARD SYSRES_CONST_ACTION_TYPE_MOVE_TO_ARCHIVE SYSRES_CONST_ACTION_TYPE_OFF_ENCRYPTION SYSRES_CONST_ACTION_TYPE_PASSWORD_CHANGE SYSRES_CONST_ACTION_TYPE_PERFORM SYSRES_CONST_ACTION_TYPE_RECOVER_FROM_LOCAL_COPY SYSRES_CONST_ACTION_TYPE_RESTART SYSRES_CONST_ACTION_TYPE_RESTORE_FROM_ARCHIVE SYSRES_CONST_ACTION_TYPE_REVISION SYSRES_CONST_ACTION_TYPE_SEND_BY_MAIL SYSRES_CONST_ACTION_TYPE_SIGN SYSRES_CONST_ACTION_TYPE_START SYSRES_CONST_ACTION_TYPE_UNLOCK SYSRES_CONST_ACTION_TYPE_UNLOCK_FROM_SERVER SYSRES_CONST_ACTION_TYPE_VERSION_STATE SYSRES_CONST_ACTION_TYPE_VERSION_VISIBILITY SYSRES_CONST_ACTION_TYPE_VIEW SYSRES_CONST_ACTION_TYPE_VIEW_SHADOW_COPY SYSRES_CONST_ACTION_TYPE_WORKFLOW_DESCRIPTION_MODIFY SYSRES_CONST_ACTION_TYPE_WRITE_HISTORY SYSRES_CONST_ACTIVE_VERSION_STATE_PICK_VALUE SYSRES_CONST_ADD_REFERENCE_MODE_NAME SYSRES_CONST_ADDITION_REQUISITE_CODE SYSRES_CONST_ADDITIONAL_PARAMS_REQUISITE_CODE SYSRES_CONST_ADITIONAL_JOB_END_DATE_REQUISITE_NAME SYSRES_CONST_ADITIONAL_JOB_READ_REQUISITE_NAME SYSRES_CONST_ADITIONAL_JOB_START_DATE_REQUISITE_NAME SYSRES_CONST_ADITIONAL_JOB_STATE_REQUISITE_NAME SYSRES_CONST_ADMINISTRATION_HISTORY_ADDING_USER_TO_GROUP_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_ADDING_USER_TO_GROUP_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_CREATION_COMP_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_CREATION_COMP_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_CREATION_GROUP_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_CREATION_GROUP_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_CREATION_USER_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_CREATION_USER_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_DATABASE_USER_CREATION SYSRES_CONST_ADMINISTRATION_HISTORY_DATABASE_USER_CREATION_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_DATABASE_USER_DELETION SYSRES_CONST_ADMINISTRATION_HISTORY_DATABASE_USER_DELETION_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_DELETION_COMP_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_DELETION_COMP_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_DELETION_GROUP_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_DELETION_GROUP_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_DELETION_USER_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_DELETION_USER_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_DELETION_USER_FROM_GROUP_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_DELETION_USER_FROM_GROUP_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_GRANTING_FILTERER_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_GRANTING_FILTERER_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_GRANTING_FILTERER_RESTRICTION_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_GRANTING_FILTERER_RESTRICTION_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_GRANTING_PRIVILEGE_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_GRANTING_PRIVILEGE_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_GRANTING_RIGHTS_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_GRANTING_RIGHTS_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_IS_MAIN_SERVER_CHANGED_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_IS_MAIN_SERVER_CHANGED_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_IS_PUBLIC_CHANGED_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_IS_PUBLIC_CHANGED_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_REMOVING_FILTERER_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_REMOVING_FILTERER_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_REMOVING_FILTERER_RESTRICTION_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_REMOVING_FILTERER_RESTRICTION_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_REMOVING_PRIVILEGE_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_REMOVING_PRIVILEGE_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_REMOVING_RIGHTS_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_REMOVING_RIGHTS_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_SERVER_LOGIN_CREATION SYSRES_CONST_ADMINISTRATION_HISTORY_SERVER_LOGIN_CREATION_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_SERVER_LOGIN_DELETION SYSRES_CONST_ADMINISTRATION_HISTORY_SERVER_LOGIN_DELETION_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_CATEGORY_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_CATEGORY_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_COMP_TITLE_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_COMP_TITLE_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_FULL_NAME_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_FULL_NAME_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_GROUP_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_GROUP_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_PARENT_GROUP_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_PARENT_GROUP_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_USER_AUTH_TYPE_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_USER_AUTH_TYPE_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_USER_LOGIN_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_USER_LOGIN_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_USER_STATUS_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_USER_STATUS_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_USER_PASSWORD_CHANGE SYSRES_CONST_ADMINISTRATION_HISTORY_USER_PASSWORD_CHANGE_ACTION SYSRES_CONST_ALL_ACCEPT_CONDITION_RUS SYSRES_CONST_ALL_USERS_GROUP SYSRES_CONST_ALL_USERS_GROUP_NAME SYSRES_CONST_ALL_USERS_SERVER_GROUP_NAME SYSRES_CONST_ALLOWED_ACCESS_TYPE_CODE SYSRES_CONST_ALLOWED_ACCESS_TYPE_NAME SYSRES_CONST_APP_VIEWER_TYPE_REQUISITE_CODE SYSRES_CONST_APPROVING_SIGNATURE_NAME SYSRES_CONST_APPROVING_SIGNATURE_REQUISITE_CODE SYSRES_CONST_ASSISTANT_SUBSTITUE_TYPE SYSRES_CONST_ASSISTANT_SUBSTITUE_TYPE_CODE SYSRES_CONST_ATTACH_TYPE_COMPONENT_TOKEN SYSRES_CONST_ATTACH_TYPE_DOC SYSRES_CONST_ATTACH_TYPE_EDOC SYSRES_CONST_ATTACH_TYPE_FOLDER SYSRES_CONST_ATTACH_TYPE_JOB SYSRES_CONST_ATTACH_TYPE_REFERENCE SYSRES_CONST_ATTACH_TYPE_TASK SYSRES_CONST_AUTH_ENCODED_PASSWORD SYSRES_CONST_AUTH_ENCODED_PASSWORD_CODE SYSRES_CONST_AUTH_NOVELL SYSRES_CONST_AUTH_PASSWORD SYSRES_CONST_AUTH_PASSWORD_CODE SYSRES_CONST_AUTH_WINDOWS SYSRES_CONST_AUTHENTICATING_SIGNATURE_NAME SYSRES_CONST_AUTHENTICATING_SIGNATURE_REQUISITE_CODE SYSRES_CONST_AUTO_ENUM_METHOD_FLAG SYSRES_CONST_AUTO_NUMERATION_CODE SYSRES_CONST_AUTO_STRONG_ENUM_METHOD_FLAG SYSRES_CONST_AUTOTEXT_NAME_REQUISITE_CODE SYSRES_CONST_AUTOTEXT_TEXT_REQUISITE_CODE SYSRES_CONST_AUTOTEXT_USAGE_ALL SYSRES_CONST_AUTOTEXT_USAGE_ALL_CODE SYSRES_CONST_AUTOTEXT_USAGE_SIGN SYSRES_CONST_AUTOTEXT_USAGE_SIGN_CODE SYSRES_CONST_AUTOTEXT_USAGE_WORK SYSRES_CONST_AUTOTEXT_USAGE_WORK_CODE SYSRES_CONST_AUTOTEXT_USE_ANYWHERE_CODE SYSRES_CONST_AUTOTEXT_USE_ON_SIGNING_CODE SYSRES_CONST_AUTOTEXT_USE_ON_WORK_CODE SYSRES_CONST_BEGIN_DATE_REQUISITE_CODE SYSRES_CONST_BLACK_LIFE_CYCLE_STAGE_FONT_COLOR SYSRES_CONST_BLUE_LIFE_CYCLE_STAGE_FONT_COLOR SYSRES_CONST_BTN_PART SYSRES_CONST_CALCULATED_ROLE_TYPE_CODE SYSRES_CONST_CALL_TYPE_VARIABLE_BUTTON_VALUE SYSRES_CONST_CALL_TYPE_VARIABLE_PROGRAM_VALUE SYSRES_CONST_CANCEL_MESSAGE_FUNCTION_RESULT SYSRES_CONST_CARD_PART SYSRES_CONST_CARD_REFERENCE_MODE_NAME SYSRES_CONST_CERTIFICATE_TYPE_REQUISITE_ENCRYPT_VALUE SYSRES_CONST_CERTIFICATE_TYPE_REQUISITE_SIGN_AND_ENCRYPT_VALUE SYSRES_CONST_CERTIFICATE_TYPE_REQUISITE_SIGN_VALUE SYSRES_CONST_CHECK_PARAM_VALUE_DATE_PARAM_TYPE SYSRES_CONST_CHECK_PARAM_VALUE_FLOAT_PARAM_TYPE SYSRES_CONST_CHECK_PARAM_VALUE_INTEGER_PARAM_TYPE SYSRES_CONST_CHECK_PARAM_VALUE_PICK_PARAM_TYPE SYSRES_CONST_CHECK_PARAM_VALUE_REEFRENCE_PARAM_TYPE SYSRES_CONST_CLOSED_RECORD_FLAG_VALUE_FEMININE SYSRES_CONST_CLOSED_RECORD_FLAG_VALUE_MASCULINE SYSRES_CONST_CODE_COMPONENT_TYPE_ADMIN SYSRES_CONST_CODE_COMPONENT_TYPE_DEVELOPER SYSRES_CONST_CODE_COMPONENT_TYPE_DOCS SYSRES_CONST_CODE_COMPONENT_TYPE_EDOC_CARDS SYSRES_CONST_CODE_COMPONENT_TYPE_EXTERNAL_EXECUTABLE SYSRES_CONST_CODE_COMPONENT_TYPE_OTHER SYSRES_CONST_CODE_COMPONENT_TYPE_REFERENCE SYSRES_CONST_CODE_COMPONENT_TYPE_REPORT SYSRES_CONST_CODE_COMPONENT_TYPE_SCRIPT SYSRES_CONST_CODE_COMPONENT_TYPE_URL SYSRES_CONST_CODE_REQUISITE_ACCESS SYSRES_CONST_CODE_REQUISITE_CODE SYSRES_CONST_CODE_REQUISITE_COMPONENT SYSRES_CONST_CODE_REQUISITE_DESCRIPTION SYSRES_CONST_CODE_REQUISITE_EXCLUDE_COMPONENT SYSRES_CONST_CODE_REQUISITE_RECORD SYSRES_CONST_COMMENT_REQ_CODE SYSRES_CONST_COMMON_SETTINGS_REQUISITE_CODE SYSRES_CONST_COMP_CODE_GRD SYSRES_CONST_COMPONENT_GROUP_TYPE_REQUISITE_CODE SYSRES_CONST_COMPONENT_TYPE_ADMIN_COMPONENTS SYSRES_CONST_COMPONENT_TYPE_DEVELOPER_COMPONENTS SYSRES_CONST_COMPONENT_TYPE_DOCS SYSRES_CONST_COMPONENT_TYPE_EDOC_CARDS SYSRES_CONST_COMPONENT_TYPE_EDOCS SYSRES_CONST_COMPONENT_TYPE_EXTERNAL_EXECUTABLE SYSRES_CONST_COMPONENT_TYPE_OTHER SYSRES_CONST_COMPONENT_TYPE_REFERENCE_TYPES SYSRES_CONST_COMPONENT_TYPE_REFERENCES SYSRES_CONST_COMPONENT_TYPE_REPORTS SYSRES_CONST_COMPONENT_TYPE_SCRIPTS SYSRES_CONST_COMPONENT_TYPE_URL SYSRES_CONST_COMPONENTS_REMOTE_SERVERS_VIEW_CODE SYSRES_CONST_CONDITION_BLOCK_DESCRIPTION SYSRES_CONST_CONST_FIRM_STATUS_COMMON SYSRES_CONST_CONST_FIRM_STATUS_INDIVIDUAL SYSRES_CONST_CONST_NEGATIVE_VALUE SYSRES_CONST_CONST_POSITIVE_VALUE SYSRES_CONST_CONST_SERVER_STATUS_DONT_REPLICATE SYSRES_CONST_CONST_SERVER_STATUS_REPLICATE SYSRES_CONST_CONTENTS_REQUISITE_CODE SYSRES_CONST_DATA_TYPE_BOOLEAN SYSRES_CONST_DATA_TYPE_DATE SYSRES_CONST_DATA_TYPE_FLOAT SYSRES_CONST_DATA_TYPE_INTEGER SYSRES_CONST_DATA_TYPE_PICK SYSRES_CONST_DATA_TYPE_REFERENCE SYSRES_CONST_DATA_TYPE_STRING SYSRES_CONST_DATA_TYPE_TEXT SYSRES_CONST_DATA_TYPE_VARIANT SYSRES_CONST_DATE_CLOSE_REQ_CODE SYSRES_CONST_DATE_FORMAT_DATE_ONLY_CHAR SYSRES_CONST_DATE_OPEN_REQ_CODE SYSRES_CONST_DATE_REQUISITE SYSRES_CONST_DATE_REQUISITE_CODE SYSRES_CONST_DATE_REQUISITE_NAME SYSRES_CONST_DATE_REQUISITE_TYPE SYSRES_CONST_DATE_TYPE_CHAR SYSRES_CONST_DATETIME_FORMAT_VALUE SYSRES_CONST_DEA_ACCESS_RIGHTS_ACTION_CODE SYSRES_CONST_DESCRIPTION_LOCALIZE_ID_REQUISITE_CODE SYSRES_CONST_DESCRIPTION_REQUISITE_CODE SYSRES_CONST_DET1_PART SYSRES_CONST_DET2_PART SYSRES_CONST_DET3_PART SYSRES_CONST_DET4_PART SYSRES_CONST_DET5_PART SYSRES_CONST_DET6_PART SYSRES_CONST_DETAIL_DATASET_KEY_REQUISITE_CODE SYSRES_CONST_DETAIL_PICK_REQUISITE_CODE SYSRES_CONST_DETAIL_REQ_CODE SYSRES_CONST_DO_NOT_USE_ACCESS_TYPE_CODE SYSRES_CONST_DO_NOT_USE_ACCESS_TYPE_NAME SYSRES_CONST_DO_NOT_USE_ON_VIEW_ACCESS_TYPE_CODE SYSRES_CONST_DO_NOT_USE_ON_VIEW_ACCESS_TYPE_NAME SYSRES_CONST_DOCUMENT_STORAGES_CODE SYSRES_CONST_DOCUMENT_TEMPLATES_TYPE_NAME SYSRES_CONST_DOUBLE_REQUISITE_CODE SYSRES_CONST_EDITOR_CLOSE_FILE_OBSERV_TYPE_CODE SYSRES_CONST_EDITOR_CLOSE_PROCESS_OBSERV_TYPE_CODE SYSRES_CONST_EDITOR_TYPE_REQUISITE_CODE SYSRES_CONST_EDITORS_APPLICATION_NAME_REQUISITE_CODE SYSRES_CONST_EDITORS_CREATE_SEVERAL_PROCESSES_REQUISITE_CODE SYSRES_CONST_EDITORS_EXTENSION_REQUISITE_CODE SYSRES_CONST_EDITORS_OBSERVER_BY_PROCESS_TYPE SYSRES_CONST_EDITORS_REFERENCE_CODE SYSRES_CONST_EDITORS_REPLACE_SPEC_CHARS_REQUISITE_CODE SYSRES_CONST_EDITORS_USE_PLUGINS_REQUISITE_CODE SYSRES_CONST_EDITORS_VIEW_DOCUMENT_OPENED_TO_EDIT_CODE SYSRES_CONST_EDOC_CARD_TYPE_REQUISITE_CODE SYSRES_CONST_EDOC_CARD_TYPES_LINK_REQUISITE_CODE SYSRES_CONST_EDOC_CERTIFICATE_AND_PASSWORD_ENCODE_CODE SYSRES_CONST_EDOC_CERTIFICATE_ENCODE_CODE SYSRES_CONST_EDOC_DATE_REQUISITE_CODE SYSRES_CONST_EDOC_KIND_REFERENCE_CODE SYSRES_CONST_EDOC_KINDS_BY_TEMPLATE_ACTION_CODE SYSRES_CONST_EDOC_MANAGE_ACCESS_CODE SYSRES_CONST_EDOC_NONE_ENCODE_CODE SYSRES_CONST_EDOC_NUMBER_REQUISITE_CODE SYSRES_CONST_EDOC_PASSWORD_ENCODE_CODE SYSRES_CONST_EDOC_READONLY_ACCESS_CODE SYSRES_CONST_EDOC_SHELL_LIFE_TYPE_VIEW_VALUE SYSRES_CONST_EDOC_SIZE_RESTRICTION_PRIORITY_REQUISITE_CODE SYSRES_CONST_EDOC_STORAGE_CHECK_ACCESS_RIGHTS_REQUISITE_CODE SYSRES_CONST_EDOC_STORAGE_COMPUTER_NAME_REQUISITE_CODE SYSRES_CONST_EDOC_STORAGE_DATABASE_NAME_REQUISITE_CODE SYSRES_CONST_EDOC_STORAGE_EDIT_IN_STORAGE_REQUISITE_CODE SYSRES_CONST_EDOC_STORAGE_LOCAL_PATH_REQUISITE_CODE SYSRES_CONST_EDOC_STORAGE_SHARED_SOURCE_NAME_REQUISITE_CODE SYSRES_CONST_EDOC_TEMPLATE_REQUISITE_CODE SYSRES_CONST_EDOC_TYPES_REFERENCE_CODE SYSRES_CONST_EDOC_VERSION_ACTIVE_STAGE_CODE SYSRES_CONST_EDOC_VERSION_DESIGN_STAGE_CODE SYSRES_CONST_EDOC_VERSION_OBSOLETE_STAGE_CODE SYSRES_CONST_EDOC_WRITE_ACCES_CODE SYSRES_CONST_EDOCUMENT_CARD_REQUISITES_REFERENCE_CODE_SELECTED_REQUISITE SYSRES_CONST_ENCODE_CERTIFICATE_TYPE_CODE SYSRES_CONST_END_DATE_REQUISITE_CODE SYSRES_CONST_ENUMERATION_TYPE_REQUISITE_CODE SYSRES_CONST_EXECUTE_ACCESS_RIGHTS_TYPE_CODE SYSRES_CONST_EXECUTIVE_FILE_STORAGE_TYPE SYSRES_CONST_EXIST_CONST SYSRES_CONST_EXIST_VALUE SYSRES_CONST_EXPORT_LOCK_TYPE_ASK SYSRES_CONST_EXPORT_LOCK_TYPE_WITH_LOCK SYSRES_CONST_EXPORT_LOCK_TYPE_WITHOUT_LOCK SYSRES_CONST_EXPORT_VERSION_TYPE_ASK SYSRES_CONST_EXPORT_VERSION_TYPE_LAST SYSRES_CONST_EXPORT_VERSION_TYPE_LAST_ACTIVE SYSRES_CONST_EXTENSION_REQUISITE_CODE SYSRES_CONST_FILTER_NAME_REQUISITE_CODE SYSRES_CONST_FILTER_REQUISITE_CODE SYSRES_CONST_FILTER_TYPE_COMMON_CODE SYSRES_CONST_FILTER_TYPE_COMMON_NAME SYSRES_CONST_FILTER_TYPE_USER_CODE SYSRES_CONST_FILTER_TYPE_USER_NAME SYSRES_CONST_FILTER_VALUE_REQUISITE_NAME SYSRES_CONST_FLOAT_NUMBER_FORMAT_CHAR SYSRES_CONST_FLOAT_REQUISITE_TYPE SYSRES_CONST_FOLDER_AUTHOR_VALUE SYSRES_CONST_FOLDER_KIND_ANY_OBJECTS SYSRES_CONST_FOLDER_KIND_COMPONENTS SYSRES_CONST_FOLDER_KIND_EDOCS SYSRES_CONST_FOLDER_KIND_JOBS SYSRES_CONST_FOLDER_KIND_TASKS SYSRES_CONST_FOLDER_TYPE_COMMON SYSRES_CONST_FOLDER_TYPE_COMPONENT SYSRES_CONST_FOLDER_TYPE_FAVORITES SYSRES_CONST_FOLDER_TYPE_INBOX SYSRES_CONST_FOLDER_TYPE_OUTBOX SYSRES_CONST_FOLDER_TYPE_QUICK_LAUNCH SYSRES_CONST_FOLDER_TYPE_SEARCH SYSRES_CONST_FOLDER_TYPE_SHORTCUTS SYSRES_CONST_FOLDER_TYPE_USER SYSRES_CONST_FROM_DICTIONARY_ENUM_METHOD_FLAG SYSRES_CONST_FULL_SUBSTITUTE_TYPE SYSRES_CONST_FULL_SUBSTITUTE_TYPE_CODE SYSRES_CONST_FUNCTION_CANCEL_RESULT SYSRES_CONST_FUNCTION_CATEGORY_SYSTEM SYSRES_CONST_FUNCTION_CATEGORY_USER SYSRES_CONST_FUNCTION_FAILURE_RESULT SYSRES_CONST_FUNCTION_SAVE_RESULT SYSRES_CONST_GENERATED_REQUISITE SYSRES_CONST_GREEN_LIFE_CYCLE_STAGE_FONT_COLOR SYSRES_CONST_GROUP_ACCOUNT_TYPE_VALUE_CODE SYSRES_CONST_GROUP_CATEGORY_NORMAL_CODE SYSRES_CONST_GROUP_CATEGORY_NORMAL_NAME SYSRES_CONST_GROUP_CATEGORY_SERVICE_CODE SYSRES_CONST_GROUP_CATEGORY_SERVICE_NAME SYSRES_CONST_GROUP_COMMON_CATEGORY_FIELD_VALUE SYSRES_CONST_GROUP_FULL_NAME_REQUISITE_CODE SYSRES_CONST_GROUP_NAME_REQUISITE_CODE SYSRES_CONST_GROUP_RIGHTS_T_REQUISITE_CODE SYSRES_CONST_GROUP_SERVER_CODES_REQUISITE_CODE SYSRES_CONST_GROUP_SERVER_NAME_REQUISITE_CODE SYSRES_CONST_GROUP_SERVICE_CATEGORY_FIELD_VALUE SYSRES_CONST_GROUP_USER_REQUISITE_CODE SYSRES_CONST_GROUPS_REFERENCE_CODE SYSRES_CONST_GROUPS_REQUISITE_CODE SYSRES_CONST_HIDDEN_MODE_NAME SYSRES_CONST_HIGH_LVL_REQUISITE_CODE SYSRES_CONST_HISTORY_ACTION_CREATE_CODE SYSRES_CONST_HISTORY_ACTION_DELETE_CODE SYSRES_CONST_HISTORY_ACTION_EDIT_CODE SYSRES_CONST_HOUR_CHAR SYSRES_CONST_ID_REQUISITE_CODE SYSRES_CONST_IDSPS_REQUISITE_CODE SYSRES_CONST_IMAGE_MODE_COLOR SYSRES_CONST_IMAGE_MODE_GREYSCALE SYSRES_CONST_IMAGE_MODE_MONOCHROME SYSRES_CONST_IMPORTANCE_HIGH SYSRES_CONST_IMPORTANCE_LOW SYSRES_CONST_IMPORTANCE_NORMAL SYSRES_CONST_IN_DESIGN_VERSION_STATE_PICK_VALUE SYSRES_CONST_INCOMING_WORK_RULE_TYPE_CODE SYSRES_CONST_INT_REQUISITE SYSRES_CONST_INT_REQUISITE_TYPE SYSRES_CONST_INTEGER_NUMBER_FORMAT_CHAR SYSRES_CONST_INTEGER_TYPE_CHAR SYSRES_CONST_IS_GENERATED_REQUISITE_NEGATIVE_VALUE SYSRES_CONST_IS_PUBLIC_ROLE_REQUISITE_CODE SYSRES_CONST_IS_REMOTE_USER_NEGATIVE_VALUE SYSRES_CONST_IS_REMOTE_USER_POSITIVE_VALUE SYSRES_CONST_IS_STORED_REQUISITE_NEGATIVE_VALUE SYSRES_CONST_IS_STORED_REQUISITE_STORED_VALUE SYSRES_CONST_ITALIC_LIFE_CYCLE_STAGE_DRAW_STYLE SYSRES_CONST_JOB_BLOCK_DESCRIPTION SYSRES_CONST_JOB_KIND_CONTROL_JOB SYSRES_CONST_JOB_KIND_JOB SYSRES_CONST_JOB_KIND_NOTICE SYSRES_CONST_JOB_STATE_ABORTED SYSRES_CONST_JOB_STATE_COMPLETE SYSRES_CONST_JOB_STATE_WORKING SYSRES_CONST_KIND_REQUISITE_CODE SYSRES_CONST_KIND_REQUISITE_NAME SYSRES_CONST_KINDS_CREATE_SHADOW_COPIES_REQUISITE_CODE SYSRES_CONST_KINDS_DEFAULT_EDOC_LIFE_STAGE_REQUISITE_CODE SYSRES_CONST_KINDS_EDOC_ALL_TEPLATES_ALLOWED_REQUISITE_CODE SYSRES_CONST_KINDS_EDOC_ALLOW_LIFE_CYCLE_STAGE_CHANGING_REQUISITE_CODE SYSRES_CONST_KINDS_EDOC_ALLOW_MULTIPLE_ACTIVE_VERSIONS_REQUISITE_CODE SYSRES_CONST_KINDS_EDOC_SHARE_ACCES_RIGHTS_BY_DEFAULT_CODE SYSRES_CONST_KINDS_EDOC_TEMPLATE_REQUISITE_CODE SYSRES_CONST_KINDS_EDOC_TYPE_REQUISITE_CODE SYSRES_CONST_KINDS_SIGNERS_REQUISITES_CODE SYSRES_CONST_KOD_INPUT_TYPE SYSRES_CONST_LAST_UPDATE_DATE_REQUISITE_CODE SYSRES_CONST_LIFE_CYCLE_START_STAGE_REQUISITE_CODE SYSRES_CONST_LILAC_LIFE_CYCLE_STAGE_FONT_COLOR SYSRES_CONST_LINK_OBJECT_KIND_COMPONENT SYSRES_CONST_LINK_OBJECT_KIND_DOCUMENT SYSRES_CONST_LINK_OBJECT_KIND_EDOC SYSRES_CONST_LINK_OBJECT_KIND_FOLDER SYSRES_CONST_LINK_OBJECT_KIND_JOB SYSRES_CONST_LINK_OBJECT_KIND_REFERENCE SYSRES_CONST_LINK_OBJECT_KIND_TASK SYSRES_CONST_LINK_REF_TYPE_REQUISITE_CODE SYSRES_CONST_LIST_REFERENCE_MODE_NAME SYSRES_CONST_LOCALIZATION_DICTIONARY_MAIN_VIEW_CODE SYSRES_CONST_MAIN_VIEW_CODE SYSRES_CONST_MANUAL_ENUM_METHOD_FLAG SYSRES_CONST_MASTER_COMP_TYPE_REQUISITE_CODE SYSRES_CONST_MASTER_TABLE_REC_ID_REQUISITE_CODE SYSRES_CONST_MAXIMIZED_MODE_NAME SYSRES_CONST_ME_VALUE SYSRES_CONST_MESSAGE_ATTENTION_CAPTION SYSRES_CONST_MESSAGE_CONFIRMATION_CAPTION SYSRES_CONST_MESSAGE_ERROR_CAPTION SYSRES_CONST_MESSAGE_INFORMATION_CAPTION SYSRES_CONST_MINIMIZED_MODE_NAME SYSRES_CONST_MINUTE_CHAR SYSRES_CONST_MODULE_REQUISITE_CODE SYSRES_CONST_MONITORING_BLOCK_DESCRIPTION SYSRES_CONST_MONTH_FORMAT_VALUE SYSRES_CONST_NAME_LOCALIZE_ID_REQUISITE_CODE SYSRES_CONST_NAME_REQUISITE_CODE SYSRES_CONST_NAME_SINGULAR_REQUISITE_CODE SYSRES_CONST_NAMEAN_INPUT_TYPE SYSRES_CONST_NEGATIVE_PICK_VALUE SYSRES_CONST_NEGATIVE_VALUE SYSRES_CONST_NO SYSRES_CONST_NO_PICK_VALUE SYSRES_CONST_NO_SIGNATURE_REQUISITE_CODE SYSRES_CONST_NO_VALUE SYSRES_CONST_NONE_ACCESS_RIGHTS_TYPE_CODE SYSRES_CONST_NONOPERATING_RECORD_FLAG_VALUE SYSRES_CONST_NONOPERATING_RECORD_FLAG_VALUE_MASCULINE SYSRES_CONST_NORMAL_ACCESS_RIGHTS_TYPE_CODE SYSRES_CONST_NORMAL_LIFE_CYCLE_STAGE_DRAW_STYLE SYSRES_CONST_NORMAL_MODE_NAME SYSRES_CONST_NOT_ALLOWED_ACCESS_TYPE_CODE SYSRES_CONST_NOT_ALLOWED_ACCESS_TYPE_NAME SYSRES_CONST_NOTE_REQUISITE_CODE SYSRES_CONST_NOTICE_BLOCK_DESCRIPTION SYSRES_CONST_NUM_REQUISITE SYSRES_CONST_NUM_STR_REQUISITE_CODE SYSRES_CONST_NUMERATION_AUTO_NOT_STRONG SYSRES_CONST_NUMERATION_AUTO_STRONG SYSRES_CONST_NUMERATION_FROM_DICTONARY SYSRES_CONST_NUMERATION_MANUAL SYSRES_CONST_NUMERIC_TYPE_CHAR SYSRES_CONST_NUMREQ_REQUISITE_CODE SYSRES_CONST_OBSOLETE_VERSION_STATE_PICK_VALUE SYSRES_CONST_OPERATING_RECORD_FLAG_VALUE SYSRES_CONST_OPERATING_RECORD_FLAG_VALUE_CODE SYSRES_CONST_OPERATING_RECORD_FLAG_VALUE_FEMININE SYSRES_CONST_OPERATING_RECORD_FLAG_VALUE_MASCULINE SYSRES_CONST_OPTIONAL_FORM_COMP_REQCODE_PREFIX SYSRES_CONST_ORANGE_LIFE_CYCLE_STAGE_FONT_COLOR SYSRES_CONST_ORIGINALREF_REQUISITE_CODE SYSRES_CONST_OURFIRM_REF_CODE SYSRES_CONST_OURFIRM_REQUISITE_CODE SYSRES_CONST_OURFIRM_VAR SYSRES_CONST_OUTGOING_WORK_RULE_TYPE_CODE SYSRES_CONST_PICK_NEGATIVE_RESULT SYSRES_CONST_PICK_POSITIVE_RESULT SYSRES_CONST_PICK_REQUISITE SYSRES_CONST_PICK_REQUISITE_TYPE SYSRES_CONST_PICK_TYPE_CHAR SYSRES_CONST_PLAN_STATUS_REQUISITE_CODE SYSRES_CONST_PLATFORM_VERSION_COMMENT SYSRES_CONST_PLUGINS_SETTINGS_DESCRIPTION_REQUISITE_CODE SYSRES_CONST_POSITIVE_PICK_VALUE SYSRES_CONST_POWER_TO_CREATE_ACTION_CODE SYSRES_CONST_POWER_TO_SIGN_ACTION_CODE SYSRES_CONST_PRIORITY_REQUISITE_CODE SYSRES_CONST_QUALIFIED_TASK_TYPE SYSRES_CONST_QUALIFIED_TASK_TYPE_CODE SYSRES_CONST_RECSTAT_REQUISITE_CODE SYSRES_CONST_RED_LIFE_CYCLE_STAGE_FONT_COLOR SYSRES_CONST_REF_ID_T_REF_TYPE_REQUISITE_CODE SYSRES_CONST_REF_REQUISITE SYSRES_CONST_REF_REQUISITE_TYPE SYSRES_CONST_REF_REQUISITES_REFERENCE_CODE_SELECTED_REQUISITE SYSRES_CONST_REFERENCE_RECORD_HISTORY_CREATE_ACTION_CODE SYSRES_CONST_REFERENCE_RECORD_HISTORY_DELETE_ACTION_CODE SYSRES_CONST_REFERENCE_RECORD_HISTORY_MODIFY_ACTION_CODE SYSRES_CONST_REFERENCE_TYPE_CHAR SYSRES_CONST_REFERENCE_TYPE_REQUISITE_NAME SYSRES_CONST_REFERENCES_ADD_PARAMS_REQUISITE_CODE SYSRES_CONST_REFERENCES_DISPLAY_REQUISITE_REQUISITE_CODE SYSRES_CONST_REMOTE_SERVER_STATUS_WORKING SYSRES_CONST_REMOTE_SERVER_TYPE_MAIN SYSRES_CONST_REMOTE_SERVER_TYPE_SECONDARY SYSRES_CONST_REMOTE_USER_FLAG_VALUE_CODE SYSRES_CONST_REPORT_APP_EDITOR_INTERNAL SYSRES_CONST_REPORT_BASE_REPORT_ID_REQUISITE_CODE SYSRES_CONST_REPORT_BASE_REPORT_REQUISITE_CODE SYSRES_CONST_REPORT_SCRIPT_REQUISITE_CODE SYSRES_CONST_REPORT_TEMPLATE_REQUISITE_CODE SYSRES_CONST_REPORT_VIEWER_CODE_REQUISITE_CODE SYSRES_CONST_REQ_ALLOW_COMPONENT_DEFAULT_VALUE SYSRES_CONST_REQ_ALLOW_RECORD_DEFAULT_VALUE SYSRES_CONST_REQ_ALLOW_SERVER_COMPONENT_DEFAULT_VALUE SYSRES_CONST_REQ_MODE_AVAILABLE_CODE SYSRES_CONST_REQ_MODE_EDIT_CODE SYSRES_CONST_REQ_MODE_HIDDEN_CODE SYSRES_CONST_REQ_MODE_NOT_AVAILABLE_CODE SYSRES_CONST_REQ_MODE_VIEW_CODE SYSRES_CONST_REQ_NUMBER_REQUISITE_CODE SYSRES_CONST_REQ_SECTION_VALUE SYSRES_CONST_REQ_TYPE_VALUE SYSRES_CONST_REQUISITE_FORMAT_BY_UNIT SYSRES_CONST_REQUISITE_FORMAT_DATE_FULL SYSRES_CONST_REQUISITE_FORMAT_DATE_TIME SYSRES_CONST_REQUISITE_FORMAT_LEFT SYSRES_CONST_REQUISITE_FORMAT_RIGHT SYSRES_CONST_REQUISITE_FORMAT_WITHOUT_UNIT SYSRES_CONST_REQUISITE_NUMBER_REQUISITE_CODE SYSRES_CONST_REQUISITE_SECTION_ACTIONS SYSRES_CONST_REQUISITE_SECTION_BUTTON SYSRES_CONST_REQUISITE_SECTION_BUTTONS SYSRES_CONST_REQUISITE_SECTION_CARD SYSRES_CONST_REQUISITE_SECTION_TABLE SYSRES_CONST_REQUISITE_SECTION_TABLE10 SYSRES_CONST_REQUISITE_SECTION_TABLE11 SYSRES_CONST_REQUISITE_SECTION_TABLE12 SYSRES_CONST_REQUISITE_SECTION_TABLE13 SYSRES_CONST_REQUISITE_SECTION_TABLE14 SYSRES_CONST_REQUISITE_SECTION_TABLE15 SYSRES_CONST_REQUISITE_SECTION_TABLE16 SYSRES_CONST_REQUISITE_SECTION_TABLE17 SYSRES_CONST_REQUISITE_SECTION_TABLE18 SYSRES_CONST_REQUISITE_SECTION_TABLE19 SYSRES_CONST_REQUISITE_SECTION_TABLE2 SYSRES_CONST_REQUISITE_SECTION_TABLE20 SYSRES_CONST_REQUISITE_SECTION_TABLE21 SYSRES_CONST_REQUISITE_SECTION_TABLE22 SYSRES_CONST_REQUISITE_SECTION_TABLE23 SYSRES_CONST_REQUISITE_SECTION_TABLE24 SYSRES_CONST_REQUISITE_SECTION_TABLE3 SYSRES_CONST_REQUISITE_SECTION_TABLE4 SYSRES_CONST_REQUISITE_SECTION_TABLE5 SYSRES_CONST_REQUISITE_SECTION_TABLE6 SYSRES_CONST_REQUISITE_SECTION_TABLE7 SYSRES_CONST_REQUISITE_SECTION_TABLE8 SYSRES_CONST_REQUISITE_SECTION_TABLE9 SYSRES_CONST_REQUISITES_PSEUDOREFERENCE_REQUISITE_NUMBER_REQUISITE_CODE SYSRES_CONST_RIGHT_ALIGNMENT_CODE SYSRES_CONST_ROLES_REFERENCE_CODE SYSRES_CONST_ROUTE_STEP_AFTER_RUS SYSRES_CONST_ROUTE_STEP_AND_CONDITION_RUS SYSRES_CONST_ROUTE_STEP_OR_CONDITION_RUS SYSRES_CONST_ROUTE_TYPE_COMPLEX SYSRES_CONST_ROUTE_TYPE_PARALLEL SYSRES_CONST_ROUTE_TYPE_SERIAL SYSRES_CONST_SBDATASETDESC_NEGATIVE_VALUE SYSRES_CONST_SBDATASETDESC_POSITIVE_VALUE SYSRES_CONST_SBVIEWSDESC_POSITIVE_VALUE SYSRES_CONST_SCRIPT_BLOCK_DESCRIPTION SYSRES_CONST_SEARCH_BY_TEXT_REQUISITE_CODE SYSRES_CONST_SEARCHES_COMPONENT_CONTENT SYSRES_CONST_SEARCHES_CRITERIA_ACTION_NAME SYSRES_CONST_SEARCHES_EDOC_CONTENT SYSRES_CONST_SEARCHES_FOLDER_CONTENT SYSRES_CONST_SEARCHES_JOB_CONTENT SYSRES_CONST_SEARCHES_REFERENCE_CODE SYSRES_CONST_SEARCHES_TASK_CONTENT SYSRES_CONST_SECOND_CHAR SYSRES_CONST_SECTION_REQUISITE_ACTIONS_VALUE SYSRES_CONST_SECTION_REQUISITE_CARD_VALUE SYSRES_CONST_SECTION_REQUISITE_CODE SYSRES_CONST_SECTION_REQUISITE_DETAIL_1_VALUE SYSRES_CONST_SECTION_REQUISITE_DETAIL_2_VALUE SYSRES_CONST_SECTION_REQUISITE_DETAIL_3_VALUE SYSRES_CONST_SECTION_REQUISITE_DETAIL_4_VALUE SYSRES_CONST_SECTION_REQUISITE_DETAIL_5_VALUE SYSRES_CONST_SECTION_REQUISITE_DETAIL_6_VALUE SYSRES_CONST_SELECT_REFERENCE_MODE_NAME SYSRES_CONST_SELECT_TYPE_SELECTABLE SYSRES_CONST_SELECT_TYPE_SELECTABLE_ONLY_CHILD SYSRES_CONST_SELECT_TYPE_SELECTABLE_WITH_CHILD SYSRES_CONST_SELECT_TYPE_UNSLECTABLE SYSRES_CONST_SERVER_TYPE_MAIN SYSRES_CONST_SERVICE_USER_CATEGORY_FIELD_VALUE SYSRES_CONST_SETTINGS_USER_REQUISITE_CODE SYSRES_CONST_SIGNATURE_AND_ENCODE_CERTIFICATE_TYPE_CODE SYSRES_CONST_SIGNATURE_CERTIFICATE_TYPE_CODE SYSRES_CONST_SINGULAR_TITLE_REQUISITE_CODE SYSRES_CONST_SQL_SERVER_AUTHENTIFICATION_FLAG_VALUE_CODE SYSRES_CONST_SQL_SERVER_ENCODE_AUTHENTIFICATION_FLAG_VALUE_CODE SYSRES_CONST_STANDART_ROUTE_REFERENCE_CODE SYSRES_CONST_STANDART_ROUTE_REFERENCE_COMMENT_REQUISITE_CODE SYSRES_CONST_STANDART_ROUTES_GROUPS_REFERENCE_CODE SYSRES_CONST_STATE_REQ_NAME SYSRES_CONST_STATE_REQUISITE_ACTIVE_VALUE SYSRES_CONST_STATE_REQUISITE_CLOSED_VALUE SYSRES_CONST_STATE_REQUISITE_CODE SYSRES_CONST_STATIC_ROLE_TYPE_CODE SYSRES_CONST_STATUS_PLAN_DEFAULT_VALUE SYSRES_CONST_STATUS_VALUE_AUTOCLEANING SYSRES_CONST_STATUS_VALUE_BLUE_SQUARE SYSRES_CONST_STATUS_VALUE_COMPLETE SYSRES_CONST_STATUS_VALUE_GREEN_SQUARE SYSRES_CONST_STATUS_VALUE_ORANGE_SQUARE SYSRES_CONST_STATUS_VALUE_PURPLE_SQUARE SYSRES_CONST_STATUS_VALUE_RED_SQUARE SYSRES_CONST_STATUS_VALUE_SUSPEND SYSRES_CONST_STATUS_VALUE_YELLOW_SQUARE SYSRES_CONST_STDROUTE_SHOW_TO_USERS_REQUISITE_CODE SYSRES_CONST_STORAGE_TYPE_FILE SYSRES_CONST_STORAGE_TYPE_SQL_SERVER SYSRES_CONST_STR_REQUISITE SYSRES_CONST_STRIKEOUT_LIFE_CYCLE_STAGE_DRAW_STYLE SYSRES_CONST_STRING_FORMAT_LEFT_ALIGN_CHAR SYSRES_CONST_STRING_FORMAT_RIGHT_ALIGN_CHAR SYSRES_CONST_STRING_REQUISITE_CODE SYSRES_CONST_STRING_REQUISITE_TYPE SYSRES_CONST_STRING_TYPE_CHAR SYSRES_CONST_SUBSTITUTES_PSEUDOREFERENCE_CODE SYSRES_CONST_SUBTASK_BLOCK_DESCRIPTION SYSRES_CONST_SYSTEM_SETTING_CURRENT_USER_PARAM_VALUE SYSRES_CONST_SYSTEM_SETTING_EMPTY_VALUE_PARAM_VALUE SYSRES_CONST_SYSTEM_VERSION_COMMENT SYSRES_CONST_TASK_ACCESS_TYPE_ALL SYSRES_CONST_TASK_ACCESS_TYPE_ALL_MEMBERS SYSRES_CONST_TASK_ACCESS_TYPE_MANUAL SYSRES_CONST_TASK_ENCODE_TYPE_CERTIFICATION SYSRES_CONST_TASK_ENCODE_TYPE_CERTIFICATION_AND_PASSWORD SYSRES_CONST_TASK_ENCODE_TYPE_NONE SYSRES_CONST_TASK_ENCODE_TYPE_PASSWORD SYSRES_CONST_TASK_ROUTE_ALL_CONDITION SYSRES_CONST_TASK_ROUTE_AND_CONDITION SYSRES_CONST_TASK_ROUTE_OR_CONDITION SYSRES_CONST_TASK_STATE_ABORTED SYSRES_CONST_TASK_STATE_COMPLETE SYSRES_CONST_TASK_STATE_CONTINUED SYSRES_CONST_TASK_STATE_CONTROL SYSRES_CONST_TASK_STATE_INIT SYSRES_CONST_TASK_STATE_WORKING SYSRES_CONST_TASK_TITLE SYSRES_CONST_TASK_TYPES_GROUPS_REFERENCE_CODE SYSRES_CONST_TASK_TYPES_REFERENCE_CODE SYSRES_CONST_TEMPLATES_REFERENCE_CODE SYSRES_CONST_TEST_DATE_REQUISITE_NAME SYSRES_CONST_TEST_DEV_DATABASE_NAME SYSRES_CONST_TEST_DEV_SYSTEM_CODE SYSRES_CONST_TEST_EDMS_DATABASE_NAME SYSRES_CONST_TEST_EDMS_MAIN_CODE SYSRES_CONST_TEST_EDMS_MAIN_DB_NAME SYSRES_CONST_TEST_EDMS_SECOND_CODE SYSRES_CONST_TEST_EDMS_SECOND_DB_NAME SYSRES_CONST_TEST_EDMS_SYSTEM_CODE SYSRES_CONST_TEST_NUMERIC_REQUISITE_NAME SYSRES_CONST_TEXT_REQUISITE SYSRES_CONST_TEXT_REQUISITE_CODE SYSRES_CONST_TEXT_REQUISITE_TYPE SYSRES_CONST_TEXT_TYPE_CHAR SYSRES_CONST_TYPE_CODE_REQUISITE_CODE SYSRES_CONST_TYPE_REQUISITE_CODE SYSRES_CONST_UNDEFINED_LIFE_CYCLE_STAGE_FONT_COLOR SYSRES_CONST_UNITS_SECTION_ID_REQUISITE_CODE SYSRES_CONST_UNITS_SECTION_REQUISITE_CODE SYSRES_CONST_UNOPERATING_RECORD_FLAG_VALUE_CODE SYSRES_CONST_UNSTORED_DATA_REQUISITE_CODE SYSRES_CONST_UNSTORED_DATA_REQUISITE_NAME SYSRES_CONST_USE_ACCESS_TYPE_CODE SYSRES_CONST_USE_ACCESS_TYPE_NAME SYSRES_CONST_USER_ACCOUNT_TYPE_VALUE_CODE SYSRES_CONST_USER_ADDITIONAL_INFORMATION_REQUISITE_CODE SYSRES_CONST_USER_AND_GROUP_ID_FROM_PSEUDOREFERENCE_REQUISITE_CODE SYSRES_CONST_USER_CATEGORY_NORMAL SYSRES_CONST_USER_CERTIFICATE_REQUISITE_CODE SYSRES_CONST_USER_CERTIFICATE_STATE_REQUISITE_CODE SYSRES_CONST_USER_CERTIFICATE_SUBJECT_NAME_REQUISITE_CODE SYSRES_CONST_USER_CERTIFICATE_THUMBPRINT_REQUISITE_CODE SYSRES_CONST_USER_COMMON_CATEGORY SYSRES_CONST_USER_COMMON_CATEGORY_CODE SYSRES_CONST_USER_FULL_NAME_REQUISITE_CODE SYSRES_CONST_USER_GROUP_TYPE_REQUISITE_CODE SYSRES_CONST_USER_LOGIN_REQUISITE_CODE SYSRES_CONST_USER_REMOTE_CONTROLLER_REQUISITE_CODE SYSRES_CONST_USER_REMOTE_SYSTEM_REQUISITE_CODE SYSRES_CONST_USER_RIGHTS_T_REQUISITE_CODE SYSRES_CONST_USER_SERVER_NAME_REQUISITE_CODE SYSRES_CONST_USER_SERVICE_CATEGORY SYSRES_CONST_USER_SERVICE_CATEGORY_CODE SYSRES_CONST_USER_STATUS_ADMINISTRATOR_CODE SYSRES_CONST_USER_STATUS_ADMINISTRATOR_NAME SYSRES_CONST_USER_STATUS_DEVELOPER_CODE SYSRES_CONST_USER_STATUS_DEVELOPER_NAME SYSRES_CONST_USER_STATUS_DISABLED_CODE SYSRES_CONST_USER_STATUS_DISABLED_NAME SYSRES_CONST_USER_STATUS_SYSTEM_DEVELOPER_CODE SYSRES_CONST_USER_STATUS_USER_CODE SYSRES_CONST_USER_STATUS_USER_NAME SYSRES_CONST_USER_STATUS_USER_NAME_DEPRECATED SYSRES_CONST_USER_TYPE_FIELD_VALUE_USER SYSRES_CONST_USER_TYPE_REQUISITE_CODE SYSRES_CONST_USERS_CONTROLLER_REQUISITE_CODE SYSRES_CONST_USERS_IS_MAIN_SERVER_REQUISITE_CODE SYSRES_CONST_USERS_REFERENCE_CODE SYSRES_CONST_USERS_REGISTRATION_CERTIFICATES_ACTION_NAME SYSRES_CONST_USERS_REQUISITE_CODE SYSRES_CONST_USERS_SYSTEM_REQUISITE_CODE SYSRES_CONST_USERS_USER_ACCESS_RIGHTS_TYPR_REQUISITE_CODE SYSRES_CONST_USERS_USER_AUTHENTICATION_REQUISITE_CODE SYSRES_CONST_USERS_USER_COMPONENT_REQUISITE_CODE SYSRES_CONST_USERS_USER_GROUP_REQUISITE_CODE SYSRES_CONST_USERS_VIEW_CERTIFICATES_ACTION_NAME SYSRES_CONST_VIEW_DEFAULT_CODE SYSRES_CONST_VIEW_DEFAULT_NAME SYSRES_CONST_VIEWER_REQUISITE_CODE SYSRES_CONST_WAITING_BLOCK_DESCRIPTION SYSRES_CONST_WIZARD_FORM_LABEL_TEST_STRING SYSRES_CONST_WIZARD_QUERY_PARAM_HEIGHT_ETALON_STRING SYSRES_CONST_WIZARD_REFERENCE_COMMENT_REQUISITE_CODE SYSRES_CONST_WORK_RULES_DESCRIPTION_REQUISITE_CODE SYSRES_CONST_WORK_TIME_CALENDAR_REFERENCE_CODE SYSRES_CONST_WORK_WORKFLOW_HARD_ROUTE_TYPE_VALUE SYSRES_CONST_WORK_WORKFLOW_HARD_ROUTE_TYPE_VALUE_CODE SYSRES_CONST_WORK_WORKFLOW_HARD_ROUTE_TYPE_VALUE_CODE_RUS SYSRES_CONST_WORK_WORKFLOW_SOFT_ROUTE_TYPE_VALUE_CODE_RUS SYSRES_CONST_WORKFLOW_ROUTE_TYPR_HARD SYSRES_CONST_WORKFLOW_ROUTE_TYPR_SOFT SYSRES_CONST_XML_ENCODING SYSRES_CONST_XREC_STAT_REQUISITE_CODE SYSRES_CONST_XRECID_FIELD_NAME SYSRES_CONST_YES SYSRES_CONST_YES_NO_2_REQUISITE_CODE SYSRES_CONST_YES_NO_REQUISITE_CODE SYSRES_CONST_YES_NO_T_REF_TYPE_REQUISITE_CODE SYSRES_CONST_YES_PICK_VALUE SYSRES_CONST_YES_VALUE CR FALSE nil NO_VALUE NULL TAB TRUE YES_VALUE ADMINISTRATORS_GROUP_NAME CUSTOMIZERS_GROUP_NAME DEVELOPERS_GROUP_NAME SERVICE_USERS_GROUP_NAME DECISION_BLOCK_FIRST_OPERAND_PROPERTY DECISION_BLOCK_NAME_PROPERTY DECISION_BLOCK_OPERATION_PROPERTY DECISION_BLOCK_RESULT_TYPE_PROPERTY DECISION_BLOCK_SECOND_OPERAND_PROPERTY ANY_FILE_EXTENTION COMPRESSED_DOCUMENT_EXTENSION EXTENDED_DOCUMENT_EXTENSION SHORT_COMPRESSED_DOCUMENT_EXTENSION SHORT_EXTENDED_DOCUMENT_EXTENSION JOB_BLOCK_ABORT_DEADLINE_PROPERTY JOB_BLOCK_AFTER_FINISH_EVENT JOB_BLOCK_AFTER_QUERY_PARAMETERS_EVENT JOB_BLOCK_ATTACHMENT_PROPERTY JOB_BLOCK_ATTACHMENTS_RIGHTS_GROUP_PROPERTY JOB_BLOCK_ATTACHMENTS_RIGHTS_TYPE_PROPERTY JOB_BLOCK_BEFORE_QUERY_PARAMETERS_EVENT JOB_BLOCK_BEFORE_START_EVENT JOB_BLOCK_CREATED_JOBS_PROPERTY JOB_BLOCK_DEADLINE_PROPERTY JOB_BLOCK_EXECUTION_RESULTS_PROPERTY JOB_BLOCK_IS_PARALLEL_PROPERTY JOB_BLOCK_IS_RELATIVE_ABORT_DEADLINE_PROPERTY JOB_BLOCK_IS_RELATIVE_DEADLINE_PROPERTY JOB_BLOCK_JOB_TEXT_PROPERTY JOB_BLOCK_NAME_PROPERTY JOB_BLOCK_NEED_SIGN_ON_PERFORM_PROPERTY JOB_BLOCK_PERFORMER_PROPERTY JOB_BLOCK_RELATIVE_ABORT_DEADLINE_TYPE_PROPERTY JOB_BLOCK_RELATIVE_DEADLINE_TYPE_PROPERTY JOB_BLOCK_SUBJECT_PROPERTY ENGLISH_LANGUAGE_CODE RUSSIAN_LANGUAGE_CODE smHidden smMaximized smMinimized smNormal wmNo wmYes COMPONENT_TOKEN_LINK_KIND DOCUMENT_LINK_KIND EDOCUMENT_LINK_KIND FOLDER_LINK_KIND JOB_LINK_KIND REFERENCE_LINK_KIND TASK_LINK_KIND COMPONENT_TOKEN_LOCK_TYPE EDOCUMENT_VERSION_LOCK_TYPE MONITOR_BLOCK_AFTER_FINISH_EVENT MONITOR_BLOCK_BEFORE_START_EVENT MONITOR_BLOCK_DEADLINE_PROPERTY MONITOR_BLOCK_INTERVAL_PROPERTY MONITOR_BLOCK_INTERVAL_TYPE_PROPERTY MONITOR_BLOCK_IS_RELATIVE_DEADLINE_PROPERTY MONITOR_BLOCK_NAME_PROPERTY MONITOR_BLOCK_RELATIVE_DEADLINE_TYPE_PROPERTY MONITOR_BLOCK_SEARCH_SCRIPT_PROPERTY NOTICE_BLOCK_AFTER_FINISH_EVENT NOTICE_BLOCK_ATTACHMENT_PROPERTY NOTICE_BLOCK_ATTACHMENTS_RIGHTS_GROUP_PROPERTY NOTICE_BLOCK_ATTACHMENTS_RIGHTS_TYPE_PROPERTY NOTICE_BLOCK_BEFORE_START_EVENT NOTICE_BLOCK_CREATED_NOTICES_PROPERTY NOTICE_BLOCK_DEADLINE_PROPERTY NOTICE_BLOCK_IS_RELATIVE_DEADLINE_PROPERTY NOTICE_BLOCK_NAME_PROPERTY NOTICE_BLOCK_NOTICE_TEXT_PROPERTY NOTICE_BLOCK_PERFORMER_PROPERTY NOTICE_BLOCK_RELATIVE_DEADLINE_TYPE_PROPERTY NOTICE_BLOCK_SUBJECT_PROPERTY dseAfterCancel dseAfterClose dseAfterDelete dseAfterDeleteOutOfTransaction dseAfterInsert dseAfterOpen dseAfterScroll dseAfterUpdate dseAfterUpdateOutOfTransaction dseBeforeCancel dseBeforeClose dseBeforeDelete dseBeforeDetailUpdate dseBeforeInsert dseBeforeOpen dseBeforeUpdate dseOnAnyRequisiteChange dseOnCloseRecord dseOnDeleteError dseOnOpenRecord dseOnPrepareUpdate dseOnUpdateError dseOnUpdateRatifiedRecord dseOnValidDelete dseOnValidUpdate reOnChange reOnChangeValues SELECTION_BEGIN_ROUTE_EVENT SELECTION_END_ROUTE_EVENT CURRENT_PERIOD_IS_REQUIRED PREVIOUS_CARD_TYPE_NAME SHOW_RECORD_PROPERTIES_FORM ACCESS_RIGHTS_SETTING_DIALOG_CODE ADMINISTRATOR_USER_CODE ANALYTIC_REPORT_TYPE asrtHideLocal asrtHideRemote CALCULATED_ROLE_TYPE_CODE COMPONENTS_REFERENCE_DEVELOPER_VIEW_CODE DCTS_TEST_PROTOCOLS_FOLDER_PATH E_EDOC_VERSION_ALREADY_APPROVINGLY_SIGNED E_EDOC_VERSION_ALREADY_APPROVINGLY_SIGNED_BY_USER E_EDOC_VERSION_ALREDY_SIGNED E_EDOC_VERSION_ALREDY_SIGNED_BY_USER EDOC_TYPES_CODE_REQUISITE_FIELD_NAME EDOCUMENTS_ALIAS_NAME FILES_FOLDER_PATH FILTER_OPERANDS_DELIMITER FILTER_OPERATIONS_DELIMITER FORMCARD_NAME FORMLIST_NAME GET_EXTENDED_DOCUMENT_EXTENSION_CREATION_MODE GET_EXTENDED_DOCUMENT_EXTENSION_IMPORT_MODE INTEGRATED_REPORT_TYPE IS_BUILDER_APPLICATION_ROLE IS_BUILDER_APPLICATION_ROLE2 IS_BUILDER_USERS ISBSYSDEV LOG_FOLDER_PATH mbCancel mbNo mbNoToAll mbOK mbYes mbYesToAll MEMORY_DATASET_DESRIPTIONS_FILENAME mrNo mrNoToAll mrYes mrYesToAll MULTIPLE_SELECT_DIALOG_CODE NONOPERATING_RECORD_FLAG_FEMININE NONOPERATING_RECORD_FLAG_MASCULINE OPERATING_RECORD_FLAG_FEMININE OPERATING_RECORD_FLAG_MASCULINE PROFILING_SETTINGS_COMMON_SETTINGS_CODE_VALUE PROGRAM_INITIATED_LOOKUP_ACTION ratDelete ratEdit ratInsert REPORT_TYPE REQUIRED_PICK_VALUES_VARIABLE rmCard rmList SBRTE_PROGID_DEV SBRTE_PROGID_RELEASE STATIC_ROLE_TYPE_CODE SUPPRESS_EMPTY_TEMPLATE_CREATION SYSTEM_USER_CODE UPDATE_DIALOG_DATASET USED_IN_OBJECT_HINT_PARAM USER_INITIATED_LOOKUP_ACTION USER_NAME_FORMAT USER_SELECTION_RESTRICTIONS WORKFLOW_TEST_PROTOCOLS_FOLDER_PATH ELS_SUBTYPE_CONTROL_NAME ELS_FOLDER_KIND_CONTROL_NAME REPEAT_PROCESS_CURRENT_OBJECT_EXCEPTION_NAME PRIVILEGE_COMPONENT_FULL_ACCESS PRIVILEGE_DEVELOPMENT_EXPORT PRIVILEGE_DEVELOPMENT_IMPORT PRIVILEGE_DOCUMENT_DELETE PRIVILEGE_ESD PRIVILEGE_FOLDER_DELETE PRIVILEGE_MANAGE_ACCESS_RIGHTS PRIVILEGE_MANAGE_REPLICATION PRIVILEGE_MANAGE_SESSION_SERVER PRIVILEGE_OBJECT_FULL_ACCESS PRIVILEGE_OBJECT_VIEW PRIVILEGE_RESERVE_LICENSE PRIVILEGE_SYSTEM_CUSTOMIZE PRIVILEGE_SYSTEM_DEVELOP PRIVILEGE_SYSTEM_INSTALL PRIVILEGE_TASK_DELETE PRIVILEGE_USER_PLUGIN_SETTINGS_CUSTOMIZE PRIVILEGES_PSEUDOREFERENCE_CODE ACCESS_TYPES_PSEUDOREFERENCE_CODE ALL_AVAILABLE_COMPONENTS_PSEUDOREFERENCE_CODE ALL_AVAILABLE_PRIVILEGES_PSEUDOREFERENCE_CODE ALL_REPLICATE_COMPONENTS_PSEUDOREFERENCE_CODE AVAILABLE_DEVELOPERS_COMPONENTS_PSEUDOREFERENCE_CODE COMPONENTS_PSEUDOREFERENCE_CODE FILTRATER_SETTINGS_CONFLICTS_PSEUDOREFERENCE_CODE GROUPS_PSEUDOREFERENCE_CODE RECEIVE_PROTOCOL_PSEUDOREFERENCE_CODE REFERENCE_REQUISITE_PSEUDOREFERENCE_CODE REFERENCE_REQUISITES_PSEUDOREFERENCE_CODE REFTYPES_PSEUDOREFERENCE_CODE REPLICATION_SEANCES_DIARY_PSEUDOREFERENCE_CODE SEND_PROTOCOL_PSEUDOREFERENCE_CODE SUBSTITUTES_PSEUDOREFERENCE_CODE SYSTEM_SETTINGS_PSEUDOREFERENCE_CODE UNITS_PSEUDOREFERENCE_CODE USERS_PSEUDOREFERENCE_CODE VIEWERS_PSEUDOREFERENCE_CODE CERTIFICATE_TYPE_ENCRYPT CERTIFICATE_TYPE_SIGN CERTIFICATE_TYPE_SIGN_AND_ENCRYPT STORAGE_TYPE_FILE STORAGE_TYPE_NAS_CIFS STORAGE_TYPE_SAPERION STORAGE_TYPE_SQL_SERVER COMPTYPE2_REQUISITE_DOCUMENTS_VALUE COMPTYPE2_REQUISITE_TASKS_VALUE COMPTYPE2_REQUISITE_FOLDERS_VALUE COMPTYPE2_REQUISITE_REFERENCES_VALUE SYSREQ_CODE SYSREQ_COMPTYPE2 SYSREQ_CONST_AVAILABLE_FOR_WEB SYSREQ_CONST_COMMON_CODE SYSREQ_CONST_COMMON_VALUE SYSREQ_CONST_FIRM_CODE SYSREQ_CONST_FIRM_STATUS SYSREQ_CONST_FIRM_VALUE SYSREQ_CONST_SERVER_STATUS SYSREQ_CONTENTS SYSREQ_DATE_OPEN SYSREQ_DATE_CLOSE SYSREQ_DESCRIPTION SYSREQ_DESCRIPTION_LOCALIZE_ID SYSREQ_DOUBLE SYSREQ_EDOC_ACCESS_TYPE SYSREQ_EDOC_AUTHOR SYSREQ_EDOC_CREATED SYSREQ_EDOC_DELEGATE_RIGHTS_REQUISITE_CODE SYSREQ_EDOC_EDITOR SYSREQ_EDOC_ENCODE_TYPE SYSREQ_EDOC_ENCRYPTION_PLUGIN_NAME SYSREQ_EDOC_ENCRYPTION_PLUGIN_VERSION SYSREQ_EDOC_EXPORT_DATE SYSREQ_EDOC_EXPORTER SYSREQ_EDOC_KIND SYSREQ_EDOC_LIFE_STAGE_NAME SYSREQ_EDOC_LOCKED_FOR_SERVER_CODE SYSREQ_EDOC_MODIFIED SYSREQ_EDOC_NAME SYSREQ_EDOC_NOTE SYSREQ_EDOC_QUALIFIED_ID SYSREQ_EDOC_SESSION_KEY SYSREQ_EDOC_SESSION_KEY_ENCRYPTION_PLUGIN_NAME SYSREQ_EDOC_SESSION_KEY_ENCRYPTION_PLUGIN_VERSION SYSREQ_EDOC_SIGNATURE_TYPE SYSREQ_EDOC_SIGNED SYSREQ_EDOC_STORAGE SYSREQ_EDOC_STORAGES_ARCHIVE_STORAGE SYSREQ_EDOC_STORAGES_CHECK_RIGHTS SYSREQ_EDOC_STORAGES_COMPUTER_NAME SYSREQ_EDOC_STORAGES_EDIT_IN_STORAGE SYSREQ_EDOC_STORAGES_EXECUTIVE_STORAGE SYSREQ_EDOC_STORAGES_FUNCTION SYSREQ_EDOC_STORAGES_INITIALIZED SYSREQ_EDOC_STORAGES_LOCAL_PATH SYSREQ_EDOC_STORAGES_SAPERION_DATABASE_NAME SYSREQ_EDOC_STORAGES_SEARCH_BY_TEXT SYSREQ_EDOC_STORAGES_SERVER_NAME SYSREQ_EDOC_STORAGES_SHARED_SOURCE_NAME SYSREQ_EDOC_STORAGES_TYPE SYSREQ_EDOC_TEXT_MODIFIED SYSREQ_EDOC_TYPE_ACT_CODE SYSREQ_EDOC_TYPE_ACT_DESCRIPTION SYSREQ_EDOC_TYPE_ACT_DESCRIPTION_LOCALIZE_ID SYSREQ_EDOC_TYPE_ACT_ON_EXECUTE SYSREQ_EDOC_TYPE_ACT_ON_EXECUTE_EXISTS SYSREQ_EDOC_TYPE_ACT_SECTION SYSREQ_EDOC_TYPE_ADD_PARAMS SYSREQ_EDOC_TYPE_COMMENT SYSREQ_EDOC_TYPE_EVENT_TEXT SYSREQ_EDOC_TYPE_NAME_IN_SINGULAR SYSREQ_EDOC_TYPE_NAME_IN_SINGULAR_LOCALIZE_ID SYSREQ_EDOC_TYPE_NAME_LOCALIZE_ID SYSREQ_EDOC_TYPE_NUMERATION_METHOD SYSREQ_EDOC_TYPE_PSEUDO_REQUISITE_CODE SYSREQ_EDOC_TYPE_REQ_CODE SYSREQ_EDOC_TYPE_REQ_DESCRIPTION SYSREQ_EDOC_TYPE_REQ_DESCRIPTION_LOCALIZE_ID SYSREQ_EDOC_TYPE_REQ_IS_LEADING SYSREQ_EDOC_TYPE_REQ_IS_REQUIRED SYSREQ_EDOC_TYPE_REQ_NUMBER SYSREQ_EDOC_TYPE_REQ_ON_CHANGE SYSREQ_EDOC_TYPE_REQ_ON_CHANGE_EXISTS SYSREQ_EDOC_TYPE_REQ_ON_SELECT SYSREQ_EDOC_TYPE_REQ_ON_SELECT_KIND SYSREQ_EDOC_TYPE_REQ_SECTION SYSREQ_EDOC_TYPE_VIEW_CARD SYSREQ_EDOC_TYPE_VIEW_CODE SYSREQ_EDOC_TYPE_VIEW_COMMENT SYSREQ_EDOC_TYPE_VIEW_IS_MAIN SYSREQ_EDOC_TYPE_VIEW_NAME SYSREQ_EDOC_TYPE_VIEW_NAME_LOCALIZE_ID SYSREQ_EDOC_VERSION_AUTHOR SYSREQ_EDOC_VERSION_CRC SYSREQ_EDOC_VERSION_DATA SYSREQ_EDOC_VERSION_EDITOR SYSREQ_EDOC_VERSION_EXPORT_DATE SYSREQ_EDOC_VERSION_EXPORTER SYSREQ_EDOC_VERSION_HIDDEN SYSREQ_EDOC_VERSION_LIFE_STAGE SYSREQ_EDOC_VERSION_MODIFIED SYSREQ_EDOC_VERSION_NOTE SYSREQ_EDOC_VERSION_SIGNATURE_TYPE SYSREQ_EDOC_VERSION_SIGNED SYSREQ_EDOC_VERSION_SIZE SYSREQ_EDOC_VERSION_SOURCE SYSREQ_EDOC_VERSION_TEXT_MODIFIED SYSREQ_EDOCKIND_DEFAULT_VERSION_STATE_CODE SYSREQ_FOLDER_KIND SYSREQ_FUNC_CATEGORY SYSREQ_FUNC_COMMENT SYSREQ_FUNC_GROUP SYSREQ_FUNC_GROUP_COMMENT SYSREQ_FUNC_GROUP_NUMBER SYSREQ_FUNC_HELP SYSREQ_FUNC_PARAM_DEF_VALUE SYSREQ_FUNC_PARAM_IDENT SYSREQ_FUNC_PARAM_NUMBER SYSREQ_FUNC_PARAM_TYPE SYSREQ_FUNC_TEXT SYSREQ_GROUP_CATEGORY SYSREQ_ID SYSREQ_LAST_UPDATE SYSREQ_LEADER_REFERENCE SYSREQ_LINE_NUMBER SYSREQ_MAIN_RECORD_ID SYSREQ_NAME SYSREQ_NAME_LOCALIZE_ID SYSREQ_NOTE SYSREQ_ORIGINAL_RECORD SYSREQ_OUR_FIRM SYSREQ_PROFILING_SETTINGS_BATCH_LOGING SYSREQ_PROFILING_SETTINGS_BATCH_SIZE SYSREQ_PROFILING_SETTINGS_PROFILING_ENABLED SYSREQ_PROFILING_SETTINGS_SQL_PROFILING_ENABLED SYSREQ_PROFILING_SETTINGS_START_LOGGED SYSREQ_RECORD_STATUS SYSREQ_REF_REQ_FIELD_NAME SYSREQ_REF_REQ_FORMAT SYSREQ_REF_REQ_GENERATED SYSREQ_REF_REQ_LENGTH SYSREQ_REF_REQ_PRECISION SYSREQ_REF_REQ_REFERENCE SYSREQ_REF_REQ_SECTION SYSREQ_REF_REQ_STORED SYSREQ_REF_REQ_TOKENS SYSREQ_REF_REQ_TYPE SYSREQ_REF_REQ_VIEW SYSREQ_REF_TYPE_ACT_CODE SYSREQ_REF_TYPE_ACT_DESCRIPTION SYSREQ_REF_TYPE_ACT_DESCRIPTION_LOCALIZE_ID SYSREQ_REF_TYPE_ACT_ON_EXECUTE SYSREQ_REF_TYPE_ACT_ON_EXECUTE_EXISTS SYSREQ_REF_TYPE_ACT_SECTION SYSREQ_REF_TYPE_ADD_PARAMS SYSREQ_REF_TYPE_COMMENT SYSREQ_REF_TYPE_COMMON_SETTINGS SYSREQ_REF_TYPE_DISPLAY_REQUISITE_NAME SYSREQ_REF_TYPE_EVENT_TEXT SYSREQ_REF_TYPE_MAIN_LEADING_REF SYSREQ_REF_TYPE_NAME_IN_SINGULAR SYSREQ_REF_TYPE_NAME_IN_SINGULAR_LOCALIZE_ID SYSREQ_REF_TYPE_NAME_LOCALIZE_ID SYSREQ_REF_TYPE_NUMERATION_METHOD SYSREQ_REF_TYPE_REQ_CODE SYSREQ_REF_TYPE_REQ_DESCRIPTION SYSREQ_REF_TYPE_REQ_DESCRIPTION_LOCALIZE_ID SYSREQ_REF_TYPE_REQ_IS_CONTROL SYSREQ_REF_TYPE_REQ_IS_FILTER SYSREQ_REF_TYPE_REQ_IS_LEADING SYSREQ_REF_TYPE_REQ_IS_REQUIRED SYSREQ_REF_TYPE_REQ_NUMBER SYSREQ_REF_TYPE_REQ_ON_CHANGE SYSREQ_REF_TYPE_REQ_ON_CHANGE_EXISTS SYSREQ_REF_TYPE_REQ_ON_SELECT SYSREQ_REF_TYPE_REQ_ON_SELECT_KIND SYSREQ_REF_TYPE_REQ_SECTION SYSREQ_REF_TYPE_VIEW_CARD SYSREQ_REF_TYPE_VIEW_CODE SYSREQ_REF_TYPE_VIEW_COMMENT SYSREQ_REF_TYPE_VIEW_IS_MAIN SYSREQ_REF_TYPE_VIEW_NAME SYSREQ_REF_TYPE_VIEW_NAME_LOCALIZE_ID SYSREQ_REFERENCE_TYPE_ID SYSREQ_STATE SYSREQ_STAT\u0415 SYSREQ_SYSTEM_SETTINGS_VALUE SYSREQ_TYPE SYSREQ_UNIT SYSREQ_UNIT_ID SYSREQ_USER_GROUPS_GROUP_FULL_NAME SYSREQ_USER_GROUPS_GROUP_NAME SYSREQ_USER_GROUPS_GROUP_SERVER_NAME SYSREQ_USERS_ACCESS_RIGHTS SYSREQ_USERS_AUTHENTICATION SYSREQ_USERS_CATEGORY SYSREQ_USERS_COMPONENT SYSREQ_USERS_COMPONENT_USER_IS_PUBLIC SYSREQ_USERS_DOMAIN SYSREQ_USERS_FULL_USER_NAME SYSREQ_USERS_GROUP SYSREQ_USERS_IS_MAIN_SERVER SYSREQ_USERS_LOGIN SYSREQ_USERS_REFERENCE_USER_IS_PUBLIC SYSREQ_USERS_STATUS SYSREQ_USERS_USER_CERTIFICATE SYSREQ_USERS_USER_CERTIFICATE_INFO SYSREQ_USERS_USER_CERTIFICATE_PLUGIN_NAME SYSREQ_USERS_USER_CERTIFICATE_PLUGIN_VERSION SYSREQ_USERS_USER_CERTIFICATE_STATE SYSREQ_USERS_USER_CERTIFICATE_SUBJECT_NAME SYSREQ_USERS_USER_CERTIFICATE_THUMBPRINT SYSREQ_USERS_USER_DEFAULT_CERTIFICATE SYSREQ_USERS_USER_DESCRIPTION SYSREQ_USERS_USER_GLOBAL_NAME SYSREQ_USERS_USER_LOGIN SYSREQ_USERS_USER_MAIN_SERVER SYSREQ_USERS_USER_TYPE SYSREQ_WORK_RULES_FOLDER_ID RESULT_VAR_NAME RESULT_VAR_NAME_ENG AUTO_NUMERATION_RULE_ID CANT_CHANGE_ID_REQUISITE_RULE_ID CANT_CHANGE_OURFIRM_REQUISITE_RULE_ID CHECK_CHANGING_REFERENCE_RECORD_USE_RULE_ID CHECK_CODE_REQUISITE_RULE_ID CHECK_DELETING_REFERENCE_RECORD_USE_RULE_ID CHECK_FILTRATER_CHANGES_RULE_ID CHECK_RECORD_INTERVAL_RULE_ID CHECK_REFERENCE_INTERVAL_RULE_ID CHECK_REQUIRED_DATA_FULLNESS_RULE_ID CHECK_REQUIRED_REQUISITES_FULLNESS_RULE_ID MAKE_RECORD_UNRATIFIED_RULE_ID RESTORE_AUTO_NUMERATION_RULE_ID SET_FIRM_CONTEXT_FROM_RECORD_RULE_ID SET_FIRST_RECORD_IN_LIST_FORM_RULE_ID SET_IDSPS_VALUE_RULE_ID SET_NEXT_CODE_VALUE_RULE_ID SET_OURFIRM_BOUNDS_RULE_ID SET_OURFIRM_REQUISITE_RULE_ID SCRIPT_BLOCK_AFTER_FINISH_EVENT SCRIPT_BLOCK_BEFORE_START_EVENT SCRIPT_BLOCK_EXECUTION_RESULTS_PROPERTY SCRIPT_BLOCK_NAME_PROPERTY SCRIPT_BLOCK_SCRIPT_PROPERTY SUBTASK_BLOCK_ABORT_DEADLINE_PROPERTY SUBTASK_BLOCK_AFTER_FINISH_EVENT SUBTASK_BLOCK_ASSIGN_PARAMS_EVENT SUBTASK_BLOCK_ATTACHMENTS_PROPERTY SUBTASK_BLOCK_ATTACHMENTS_RIGHTS_GROUP_PROPERTY SUBTASK_BLOCK_ATTACHMENTS_RIGHTS_TYPE_PROPERTY SUBTASK_BLOCK_BEFORE_START_EVENT SUBTASK_BLOCK_CREATED_TASK_PROPERTY SUBTASK_BLOCK_CREATION_EVENT SUBTASK_BLOCK_DEADLINE_PROPERTY SUBTASK_BLOCK_IMPORTANCE_PROPERTY SUBTASK_BLOCK_INITIATOR_PROPERTY SUBTASK_BLOCK_IS_RELATIVE_ABORT_DEADLINE_PROPERTY SUBTASK_BLOCK_IS_RELATIVE_DEADLINE_PROPERTY SUBTASK_BLOCK_JOBS_TYPE_PROPERTY SUBTASK_BLOCK_NAME_PROPERTY SUBTASK_BLOCK_PARALLEL_ROUTE_PROPERTY SUBTASK_BLOCK_PERFORMERS_PROPERTY SUBTASK_BLOCK_RELATIVE_ABORT_DEADLINE_TYPE_PROPERTY SUBTASK_BLOCK_RELATIVE_DEADLINE_TYPE_PROPERTY SUBTASK_BLOCK_REQUIRE_SIGN_PROPERTY SUBTASK_BLOCK_STANDARD_ROUTE_PROPERTY SUBTASK_BLOCK_START_EVENT SUBTASK_BLOCK_STEP_CONTROL_PROPERTY SUBTASK_BLOCK_SUBJECT_PROPERTY SUBTASK_BLOCK_TASK_CONTROL_PROPERTY SUBTASK_BLOCK_TEXT_PROPERTY SUBTASK_BLOCK_UNLOCK_ATTACHMENTS_ON_STOP_PROPERTY SUBTASK_BLOCK_USE_STANDARD_ROUTE_PROPERTY SUBTASK_BLOCK_WAIT_FOR_TASK_COMPLETE_PROPERTY SYSCOMP_CONTROL_JOBS SYSCOMP_FOLDERS SYSCOMP_JOBS SYSCOMP_NOTICES SYSCOMP_TASKS SYSDLG_CREATE_EDOCUMENT SYSDLG_CREATE_EDOCUMENT_VERSION SYSDLG_CURRENT_PERIOD SYSDLG_EDIT_FUNCTION_HELP SYSDLG_EDOCUMENT_KINDS_FOR_TEMPLATE SYSDLG_EXPORT_MULTIPLE_EDOCUMENTS SYSDLG_EXPORT_SINGLE_EDOCUMENT SYSDLG_IMPORT_EDOCUMENT SYSDLG_MULTIPLE_SELECT SYSDLG_SETUP_ACCESS_RIGHTS SYSDLG_SETUP_DEFAULT_RIGHTS SYSDLG_SETUP_FILTER_CONDITION SYSDLG_SETUP_SIGN_RIGHTS SYSDLG_SETUP_TASK_OBSERVERS SYSDLG_SETUP_TASK_ROUTE SYSDLG_SETUP_USERS_LIST SYSDLG_SIGN_EDOCUMENT SYSDLG_SIGN_MULTIPLE_EDOCUMENTS SYSREF_ACCESS_RIGHTS_TYPES SYSREF_ADMINISTRATION_HISTORY SYSREF_ALL_AVAILABLE_COMPONENTS SYSREF_ALL_AVAILABLE_PRIVILEGES SYSREF_ALL_REPLICATING_COMPONENTS SYSREF_AVAILABLE_DEVELOPERS_COMPONENTS SYSREF_CALENDAR_EVENTS SYSREF_COMPONENT_TOKEN_HISTORY SYSREF_COMPONENT_TOKENS SYSREF_COMPONENTS SYSREF_CONSTANTS SYSREF_DATA_RECEIVE_PROTOCOL SYSREF_DATA_SEND_PROTOCOL SYSREF_DIALOGS SYSREF_DIALOGS_REQUISITES SYSREF_EDITORS SYSREF_EDOC_CARDS SYSREF_EDOC_TYPES SYSREF_EDOCUMENT_CARD_REQUISITES SYSREF_EDOCUMENT_CARD_TYPES SYSREF_EDOCUMENT_CARD_TYPES_REFERENCE SYSREF_EDOCUMENT_CARDS SYSREF_EDOCUMENT_HISTORY SYSREF_EDOCUMENT_KINDS SYSREF_EDOCUMENT_REQUISITES SYSREF_EDOCUMENT_SIGNATURES SYSREF_EDOCUMENT_TEMPLATES SYSREF_EDOCUMENT_TEXT_STORAGES SYSREF_EDOCUMENT_VIEWS SYSREF_FILTERER_SETUP_CONFLICTS SYSREF_FILTRATER_SETTING_CONFLICTS SYSREF_FOLDER_HISTORY SYSREF_FOLDERS SYSREF_FUNCTION_GROUPS SYSREF_FUNCTION_PARAMS SYSREF_FUNCTIONS SYSREF_JOB_HISTORY SYSREF_LINKS SYSREF_LOCALIZATION_DICTIONARY SYSREF_LOCALIZATION_LANGUAGES SYSREF_MODULES SYSREF_PRIVILEGES SYSREF_RECORD_HISTORY SYSREF_REFERENCE_REQUISITES SYSREF_REFERENCE_TYPE_VIEWS SYSREF_REFERENCE_TYPES SYSREF_REFERENCES SYSREF_REFERENCES_REQUISITES SYSREF_REMOTE_SERVERS SYSREF_REPLICATION_SESSIONS_LOG SYSREF_REPLICATION_SESSIONS_PROTOCOL SYSREF_REPORTS SYSREF_ROLES SYSREF_ROUTE_BLOCK_GROUPS SYSREF_ROUTE_BLOCKS SYSREF_SCRIPTS SYSREF_SEARCHES SYSREF_SERVER_EVENTS SYSREF_SERVER_EVENTS_HISTORY SYSREF_STANDARD_ROUTE_GROUPS SYSREF_STANDARD_ROUTES SYSREF_STATUSES SYSREF_SYSTEM_SETTINGS SYSREF_TASK_HISTORY SYSREF_TASK_KIND_GROUPS SYSREF_TASK_KINDS SYSREF_TASK_RIGHTS SYSREF_TASK_SIGNATURES SYSREF_TASKS SYSREF_UNITS SYSREF_USER_GROUPS SYSREF_USER_GROUPS_REFERENCE SYSREF_USER_SUBSTITUTION SYSREF_USERS SYSREF_USERS_REFERENCE SYSREF_VIEWERS SYSREF_WORKING_TIME_CALENDARS ACCESS_RIGHTS_TABLE_NAME EDMS_ACCESS_TABLE_NAME EDOC_TYPES_TABLE_NAME TEST_DEV_DB_NAME TEST_DEV_SYSTEM_CODE TEST_EDMS_DB_NAME TEST_EDMS_MAIN_CODE TEST_EDMS_MAIN_DB_NAME TEST_EDMS_SECOND_CODE TEST_EDMS_SECOND_DB_NAME TEST_EDMS_SYSTEM_CODE TEST_ISB5_MAIN_CODE TEST_ISB5_SECOND_CODE TEST_SQL_SERVER_2005_NAME TEST_SQL_SERVER_NAME ATTENTION_CAPTION cbsCommandLinks cbsDefault CONFIRMATION_CAPTION ERROR_CAPTION INFORMATION_CAPTION mrCancel mrOk EDOC_VERSION_ACTIVE_STAGE_CODE EDOC_VERSION_DESIGN_STAGE_CODE EDOC_VERSION_OBSOLETE_STAGE_CODE cpDataEnciphermentEnabled cpDigitalSignatureEnabled cpID cpIssuer cpPluginVersion cpSerial cpSubjectName cpSubjSimpleName cpValidFromDate cpValidToDate ISBL_SYNTAX NO_SYNTAX XML_SYNTAX WAIT_BLOCK_AFTER_FINISH_EVENT WAIT_BLOCK_BEFORE_START_EVENT WAIT_BLOCK_DEADLINE_PROPERTY WAIT_BLOCK_IS_RELATIVE_DEADLINE_PROPERTY WAIT_BLOCK_NAME_PROPERTY WAIT_BLOCK_RELATIVE_DEADLINE_TYPE_PROPERTY SYSRES_COMMON SYSRES_CONST SYSRES_MBFUNC SYSRES_SBDATA SYSRES_SBGUI SYSRES_SBINTF SYSRES_SBREFDSC SYSRES_SQLERRORS SYSRES_SYSCOMP atUser atGroup atRole aemEnabledAlways aemDisabledAlways aemEnabledOnBrowse aemEnabledOnEdit aemDisabledOnBrowseEmpty apBegin apEnd alLeft alRight asmNever asmNoButCustomize asmAsLastTime asmYesButCustomize asmAlways cirCommon cirRevoked ctSignature ctEncode ctSignatureEncode clbUnchecked clbChecked clbGrayed ceISB ceAlways ceNever ctDocument ctReference ctScript ctUnknown ctReport ctDialog ctFunction ctFolder ctEDocument ctTask ctJob ctNotice ctControlJob cfInternal cfDisplay ciUnspecified ciWrite ciRead ckFolder ckEDocument ckTask ckJob ckComponentToken ckAny ckReference ckScript ckReport ckDialog ctISBLEditor ctBevel ctButton ctCheckListBox ctComboBox ctComboEdit ctGrid ctDBCheckBox ctDBComboBox ctDBEdit ctDBEllipsis ctDBMemo ctDBNavigator ctDBRadioGroup ctDBStatusLabel ctEdit ctGroupBox ctInplaceHint ctMemo ctPanel ctListBox ctRadioButton ctRichEdit ctTabSheet ctWebBrowser ctImage ctHyperLink ctLabel ctDBMultiEllipsis ctRibbon ctRichView ctInnerPanel ctPanelGroup ctBitButton cctDate cctInteger cctNumeric cctPick cctReference cctString cctText cltInternal cltPrimary cltGUI dseBeforeOpen dseAfterOpen dseBeforeClose dseAfterClose dseOnValidDelete dseBeforeDelete dseAfterDelete dseAfterDeleteOutOfTransaction dseOnDeleteError dseBeforeInsert dseAfterInsert dseOnValidUpdate dseBeforeUpdate dseOnUpdateRatifiedRecord dseAfterUpdate dseAfterUpdateOutOfTransaction dseOnUpdateError dseAfterScroll dseOnOpenRecord dseOnCloseRecord dseBeforeCancel dseAfterCancel dseOnUpdateDeadlockError dseBeforeDetailUpdate dseOnPrepareUpdate dseOnAnyRequisiteChange dssEdit dssInsert dssBrowse dssInActive dftDate dftShortDate dftDateTime dftTimeStamp dotDays dotHours dotMinutes dotSeconds dtkndLocal dtkndUTC arNone arView arEdit arFull ddaView ddaEdit emLock emEdit emSign emExportWithLock emImportWithUnlock emChangeVersionNote emOpenForModify emChangeLifeStage emDelete emCreateVersion emImport emUnlockExportedWithLock emStart emAbort emReInit emMarkAsReaded emMarkAsUnreaded emPerform emAccept emResume emChangeRights emEditRoute emEditObserver emRecoveryFromLocalCopy emChangeWorkAccessType emChangeEncodeTypeToCertificate emChangeEncodeTypeToPassword emChangeEncodeTypeToNone emChangeEncodeTypeToCertificatePassword emChangeStandardRoute emGetText emOpenForView emMoveToStorage emCreateObject emChangeVersionHidden emDeleteVersion emChangeLifeCycleStage emApprovingSign emExport emContinue emLockFromEdit emUnLockForEdit emLockForServer emUnlockFromServer emDelegateAccessRights emReEncode ecotFile ecotProcess eaGet eaCopy eaCreate eaCreateStandardRoute edltAll edltNothing edltQuery essmText essmCard esvtLast esvtLastActive esvtSpecified edsfExecutive edsfArchive edstSQLServer edstFile edvstNone edvstEDocumentVersionCopy edvstFile edvstTemplate edvstScannedFile vsDefault vsDesign vsActive vsObsolete etNone etCertificate etPassword etCertificatePassword ecException ecWarning ecInformation estAll estApprovingOnly evtLast evtLastActive evtQuery fdtString fdtNumeric fdtInteger fdtDate fdtText fdtUnknown fdtWideString fdtLargeInteger ftInbox ftOutbox ftFavorites ftCommonFolder ftUserFolder ftComponents ftQuickLaunch ftShortcuts ftSearch grhAuto grhX1 grhX2 grhX3 hltText hltRTF hltHTML iffBMP iffJPEG iffMultiPageTIFF iffSinglePageTIFF iffTIFF iffPNG im8bGrayscale im24bRGB im1bMonochrome itBMP itJPEG itWMF itPNG ikhInformation ikhWarning ikhError ikhNoIcon icUnknown icScript icFunction icIntegratedReport icAnalyticReport icDataSetEventHandler icActionHandler icFormEventHandler icLookUpEventHandler icRequisiteChangeEventHandler icBeforeSearchEventHandler icRoleCalculation icSelectRouteEventHandler icBlockPropertyCalculation icBlockQueryParamsEventHandler icChangeSearchResultEventHandler icBlockEventHandler icSubTaskInitEventHandler icEDocDataSetEventHandler icEDocLookUpEventHandler icEDocActionHandler icEDocFormEventHandler icEDocRequisiteChangeEventHandler icStructuredConversionRule icStructuredConversionEventBefore icStructuredConversionEventAfter icWizardEventHandler icWizardFinishEventHandler icWizardStepEventHandler icWizardStepFinishEventHandler icWizardActionEnableEventHandler icWizardActionExecuteEventHandler icCreateJobsHandler icCreateNoticesHandler icBeforeLookUpEventHandler icAfterLookUpEventHandler icTaskAbortEventHandler icWorkflowBlockActionHandler icDialogDataSetEventHandler icDialogActionHandler icDialogLookUpEventHandler icDialogRequisiteChangeEventHandler icDialogFormEventHandler icDialogValidCloseEventHandler icBlockFormEventHandler icTaskFormEventHandler icReferenceMethod icEDocMethod icDialogMethod icProcessMessageHandler isShow isHide isByUserSettings jkJob jkNotice jkControlJob jtInner jtLeft jtRight jtFull jtCross lbpAbove lbpBelow lbpLeft lbpRight eltPerConnection eltPerUser sfcUndefined sfcBlack sfcGreen sfcRed sfcBlue sfcOrange sfcLilac sfsItalic sfsStrikeout sfsNormal ldctStandardRoute ldctWizard ldctScript ldctFunction ldctRouteBlock ldctIntegratedReport ldctAnalyticReport ldctReferenceType ldctEDocumentType ldctDialog ldctServerEvents mrcrtNone mrcrtUser mrcrtMaximal mrcrtCustom vtEqual vtGreaterOrEqual vtLessOrEqual vtRange rdYesterday rdToday rdTomorrow rdThisWeek rdThisMonth rdThisYear rdNextMonth rdNextWeek rdLastWeek rdLastMonth rdWindow rdFile rdPrinter rdtString rdtNumeric rdtInteger rdtDate rdtReference rdtAccount rdtText rdtPick rdtUnknown rdtLargeInteger rdtDocument reOnChange reOnChangeValues ttGlobal ttLocal ttUser ttSystem ssmBrowse ssmSelect ssmMultiSelect ssmBrowseModal smSelect smLike smCard stNone stAuthenticating stApproving sctString sctStream sstAnsiSort sstNaturalSort svtEqual svtContain soatString soatNumeric soatInteger soatDatetime soatReferenceRecord soatText soatPick soatBoolean soatEDocument soatAccount soatIntegerCollection soatNumericCollection soatStringCollection soatPickCollection soatDatetimeCollection soatBooleanCollection soatReferenceRecordCollection soatEDocumentCollection soatAccountCollection soatContents soatUnknown tarAbortByUser tarAbortByWorkflowException tvtAllWords tvtExactPhrase tvtAnyWord usNone usCompleted usRedSquare usBlueSquare usYellowSquare usGreenSquare usOrangeSquare usPurpleSquare usFollowUp utUnknown utUser utDeveloper utAdministrator utSystemDeveloper utDisconnected btAnd btDetailAnd btOr btNotOr btOnly vmView vmSelect vmNavigation vsmSingle vsmMultiple vsmMultipleCheck vsmNoSelection wfatPrevious wfatNext wfatCancel wfatFinish wfepUndefined wfepText3 wfepText6 wfepText9 wfepSpinEdit wfepDropDown wfepRadioGroup wfepFlag wfepText12 wfepText15 wfepText18 wfepText21 wfepText24 wfepText27 wfepText30 wfepRadioGroupColumn1 wfepRadioGroupColumn2 wfepRadioGroupColumn3 wfetQueryParameter wfetText wfetDelimiter wfetLabel wptString wptInteger wptNumeric wptBoolean wptDateTime wptPick wptText wptUser wptUserList wptEDocumentInfo wptEDocumentInfoList wptReferenceRecordInfo wptReferenceRecordInfoList wptFolderInfo wptTaskInfo wptContents wptFileName wptDate wsrComplete wsrGoNext wsrGoPrevious wsrCustom wsrCancel wsrGoFinal wstForm wstEDocument wstTaskCard wstReferenceRecordCard wstFinal waAll waPerformers waManual wsbStart wsbFinish wsbNotice wsbStep wsbDecision wsbWait wsbMonitor wsbScript wsbConnector wsbSubTask wsbLifeCycleStage wsbPause wdtInteger wdtFloat wdtString wdtPick wdtDateTime wdtBoolean wdtTask wdtJob wdtFolder wdtEDocument wdtReferenceRecord wdtUser wdtGroup wdtRole wdtIntegerCollection wdtFloatCollection wdtStringCollection wdtPickCollection wdtDateTimeCollection wdtBooleanCollection wdtTaskCollection wdtJobCollection wdtFolderCollection wdtEDocumentCollection wdtReferenceRecordCollection wdtUserCollection wdtGroupCollection wdtRoleCollection wdtContents wdtUserList wdtSearchDescription wdtDeadLine wdtPickSet wdtAccountCollection wiLow wiNormal wiHigh wrtSoft wrtHard wsInit wsRunning wsDone wsControlled wsAborted wsContinued wtmFull wtmFromCurrent wtmOnlyCurrent ",b="AltState Application CallType ComponentTokens CreatedJobs CreatedNotices ControlState DialogResult Dialogs EDocuments EDocumentVersionSource Folders GlobalIDs Job Jobs InputValue LookUpReference LookUpRequisiteNames LookUpSearch Object ParentComponent Processes References Requisite ReportName Reports Result Scripts Searches SelectedAttachments SelectedItems SelectMode Sender ServerEvents ServiceFactory ShiftState SubTask SystemDialogs Tasks Wizard Wizards Work \u0412\u044b\u0437\u043e\u0432\u0421\u043f\u043e\u0441\u043e\u0431 \u0418\u043c\u044f\u041e\u0442\u0447\u0435\u0442\u0430 \u0420\u0435\u043a\u0432\u0417\u043d\u0430\u0447 ",a="null true false nil ",a0="~contains~0~contains~1",a1="[A-Za-z\u0410-\u042f\u0430-\u044f\u0451\u0401_][A-Za-z\u0410-\u042f\u0430-\u044f\u0451\u0401_0-9]*\\(",a2=A.a(k,"\\b(?:TODO|DONE|BEGIN|END|STUB|CHG|FIXME|NOTE|BUG|XXX)\\b",k,k,"doctag",k,k,k,k,k,k,k,k,k,k,k,k,k,0,k,k,k,k,k,k,k),a3=$.aq(),a4=t._ -a3=A.a(k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,A.b([A.a(k,"//",k,k,"comment",A.b([a3,A.a(k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,l,k,k,k,k,k,k,k,k,k)],a4),k,"$",k,k,k,k,k,k,k,k,k,k,0,k,k,k,k,k,k,k),A.a(k,"/\\*",k,k,"comment",A.b([a3,A.a(k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,l,k,k,k,k,k,k,k,k,k)],a4),k,"\\*/",k,k,k,k,k,k,k,k,k,k,0,k,k,k,k,k,k,k)],a4)) -q=A.a(k,"\\b\\d+(\\.\\d+)?",k,k,"number",k,k,k,k,k,k,k,k,k,k,k,k,k,0,k,k,k,k,k,k,k) -p=A.a(k,k,k,k,"string",k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,A.b([A.a(k,'"',k,k,k,k,k,'"',k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k),A.a(k,"'",k,k,k,k,k,"'",k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k)],a4)) -o=A.a(k,":[ \\t]*(IApplication|IAccessRights|IAccountRepository|IAccountSelectionRestrictions|IAction|IActionList|IAdministrationHistoryDescription|IAnchors|IApplication|IArchiveInfo|IAttachment|IAttachmentList|ICheckListBox|ICheckPointedList|IColumn|IComponent|IComponentDescription|IComponentToken|IComponentTokenFactory|IComponentTokenInfo|ICompRecordInfo|IConnection|IContents|IControl|IControlJob|IControlJobInfo|IControlList|ICrypto|ICrypto2|ICustomJob|ICustomJobInfo|ICustomListBox|ICustomObjectWizardStep|ICustomWork|ICustomWorkInfo|IDataSet|IDataSetAccessInfo|IDataSigner|IDateCriterion|IDateRequisite|IDateRequisiteDescription|IDateValue|IDeaAccessRights|IDeaObjectInfo|IDevelopmentComponentLock|IDialog|IDialogFactory|IDialogPickRequisiteItems|IDialogsFactory|IDICSFactory|IDocRequisite|IDocumentInfo|IDualListDialog|IECertificate|IECertificateInfo|IECertificates|IEditControl|IEditorForm|IEdmsExplorer|IEdmsObject|IEdmsObjectDescription|IEdmsObjectFactory|IEdmsObjectInfo|IEDocument|IEDocumentAccessRights|IEDocumentDescription|IEDocumentEditor|IEDocumentFactory|IEDocumentInfo|IEDocumentStorage|IEDocumentVersion|IEDocumentVersionListDialog|IEDocumentVersionSource|IEDocumentWizardStep|IEDocVerSignature|IEDocVersionState|IEnabledMode|IEncodeProvider|IEncrypter|IEvent|IEventList|IException|IExternalEvents|IExternalHandler|IFactory|IField|IFileDialog|IFolder|IFolderDescription|IFolderDialog|IFolderFactory|IFolderInfo|IForEach|IForm|IFormTitle|IFormWizardStep|IGlobalIDFactory|IGlobalIDInfo|IGrid|IHasher|IHistoryDescription|IHyperLinkControl|IImageButton|IImageControl|IInnerPanel|IInplaceHint|IIntegerCriterion|IIntegerList|IIntegerRequisite|IIntegerValue|IISBLEditorForm|IJob|IJobDescription|IJobFactory|IJobForm|IJobInfo|ILabelControl|ILargeIntegerCriterion|ILargeIntegerRequisite|ILargeIntegerValue|ILicenseInfo|ILifeCycleStage|IList|IListBox|ILocalIDInfo|ILocalization|ILock|IMemoryDataSet|IMessagingFactory|IMetadataRepository|INotice|INoticeInfo|INumericCriterion|INumericRequisite|INumericValue|IObject|IObjectDescription|IObjectImporter|IObjectInfo|IObserver|IPanelGroup|IPickCriterion|IPickProperty|IPickRequisite|IPickRequisiteDescription|IPickRequisiteItem|IPickRequisiteItems|IPickValue|IPrivilege|IPrivilegeList|IProcess|IProcessFactory|IProcessMessage|IProgress|IProperty|IPropertyChangeEvent|IQuery|IReference|IReferenceCriterion|IReferenceEnabledMode|IReferenceFactory|IReferenceHistoryDescription|IReferenceInfo|IReferenceRecordCardWizardStep|IReferenceRequisiteDescription|IReferencesFactory|IReferenceValue|IRefRequisite|IReport|IReportFactory|IRequisite|IRequisiteDescription|IRequisiteDescriptionList|IRequisiteFactory|IRichEdit|IRouteStep|IRule|IRuleList|ISchemeBlock|IScript|IScriptFactory|ISearchCriteria|ISearchCriterion|ISearchDescription|ISearchFactory|ISearchFolderInfo|ISearchForObjectDescription|ISearchResultRestrictions|ISecuredContext|ISelectDialog|IServerEvent|IServerEventFactory|IServiceDialog|IServiceFactory|ISignature|ISignProvider|ISignProvider2|ISignProvider3|ISimpleCriterion|IStringCriterion|IStringList|IStringRequisite|IStringRequisiteDescription|IStringValue|ISystemDialogsFactory|ISystemInfo|ITabSheet|ITask|ITaskAbortReasonInfo|ITaskCardWizardStep|ITaskDescription|ITaskFactory|ITaskInfo|ITaskRoute|ITextCriterion|ITextRequisite|ITextValue|ITreeListSelectDialog|IUser|IUserList|IValue|IView|IWebBrowserControl|IWizard|IWizardAction|IWizardFactory|IWizardFormElement|IWizardParam|IWizardPickParam|IWizardReferenceParam|IWizardStep|IWorkAccessRights|IWorkDescription|IWorkflowAskableParam|IWorkflowAskableParams|IWorkflowBlock|IWorkflowBlockResult|IWorkflowEnabledMode|IWorkflowParam|IWorkflowPickParam|IWorkflowReferenceParam|IWorkState|IWorkTreeCustomNode|IWorkTreeJobNode|IWorkTreeTaskNode|IXMLEditorForm|SBCrypto)",k,k,"type",k,k,"[ \\t]*=",k,k,k,k,!0,k,k,k,k,k,k,k,k,k,k,k,k,k) -n=t.N -m=A.l(["keyword",d,"built_in",c,"class",b,"literal",a],n,n) -m=A.l([l,a2,j,a3,i,q,h,p,g,o,f,A.a(k,e,k,k,"variable",A.b([A.a(k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,g,k,k,k,k,k,k,k,k,k),A.a(k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,a0,k,k,k,k,k,k,k,k,k)],a4),k,k,k,k,k,k,k,k,m,e,k,k,0,k,k,k,k,k,k,k),a0,A.a(k,"\\.\\s*[a-zA-Z_]\\w*",k,k,k,k,k,k,k,k,k,k,k,k,A.l(["keyword",d,"built_in",c,"class",b,"literal",a],n,n),k,k,k,0,k,k,k,k,k,k,k)],n,t.n) -o=A.b(["isbl"],t.s) -p=A.l(["keyword",d,"built_in",c,"class",b,"literal",a],n,n) -q=A.l(["keyword",d,"built_in",c,"class",b,"literal",a],n,n) -return A.a(o,k,k,!0,k,A.b([A.a(k,a1,k,k,"function",A.b([A.a(k,a1,k,k,"title",k,k,"\\(",k,k,k,k,!0,k,A.l(["built_in","AddSubString AdjustLineBreaks AmountInWords Analysis ArrayDimCount ArrayHighBound ArrayLowBound ArrayOf ArrayReDim Assert Assigned BeginOfMonth BeginOfPeriod BuildProfilingOperationAnalysis CallProcedure CanReadFile CArrayElement CDataSetRequisite ChangeDate ChangeReferenceDataset Char CharPos CheckParam CheckParamValue CompareStrings ConstantExists ControlState ConvertDateStr Copy CopyFile CreateArray CreateCachedReference CreateConnection CreateDialog CreateDualListDialog CreateEditor CreateException CreateFile CreateFolderDialog CreateInputDialog CreateLinkFile CreateList CreateLock CreateMemoryDataSet CreateObject CreateOpenDialog CreateProgress CreateQuery CreateReference CreateReport CreateSaveDialog CreateScript CreateSQLPivotFunction CreateStringList CreateTreeListSelectDialog CSelectSQL CSQL CSubString CurrentUserID CurrentUserName CurrentVersion DataSetLocateEx DateDiff DateTimeDiff DateToStr DayOfWeek DeleteFile DirectoryExists DisableCheckAccessRights DisableCheckFullShowingRestriction DisableMassTaskSendingRestrictions DropTable DupeString EditText EnableCheckAccessRights EnableCheckFullShowingRestriction EnableMassTaskSendingRestrictions EndOfMonth EndOfPeriod ExceptionExists ExceptionsOff ExceptionsOn Execute ExecuteProcess Exit ExpandEnvironmentVariables ExtractFileDrive ExtractFileExt ExtractFileName ExtractFilePath ExtractParams FileExists FileSize FindFile FindSubString FirmContext ForceDirectories Format FormatDate FormatNumeric FormatSQLDate FormatString FreeException GetComponent GetComponentLaunchParam GetConstant GetLastException GetReferenceRecord GetRefTypeByRefID GetTableID GetTempFolder IfThen In IndexOf InputDialog InputDialogEx InteractiveMode IsFileLocked IsGraphicFile IsNumeric Length LoadString LoadStringFmt LocalTimeToUTC LowerCase Max MessageBox MessageBoxEx MimeDecodeBinary MimeDecodeString MimeEncodeBinary MimeEncodeString Min MoneyInWords MoveFile NewID Now OpenFile Ord Precision Raise ReadCertificateFromFile ReadFile ReferenceCodeByID ReferenceNumber ReferenceRequisiteMode ReferenceRequisiteValue RegionDateSettings RegionNumberSettings RegionTimeSettings RegRead RegWrite RenameFile Replace Round SelectServerCode SelectSQL ServerDateTime SetConstant SetManagedFolderFieldsState ShowConstantsInputDialog ShowMessage Sleep Split SQL SQL2XLSTAB SQLProfilingSendReport StrToDate SubString SubStringCount SystemSetting Time TimeDiff Today Transliterate Trim UpperCase UserStatus UTCToLocalTime ValidateXML VarIsClear VarIsEmpty VarIsNull WorkTimeDiff WriteFile WriteFileEx WriteObjectHistory \u0410\u043d\u0430\u043b\u0438\u0437 \u0411\u0430\u0437\u0430\u0414\u0430\u043d\u043d\u044b\u0445 \u0411\u043b\u043e\u043a\u0415\u0441\u0442\u044c \u0411\u043b\u043e\u043a\u0415\u0441\u0442\u044c\u0420\u0430\u0441\u0448 \u0411\u043b\u043e\u043a\u0418\u043d\u0444\u043e \u0411\u043b\u043e\u043a\u0421\u043d\u044f\u0442\u044c \u0411\u043b\u043e\u043a\u0421\u043d\u044f\u0442\u044c\u0420\u0430\u0441\u0448 \u0411\u043b\u043e\u043a\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c \u0412\u0432\u043e\u0434 \u0412\u0432\u043e\u0434\u041c\u0435\u043d\u044e \u0412\u0435\u0434\u0421 \u0412\u0435\u0434\u0421\u043f\u0440 \u0412\u0435\u0440\u0445\u043d\u044f\u044f\u0413\u0440\u0430\u043d\u0438\u0446\u0430\u041c\u0430\u0441\u0441\u0438\u0432\u0430 \u0412\u043d\u0435\u0448\u041f\u0440\u043e\u0433\u0440 \u0412\u043e\u0441\u0441\u0442 \u0412\u0440\u0435\u043c\u0435\u043d\u043d\u0430\u044f\u041f\u0430\u043f\u043a\u0430 \u0412\u0440\u0435\u043c\u044f \u0412\u044b\u0431\u043e\u0440SQL \u0412\u044b\u0431\u0440\u0430\u0442\u044c\u0417\u0430\u043f\u0438\u0441\u044c \u0412\u044b\u0434\u0435\u043b\u0438\u0442\u044c\u0421\u0442\u0440 \u0412\u044b\u0437\u0432\u0430\u0442\u044c \u0412\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0412\u044b\u043f\u041f\u0440\u043e\u0433\u0440 \u0413\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043a\u0438\u0439\u0424\u0430\u0439\u043b \u0413\u0440\u0443\u043f\u043f\u0430\u0414\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0414\u0430\u0442\u0430\u0412\u0440\u0435\u043c\u044f\u0421\u0435\u0440\u0432 \u0414\u0435\u043d\u044c\u041d\u0435\u0434\u0435\u043b\u0438 \u0414\u0438\u0430\u043b\u043e\u0433\u0414\u0430\u041d\u0435\u0442 \u0414\u043b\u0438\u043d\u0430\u0421\u0442\u0440 \u0414\u043e\u0431\u041f\u043e\u0434\u0441\u0442\u0440 \u0415\u041f\u0443\u0441\u0442\u043e \u0415\u0441\u043b\u0438\u0422\u043e \u0415\u0427\u0438\u0441\u043b\u043e \u0417\u0430\u043c\u041f\u043e\u0434\u0441\u0442\u0440 \u0417\u0430\u043f\u0438\u0441\u044c\u0421\u043f\u0440\u0430\u0432\u043e\u0447\u043d\u0438\u043a\u0430 \u0417\u043d\u0430\u0447\u041f\u043e\u043b\u044f\u0421\u043f\u0440 \u0418\u0414\u0422\u0438\u043f\u0421\u043f\u0440 \u0418\u0437\u0432\u043b\u0435\u0447\u044c\u0414\u0438\u0441\u043a \u0418\u0437\u0432\u043b\u0435\u0447\u044c\u0418\u043c\u044f\u0424\u0430\u0439\u043b\u0430 \u0418\u0437\u0432\u043b\u0435\u0447\u044c\u041f\u0443\u0442\u044c \u0418\u0437\u0432\u043b\u0435\u0447\u044c\u0420\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u0435 \u0418\u0437\u043c\u0414\u0430\u0442 \u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c\u0420\u0430\u0437\u043c\u0435\u0440\u041c\u0430\u0441\u0441\u0438\u0432\u0430 \u0418\u0437\u043c\u0435\u0440\u0435\u043d\u0438\u0439\u041c\u0430\u0441\u0441\u0438\u0432\u0430 \u0418\u043c\u044f\u041e\u0440\u0433 \u0418\u043c\u044f\u041f\u043e\u043b\u044f\u0421\u043f\u0440 \u0418\u043d\u0434\u0435\u043a\u0441 \u0418\u043d\u0434\u0438\u043a\u0430\u0442\u043e\u0440\u0417\u0430\u043a\u0440\u044b\u0442\u044c \u0418\u043d\u0434\u0438\u043a\u0430\u0442\u043e\u0440\u041e\u0442\u043a\u0440\u044b\u0442\u044c \u0418\u043d\u0434\u0438\u043a\u0430\u0442\u043e\u0440\u0428\u0430\u0433 \u0418\u043d\u0442\u0435\u0440\u0430\u043a\u0442\u0438\u0432\u043d\u044b\u0439\u0420\u0435\u0436\u0438\u043c \u0418\u0442\u043e\u0433\u0422\u0431\u043b\u0421\u043f\u0440 \u041a\u043e\u0434\u0412\u0438\u0434\u0412\u0435\u0434\u0421\u043f\u0440 \u041a\u043e\u0434\u0412\u0438\u0434\u0421\u043f\u0440\u041f\u043e\u0418\u0414 \u041a\u043e\u0434\u041f\u043eAnalit \u041a\u043e\u0434\u0421\u0438\u043c\u0432\u043e\u043b\u0430 \u041a\u043e\u0434\u0421\u043f\u0440 \u041a\u043e\u043b\u041f\u043e\u0434\u0441\u0442\u0440 \u041a\u043e\u043b\u041f\u0440\u043e\u043f \u041a\u043e\u043d\u041c\u0435\u0441 \u041a\u043e\u043d\u0441\u0442 \u041a\u043e\u043d\u0441\u0442\u0415\u0441\u0442\u044c \u041a\u043e\u043d\u0441\u0442\u0417\u043d\u0430\u0447 \u041a\u043e\u043d\u0422\u0440\u0430\u043d \u041a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c\u0424\u0430\u0439\u043b \u041a\u043e\u043f\u0438\u044f\u0421\u0442\u0440 \u041a\u041f\u0435\u0440\u0438\u043e\u0434 \u041a\u0421\u0442\u0440\u0422\u0431\u043b\u0421\u043f\u0440 \u041c\u0430\u043a\u0441 \u041c\u0430\u043a\u0441\u0421\u0442\u0440\u0422\u0431\u043b\u0421\u043f\u0440 \u041c\u0430\u0441\u0441\u0438\u0432 \u041c\u0435\u043d\u044e \u041c\u0435\u043d\u044e\u0420\u0430\u0441\u0448 \u041c\u0438\u043d \u041d\u0430\u0431\u043e\u0440\u0414\u0430\u043d\u043d\u044b\u0445\u041d\u0430\u0439\u0442\u0438\u0420\u0430\u0441\u0448 \u041d\u0430\u0438\u043c\u0412\u0438\u0434\u0421\u043f\u0440 \u041d\u0430\u0438\u043c\u041f\u043eAnalit \u041d\u0430\u0438\u043c\u0421\u043f\u0440 \u041d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c\u041f\u0435\u0440\u0435\u0432\u043e\u0434\u044b\u0421\u0442\u0440\u043e\u043a \u041d\u0430\u0447\u041c\u0435\u0441 \u041d\u0430\u0447\u0422\u0440\u0430\u043d \u041d\u0438\u0436\u043d\u044f\u044f\u0413\u0440\u0430\u043d\u0438\u0446\u0430\u041c\u0430\u0441\u0441\u0438\u0432\u0430 \u041d\u043e\u043c\u0435\u0440\u0421\u043f\u0440 \u041d\u041f\u0435\u0440\u0438\u043e\u0434 \u041e\u043a\u043d\u043e \u041e\u043a\u0440 \u041e\u043a\u0440\u0443\u0436\u0435\u043d\u0438\u0435 \u041e\u0442\u043b\u0418\u043d\u0444\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u041e\u0442\u043b\u0418\u043d\u0444\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u041e\u0442\u0447\u0435\u0442 \u041e\u0442\u0447\u0435\u0442\u0410\u043d\u0430\u043b \u041e\u0442\u0447\u0435\u0442\u0418\u043d\u0442 \u041f\u0430\u043f\u043a\u0430\u0421\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442 \u041f\u0430\u0443\u0437\u0430 \u041f\u0412\u044b\u0431\u043e\u0440SQL \u041f\u0435\u0440\u0435\u0438\u043c\u0435\u043d\u043e\u0432\u0430\u0442\u044c\u0424\u0430\u0439\u043b \u041f\u0435\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0435 \u041f\u0435\u0440\u0435\u043c\u0435\u0441\u0442\u0438\u0442\u044c\u0424\u0430\u0439\u043b \u041f\u043e\u0434\u0441\u0442\u0440 \u041f\u043e\u0438\u0441\u043a\u041f\u043e\u0434\u0441\u0442\u0440 \u041f\u043e\u0438\u0441\u043a\u0421\u0442\u0440 \u041f\u043e\u043b\u0443\u0447\u0438\u0442\u044c\u0418\u0414\u0422\u0430\u0431\u043b\u0438\u0446\u044b \u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0414\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0418\u0414 \u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0418\u043c\u044f \u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0421\u0442\u0430\u0442\u0443\u0441 \u041f\u0440\u0435\u0440\u0432\u0430\u0442\u044c \u041f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 \u041f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0417\u043d\u0430\u0447 \u041f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c\u0423\u0441\u043b\u043e\u0432\u0438\u0435 \u0420\u0430\u0437\u0431\u0421\u0442\u0440 \u0420\u0430\u0437\u043d\u0412\u0440\u0435\u043c\u044f \u0420\u0430\u0437\u043d\u0414\u0430\u0442 \u0420\u0430\u0437\u043d\u0414\u0430\u0442\u0430\u0412\u0440\u0435\u043c\u044f \u0420\u0430\u0437\u043d\u0420\u0430\u0431\u0412\u0440\u0435\u043c\u044f \u0420\u0435\u0433\u0423\u0441\u0442\u0412\u0440\u0435\u043c \u0420\u0435\u0433\u0423\u0441\u0442\u0414\u0430\u0442 \u0420\u0435\u0433\u0423\u0441\u0442\u0427\u0441\u043b \u0420\u0435\u0434\u0422\u0435\u043a\u0441\u0442 \u0420\u0435\u0435\u0441\u0442\u0440\u0417\u0430\u043f\u0438\u0441\u044c \u0420\u0435\u0435\u0441\u0442\u0440\u0421\u043f\u0438\u0441\u043e\u043a\u0418\u043c\u0435\u043d\u041f\u0430\u0440\u0430\u043c \u0420\u0435\u0435\u0441\u0442\u0440\u0427\u0442\u0435\u043d\u0438\u0435 \u0420\u0435\u043a\u0432\u0421\u043f\u0440 \u0420\u0435\u043a\u0432\u0421\u043f\u0440\u041f\u0440 \u0421\u0435\u0433\u043e\u0434\u043d\u044f \u0421\u0435\u0439\u0447\u0430\u0441 \u0421\u0435\u0440\u0432\u0435\u0440 \u0421\u0435\u0440\u0432\u0435\u0440\u041f\u0440\u043e\u0446\u0435\u0441\u0441\u0418\u0414 \u0421\u0435\u0440\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u0424\u0430\u0439\u043b\u0421\u0447\u0438\u0442\u0430\u0442\u044c \u0421\u0436\u041f\u0440\u043e\u0431 \u0421\u0438\u043c\u0432\u043e\u043b \u0421\u0438\u0441\u0442\u0435\u043c\u0430\u0414\u0438\u0440\u0435\u043a\u0442\u0443\u043c\u041a\u043e\u0434 \u0421\u0438\u0441\u0442\u0435\u043c\u0430\u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0421\u0438\u0441\u0442\u0435\u043c\u0430\u041a\u043e\u0434 \u0421\u043e\u0434\u0435\u0440\u0436\u0438\u0442 \u0421\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u0435\u0417\u0430\u043a\u0440\u044b\u0442\u044c \u0421\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u0435\u041e\u0442\u043a\u0440\u044b\u0442\u044c \u0421\u043e\u0437\u0434\u0430\u0442\u044c\u0414\u0438\u0430\u043b\u043e\u0433 \u0421\u043e\u0437\u0434\u0430\u0442\u044c\u0414\u0438\u0430\u043b\u043e\u0433\u0412\u044b\u0431\u043e\u0440\u0430\u0418\u0437\u0414\u0432\u0443\u0445\u0421\u043f\u0438\u0441\u043a\u043e\u0432 \u0421\u043e\u0437\u0434\u0430\u0442\u044c\u0414\u0438\u0430\u043b\u043e\u0433\u0412\u044b\u0431\u043e\u0440\u0430\u041f\u0430\u043f\u043a\u0438 \u0421\u043e\u0437\u0434\u0430\u0442\u044c\u0414\u0438\u0430\u043b\u043e\u0433\u041e\u0442\u043a\u0440\u044b\u0442\u0438\u044f\u0424\u0430\u0439\u043b\u0430 \u0421\u043e\u0437\u0434\u0430\u0442\u044c\u0414\u0438\u0430\u043b\u043e\u0433\u0421\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f\u0424\u0430\u0439\u043b\u0430 \u0421\u043e\u0437\u0434\u0430\u0442\u044c\u0417\u0430\u043f\u0440\u043e\u0441 \u0421\u043e\u0437\u0434\u0430\u0442\u044c\u0418\u043d\u0434\u0438\u043a\u0430\u0442\u043e\u0440 \u0421\u043e\u0437\u0434\u0430\u0442\u044c\u0418\u0441\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435 \u0421\u043e\u0437\u0434\u0430\u0442\u044c\u041a\u044d\u0448\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439\u0421\u043f\u0440\u0430\u0432\u043e\u0447\u043d\u0438\u043a \u0421\u043e\u0437\u0434\u0430\u0442\u044c\u041c\u0430\u0441\u0441\u0438\u0432 \u0421\u043e\u0437\u0434\u0430\u0442\u044c\u041d\u0430\u0431\u043e\u0440\u0414\u0430\u043d\u043d\u044b\u0445 \u0421\u043e\u0437\u0434\u0430\u0442\u044c\u041e\u0431\u044a\u0435\u043a\u0442 \u0421\u043e\u0437\u0434\u0430\u0442\u044c\u041e\u0442\u0447\u0435\u0442 \u0421\u043e\u0437\u0434\u0430\u0442\u044c\u041f\u0430\u043f\u043a\u0443 \u0421\u043e\u0437\u0434\u0430\u0442\u044c\u0420\u0435\u0434\u0430\u043a\u0442\u043e\u0440 \u0421\u043e\u0437\u0434\u0430\u0442\u044c\u0421\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u0435 \u0421\u043e\u0437\u0434\u0430\u0442\u044c\u0421\u043f\u0438\u0441\u043e\u043a \u0421\u043e\u0437\u0434\u0430\u0442\u044c\u0421\u043f\u0438\u0441\u043e\u043a\u0421\u0442\u0440\u043e\u043a \u0421\u043e\u0437\u0434\u0430\u0442\u044c\u0421\u043f\u0440\u0430\u0432\u043e\u0447\u043d\u0438\u043a \u0421\u043e\u0437\u0434\u0430\u0442\u044c\u0421\u0446\u0435\u043d\u0430\u0440\u0438\u0439 \u0421\u043e\u0437\u0434\u0421\u043f\u0440 \u0421\u043e\u0441\u0442\u0421\u043f\u0440 \u0421\u043e\u0445\u0440 \u0421\u043e\u0445\u0440\u0421\u043f\u0440 \u0421\u043f\u0438\u0441\u043e\u043a\u0421\u0438\u0441\u0442\u0435\u043c \u0421\u043f\u0440 \u0421\u043f\u0440\u0430\u0432\u043e\u0447\u043d\u0438\u043a \u0421\u043f\u0440\u0411\u043b\u043e\u043a\u0415\u0441\u0442\u044c \u0421\u043f\u0440\u0411\u043b\u043e\u043a\u0421\u043d\u044f\u0442\u044c \u0421\u043f\u0440\u0411\u043b\u043e\u043a\u0421\u043d\u044f\u0442\u044c\u0420\u0430\u0441\u0448 \u0421\u043f\u0440\u0411\u043b\u043e\u043a\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c \u0421\u043f\u0440\u0418\u0437\u043c\u041d\u0430\u0431\u0414\u0430\u043d \u0421\u043f\u0440\u041a\u043e\u0434 \u0421\u043f\u0440\u041d\u043e\u043c\u0435\u0440 \u0421\u043f\u0440\u041e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u0421\u043f\u0440\u041e\u0442\u043a\u0440\u044b\u0442\u044c \u0421\u043f\u0440\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u0421\u043f\u0440\u041f\u0430\u0440\u0430\u043c \u0421\u043f\u0440\u041f\u043e\u043b\u0435\u0417\u043d\u0430\u0447 \u0421\u043f\u0440\u041f\u043e\u043b\u0435\u0418\u043c\u044f \u0421\u043f\u0440\u0420\u0435\u043a\u0432 \u0421\u043f\u0440\u0420\u0435\u043a\u0432\u0412\u0432\u0435\u0434\u0417\u043d \u0421\u043f\u0440\u0420\u0435\u043a\u0432\u041d\u043e\u0432\u044b\u0435 \u0421\u043f\u0440\u0420\u0435\u043a\u0432\u041f\u0440 \u0421\u043f\u0440\u0420\u0435\u043a\u0432\u041f\u0440\u0435\u0434\u0417\u043d \u0421\u043f\u0440\u0420\u0435\u043a\u0432\u0420\u0435\u0436\u0438\u043c \u0421\u043f\u0440\u0420\u0435\u043a\u0432\u0422\u0438\u043f\u0422\u0435\u043a\u0441\u0442 \u0421\u043f\u0440\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u0421\u043f\u0440\u0421\u043e\u0441\u0442 \u0421\u043f\u0440\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u0421\u043f\u0440\u0422\u0431\u043b\u0418\u0442\u043e\u0433 \u0421\u043f\u0440\u0422\u0431\u043b\u0421\u0442\u0440 \u0421\u043f\u0440\u0422\u0431\u043b\u0421\u0442\u0440\u041a\u043e\u043b \u0421\u043f\u0440\u0422\u0431\u043b\u0421\u0442\u0440\u041c\u0430\u043a\u0441 \u0421\u043f\u0440\u0422\u0431\u043b\u0421\u0442\u0440\u041c\u0438\u043d \u0421\u043f\u0440\u0422\u0431\u043b\u0421\u0442\u0440\u041f\u0440\u0435\u0434 \u0421\u043f\u0440\u0422\u0431\u043b\u0421\u0442\u0440\u0421\u043b\u0435\u0434 \u0421\u043f\u0440\u0422\u0431\u043b\u0421\u0442\u0440\u0421\u043e\u0437\u0434 \u0421\u043f\u0440\u0422\u0431\u043b\u0421\u0442\u0440\u0423\u0434 \u0421\u043f\u0440\u0422\u0435\u043a\u041f\u0440\u0435\u0434\u0441\u0442 \u0421\u043f\u0440\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0421\u0440\u0430\u0432\u043d\u0438\u0442\u044c\u0421\u0442\u0440 \u0421\u0442\u0440\u0412\u0435\u0440\u0445\u0420\u0435\u0433\u0438\u0441\u0442\u0440 \u0421\u0442\u0440\u041d\u0438\u0436\u043d\u0420\u0435\u0433\u0438\u0441\u0442\u0440 \u0421\u0442\u0440\u0422\u0431\u043b\u0421\u043f\u0440 \u0421\u0443\u043c\u041f\u0440\u043e\u043f \u0421\u0446\u0435\u043d\u0430\u0440\u0438\u0439 \u0421\u0446\u0435\u043d\u0430\u0440\u0438\u0439\u041f\u0430\u0440\u0430\u043c \u0422\u0435\u043a\u0412\u0435\u0440\u0441\u0438\u044f \u0422\u0435\u043a\u041e\u0440\u0433 \u0422\u043e\u0447\u043d \u0422\u0440\u0430\u043d \u0422\u0440\u0430\u043d\u0441\u043b\u0438\u0442\u0435\u0440\u0430\u0446\u0438\u044f \u0423\u0434\u0430\u043b\u0438\u0442\u044c\u0422\u0430\u0431\u043b\u0438\u0446\u0443 \u0423\u0434\u0430\u043b\u0438\u0442\u044c\u0424\u0430\u0439\u043b \u0423\u0434\u0421\u043f\u0440 \u0423\u0434\u0421\u0442\u0440\u0422\u0431\u043b\u0421\u043f\u0440 \u0423\u0441\u0442 \u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0438\u041a\u043e\u043d\u0441\u0442\u0430\u043d\u0442 \u0424\u0430\u0439\u043b\u0410\u0442\u0440\u0438\u0431\u0443\u0442\u0421\u0447\u0438\u0442\u0430\u0442\u044c \u0424\u0430\u0439\u043b\u0410\u0442\u0440\u0438\u0431\u0443\u0442\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c \u0424\u0430\u0439\u043b\u0412\u0440\u0435\u043c\u044f \u0424\u0430\u0439\u043b\u0412\u0440\u0435\u043c\u044f\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c \u0424\u0430\u0439\u043b\u0412\u044b\u0431\u0440\u0430\u0442\u044c \u0424\u0430\u0439\u043b\u0417\u0430\u043d\u044f\u0442 \u0424\u0430\u0439\u043b\u0417\u0430\u043f\u0438\u0441\u0430\u0442\u044c \u0424\u0430\u0439\u043b\u0418\u0441\u043a\u0430\u0442\u044c \u0424\u0430\u0439\u043b\u041a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0424\u0430\u0439\u043b\u041c\u043e\u0436\u043d\u043e\u0427\u0438\u0442\u0430\u0442\u044c \u0424\u0430\u0439\u043b\u041e\u0442\u043a\u0440\u044b\u0442\u044c \u0424\u0430\u0439\u043b\u041f\u0435\u0440\u0435\u0438\u043c\u0435\u043d\u043e\u0432\u0430\u0442\u044c \u0424\u0430\u0439\u043b\u041f\u0435\u0440\u0435\u043a\u043e\u0434\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0424\u0430\u0439\u043b\u041f\u0435\u0440\u0435\u043c\u0435\u0441\u0442\u0438\u0442\u044c \u0424\u0430\u0439\u043b\u041f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c \u0424\u0430\u0439\u043b\u0420\u0430\u0437\u043c\u0435\u0440 \u0424\u0430\u0439\u043b\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u0424\u0430\u0439\u043b\u0421\u0441\u044b\u043b\u043a\u0430\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u0424\u0430\u0439\u043b\u0421\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442 \u0424\u0430\u0439\u043b\u0421\u0447\u0438\u0442\u0430\u0442\u044c \u0424\u0430\u0439\u043b\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0424\u043c\u0442SQL\u0414\u0430\u0442 \u0424\u043c\u0442\u0414\u0430\u0442 \u0424\u043c\u0442\u0421\u0442\u0440 \u0424\u043c\u0442\u0427\u0441\u043b \u0424\u043e\u0440\u043c\u0430\u0442 \u0426\u041c\u0430\u0441\u0441\u0438\u0432\u042d\u043b\u0435\u043c\u0435\u043d\u0442 \u0426\u041d\u0430\u0431\u043e\u0440\u0414\u0430\u043d\u043d\u044b\u0445\u0420\u0435\u043a\u0432\u0438\u0437\u0438\u0442 \u0426\u041f\u043e\u0434\u0441\u0442\u0440 "],n,n),e,k,k,k,!0,k,k,k,k,k,k),A.a(k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,a0,k,k,k,k,k,k,k,k,k),A.a(k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,f,k,k,k,k,k,k,k,k,k),A.a(k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,h,k,k,k,k,k,k,k,k,k),A.a(k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,i,k,k,k,k,k,k,k,k,k),A.a(k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,j,k,k,k,k,k,k,k,k,k)],a4),k,"\\)$",k,k,k,k,k,"[\\[\\]\\|\\$\\?%,\\x7e#@]",q,e,k,k,k,!0,k,k,k,k,k,k),A.a(k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,g,k,k,k,k,k,k,k,k,k),A.a(k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,a0,k,k,k,k,k,k,k,k,k),A.a(k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,f,k,k,k,k,k,k,k,k,k),A.a(k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,h,k,k,k,k,k,k,k,k,k),A.a(k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,i,k,k,k,k,k,k,k,k,k),A.a(k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,j,k,k,k,k,k,k,k,k,k)],a4),k,k,k,k,k,k,k,"\\$|\\?|%|,|;$|\\x7e|#|@|{var q="false synchronized int abstract float private char boolean var static null if const for true while long strictfp finally protected import native final void enum else break transient catch instanceof byte super volatile case assert short package default double public try this switch continue throws protected public private module requires exports do",p=null,o="@[A-Za-z]+",n="class interface",m=A.b(["jsp"],t.s),l=t._,k=A.a(p,"/\\*\\*",p,p,"comment",A.b([A.a(p,"\\w+@",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p),A.a(p,o,p,p,"doctag",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),$.aq(),A.a(p,"(?:TODO|FIXME|NOTE|BUG|XXX):",p,p,"doctag",p,p,p,p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p)],l),p,"\\*/",p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p),j=$.ba(),i=$.b_(),h=$.c0(),g=$.aM(),f=A.a(p,p,"extends implements",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),e=$.dU() -return A.a(m,p,p,p,p,A.b([k,j,i,h,g,A.a(p,p,n,p,"class",A.b([f,e],l),p,"[{;=]",p,p,p,p,!0,'[:"\\[\\]]',n,p,p,p,p,p,p,p,p,p,p,p),A.a(p,p,"new throw return else",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p),A.a(p,"([\xc0-\u02b8a-zA-Z_$][\xc0-\u02b8a-zA-Z_$0-9]*(<[\xc0-\u02b8a-zA-Z_$][\xc0-\u02b8a-zA-Z_$0-9]*(\\s*,\\s*[\xc0-\u02b8a-zA-Z_$][\xc0-\u02b8a-zA-Z_$0-9]*)*>)?\\s+)+[a-zA-Z_]\\w*\\s*\\(",p,p,"function",A.b([A.a(p,"[a-zA-Z_]\\w*\\s*\\(",p,p,p,A.b([e],l),p,p,p,p,p,p,p,p,p,p,p,p,0,!0,p,p,p,p,p,p),A.a(p,"\\(",p,p,"params",A.b([h,g,$.bw(),i],l),p,"\\)",p,p,p,p,p,p,q,p,p,p,0,p,p,p,p,p,p,p),j,i],l),p,"[{;=]",p,p,p,p,!0,p,q,p,p,p,p,!0,p,p,p,p,p,p),A.a(p,u.d,p,p,"number",p,p,p,p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p),A.a(p,o,p,p,"meta",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p)],l),p,p,p,p,p,p,p,"<\\/|#",q,p,p,A.m(t.N,t.n),p,p,p,p,p,p,p,p)}) -s($,"bdO","aSY",()=>{var q,p,o,n,m,l,k="~contains~4~starts~contains~1~contains~5",j=null,i="~contains~4~starts~contains~1~contains~4",h="~contains~4~starts~contains~1",g="~contains~4~starts~contains~1~contains~3",f="in of if for while finally var new function do return void else break catch instanceof with throw case default try this switch continue typeof delete let yield const export super debugger as async await static import from as",e="true false null undefined NaN Infinity",d="eval isFinite isNaN parseFloat parseInt decodeURI decodeURIComponent encodeURI encodeURIComponent escape unescape Object Function Boolean Error EvalError InternalError RangeError ReferenceError StopIteration SyntaxError TypeError URIError Number Math Date String RegExp Array Float32Array Float64Array Int16Array Int32Array Int8Array Uint16Array Uint32Array Uint8Array Uint8ClampedArray ArrayBuffer DataView JSON Intl arguments require module console window document Symbol Set Map WeakSet WeakMap Proxy Reflect Promise",c="~contains~4",b="[A-Za-z$_][0-9A-Za-z$_]*",a="function",a0="<[A-Za-z0-9\\\\._:-]+",a1="\\/[A-Za-z0-9\\\\._:-]+>|\\/>",a2=t._,a3=A.a(j,j,j,j,"number",j,j,j,j,j,j,j,j,j,j,j,j,j,0,j,j,j,j,j,j,A.b([A.a(j,"\\b(0[bB][01]+)n?",j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j),A.a(j,"\\b(0[oO][0-7]+)n?",j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j),A.a(j,u.j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j)],a2)),a4=$.aZ(),a5=A.a(j,"`",j,j,"string",A.b([a4,A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,h,j,j,j,j,j,j,j,j,j)],a2),j,"`",j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j),a6=t.s,a7=A.a(j,"css`",j,j,j,j,j,"",j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,A.a(j,j,j,j,j,A.b([a4,A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,h,j,j,j,j,j,j,j,j,j)],a2),j,"`",j,j,j,j,j,j,j,j,j,j,j,j,!1,j,j,j,A.b(["css"],a6),j),j,j),a8=t.N,a9=A.l(["keyword",f,"literal",e,"built_in",d],a8,a8),b0=$.c0(),b1=$.aM(),b2=A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,c,j,j,j,j,j,j,j,j,j),b3=A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,g,j,j,j,j,j,j,j,j,j),b4=A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,i,j,j,j,j,j,j,j,j,j),b5=A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,k,j,j,j,j,j,j,j,j,j),b6=$.yQ() -a4=A.l([k,a3,i,a5,g,a7,h,A.a(j,"\\$\\{",j,j,"subst",A.b([b0,b1,b2,b3,b4,b5,b6],a2),j,"\\}",j,j,j,j,j,j,a9,j,j,j,j,j,j,j,j,j,j,j),"~contains~4",A.a(j,"html`",j,j,j,j,j,"",j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,A.a(j,j,j,j,j,A.b([a4,A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,h,j,j,j,j,j,j,j,j,j)],a2),j,"`",j,j,j,j,j,j,j,j,j,j,j,j,!1,j,j,j,A.b(["xml"],a6),j),j,j)],a8,t.n) -a9=A.b(["js","jsx","mjs","cjs"],a6) -b5=A.l(["keyword",f,"literal",e,"built_in",d],a8,a8) -b4=A.a(j,"^\\s*['\"]use (strict|asm)['\"]",j,j,"meta",j,j,j,j,j,j,j,j,j,j,j,j,j,10,j,j,j,j,j,j,j) -b3=A.a(j,"^#!",j,j,"meta",j,j,"$",j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j) -b2=A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,c,j,j,j,j,j,j,j,j,j) -a7=A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,g,j,j,j,j,j,j,j,j,j) -a5=A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,i,j,j,j,j,j,j,j,j,j) -a3=$.ba() -q=A.a(j,"/\\*\\*",j,j,"comment",A.b([A.a(j,"@[A-Za-z]+",j,j,"doctag",A.b([A.a(j,"\\{",j,j,"type",j,j,"\\}",j,j,j,j,j,j,j,j,j,j,0,j,j,j,j,j,j,j),A.a(j,"[A-Za-z$_][0-9A-Za-z$_]*(?=\\s*(-)|$)",j,j,"variable",j,j,j,j,!0,j,j,j,j,j,j,j,j,0,j,j,j,j,j,j,j),A.a(j,"(?=[^\\n])\\s",j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,0,j,j,j,j,j,j,j)],a2),j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j),$.aq(),A.a(j,"(?:TODO|FIXME|NOTE|BUG|XXX):",j,j,"doctag",j,j,j,j,j,j,j,j,j,j,j,j,j,0,j,j,j,j,j,j,j)],a2),j,"\\*/",j,j,j,j,j,j,j,j,j,j,0,j,j,j,j,j,j,j) -p=$.b_() -o=A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,k,j,j,j,j,j,j,j,j,j) -n=A.a(j,"[{,\\n]\\s*",j,j,j,A.b([A.a(j,"[A-Za-z$_][0-9A-Za-z$_]*\\s*:",j,j,j,A.b([A.a(j,b,j,j,"attr",j,j,j,j,j,j,j,j,j,j,j,j,j,0,j,j,j,j,j,j,j)],a2),j,j,j,j,j,j,j,j,j,j,j,j,0,!0,j,j,j,j,j,j)],a2),j,j,j,j,j,j,j,j,j,j,j,j,0,j,j,j,j,j,j,j) -m=A.a(j,b,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j) -l=A.a(j,"\\(\\s*\\)",j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j) -a8=A.l(["keyword",f,"literal",e,"built_in",d],a8,a8) -a8=A.a(j,"(\\(.*?\\)|[A-Za-z$_][0-9A-Za-z$_]*)\\s*=>",j,j,a,A.b([A.a(j,j,j,j,"params",j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,A.b([m,l,A.a(j,"\\(",j,j,j,A.b([b0,b1,A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,c,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,g,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,i,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,k,j,j,j,j,j,j,j,j,j),b6,p,a3],a2),j,"\\)",j,j,j,!0,!0,j,a8,j,j,j,j,j,j,j,j,j,j,j)],a2))],a2),j,"\\s*=>",j,j,j,j,j,j,j,j,j,j,j,!0,j,j,j,j,j,j) -l=A.a(j,"\\s",j,j,"",j,j,"\\s*",j,j,j,j,j,j,j,j,j,j,j,j,j,j,!0,j,j,j) -m=A.b([A.a(j,"<>",j,j,j,j,j,"",j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j),A.a(j,a0,j,j,j,j,j,a1,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j)],a2) -a6=A.b(["xml"],a6) -return A.a(a9,j,j,j,j,A.b([b4,b3,b0,b1,b2,a7,a5,a3,q,p,o,n,A.a(j,u.X,j,j,j,A.b([a3,p,b6,a8,l,A.a(j,j,j,j,j,A.b([A.a(j,a0,j,j,j,A.b([A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,!0,j,j,j,j)],a2),j,a1,j,j,j,j,j,j,j,j,j,j,j,j,j,j,!0,j,j,j)],a2),j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,a6,m)],a2),j,j,j,j,j,j,j,j,"return throw case",j,j,j,0,j,j,j,j,j,j,j),A.a(j,j,a,j,a,A.b([A.a(j,b,j,j,"title",j,j,j,j,j,j,j,j,j,j,j,j,j,0,j,j,j,j,j,j,j),A.a(j,"\\(",j,j,"params",A.b([b0,b1,A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,c,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,g,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,i,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,k,j,j,j,j,j,j,j,j,j),b6,p,a3],a2),j,"\\)",j,j,j,!0,!0,j,j,j,j,j,j,j,j,j,j,j,j,j)],a2),j,"\\{",j,j,j,j,!0,"\\[|%",j,j,j,j,j,j,j,j,j,j,j,j),A.a(j,"\\$[(.]",j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j),$.aG3(),A.a(j,j,"class",j,"class",A.b([A.a(j,j,"extends",j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j),$.dU()],a2),j,"[{;=]",j,j,j,j,!0,'[:"\\[\\]]',j,j,j,j,j,j,j,j,j,j,j,j),A.a(j,j,"constructor get set",j,j,j,j,"\\{",j,j,j,j,!0,j,j,j,j,j,j,j,j,j,j,j,j,j)],a2),j,j,j,j,j,j,j,"#(?!!)",b5,j,j,a4,j,j,j,j,j,j,j,j)}) -s($,"bdP","aSZ",()=>{var q=null,p=t.N,o=A.b(["wildfly-cli"],t.s),n=A.l(["keyword","alias batch cd clear command connect connection-factory connection-info data-source deploy deployment-info deployment-overlay echo echo-dmr help history if jdbc-driver-info jms-queue|20 jms-topic|20 ls patch pwd quit read-attribute read-operation reload rollout-plan run-batch set shutdown try unalias undeploy unset version xa-data-source","literal","true false"],p,p),m=t._ -return A.a(o,q,q,q,q,A.b([$.ch(),$.aM(),A.a(q,"--[\\w\\-=\\/]+",q,q,"params",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,":[\\w\\-.]+",q,q,"function",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q),A.a(q,"\\B(([\\/.])[\\w\\-.\\/=]+)+",q,q,"string",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\(",q,q,"params",A.b([A.a(q,"[\\w-]+ *=",q,q,q,A.b([A.a(q,"[\\w-]+",q,q,"attr",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],m),q,q,q,q,q,q,q,q,q,q,q,q,0,!0,q,q,q,q,q,q)],m),q,"\\)",q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q)],m),q,q,q,q,q,q,q,q,n,"[a-z-]+",q,A.m(p,t.n),q,q,q,q,q,q,q,q)}) -s($,"bdQ","aT_",()=>{var q="~contains~2~contains~1~contains~3",p="~contains~2",o=null,n=$.aM(),m=$.bw(),l=A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,p,o,o,o,o,o,o,o,o,o),k=A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,q,o,o,o,o,o,o,o,o,o),j=$.ba(),i=$.b_(),h=t._,g=t.N -k=A.l([q,A.a(o,"\\[",o,o,o,A.b([A.a(o,o,o,o,o,A.b([n,m,l,k,j,i],h),o,",",o,o,!0,o,!0,o,A.l(["literal","true false null"],g,g),o,o,o,o,o,o,o,o,o,o,o)],h),o,"\\]",o,o,o,o,o,"\\S",o,o,o,o,o,o,o,o,o,o,o,o),"~contains~2",A.a(o,"{",o,o,o,A.b([A.a(o,'"',o,o,"attr",A.b([$.aZ()],h),o,'"',o,o,o,o,o,"\\n",o,o,o,o,o,o,o,o,o,o,o,o),A.a(o,":",o,o,o,A.b([n,m,A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,p,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,q,o,o,o,o,o,o,o,o,o),j,i],h),o,",",o,o,!0,o,!0,o,A.l(["literal","true false null"],g,g),o,o,o,o,o,o,o,o,o,o,o),j,i],h),o,"}",o,o,o,o,o,"\\S",o,o,o,o,o,o,o,o,o,o,o,o)],g,t.n) -return A.a(o,o,o,o,o,A.b([n,m,A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,p,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,q,o,o,o,o,o,o,o,o,o),j,i],h),o,o,o,o,o,o,o,"\\S",A.l(["literal","true false null"],g,g),o,o,k,o,o,o,o,o,o,o,o)}) -s($,"bdS","aT1",()=>{var q=null,p=t.s,o=A.a(q,q,q,q,q,q,q,"^(?![ ]{6})",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,A.b(["julia"],p),q) -return A.a(q,q,q,q,q,A.b([A.a(A.b(["jldoctest"],p),"^julia>",q,q,"meta",q,q,q,q,q,q,q,q,q,q,q,q,q,10,q,q,q,q,o,q,q)],t._),q,q,q,q,q,q,q,q,q,q,q,A.m(t.N,t.n),q,q,q,q,q,q,q,q)}) -s($,"bdR","aT0",()=>{var q="~contains~2~contains~1~contains~8",p=null,o="~contains~2~contains~1~contains~7",n="~contains~2~contains~1~contains~5",m="~contains~2~contains~1~contains~4",l="~contains~2~contains~1~contains~3~contains~2",k="~contains~2~contains~1~contains~3",j="string",i="~contains~2~contains~1",h="in isa where baremodule begin break catch ccall const continue do else elseif end export false finally for function global if import importall let local macro module quote return true try using while type immutable abstract bitstype typealias ",g="true false ARGS C_NULL DevNull ENDIAN_BOM ENV I Inf Inf16 Inf32 Inf64 InsertionSort JULIA_HOME LOAD_PATH MergeSort NaN NaN16 NaN32 NaN64 PROGRAM_FILE QuickSort RoundDown RoundFromZero RoundNearest RoundNearestTiesAway RoundNearestTiesUp RoundToZero RoundUp STDERR STDIN STDOUT VERSION catalan e|0 eu|0 eulergamma golden im nothing pi \u03b3 \u03c0 \u03c6 ",f="ANY AbstractArray AbstractChannel AbstractFloat AbstractMatrix AbstractRNG AbstractSerializer AbstractSet AbstractSparseArray AbstractSparseMatrix AbstractSparseVector AbstractString AbstractUnitRange AbstractVecOrMat AbstractVector Any ArgumentError Array AssertionError Associative Base64DecodePipe Base64EncodePipe Bidiagonal BigFloat BigInt BitArray BitMatrix BitVector Bool BoundsError BufferStream CachingPool CapturedException CartesianIndex CartesianRange Cchar Cdouble Cfloat Channel Char Cint Cintmax_t Clong Clonglong ClusterManager Cmd CodeInfo Colon Complex Complex128 Complex32 Complex64 CompositeException Condition ConjArray ConjMatrix ConjVector Cptrdiff_t Cshort Csize_t Cssize_t Cstring Cuchar Cuint Cuintmax_t Culong Culonglong Cushort Cwchar_t Cwstring DataType Date DateFormat DateTime DenseArray DenseMatrix DenseVecOrMat DenseVector Diagonal Dict DimensionMismatch Dims DirectIndexString Display DivideError DomainError EOFError EachLine Enum Enumerate ErrorException Exception ExponentialBackOff Expr Factorization FileMonitor Float16 Float32 Float64 Function Future GlobalRef GotoNode HTML Hermitian IO IOBuffer IOContext IOStream IPAddr IPv4 IPv6 IndexCartesian IndexLinear IndexStyle InexactError InitError Int Int128 Int16 Int32 Int64 Int8 IntSet Integer InterruptException InvalidStateException Irrational KeyError LabelNode LinSpace LineNumberNode LoadError LowerTriangular MIME Matrix MersenneTwister Method MethodError MethodTable Module NTuple NewvarNode NullException Nullable Number ObjectIdDict OrdinalRange OutOfMemoryError OverflowError Pair ParseError PartialQuickSort PermutedDimsArray Pipe PollingFileWatcher ProcessExitedException Ptr QuoteNode RandomDevice Range RangeIndex Rational RawFD ReadOnlyMemoryError Real ReentrantLock Ref Regex RegexMatch RemoteChannel RemoteException RevString RoundingMode RowVector SSAValue SegmentationFault SerializationState Set SharedArray SharedMatrix SharedVector Signed SimpleVector Slot SlotNumber SparseMatrixCSC SparseVector StackFrame StackOverflowError StackTrace StepRange StepRangeLen StridedArray StridedMatrix StridedVecOrMat StridedVector String SubArray SubString SymTridiagonal Symbol Symmetric SystemError TCPSocket Task Text TextDisplay Timer Tridiagonal Tuple Type TypeError TypeMapEntry TypeMapLevel TypeName TypeVar TypedSlot UDPSocket UInt UInt128 UInt16 UInt32 UInt64 UInt8 UndefRefError UndefVarError UnicodeError UniformScaling Union UnionAll UnitRange Unsigned UpperTriangular Val Vararg VecElement VecOrMat Vector VersionNumber Void WeakKeyDict WeakRef WorkerConfig WorkerPool ",e="~contains~0",d="~contains~1",c="~contains~2",b=A.a(p,"<:",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),a=A.a(p,"\\b(((abstract|primitive)\\s+)type|(mutable\\s+)?struct)\\b",p,p,"keyword",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),a0=t._,a1=A.a(p,p,p,p,"comment",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,A.b([A.a(p,"#=",p,p,p,p,p,"=#",p,p,p,p,p,p,p,p,p,p,10,p,p,p,p,p,p,p),A.a(p,"#",p,p,p,p,p,"$",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p)],a0)),a2=A.a(p,"@[A-Za-z_\\u00A1-\\uFFFF][A-Za-z_0-9\\u00A1-\\uFFFF]*",p,p,"meta",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),a3=A.a(p,"\\$[A-Za-z_\\u00A1-\\uFFFF][A-Za-z_0-9\\u00A1-\\uFFFF]*",p,p,"variable",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),a4=$.aZ(),a5=A.a(p,"`",p,p,j,A.b([a4,A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,i,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,l,p,p,p,p,p,p,p,p,p)],a0),p,"`",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),a6=t.N,a7=A.l(["keyword",h,"literal",g,"built_in",f],a6,a6),a8=A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,e,p,p,p,p,p,p,p,p,p),a9=A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,d,p,p,p,p,p,p,p,p,p),b0=A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,c,p,p,p,p,p,p,p,p,p),b1=A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,k,p,p,p,p,p,p,p,p,p),b2=A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,m,p,p,p,p,p,p,p,p,p),b3=A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,n,p,p,p,p,p,p,p,p,p),b4=$.ch() -a4=A.l([q,b,o,a,n,a1,m,a2,l,a3,k,a5,i,A.a(p,"\\$\\(",p,p,"subst",A.b([a8,a9,b0,b1,b2,b3,b4,A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,o,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,q,p,p,p,p,p,p,p,p,p)],a0),p,"\\)",p,p,p,p,p,p,a7,p,p,p,p,p,p,p,p,p,p,p),"~contains~2",A.a(p,p,p,p,j,A.b([a4,A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,i,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,l,p,p,p,p,p,p,p,p,p)],a0),p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,A.b([A.a(p,'\\w*"""',p,p,p,p,p,'"""\\w*',p,p,p,p,p,p,p,p,p,p,10,p,p,p,p,p,p,p),A.a(p,'\\w*"',p,p,p,p,p,'"\\w*',p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p)],a0)),"~contains~1",A.a(p,"'(.|\\\\[xXuU][a-zA-Z0-9]+)'",p,p,j,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),"~contains~0",A.a(p,"(\\b0x[\\d_]*(\\.[\\d_]*)?|0x\\.\\d[\\d_]*)p[-+]?\\d+|\\b0[box][a-fA-F0-9][a-fA-F0-9_]*|(\\b\\d[\\d_]*(\\.[\\d_]*)?|\\.\\d[\\d_]*)([eEfF][-+]?\\d+)?",p,p,"number",p,p,p,p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p)],a6,t.n) -a6=A.l(["keyword",h,"literal",g,"built_in",f],a6,a6) -return A.a(p,p,p,p,p,A.b([A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,e,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,d,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,c,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,k,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,m,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,n,p,p,p,p,p,p,p,p,p),b4,A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,o,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,q,p,p,p,p,p,p,p,p,p)],a0),p,p,p,p,p,p,p,"<\\/",a6,"[A-Za-z_\\u00A1-\\uFFFF][A-Za-z_0-9\\u00A1-\\uFFFF]*",p,a4,p,p,p,p,p,p,p,p)}) -s($,"be_","aT6",()=>{var q,p,o,n,m,l,k,j,i,h,g,f,e,d="~contains~7~contains~2~contains~0~contains~0",c="type",b=null,a="~contains~6~contains~0~contains~0~variants~0~contains~1~contains~1~variants~2",a0="~contains~6~contains~0~contains~0~variants~0~contains~0",a1="~contains~6~contains~0~contains~0~variants~0~contains~1",a2="~contains~6~contains~0~contains~0~variants~0~contains~1~contains~1~variants~1",a3="~contains~6~contains~0~contains~0~variants~0~contains~1~contains~1",a4="~contains~6~contains~0~contains~0~variants~0",a5="~contains~6",a6="meta",a7="~contains~5",a8="~contains~2",a9="doctag",b0="(?:TODO|FIXME|NOTE|BUG|XXX):",b1="abstract as val var vararg get set class object open private protected public noinline crossinline dynamic final enum if else do while for when throw try catch finally import package is in fun override companion reified inline lateinit init interface annotation data sealed internal infix operator out by constructor super tailrec where const inner suspend typealias external expect actual trait volatile transient native default",b2="Byte Short Char Int Long Boolean Float Double Void Unit Nothing",b3=t._,b4=A.a(b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,A.b([A.a(b,"[a-zA-Z_]\\w*",b,b,c,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b),A.a(b,"\\(",b,b,b,A.b([A.a(b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,d,b,b,b,b,b,b,b,b,b)],b3),b,"\\)",b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b)],b3)),b5=$.aZ(),b6=A.a(b,'"',b,b,b,A.b([b5,A.a(b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,a0,b,b,b,b,b,b,b,b,b),A.a(b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,a1,b,b,b,b,b,b,b,b,b)],b3),b,'"',b,b,b,b,b,"\\n",b,b,b,b,b,b,b,b,b,b,b,b) -b5=A.a(b,"'",b,b,b,A.b([b5],b3),b,"'",b,b,b,b,b,"\\n",b,b,b,b,b,b,b,b,b,b,b,b) -q=A.a(b,b,b,b,"string",b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,A.b([A.a(b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,a4,b,b,b,b,b,b,b,b,b),A.a(b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,a2,b,b,b,b,b,b,b,b,b),A.a(b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,a,b,b,b,b,b,b,b,b,b)],b3)) -p=$.bw() -o=A.a(b,"\\${",b,b,"subst",A.b([p,A.a(b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,a3,b,b,b,b,b,b,b,b,b)],b3),b,"}",b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b) -n=A.a(b,"\\$[a-zA-Z_]\\w*",b,b,"variable",b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b) -m=A.a(b,'"""',b,b,b,A.b([A.a(b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,a0,b,b,b,b,b,b,b,b,b),A.a(b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,a1,b,b,b,b,b,b,b,b,b)],b3),b,'"""(?=[^"])',b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b) -l=A.a(b,"@[a-zA-Z_]\\w*",b,b,a6,A.b([A.a(b,"\\(",b,b,b,A.b([A.a(b,b,b,b,"meta-string",b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,A.b([A.a(b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,a4,b,b,b,b,b,b,b,b,b),A.a(b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,a2,b,b,b,b,b,b,b,b,b),A.a(b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,a,b,b,b,b,b,b,b,b,b)],b3))],b3),b,"\\)",b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b)],b3),b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b) -k=A.a(b,"@(?:file|property|field|get|set|receiver|param|setparam|delegate)\\s*:(?:\\s*[a-zA-Z_]\\w*)?",b,b,a6,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b) -j=$.b_() -i=$.aq() -h=t.N -j=A.l([d,b4,a,b6,a2,b5,a3,q,a1,o,a0,n,a4,m,"~contains~6",l,"~contains~5",k,"~contains~2",A.a(b,"/\\*",b,b,"comment",A.b([j,i,A.a(b,b0,b,b,a9,b,b,b,b,b,b,b,b,b,b,b,b,b,0,b,b,b,b,b,b,b)],b3),b,"\\*/",b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b)],h,t.n) -k=A.b(["kt"],t.s) -l=A.l(["keyword",b1,"built_in",b2,"literal","true false null"],h,h) -i=A.a(b,"/\\*\\*",b,b,"comment",A.b([A.a(b,"@[A-Za-z]+",b,b,a9,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b),i,A.a(b,b0,b,b,a9,b,b,b,b,b,b,b,b,b,b,b,b,b,0,b,b,b,b,b,b,b)],b3),b,"\\*/",b,b,b,b,b,b,b,b,b,b,0,b,b,b,b,b,b,b) -m=$.ba() -n=A.a(b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,a8,b,b,b,b,b,b,b,b,b) -o=A.a(b,"\\b(break|continue|return|this)\\b",b,b,"keyword",b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,A.a(b,b,b,b,b,A.b([A.a(b,"@\\w+",b,b,"symbol",b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b)],b3),b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b),b,b) -q=A.a(b,"[a-zA-Z_]\\w*@",b,b,"symbol",b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b) -b5=A.a(b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,a7,b,b,b,b,b,b,b,b,b) -b6=A.a(b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,a5,b,b,b,b,b,b,b,b,b) -b4=A.l(["keyword",b1,"built_in",b2,"literal","true false null"],h,h) -g=$.dU() -f=A.a(b,"[a-zA-Z_]\\w*\\s*\\(",b,b,b,A.b([g],b3),b,b,b,b,b,b,b,b,b,b,b,b,0,!0,b,b,b,b,b,b) -e=A.a(b,"<",b,b,c,b,b,">",b,b,b,b,b,b,"reified",b,b,b,0,b,b,b,b,b,b,b) -h=A.l(["keyword",b1,"built_in",b2,"literal","true false null"],h,h) -return A.a(k,b,b,b,b,A.b([i,m,n,o,q,b5,b6,A.a(b,b,"fun",b,"function",A.b([f,e,A.a(b,"\\(",b,b,"params",A.b([A.a(b,":",b,b,b,A.b([A.a(b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,d,b,b,b,b,b,b,b,b,b),m,A.a(b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,a8,b,b,b,b,b,b,b,b,b)],b3),b,"[=,\\/]",b,b,!0,b,b,b,b,b,b,b,0,b,b,b,b,b,b,b),m,A.a(b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,a8,b,b,b,b,b,b,b,b,b),A.a(b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,a7,b,b,b,b,b,b,b,b,b),A.a(b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,a5,b,b,b,b,b,b,b,b,b),A.a(b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,a3,b,b,b,b,b,b,b,b,b),p],b3),b,"\\)",b,!0,b,b,b,b,h,b,b,b,0,b,b,b,b,b,b,b),A.a(b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,a8,b,b,b,b,b,b,b,b,b)],b3),b,"[(]|$",b,b,b,b,!0,"fun\\s+(<.*>)?[^\\s\\(]+(\\s+[^\\s\\(]+)\\s*=",b4,b,b,b,5,!0,b,b,b,b,b,b),A.a(b,b,"class interface trait",b,"class",A.b([A.a(b,b,"public protected internal private constructor",b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b),g,A.a(b,"<",b,b,c,b,b,">",b,b,b,!0,!0,b,b,b,b,b,0,b,b,b,b,b,b,b),A.a(b,"[,:]\\s*",b,b,c,b,b,"[<\\(,]|$",b,b,b,!0,b,b,b,b,b,b,b,b,!0,b,b,b,b,b),A.a(b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,a7,b,b,b,b,b,b,b,b,b),A.a(b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,a5,b,b,b,b,b,b,b,b,b)],b3),b,"[:\\{(]|$",b,b,b,b,!0,"extends implements",b,b,b,b,b,b,b,b,b,b,b,b),A.a(b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,a3,b,b,b,b,b,b,b,b,b),A.a(b,"^#!/usr/bin/env",b,b,a6,b,b,"$",b,b,b,b,b,"\n",b,b,b,b,b,b,b,b,b,b,b,b),A.a(b,u.d,b,b,"number",b,b,b,b,b,b,b,b,b,b,b,b,b,0,b,b,b,b,b,b,b)],b3),b,b,b,b,b,b,b,b,l,b,b,j,b,b,b,b,b,b,b,b)}) -s($,"be1","aT8",()=>{var q,p,o,n,m,l,k,j,i="~contains~3~starts~contains~9",h=null,g="~contains~3~starts~contains~8",f="string",e="~contains~3~starts~contains~7",d="~contains~3~starts~contains~6",c="~contains~3~starts~contains~5",b="~contains~3~starts~contains~13",a="~contains~3~starts~contains~12",a0="~contains~3~starts~contains~11",a1="~contains~3~starts~contains~10",a2="~contains~2",a3="meta",a4="~contains~1",a5="~contains~0~starts~contains~0",a6="[a-zA-Z_][\\w.]*|&[lg]t;",a7="true false none minimal full all void and or not bw nbw ew new cn ncn lt lte gt gte eq neq rx nrx ft",a8="array date decimal duration integer map pair string tag xml null boolean bytes keyword list locale queue set stack staticarray local var variable global data self inherited currentcapture givenblock",a9="cache database_names database_schemanames database_tablenames define_tag define_type email_batch encode_set html_comment handle handle_error header if inline iterate ljax_target link link_currentaction link_currentgroup link_currentrecord link_detail link_firstgroup link_firstrecord link_lastgroup link_lastrecord link_nextgroup link_nextrecord link_prevgroup link_prevrecord log loop namespace_using output_none portal private protect records referer referrer repeating resultset rows search_args search_arguments select sort_args sort_arguments thread_atomic value_list while abort case else fail_if fail_ifnot fail if_empty if_false if_null if_true loop_abort loop_continue loop_count params params_up return return_value run_children soap_definetag soap_lastrequest soap_lastresponse tag_name ascending average by define descending do equals frozen group handle_failure import in into join let match max min on order parent protected provide public require returnhome skip split_thread sum take thread to trait type where with yield yieldhome",b0=t._,b1=A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,A.b([A.a(h,"[#$][a-zA-Z_][\\w.]*",h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h),A.a(h,"#",h,h,h,h,h,"\\d+",h,h,h,h,h,"\\W",h,h,h,h,h,h,h,h,h,h,h,h)],b0)),b2=A.a(h,"`",h,h,f,h,h,"`",h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h),b3=$.aZ(),b4=t.N -b3=A.l([i,b1,g,b2,e,A.a(h,'"',h,h,f,A.b([b3],b0),h,'"',h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h),d,A.a(h,"'",h,h,f,A.b([b3],b0),h,"'",h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h),c,A.a(h,"(-?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)|(-?infinity|NaN)\\b",h,h,"number",h,h,h,h,h,h,h,h,h,h,h,h,h,0,h,h,h,h,h,h,h),b,A.a(h,h,"define",h,"class",A.b([A.a(h,"[a-zA-Z_][\\w.]*(=(?!>))?|[-+*/%](?!>)",h,h,"title",h,h,h,h,h,h,h,h,h,h,h,h,h,0,h,h,h,h,h,h,h)],b0),h,"\\(|=>",h,h,h,h,h,h,h,h,h,h,h,h,!0,h,h,h,h,h),a,A.a(h,"(->|\\.)\\s*",h,h,h,A.b([A.a(h,"'[a-zA-Z_][\\w.]*'",h,h,"symbol",h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h)],b0),h,h,h,h,h,h,h,h,h,h,h,h,0,h,h,h,h,h,h,h),a0,A.a(h,h,h,h,"params",h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,A.b([A.a(h,"-(?!infinity)[a-zA-Z_][\\w.]*",h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,0,h,h,h,h,h,h,h),A.a(h,"(\\.\\.\\.)",h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h)],b0)),a1,A.a(h,"::\\s*",h,h,"type",h,h,"[a-zA-Z_][\\w.]*",h,h,h,h,h,"\\W",h,h,h,h,h,h,h,h,h,h,h,h),"~contains~2",A.a(h,"\\[/noprocess|<\\?(lasso(script)?|=)",h,h,a3,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h),"~contains~1",A.a(h,"\\[noprocess\\]",h,h,a3,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,A.a(h,h,h,h,h,A.b([A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,a5,h,h,h,h,h,h,h,h,h)],b0),h,"\\[/noprocess\\]",h,h,h,h,h,h,h,h,h,h,h,h,!0,h,h,h,h,h),h,h),a5,A.a(h,"",h,h,h,h,h,h,h,h,h,h,0,h,h,h,h,h,h,h)],b4,t.n) -b2=A.b(["ls","lassoscript"],t.s) -b1=A.l(["literal",a7,"built_in",a8,"keyword",a9],b4,b4) -q=A.a(h,"\\]|\\?>",h,h,a3,h,h,h,h,h,h,h,h,h,h,h,h,h,0,h,h,h,h,A.a(h,h,h,h,h,A.b([A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,a5,h,h,h,h,h,h,h,h,h)],b0),h,"\\[|<\\?(lasso(script)?|=)",h,h,h,h,h,h,h,h,h,h,0,h,!0,h,h,h,h,h),h,h) -p=A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,a4,h,h,h,h,h,h,h,h,h) -o=A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,a2,h,h,h,h,h,h,h,h,h) -b4=A.l(["literal",a7,"built_in",a8,"keyword",a9],b4,b4) -n=A.a(h,"\\]|\\?>",h,h,a3,h,h,h,h,h,h,h,h,h,h,h,h,h,0,h,h,h,h,A.a(h,h,h,h,h,A.b([A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,a5,h,h,h,h,h,h,h,h,h)],b0),h,"\\[noprocess\\]|<\\?(lasso(script)?|=)",h,h,h,h,h,h,h,h,h,h,h,h,!0,h,h,h,h,h),h,h) -m=A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,a4,h,h,h,h,h,h,h,h,h) -l=A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,a2,h,h,h,h,h,h,h,h,h) -k=$.ba() -j=$.b_() -return A.a(b2,h,h,!0,h,A.b([q,p,o,A.a(h,"\\[no_square_brackets",h,h,a3,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,A.a(h,h,h,h,h,A.b([n,m,l,k,j,A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,c,h,h,h,h,h,h,h,h,h),A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,d,h,h,h,h,h,h,h,h,h),A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,e,h,h,h,h,h,h,h,h,h),A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,g,h,h,h,h,h,h,h,h,h),A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,i,h,h,h,h,h,h,h,h,h),A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,a1,h,h,h,h,h,h,h,h,h),A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,a0,h,h,h,h,h,h,h,h,h),A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,a,h,h,h,h,h,h,h,h,h),A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,b,h,h,h,h,h,h,h,h,h)],b0),h,"\\[/no_square_brackets\\]",h,h,h,h,h,h,b4,a6,h,h,h,h,h,h,h,h,h,h),h,h),A.a(h,"\\[",h,h,a3,h,h,h,h,h,h,h,h,h,h,h,h,h,0,h,h,h,h,h,h,h),A.a(h,"^#!",h,h,a3,h,h,"lasso9$",h,h,h,h,h,h,h,h,h,h,10,h,h,h,h,h,h,h),k,j,A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,c,h,h,h,h,h,h,h,h,h),A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,d,h,h,h,h,h,h,h,h,h),A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,e,h,h,h,h,h,h,h,h,h),A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,g,h,h,h,h,h,h,h,h,h),A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,i,h,h,h,h,h,h,h,h,h),A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,a1,h,h,h,h,h,h,h,h,h),A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,a0,h,h,h,h,h,h,h,h,h),A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,a,h,h,h,h,h,h,h,h,h),A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,b,h,h,h,h,h,h,h,h,h)],b0),h,h,h,h,h,h,h,h,b1,a6,h,b3,h,h,h,h,h,h,h,h)}) -s($,"be2","aT9",()=>{var q="attribute",p=null -return A.a(p,p,p,p,p,A.b([A.a(p,"^dn",p,p,q,p,p,": ",p,p,p,p,!0,p,p,p,p,p,10,p,p,p,p,A.a(p,p,p,p,p,p,p,"$",p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p),p,p),A.a(p,"^\\w",p,p,q,p,p,": ",p,p,p,p,!0,p,p,p,p,p,p,p,p,p,p,A.a(p,p,p,p,p,p,p,"$",p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p),p,p),A.a(p,"^-",p,p,"literal",p,p,"$",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),$.ch()],t._),p,p,p,p,p,p,p,p,p,p,p,A.m(t.N,t.n),p,p,p,p,p,p,p,p)}) -s($,"be3","aTa",()=>{var q=null,p="[A-Za-z_][A-Za-z_0-9]*",o=t._ -return A.a(q,q,q,q,q,A.b([A.a(q,"#+[A-Za-z_0-9]*\\(",q,q,"function",A.b([A.a(q,"#+",q,q,"keyword",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,p,q,q,"title",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\(",q,q,"params",A.b([A.a(q,'"',q,q,"string",q,q,'"',q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,p,q,q,"variable",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],o),q,"\\)",q,!0,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],o),q," {",q,q,q,q,!0,q,q,q,q,q,q,!0,q,q,q,q,q,q)],o),q,q,q,q,q,q,q,q,q,q,q,A.m(t.N,t.n),q,q,q,q,q,q,q,q)}) -s($,"be4","aTb",()=>{var q="~contains~3~starts~contains~13~contains~5",p=null,o="([\\w-]+|@{[\\w-]+})",n="~contains~2~starts~contains~2",m="~contains~2~starts~contains~3",l="~contains~2~starts~contains~5",k="~contains~2~starts~contains~6",j="~contains~2~starts~contains~7",i="~contains~2~starts~contains~7~contains~8",h="~contains~2~starts~contains~7~contains~9",g="~contains~2~starts~contains~7~contains~10",f="~contains~2~starts~contains~7~contains~11",e="~contains~2~starts~contains~7~contains~12",d="variable",c="@{[\\w-]+}",b="selector-tag",a="~contains~3~starts~contains~13",a0="!important",a1="~contains~3~starts~contains~13~contains~4",a2="attribute",a3="~contains~2",a4="~contains~3",a5="string",a6=t._,a7=A.b([A.a(p,"[\\.#:&\\[>]",p,p,p,p,p,"[;{}]",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,o,p,p,p,p,p,"{",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p)],a6),a8=$.ba(),a9=$.b_(),b0=A.a(p,p,"and not",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),b1=A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,n,p,p,p,p,p,p,p,p,p),b2=A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,m,p,p,p,p,p,p,p,p,p),b3=$.a3s() -a7=A.a(p,p,p,p,p,A.b([a8,a9,A.a(p,p,"when",p,p,A.b([b0,a8,a9,b1,b2,b3,A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,l,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,k,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,j,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,i,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,h,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,g,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,f,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,e,p,p,p,p,p,p,p,p,p)],a6),p,p,p,p,!0,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"all\\b",p,p,"keyword",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,c,p,p,d,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"([\\w-]+|@{[\\w-]+})%?",p,p,b,p,p,p,p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p),A.a(p,"#([\\w-]+|@{[\\w-]+})",p,p,"selector-id",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"\\.([\\w-]+|@{[\\w-]+})",p,p,"selector-class",p,p,p,p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p),A.a(p,"&",p,p,b,p,p,p,p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p),A.a(p,"\\[",p,p,"selector-attr",p,p,"\\]",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,":(:)?[a-zA-Z0-9\\_\\-\\+\\(\\)\"'.]+",p,p,"selector-pseudo",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"\\(",p,p,p,A.b([a8,a9,A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,n,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,m,p,p,p,p,p,p,p,p,p),b3,A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,l,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,k,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,j,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,i,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,h,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,g,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,f,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,e,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,a,p,p,p,p,p,p,p,p,p)],a6),p,"\\)",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,a0,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p)],a6),p,p,p,p,p,p,p,"[<='$\"]",p,p,p,p,0,!0,!0,p,p,p,p,a7) -b2=A.a(p,"([\\w-]+|@{[\\w-]+})\\s*:",p,p,p,A.b([A.a(p,o,p,p,a2,p,p,":",p,p,p,p,!0,p,p,p,p,p,p,p,p,p,p,A.a(p,p,p,p,p,A.b([a8,a9,A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,n,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,m,p,p,p,p,p,p,p,p,p),b3,A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,l,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,k,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,j,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,i,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,h,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,g,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,f,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,e,p,p,p,p,p,p,p,p,p)],a6),p,p,p,p,!0,p,p,"[<=$]",p,p,p,p,0,p,p,p,p,p,p,p),p,p)],a6),p,"[;}]",p,p,p,p,p,p,p,p,p,p,0,!0,p,p,p,p,p,p) -b1=A.a(p,"{",p,p,p,A.b([a8,a9,A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,a3,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,a4,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,a1,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,q,p,p,p,p,p,p,p,p,p)],a6),p,"}",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p) -b0=A.b([A.a(p,"@[\\w-]+\\s*:",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,15,p,p,p,p,p,p,p),A.a(p,"@[\\w-]+",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p)],a6) -b3=A.l([q,a7,a1,b2,a,b1,"~contains~3",A.a(p,p,p,p,d,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,A.a(p,p,p,p,p,A.b([a8,a9,A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,n,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,m,p,p,p,p,p,p,p,p,p),b3,A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,l,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,k,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,j,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,i,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,h,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,g,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,f,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,e,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,a,p,p,p,p,p,p,p,p,p)],a6),p,"[;}]",p,p,p,p,p,p,p,p,p,p,p,p,!0,p,p,p,p,p),p,b0),h,A.a(p,c,p,p,d,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),i,A.a(p,"@@?[\\w-]+",p,p,d,p,p,p,p,p,p,p,p,p,p,p,p,p,10,p,p,p,p,p,p,p),e,A.a(p,a0,p,p,"meta",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),f,A.a(p,"[\\w-]+\\s*:",p,p,a2,p,p,":",p,p,p,p,!0,p,p,p,p,p,p,!0,p,p,p,p,p,p),g,A.a(p,"\\x7e?`[^`]*?`",p,p,"built_in",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),j,A.a(p,"\\(",p,p,p,A.b([a8,a9,A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,n,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,m,p,p,p,p,p,p,p,p,p),b3,A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,l,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,k,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,j,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,i,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,h,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,g,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,f,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,e,p,p,p,p,p,p,p,p,p)],a6),p,"\\)",p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p),k,A.a(p,"#[0-9A-Fa-f]+\\b",p,p,"number",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),l,A.a(p,"(url|data-uri)\\(",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,A.a(p,p,p,p,a5,p,p,"[\\)\\n]",p,p,p,p,!0,p,p,p,p,p,p,p,p,p,p,p,p,p),p,p),m,A.a(p,'\\x7e?".*?"',p,p,a5,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),n,A.a(p,"\\x7e?'.*?'",p,p,a5,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),"~contains~2",A.a(p,"@(import|media|charset|font-face|(-[a-z]+-)?keyframes|supports|document|namespace|page|viewport|host)\\b",p,p,"keyword",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,A.a(p,p,p,p,p,A.b([a8,a9,A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,n,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,m,p,p,p,p,p,p,p,p,p),b3,A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,l,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,k,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,j,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,i,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,h,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,g,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,f,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,e,p,p,p,p,p,p,p,p,p)],a6),p,"[;{}]",p,p,p,p,p,p,p,p,p,p,0,p,!0,p,p,p,p,p),p,p)],t.N,t.n) -return A.a(p,p,p,!0,p,A.b([a8,a9,A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,a3,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,a4,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,a1,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,q,p,p,p,p,p,p,p,p,p)],a6),p,p,p,p,p,p,p,"[=>'/<($\"]",p,p,p,b3,p,p,p,p,p,p,p,p)}) -s($,"be6","aTd",()=>{var q="~contains~7",p="\\)",o="[a-zA-Z_\\-\\+\\*\\/\\<\\=\\>\\&\\#][a-zA-Z0-9_\\-\\+\\*\\/\\<\\=\\>\\&\\#!]*",n=null,m="\\|[^]*?\\|",l="~contains~5",k="~contains~6",j="~contains~2",i="~contains~0",h="~contains~3",g="~contains~4",f="~contains~5~contains~2",e="~contains~5~contains~3",d="~contains~5~contains~4~contains~4",c=t._,b=t.N -b=A.l(["~contains~7",A.a(n,"\\(\\s*",n,n,n,A.b([A.a(n,n,n,n,"name",n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,A.b([A.a(n,o,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n),A.a(n,m,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n)],c)),A.a(n,n,n,n,n,A.b([A.a(n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,l,n,n,n,n,n,n,n,n,n),A.a(n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,k,n,n,n,n,n,n,n,n,n),A.a(n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,q,n,n,n,n,n,n,n,n,n),A.a(n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,j,n,n,n,n,n,n,n,n,n),A.a(n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,i,n,n,n,n,n,n,n,n,n),A.a(n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,h,n,n,n,n,n,n,n,n,n),A.a(n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,g,n,n,n,n,n,n,n,n,n),A.a(n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,f,n,n,n,n,n,n,n,n,n),A.a(n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,e,n,n,n,n,n,n,n,n,n),A.a(n,m,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n),A.a(n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,d,n,n,n,n,n,n,n,n,n)],c),n,n,n,n,!0,n,n,n,n,n,n,n,0,n,n,n,n,n,n,n)],c),n,p,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n),"~contains~6",A.a(n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,A.b([A.a(n,"'[a-zA-Z_\\-\\+\\*\\/\\<\\=\\>\\&\\#][a-zA-Z0-9_\\-\\+\\*\\/\\<\\=\\>\\&\\#!]*",n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n),A.a(n,"#'[a-zA-Z_\\-\\+\\*\\/\\<\\=\\>\\&\\#][a-zA-Z0-9_\\-\\+\\*\\/\\<\\=\\>\\&\\#!]*(::[a-zA-Z_\\-\\+\\*\\/\\<\\=\\>\\&\\#][a-zA-Z0-9_\\-\\+\\*\\/\\<\\=\\>\\&\\#!]*)*",n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n)],c)),d,A.a(n,o,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,0,n,n,n,n,n,n,n),e,A.a(n,"[:&][a-zA-Z_\\-\\+\\*\\/\\<\\=\\>\\&\\#][a-zA-Z0-9_\\-\\+\\*\\/\\<\\=\\>\\&\\#!]*",n,n,"symbol",n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n),f,A.a(n,"\\*",n,n,n,n,n,"\\*",n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n),"~contains~5",A.a(n,n,n,n,n,A.b([A.a(n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,i,n,n,n,n,n,n,n,n,n),A.a(n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,h,n,n,n,n,n,n,n,n,n),A.a(n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,f,n,n,n,n,n,n,n,n,n),A.a(n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,e,n,n,n,n,n,n,n,n,n),A.a(n,"\\(",n,n,n,A.b([A.a(n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,!0,n,n,n,n),A.a(n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,j,n,n,n,n,n,n,n,n,n),A.a(n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,h,n,n,n,n,n,n,n,n,n),A.a(n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,i,n,n,n,n,n,n,n,n,n),A.a(n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,d,n,n,n,n,n,n,n,n,n)],c),n,p,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n),A.a(n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,d,n,n,n,n,n,n,n,n,n)],c),n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,A.b([A.a(n,"['`]\\(",n,n,n,n,n,p,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n),A.a(n,"\\(quote ",n,n,n,n,n,p,n,n,n,n,n,n,A.l(["name","quote"],b,b),n,n,n,n,n,n,n,n,n,n,n),A.a(n,"'\\|[^]*?\\|",n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n)],c)),"~contains~4",A.a(n,";",n,n,"comment",A.b([$.aq(),A.a(n,"(?:TODO|FIXME|NOTE|BUG|XXX):",n,n,"doctag",n,n,n,n,n,n,n,n,n,n,n,n,n,0,n,n,n,n,n,n,n)],c),n,"$",n,n,n,n,n,n,n,n,n,n,0,n,n,n,n,n,n,n),"~contains~3",A.a(n,'"',n,n,"string",A.b([$.aZ()],c),n,'"',n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n),"~contains~2",A.a(n,"\\b(t{1}|nil)\\b",n,n,"literal",n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n),"~contains~0",A.a(n,n,n,n,"number",n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,A.b([A.a(n,"(\\-|\\+)?\\d+(\\.\\d+|\\/\\d+)?((d|e|f|l|s|D|E|F|L|S)(\\+|\\-)?\\d+)?",n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,0,n,n,n,n,n,n,n),A.a(n,"#(b|B)[0-1]+(/[0-1]+)?",n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n),A.a(n,"#(o|O)[0-7]+(/[0-7]+)?",n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n),A.a(n,"#(x|X)[0-9a-fA-F]+(/[0-9a-fA-F]+)?",n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n),A.a(n,"#(c|C)\\((\\-|\\+)?\\d+(\\.\\d+|\\/\\d+)?((d|e|f|l|s|D|E|F|L|S)(\\+|\\-)?\\d+)? +(\\-|\\+)?\\d+(\\.\\d+|\\/\\d+)?((d|e|f|l|s|D|E|F|L|S)(\\+|\\-)?\\d+)?",n,n,n,n,n,p,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n)],c))],b,t.n) -return A.a(n,n,n,n,n,A.b([A.a(n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,i,n,n,n,n,n,n,n,n,n),A.a(n,"^#!",n,n,"meta",n,n,"$",n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n),A.a(n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,j,n,n,n,n,n,n,n,n,n),A.a(n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,h,n,n,n,n,n,n,n,n,n),A.a(n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,g,n,n,n,n,n,n,n,n,n),A.a(n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,l,n,n,n,n,n,n,n,n,n),A.a(n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,k,n,n,n,n,n,n,n,n,n),A.a(n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,q,n,n,n,n,n,n,n,n,n),A.a(n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,d,n,n,n,n,n,n,n,n,n)],c),n,n,n,n,n,n,n,"\\S",n,n,n,b,n,n,n,n,n,n,n,n)}) -s($,"be8","aTe",()=>{var q,p,o,n,m,l,k,j,i,h,g,f,e,d,c="~contains~2~contains~6",b=null,a="~contains~2~contains~1",a0="~contains~0",a1="function",a2="(?:TODO|FIXME|NOTE|BUG|XXX):",a3=t._,a4=t.N,a5=A.l([c,A.a(b,"[a-zA-Z]\\w*",b,b,"title",b,b,b,b,b,b,b,b,b,b,b,b,b,0,b,b,b,b,b,b,A.b([A.a(b,"\\b_*rig[A-Z]+[A-Za-z0-9_\\-]*",b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b),A.a(b,"\\b_[a-z0-9\\-]+",b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b)],a3)),a,A.a(b,"\\b([A-Za-z0-9_\\-]+)\\b",b,b,"title",b,b,b,b,b,b,b,b,b,b,b,b,b,0,b,b,b,b,b,b,b),"~contains~0",A.a(b,b,b,b,"variable",b,b,b,b,b,b,b,b,b,b,b,b,b,0,b,b,b,b,b,b,A.b([A.a(b,"\\b([gtps][A-Z]{1}[a-zA-Z0-9]*)(\\[.+\\])?(?:\\s*?)",b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b),A.a(b,"\\$_[A-Z]+",b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b)],a3))],a4,t.n) -a4=A.l(["keyword","$_COOKIE $_FILES $_GET $_GET_BINARY $_GET_RAW $_POST $_POST_BINARY $_POST_RAW $_SESSION $_SERVER codepoint codepoints segment segments codeunit codeunits sentence sentences trueWord trueWords paragraph after byte bytes english the until http forever descending using line real8 with seventh for stdout finally element word words fourth before black ninth sixth characters chars stderr uInt1 uInt1s uInt2 uInt2s stdin string lines relative rel any fifth items from middle mid at else of catch then third it file milliseconds seconds second secs sec int1 int1s int4 int4s internet int2 int2s normal text item last long detailed effective uInt4 uInt4s repeat end repeat URL in try into switch to words https token binfile each tenth as ticks tick system real4 by dateItems without char character ascending eighth whole dateTime numeric short first ftp integer abbreviated abbr abbrev private case while if div mod wrap and or bitAnd bitNot bitOr bitXor among not in a an within contains ends with begins the keys of keys","literal","SIX TEN FORMFEED NINE ZERO NONE SPACE FOUR FALSE COLON CRLF PI COMMA ENDOFFILE EOF EIGHT FIVE QUOTE EMPTY ONE TRUE RETURN CR LINEFEED RIGHT BACKSLASH NULL SEVEN TAB THREE TWO six ten formfeed nine zero none space four false colon crlf pi comma endoffile eof eight five quote empty one true return cr linefeed right backslash null seven tab three two RIVERSION RISTATE FILE_READ_MODE FILE_WRITE_MODE FILE_WRITE_MODE DIR_WRITE_MODE FILE_READ_UMASK FILE_WRITE_UMASK DIR_READ_UMASK DIR_WRITE_UMASK","built_in","put abs acos aliasReference annuity arrayDecode arrayEncode asin atan atan2 average avg avgDev base64Decode base64Encode baseConvert binaryDecode binaryEncode byteOffset byteToNum cachedURL cachedURLs charToNum cipherNames codepointOffset codepointProperty codepointToNum codeunitOffset commandNames compound compress constantNames cos date dateFormat decompress difference directories diskSpace DNSServers exp exp1 exp2 exp10 extents files flushEvents folders format functionNames geometricMean global globals hasMemory harmonicMean hostAddress hostAddressToName hostName hostNameToAddress isNumber ISOToMac itemOffset keys len length libURLErrorData libUrlFormData libURLftpCommand libURLLastHTTPHeaders libURLLastRHHeaders libUrlMultipartFormAddPart libUrlMultipartFormData libURLVersion lineOffset ln ln1 localNames log log2 log10 longFilePath lower macToISO matchChunk matchText matrixMultiply max md5Digest median merge messageAuthenticationCode messageDigest millisec millisecs millisecond milliseconds min monthNames nativeCharToNum normalizeText num number numToByte numToChar numToCodepoint numToNativeChar offset open openfiles openProcesses openProcessIDs openSockets paragraphOffset paramCount param params peerAddress pendingMessages platform popStdDev populationStandardDeviation populationVariance popVariance processID random randomBytes replaceText result revCreateXMLTree revCreateXMLTreeFromFile revCurrentRecord revCurrentRecordIsFirst revCurrentRecordIsLast revDatabaseColumnCount revDatabaseColumnIsNull revDatabaseColumnLengths revDatabaseColumnNames revDatabaseColumnNamed revDatabaseColumnNumbered revDatabaseColumnTypes revDatabaseConnectResult revDatabaseCursors revDatabaseID revDatabaseTableNames revDatabaseType revDataFromQuery revdb_closeCursor revdb_columnbynumber revdb_columncount revdb_columnisnull revdb_columnlengths revdb_columnnames revdb_columntypes revdb_commit revdb_connect revdb_connections revdb_connectionerr revdb_currentrecord revdb_cursorconnection revdb_cursorerr revdb_cursors revdb_dbtype revdb_disconnect revdb_execute revdb_iseof revdb_isbof revdb_movefirst revdb_movelast revdb_movenext revdb_moveprev revdb_query revdb_querylist revdb_recordcount revdb_rollback revdb_tablenames revGetDatabaseDriverPath revNumberOfRecords revOpenDatabase revOpenDatabases revQueryDatabase revQueryDatabaseBlob revQueryResult revQueryIsAtStart revQueryIsAtEnd revUnixFromMacPath revXMLAttribute revXMLAttributes revXMLAttributeValues revXMLChildContents revXMLChildNames revXMLCreateTreeFromFileWithNamespaces revXMLCreateTreeWithNamespaces revXMLDataFromXPathQuery revXMLEvaluateXPath revXMLFirstChild revXMLMatchingNode revXMLNextSibling revXMLNodeContents revXMLNumberOfChildren revXMLParent revXMLPreviousSibling revXMLRootNode revXMLRPC_CreateRequest revXMLRPC_Documents revXMLRPC_Error revXMLRPC_GetHost revXMLRPC_GetMethod revXMLRPC_GetParam revXMLText revXMLRPC_Execute revXMLRPC_GetParamCount revXMLRPC_GetParamNode revXMLRPC_GetParamType revXMLRPC_GetPath revXMLRPC_GetPort revXMLRPC_GetProtocol revXMLRPC_GetRequest revXMLRPC_GetResponse revXMLRPC_GetSocket revXMLTree revXMLTrees revXMLValidateDTD revZipDescribeItem revZipEnumerateItems revZipOpenArchives round sampVariance sec secs seconds sentenceOffset sha1Digest shell shortFilePath sin specialFolderPath sqrt standardDeviation statRound stdDev sum sysError systemVersion tan tempName textDecode textEncode tick ticks time to tokenOffset toLower toUpper transpose truewordOffset trunc uniDecode uniEncode upper URLDecode URLEncode URLStatus uuid value variableNames variance version waitDepth weekdayNames wordOffset xsltApplyStylesheet xsltApplyStylesheetFromFile xsltLoadStylesheet xsltLoadStylesheetFromFile add breakpoint cancel clear local variable file word line folder directory URL close socket process combine constant convert create new alias folder directory decrypt delete variable word line folder directory URL dispatch divide do encrypt filter get include intersect kill libURLDownloadToFile libURLFollowHttpRedirects libURLftpUpload libURLftpUploadFile libURLresetAll libUrlSetAuthCallback libURLSetDriver libURLSetCustomHTTPHeaders libUrlSetExpect100 libURLSetFTPListCommand libURLSetFTPMode libURLSetFTPStopTime libURLSetStatusCallback load extension loadedExtensions multiply socket prepare process post seek rel relative read from process rename replace require resetAll resolve revAddXMLNode revAppendXML revCloseCursor revCloseDatabase revCommitDatabase revCopyFile revCopyFolder revCopyXMLNode revDeleteFolder revDeleteXMLNode revDeleteAllXMLTrees revDeleteXMLTree revExecuteSQL revGoURL revInsertXMLNode revMoveFolder revMoveToFirstRecord revMoveToLastRecord revMoveToNextRecord revMoveToPreviousRecord revMoveToRecord revMoveXMLNode revPutIntoXMLNode revRollBackDatabase revSetDatabaseDriverPath revSetXMLAttribute revXMLRPC_AddParam revXMLRPC_DeleteAllDocuments revXMLAddDTD revXMLRPC_Free revXMLRPC_FreeAll revXMLRPC_DeleteDocument revXMLRPC_DeleteParam revXMLRPC_SetHost revXMLRPC_SetMethod revXMLRPC_SetPort revXMLRPC_SetProtocol revXMLRPC_SetSocket revZipAddItemWithData revZipAddItemWithFile revZipAddUncompressedItemWithData revZipAddUncompressedItemWithFile revZipCancel revZipCloseArchive revZipDeleteItem revZipExtractItemToFile revZipExtractItemToVariable revZipSetProgressCallback revZipRenameItem revZipReplaceItemWithData revZipReplaceItemWithFile revZipOpenArchive send set sort split start stop subtract symmetric union unload vectorDotProduct wait write"],a4,a4) -q=A.a(b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,a0,b,b,b,b,b,b,b,b,b) -p=A.a(b,"\\bend\\sif\\b",b,b,"keyword",b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b) -o=A.a(b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,a0,b,b,b,b,b,b,b,b,b) -n=A.a(b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,a,b,b,b,b,b,b,b,b,b) -m=$.c0() -l=$.aM() -k=$.ng() -j=$.bw() -n=A.a(b,b,a1,b,a1,A.b([o,n,m,l,k,j,A.a(b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,c,b,b,b,b,b,b,b,b,b)],a3),b,"$",b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b) -o=A.a(b,"\\bend\\s+",b,b,a1,A.b([A.a(b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,a,b,b,b,b,b,b,b,b,b),A.a(b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,c,b,b,b,b,b,b,b,b,b)],a3),b,"$",b,b,b,b,b,b,"end",b,b,b,0,b,b,b,b,b,b,b) -i=A.a(b,b,"command on",b,b,A.b([A.a(b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,a0,b,b,b,b,b,b,b,b,b),A.a(b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,a,b,b,b,b,b,b,b,b,b),m,l,k,j,A.a(b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,c,b,b,b,b,b,b,b,b,b)],a3),b,"$",b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b) -h=A.a(b,b,b,b,"meta",b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,A.b([A.a(b,"<\\?(rev|lc|livecode)",b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,10,b,b,b,b,b,b,b),A.a(b,"<\\?",b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b),A.a(b,"\\?>",b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b)],a3)) -g=A.a(b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,c,b,b,b,b,b,b,b,b,b) -f=$.b_() -e=$.ch() -d=$.aq() -return A.a(b,b,b,!1,b,A.b([q,p,n,o,i,h,m,l,k,j,g,f,e,A.a(b,"--",b,b,"comment",A.b([d,A.a(b,a2,b,b,"doctag",b,b,b,b,b,b,b,b,b,b,b,b,b,0,b,b,b,b,b,b,b)],a3),b,"$",b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b),A.a(b,"[^:]//",b,b,"comment",A.b([d,A.a(b,a2,b,b,"doctag",b,b,b,b,b,b,b,b,b,b,b,b,b,0,b,b,b,b,b,b,b)],a3),b,"$",b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b)],a3),b,b,b,b,b,b,b,";$|^\\[|^=|&|{",a4,b,b,a5,b,b,b,b,b,b,b,b)}) -s($,"be9","aTf",()=>{var q,p,o,n,m,l,k="~contains~9~contains~0",j=null,i="~contains~2~variants~2~contains~2",h="in if for while finally new do return else break catch instanceof throw try this switch continue typeof delete debugger case default function var with then unless until loop of by when and or is isnt not it that otherwise from to til fallthrough super case default function var void const let enum export import native list map __hasProp __extends __slice __bind __indexOf",g="true false null undefined yes no on off it that void",f=u.n,e=u.bk,d=u.Y,c=u.aL,b="~contains~2~variants~2~contains~1",a="~contains~1",a0="~contains~2",a1='[:="\\[\\]]',a2=A.a(j,"[A-Za-z$_](?:-[0-9A-Za-z$_]|[0-9A-Za-z$_])*",j,j,"title",j,j,j,j,j,j,j,j,j,j,j,j,j,0,j,j,j,j,j,j,j),a3=t.N,a4=A.a(j,"#[A-Za-z$_]",j,j,"subst",j,j,"(?:\\-[0-9A-Za-z$_]|[0-9A-Za-z$_])*",j,j,j,j,j,j,A.l(["keyword",h,"literal",g,"built_in",f],a3,a3),j,j,j,j,j,j,j,j,j,j,j),a5=t.s,a6=A.a(j,"``",j,j,j,j,j,"``",j,j,j,!0,!0,j,j,j,j,j,j,j,j,j,j,j,A.b(["javascript"],a5),j),a7=A.a(j,"@[A-Za-z$_](?:-[0-9A-Za-z$_]|[0-9A-Za-z$_])*",j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j),a8=A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,b,j,j,j,j,j,j,j,j,j),a9=$.ch(),b0=t._ -a8=A.a(j,j,j,j,"regexp",j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,A.b([A.a(j,"//",j,j,j,A.b([a8,a9],b0),j,"//[gim]*",j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j),A.a(j,"\\/(?![ *])(\\\\\\/|.)*?\\/[gim]*(?=\\W)",j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j)],b0)) -q=A.l(["keyword",h,"literal",g,"built_in",f],a3,a3) -p=$.ng() -q=A.a(j,"#\\{",j,j,"subst",A.b([p,A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,a,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,a0,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,c,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,d,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,e,j,j,j,j,j,j,j,j,j)],b0),j,"}",j,j,j,j,j,j,q,j,j,j,j,j,j,j,j,j,j,j) -o=$.aZ() -o=A.l([k,a2,i,a4,e,a6,d,a7,c,a8,b,q,"~contains~2",A.a(j,j,j,j,"string",j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,A.b([A.a(j,"'''",j,j,j,A.b([o],b0),j,"'''",j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j),A.a(j,"'",j,j,j,A.b([o],b0),j,"'",j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j),A.a(j,'"""',j,j,j,A.b([o,A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,b,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,i,j,j,j,j,j,j,j,j,j)],b0),j,'"""',j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j),A.a(j,'"',j,j,j,A.b([o,A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,b,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,i,j,j,j,j,j,j,j,j,j)],b0),j,'"',j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j),A.a(j,"\\\\",j,j,j,j,j,"(\\s|$)",j,j,j,j,!0,j,j,j,j,j,j,j,j,j,j,j,j,j)],b0)),"~contains~1",A.a(j,"(\\b0[xX][a-fA-F0-9_]+)|(\\b\\d(\\d|_\\d)*(\\.(\\d(\\d|_\\d)*)?)?(_*[eE]([-+]\\d(_\\d|\\d)*)?)?[_a-z]*)",j,j,"number",j,j,j,j,j,j,j,j,j,j,j,j,j,0,j,j,j,j,A.a(j,j,j,j,j,j,j,"(\\s*/)?",j,j,j,j,j,j,j,j,j,j,0,j,j,j,j,j,j,j),j,j)],a3,t.n) -a5=A.b(["ls"],a5) -q=A.l(["keyword",h,"literal",g,"built_in",f],a3,a3) -a8=A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,a,j,j,j,j,j,j,j,j,j) -a7=A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,a0,j,j,j,j,j,j,j,j,j) -a6=A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,c,j,j,j,j,j,j,j,j,j) -a4=A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,d,j,j,j,j,j,j,j,j,j) -a2=A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,e,j,j,j,j,j,j,j,j,j) -n=A.a(j,"\\/\\*",j,j,"comment",A.b([$.aq(),A.a(j,"(?:TODO|FIXME|NOTE|BUG|XXX):",j,j,"doctag",j,j,j,j,j,j,j,j,j,j,j,j,j,0,j,j,j,j,j,j,j)],b0),j,"\\*\\/",j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j) -m=A.a(j,"(#=>|=>|\\|>>|-?->|\\!->)",j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j) -l=A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,k,j,j,j,j,j,j,j,j,j) -a3=A.l(["keyword",h,"literal",g,"built_in",f],a3,a3) -return A.a(a5,j,j,j,j,A.b([p,a8,a7,a6,a4,a2,n,a9,m,A.a(j,j,j,j,"function",A.b([l,A.a(j,"\\(",j,j,"params",A.b([A.a(j,"\\(",j,j,j,A.b([A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,!0,j,j,j,j),p,A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,a,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,a0,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,c,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,d,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,e,j,j,j,j,j,j,j,j,j)],b0),j,"\\)",j,j,j,j,j,j,a3,j,j,j,j,j,j,j,j,j,j,j)],b0),j,j,j,j,j,j,j,j,j,j,j,j,j,!0,j,j,j,j,j,j)],b0),j,j,j,j,j,j,j,j,j,j,j,j,j,!0,j,j,j,j,j,A.b([A.a(j,"([A-Za-z$_](?:-[0-9A-Za-z$_]|[0-9A-Za-z$_])*\\s*(?:=|:=)\\s*)?(\\(.*\\))?\\s*\\B\\->\\*?",j,j,j,j,j,"\\->\\*?",j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j),A.a(j,"([A-Za-z$_](?:-[0-9A-Za-z$_]|[0-9A-Za-z$_])*\\s*(?:=|:=)\\s*)?!?(\\(.*\\))?\\s*\\B[-\\x7e]{1,2}>\\*?",j,j,j,j,j,"[-\\x7e]{1,2}>\\*?",j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j),A.a(j,"([A-Za-z$_](?:-[0-9A-Za-z$_]|[0-9A-Za-z$_])*\\s*(?:=|:=)\\s*)?(\\(.*\\))?\\s*\\B!?[-\\x7e]{1,2}>\\*?",j,j,j,j,j,"!?[-\\x7e]{1,2}>\\*?",j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j)],b0)),A.a(j,j,"class",j,"class",A.b([A.a(j,j,"extends",j,j,A.b([A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,k,j,j,j,j,j,j,j,j,j)],b0),j,j,j,j,!0,j,j,a1,j,j,j,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,k,j,j,j,j,j,j,j,j,j)],b0),j,"$",j,j,j,j,j,a1,j,j,j,j,j,j,j,j,j,j,j,j),A.a(j,"[A-Za-z$_](?:-[0-9A-Za-z$_]|[0-9A-Za-z$_])*:",j,j,j,j,j,":",j,j,j,j,j,j,j,j,j,j,0,!0,!0,j,j,j,j,j)],b0),j,j,j,j,j,j,j,"\\/\\*",q,j,j,o,j,j,j,j,j,j,j,j)}) -s($,"bea","aTg",()=>{var q=null,p=t._ -return A.a(q,q,q,q,q,A.b([A.a(q,"i\\d+",q,q,"keyword",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,";",q,q,"comment",A.b([$.aq(),A.a(q,"(?:TODO|FIXME|NOTE|BUG|XXX):",q,q,"doctag",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q)],p),q,"\\n",q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q),$.aM(),A.a(q,q,q,q,"string",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,A.b([A.a(q,'"',q,q,q,q,q,'[^\\\\]"',q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],p)),A.a(q,q,q,q,"title",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,A.b([A.a(q,"@([-a-zA-Z$._][\\w\\-$.]*)",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"@\\d+",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"!([-a-zA-Z$._][\\w\\-$.]*)",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"!\\d+([-a-zA-Z$._][\\w\\-$.]*)",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],p)),A.a(q,q,q,q,"symbol",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,A.b([A.a(q,"%([-a-zA-Z$._][\\w\\-$.]*)",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"%\\d+",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"#\\d+",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],p)),A.a(q,q,q,q,"number",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,A.b([A.a(q,"0[xX][a-fA-F0-9]+",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"-?\\d+(?:[.]\\d+)?(?:[eE][-+]?\\d+(?:[.]\\d+)?)?",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],p))],p),q,q,q,q,q,q,q,q,"begin end true false declare define global constant private linker_private internal available_externally linkonce linkonce_odr weak weak_odr appending dllimport dllexport common default hidden protected extern_weak external thread_local zeroinitializer undef null to tail target triple datalayout volatile nuw nsw nnan ninf nsz arcp fast exact inbounds align addrspace section alias module asm sideeffect gc dbg linker_private_weak attributes blockaddress initialexec localdynamic localexec prefix unnamed_addr ccc fastcc coldcc x86_stdcallcc x86_fastcallcc arm_apcscc arm_aapcscc arm_aapcs_vfpcc ptx_device ptx_kernel intel_ocl_bicc msp430_intrcc spir_func spir_kernel x86_64_sysvcc x86_64_win64cc x86_thiscallcc cc c signext zeroext inreg sret nounwind noreturn noalias nocapture byval nest readnone readonly inlinehint noinline alwaysinline optsize ssp sspreq noredzone noimplicitfloat naked builtin cold nobuiltin noduplicate nonlazybind optnone returns_twice sanitize_address sanitize_memory sanitize_thread sspstrong uwtable returned type opaque eq ne slt sgt sle sge ult ugt ule uge oeq one olt ogt ole oge ord uno ueq une x acq_rel acquire alignstack atomic catch cleanup filter inteldialect max min monotonic nand personality release seq_cst singlethread umax umin unordered xchg add fadd sub fsub mul fmul udiv sdiv fdiv urem srem frem shl lshr ashr and or xor icmp fcmp phi call trunc zext sext fptrunc fpext uitofp sitofp fptoui fptosi inttoptr ptrtoint bitcast addrspacecast select va_arg ret br switch invoke unwind unreachable indirectbr landingpad resume malloc alloca free load store getelementptr extractelement insertelement shufflevector getresult extractvalue insertvalue atomicrmw cmpxchg fence argmemonly double",q,q,A.m(t.N,t.n),q,q,q,q,q,q,q,q)}) -s($,"beb","aTh",()=>{var q=null,p="comment",o="(?:TODO|FIXME|NOTE|BUG|XXX):",n=t._,m=A.a(q,'"',q,q,"string",A.b([A.a(q,'\\\\[tn"\\\\]',q,q,"subst",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],n),q,'"',q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),l=$.aq() -return A.a(q,q,q,q,q,A.b([m,A.a(q,q,q,q,p,q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,A.b([A.a(q,"//",q,q,p,A.b([l,A.a(q,o,q,q,"doctag",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q)],n),q,"$",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"/\\*",q,q,p,A.b([l,A.a(q,o,q,q,"doctag",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q)],n),q,"\\*/",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],n)),A.a(q,u.O,q,q,"number",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,q,q,q,"section",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,A.b([A.a(q,"\\b(?:state|default)\\b",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\b(?:state_(?:entry|exit)|touch(?:_(?:start|end))?|(?:land_)?collision(?:_(?:start|end))?|timer|listen|(?:no_)?sensor|control|(?:not_)?at_(?:rot_)?target|money|email|experience_permissions(?:_denied)?|run_time_permissions|changed|attach|dataserver|moving_(?:start|end)|link_message|(?:on|object)_rez|remote_data|http_re(?:sponse|quest)|path_update|transaction_result)\\b",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],n)),A.a(q,"\\b(?:ll(?:AgentInExperience|(?:Create|DataSize|Delete|KeyCount|Keys|Read|Update)KeyValue|GetExperience(?:Details|ErrorMessage)|ReturnObjectsBy(?:ID|Owner)|Json(?:2List|[GS]etValue|ValueType)|Sin|Cos|Tan|Atan2|Sqrt|Pow|Abs|Fabs|Frand|Floor|Ceil|Round|Vec(?:Mag|Norm|Dist)|Rot(?:Between|2(?:Euler|Fwd|Left|Up))|(?:Euler|Axes)2Rot|Whisper|(?:Region|Owner)?Say|Shout|Listen(?:Control|Remove)?|Sensor(?:Repeat|Remove)?|Detected(?:Name|Key|Owner|Type|Pos|Vel|Grab|Rot|Group|LinkNumber)|Die|Ground|Wind|(?:[GS]et)(?:AnimationOverride|MemoryLimit|PrimMediaParams|ParcelMusicURL|Object(?:Desc|Name)|PhysicsMaterial|Status|Scale|Color|Alpha|Texture|Pos|Rot|Force|Torque)|ResetAnimationOverride|(?:Scale|Offset|Rotate)Texture|(?:Rot)?Target(?:Remove)?|(?:Stop)?MoveToTarget|Apply(?:Rotational)?Impulse|Set(?:KeyframedMotion|ContentType|RegionPos|(?:Angular)?Velocity|Buoyancy|HoverHeight|ForceAndTorque|TimerEvent|ScriptState|Damage|TextureAnim|Sound(?:Queueing|Radius)|Vehicle(?:Type|(?:Float|Vector|Rotation)Param)|(?:Touch|Sit)?Text|Camera(?:Eye|At)Offset|PrimitiveParams|ClickAction|Link(?:Alpha|Color|PrimitiveParams(?:Fast)?|Texture(?:Anim)?|Camera|Media)|RemoteScriptAccessPin|PayPrice|LocalRot)|ScaleByFactor|Get(?:(?:Max|Min)ScaleFactor|ClosestNavPoint|StaticPath|SimStats|Env|PrimitiveParams|Link(?:PrimitiveParams|Number(?:OfSides)?|Key|Name|Media)|HTTPHeader|FreeURLs|Object(?:Details|PermMask|PrimCount)|Parcel(?:MaxPrims|Details|Prim(?:Count|Owners))|Attached(?:List)?|(?:SPMax|Free|Used)Memory|Region(?:Name|TimeDilation|FPS|Corner|AgentCount)|Root(?:Position|Rotation)|UnixTime|(?:Parcel|Region)Flags|(?:Wall|GMT)clock|SimulatorHostname|BoundingBox|GeometricCenter|Creator|NumberOf(?:Prims|NotecardLines|Sides)|Animation(?:List)?|(?:Camera|Local)(?:Pos|Rot)|Vel|Accel|Omega|Time(?:stamp|OfDay)|(?:Object|CenterOf)?Mass|MassMKS|Energy|Owner|(?:Owner)?Key|SunDirection|Texture(?:Offset|Scale|Rot)|Inventory(?:Number|Name|Key|Type|Creator|PermMask)|Permissions(?:Key)?|StartParameter|List(?:Length|EntryType)|Date|Agent(?:Size|Info|Language|List)|LandOwnerAt|NotecardLine|Script(?:Name|State))|(?:Get|Reset|GetAndReset)Time|PlaySound(?:Slave)?|LoopSound(?:Master|Slave)?|(?:Trigger|Stop|Preload)Sound|(?:(?:Get|Delete)Sub|Insert)String|To(?:Upper|Lower)|Give(?:InventoryList|Money)|RezObject|(?:Stop)?LookAt|Sleep|CollisionFilter|(?:Take|Release)Controls|DetachFromAvatar|AttachToAvatar(?:Temp)?|InstantMessage|(?:GetNext)?Email|StopHover|MinEventDelay|RotLookAt|String(?:Length|Trim)|(?:Start|Stop)Animation|TargetOmega|Request(?:Experience)?Permissions|(?:Create|Break)Link|BreakAllLinks|(?:Give|Remove)Inventory|Water|PassTouches|Request(?:Agent|Inventory)Data|TeleportAgent(?:Home|GlobalCoords)?|ModifyLand|CollisionSound|ResetScript|MessageLinked|PushObject|PassCollisions|AxisAngle2Rot|Rot2(?:Axis|Angle)|A(?:cos|sin)|AngleBetween|AllowInventoryDrop|SubStringIndex|List2(?:CSV|Integer|Json|Float|String|Key|Vector|Rot|List(?:Strided)?)|DeleteSubList|List(?:Statistics|Sort|Randomize|(?:Insert|Find|Replace)List)|EdgeOfWorld|AdjustSoundVolume|Key2Name|TriggerSoundLimited|EjectFromLand|(?:CSV|ParseString)2List|OverMyLand|SameGroup|UnSit|Ground(?:Slope|Normal|Contour)|GroundRepel|(?:Set|Remove)VehicleFlags|SitOnLink|(?:AvatarOn)?(?:Link)?SitTarget|Script(?:Danger|Profiler)|Dialog|VolumeDetect|ResetOtherScript|RemoteLoadScriptPin|(?:Open|Close)RemoteDataChannel|SendRemoteData|RemoteDataReply|(?:Integer|String)ToBase64|XorBase64|Log(?:10)?|Base64To(?:String|Integer)|ParseStringKeepNulls|RezAtRoot|RequestSimulatorData|ForceMouselook|(?:Load|Release|(?:E|Une)scape)URL|ParcelMedia(?:CommandList|Query)|ModPow|MapDestination|(?:RemoveFrom|AddTo|Reset)Land(?:Pass|Ban)List|(?:Set|Clear)CameraParams|HTTP(?:Request|Response)|TextBox|DetectedTouch(?:UV|Face|Pos|(?:N|Bin)ormal|ST)|(?:MD5|SHA1|DumpList2)String|Request(?:Secure)?URL|Clear(?:Prim|Link)Media|(?:Link)?ParticleSystem|(?:Get|Request)(?:Username|DisplayName)|RegionSayTo|CastRay|GenerateKey|TransferLindenDollars|ManageEstateAccess|(?:Create|Delete)Character|ExecCharacterCmd|Evade|FleeFrom|NavigateTo|PatrolPoints|Pursue|UpdateCharacter|WanderWithin))\\b",q,q,"built_in",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,q,q,q,"literal",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,A.b([A.a(q,"\\b(?:PI|TWO_PI|PI_BY_TWO|DEG_TO_RAD|RAD_TO_DEG|SQRT2)\\b",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\b(?:XP_ERROR_(?:EXPERIENCES_DISABLED|EXPERIENCE_(?:DISABLED|SUSPENDED)|INVALID_(?:EXPERIENCE|PARAMETERS)|KEY_NOT_FOUND|MATURITY_EXCEEDED|NONE|NOT_(?:FOUND|PERMITTED(?:_LAND)?)|NO_EXPERIENCE|QUOTA_EXCEEDED|RETRY_UPDATE|STORAGE_EXCEPTION|STORE_DISABLED|THROTTLED|UNKNOWN_ERROR)|JSON_APPEND|STATUS_(?:PHYSICS|ROTATE_[XYZ]|PHANTOM|SANDBOX|BLOCK_GRAB(?:_OBJECT)?|(?:DIE|RETURN)_AT_EDGE|CAST_SHADOWS|OK|MALFORMED_PARAMS|TYPE_MISMATCH|BOUNDS_ERROR|NOT_(?:FOUND|SUPPORTED)|INTERNAL_ERROR|WHITELIST_FAILED)|AGENT(?:_(?:BY_(?:LEGACY_|USER)NAME|FLYING|ATTACHMENTS|SCRIPTED|MOUSELOOK|SITTING|ON_OBJECT|AWAY|WALKING|IN_AIR|TYPING|CROUCHING|BUSY|ALWAYS_RUN|AUTOPILOT|LIST_(?:PARCEL(?:_OWNER)?|REGION)))?|CAMERA_(?:PITCH|DISTANCE|BEHINDNESS_(?:ANGLE|LAG)|(?:FOCUS|POSITION)(?:_(?:THRESHOLD|LOCKED|LAG))?|FOCUS_OFFSET|ACTIVE)|ANIM_ON|LOOP|REVERSE|PING_PONG|SMOOTH|ROTATE|SCALE|ALL_SIDES|LINK_(?:ROOT|SET|ALL_(?:OTHERS|CHILDREN)|THIS)|ACTIVE|PASS(?:IVE|_(?:ALWAYS|IF_NOT_HANDLED|NEVER))|SCRIPTED|CONTROL_(?:FWD|BACK|(?:ROT_)?(?:LEFT|RIGHT)|UP|DOWN|(?:ML_)?LBUTTON)|PERMISSION_(?:RETURN_OBJECTS|DEBIT|OVERRIDE_ANIMATIONS|SILENT_ESTATE_MANAGEMENT|TAKE_CONTROLS|TRIGGER_ANIMATION|ATTACH|CHANGE_LINKS|(?:CONTROL|TRACK)_CAMERA|TELEPORT)|INVENTORY_(?:TEXTURE|SOUND|OBJECT|SCRIPT|LANDMARK|CLOTHING|NOTECARD|BODYPART|ANIMATION|GESTURE|ALL|NONE)|CHANGED_(?:INVENTORY|COLOR|SHAPE|SCALE|TEXTURE|LINK|ALLOWED_DROP|OWNER|REGION(?:_START)?|TELEPORT|MEDIA)|OBJECT_(?:CLICK_ACTION|HOVER_HEIGHT|LAST_OWNER_ID|(?:PHYSICS|SERVER|STREAMING)_COST|UNKNOWN_DETAIL|CHARACTER_TIME|PHANTOM|PHYSICS|TEMP_(?:ATTACHED|ON_REZ)|NAME|DESC|POS|PRIM_(?:COUNT|EQUIVALENCE)|RETURN_(?:PARCEL(?:_OWNER)?|REGION)|REZZER_KEY|ROO?T|VELOCITY|OMEGA|OWNER|GROUP(?:_TAG)?|CREATOR|ATTACHED_(?:POINT|SLOTS_AVAILABLE)|RENDER_WEIGHT|(?:BODY_SHAPE|PATHFINDING)_TYPE|(?:RUNNING|TOTAL)_SCRIPT_COUNT|TOTAL_INVENTORY_COUNT|SCRIPT_(?:MEMORY|TIME))|TYPE_(?:INTEGER|FLOAT|STRING|KEY|VECTOR|ROTATION|INVALID)|(?:DEBUG|PUBLIC)_CHANNEL|ATTACH_(?:AVATAR_CENTER|CHEST|HEAD|BACK|PELVIS|MOUTH|CHIN|NECK|NOSE|BELLY|[LR](?:SHOULDER|HAND|FOOT|EAR|EYE|[UL](?:ARM|LEG)|HIP)|(?:LEFT|RIGHT)_PEC|HUD_(?:CENTER_[12]|TOP_(?:RIGHT|CENTER|LEFT)|BOTTOM(?:_(?:RIGHT|LEFT))?)|[LR]HAND_RING1|TAIL_(?:BASE|TIP)|[LR]WING|FACE_(?:JAW|[LR]EAR|[LR]EYE|TOUNGE)|GROIN|HIND_[LR]FOOT)|LAND_(?:LEVEL|RAISE|LOWER|SMOOTH|NOISE|REVERT)|DATA_(?:ONLINE|NAME|BORN|SIM_(?:POS|STATUS|RATING)|PAYINFO)|PAYMENT_INFO_(?:ON_FILE|USED)|REMOTE_DATA_(?:CHANNEL|REQUEST|REPLY)|PSYS_(?:PART_(?:BF_(?:ZERO|ONE(?:_MINUS_(?:DEST_COLOR|SOURCE_(ALPHA|COLOR)))?|DEST_COLOR|SOURCE_(ALPHA|COLOR))|BLEND_FUNC_(DEST|SOURCE)|FLAGS|(?:START|END)_(?:COLOR|ALPHA|SCALE|GLOW)|MAX_AGE|(?:RIBBON|WIND|INTERP_(?:COLOR|SCALE)|BOUNCE|FOLLOW_(?:SRC|VELOCITY)|TARGET_(?:POS|LINEAR)|EMISSIVE)_MASK)|SRC_(?:MAX_AGE|PATTERN|ANGLE_(?:BEGIN|END)|BURST_(?:RATE|PART_COUNT|RADIUS|SPEED_(?:MIN|MAX))|ACCEL|TEXTURE|TARGET_KEY|OMEGA|PATTERN_(?:DROP|EXPLODE|ANGLE(?:_CONE(?:_EMPTY)?)?)))|VEHICLE_(?:REFERENCE_FRAME|TYPE_(?:NONE|SLED|CAR|BOAT|AIRPLANE|BALLOON)|(?:LINEAR|ANGULAR)_(?:FRICTION_TIMESCALE|MOTOR_DIRECTION)|LINEAR_MOTOR_OFFSET|HOVER_(?:HEIGHT|EFFICIENCY|TIMESCALE)|BUOYANCY|(?:LINEAR|ANGULAR)_(?:DEFLECTION_(?:EFFICIENCY|TIMESCALE)|MOTOR_(?:DECAY_)?TIMESCALE)|VERTICAL_ATTRACTION_(?:EFFICIENCY|TIMESCALE)|BANKING_(?:EFFICIENCY|MIX|TIMESCALE)|FLAG_(?:NO_DEFLECTION_UP|LIMIT_(?:ROLL_ONLY|MOTOR_UP)|HOVER_(?:(?:WATER|TERRAIN|UP)_ONLY|GLOBAL_HEIGHT)|MOUSELOOK_(?:STEER|BANK)|CAMERA_DECOUPLED))|PRIM_(?:ALLOW_UNSIT|ALPHA_MODE(?:_(?:BLEND|EMISSIVE|MASK|NONE))?|NORMAL|SPECULAR|TYPE(?:_(?:BOX|CYLINDER|PRISM|SPHERE|TORUS|TUBE|RING|SCULPT))?|HOLE_(?:DEFAULT|CIRCLE|SQUARE|TRIANGLE)|MATERIAL(?:_(?:STONE|METAL|GLASS|WOOD|FLESH|PLASTIC|RUBBER))?|SHINY_(?:NONE|LOW|MEDIUM|HIGH)|BUMP_(?:NONE|BRIGHT|DARK|WOOD|BARK|BRICKS|CHECKER|CONCRETE|TILE|STONE|DISKS|GRAVEL|BLOBS|SIDING|LARGETILE|STUCCO|SUCTION|WEAVE)|TEXGEN_(?:DEFAULT|PLANAR)|SCRIPTED_SIT_ONLY|SCULPT_(?:TYPE_(?:SPHERE|TORUS|PLANE|CYLINDER|MASK)|FLAG_(?:MIRROR|INVERT))|PHYSICS(?:_(?:SHAPE_(?:CONVEX|NONE|PRIM|TYPE)))?|(?:POS|ROT)_LOCAL|SLICE|TEXT|FLEXIBLE|POINT_LIGHT|TEMP_ON_REZ|PHANTOM|POSITION|SIT_TARGET|SIZE|ROTATION|TEXTURE|NAME|OMEGA|DESC|LINK_TARGET|COLOR|BUMP_SHINY|FULLBRIGHT|TEXGEN|GLOW|MEDIA_(?:ALT_IMAGE_ENABLE|CONTROLS|(?:CURRENT|HOME)_URL|AUTO_(?:LOOP|PLAY|SCALE|ZOOM)|FIRST_CLICK_INTERACT|(?:WIDTH|HEIGHT)_PIXELS|WHITELIST(?:_ENABLE)?|PERMS_(?:INTERACT|CONTROL)|PARAM_MAX|CONTROLS_(?:STANDARD|MINI)|PERM_(?:NONE|OWNER|GROUP|ANYONE)|MAX_(?:URL_LENGTH|WHITELIST_(?:SIZE|COUNT)|(?:WIDTH|HEIGHT)_PIXELS)))|MASK_(?:BASE|OWNER|GROUP|EVERYONE|NEXT)|PERM_(?:TRANSFER|MODIFY|COPY|MOVE|ALL)|PARCEL_(?:MEDIA_COMMAND_(?:STOP|PAUSE|PLAY|LOOP|TEXTURE|URL|TIME|AGENT|UNLOAD|AUTO_ALIGN|TYPE|SIZE|DESC|LOOP_SET)|FLAG_(?:ALLOW_(?:FLY|(?:GROUP_)?SCRIPTS|LANDMARK|TERRAFORM|DAMAGE|CREATE_(?:GROUP_)?OBJECTS)|USE_(?:ACCESS_(?:GROUP|LIST)|BAN_LIST|LAND_PASS_LIST)|LOCAL_SOUND_ONLY|RESTRICT_PUSHOBJECT|ALLOW_(?:GROUP|ALL)_OBJECT_ENTRY)|COUNT_(?:TOTAL|OWNER|GROUP|OTHER|SELECTED|TEMP)|DETAILS_(?:NAME|DESC|OWNER|GROUP|AREA|ID|SEE_AVATARS))|LIST_STAT_(?:MAX|MIN|MEAN|MEDIAN|STD_DEV|SUM(?:_SQUARES)?|NUM_COUNT|GEOMETRIC_MEAN|RANGE)|PAY_(?:HIDE|DEFAULT)|REGION_FLAG_(?:ALLOW_DAMAGE|FIXED_SUN|BLOCK_TERRAFORM|SANDBOX|DISABLE_(?:COLLISIONS|PHYSICS)|BLOCK_FLY|ALLOW_DIRECT_TELEPORT|RESTRICT_PUSHOBJECT)|HTTP_(?:METHOD|MIMETYPE|BODY_(?:MAXLENGTH|TRUNCATED)|CUSTOM_HEADER|PRAGMA_NO_CACHE|VERBOSE_THROTTLE|VERIFY_CERT)|SIT_(?:INVALID_(?:AGENT|LINK_OBJECT)|NO(?:T_EXPERIENCE|_(?:ACCESS|EXPERIENCE_PERMISSION|SIT_TARGET)))|STRING_(?:TRIM(?:_(?:HEAD|TAIL))?)|CLICK_ACTION_(?:NONE|TOUCH|SIT|BUY|PAY|OPEN(?:_MEDIA)?|PLAY|ZOOM)|TOUCH_INVALID_FACE|PROFILE_(?:NONE|SCRIPT_MEMORY)|RC_(?:DATA_FLAGS|DETECT_PHANTOM|GET_(?:LINK_NUM|NORMAL|ROOT_KEY)|MAX_HITS|REJECT_(?:TYPES|AGENTS|(?:NON)?PHYSICAL|LAND))|RCERR_(?:CAST_TIME_EXCEEDED|SIM_PERF_LOW|UNKNOWN)|ESTATE_ACCESS_(?:ALLOWED_(?:AGENT|GROUP)_(?:ADD|REMOVE)|BANNED_AGENT_(?:ADD|REMOVE))|DENSITY|FRICTION|RESTITUTION|GRAVITY_MULTIPLIER|KFM_(?:COMMAND|CMD_(?:PLAY|STOP|PAUSE)|MODE|FORWARD|LOOP|PING_PONG|REVERSE|DATA|ROTATION|TRANSLATION)|ERR_(?:GENERIC|PARCEL_PERMISSIONS|MALFORMED_PARAMS|RUNTIME_PERMISSIONS|THROTTLED)|CHARACTER_(?:CMD_(?:(?:SMOOTH_)?STOP|JUMP)|DESIRED_(?:TURN_)?SPEED|RADIUS|STAY_WITHIN_PARCEL|LENGTH|ORIENTATION|ACCOUNT_FOR_SKIPPED_FRAMES|AVOIDANCE_MODE|TYPE(?:_(?:[ABCD]|NONE))?|MAX_(?:DECEL|TURN_RADIUS|(?:ACCEL|SPEED)))|PURSUIT_(?:OFFSET|FUZZ_FACTOR|GOAL_TOLERANCE|INTERCEPT)|REQUIRE_LINE_OF_SIGHT|FORCE_DIRECT_PATH|VERTICAL|HORIZONTAL|AVOID_(?:CHARACTERS|DYNAMIC_OBSTACLES|NONE)|PU_(?:EVADE_(?:HIDDEN|SPOTTED)|FAILURE_(?:DYNAMIC_PATHFINDING_DISABLED|INVALID_(?:GOAL|START)|NO_(?:NAVMESH|VALID_DESTINATION)|OTHER|TARGET_GONE|(?:PARCEL_)?UNREACHABLE)|(?:GOAL|SLOWDOWN_DISTANCE)_REACHED)|TRAVERSAL_TYPE(?:_(?:FAST|NONE|SLOW))?|CONTENT_TYPE_(?:ATOM|FORM|HTML|JSON|LLSD|RSS|TEXT|XHTML|XML)|GCNP_(?:RADIUS|STATIC)|(?:PATROL|WANDER)_PAUSE_AT_WAYPOINTS|OPT_(?:AVATAR|CHARACTER|EXCLUSION_VOLUME|LEGACY_LINKSET|MATERIAL_VOLUME|OTHER|STATIC_OBSTACLE|WALKABLE)|SIM_STAT_PCT_CHARS_STEPPED)\\b",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\b(?:FALSE|TRUE)\\b",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\b(?:ZERO_ROTATION)\\b",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\b(?:EOF|JSON_(?:ARRAY|DELETE|FALSE|INVALID|NULL|NUMBER|OBJECT|STRING|TRUE)|NULL_KEY|TEXTURE_(?:BLANK|DEFAULT|MEDIA|PLYWOOD|TRANSPARENT)|URL_REQUEST_(?:GRANTED|DENIED))\\b",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\b(?:ZERO_VECTOR|TOUCH_INVALID_(?:TEXCOORD|VECTOR))\\b",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],n)),A.a(q,"\\b(?:integer|float|string|key|vector|quaternion|rotation|list)\\b",q,q,"type",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],n),q,q,q,q,q,q,q,":",q,q,q,A.m(t.N,t.n),q,q,q,q,q,q,q,q)}) -s($,"bec","aTi",()=>{var q="~contains~1~contains~0",p="\\]=*\\]",o=null,n="~contains~1",m="(?:TODO|FIXME|NOTE|BUG|XXX):",l="~contains~0",k="function",j=t._,i=A.a(o,"\\[=*\\[",o,o,o,A.b([A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,!0,o,o,o,o)],j),o,p,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o),h=A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,q,o,o,o,o,o,o,o,o,o),g=$.aq(),f=t.N -g=A.l([q,i,"~contains~1",A.a(o,"--\\[=*\\[",o,o,"comment",A.b([h,g,A.a(o,m,o,o,"doctag",o,o,o,o,o,o,o,o,o,o,o,o,o,0,o,o,o,o,o,o,o)],j),o,p,o,o,o,o,o,o,o,o,o,o,10,o,o,o,o,o,o,o),"~contains~0",A.a(o,"--(?!\\[=*\\[)",o,o,"comment",A.b([g,A.a(o,m,o,o,"doctag",o,o,o,o,o,o,o,o,o,o,o,o,o,0,o,o,o,o,o,o,o)],j),o,"$",o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o)],f,t.n) -f=A.l(["literal","true false nil","keyword","and break do else elseif end for goto if in local not or repeat return then until while","built_in","_G _ENV _VERSION __index __newindex __mode __call __metatable __tostring __len __gc __add __sub __mul __div __mod __pow __concat __unm __eq __lt __le assert collectgarbage dofile error getfenv getmetatable ipairs load loadfile loadstringmodule next pairs pcall print rawequal rawget rawset require select setfenvsetmetatable tonumber tostring type unpack xpcall arg selfcoroutine resume yield status wrap create running debug getupvalue debug sethook getmetatable gethook setmetatable setlocal traceback setfenv getinfo setupvalue getlocal getregistry getfenv io lines write close flush open output type read stderr stdin input stdout popen tmpfile math log max acos huge ldexp pi cos tanh pow deg tan cosh sinh random randomseed frexp ceil floor rad abs sqrt modf asin min mod fmod log10 atan2 exp sin atan os exit setlocale date getenv difftime remove time clock tmpname rename execute package preload loadlib loaded loaders cpath config path seeall string sub upper len gfind rep find match char dump gmatch reverse byte format gsub lower table setn insert getn foreachi maxn foreach concat sort remove"],f,f) -return A.a(o,o,o,o,o,A.b([A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,l,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,n,o,o,o,o,o,o,o,o,o),A.a(o,o,k,o,k,A.b([A.a(o,u.b,o,o,"title",o,o,o,o,o,o,o,o,o,o,o,o,o,0,o,o,o,o,o,o,o),A.a(o,"\\(",o,o,"params",A.b([A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,l,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,n,o,o,o,o,o,o,o,o,o)],j),o,o,o,o,!0,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,l,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,n,o,o,o,o,o,o,o,o,o)],j),o,"\\)",o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o),$.bw(),$.c0(),$.aM(),A.a(o,"\\[=*\\[",o,o,"string",A.b([A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,q,o,o,o,o,o,o,o,o,o)],j),o,p,o,o,o,o,o,o,o,o,o,o,5,o,o,o,o,o,o,o)],j),o,o,o,o,o,o,o,o,f,"[a-zA-Z_]\\w*",o,g,o,o,o,o,o,o,o,o)}) -s($,"bed","aTj",()=>{var q,p="~contains~1",o="variable",n=null,m=$.aZ(),l=t._,k=t.N,j=A.l(["~contains~1",A.a(n,n,n,n,o,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,A.b([A.a(n,"\\$\\([a-zA-Z_]\\w*\\)",n,n,n,A.b([m],l),n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n),A.a(n,"\\$[@%{var q=null,p=t.s,o=t._ -return A.a(A.b(["md","mkdown","mkd"],p),q,q,q,q,A.b([A.a(q,q,q,q,"section",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,A.b([A.a(q,"^#{1,6}",q,q,q,q,q,"$",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"^.+?\\n[=-]{2,}$",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],o)),A.a(q,"<",q,q,q,q,q,">",q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,A.b(["xml"],p),q),A.a(q,"^\\s*([*+-]|(\\d+\\.))\\s+",q,q,"bullet",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"[*_]{2}.+?[*_]{2}",q,q,"strong",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,q,q,q,"emphasis",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,A.b([A.a(q,"\\*.+?\\*",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"_.+?_",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q)],o)),A.a(q,"^>\\s+",q,q,"quote",q,q,"$",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,q,q,q,"code",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,A.b([A.a(q,"^```\\w*\\s*$",q,q,q,q,q,"^```[ ]*$",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"`.+?`",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"^( {4}|\\t)",q,q,q,q,q,"$",q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q)],o)),A.a(q,"^[-\\*]{3,}",q,q,q,q,q,"$",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\[.+?\\][\\(\\[].*?[\\)\\]]",q,q,q,A.b([A.a(q,"\\[",q,q,"string",q,q,"\\]",q,q,q,!0,q,q,q,q,q,q,0,q,!0,q,q,q,q,q),A.a(q,"\\]\\(",q,q,"link",q,q,"\\)",q,q,q,!0,!0,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\]\\[",q,q,"symbol",q,q,"\\]",q,q,q,!0,!0,q,q,q,q,q,q,q,q,q,q,q,q,q)],o),q,q,q,q,q,q,q,q,q,q,q,q,10,!0,q,q,q,q,q,q),A.a(q,"^\\[[^\\n]+\\]:",q,q,q,A.b([A.a(q,"\\[",q,q,"symbol",q,q,"\\]",q,q,q,!0,!0,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,":\\s*",q,q,"link",q,q,"$",q,q,q,!0,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],o),q,q,q,q,q,q,q,q,q,q,q,q,q,!0,q,q,q,q,q,q)],o),q,q,q,q,q,q,q,q,q,q,q,A.m(t.N,t.n),q,q,q,q,q,q,q,q)}) -s($,"beg","aTl",()=>{var q=null,p=t._ -return A.a(A.b(["mma","wl"],t.s),q,q,q,q,A.b([A.a(q,"\\(\\*",q,q,"comment",A.b([A.a(q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,!0,q,q,q,q),$.aq(),A.a(q,"(?:TODO|FIXME|NOTE|BUG|XXX):",q,q,"doctag",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q)],p),q,"\\*\\)",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),$.aM(),$.bw()],p),q,q,q,q,q,q,q,q,"AASTriangle AbelianGroup Abort AbortKernels AbortProtect AbortScheduledTask Above Abs AbsArg AbsArgPlot Absolute AbsoluteCorrelation AbsoluteCorrelationFunction AbsoluteCurrentValue AbsoluteDashing AbsoluteFileName AbsoluteOptions AbsolutePointSize AbsoluteThickness AbsoluteTime AbsoluteTiming AcceptanceThreshold AccountingForm Accumulate Accuracy AccuracyGoal ActionDelay ActionMenu ActionMenuBox ActionMenuBoxOptions Activate Active ActiveClassification ActiveClassificationObject ActiveItem ActivePrediction ActivePredictionObject ActiveStyle AcyclicGraphQ AddOnHelpPath AddSides AddTo AddToSearchIndex AddUsers AdjacencyGraph AdjacencyList AdjacencyMatrix AdjustmentBox AdjustmentBoxOptions AdjustTimeSeriesForecast AdministrativeDivisionData AffineHalfSpace AffineSpace AffineStateSpaceModel AffineTransform After AggregatedEntityClass AggregationLayer AircraftData AirportData AirPressureData AirTemperatureData AiryAi AiryAiPrime AiryAiZero AiryBi AiryBiPrime AiryBiZero AlgebraicIntegerQ AlgebraicNumber AlgebraicNumberDenominator AlgebraicNumberNorm AlgebraicNumberPolynomial AlgebraicNumberTrace AlgebraicRules AlgebraicRulesData Algebraics AlgebraicUnitQ Alignment AlignmentMarker AlignmentPoint All AllowAdultContent AllowedCloudExtraParameters AllowedCloudParameterExtensions AllowedDimensions AllowedFrequencyRange AllowedHeads AllowGroupClose AllowIncomplete AllowInlineCells AllowKernelInitialization AllowLooseGrammar AllowReverseGroupClose AllowScriptLevelChange AllTrue Alphabet AlphabeticOrder AlphabeticSort AlphaChannel AlternateImage AlternatingFactorial AlternatingGroup AlternativeHypothesis Alternatives AltitudeMethod AmbientLight AmbiguityFunction AmbiguityList Analytic AnatomyData AnatomyForm AnatomyPlot3D AnatomySkinStyle AnatomyStyling AnchoredSearch And AndersonDarlingTest AngerJ AngleBisector AngleBracket AnglePath AnglePath3D AngleVector AngularGauge Animate AnimationCycleOffset AnimationCycleRepetitions AnimationDirection AnimationDisplayTime AnimationRate AnimationRepetitions AnimationRunning AnimationRunTime AnimationTimeIndex Animator AnimatorBox AnimatorBoxOptions AnimatorElements Annotate Annotation AnnotationDelete AnnotationNames AnnotationRules AnnotationValue Annuity AnnuityDue Annulus AnomalyDetection AnomalyDetectorFunction Anonymous Antialiasing AntihermitianMatrixQ Antisymmetric AntisymmetricMatrixQ Antonyms AnyOrder AnySubset AnyTrue Apart ApartSquareFree APIFunction Appearance AppearanceElements AppearanceRules AppellF1 Append AppendCheck AppendLayer AppendTo ApplicationIdentificationKey Apply ApplySides ArcCos ArcCosh ArcCot ArcCoth ArcCsc ArcCsch ArcCurvature ARCHProcess ArcLength ArcSec ArcSech ArcSin ArcSinDistribution ArcSinh ArcTan ArcTanh Area Arg ArgMax ArgMin ArgumentCountQ ARIMAProcess ArithmeticGeometricMean ARMAProcess Around AroundReplace ARProcess Array ArrayComponents ArrayDepth ArrayFilter ArrayFlatten ArrayMesh ArrayPad ArrayPlot ArrayQ ArrayResample ArrayReshape ArrayRules Arrays Arrow Arrow3DBox ArrowBox Arrowheads ASATriangle Ask AskAppend AskConfirm AskDisplay AskedQ AskedValue AskFunction AskState AskTemplateDisplay AspectRatio AspectRatioFixed Assert AssociateTo Association AssociationFormat AssociationMap AssociationQ AssociationThread AssumeDeterministic Assuming Assumptions AstronomicalData AsymptoticDSolveValue AsymptoticEqual AsymptoticEquivalent AsymptoticGreater AsymptoticGreaterEqual AsymptoticIntegrate AsymptoticLess AsymptoticLessEqual AsymptoticOutputTracker AsymptoticRSolveValue AsymptoticSolve AsymptoticSum Asynchronous AsynchronousTaskObject AsynchronousTasks Atom AtomCoordinates AtomCount AtomDiagramCoordinates AtomList AtomQ AttentionLayer Attributes Audio AudioAmplify AudioAnnotate AudioAnnotationLookup AudioBlockMap AudioCapture AudioChannelAssignment AudioChannelCombine AudioChannelMix AudioChannels AudioChannelSeparate AudioData AudioDelay AudioDelete AudioDevice AudioDistance AudioFade AudioFrequencyShift AudioGenerator AudioIdentify AudioInputDevice AudioInsert AudioIntervals AudioJoin AudioLabel AudioLength AudioLocalMeasurements AudioLooping AudioLoudness AudioMeasurements AudioNormalize AudioOutputDevice AudioOverlay AudioPad AudioPan AudioPartition AudioPause AudioPitchShift AudioPlay AudioPlot AudioQ AudioRecord AudioReplace AudioResample AudioReverb AudioSampleRate AudioSpectralMap AudioSpectralTransformation AudioSplit AudioStop AudioStream AudioStreams AudioTimeStretch AudioTrim AudioType AugmentedPolyhedron AugmentedSymmetricPolynomial Authenticate Authentication AuthenticationDialog AutoAction Autocomplete AutocompletionFunction AutoCopy AutocorrelationTest AutoDelete AutoEvaluateEvents AutoGeneratedPackage AutoIndent AutoIndentSpacings AutoItalicWords AutoloadPath AutoMatch Automatic AutomaticImageSize AutoMultiplicationSymbol AutoNumberFormatting AutoOpenNotebooks AutoOpenPalettes AutoQuoteCharacters AutoRefreshed AutoRemove AutorunSequencing AutoScaling AutoScroll AutoSpacing AutoStyleOptions AutoStyleWords AutoSubmitting Axes AxesEdge AxesLabel AxesOrigin AxesStyle AxiomaticTheory AxisBabyMonsterGroupB Back Background BackgroundAppearance BackgroundTasksSettings Backslash Backsubstitution Backward Ball Band BandpassFilter BandstopFilter BarabasiAlbertGraphDistribution BarChart BarChart3D BarcodeImage BarcodeRecognize BaringhausHenzeTest BarLegend BarlowProschanImportance BarnesG BarOrigin BarSpacing BartlettHannWindow BartlettWindow BaseDecode BaseEncode BaseForm Baseline BaselinePosition BaseStyle BasicRecurrentLayer BatchNormalizationLayer BatchSize BatesDistribution BattleLemarieWavelet BayesianMaximization BayesianMaximizationObject BayesianMinimization BayesianMinimizationObject Because BeckmannDistribution Beep Before Begin BeginDialogPacket BeginFrontEndInteractionPacket BeginPackage BellB BellY Below BenfordDistribution BeniniDistribution BenktanderGibratDistribution BenktanderWeibullDistribution BernoulliB BernoulliDistribution BernoulliGraphDistribution BernoulliProcess BernsteinBasis BesselFilterModel BesselI BesselJ BesselJZero BesselK BesselY BesselYZero Beta BetaBinomialDistribution BetaDistribution BetaNegativeBinomialDistribution BetaPrimeDistribution BetaRegularized Between BetweennessCentrality BeveledPolyhedron BezierCurve BezierCurve3DBox BezierCurve3DBoxOptions BezierCurveBox BezierCurveBoxOptions BezierFunction BilateralFilter Binarize BinaryDeserialize BinaryDistance BinaryFormat BinaryImageQ BinaryRead BinaryReadList BinarySerialize BinaryWrite BinCounts BinLists Binomial BinomialDistribution BinomialProcess BinormalDistribution BiorthogonalSplineWavelet BipartiteGraphQ BiquadraticFilterModel BirnbaumImportance BirnbaumSaundersDistribution BitAnd BitClear BitGet BitLength BitNot BitOr BitSet BitShiftLeft BitShiftRight BitXor BiweightLocation BiweightMidvariance Black BlackmanHarrisWindow BlackmanNuttallWindow BlackmanWindow Blank BlankForm BlankNullSequence BlankSequence Blend Block BlockchainAddressData BlockchainBase BlockchainBlockData BlockchainContractValue BlockchainData BlockchainGet BlockchainKeyEncode BlockchainPut BlockchainTokenData BlockchainTransaction BlockchainTransactionData BlockchainTransactionSign BlockchainTransactionSubmit BlockMap BlockRandom BlomqvistBeta BlomqvistBetaTest Blue Blur BodePlot BohmanWindow Bold Bond BondCount BondList BondQ Bookmarks Boole BooleanConsecutiveFunction BooleanConvert BooleanCountingFunction BooleanFunction BooleanGraph BooleanMaxterms BooleanMinimize BooleanMinterms BooleanQ BooleanRegion Booleans BooleanStrings BooleanTable BooleanVariables BorderDimensions BorelTannerDistribution Bottom BottomHatTransform BoundaryDiscretizeGraphics BoundaryDiscretizeRegion BoundaryMesh BoundaryMeshRegion BoundaryMeshRegionQ BoundaryStyle BoundedRegionQ BoundingRegion Bounds Box BoxBaselineShift BoxData BoxDimensions Boxed Boxes BoxForm BoxFormFormatTypes BoxFrame BoxID BoxMargins BoxMatrix BoxObject BoxRatios BoxRotation BoxRotationPoint BoxStyle BoxWhiskerChart Bra BracketingBar BraKet BrayCurtisDistance BreadthFirstScan Break BridgeData BrightnessEqualize BroadcastStationData Brown BrownForsytheTest BrownianBridgeProcess BrowserCategory BSplineBasis BSplineCurve BSplineCurve3DBox BSplineCurve3DBoxOptions BSplineCurveBox BSplineCurveBoxOptions BSplineFunction BSplineSurface BSplineSurface3DBox BSplineSurface3DBoxOptions BubbleChart BubbleChart3D BubbleScale BubbleSizes BuildingData BulletGauge BusinessDayQ ButterflyGraph ButterworthFilterModel Button ButtonBar ButtonBox ButtonBoxOptions ButtonCell ButtonContents ButtonData ButtonEvaluator ButtonExpandable ButtonFrame ButtonFunction ButtonMargins ButtonMinHeight ButtonNote ButtonNotebook ButtonSource ButtonStyle ButtonStyleMenuListing Byte ByteArray ByteArrayFormat ByteArrayQ ByteArrayToString ByteCount ByteOrderingC CachedValue CacheGraphics CachePersistence CalendarConvert CalendarData CalendarType Callout CalloutMarker CalloutStyle CallPacket CanberraDistance Cancel CancelButton CandlestickChart CanonicalGraph CanonicalizePolygon CanonicalizePolyhedron CanonicalName CanonicalWarpingCorrespondence CanonicalWarpingDistance CantorMesh CantorStaircase Cap CapForm CapitalDifferentialD Capitalize CapsuleShape CaptureRunning CardinalBSplineBasis CarlemanLinearize CarmichaelLambda CaseOrdering Cases CaseSensitive Cashflow Casoratian Catalan CatalanNumber Catch Catenate CatenateLayer CauchyDistribution CauchyWindow CayleyGraph CDF CDFDeploy CDFInformation CDFWavelet Ceiling CelestialSystem Cell CellAutoOverwrite CellBaseline CellBoundingBox CellBracketOptions CellChangeTimes CellContents CellContext CellDingbat CellDynamicExpression CellEditDuplicate CellElementsBoundingBox CellElementSpacings CellEpilog CellEvaluationDuplicate CellEvaluationFunction CellEvaluationLanguage CellEventActions CellFrame CellFrameColor CellFrameLabelMargins CellFrameLabels CellFrameMargins CellGroup CellGroupData CellGrouping CellGroupingRules CellHorizontalScrolling CellID CellLabel CellLabelAutoDelete CellLabelMargins CellLabelPositioning CellLabelStyle CellLabelTemplate CellMargins CellObject CellOpen CellPrint CellProlog Cells CellSize CellStyle CellTags CellularAutomaton CensoredDistribution Censoring Center CenterArray CenterDot CentralFeature CentralMoment CentralMomentGeneratingFunction Cepstrogram CepstrogramArray CepstrumArray CForm ChampernowneNumber ChangeOptions ChannelBase ChannelBrokerAction ChannelDatabin ChannelHistoryLength ChannelListen ChannelListener ChannelListeners ChannelListenerWait ChannelObject ChannelPreSendFunction ChannelReceiverFunction ChannelSend ChannelSubscribers ChanVeseBinarize Character CharacterCounts CharacterEncoding CharacterEncodingsPath CharacteristicFunction CharacteristicPolynomial CharacterName CharacterRange Characters ChartBaseStyle ChartElementData ChartElementDataFunction ChartElementFunction ChartElements ChartLabels ChartLayout ChartLegends ChartStyle Chebyshev1FilterModel Chebyshev2FilterModel ChebyshevDistance ChebyshevT ChebyshevU Check CheckAbort CheckAll Checkbox CheckboxBar CheckboxBox CheckboxBoxOptions ChemicalData ChessboardDistance ChiDistribution ChineseRemainder ChiSquareDistribution ChoiceButtons ChoiceDialog CholeskyDecomposition Chop ChromaticityPlot ChromaticityPlot3D ChromaticPolynomial Circle CircleBox CircleDot CircleMinus CirclePlus CirclePoints CircleThrough CircleTimes CirculantGraph CircularOrthogonalMatrixDistribution CircularQuaternionMatrixDistribution CircularRealMatrixDistribution CircularSymplecticMatrixDistribution CircularUnitaryMatrixDistribution Circumsphere CityData ClassifierFunction ClassifierInformation ClassifierMeasurements ClassifierMeasurementsObject Classify ClassPriors Clear ClearAll ClearAttributes ClearCookies ClearPermissions ClearSystemCache ClebschGordan ClickPane Clip ClipboardNotebook ClipFill ClippingStyle ClipPlanes ClipPlanesStyle ClipRange Clock ClockGauge ClockwiseContourIntegral Close Closed CloseKernels ClosenessCentrality Closing ClosingAutoSave ClosingEvent CloudAccountData CloudBase CloudConnect CloudDeploy CloudDirectory CloudDisconnect CloudEvaluate CloudExport CloudExpression CloudExpressions CloudFunction CloudGet CloudImport CloudLoggingData CloudObject CloudObjectInformation CloudObjectInformationData CloudObjectNameFormat CloudObjects CloudObjectURLType CloudPublish CloudPut CloudRenderingMethod CloudSave CloudShare CloudSubmit CloudSymbol CloudUnshare ClusterClassify ClusterDissimilarityFunction ClusteringComponents ClusteringTree CMYKColor Coarse CodeAssistOptions Coefficient CoefficientArrays CoefficientDomain CoefficientList CoefficientRules CoifletWavelet Collect Colon ColonForm ColorBalance ColorCombine ColorConvert ColorCoverage ColorData ColorDataFunction ColorDetect ColorDistance ColorFunction ColorFunctionScaling Colorize ColorNegate ColorOutput ColorProfileData ColorQ ColorQuantize ColorReplace ColorRules ColorSelectorSettings ColorSeparate ColorSetter ColorSetterBox ColorSetterBoxOptions ColorSlider ColorsNear ColorSpace ColorToneMapping Column ColumnAlignments ColumnBackgrounds ColumnForm ColumnLines ColumnsEqual ColumnSpacings ColumnWidths CombinedEntityClass CombinerFunction CometData CommonDefaultFormatTypes Commonest CommonestFilter CommonName CommonUnits CommunityBoundaryStyle CommunityGraphPlot CommunityLabels CommunityRegionStyle CompanyData CompatibleUnitQ CompilationOptions CompilationTarget Compile Compiled CompiledCodeFunction CompiledFunction CompilerOptions Complement CompleteGraph CompleteGraphQ CompleteKaryTree CompletionsListPacket Complex Complexes ComplexExpand ComplexInfinity ComplexityFunction ComplexListPlot ComplexPlot ComplexPlot3D ComponentMeasurements ComponentwiseContextMenu Compose ComposeList ComposeSeries CompositeQ Composition CompoundElement CompoundExpression CompoundPoissonDistribution CompoundPoissonProcess CompoundRenewalProcess Compress CompressedData ComputeUncertainty Condition ConditionalExpression Conditioned Cone ConeBox ConfidenceLevel ConfidenceRange ConfidenceTransform ConfigurationPath ConformAudio ConformImages Congruent ConicHullRegion ConicHullRegion3DBox ConicHullRegionBox ConicOptimization Conjugate ConjugateTranspose Conjunction Connect ConnectedComponents ConnectedGraphComponents ConnectedGraphQ ConnectedMeshComponents ConnectedMoleculeComponents ConnectedMoleculeQ ConnectionSettings ConnectLibraryCallbackFunction ConnectSystemModelComponents ConnesWindow ConoverTest ConsoleMessage ConsoleMessagePacket ConsolePrint Constant ConstantArray ConstantArrayLayer ConstantImage ConstantPlusLayer ConstantRegionQ Constants ConstantTimesLayer ConstellationData ConstrainedMax ConstrainedMin Construct Containing ContainsAll ContainsAny ContainsExactly ContainsNone ContainsOnly ContentFieldOptions ContentLocationFunction ContentObject ContentPadding ContentsBoundingBox ContentSelectable ContentSize Context ContextMenu Contexts ContextToFileName Continuation Continue ContinuedFraction ContinuedFractionK ContinuousAction ContinuousMarkovProcess ContinuousTask ContinuousTimeModelQ ContinuousWaveletData ContinuousWaveletTransform ContourDetect ContourGraphics ContourIntegral ContourLabels ContourLines ContourPlot ContourPlot3D Contours ContourShading ContourSmoothing ContourStyle ContraharmonicMean ContrastiveLossLayer Control ControlActive ControlAlignment ControlGroupContentsBox ControllabilityGramian ControllabilityMatrix ControllableDecomposition ControllableModelQ ControllerDuration ControllerInformation ControllerInformationData ControllerLinking ControllerManipulate ControllerMethod ControllerPath ControllerState ControlPlacement ControlsRendering ControlType Convergents ConversionOptions ConversionRules ConvertToBitmapPacket ConvertToPostScript ConvertToPostScriptPacket ConvexHullMesh ConvexPolygonQ ConvexPolyhedronQ ConvolutionLayer Convolve ConwayGroupCo1 ConwayGroupCo2 ConwayGroupCo3 CookieFunction Cookies CoordinateBoundingBox CoordinateBoundingBoxArray CoordinateBounds CoordinateBoundsArray CoordinateChartData CoordinatesToolOptions CoordinateTransform CoordinateTransformData CoprimeQ Coproduct CopulaDistribution Copyable CopyDatabin CopyDirectory CopyFile CopyTag CopyToClipboard CornerFilter CornerNeighbors Correlation CorrelationDistance CorrelationFunction CorrelationTest Cos Cosh CoshIntegral CosineDistance CosineWindow CosIntegral Cot Coth Count CountDistinct CountDistinctBy CounterAssignments CounterBox CounterBoxOptions CounterClockwiseContourIntegral CounterEvaluator CounterFunction CounterIncrements CounterStyle CounterStyleMenuListing CountRoots CountryData Counts CountsBy Covariance CovarianceEstimatorFunction CovarianceFunction CoxianDistribution CoxIngersollRossProcess CoxModel CoxModelFit CramerVonMisesTest CreateArchive CreateCellID CreateChannel CreateCloudExpression CreateDatabin CreateDataSystemModel CreateDialog CreateDirectory CreateDocument CreateFile CreateIntermediateDirectories CreateManagedLibraryExpression CreateNotebook CreatePalette CreatePalettePacket CreatePermissionsGroup CreateScheduledTask CreateSearchIndex CreateSystemModel CreateTemporary CreateUUID CreateWindow CriterionFunction CriticalityFailureImportance CriticalitySuccessImportance CriticalSection Cross CrossEntropyLossLayer CrossingCount CrossingDetect CrossingPolygon CrossMatrix Csc Csch CTCLossLayer Cube CubeRoot Cubics Cuboid CuboidBox Cumulant CumulantGeneratingFunction Cup CupCap Curl CurlyDoubleQuote CurlyQuote CurrencyConvert CurrentDate CurrentImage CurrentlySpeakingPacket CurrentNotebookImage CurrentScreenImage CurrentValue Curry CurvatureFlowFilter CurveClosed Cyan CycleGraph CycleIndexPolynomial Cycles CyclicGroup Cyclotomic Cylinder CylinderBox CylindricalDecompositionD DagumDistribution DamData DamerauLevenshteinDistance DampingFactor Darker Dashed Dashing DatabaseConnect DatabaseDisconnect DatabaseReference Databin DatabinAdd DatabinRemove Databins DatabinUpload DataCompression DataDistribution DataRange DataReversed Dataset Date DateBounds Dated DateDelimiters DateDifference DatedUnit DateFormat DateFunction DateHistogram DateList DateListLogPlot DateListPlot DateListStepPlot DateObject DateObjectQ DateOverlapsQ DatePattern DatePlus DateRange DateReduction DateString DateTicksFormat DateValue DateWithinQ DaubechiesWavelet DavisDistribution DawsonF DayCount DayCountConvention DayHemisphere DaylightQ DayMatchQ DayName DayNightTerminator DayPlus DayRange DayRound DeBruijnGraph DeBruijnSequence Debug DebugTag Decapitalize Decimal DecimalForm DeclareKnownSymbols DeclarePackage Decompose DeconvolutionLayer Decrement Decrypt DecryptFile DedekindEta DeepSpaceProbeData Default DefaultAxesStyle DefaultBaseStyle DefaultBoxStyle DefaultButton DefaultColor DefaultControlPlacement DefaultDuplicateCellStyle DefaultDuration DefaultElement DefaultFaceGridsStyle DefaultFieldHintStyle DefaultFont DefaultFontProperties DefaultFormatType DefaultFormatTypeForStyle DefaultFrameStyle DefaultFrameTicksStyle DefaultGridLinesStyle DefaultInlineFormatType DefaultInputFormatType DefaultLabelStyle DefaultMenuStyle DefaultNaturalLanguage DefaultNewCellStyle DefaultNewInlineCellStyle DefaultNotebook DefaultOptions DefaultOutputFormatType DefaultPrintPrecision DefaultStyle DefaultStyleDefinitions DefaultTextFormatType DefaultTextInlineFormatType DefaultTicksStyle DefaultTooltipStyle DefaultValue DefaultValues Defer DefineExternal DefineInputStreamMethod DefineOutputStreamMethod DefineResourceFunction Definition Degree DegreeCentrality DegreeGraphDistribution DegreeLexicographic DegreeReverseLexicographic DEigensystem DEigenvalues Deinitialization Del DelaunayMesh Delayed Deletable Delete DeleteAnomalies DeleteBorderComponents DeleteCases DeleteChannel DeleteCloudExpression DeleteContents DeleteDirectory DeleteDuplicates DeleteDuplicatesBy DeleteFile DeleteMissing DeleteObject DeletePermissionsKey DeleteSearchIndex DeleteSmallComponents DeleteStopwords DeleteWithContents DeletionWarning DelimitedArray DelimitedSequence Delimiter DelimiterFlashTime DelimiterMatching Delimiters DeliveryFunction Dendrogram Denominator DensityGraphics DensityHistogram DensityPlot DensityPlot3D DependentVariables Deploy Deployed Depth DepthFirstScan Derivative DerivativeFilter DerivedKey DescriptorStateSpace DesignMatrix DestroyAfterEvaluation Det DeviceClose DeviceConfigure DeviceExecute DeviceExecuteAsynchronous DeviceObject DeviceOpen DeviceOpenQ DeviceRead DeviceReadBuffer DeviceReadLatest DeviceReadList DeviceReadTimeSeries Devices DeviceStreams DeviceWrite DeviceWriteBuffer DGaussianWavelet DiacriticalPositioning Diagonal DiagonalizableMatrixQ DiagonalMatrix DiagonalMatrixQ Dialog DialogIndent DialogInput DialogLevel DialogNotebook DialogProlog DialogReturn DialogSymbols Diamond DiamondMatrix DiceDissimilarity DictionaryLookup DictionaryWordQ DifferenceDelta DifferenceOrder DifferenceQuotient DifferenceRoot DifferenceRootReduce Differences DifferentialD DifferentialRoot DifferentialRootReduce DifferentiatorFilter DigitalSignature DigitBlock DigitBlockMinimum DigitCharacter DigitCount DigitQ DihedralAngle DihedralGroup Dilation DimensionalCombinations DimensionalMeshComponents DimensionReduce DimensionReducerFunction DimensionReduction Dimensions DiracComb DiracDelta DirectedEdge DirectedEdges DirectedGraph DirectedGraphQ DirectedInfinity Direction Directive Directory DirectoryName DirectoryQ DirectoryStack DirichletBeta DirichletCharacter DirichletCondition DirichletConvolve DirichletDistribution DirichletEta DirichletL DirichletLambda DirichletTransform DirichletWindow DisableConsolePrintPacket DisableFormatting DiscreteChirpZTransform DiscreteConvolve DiscreteDelta DiscreteHadamardTransform DiscreteIndicator DiscreteLimit DiscreteLQEstimatorGains DiscreteLQRegulatorGains DiscreteLyapunovSolve DiscreteMarkovProcess DiscreteMaxLimit DiscreteMinLimit DiscretePlot DiscretePlot3D DiscreteRatio DiscreteRiccatiSolve DiscreteShift DiscreteTimeModelQ DiscreteUniformDistribution DiscreteVariables DiscreteWaveletData DiscreteWaveletPacketTransform DiscreteWaveletTransform DiscretizeGraphics DiscretizeRegion Discriminant DisjointQ Disjunction Disk DiskBox DiskMatrix DiskSegment Dispatch DispatchQ DispersionEstimatorFunction Display DisplayAllSteps DisplayEndPacket DisplayFlushImagePacket DisplayForm DisplayFunction DisplayPacket DisplayRules DisplaySetSizePacket DisplayString DisplayTemporary DisplayWith DisplayWithRef DisplayWithVariable DistanceFunction DistanceMatrix DistanceTransform Distribute Distributed DistributedContexts DistributeDefinitions DistributionChart DistributionDomain DistributionFitTest DistributionParameterAssumptions DistributionParameterQ Dithering Div Divergence Divide DivideBy Dividers DivideSides Divisible Divisors DivisorSigma DivisorSum DMSList DMSString Do DockedCells DocumentGenerator DocumentGeneratorInformation DocumentGeneratorInformationData DocumentGenerators DocumentNotebook DocumentWeightingRules Dodecahedron DomainRegistrationInformation DominantColors DOSTextFormat Dot DotDashed DotEqual DotLayer DotPlusLayer Dotted DoubleBracketingBar DoubleContourIntegral DoubleDownArrow DoubleLeftArrow DoubleLeftRightArrow DoubleLeftTee DoubleLongLeftArrow DoubleLongLeftRightArrow DoubleLongRightArrow DoubleRightArrow DoubleRightTee DoubleUpArrow DoubleUpDownArrow DoubleVerticalBar DoublyInfinite Down DownArrow DownArrowBar DownArrowUpArrow DownLeftRightVector DownLeftTeeVector DownLeftVector DownLeftVectorBar DownRightTeeVector DownRightVector DownRightVectorBar Downsample DownTee DownTeeArrow DownValues DragAndDrop DrawEdges DrawFrontFaces DrawHighlighted Drop DropoutLayer DSolve DSolveValue Dt DualLinearProgramming DualPolyhedron DualSystemsModel DumpGet DumpSave DuplicateFreeQ Duration Dynamic DynamicBox DynamicBoxOptions DynamicEvaluationTimeout DynamicGeoGraphics DynamicImage DynamicLocation DynamicModule DynamicModuleBox DynamicModuleBoxOptions DynamicModuleParent DynamicModuleValues DynamicName DynamicNamespace DynamicReference DynamicSetting DynamicUpdating DynamicWrapper DynamicWrapperBox DynamicWrapperBoxOptionsE EarthImpactData EarthquakeData EccentricityCentrality Echo EchoFunction EclipseType EdgeAdd EdgeBetweennessCentrality EdgeCapacity EdgeCapForm EdgeColor EdgeConnectivity EdgeContract EdgeCost EdgeCount EdgeCoverQ EdgeCycleMatrix EdgeDashing EdgeDelete EdgeDetect EdgeForm EdgeIndex EdgeJoinForm EdgeLabeling EdgeLabels EdgeLabelStyle EdgeList EdgeOpacity EdgeQ EdgeRenderingFunction EdgeRules EdgeShapeFunction EdgeStyle EdgeThickness EdgeWeight EdgeWeightedGraphQ Editable EditButtonSettings EditCellTagsSettings EditDistance EffectiveInterest Eigensystem Eigenvalues EigenvectorCentrality Eigenvectors Element ElementData ElementwiseLayer ElidedForms Eliminate EliminationOrder Ellipsoid EllipticE EllipticExp EllipticExpPrime EllipticF EllipticFilterModel EllipticK EllipticLog EllipticNomeQ EllipticPi EllipticReducedHalfPeriods EllipticTheta EllipticThetaPrime EmbedCode EmbeddedHTML EmbeddedService EmbeddingLayer EmbeddingObject EmitSound EmphasizeSyntaxErrors EmpiricalDistribution Empty EmptyGraphQ EmptyRegion EnableConsolePrintPacket Enabled Encode Encrypt EncryptedObject EncryptFile End EndAdd EndDialogPacket EndFrontEndInteractionPacket EndOfBuffer EndOfFile EndOfLine EndOfString EndPackage EngineEnvironment EngineeringForm Enter EnterExpressionPacket EnterTextPacket Entity EntityClass EntityClassList EntityCopies EntityFunction EntityGroup EntityInstance EntityList EntityPrefetch EntityProperties EntityProperty EntityPropertyClass EntityRegister EntityStore EntityStores EntityTypeName EntityUnregister EntityValue Entropy EntropyFilter Environment Epilog EpilogFunction Equal EqualColumns EqualRows EqualTilde EqualTo EquatedTo Equilibrium EquirippleFilterKernel Equivalent Erf Erfc Erfi ErlangB ErlangC ErlangDistribution Erosion ErrorBox ErrorBoxOptions ErrorNorm ErrorPacket ErrorsDialogSettings EscapeRadius EstimatedBackground EstimatedDistribution EstimatedProcess EstimatorGains EstimatorRegulator EuclideanDistance EulerAngles EulerCharacteristic EulerE EulerGamma EulerianGraphQ EulerMatrix EulerPhi Evaluatable Evaluate Evaluated EvaluatePacket EvaluateScheduledTask EvaluationBox EvaluationCell EvaluationCompletionAction EvaluationData EvaluationElements EvaluationEnvironment EvaluationMode EvaluationMonitor EvaluationNotebook EvaluationObject EvaluationOrder Evaluator EvaluatorNames EvenQ EventData EventEvaluator EventHandler EventHandlerTag EventLabels EventSeries ExactBlackmanWindow ExactNumberQ ExactRootIsolation ExampleData Except ExcludedForms ExcludedLines ExcludedPhysicalQuantities ExcludePods Exclusions ExclusionsStyle Exists Exit ExitDialog ExoplanetData Exp Expand ExpandAll ExpandDenominator ExpandFileName ExpandNumerator Expectation ExpectationE ExpectedValue ExpGammaDistribution ExpIntegralE ExpIntegralEi ExpirationDate Exponent ExponentFunction ExponentialDistribution ExponentialFamily ExponentialGeneratingFunction ExponentialMovingAverage ExponentialPowerDistribution ExponentPosition ExponentStep Export ExportAutoReplacements ExportByteArray ExportForm ExportPacket ExportString Expression ExpressionCell ExpressionPacket ExpressionUUID ExpToTrig ExtendedEntityClass ExtendedGCD Extension ExtentElementFunction ExtentMarkers ExtentSize ExternalBundle ExternalCall ExternalDataCharacterEncoding ExternalEvaluate ExternalFunction ExternalFunctionName ExternalObject ExternalOptions ExternalSessionObject ExternalSessions ExternalTypeSignature ExternalValue Extract ExtractArchive ExtractLayer ExtremeValueDistributionFaceForm FaceGrids FaceGridsStyle FacialFeatures Factor FactorComplete Factorial Factorial2 FactorialMoment FactorialMomentGeneratingFunction FactorialPower FactorInteger FactorList FactorSquareFree FactorSquareFreeList FactorTerms FactorTermsList Fail Failure FailureAction FailureDistribution FailureQ False FareySequence FARIMAProcess FeatureDistance FeatureExtract FeatureExtraction FeatureExtractor FeatureExtractorFunction FeatureNames FeatureNearest FeatureSpacePlot FeatureSpacePlot3D FeatureTypes FEDisableConsolePrintPacket FeedbackLinearize FeedbackSector FeedbackSectorStyle FeedbackType FEEnableConsolePrintPacket FetalGrowthData Fibonacci Fibonorial FieldCompletionFunction FieldHint FieldHintStyle FieldMasked FieldSize File FileBaseName FileByteCount FileConvert FileDate FileExistsQ FileExtension FileFormat FileHandler FileHash FileInformation FileName FileNameDepth FileNameDialogSettings FileNameDrop FileNameForms FileNameJoin FileNames FileNameSetter FileNameSplit FileNameTake FilePrint FileSize FileSystemMap FileSystemScan FileTemplate FileTemplateApply FileType FilledCurve FilledCurveBox FilledCurveBoxOptions Filling FillingStyle FillingTransform FilteredEntityClass FilterRules FinancialBond FinancialData FinancialDerivative FinancialIndicator Find FindAnomalies FindArgMax FindArgMin FindChannels FindClique FindClusters FindCookies FindCurvePath FindCycle FindDevices FindDistribution FindDistributionParameters FindDivisions FindEdgeCover FindEdgeCut FindEdgeIndependentPaths FindEquationalProof FindEulerianCycle FindExternalEvaluators FindFaces FindFile FindFit FindFormula FindFundamentalCycles FindGeneratingFunction FindGeoLocation FindGeometricConjectures FindGeometricTransform FindGraphCommunities FindGraphIsomorphism FindGraphPartition FindHamiltonianCycle FindHamiltonianPath FindHiddenMarkovStates FindIndependentEdgeSet FindIndependentVertexSet FindInstance FindIntegerNullVector FindKClan FindKClique FindKClub FindKPlex FindLibrary FindLinearRecurrence FindList FindMatchingColor FindMaximum FindMaximumFlow FindMaxValue FindMeshDefects FindMinimum FindMinimumCostFlow FindMinimumCut FindMinValue FindMoleculeSubstructure FindPath FindPeaks FindPermutation FindPostmanTour FindProcessParameters FindRepeat FindRoot FindSequenceFunction FindSettings FindShortestPath FindShortestTour FindSpanningTree FindSystemModelEquilibrium FindTextualAnswer FindThreshold FindTransientRepeat FindVertexCover FindVertexCut FindVertexIndependentPaths Fine FinishDynamic FiniteAbelianGroupCount FiniteGroupCount FiniteGroupData First FirstCase FirstPassageTimeDistribution FirstPosition FischerGroupFi22 FischerGroupFi23 FischerGroupFi24Prime FisherHypergeometricDistribution FisherRatioTest FisherZDistribution Fit FitAll FitRegularization FittedModel FixedOrder FixedPoint FixedPointList FlashSelection Flat Flatten FlattenAt FlattenLayer FlatTopWindow FlipView Floor FlowPolynomial FlushPrintOutputPacket Fold FoldList FoldPair FoldPairList FollowRedirects Font FontColor FontFamily FontForm FontName FontOpacity FontPostScriptName FontProperties FontReencoding FontSize FontSlant FontSubstitutions FontTracking FontVariations FontWeight For ForAll Format FormatRules FormatType FormatTypeAutoConvert FormatValues FormBox FormBoxOptions FormControl FormFunction FormLayoutFunction FormObject FormPage FormTheme FormulaData FormulaLookup FortranForm Forward ForwardBackward Fourier FourierCoefficient FourierCosCoefficient FourierCosSeries FourierCosTransform FourierDCT FourierDCTFilter FourierDCTMatrix FourierDST FourierDSTMatrix FourierMatrix FourierParameters FourierSequenceTransform FourierSeries FourierSinCoefficient FourierSinSeries FourierSinTransform FourierTransform FourierTrigSeries FractionalBrownianMotionProcess FractionalGaussianNoiseProcess FractionalPart FractionBox FractionBoxOptions FractionLine Frame FrameBox FrameBoxOptions Framed FrameInset FrameLabel Frameless FrameMargins FrameRate FrameStyle FrameTicks FrameTicksStyle FRatioDistribution FrechetDistribution FreeQ FrenetSerretSystem FrequencySamplingFilterKernel FresnelC FresnelF FresnelG FresnelS Friday FrobeniusNumber FrobeniusSolve FromAbsoluteTime FromCharacterCode FromCoefficientRules FromContinuedFraction FromDate FromDigits FromDMS FromEntity FromJulianDate FromLetterNumber FromPolarCoordinates FromRomanNumeral FromSphericalCoordinates FromUnixTime Front FrontEndDynamicExpression FrontEndEventActions FrontEndExecute FrontEndObject FrontEndResource FrontEndResourceString FrontEndStackSize FrontEndToken FrontEndTokenExecute FrontEndValueCache FrontEndVersion FrontFaceColor FrontFaceOpacity Full FullAxes FullDefinition FullForm FullGraphics FullInformationOutputRegulator FullOptions FullRegion FullSimplify Function FunctionCompile FunctionCompileExport FunctionCompileExportByteArray FunctionCompileExportLibrary FunctionCompileExportString FunctionDomain FunctionExpand FunctionInterpolation FunctionPeriod FunctionRange FunctionSpace FussellVeselyImportanceGaborFilter GaborMatrix GaborWavelet GainMargins GainPhaseMargins GalaxyData GalleryView Gamma GammaDistribution GammaRegularized GapPenalty GARCHProcess GatedRecurrentLayer Gather GatherBy GaugeFaceElementFunction GaugeFaceStyle GaugeFrameElementFunction GaugeFrameSize GaugeFrameStyle GaugeLabels GaugeMarkers GaugeStyle GaussianFilter GaussianIntegers GaussianMatrix GaussianOrthogonalMatrixDistribution GaussianSymplecticMatrixDistribution GaussianUnitaryMatrixDistribution GaussianWindow GCD GegenbauerC General GeneralizedLinearModelFit GenerateAsymmetricKeyPair GenerateConditions GeneratedCell GeneratedDocumentBinding GenerateDerivedKey GenerateDigitalSignature GenerateDocument GeneratedParameters GeneratedQuantityMagnitudes GenerateHTTPResponse GenerateSecuredAuthenticationKey GenerateSymmetricKey GeneratingFunction GeneratorDescription GeneratorHistoryLength GeneratorOutputType Generic GenericCylindricalDecomposition GenomeData GenomeLookup GeoAntipode GeoArea GeoArraySize GeoBackground GeoBoundingBox GeoBounds GeoBoundsRegion GeoBubbleChart GeoCenter GeoCircle GeodesicClosing GeodesicDilation GeodesicErosion GeodesicOpening GeoDestination GeodesyData GeoDirection GeoDisk GeoDisplacement GeoDistance GeoDistanceList GeoElevationData GeoEntities GeoGraphics GeogravityModelData GeoGridDirectionDifference GeoGridLines GeoGridLinesStyle GeoGridPosition GeoGridRange GeoGridRangePadding GeoGridUnitArea GeoGridUnitDistance GeoGridVector GeoGroup GeoHemisphere GeoHemisphereBoundary GeoHistogram GeoIdentify GeoImage GeoLabels GeoLength GeoListPlot GeoLocation GeologicalPeriodData GeomagneticModelData GeoMarker GeometricAssertion GeometricBrownianMotionProcess GeometricDistribution GeometricMean GeometricMeanFilter GeometricScene GeometricTransformation GeometricTransformation3DBox GeometricTransformation3DBoxOptions GeometricTransformationBox GeometricTransformationBoxOptions GeoModel GeoNearest GeoPath GeoPosition GeoPositionENU GeoPositionXYZ GeoProjection GeoProjectionData GeoRange GeoRangePadding GeoRegionValuePlot GeoResolution GeoScaleBar GeoServer GeoSmoothHistogram GeoStreamPlot GeoStyling GeoStylingImageFunction GeoVariant GeoVector GeoVectorENU GeoVectorPlot GeoVectorXYZ GeoVisibleRegion GeoVisibleRegionBoundary GeoWithinQ GeoZoomLevel GestureHandler GestureHandlerTag Get GetBoundingBoxSizePacket GetContext GetEnvironment GetFileName GetFrontEndOptionsDataPacket GetLinebreakInformationPacket GetMenusPacket GetPageBreakInformationPacket Glaisher GlobalClusteringCoefficient GlobalPreferences GlobalSession Glow GoldenAngle GoldenRatio GompertzMakehamDistribution GoodmanKruskalGamma GoodmanKruskalGammaTest Goto Grad Gradient GradientFilter GradientOrientationFilter GrammarApply GrammarRules GrammarToken Graph Graph3D GraphAssortativity GraphAutomorphismGroup GraphCenter GraphComplement GraphData GraphDensity GraphDiameter GraphDifference GraphDisjointUnion GraphDistance GraphDistanceMatrix GraphElementData GraphEmbedding GraphHighlight GraphHighlightStyle GraphHub Graphics Graphics3D Graphics3DBox Graphics3DBoxOptions GraphicsArray GraphicsBaseline GraphicsBox GraphicsBoxOptions GraphicsColor GraphicsColumn GraphicsComplex GraphicsComplex3DBox GraphicsComplex3DBoxOptions GraphicsComplexBox GraphicsComplexBoxOptions GraphicsContents GraphicsData GraphicsGrid GraphicsGridBox GraphicsGroup GraphicsGroup3DBox GraphicsGroup3DBoxOptions GraphicsGroupBox GraphicsGroupBoxOptions GraphicsGrouping GraphicsHighlightColor GraphicsRow GraphicsSpacing GraphicsStyle GraphIntersection GraphLayout GraphLinkEfficiency GraphPeriphery GraphPlot GraphPlot3D GraphPower GraphPropertyDistribution GraphQ GraphRadius GraphReciprocity GraphRoot GraphStyle GraphUnion Gray GrayLevel Greater GreaterEqual GreaterEqualLess GreaterEqualThan GreaterFullEqual GreaterGreater GreaterLess GreaterSlantEqual GreaterThan GreaterTilde Green GreenFunction Grid GridBaseline GridBox GridBoxAlignment GridBoxBackground GridBoxDividers GridBoxFrame GridBoxItemSize GridBoxItemStyle GridBoxOptions GridBoxSpacings GridCreationSettings GridDefaultElement GridElementStyleOptions GridFrame GridFrameMargins GridGraph GridLines GridLinesStyle GroebnerBasis GroupActionBase GroupBy GroupCentralizer GroupElementFromWord GroupElementPosition GroupElementQ GroupElements GroupElementToWord GroupGenerators Groupings GroupMultiplicationTable GroupOrbits GroupOrder GroupPageBreakWithin GroupSetwiseStabilizer GroupStabilizer GroupStabilizerChain GroupTogetherGrouping GroupTogetherNestedGrouping GrowCutComponents Gudermannian GuidedFilter GumbelDistributionHaarWavelet HadamardMatrix HalfLine HalfNormalDistribution HalfPlane HalfSpace HamiltonianGraphQ HammingDistance HammingWindow HandlerFunctions HandlerFunctionsKeys HankelH1 HankelH2 HankelMatrix HankelTransform HannPoissonWindow HannWindow HaradaNortonGroupHN HararyGraph HarmonicMean HarmonicMeanFilter HarmonicNumber Hash Haversine HazardFunction Head HeadCompose HeaderLines Heads HeavisideLambda HeavisidePi HeavisideTheta HeldGroupHe HeldPart HelpBrowserLookup HelpBrowserNotebook HelpBrowserSettings Here HermiteDecomposition HermiteH HermitianMatrixQ HessenbergDecomposition Hessian HexadecimalCharacter Hexahedron HexahedronBox HexahedronBoxOptions HiddenMarkovProcess HiddenSurface Highlighted HighlightGraph HighlightImage HighlightMesh HighpassFilter HigmanSimsGroupHS HilbertCurve HilbertFilter HilbertMatrix Histogram Histogram3D HistogramDistribution HistogramList HistogramTransform HistogramTransformInterpolation HistoricalPeriodData HitMissTransform HITSCentrality HjorthDistribution HodgeDual HoeffdingD HoeffdingDTest Hold HoldAll HoldAllComplete HoldComplete HoldFirst HoldForm HoldPattern HoldRest HolidayCalendar HomeDirectory HomePage Horizontal HorizontalForm HorizontalGauge HorizontalScrollPosition HornerForm HostLookup HotellingTSquareDistribution HoytDistribution HTMLSave HTTPErrorResponse HTTPRedirect HTTPRequest HTTPRequestData HTTPResponse Hue HumanGrowthData HumpDownHump HumpEqual HurwitzLerchPhi HurwitzZeta HyperbolicDistribution HypercubeGraph HyperexponentialDistribution Hyperfactorial Hypergeometric0F1 Hypergeometric0F1Regularized Hypergeometric1F1 Hypergeometric1F1Regularized Hypergeometric2F1 Hypergeometric2F1Regularized HypergeometricDistribution HypergeometricPFQ HypergeometricPFQRegularized HypergeometricU Hyperlink HyperlinkCreationSettings Hyperplane Hyphenation HyphenationOptions HypoexponentialDistribution HypothesisTestDataI IconData Iconize IconizedObject IconRules Icosahedron Identity IdentityMatrix If IgnoreCase IgnoreDiacritics IgnorePunctuation IgnoreSpellCheck IgnoringInactive Im Image Image3D Image3DProjection Image3DSlices ImageAccumulate ImageAdd ImageAdjust ImageAlign ImageApply ImageApplyIndexed ImageAspectRatio ImageAssemble ImageAugmentationLayer ImageBoundingBoxes ImageCache ImageCacheValid ImageCapture ImageCaptureFunction ImageCases ImageChannels ImageClip ImageCollage ImageColorSpace ImageCompose ImageContainsQ ImageContents ImageConvolve ImageCooccurrence ImageCorners ImageCorrelate ImageCorrespondingPoints ImageCrop ImageData ImageDeconvolve ImageDemosaic ImageDifference ImageDimensions ImageDisplacements ImageDistance ImageEffect ImageExposureCombine ImageFeatureTrack ImageFileApply ImageFileFilter ImageFileScan ImageFilter ImageFocusCombine ImageForestingComponents ImageFormattingWidth ImageForwardTransformation ImageGraphics ImageHistogram ImageIdentify ImageInstanceQ ImageKeypoints ImageLevels ImageLines ImageMargins ImageMarker ImageMarkers ImageMeasurements ImageMesh ImageMultiply ImageOffset ImagePad ImagePadding ImagePartition ImagePeriodogram ImagePerspectiveTransformation ImagePosition ImagePreviewFunction ImagePyramid ImagePyramidApply ImageQ ImageRangeCache ImageRecolor ImageReflect ImageRegion ImageResize ImageResolution ImageRestyle ImageRotate ImageRotated ImageSaliencyFilter ImageScaled ImageScan ImageSize ImageSizeAction ImageSizeCache ImageSizeMultipliers ImageSizeRaw ImageSubtract ImageTake ImageTransformation ImageTrim ImageType ImageValue ImageValuePositions ImagingDevice ImplicitRegion Implies Import ImportAutoReplacements ImportByteArray ImportOptions ImportString ImprovementImportance In Inactivate Inactive IncidenceGraph IncidenceList IncidenceMatrix IncludeAromaticBonds IncludeConstantBasis IncludeDefinitions IncludeDirectories IncludeFileExtension IncludeGeneratorTasks IncludeHydrogens IncludeInflections IncludeMetaInformation IncludePods IncludeQuantities IncludeRelatedTables IncludeSingularTerm IncludeWindowTimes Increment IndefiniteMatrixQ Indent IndentingNewlineSpacings IndentMaxFraction IndependenceTest IndependentEdgeSetQ IndependentPhysicalQuantity IndependentUnit IndependentUnitDimension IndependentVertexSetQ Indeterminate IndeterminateThreshold IndexCreationOptions Indexed IndexGraph IndexTag Inequality InexactNumberQ InexactNumbers InfiniteLine InfinitePlane Infinity Infix InflationAdjust InflationMethod Information InformationData InformationDataGrid Inherited InheritScope InhomogeneousPoissonProcess InitialEvaluationHistory Initialization InitializationCell InitializationCellEvaluation InitializationCellWarning InitializationObjects InitializationValue Initialize InitialSeeding InlineCounterAssignments InlineCounterIncrements InlineRules Inner InnerPolygon InnerPolyhedron Inpaint Input InputAliases InputAssumptions InputAutoReplacements InputField InputFieldBox InputFieldBoxOptions InputForm InputGrouping InputNamePacket InputNotebook InputPacket InputSettings InputStream InputString InputStringPacket InputToBoxFormPacket Insert InsertionFunction InsertionPointObject InsertLinebreaks InsertResults Inset Inset3DBox Inset3DBoxOptions InsetBox InsetBoxOptions Insphere Install InstallService InstanceNormalizationLayer InString Integer IntegerDigits IntegerExponent IntegerLength IntegerName IntegerPart IntegerPartitions IntegerQ IntegerReverse Integers IntegerString Integral Integrate Interactive InteractiveTradingChart Interlaced Interleaving InternallyBalancedDecomposition InterpolatingFunction InterpolatingPolynomial Interpolation InterpolationOrder InterpolationPoints InterpolationPrecision Interpretation InterpretationBox InterpretationBoxOptions InterpretationFunction Interpreter InterpretTemplate InterquartileRange Interrupt InterruptSettings IntersectingQ Intersection Interval IntervalIntersection IntervalMarkers IntervalMarkersStyle IntervalMemberQ IntervalSlider IntervalUnion Into Inverse InverseBetaRegularized InverseCDF InverseChiSquareDistribution InverseContinuousWaveletTransform InverseDistanceTransform InverseEllipticNomeQ InverseErf InverseErfc InverseFourier InverseFourierCosTransform InverseFourierSequenceTransform InverseFourierSinTransform InverseFourierTransform InverseFunction InverseFunctions InverseGammaDistribution InverseGammaRegularized InverseGaussianDistribution InverseGudermannian InverseHankelTransform InverseHaversine InverseImagePyramid InverseJacobiCD InverseJacobiCN InverseJacobiCS InverseJacobiDC InverseJacobiDN InverseJacobiDS InverseJacobiNC InverseJacobiND InverseJacobiNS InverseJacobiSC InverseJacobiSD InverseJacobiSN InverseLaplaceTransform InverseMellinTransform InversePermutation InverseRadon InverseRadonTransform InverseSeries InverseShortTimeFourier InverseSpectrogram InverseSurvivalFunction InverseTransformedRegion InverseWaveletTransform InverseWeierstrassP InverseWishartMatrixDistribution InverseZTransform Invisible InvisibleApplication InvisibleTimes IPAddress IrreduciblePolynomialQ IslandData IsolatingInterval IsomorphicGraphQ IsotopeData Italic Item ItemAspectRatio ItemBox ItemBoxOptions ItemSize ItemStyle ItoProcessJaccardDissimilarity JacobiAmplitude Jacobian JacobiCD JacobiCN JacobiCS JacobiDC JacobiDN JacobiDS JacobiNC JacobiND JacobiNS JacobiP JacobiSC JacobiSD JacobiSN JacobiSymbol JacobiZeta JankoGroupJ1 JankoGroupJ2 JankoGroupJ3 JankoGroupJ4 JarqueBeraALMTest JohnsonDistribution Join JoinAcross Joined JoinedCurve JoinedCurveBox JoinedCurveBoxOptions JoinForm JordanDecomposition JordanModelDecomposition JulianDate JuliaSetBoettcher JuliaSetIterationCount JuliaSetPlot JuliaSetPointsK KagiChart KaiserBesselWindow KaiserWindow KalmanEstimator KalmanFilter KarhunenLoeveDecomposition KaryTree KatzCentrality KCoreComponents KDistribution KEdgeConnectedComponents KEdgeConnectedGraphQ KelvinBei KelvinBer KelvinKei KelvinKer KendallTau KendallTauTest KernelExecute KernelFunction KernelMixtureDistribution Kernels Ket Key KeyCollisionFunction KeyComplement KeyDrop KeyDropFrom KeyExistsQ KeyFreeQ KeyIntersection KeyMap KeyMemberQ KeypointStrength Keys KeySelect KeySort KeySortBy KeyTake KeyUnion KeyValueMap KeyValuePattern Khinchin KillProcess KirchhoffGraph KirchhoffMatrix KleinInvariantJ KnapsackSolve KnightTourGraph KnotData KnownUnitQ KochCurve KolmogorovSmirnovTest KroneckerDelta KroneckerModelDecomposition KroneckerProduct KroneckerSymbol KuiperTest KumaraswamyDistribution Kurtosis KuwaharaFilter KVertexConnectedComponents KVertexConnectedGraphQLABColor Label Labeled LabeledSlider LabelingFunction LabelingSize LabelStyle LabelVisibility LaguerreL LakeData LambdaComponents LambertW LaminaData LanczosWindow LandauDistribution Language LanguageCategory LanguageData LanguageIdentify LanguageOptions LaplaceDistribution LaplaceTransform Laplacian LaplacianFilter LaplacianGaussianFilter Large Larger Last Latitude LatitudeLongitude LatticeData LatticeReduce Launch LaunchKernels LayeredGraphPlot LayerSizeFunction LayoutInformation LCHColor LCM LeaderSize LeafCount LeapYearQ LearnDistribution LearnedDistribution LearningRate LearningRateMultipliers LeastSquares LeastSquaresFilterKernel Left LeftArrow LeftArrowBar LeftArrowRightArrow LeftDownTeeVector LeftDownVector LeftDownVectorBar LeftRightArrow LeftRightVector LeftTee LeftTeeArrow LeftTeeVector LeftTriangle LeftTriangleBar LeftTriangleEqual LeftUpDownVector LeftUpTeeVector LeftUpVector LeftUpVectorBar LeftVector LeftVectorBar LegendAppearance Legended LegendFunction LegendLabel LegendLayout LegendMargins LegendMarkers LegendMarkerSize LegendreP LegendreQ LegendreType Length LengthWhile LerchPhi Less LessEqual LessEqualGreater LessEqualThan LessFullEqual LessGreater LessLess LessSlantEqual LessThan LessTilde LetterCharacter LetterCounts LetterNumber LetterQ Level LeveneTest LeviCivitaTensor LevyDistribution Lexicographic LibraryDataType LibraryFunction LibraryFunctionError LibraryFunctionInformation LibraryFunctionLoad LibraryFunctionUnload LibraryLoad LibraryUnload LicenseID LiftingFilterData LiftingWaveletTransform LightBlue LightBrown LightCyan Lighter LightGray LightGreen Lighting LightingAngle LightMagenta LightOrange LightPink LightPurple LightRed LightSources LightYellow Likelihood Limit LimitsPositioning LimitsPositioningTokens LindleyDistribution Line Line3DBox Line3DBoxOptions LinearFilter LinearFractionalOptimization LinearFractionalTransform LinearGradientImage LinearizingTransformationData LinearLayer LinearModelFit LinearOffsetFunction LinearOptimization LinearProgramming LinearRecurrence LinearSolve LinearSolveFunction LineBox LineBoxOptions LineBreak LinebreakAdjustments LineBreakChart LinebreakSemicolonWeighting LineBreakWithin LineColor LineGraph LineIndent LineIndentMaxFraction LineIntegralConvolutionPlot LineIntegralConvolutionScale LineLegend LineOpacity LineSpacing LineWrapParts LinkActivate LinkClose LinkConnect LinkConnectedQ LinkCreate LinkError LinkFlush LinkFunction LinkHost LinkInterrupt LinkLaunch LinkMode LinkObject LinkOpen LinkOptions LinkPatterns LinkProtocol LinkRankCentrality LinkRead LinkReadHeld LinkReadyQ Links LinkService LinkWrite LinkWriteHeld LiouvilleLambda List Listable ListAnimate ListContourPlot ListContourPlot3D ListConvolve ListCorrelate ListCurvePathPlot ListDeconvolve ListDensityPlot ListDensityPlot3D Listen ListFormat ListFourierSequenceTransform ListInterpolation ListLineIntegralConvolutionPlot ListLinePlot ListLogLinearPlot ListLogLogPlot ListLogPlot ListPicker ListPickerBox ListPickerBoxBackground ListPickerBoxOptions ListPlay ListPlot ListPlot3D ListPointPlot3D ListPolarPlot ListQ ListSliceContourPlot3D ListSliceDensityPlot3D ListSliceVectorPlot3D ListStepPlot ListStreamDensityPlot ListStreamPlot ListSurfacePlot3D ListVectorDensityPlot ListVectorPlot ListVectorPlot3D ListZTransform Literal LiteralSearch LocalAdaptiveBinarize LocalCache LocalClusteringCoefficient LocalizeDefinitions LocalizeVariables LocalObject LocalObjects LocalResponseNormalizationLayer LocalSubmit LocalSymbol LocalTime LocalTimeZone LocationEquivalenceTest LocationTest Locator LocatorAutoCreate LocatorBox LocatorBoxOptions LocatorCentering LocatorPane LocatorPaneBox LocatorPaneBoxOptions LocatorRegion Locked Log Log10 Log2 LogBarnesG LogGamma LogGammaDistribution LogicalExpand LogIntegral LogisticDistribution LogisticSigmoid LogitModelFit LogLikelihood LogLinearPlot LogLogisticDistribution LogLogPlot LogMultinormalDistribution LogNormalDistribution LogPlot LogRankTest LogSeriesDistribution LongEqual Longest LongestCommonSequence LongestCommonSequencePositions LongestCommonSubsequence LongestCommonSubsequencePositions LongestMatch LongestOrderedSequence LongForm Longitude LongLeftArrow LongLeftRightArrow LongRightArrow LongShortTermMemoryLayer Lookup Loopback LoopFreeGraphQ LossFunction LowerCaseQ LowerLeftArrow LowerRightArrow LowerTriangularize LowerTriangularMatrixQ LowpassFilter LQEstimatorGains LQGRegulator LQOutputRegulatorGains LQRegulatorGains LUBackSubstitution LucasL LuccioSamiComponents LUDecomposition LunarEclipse LUVColor LyapunovSolve LyonsGroupLyMachineID MachineName MachineNumberQ MachinePrecision MacintoshSystemPageSetup Magenta Magnification Magnify MailAddressValidation MailExecute MailFolder MailItem MailReceiverFunction MailResponseFunction MailSearch MailServerConnect MailServerConnection MailSettings MainSolve MaintainDynamicCaches Majority MakeBoxes MakeExpression MakeRules ManagedLibraryExpressionID ManagedLibraryExpressionQ MandelbrotSetBoettcher MandelbrotSetDistance MandelbrotSetIterationCount MandelbrotSetMemberQ MandelbrotSetPlot MangoldtLambda ManhattanDistance Manipulate Manipulator MannedSpaceMissionData MannWhitneyTest MantissaExponent Manual Map MapAll MapAt MapIndexed MAProcess MapThread MarchenkoPasturDistribution MarcumQ MardiaCombinedTest MardiaKurtosisTest MardiaSkewnessTest MarginalDistribution MarkovProcessProperties Masking MatchingDissimilarity MatchLocalNameQ MatchLocalNames MatchQ Material MathematicalFunctionData MathematicaNotation MathieuC MathieuCharacteristicA MathieuCharacteristicB MathieuCharacteristicExponent MathieuCPrime MathieuGroupM11 MathieuGroupM12 MathieuGroupM22 MathieuGroupM23 MathieuGroupM24 MathieuS MathieuSPrime MathMLForm MathMLText Matrices MatrixExp MatrixForm MatrixFunction MatrixLog MatrixNormalDistribution MatrixPlot MatrixPower MatrixPropertyDistribution MatrixQ MatrixRank MatrixTDistribution Max MaxBend MaxCellMeasure MaxColorDistance MaxDetect MaxDuration MaxExtraBandwidths MaxExtraConditions MaxFeatureDisplacement MaxFeatures MaxFilter MaximalBy Maximize MaxItems MaxIterations MaxLimit MaxMemoryUsed MaxMixtureKernels MaxOverlapFraction MaxPlotPoints MaxPoints MaxRecursion MaxStableDistribution MaxStepFraction MaxSteps MaxStepSize MaxTrainingRounds MaxValue MaxwellDistribution MaxWordGap McLaughlinGroupMcL Mean MeanAbsoluteLossLayer MeanAround MeanClusteringCoefficient MeanDegreeConnectivity MeanDeviation MeanFilter MeanGraphDistance MeanNeighborDegree MeanShift MeanShiftFilter MeanSquaredLossLayer Median MedianDeviation MedianFilter MedicalTestData Medium MeijerG MeijerGReduce MeixnerDistribution MellinConvolve MellinTransform MemberQ MemoryAvailable MemoryConstrained MemoryConstraint MemoryInUse MengerMesh Menu MenuAppearance MenuCommandKey MenuEvaluator MenuItem MenuList MenuPacket MenuSortingValue MenuStyle MenuView Merge MergeDifferences MergingFunction MersennePrimeExponent MersennePrimeExponentQ Mesh MeshCellCentroid MeshCellCount MeshCellHighlight MeshCellIndex MeshCellLabel MeshCellMarker MeshCellMeasure MeshCellQuality MeshCells MeshCellShapeFunction MeshCellStyle MeshCoordinates MeshFunctions MeshPrimitives MeshQualityGoal MeshRange MeshRefinementFunction MeshRegion MeshRegionQ MeshShading MeshStyle Message MessageDialog MessageList MessageName MessageObject MessageOptions MessagePacket Messages MessagesNotebook MetaCharacters MetaInformation MeteorShowerData Method MethodOptions MexicanHatWavelet MeyerWavelet Midpoint Min MinColorDistance MinDetect MineralData MinFilter MinimalBy MinimalPolynomial MinimalStateSpaceModel Minimize MinimumTimeIncrement MinIntervalSize MinkowskiQuestionMark MinLimit MinMax MinorPlanetData Minors MinRecursion MinSize MinStableDistribution Minus MinusPlus MinValue Missing MissingBehavior MissingDataMethod MissingDataRules MissingQ MissingString MissingStyle MissingValuePattern MittagLefflerE MixedFractionParts MixedGraphQ MixedMagnitude MixedRadix MixedRadixQuantity MixedUnit MixtureDistribution Mod Modal Mode Modular ModularInverse ModularLambda Module Modulus MoebiusMu Molecule MoleculeContainsQ MoleculeEquivalentQ MoleculeGraph MoleculeModify MoleculePattern MoleculePlot MoleculePlot3D MoleculeProperty MoleculeQ MoleculeValue Moment Momentary MomentConvert MomentEvaluate MomentGeneratingFunction MomentOfInertia Monday Monitor MonomialList MonomialOrder MonsterGroupM MoonPhase MoonPosition MorletWavelet MorphologicalBinarize MorphologicalBranchPoints MorphologicalComponents MorphologicalEulerNumber MorphologicalGraph MorphologicalPerimeter MorphologicalTransform MortalityData Most MountainData MouseAnnotation MouseAppearance MouseAppearanceTag MouseButtons Mouseover MousePointerNote MousePosition MovieData MovingAverage MovingMap MovingMedian MoyalDistribution Multicolumn MultiedgeStyle MultigraphQ MultilaunchWarning MultiLetterItalics MultiLetterStyle MultilineFunction Multinomial MultinomialDistribution MultinormalDistribution MultiplicativeOrder Multiplicity MultiplySides Multiselection MultivariateHypergeometricDistribution MultivariatePoissonDistribution MultivariateTDistributionN NakagamiDistribution NameQ Names NamespaceBox NamespaceBoxOptions Nand NArgMax NArgMin NBernoulliB NBodySimulation NBodySimulationData NCache NDEigensystem NDEigenvalues NDSolve NDSolveValue Nearest NearestFunction NearestNeighborGraph NearestTo NebulaData NeedCurrentFrontEndPackagePacket NeedCurrentFrontEndSymbolsPacket NeedlemanWunschSimilarity Needs Negative NegativeBinomialDistribution NegativeDefiniteMatrixQ NegativeIntegers NegativeMultinomialDistribution NegativeRationals NegativeReals NegativeSemidefiniteMatrixQ NeighborhoodData NeighborhoodGraph Nest NestedGreaterGreater NestedLessLess NestedScriptRules NestGraph NestList NestWhile NestWhileList NetAppend NetBidirectionalOperator NetChain NetDecoder NetDelete NetDrop NetEncoder NetEvaluationMode NetExtract NetFlatten NetFoldOperator NetGraph NetInformation NetInitialize NetInsert NetInsertSharedArrays NetJoin NetMapOperator NetMapThreadOperator NetMeasurements NetModel NetNestOperator NetPairEmbeddingOperator NetPort NetPortGradient NetPrepend NetRename NetReplace NetReplacePart NetSharedArray NetStateObject NetTake NetTrain NetTrainResultsObject NetworkPacketCapture NetworkPacketRecording NetworkPacketRecordingDuring NetworkPacketTrace NeumannValue NevilleThetaC NevilleThetaD NevilleThetaN NevilleThetaS NewPrimitiveStyle NExpectation Next NextCell NextDate NextPrime NextScheduledTaskTime NHoldAll NHoldFirst NHoldRest NicholsGridLines NicholsPlot NightHemisphere NIntegrate NMaximize NMaxValue NMinimize NMinValue NominalVariables NonAssociative NoncentralBetaDistribution NoncentralChiSquareDistribution NoncentralFRatioDistribution NoncentralStudentTDistribution NonCommutativeMultiply NonConstants NondimensionalizationTransform None NoneTrue NonlinearModelFit NonlinearStateSpaceModel NonlocalMeansFilter NonNegative NonNegativeIntegers NonNegativeRationals NonNegativeReals NonPositive NonPositiveIntegers NonPositiveRationals NonPositiveReals Nor NorlundB Norm Normal NormalDistribution NormalGrouping NormalizationLayer Normalize Normalized NormalizedSquaredEuclideanDistance NormalMatrixQ NormalsFunction NormFunction Not NotCongruent NotCupCap NotDoubleVerticalBar Notebook NotebookApply NotebookAutoSave NotebookClose NotebookConvertSettings NotebookCreate NotebookCreateReturnObject NotebookDefault NotebookDelete NotebookDirectory NotebookDynamicExpression NotebookEvaluate NotebookEventActions NotebookFileName NotebookFind NotebookFindReturnObject NotebookGet NotebookGetLayoutInformationPacket NotebookGetMisspellingsPacket NotebookImport NotebookInformation NotebookInterfaceObject NotebookLocate NotebookObject NotebookOpen NotebookOpenReturnObject NotebookPath NotebookPrint NotebookPut NotebookPutReturnObject NotebookRead NotebookResetGeneratedCells Notebooks NotebookSave NotebookSaveAs NotebookSelection NotebookSetupLayoutInformationPacket NotebooksMenu NotebookTemplate NotebookWrite NotElement NotEqualTilde NotExists NotGreater NotGreaterEqual NotGreaterFullEqual NotGreaterGreater NotGreaterLess NotGreaterSlantEqual NotGreaterTilde Nothing NotHumpDownHump NotHumpEqual NotificationFunction NotLeftTriangle NotLeftTriangleBar NotLeftTriangleEqual NotLess NotLessEqual NotLessFullEqual NotLessGreater NotLessLess NotLessSlantEqual NotLessTilde NotNestedGreaterGreater NotNestedLessLess NotPrecedes NotPrecedesEqual NotPrecedesSlantEqual NotPrecedesTilde NotReverseElement NotRightTriangle NotRightTriangleBar NotRightTriangleEqual NotSquareSubset NotSquareSubsetEqual NotSquareSuperset NotSquareSupersetEqual NotSubset NotSubsetEqual NotSucceeds NotSucceedsEqual NotSucceedsSlantEqual NotSucceedsTilde NotSuperset NotSupersetEqual NotTilde NotTildeEqual NotTildeFullEqual NotTildeTilde NotVerticalBar Now NoWhitespace NProbability NProduct NProductFactors NRoots NSolve NSum NSumTerms NuclearExplosionData NuclearReactorData Null NullRecords NullSpace NullWords Number NumberCompose NumberDecompose NumberExpand NumberFieldClassNumber NumberFieldDiscriminant NumberFieldFundamentalUnits NumberFieldIntegralBasis NumberFieldNormRepresentatives NumberFieldRegulator NumberFieldRootsOfUnity NumberFieldSignature NumberForm NumberFormat NumberLinePlot NumberMarks NumberMultiplier NumberPadding NumberPoint NumberQ NumberSeparator NumberSigns NumberString Numerator NumeratorDenominator NumericalOrder NumericalSort NumericArray NumericArrayQ NumericArrayType NumericFunction NumericQ NuttallWindow NValues NyquistGridLines NyquistPlotO ObservabilityGramian ObservabilityMatrix ObservableDecomposition ObservableModelQ OceanData Octahedron OddQ Off Offset OLEData On ONanGroupON Once OneIdentity Opacity OpacityFunction OpacityFunctionScaling Open OpenAppend Opener OpenerBox OpenerBoxOptions OpenerView OpenFunctionInspectorPacket Opening OpenRead OpenSpecialOptions OpenTemporary OpenWrite Operate OperatingSystem OptimumFlowData Optional OptionalElement OptionInspectorSettings OptionQ Options OptionsPacket OptionsPattern OptionValue OptionValueBox OptionValueBoxOptions Or Orange Order OrderDistribution OrderedQ Ordering OrderingBy OrderingLayer Orderless OrderlessPatternSequence OrnsteinUhlenbeckProcess Orthogonalize OrthogonalMatrixQ Out Outer OuterPolygon OuterPolyhedron OutputAutoOverwrite OutputControllabilityMatrix OutputControllableModelQ OutputForm OutputFormData OutputGrouping OutputMathEditExpression OutputNamePacket OutputResponse OutputSizeLimit OutputStream Over OverBar OverDot Overflow OverHat Overlaps Overlay OverlayBox OverlayBoxOptions Overscript OverscriptBox OverscriptBoxOptions OverTilde OverVector OverwriteTarget OwenT OwnValuesPackage PackingMethod PaddedForm Padding PaddingLayer PaddingSize PadeApproximant PadLeft PadRight PageBreakAbove PageBreakBelow PageBreakWithin PageFooterLines PageFooters PageHeaderLines PageHeaders PageHeight PageRankCentrality PageTheme PageWidth Pagination PairedBarChart PairedHistogram PairedSmoothHistogram PairedTTest PairedZTest PaletteNotebook PalettePath PalindromeQ Pane PaneBox PaneBoxOptions Panel PanelBox PanelBoxOptions Paneled PaneSelector PaneSelectorBox PaneSelectorBoxOptions PaperWidth ParabolicCylinderD ParagraphIndent ParagraphSpacing ParallelArray ParallelCombine ParallelDo Parallelepiped ParallelEvaluate Parallelization Parallelize ParallelMap ParallelNeeds Parallelogram ParallelProduct ParallelSubmit ParallelSum ParallelTable ParallelTry Parameter ParameterEstimator ParameterMixtureDistribution ParameterVariables ParametricFunction ParametricNDSolve ParametricNDSolveValue ParametricPlot ParametricPlot3D ParametricRegion ParentBox ParentCell ParentConnect ParentDirectory ParentForm Parenthesize ParentList ParentNotebook ParetoDistribution ParetoPickandsDistribution ParkData Part PartBehavior PartialCorrelationFunction PartialD ParticleAcceleratorData ParticleData Partition PartitionGranularity PartitionsP PartitionsQ PartLayer PartOfSpeech PartProtection ParzenWindow PascalDistribution PassEventsDown PassEventsUp Paste PasteAutoQuoteCharacters PasteBoxFormInlineCells PasteButton Path PathGraph PathGraphQ Pattern PatternSequence PatternTest PauliMatrix PaulWavelet Pause PausedTime PDF PeakDetect PeanoCurve PearsonChiSquareTest PearsonCorrelationTest PearsonDistribution PercentForm PerfectNumber PerfectNumberQ PerformanceGoal Perimeter PeriodicBoundaryCondition PeriodicInterpolation Periodogram PeriodogramArray Permanent Permissions PermissionsGroup PermissionsGroupMemberQ PermissionsGroups PermissionsKey PermissionsKeys PermutationCycles PermutationCyclesQ PermutationGroup PermutationLength PermutationList PermutationListQ PermutationMax PermutationMin PermutationOrder PermutationPower PermutationProduct PermutationReplace Permutations PermutationSupport Permute PeronaMalikFilter Perpendicular PerpendicularBisector PersistenceLocation PersistenceTime PersistentObject PersistentObjects PersistentValue PersonData PERTDistribution PetersenGraph PhaseMargins PhaseRange PhysicalSystemData Pi Pick PIDData PIDDerivativeFilter PIDFeedforward PIDTune Piecewise PiecewiseExpand PieChart PieChart3D PillaiTrace PillaiTraceTest PingTime Pink PitchRecognize Pivoting PixelConstrained PixelValue PixelValuePositions Placed Placeholder PlaceholderReplace Plain PlanarAngle PlanarGraph PlanarGraphQ PlanckRadiationLaw PlaneCurveData PlanetaryMoonData PlanetData PlantData Play PlayRange Plot Plot3D Plot3Matrix PlotDivision PlotJoined PlotLabel PlotLabels PlotLayout PlotLegends PlotMarkers PlotPoints PlotRange PlotRangeClipping PlotRangeClipPlanesStyle PlotRangePadding PlotRegion PlotStyle PlotTheme Pluralize Plus PlusMinus Pochhammer PodStates PodWidth Point Point3DBox Point3DBoxOptions PointBox PointBoxOptions PointFigureChart PointLegend PointSize PoissonConsulDistribution PoissonDistribution PoissonProcess PoissonWindow PolarAxes PolarAxesOrigin PolarGridLines PolarPlot PolarTicks PoleZeroMarkers PolyaAeppliDistribution PolyGamma Polygon Polygon3DBox Polygon3DBoxOptions PolygonalNumber PolygonAngle PolygonBox PolygonBoxOptions PolygonCoordinates PolygonDecomposition PolygonHoleScale PolygonIntersections PolygonScale Polyhedron PolyhedronAngle PolyhedronCoordinates PolyhedronData PolyhedronDecomposition PolyhedronGenus PolyLog PolynomialExtendedGCD PolynomialForm PolynomialGCD PolynomialLCM PolynomialMod PolynomialQ PolynomialQuotient PolynomialQuotientRemainder PolynomialReduce PolynomialRemainder Polynomials PoolingLayer PopupMenu PopupMenuBox PopupMenuBoxOptions PopupView PopupWindow Position PositionIndex Positive PositiveDefiniteMatrixQ PositiveIntegers PositiveRationals PositiveReals PositiveSemidefiniteMatrixQ PossibleZeroQ Postfix PostScript Power PowerDistribution PowerExpand PowerMod PowerModList PowerRange PowerSpectralDensity PowersRepresentations PowerSymmetricPolynomial Precedence PrecedenceForm Precedes PrecedesEqual PrecedesSlantEqual PrecedesTilde Precision PrecisionGoal PreDecrement Predict PredictionRoot PredictorFunction PredictorInformation PredictorMeasurements PredictorMeasurementsObject PreemptProtect PreferencesPath Prefix PreIncrement Prepend PrependLayer PrependTo PreprocessingRules PreserveColor PreserveImageOptions Previous PreviousCell PreviousDate PriceGraphDistribution PrimaryPlaceholder Prime PrimeNu PrimeOmega PrimePi PrimePowerQ PrimeQ Primes PrimeZetaP PrimitivePolynomialQ PrimitiveRoot PrimitiveRootList PrincipalComponents PrincipalValue Print PrintableASCIIQ PrintAction PrintForm PrintingCopies PrintingOptions PrintingPageRange PrintingStartingPageNumber PrintingStyleEnvironment Printout3D Printout3DPreviewer PrintPrecision PrintTemporary Prism PrismBox PrismBoxOptions PrivateCellOptions PrivateEvaluationOptions PrivateFontOptions PrivateFrontEndOptions PrivateKey PrivateNotebookOptions PrivatePaths Probability ProbabilityDistribution ProbabilityPlot ProbabilityPr ProbabilityScalePlot ProbitModelFit ProcessConnection ProcessDirectory ProcessEnvironment Processes ProcessEstimator ProcessInformation ProcessObject ProcessParameterAssumptions ProcessParameterQ ProcessStateDomain ProcessStatus ProcessTimeDomain Product ProductDistribution ProductLog ProgressIndicator ProgressIndicatorBox ProgressIndicatorBoxOptions Projection Prolog PromptForm ProofObject Properties Property PropertyList PropertyValue Proportion Proportional Protect Protected ProteinData Pruning PseudoInverse PsychrometricPropertyData PublicKey PublisherID PulsarData PunctuationCharacter Purple Put PutAppend Pyramid PyramidBox PyramidBoxOptionsQBinomial QFactorial QGamma QHypergeometricPFQ QnDispersion QPochhammer QPolyGamma QRDecomposition QuadraticIrrationalQ QuadraticOptimization Quantile QuantilePlot Quantity QuantityArray QuantityDistribution QuantityForm QuantityMagnitude QuantityQ QuantityUnit QuantityVariable QuantityVariableCanonicalUnit QuantityVariableDimensions QuantityVariableIdentifier QuantityVariablePhysicalQuantity Quartics QuartileDeviation Quartiles QuartileSkewness Query QueueingNetworkProcess QueueingProcess QueueProperties Quiet Quit Quotient QuotientRemainderRadialGradientImage RadialityCentrality RadicalBox RadicalBoxOptions RadioButton RadioButtonBar RadioButtonBox RadioButtonBoxOptions Radon RadonTransform RamanujanTau RamanujanTauL RamanujanTauTheta RamanujanTauZ Ramp Random RandomChoice RandomColor RandomComplex RandomEntity RandomFunction RandomGeoPosition RandomGraph RandomImage RandomInstance RandomInteger RandomPermutation RandomPoint RandomPolygon RandomPolyhedron RandomPrime RandomReal RandomSample RandomSeed RandomSeeding RandomVariate RandomWalkProcess RandomWord Range RangeFilter RangeSpecification RankedMax RankedMin RarerProbability Raster Raster3D Raster3DBox Raster3DBoxOptions RasterArray RasterBox RasterBoxOptions Rasterize RasterSize Rational RationalFunctions Rationalize Rationals Ratios RawArray RawBoxes RawData RawMedium RayleighDistribution Re Read ReadByteArray ReadLine ReadList ReadProtected ReadString Real RealAbs RealBlockDiagonalForm RealDigits RealExponent Reals RealSign Reap RecognitionPrior RecognitionThreshold Record RecordLists RecordSeparators Rectangle RectangleBox RectangleBoxOptions RectangleChart RectangleChart3D RectangularRepeatingElement RecurrenceFilter RecurrenceTable RecurringDigitsForm Red Reduce RefBox ReferenceLineStyle ReferenceMarkers ReferenceMarkerStyle Refine ReflectionMatrix ReflectionTransform Refresh RefreshRate Region RegionBinarize RegionBoundary RegionBounds RegionCentroid RegionDifference RegionDimension RegionDisjoint RegionDistance RegionDistanceFunction RegionEmbeddingDimension RegionEqual RegionFunction RegionImage RegionIntersection RegionMeasure RegionMember RegionMemberFunction RegionMoment RegionNearest RegionNearestFunction RegionPlot RegionPlot3D RegionProduct RegionQ RegionResize RegionSize RegionSymmetricDifference RegionUnion RegionWithin RegisterExternalEvaluator RegularExpression Regularization RegularlySampledQ RegularPolygon ReIm ReImLabels ReImPlot ReImStyle Reinstall RelationalDatabase RelationGraph Release ReleaseHold ReliabilityDistribution ReliefImage ReliefPlot RemoteAuthorizationCaching RemoteConnect RemoteConnectionObject RemoteFile RemoteRun RemoteRunProcess Remove RemoveAlphaChannel RemoveAsynchronousTask RemoveAudioStream RemoveBackground RemoveChannelListener RemoveChannelSubscribers Removed RemoveDiacritics RemoveInputStreamMethod RemoveOutputStreamMethod RemoveProperty RemoveScheduledTask RemoveUsers RenameDirectory RenameFile RenderAll RenderingOptions RenewalProcess RenkoChart RepairMesh Repeated RepeatedNull RepeatedString RepeatedTiming RepeatingElement Replace ReplaceAll ReplaceHeldPart ReplaceImageValue ReplaceList ReplacePart ReplacePixelValue ReplaceRepeated ReplicateLayer RequiredPhysicalQuantities Resampling ResamplingAlgorithmData ResamplingMethod Rescale RescalingTransform ResetDirectory ResetMenusPacket ResetScheduledTask ReshapeLayer Residue ResizeLayer Resolve ResourceAcquire ResourceData ResourceFunction ResourceObject ResourceRegister ResourceRemove ResourceSearch ResourceSubmissionObject ResourceSubmit ResourceSystemBase ResourceUpdate ResponseForm Rest RestartInterval Restricted Resultant ResumePacket Return ReturnEntersInput ReturnExpressionPacket ReturnInputFormPacket ReturnPacket ReturnReceiptFunction ReturnTextPacket Reverse ReverseBiorthogonalSplineWavelet ReverseElement ReverseEquilibrium ReverseGraph ReverseSort ReverseSortBy ReverseUpEquilibrium RevolutionAxis RevolutionPlot3D RGBColor RiccatiSolve RiceDistribution RidgeFilter RiemannR RiemannSiegelTheta RiemannSiegelZ RiemannXi Riffle Right RightArrow RightArrowBar RightArrowLeftArrow RightComposition RightCosetRepresentative RightDownTeeVector RightDownVector RightDownVectorBar RightTee RightTeeArrow RightTeeVector RightTriangle RightTriangleBar RightTriangleEqual RightUpDownVector RightUpTeeVector RightUpVector RightUpVectorBar RightVector RightVectorBar RiskAchievementImportance RiskReductionImportance RogersTanimotoDissimilarity RollPitchYawAngles RollPitchYawMatrix RomanNumeral Root RootApproximant RootIntervals RootLocusPlot RootMeanSquare RootOfUnityQ RootReduce Roots RootSum Rotate RotateLabel RotateLeft RotateRight RotationAction RotationBox RotationBoxOptions RotationMatrix RotationTransform Round RoundImplies RoundingRadius Row RowAlignments RowBackgrounds RowBox RowHeights RowLines RowMinHeight RowReduce RowsEqual RowSpacings RSolve RSolveValue RudinShapiro RudvalisGroupRu Rule RuleCondition RuleDelayed RuleForm RulePlot RulerUnits Run RunProcess RunScheduledTask RunThrough RuntimeAttributes RuntimeOptions RussellRaoDissimilaritySameQ SameTest SampledEntityClass SampleDepth SampledSoundFunction SampledSoundList SampleRate SamplingPeriod SARIMAProcess SARMAProcess SASTriangle SatelliteData SatisfiabilityCount SatisfiabilityInstances SatisfiableQ Saturday Save Saveable SaveAutoDelete SaveConnection SaveDefinitions SavitzkyGolayMatrix SawtoothWave Scale Scaled ScaleDivisions ScaledMousePosition ScaleOrigin ScalePadding ScaleRanges ScaleRangeStyle ScalingFunctions ScalingMatrix ScalingTransform Scan ScheduledTask ScheduledTaskActiveQ ScheduledTaskInformation ScheduledTaskInformationData ScheduledTaskObject ScheduledTasks SchurDecomposition ScientificForm ScientificNotationThreshold ScorerGi ScorerGiPrime ScorerHi ScorerHiPrime ScreenRectangle ScreenStyleEnvironment ScriptBaselineShifts ScriptForm ScriptLevel ScriptMinSize ScriptRules ScriptSizeMultipliers Scrollbars ScrollingOptions ScrollPosition SearchAdjustment SearchIndexObject SearchIndices SearchQueryString SearchResultObject Sec Sech SechDistribution SecondOrderConeOptimization SectionGrouping SectorChart SectorChart3D SectorOrigin SectorSpacing SecuredAuthenticationKey SecuredAuthenticationKeys SeedRandom Select Selectable SelectComponents SelectedCells SelectedNotebook SelectFirst Selection SelectionAnimate SelectionCell SelectionCellCreateCell SelectionCellDefaultStyle SelectionCellParentStyle SelectionCreateCell SelectionDebuggerTag SelectionDuplicateCell SelectionEvaluate SelectionEvaluateCreateCell SelectionMove SelectionPlaceholder SelectionSetStyle SelectWithContents SelfLoops SelfLoopStyle SemanticImport SemanticImportString SemanticInterpretation SemialgebraicComponentInstances SemidefiniteOptimization SendMail SendMessage Sequence SequenceAlignment SequenceAttentionLayer SequenceCases SequenceCount SequenceFold SequenceFoldList SequenceForm SequenceHold SequenceLastLayer SequenceMostLayer SequencePosition SequencePredict SequencePredictorFunction SequenceReplace SequenceRestLayer SequenceReverseLayer SequenceSplit Series SeriesCoefficient SeriesData ServiceConnect ServiceDisconnect ServiceExecute ServiceObject ServiceRequest ServiceResponse ServiceSubmit SessionSubmit SessionTime Set SetAccuracy SetAlphaChannel SetAttributes Setbacks SetBoxFormNamesPacket SetCloudDirectory SetCookies SetDelayed SetDirectory SetEnvironment SetEvaluationNotebook SetFileDate SetFileLoadingContext SetNotebookStatusLine SetOptions SetOptionsPacket SetPermissions SetPrecision SetProperty SetSecuredAuthenticationKey SetSelectedNotebook SetSharedFunction SetSharedVariable SetSpeechParametersPacket SetStreamPosition SetSystemModel SetSystemOptions Setter SetterBar SetterBox SetterBoxOptions Setting SetUsers SetValue Shading Shallow ShannonWavelet ShapiroWilkTest Share SharingList Sharpen ShearingMatrix ShearingTransform ShellRegion ShenCastanMatrix ShiftedGompertzDistribution ShiftRegisterSequence Short ShortDownArrow Shortest ShortestMatch ShortestPathFunction ShortLeftArrow ShortRightArrow ShortTimeFourier ShortTimeFourierData ShortUpArrow Show ShowAutoConvert ShowAutoSpellCheck ShowAutoStyles ShowCellBracket ShowCellLabel ShowCellTags ShowClosedCellArea ShowCodeAssist ShowContents ShowControls ShowCursorTracker ShowGroupOpenCloseIcon ShowGroupOpener ShowInvisibleCharacters ShowPageBreaks ShowPredictiveInterface ShowSelection ShowShortBoxForm ShowSpecialCharacters ShowStringCharacters ShowSyntaxStyles ShrinkingDelay ShrinkWrapBoundingBox SiderealTime SiegelTheta SiegelTukeyTest SierpinskiCurve SierpinskiMesh Sign Signature SignedRankTest SignedRegionDistance SignificanceLevel SignPadding SignTest SimilarityRules SimpleGraph SimpleGraphQ SimplePolygonQ SimplePolyhedronQ Simplex Simplify Sin Sinc SinghMaddalaDistribution SingleEvaluation SingleLetterItalics SingleLetterStyle SingularValueDecomposition SingularValueList SingularValuePlot SingularValues Sinh SinhIntegral SinIntegral SixJSymbol Skeleton SkeletonTransform SkellamDistribution Skewness SkewNormalDistribution SkinStyle Skip SliceContourPlot3D SliceDensityPlot3D SliceDistribution SliceVectorPlot3D Slider Slider2D Slider2DBox Slider2DBoxOptions SliderBox SliderBoxOptions SlideView Slot SlotSequence Small SmallCircle Smaller SmithDecomposition SmithDelayCompensator SmithWatermanSimilarity SmoothDensityHistogram SmoothHistogram SmoothHistogram3D SmoothKernelDistribution SnDispersion Snippet SnubPolyhedron SocialMediaData Socket SocketConnect SocketListen SocketListener SocketObject SocketOpen SocketReadMessage SocketReadyQ Sockets SocketWaitAll SocketWaitNext SoftmaxLayer SokalSneathDissimilarity SolarEclipse SolarSystemFeatureData SolidAngle SolidData SolidRegionQ Solve SolveAlways SolveDelayed Sort SortBy SortedBy SortedEntityClass Sound SoundAndGraphics SoundNote SoundVolume SourceLink Sow Space SpaceCurveData SpaceForm Spacer Spacings Span SpanAdjustments SpanCharacterRounding SpanFromAbove SpanFromBoth SpanFromLeft SpanLineThickness SpanMaxSize SpanMinSize SpanningCharacters SpanSymmetric SparseArray SpatialGraphDistribution SpatialMedian SpatialTransformationLayer Speak SpeakTextPacket SpearmanRankTest SpearmanRho SpeciesData SpecificityGoal SpectralLineData Spectrogram SpectrogramArray Specularity SpeechRecognize SpeechSynthesize SpellingCorrection SpellingCorrectionList SpellingDictionaries SpellingDictionariesPath SpellingOptions SpellingSuggestionsPacket Sphere SphereBox SpherePoints SphericalBesselJ SphericalBesselY SphericalHankelH1 SphericalHankelH2 SphericalHarmonicY SphericalPlot3D SphericalRegion SphericalShell SpheroidalEigenvalue SpheroidalJoiningFactor SpheroidalPS SpheroidalPSPrime SpheroidalQS SpheroidalQSPrime SpheroidalRadialFactor SpheroidalS1 SpheroidalS1Prime SpheroidalS2 SpheroidalS2Prime Splice SplicedDistribution SplineClosed SplineDegree SplineKnots SplineWeights Split SplitBy SpokenString Sqrt SqrtBox SqrtBoxOptions Square SquaredEuclideanDistance SquareFreeQ SquareIntersection SquareMatrixQ SquareRepeatingElement SquaresR SquareSubset SquareSubsetEqual SquareSuperset SquareSupersetEqual SquareUnion SquareWave SSSTriangle StabilityMargins StabilityMarginsStyle StableDistribution Stack StackBegin StackComplete StackedDateListPlot StackedListPlot StackInhibit StadiumShape StandardAtmosphereData StandardDeviation StandardDeviationFilter StandardForm Standardize Standardized StandardOceanData StandbyDistribution Star StarClusterData StarData StarGraph StartAsynchronousTask StartExternalSession StartingStepSize StartOfLine StartOfString StartProcess StartScheduledTask StartupSound StartWebSession StateDimensions StateFeedbackGains StateOutputEstimator StateResponse StateSpaceModel StateSpaceRealization StateSpaceTransform StateTransformationLinearize StationaryDistribution StationaryWaveletPacketTransform StationaryWaveletTransform StatusArea StatusCentrality StepMonitor StereochemistryElements StieltjesGamma StirlingS1 StirlingS2 StopAsynchronousTask StoppingPowerData StopScheduledTask StrataVariables StratonovichProcess StreamColorFunction StreamColorFunctionScaling StreamDensityPlot StreamMarkers StreamPlot StreamPoints StreamPosition Streams StreamScale StreamStyle String StringBreak StringByteCount StringCases StringContainsQ StringCount StringDelete StringDrop StringEndsQ StringExpression StringExtract StringForm StringFormat StringFreeQ StringInsert StringJoin StringLength StringMatchQ StringPadLeft StringPadRight StringPart StringPartition StringPosition StringQ StringRepeat StringReplace StringReplaceList StringReplacePart StringReverse StringRiffle StringRotateLeft StringRotateRight StringSkeleton StringSplit StringStartsQ StringTake StringTemplate StringToByteArray StringToStream StringTrim StripBoxes StripOnInput StripWrapperBoxes StrokeForm StructuralImportance StructuredArray StructuredSelection StruveH StruveL Stub StudentTDistribution Style StyleBox StyleBoxAutoDelete StyleData StyleDefinitions StyleForm StyleHints StyleKeyMapping StyleMenuListing StyleNameDialogSettings StyleNames StylePrint StyleSheetPath Subdivide Subfactorial Subgraph SubMinus SubPlus SubresultantPolynomialRemainders SubresultantPolynomials Subresultants Subscript SubscriptBox SubscriptBoxOptions Subscripted Subsequences Subset SubsetEqual SubsetMap SubsetQ Subsets SubStar SubstitutionSystem Subsuperscript SubsuperscriptBox SubsuperscriptBoxOptions Subtract SubtractFrom SubtractSides SubValues Succeeds SucceedsEqual SucceedsSlantEqual SucceedsTilde Success SuchThat Sum SumConvergence SummationLayer Sunday SunPosition Sunrise Sunset SuperDagger SuperMinus SupernovaData SuperPlus Superscript SuperscriptBox SuperscriptBoxOptions Superset SupersetEqual SuperStar Surd SurdForm SurfaceArea SurfaceColor SurfaceData SurfaceGraphics SurvivalDistribution SurvivalFunction SurvivalModel SurvivalModelFit SuspendPacket SuzukiDistribution SuzukiGroupSuz SwatchLegend Switch Symbol SymbolName SymletWavelet Symmetric SymmetricGroup SymmetricKey SymmetricMatrixQ SymmetricPolynomial SymmetricReduction Symmetrize SymmetrizedArray SymmetrizedArrayRules SymmetrizedDependentComponents SymmetrizedIndependentComponents SymmetrizedReplacePart SynchronousInitialization SynchronousUpdating Synonyms Syntax SyntaxForm SyntaxInformation SyntaxLength SyntaxPacket SyntaxQ SynthesizeMissingValues SystemDialogInput SystemException SystemGet SystemHelpPath SystemInformation SystemInformationData SystemInstall SystemModel SystemModeler SystemModelExamples SystemModelLinearize SystemModelParametricSimulate SystemModelPlot SystemModelProgressReporting SystemModelReliability SystemModels SystemModelSimulate SystemModelSimulateSensitivity SystemModelSimulationData SystemOpen SystemOptions SystemProcessData SystemProcesses SystemsConnectionsModel SystemsModelDelay SystemsModelDelayApproximate SystemsModelDelete SystemsModelDimensions SystemsModelExtract SystemsModelFeedbackConnect SystemsModelLabels SystemsModelLinearity SystemsModelMerge SystemsModelOrder SystemsModelParallelConnect SystemsModelSeriesConnect SystemsModelStateFeedbackConnect SystemsModelVectorRelativeOrders SystemStub SystemTestTab TabFilling Table TableAlignments TableDepth TableDirections TableForm TableHeadings TableSpacing TableView TableViewBox TableViewBoxBackground TableViewBoxOptions TabSpacings TabView TabViewBox TabViewBoxOptions TagBox TagBoxNote TagBoxOptions TaggingRules TagSet TagSetDelayed TagStyle TagUnset Take TakeDrop TakeLargest TakeLargestBy TakeList TakeSmallest TakeSmallestBy TakeWhile Tally Tan Tanh TargetDevice TargetFunctions TargetSystem TargetUnits TaskAbort TaskExecute TaskObject TaskRemove TaskResume Tasks TaskSuspend TaskWait TautologyQ TelegraphProcess TemplateApply TemplateArgBox TemplateBox TemplateBoxOptions TemplateEvaluate TemplateExpression TemplateIf TemplateObject TemplateSequence TemplateSlot TemplateSlotSequence TemplateUnevaluated TemplateVerbatim TemplateWith TemporalData TemporalRegularity Temporary TemporaryVariable TensorContract TensorDimensions TensorExpand TensorProduct TensorQ TensorRank TensorReduce TensorSymmetry TensorTranspose TensorWedge TestID TestReport TestReportObject TestResultObject Tetrahedron TetrahedronBox TetrahedronBoxOptions TeXForm TeXSave Text Text3DBox Text3DBoxOptions TextAlignment TextBand TextBoundingBox TextBox TextCases TextCell TextClipboardType TextContents TextData TextElement TextForm TextGrid TextJustification TextLine TextPacket TextParagraph TextPosition TextRecognize TextSearch TextSearchReport TextSentences TextString TextStructure TextStyle TextTranslation Texture TextureCoordinateFunction TextureCoordinateScaling TextWords Therefore ThermodynamicData ThermometerGauge Thick Thickness Thin Thinning ThisLink ThompsonGroupTh Thread ThreadingLayer ThreeJSymbol Threshold Through Throw ThueMorse Thumbnail Thursday Ticks TicksStyle TideData Tilde TildeEqual TildeFullEqual TildeTilde TimeConstrained TimeConstraint TimeDirection TimeFormat TimeGoal TimelinePlot TimeObject TimeObjectQ Times TimesBy TimeSeries TimeSeriesAggregate TimeSeriesForecast TimeSeriesInsert TimeSeriesInvertibility TimeSeriesMap TimeSeriesMapThread TimeSeriesModel TimeSeriesModelFit TimeSeriesResample TimeSeriesRescale TimeSeriesShift TimeSeriesThread TimeSeriesWindow TimeUsed TimeValue TimeWarpingCorrespondence TimeWarpingDistance TimeZone TimeZoneConvert TimeZoneOffset Timing Tiny TitleGrouping TitsGroupT ToBoxes ToCharacterCode ToColor ToContinuousTimeModel ToDate Today ToDiscreteTimeModel ToEntity ToeplitzMatrix ToExpression ToFileName Together Toggle ToggleFalse Toggler TogglerBar TogglerBox TogglerBoxOptions ToHeldExpression ToInvertibleTimeSeries TokenWords Tolerance ToLowerCase Tomorrow ToNumberField TooBig Tooltip TooltipBox TooltipBoxOptions TooltipDelay TooltipStyle Top TopHatTransform ToPolarCoordinates TopologicalSort ToRadicals ToRules ToSphericalCoordinates ToString Total TotalHeight TotalLayer TotalVariationFilter TotalWidth TouchPosition TouchscreenAutoZoom TouchscreenControlPlacement ToUpperCase Tr Trace TraceAbove TraceAction TraceBackward TraceDepth TraceDialog TraceForward TraceInternal TraceLevel TraceOff TraceOn TraceOriginal TracePrint TraceScan TrackedSymbols TrackingFunction TracyWidomDistribution TradingChart TraditionalForm TraditionalFunctionNotation TraditionalNotation TraditionalOrder TrainingProgressCheckpointing TrainingProgressFunction TrainingProgressMeasurements TrainingProgressReporting TrainingStoppingCriterion TransferFunctionCancel TransferFunctionExpand TransferFunctionFactor TransferFunctionModel TransferFunctionPoles TransferFunctionTransform TransferFunctionZeros TransformationClass TransformationFunction TransformationFunctions TransformationMatrix TransformedDistribution TransformedField TransformedProcess TransformedRegion TransitionDirection TransitionDuration TransitionEffect TransitiveClosureGraph TransitiveReductionGraph Translate TranslationOptions TranslationTransform Transliterate Transparent TransparentColor Transpose TransposeLayer TrapSelection TravelDirections TravelDirectionsData TravelDistance TravelDistanceList TravelMethod TravelTime TreeForm TreeGraph TreeGraphQ TreePlot TrendStyle Triangle TriangleCenter TriangleConstruct TriangleMeasurement TriangleWave TriangularDistribution TriangulateMesh Trig TrigExpand TrigFactor TrigFactorList Trigger TrigReduce TrigToExp TrimmedMean TrimmedVariance TropicalStormData True TrueQ TruncatedDistribution TruncatedPolyhedron TsallisQExponentialDistribution TsallisQGaussianDistribution TTest Tube TubeBezierCurveBox TubeBezierCurveBoxOptions TubeBox TubeBoxOptions TubeBSplineCurveBox TubeBSplineCurveBoxOptions Tuesday TukeyLambdaDistribution TukeyWindow TunnelData Tuples TuranGraph TuringMachine TuttePolynomial TwoWayRule Typed TypeSpecifierUnateQ Uncompress UnconstrainedParameters Undefined UnderBar Underflow Underlined Underoverscript UnderoverscriptBox UnderoverscriptBoxOptions Underscript UnderscriptBox UnderscriptBoxOptions UnderseaFeatureData UndirectedEdge UndirectedGraph UndirectedGraphQ UndoOptions UndoTrackedVariables Unequal UnequalTo Unevaluated UniformDistribution UniformGraphDistribution UniformPolyhedron UniformSumDistribution Uninstall Union UnionPlus Unique UnitaryMatrixQ UnitBox UnitConvert UnitDimensions Unitize UnitRootTest UnitSimplify UnitStep UnitSystem UnitTriangle UnitVector UnitVectorLayer UnityDimensions UniverseModelData UniversityData UnixTime Unprotect UnregisterExternalEvaluator UnsameQ UnsavedVariables Unset UnsetShared UntrackedVariables Up UpArrow UpArrowBar UpArrowDownArrow Update UpdateDynamicObjects UpdateDynamicObjectsSynchronous UpdateInterval UpdateSearchIndex UpDownArrow UpEquilibrium UpperCaseQ UpperLeftArrow UpperRightArrow UpperTriangularize UpperTriangularMatrixQ Upsample UpSet UpSetDelayed UpTee UpTeeArrow UpTo UpValues URL URLBuild URLDecode URLDispatcher URLDownload URLDownloadSubmit URLEncode URLExecute URLExpand URLFetch URLFetchAsynchronous URLParse URLQueryDecode URLQueryEncode URLRead URLResponseTime URLSave URLSaveAsynchronous URLShorten URLSubmit UseGraphicsRange UserDefinedWavelet Using UsingFrontEnd UtilityFunctionV2Get ValenceErrorHandling ValidationLength ValidationSet Value ValueBox ValueBoxOptions ValueDimensions ValueForm ValuePreprocessingFunction ValueQ Values ValuesData Variables Variance VarianceEquivalenceTest VarianceEstimatorFunction VarianceGammaDistribution VarianceTest VectorAngle VectorAround VectorColorFunction VectorColorFunctionScaling VectorDensityPlot VectorGlyphData VectorGreater VectorGreaterEqual VectorLess VectorLessEqual VectorMarkers VectorPlot VectorPlot3D VectorPoints VectorQ Vectors VectorScale VectorStyle Vee Verbatim Verbose VerboseConvertToPostScriptPacket VerificationTest VerifyConvergence VerifyDerivedKey VerifyDigitalSignature VerifyInterpretation VerifySecurityCertificates VerifySolutions VerifyTestAssumptions Version VersionNumber VertexAdd VertexCapacity VertexColors VertexComponent VertexConnectivity VertexContract VertexCoordinateRules VertexCoordinates VertexCorrelationSimilarity VertexCosineSimilarity VertexCount VertexCoverQ VertexDataCoordinates VertexDegree VertexDelete VertexDiceSimilarity VertexEccentricity VertexInComponent VertexInDegree VertexIndex VertexJaccardSimilarity VertexLabeling VertexLabels VertexLabelStyle VertexList VertexNormals VertexOutComponent VertexOutDegree VertexQ VertexRenderingFunction VertexReplace VertexShape VertexShapeFunction VertexSize VertexStyle VertexTextureCoordinates VertexWeight VertexWeightedGraphQ Vertical VerticalBar VerticalForm VerticalGauge VerticalSeparator VerticalSlider VerticalTilde ViewAngle ViewCenter ViewMatrix ViewPoint ViewPointSelectorSettings ViewPort ViewProjection ViewRange ViewVector ViewVertical VirtualGroupData Visible VisibleCell VoiceStyleData VoigtDistribution VolcanoData Volume VonMisesDistribution VoronoiMeshWaitAll WaitAsynchronousTask WaitNext WaitUntil WakebyDistribution WalleniusHypergeometricDistribution WaringYuleDistribution WarpingCorrespondence WarpingDistance WatershedComponents WatsonUSquareTest WattsStrogatzGraphDistribution WaveletBestBasis WaveletFilterCoefficients WaveletImagePlot WaveletListPlot WaveletMapIndexed WaveletMatrixPlot WaveletPhi WaveletPsi WaveletScale WaveletScalogram WaveletThreshold WeaklyConnectedComponents WeaklyConnectedGraphComponents WeaklyConnectedGraphQ WeakStationarity WeatherData WeatherForecastData WebAudioSearch WebElementObject WeberE WebExecute WebImage WebImageSearch WebSearch WebSessionObject WebSessions WebWindowObject Wedge Wednesday WeibullDistribution WeierstrassE1 WeierstrassE2 WeierstrassE3 WeierstrassEta1 WeierstrassEta2 WeierstrassEta3 WeierstrassHalfPeriods WeierstrassHalfPeriodW1 WeierstrassHalfPeriodW2 WeierstrassHalfPeriodW3 WeierstrassInvariantG2 WeierstrassInvariantG3 WeierstrassInvariants WeierstrassP WeierstrassPPrime WeierstrassSigma WeierstrassZeta WeightedAdjacencyGraph WeightedAdjacencyMatrix WeightedData WeightedGraphQ Weights WelchWindow WheelGraph WhenEvent Which While White WhiteNoiseProcess WhitePoint Whitespace WhitespaceCharacter WhittakerM WhittakerW WienerFilter WienerProcess WignerD WignerSemicircleDistribution WikipediaData WikipediaSearch WilksW WilksWTest WindDirectionData WindingCount WindingPolygon WindowClickSelect WindowElements WindowFloating WindowFrame WindowFrameElements WindowMargins WindowMovable WindowOpacity WindowPersistentStyles WindowSelected WindowSize WindowStatusArea WindowTitle WindowToolbars WindowWidth WindSpeedData WindVectorData WinsorizedMean WinsorizedVariance WishartMatrixDistribution With WolframAlpha WolframAlphaDate WolframAlphaQuantity WolframAlphaResult WolframLanguageData Word WordBoundary WordCharacter WordCloud WordCount WordCounts WordData WordDefinition WordFrequency WordFrequencyData WordList WordOrientation WordSearch WordSelectionFunction WordSeparators WordSpacings WordStem WordTranslation WorkingPrecision WrapAround Write WriteLine WriteString WronskianXMLElement XMLObject XMLTemplate Xnor Xor XYZColorYellow Yesterday YuleDissimilarityZernikeR ZeroSymmetric ZeroTest ZeroWidthTimes Zeta ZetaZero ZIPCodeData ZipfDistribution ZoomCenter ZoomFactor ZTest ZTransform$Aborted $ActivationGroupID $ActivationKey $ActivationUserRegistered $AddOnsDirectory $AllowExternalChannelFunctions $AssertFunction $Assumptions $AsynchronousTask $AudioInputDevices $AudioOutputDevices $BaseDirectory $BatchInput $BatchOutput $BlockchainBase $BoxForms $ByteOrdering $CacheBaseDirectory $Canceled $ChannelBase $CharacterEncoding $CharacterEncodings $CloudBase $CloudConnected $CloudCreditsAvailable $CloudEvaluation $CloudExpressionBase $CloudObjectNameFormat $CloudObjectURLType $CloudRootDirectory $CloudSymbolBase $CloudUserID $CloudUserUUID $CloudVersion $CloudVersionNumber $CloudWolframEngineVersionNumber $CommandLine $CompilationTarget $ConditionHold $ConfiguredKernels $Context $ContextPath $ControlActiveSetting $Cookies $CookieStore $CreationDate $CurrentLink $CurrentTask $CurrentWebSession $DateStringFormat $DefaultAudioInputDevice $DefaultAudioOutputDevice $DefaultFont $DefaultFrontEnd $DefaultImagingDevice $DefaultLocalBase $DefaultMailbox $DefaultNetworkInterface $DefaultPath $Display $DisplayFunction $DistributedContexts $DynamicEvaluation $Echo $EmbedCodeEnvironments $EmbeddableServices $EntityStores $Epilog $EvaluationCloudBase $EvaluationCloudObject $EvaluationEnvironment $ExportFormats $Failed $FinancialDataSource $FontFamilies $FormatType $FrontEnd $FrontEndSession $GeoEntityTypes $GeoLocation $GeoLocationCity $GeoLocationCountry $GeoLocationPrecision $GeoLocationSource $HistoryLength $HomeDirectory $HTMLExportRules $HTTPCookies $HTTPRequest $IgnoreEOF $ImageFormattingWidth $ImagingDevice $ImagingDevices $ImportFormats $IncomingMailSettings $InitialDirectory $Initialization $InitializationContexts $Input $InputFileName $InputStreamMethods $Inspector $InstallationDate $InstallationDirectory $InterfaceEnvironment $InterpreterTypes $IterationLimit $KernelCount $KernelID $Language $LaunchDirectory $LibraryPath $LicenseExpirationDate $LicenseID $LicenseProcesses $LicenseServer $LicenseSubprocesses $LicenseType $Line $Linked $LinkSupported $LoadedFiles $LocalBase $LocalSymbolBase $MachineAddresses $MachineDomain $MachineDomains $MachineEpsilon $MachineID $MachineName $MachinePrecision $MachineType $MaxExtraPrecision $MaxLicenseProcesses $MaxLicenseSubprocesses $MaxMachineNumber $MaxNumber $MaxPiecewiseCases $MaxPrecision $MaxRootDegree $MessageGroups $MessageList $MessagePrePrint $Messages $MinMachineNumber $MinNumber $MinorReleaseNumber $MinPrecision $MobilePhone $ModuleNumber $NetworkConnected $NetworkInterfaces $NetworkLicense $NewMessage $NewSymbol $Notebooks $NoValue $NumberMarks $Off $OperatingSystem $Output $OutputForms $OutputSizeLimit $OutputStreamMethods $Packages $ParentLink $ParentProcessID $PasswordFile $PatchLevelID $Path $PathnameSeparator $PerformanceGoal $Permissions $PermissionsGroupBase $PersistenceBase $PersistencePath $PipeSupported $PlotTheme $Post $Pre $PreferencesDirectory $PreInitialization $PrePrint $PreRead $PrintForms $PrintLiteral $Printout3DPreviewer $ProcessID $ProcessorCount $ProcessorType $ProductInformation $ProgramName $PublisherID $RandomState $RecursionLimit $RegisteredDeviceClasses $RegisteredUserName $ReleaseNumber $RequesterAddress $RequesterWolframID $RequesterWolframUUID $ResourceSystemBase $RootDirectory $ScheduledTask $ScriptCommandLine $ScriptInputString $SecuredAuthenticationKeyTokens $ServiceCreditsAvailable $Services $SessionID $SetParentLink $SharedFunctions $SharedVariables $SoundDisplay $SoundDisplayFunction $SourceLink $SSHAuthentication $SummaryBoxDataSizeLimit $SuppressInputFormHeads $SynchronousEvaluation $SyntaxHandler $System $SystemCharacterEncoding $SystemID $SystemMemory $SystemShell $SystemTimeZone $SystemWordLength $TemplatePath $TemporaryDirectory $TemporaryPrefix $TestFileName $TextStyle $TimedOut $TimeUnit $TimeZone $TimeZoneEntity $TopDirectory $TraceOff $TraceOn $TracePattern $TracePostAction $TracePreAction $UnitSystem $Urgent $UserAddOnsDirectory $UserAgentLanguages $UserAgentMachine $UserAgentName $UserAgentOperatingSystem $UserAgentString $UserAgentVersion $UserBaseDirectory $UserDocumentsDirectory $Username $UserName $UserURLBase $Version $VersionNumber $VoiceStyles $WolframID $WolframUUID","(\\$|\\b)[a-zA-Z]\\w*\\b",q,A.m(t.N,t.n),q,q,q,q,q,q,q,q)}) -s($,"beh","aTm",()=>{var q,p,o,n,m,l,k,j,i="~contains~1~starts",h=null,g="function",f="(?:TODO|FIXME|NOTE|BUG|XXX):",e=t._,d=t.N,c=A.l([i,A.a(h,h,h,h,h,A.b([A.a(h,"('|\\.')+",h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h)],e),h,h,h,h,h,h,h,h,h,h,h,h,0,h,h,h,h,h,h,h)],d,t.n) -d=A.l(["keyword","break case catch classdef continue else elseif end enumerated events for function global if methods otherwise parfor persistent properties return spmd switch try while","built_in","sin sind sinh asin asind asinh cos cosd cosh acos acosd acosh tan tand tanh atan atand atan2 atanh sec secd sech asec asecd asech csc cscd csch acsc acscd acsch cot cotd coth acot acotd acoth hypot exp expm1 log log1p log10 log2 pow2 realpow reallog realsqrt sqrt nthroot nextpow2 abs angle complex conj imag real unwrap isreal cplxpair fix floor ceil round mod rem sign airy besselj bessely besselh besseli besselk beta betainc betaln ellipj ellipke erf erfc erfcx erfinv expint gamma gammainc gammaln psi legendre cross dot factor isprime primes gcd lcm rat rats perms nchoosek factorial cart2sph cart2pol pol2cart sph2cart hsv2rgb rgb2hsv zeros ones eye repmat rand randn linspace logspace freqspace meshgrid accumarray size length ndims numel disp isempty isequal isequalwithequalnans cat reshape diag blkdiag tril triu fliplr flipud flipdim rot90 find sub2ind ind2sub bsxfun ndgrid permute ipermute shiftdim circshift squeeze isscalar isvector ans eps realmax realmin pi i inf nan isnan isinf isfinite j why compan gallery hadamard hankel hilb invhilb magic pascal rosser toeplitz vander wilkinson max min nanmax nanmin mean nanmean type table readtable writetable sortrows sort figure plot plot3 scatter scatter3 cellfun legend intersect ismember procrustes hold num2cell "],d,d) -q=A.a(h,h,g,h,g,A.b([$.dU(),A.a(h,h,h,h,"params",h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,A.b([A.a(h,"\\(",h,h,h,h,h,"\\)",h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h),A.a(h,"\\[",h,h,h,h,h,"\\]",h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h)],e))],e),h,"$",h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h) -p=A.a(h,"true|false",h,h,"built_in",h,h,h,h,h,h,h,h,h,h,h,h,h,0,h,h,h,h,A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,i,h,h,h,h,h,h,h,h,h),h,h) -o=A.a(h,"[a-zA-Z][a-zA-Z_0-9]*('|\\.')+",h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,0,h,h,h,h,h,h,h) -n=A.a(h,u.O,h,h,"number",h,h,h,h,h,h,h,h,h,h,h,h,h,0,h,h,h,h,A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,i,h,h,h,h,h,h,h,h,h),h,h) -m=$.aZ() -l=A.a(h,"'",h,h,"string",A.b([m,A.a(h,"''",h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h)],e),h,"'",h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h) -k=A.a(h,"\\]|}|\\)",h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,0,h,h,h,h,A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,i,h,h,h,h,h,h,h,h,h),h,h) -m=A.a(h,'"',h,h,"string",A.b([m,A.a(h,'""',h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h)],e),h,'"',h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,A.a(h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,i,h,h,h,h,h,h,h,h,h),h,h) -j=$.aq() -return A.a(h,h,h,h,h,A.b([q,p,o,n,l,k,m,A.a(h,"^\\s*\\%\\{\\s*$",h,h,"comment",A.b([j,A.a(h,f,h,h,"doctag",h,h,h,h,h,h,h,h,h,h,h,h,h,0,h,h,h,h,h,h,h)],e),h,"^\\s*\\%\\}\\s*$",h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h),A.a(h,"\\%",h,h,"comment",A.b([j,A.a(h,f,h,h,"doctag",h,h,h,h,h,h,h,h,h,h,h,h,h,0,h,h,h,h,h,h,h)],e),h,"$",h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h)],e),h,h,h,h,h,h,h,'(//|"|#|/\\*|\\s+/\\w+)',d,h,h,c,h,h,h,h,h,h,h,h)}) -s($,"bei","aTn",()=>{var q=null,p=t.N,o=A.l(["keyword","if then else elseif for thru do while unless step in and or not","literal","true false unknown inf minf ind und %e %i %pi %phi %gamma","built_in"," abasep abs absint absolute_real_time acos acosh acot acoth acsc acsch activate addcol add_edge add_edges addmatrices addrow add_vertex add_vertices adjacency_matrix adjoin adjoint af agd airy airy_ai airy_bi airy_dai airy_dbi algsys alg_type alias allroots alphacharp alphanumericp amortization %and annuity_fv annuity_pv antid antidiff AntiDifference append appendfile apply apply1 apply2 applyb1 apropos args arit_amortization arithmetic arithsum array arrayapply arrayinfo arraymake arraysetapply ascii asec asech asin asinh askinteger asksign assoc assoc_legendre_p assoc_legendre_q assume assume_external_byte_order asympa at atan atan2 atanh atensimp atom atvalue augcoefmatrix augmented_lagrangian_method av average_degree backtrace bars barsplot barsplot_description base64 base64_decode bashindices batch batchload bc2 bdvac belln benefit_cost bern bernpoly bernstein_approx bernstein_expand bernstein_poly bessel bessel_i bessel_j bessel_k bessel_simplify bessel_y beta beta_incomplete beta_incomplete_generalized beta_incomplete_regularized bezout bfallroots bffac bf_find_root bf_fmin_cobyla bfhzeta bfloat bfloatp bfpsi bfpsi0 bfzeta biconnected_components bimetric binomial bipartition block blockmatrixp bode_gain bode_phase bothcoef box boxplot boxplot_description break bug_report build_info|10 buildq build_sample burn cabs canform canten cardinality carg cartan cartesian_product catch cauchy_matrix cbffac cdf_bernoulli cdf_beta cdf_binomial cdf_cauchy cdf_chi2 cdf_continuous_uniform cdf_discrete_uniform cdf_exp cdf_f cdf_gamma cdf_general_finite_discrete cdf_geometric cdf_gumbel cdf_hypergeometric cdf_laplace cdf_logistic cdf_lognormal cdf_negative_binomial cdf_noncentral_chi2 cdf_noncentral_student_t cdf_normal cdf_pareto cdf_poisson cdf_rank_sum cdf_rayleigh cdf_signed_rank cdf_student_t cdf_weibull cdisplay ceiling central_moment cequal cequalignore cf cfdisrep cfexpand cgeodesic cgreaterp cgreaterpignore changename changevar chaosgame charat charfun charfun2 charlist charp charpoly chdir chebyshev_t chebyshev_u checkdiv check_overlaps chinese cholesky christof chromatic_index chromatic_number cint circulant_graph clear_edge_weight clear_rules clear_vertex_label clebsch_gordan clebsch_graph clessp clesspignore close closefile cmetric coeff coefmatrix cograd col collapse collectterms columnop columnspace columnswap columnvector combination combine comp2pui compare compfile compile compile_file complement_graph complete_bipartite_graph complete_graph complex_number_p components compose_functions concan concat conjugate conmetderiv connected_components connect_vertices cons constant constantp constituent constvalue cont2part content continuous_freq contortion contour_plot contract contract_edge contragrad contrib_ode convert coord copy copy_file copy_graph copylist copymatrix cor cos cosh cot coth cov cov1 covdiff covect covers crc24sum create_graph create_list csc csch csetup cspline ctaylor ct_coordsys ctransform ctranspose cube_graph cuboctahedron_graph cunlisp cv cycle_digraph cycle_graph cylindrical days360 dblint deactivate declare declare_constvalue declare_dimensions declare_fundamental_dimensions declare_fundamental_units declare_qty declare_translated declare_unit_conversion declare_units declare_weights decsym defcon define define_alt_display define_variable defint defmatch defrule defstruct deftaylor degree_sequence del delete deleten delta demo demoivre denom depends derivdegree derivlist describe desolve determinant dfloat dgauss_a dgauss_b dgeev dgemm dgeqrf dgesv dgesvd diag diagmatrix diag_matrix diagmatrixp diameter diff digitcharp dimacs_export dimacs_import dimension dimensionless dimensions dimensions_as_list direct directory discrete_freq disjoin disjointp disolate disp dispcon dispform dispfun dispJordan display disprule dispterms distrib divide divisors divsum dkummer_m dkummer_u dlange dodecahedron_graph dotproduct dotsimp dpart draw draw2d draw3d drawdf draw_file draw_graph dscalar echelon edge_coloring edge_connectivity edges eigens_by_jacobi eigenvalues eigenvectors eighth einstein eivals eivects elapsed_real_time elapsed_run_time ele2comp ele2polynome ele2pui elem elementp elevation_grid elim elim_allbut eliminate eliminate_using ellipse elliptic_e elliptic_ec elliptic_eu elliptic_f elliptic_kc elliptic_pi ematrix empty_graph emptyp endcons entermatrix entertensor entier equal equalp equiv_classes erf erfc erf_generalized erfi errcatch error errormsg errors euler ev eval_string evenp every evolution evolution2d evundiff example exp expand expandwrt expandwrt_factored expint expintegral_chi expintegral_ci expintegral_e expintegral_e1 expintegral_ei expintegral_e_simplify expintegral_li expintegral_shi expintegral_si explicit explose exponentialize express expt exsec extdiff extract_linear_equations extremal_subset ezgcd %f f90 facsum factcomb factor factorfacsum factorial factorout factorsum facts fast_central_elements fast_linsolve fasttimes featurep fernfale fft fib fibtophi fifth filename_merge file_search file_type fillarray findde find_root find_root_abs find_root_error find_root_rel first fix flatten flength float floatnump floor flower_snark flush flush1deriv flushd flushnd flush_output fmin_cobyla forget fortran fourcos fourexpand fourier fourier_elim fourint fourintcos fourintsin foursimp foursin fourth fposition frame_bracket freeof freshline fresnel_c fresnel_s from_adjacency_matrix frucht_graph full_listify fullmap fullmapl fullratsimp fullratsubst fullsetify funcsolve fundamental_dimensions fundamental_units fundef funmake funp fv g0 g1 gamma gamma_greek gamma_incomplete gamma_incomplete_generalized gamma_incomplete_regularized gauss gauss_a gauss_b gaussprob gcd gcdex gcdivide gcfac gcfactor gd generalized_lambert_w genfact gen_laguerre genmatrix gensym geo_amortization geo_annuity_fv geo_annuity_pv geomap geometric geometric_mean geosum get getcurrentdirectory get_edge_weight getenv get_lu_factors get_output_stream_string get_pixel get_plot_option get_tex_environment get_tex_environment_default get_vertex_label gfactor gfactorsum ggf girth global_variances gn gnuplot_close gnuplot_replot gnuplot_reset gnuplot_restart gnuplot_start go Gosper GosperSum gr2d gr3d gradef gramschmidt graph6_decode graph6_encode graph6_export graph6_import graph_center graph_charpoly graph_eigenvalues graph_flow graph_order graph_periphery graph_product graph_size graph_union great_rhombicosidodecahedron_graph great_rhombicuboctahedron_graph grid_graph grind grobner_basis grotzch_graph hamilton_cycle hamilton_path hankel hankel_1 hankel_2 harmonic harmonic_mean hav heawood_graph hermite hessian hgfred hilbertmap hilbert_matrix hipow histogram histogram_description hodge horner hypergeometric i0 i1 %ibes ic1 ic2 ic_convert ichr1 ichr2 icosahedron_graph icosidodecahedron_graph icurvature ident identfor identity idiff idim idummy ieqn %if ifactors iframes ifs igcdex igeodesic_coords ilt image imagpart imetric implicit implicit_derivative implicit_plot indexed_tensor indices induced_subgraph inferencep inference_result infix info_display init_atensor init_ctensor in_neighbors innerproduct inpart inprod inrt integerp integer_partitions integrate intersect intersection intervalp intopois intosum invariant1 invariant2 inverse_fft inverse_jacobi_cd inverse_jacobi_cn inverse_jacobi_cs inverse_jacobi_dc inverse_jacobi_dn inverse_jacobi_ds inverse_jacobi_nc inverse_jacobi_nd inverse_jacobi_ns inverse_jacobi_sc inverse_jacobi_sd inverse_jacobi_sn invert invert_by_adjoint invert_by_lu inv_mod irr is is_biconnected is_bipartite is_connected is_digraph is_edge_in_graph is_graph is_graph_or_digraph ishow is_isomorphic isolate isomorphism is_planar isqrt isreal_p is_sconnected is_tree is_vertex_in_graph items_inference %j j0 j1 jacobi jacobian jacobi_cd jacobi_cn jacobi_cs jacobi_dc jacobi_dn jacobi_ds jacobi_nc jacobi_nd jacobi_ns jacobi_p jacobi_sc jacobi_sd jacobi_sn JF jn join jordan julia julia_set julia_sin %k kdels kdelta kill killcontext kostka kron_delta kronecker_product kummer_m kummer_u kurtosis kurtosis_bernoulli kurtosis_beta kurtosis_binomial kurtosis_chi2 kurtosis_continuous_uniform kurtosis_discrete_uniform kurtosis_exp kurtosis_f kurtosis_gamma kurtosis_general_finite_discrete kurtosis_geometric kurtosis_gumbel kurtosis_hypergeometric kurtosis_laplace kurtosis_logistic kurtosis_lognormal kurtosis_negative_binomial kurtosis_noncentral_chi2 kurtosis_noncentral_student_t kurtosis_normal kurtosis_pareto kurtosis_poisson kurtosis_rayleigh kurtosis_student_t kurtosis_weibull label labels lagrange laguerre lambda lambert_w laplace laplacian_matrix last lbfgs lc2kdt lcharp lc_l lcm lc_u ldefint ldisp ldisplay legendre_p legendre_q leinstein length let letrules letsimp levi_civita lfreeof lgtreillis lhs li liediff limit Lindstedt linear linearinterpol linear_program linear_regression line_graph linsolve listarray list_correlations listify list_matrix_entries list_nc_monomials listoftens listofvars listp lmax lmin load loadfile local locate_matrix_entry log logcontract log_gamma lopow lorentz_gauge lowercasep lpart lratsubst lreduce lriemann lsquares_estimates lsquares_estimates_approximate lsquares_estimates_exact lsquares_mse lsquares_residual_mse lsquares_residuals lsum ltreillis lu_backsub lucas lu_factor %m macroexpand macroexpand1 make_array makebox makefact makegamma make_graph make_level_picture makelist makeOrders make_poly_continent make_poly_country make_polygon make_random_state make_rgb_picture makeset make_string_input_stream make_string_output_stream make_transform mandelbrot mandelbrot_set map mapatom maplist matchdeclare matchfix mat_cond mat_fullunblocker mat_function mathml_display mat_norm matrix matrixmap matrixp matrix_size mattrace mat_trace mat_unblocker max max_clique max_degree max_flow maximize_lp max_independent_set max_matching maybe md5sum mean mean_bernoulli mean_beta mean_binomial mean_chi2 mean_continuous_uniform mean_deviation mean_discrete_uniform mean_exp mean_f mean_gamma mean_general_finite_discrete mean_geometric mean_gumbel mean_hypergeometric mean_laplace mean_logistic mean_lognormal mean_negative_binomial mean_noncentral_chi2 mean_noncentral_student_t mean_normal mean_pareto mean_poisson mean_rayleigh mean_student_t mean_weibull median median_deviation member mesh metricexpandall mgf1_sha1 min min_degree min_edge_cut minfactorial minimalPoly minimize_lp minimum_spanning_tree minor minpack_lsquares minpack_solve min_vertex_cover min_vertex_cut mkdir mnewton mod mode_declare mode_identity ModeMatrix moebius mon2schur mono monomial_dimensions multibernstein_poly multi_display_for_texinfo multi_elem multinomial multinomial_coeff multi_orbit multiplot_mode multi_pui multsym multthru mycielski_graph nary natural_unit nc_degree ncexpt ncharpoly negative_picture neighbors new newcontext newdet new_graph newline newton new_variable next_prime nicedummies niceindices ninth nofix nonarray noncentral_moment nonmetricity nonnegintegerp nonscalarp nonzeroandfreeof notequal nounify nptetrad npv nroots nterms ntermst nthroot nullity nullspace num numbered_boundaries numberp number_to_octets num_distinct_partitions numerval numfactor num_partitions nusum nzeta nzetai nzetar octets_to_number octets_to_oid odd_girth oddp ode2 ode_check odelin oid_to_octets op opena opena_binary openr openr_binary openw openw_binary operatorp opsubst optimize %or orbit orbits ordergreat ordergreatp orderless orderlessp orthogonal_complement orthopoly_recur orthopoly_weight outermap out_neighbors outofpois pade parabolic_cylinder_d parametric parametric_surface parg parGosper parse_string parse_timedate part part2cont partfrac partition partition_set partpol path_digraph path_graph pathname_directory pathname_name pathname_type pdf_bernoulli pdf_beta pdf_binomial pdf_cauchy pdf_chi2 pdf_continuous_uniform pdf_discrete_uniform pdf_exp pdf_f pdf_gamma pdf_general_finite_discrete pdf_geometric pdf_gumbel pdf_hypergeometric pdf_laplace pdf_logistic pdf_lognormal pdf_negative_binomial pdf_noncentral_chi2 pdf_noncentral_student_t pdf_normal pdf_pareto pdf_poisson pdf_rank_sum pdf_rayleigh pdf_signed_rank pdf_student_t pdf_weibull pearson_skewness permanent permut permutation permutations petersen_graph petrov pickapart picture_equalp picturep piechart piechart_description planar_embedding playback plog plot2d plot3d plotdf ploteq plsquares pochhammer points poisdiff poisexpt poisint poismap poisplus poissimp poissubst poistimes poistrim polar polarform polartorect polar_to_xy poly_add poly_buchberger poly_buchberger_criterion poly_colon_ideal poly_content polydecomp poly_depends_p poly_elimination_ideal poly_exact_divide poly_expand poly_expt poly_gcd polygon poly_grobner poly_grobner_equal poly_grobner_member poly_grobner_subsetp poly_ideal_intersection poly_ideal_polysaturation poly_ideal_polysaturation1 poly_ideal_saturation poly_ideal_saturation1 poly_lcm poly_minimization polymod poly_multiply polynome2ele polynomialp poly_normal_form poly_normalize poly_normalize_list poly_polysaturation_extension poly_primitive_part poly_pseudo_divide poly_reduced_grobner poly_reduction poly_saturation_extension poly_s_polynomial poly_subtract polytocompanion pop postfix potential power_mod powerseries powerset prefix prev_prime primep primes principal_components print printf printfile print_graph printpois printprops prodrac product properties propvars psi psubst ptriangularize pui pui2comp pui2ele pui2polynome pui_direct puireduc push put pv qput qrange qty quad_control quad_qag quad_qagi quad_qagp quad_qags quad_qawc quad_qawf quad_qawo quad_qaws quadrilateral quantile quantile_bernoulli quantile_beta quantile_binomial quantile_cauchy quantile_chi2 quantile_continuous_uniform quantile_discrete_uniform quantile_exp quantile_f quantile_gamma quantile_general_finite_discrete quantile_geometric quantile_gumbel quantile_hypergeometric quantile_laplace quantile_logistic quantile_lognormal quantile_negative_binomial quantile_noncentral_chi2 quantile_noncentral_student_t quantile_normal quantile_pareto quantile_poisson quantile_rayleigh quantile_student_t quantile_weibull quartile_skewness quit qunit quotient racah_v racah_w radcan radius random random_bernoulli random_beta random_binomial random_bipartite_graph random_cauchy random_chi2 random_continuous_uniform random_digraph random_discrete_uniform random_exp random_f random_gamma random_general_finite_discrete random_geometric random_graph random_graph1 random_gumbel random_hypergeometric random_laplace random_logistic random_lognormal random_negative_binomial random_network random_noncentral_chi2 random_noncentral_student_t random_normal random_pareto random_permutation random_poisson random_rayleigh random_regular_graph random_student_t random_tournament random_tree random_weibull range rank rat ratcoef ratdenom ratdiff ratdisrep ratexpand ratinterpol rational rationalize ratnumer ratnump ratp ratsimp ratsubst ratvars ratweight read read_array read_binary_array read_binary_list read_binary_matrix readbyte readchar read_hashed_array readline read_list read_matrix read_nested_list readonly read_xpm real_imagpart_to_conjugate realpart realroots rearray rectangle rectform rectform_log_if_constant recttopolar rediff reduce_consts reduce_order region region_boundaries region_boundaries_plus rem remainder remarray rembox remcomps remcon remcoord remfun remfunction remlet remove remove_constvalue remove_dimensions remove_edge remove_fundamental_dimensions remove_fundamental_units remove_plot_option remove_vertex rempart remrule remsym remvalue rename rename_file reset reset_displays residue resolvante resolvante_alternee1 resolvante_bipartite resolvante_diedrale resolvante_klein resolvante_klein3 resolvante_produit_sym resolvante_unitaire resolvante_vierer rest resultant return reveal reverse revert revert2 rgb2level rhs ricci riemann rinvariant risch rk rmdir rncombine romberg room rootscontract round row rowop rowswap rreduce run_testsuite %s save saving scalarp scaled_bessel_i scaled_bessel_i0 scaled_bessel_i1 scalefactors scanmap scatterplot scatterplot_description scene schur2comp sconcat scopy scsimp scurvature sdowncase sec sech second sequal sequalignore set_alt_display setdifference set_draw_defaults set_edge_weight setelmx setequalp setify setp set_partitions set_plot_option set_prompt set_random_state set_tex_environment set_tex_environment_default setunits setup_autoload set_up_dot_simplifications set_vertex_label seventh sexplode sf sha1sum sha256sum shortest_path shortest_weighted_path show showcomps showratvars sierpinskiale sierpinskimap sign signum similaritytransform simp_inequality simplify_sum simplode simpmetderiv simtran sin sinh sinsert sinvertcase sixth skewness skewness_bernoulli skewness_beta skewness_binomial skewness_chi2 skewness_continuous_uniform skewness_discrete_uniform skewness_exp skewness_f skewness_gamma skewness_general_finite_discrete skewness_geometric skewness_gumbel skewness_hypergeometric skewness_laplace skewness_logistic skewness_lognormal skewness_negative_binomial skewness_noncentral_chi2 skewness_noncentral_student_t skewness_normal skewness_pareto skewness_poisson skewness_rayleigh skewness_student_t skewness_weibull slength smake small_rhombicosidodecahedron_graph small_rhombicuboctahedron_graph smax smin smismatch snowmap snub_cube_graph snub_dodecahedron_graph solve solve_rec solve_rec_rat some somrac sort sparse6_decode sparse6_encode sparse6_export sparse6_import specint spherical spherical_bessel_j spherical_bessel_y spherical_hankel1 spherical_hankel2 spherical_harmonic spherical_to_xyz splice split sposition sprint sqfr sqrt sqrtdenest sremove sremovefirst sreverse ssearch ssort sstatus ssubst ssubstfirst staircase standardize standardize_inverse_trig starplot starplot_description status std std1 std_bernoulli std_beta std_binomial std_chi2 std_continuous_uniform std_discrete_uniform std_exp std_f std_gamma std_general_finite_discrete std_geometric std_gumbel std_hypergeometric std_laplace std_logistic std_lognormal std_negative_binomial std_noncentral_chi2 std_noncentral_student_t std_normal std_pareto std_poisson std_rayleigh std_student_t std_weibull stemplot stirling stirling1 stirling2 strim striml strimr string stringout stringp strong_components struve_h struve_l sublis sublist sublist_indices submatrix subsample subset subsetp subst substinpart subst_parallel substpart substring subvar subvarp sum sumcontract summand_to_rec supcase supcontext symbolp symmdifference symmetricp system take_channel take_inference tan tanh taylor taylorinfo taylorp taylor_simplifier taytorat tcl_output tcontract tellrat tellsimp tellsimpafter tentex tenth test_mean test_means_difference test_normality test_proportion test_proportions_difference test_rank_sum test_sign test_signed_rank test_variance test_variance_ratio tex tex1 tex_display texput %th third throw time timedate timer timer_info tldefint tlimit todd_coxeter toeplitz tokens to_lisp topological_sort to_poly to_poly_solve totaldisrep totalfourier totient tpartpol trace tracematrix trace_options transform_sample translate translate_file transpose treefale tree_reduce treillis treinat triangle triangularize trigexpand trigrat trigreduce trigsimp trunc truncate truncated_cube_graph truncated_dodecahedron_graph truncated_icosahedron_graph truncated_tetrahedron_graph tr_warnings_get tube tutte_graph ueivects uforget ultraspherical underlying_graph undiff union unique uniteigenvectors unitp units unit_step unitvector unorder unsum untellrat untimer untrace uppercasep uricci uriemann uvect vandermonde_matrix var var1 var_bernoulli var_beta var_binomial var_chi2 var_continuous_uniform var_discrete_uniform var_exp var_f var_gamma var_general_finite_discrete var_geometric var_gumbel var_hypergeometric var_laplace var_logistic var_lognormal var_negative_binomial var_noncentral_chi2 var_noncentral_student_t var_normal var_pareto var_poisson var_rayleigh var_student_t var_weibull vector vectorpotential vectorsimp verbify vers vertex_coloring vertex_connectivity vertex_degree vertex_distance vertex_eccentricity vertex_in_degree vertex_out_degree vertices vertices_to_cycle vertices_to_path %w weyl wheel_graph wiener_index wigner_3j wigner_6j wigner_9j with_stdout write_binary_data writebyte write_data writefile wronskian xreduce xthru %y Zeilberger zeroequiv zerofor zeromatrix zeromatrixp zeta zgeev zheev zlange zn_add_table zn_carmichael_lambda zn_characteristic_factors zn_determinant zn_factor_generators zn_invert_by_lu zn_log zn_mult_table absboxchar activecontexts adapt_depth additive adim aform algebraic algepsilon algexact aliases allbut all_dotsimp_denoms allocation allsym alphabetic animation antisymmetric arrays askexp assume_pos assume_pos_pred assumescalar asymbol atomgrad atrig1 axes axis_3d axis_bottom axis_left axis_right axis_top azimuth background background_color backsubst berlefact bernstein_explicit besselexpand beta_args_sum_to_integer beta_expand bftorat bftrunc bindtest border boundaries_array box boxchar breakup %c capping cauchysum cbrange cbtics center cflength cframe_flag cnonmet_flag color color_bar color_bar_tics colorbox columns commutative complex cone context contexts contour contour_levels cosnpiflag ctaypov ctaypt ctayswitch ctayvar ct_coords ctorsion_flag ctrgsimp cube current_let_rule_package cylinder data_file_name debugmode decreasing default_let_rule_package delay dependencies derivabbrev derivsubst detout diagmetric diff dim dimensions dispflag display2d|10 display_format_internal distribute_over doallmxops domain domxexpt domxmxops domxnctimes dontfactor doscmxops doscmxplus dot0nscsimp dot0simp dot1simp dotassoc dotconstrules dotdistrib dotexptsimp dotident dotscrules draw_graph_program draw_realpart edge_color edge_coloring edge_partition edge_type edge_width %edispflag elevation %emode endphi endtheta engineering_format_floats enhanced3d %enumer epsilon_lp erfflag erf_representation errormsg error_size error_syms error_type %e_to_numlog eval even evenfun evflag evfun ev_point expandwrt_denom expintexpand expintrep expon expop exptdispflag exptisolate exptsubst facexpand facsum_combine factlim factorflag factorial_expand factors_only fb feature features file_name file_output_append file_search_demo file_search_lisp file_search_maxima|10 file_search_tests file_search_usage file_type_lisp file_type_maxima|10 fill_color fill_density filled_func fixed_vertices flipflag float2bf font font_size fortindent fortspaces fpprec fpprintprec functions gamma_expand gammalim gdet genindex gensumnum GGFCFMAX GGFINFINITY globalsolve gnuplot_command gnuplot_curve_styles gnuplot_curve_titles gnuplot_default_term_command gnuplot_dumb_term_command gnuplot_file_args gnuplot_file_name gnuplot_out_file gnuplot_pdf_term_command gnuplot_pm3d gnuplot_png_term_command gnuplot_postamble gnuplot_preamble gnuplot_ps_term_command gnuplot_svg_term_command gnuplot_term gnuplot_view_args Gosper_in_Zeilberger gradefs grid grid2d grind halfangles head_angle head_both head_length head_type height hypergeometric_representation %iargs ibase icc1 icc2 icounter idummyx ieqnprint ifb ifc1 ifc2 ifg ifgi ifr iframe_bracket_form ifri igeowedge_flag ikt1 ikt2 imaginary inchar increasing infeval infinity inflag infolists inm inmc1 inmc2 intanalysis integer integervalued integrate_use_rootsof integration_constant integration_constant_counter interpolate_color intfaclim ip_grid ip_grid_in irrational isolate_wrt_times iterations itr julia_parameter %k1 %k2 keepfloat key key_pos kinvariant kt label label_alignment label_orientation labels lassociative lbfgs_ncorrections lbfgs_nfeval_max leftjust legend letrat let_rule_packages lfg lg lhospitallim limsubst linear linear_solver linechar linel|10 linenum line_type linewidth line_width linsolve_params linsolvewarn lispdisp listarith listconstvars listdummyvars lmxchar load_pathname loadprint logabs logarc logcb logconcoeffp logexpand lognegint logsimp logx logx_secondary logy logy_secondary logz lriem m1pbranch macroexpansion macros mainvar manual_demo maperror mapprint matrix_element_add matrix_element_mult matrix_element_transpose maxapplydepth maxapplyheight maxima_tempdir|10 maxima_userdir|10 maxnegex MAX_ORD maxposex maxpsifracdenom maxpsifracnum maxpsinegint maxpsiposint maxtayorder mesh_lines_color method mod_big_prime mode_check_errorp mode_checkp mode_check_warnp mod_test mod_threshold modular_linear_solver modulus multiplicative multiplicities myoptions nary negdistrib negsumdispflag newline newtonepsilon newtonmaxiter nextlayerfactor niceindicespref nm nmc noeval nolabels nonegative_lp noninteger nonscalar noun noundisp nouns np npi nticks ntrig numer numer_pbranch obase odd oddfun opacity opproperties opsubst optimprefix optionset orientation origin orthopoly_returns_intervals outative outchar packagefile palette partswitch pdf_file pfeformat phiresolution %piargs piece pivot_count_sx pivot_max_sx plot_format plot_options plot_realpart png_file pochhammer_max_index points pointsize point_size points_joined point_type poislim poisson poly_coefficient_ring poly_elimination_order polyfactor poly_grobner_algorithm poly_grobner_debug poly_monomial_order poly_primary_elimination_order poly_return_term_list poly_secondary_elimination_order poly_top_reduction_only posfun position powerdisp pred prederror primep_number_of_tests product_use_gamma program programmode promote_float_to_bigfloat prompt proportional_axes props psexpand ps_file radexpand radius radsubstflag rassociative ratalgdenom ratchristof ratdenomdivide rateinstein ratepsilon ratfac rational ratmx ratprint ratriemann ratsimpexpons ratvarswitch ratweights ratweyl ratwtlvl real realonly redraw refcheck resolution restart resultant ric riem rmxchar %rnum_list rombergabs rombergit rombergmin rombergtol rootsconmode rootsepsilon run_viewer same_xy same_xyz savedef savefactors scalar scalarmatrixp scale scale_lp setcheck setcheckbreak setval show_edge_color show_edges show_edge_type show_edge_width show_id show_label showtime show_vertex_color show_vertex_size show_vertex_type show_vertices show_weight simp simplified_output simplify_products simpproduct simpsum sinnpiflag solvedecomposes solveexplicit solvefactors solvenullwarn solveradcan solvetrigwarn space sparse sphere spring_embedding_depth sqrtdispflag stardisp startphi starttheta stats_numer stringdisp structures style sublis_apply_lambda subnumsimp sumexpand sumsplitfact surface surface_hide svg_file symmetric tab taylordepth taylor_logexpand taylor_order_coefficients taylor_truncate_polynomials tensorkill terminal testsuite_files thetaresolution timer_devalue title tlimswitch tr track transcompile transform transform_xy translate_fast_arrays transparent transrun tr_array_as_ref tr_bound_function_applyp tr_file_tty_messagesp tr_float_can_branch_complex tr_function_call_default trigexpandplus trigexpandtimes triginverses trigsign trivial_solutions tr_numer tr_optimize_max_loop tr_semicompile tr_state_vars tr_warn_bad_function_calls tr_warn_fexpr tr_warn_meval tr_warn_mode tr_warn_undeclared tr_warn_undefined_variable tstep ttyoff tube_extremes ufg ug %unitexpand unit_vectors uric uriem use_fast_arrays user_preamble usersetunits values vect_cross verbose vertex_color vertex_coloring vertex_partition vertex_size vertex_type view warnings weyl width windowname windowtitle wired_surface wireframe xaxis xaxis_color xaxis_secondary xaxis_type xaxis_width xlabel xlabel_secondary xlength xrange xrange_secondary xtics xtics_axis xtics_rotate xtics_rotate_secondary xtics_secondary xtics_secondary_axis xu_grid x_voxel xy_file xyplane xy_scale yaxis yaxis_color yaxis_secondary yaxis_type yaxis_width ylabel ylabel_secondary ylength yrange yrange_secondary ytics ytics_axis ytics_rotate ytics_rotate_secondary ytics_secondary ytics_secondary_axis yv_grid y_voxel yx_ratio zaxis zaxis_color zaxis_type zaxis_width zeroa zerob zerobern zeta%pi zlabel zlabel_rotate zlength zmin zn_primroot_limit zn_primroot_pretest","symbol","_ __ %|0 %%|0"],p,p),n=t._ -return A.a(q,q,q,q,q,A.b([A.a(q,"/\\*",q,q,"comment",A.b([A.a(q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,!0,q,q,q,q)],n),q,"\\*/",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),$.aM(),A.a(q,q,q,q,"number",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,A.b([A.a(q,"\\b(\\d+|\\d+\\.|\\.\\d+|\\d+\\.\\d+)[Ee][-+]?\\d+\\b",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\b(\\d+|\\d+\\.|\\.\\d+|\\d+\\.\\d+)[Bb][-+]?\\d+\\b",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,10,q,q,q,q,q,q,q),A.a(q,"\\b(\\.\\d+|\\d+\\.\\d+)\\b",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\b(\\d+|0[0-9A-Za-z]+)\\.?\\b",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],n))],n),q,q,q,q,q,q,q,"@",o,"[A-Za-z_%][0-9A-Za-z_%]*",q,A.m(p,t.n),q,q,q,q,q,q,q,q)}) -s($,"bej","aTo",()=>{var q=null,p=t._ -return A.a(q,q,q,q,q,A.b([$.bw(),$.c0(),$.aM(),A.a(q,"`",q,q,"string",A.b([$.aZ()],p),q,"`",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"[\\$\\%\\@](\\^\\w\\b|#\\w+|[^\\s\\w{]|{\\w+}|\\w+)",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),$.ba(),$.b_()],p),q,q,q,q,q,q,q,"{var q="built_in",p=null,o=t.N,n=A.b(["m","moo"],t.s),m=A.l(["keyword","module use_module import_module include_module end_module initialise mutable initialize finalize finalise interface implementation pred mode func type inst solver any_pred any_func is semidet det nondet multi erroneous failure cc_nondet cc_multi typeclass instance where pragma promise external trace atomic or_else require_complete_switch require_det require_semidet require_multi require_nondet require_cc_multi require_cc_nondet require_erroneous require_failure","meta","inline no_inline type_spec source_file fact_table obsolete memo loop_check minimal_model terminates does_not_terminate check_termination promise_equivalent_clauses foreign_proc foreign_decl foreign_code foreign_type foreign_import_module foreign_export_enum foreign_export foreign_enum may_call_mercury will_not_call_mercury thread_safe not_thread_safe maybe_thread_safe promise_pure promise_semipure tabled_for_io local untrailed trailed attach_to_io_state can_pass_as_mercury_type stable will_not_throw_exception may_modify_trail will_not_modify_trail may_duplicate may_not_duplicate affects_liveness does_not_affect_liveness doesnt_affect_liveness no_sharing unknown_sharing sharing","built_in","some all not if then else true fail false try catch catch_any semidet_true semidet_false semidet_fail impure_true impure semipure"],o,o),l=t._,k=A.a(p,p,p,p,q,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,A.b([A.a(p,"<=>",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"<=",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p),A.a(p,"=>",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p),A.a(p,"/\\\\",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"\\\\/",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p)],l)),j=A.a(p,p,p,p,q,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,A.b([A.a(p,":-\\|-->",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"=",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p)],l)),i=A.a(p,"%",p,p,"comment",A.b([$.aq(),A.a(p,"(?:TODO|FIXME|NOTE|BUG|XXX):",p,p,"doctag",p,p,p,p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p)],l),p,"$",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),h=$.b_(),g=A.a(p,"0'.\\|0[box][0-9a-fA-F]*",p,p,"number",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),f=$.dB(),e=$.aZ() -return A.a(n,p,p,p,p,A.b([k,j,i,h,g,f,A.a(p,"'",p,p,"string",A.b([e],l),p,"'",p,p,p,p,p,"\\n",p,p,p,p,0,p,p,p,p,p,p,p),A.a(p,'"',p,p,"string",A.b([e,A.a(p,"\\\\[abfnrtv]\\|\\\\x[0-9a-fA-F]*\\\\\\|%[-+# *.0-9]*[dioxXucsfeEgGp]",p,p,"subst",p,p,p,p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p)],l),p,'"',p,p,p,p,p,"\\n",p,p,p,p,0,p,p,p,p,p,p,p),A.a(p,":-",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"\\.$",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p)],l),p,p,p,p,p,p,p,p,m,p,p,A.m(o,t.n),p,p,p,p,p,p,p,p)}) -s($,"bel","aTq",()=>{var q=null,p=t.N,o=A.b(["mips"],t.s),n=A.l(["meta",".2byte .4byte .align .ascii .asciz .balign .byte .code .data .else .end .endif .endm .endr .equ .err .exitm .extern .global .hword .if .ifdef .ifndef .include .irp .long .macro .rept .req .section .set .skip .space .text .word .ltorg ","built_in","$0 $1 $2 $3 $4 $5 $6 $7 $8 $9 $10 $11 $12 $13 $14 $15 $16 $17 $18 $19 $20 $21 $22 $23 $24 $25 $26 $27 $28 $29 $30 $31 zero at v0 v1 a0 a1 a2 a3 a4 a5 a6 a7 t0 t1 t2 t3 t4 t5 t6 t7 t8 t9 s0 s1 s2 s3 s4 s5 s6 s7 s8 k0 k1 gp sp fp ra $f0 $f1 $f2 $f2 $f4 $f5 $f6 $f7 $f8 $f9 $f10 $f11 $f12 $f13 $f14 $f15 $f16 $f17 $f18 $f19 $f20 $f21 $f22 $f23 $f24 $f25 $f26 $f27 $f28 $f29 $f30 $f31 Context Random EntryLo0 EntryLo1 Context PageMask Wired EntryHi HWREna BadVAddr Count Compare SR IntCtl SRSCtl SRSMap Cause EPC PRId EBase Config Config1 Config2 Config3 LLAddr Debug DEPC DESAVE CacheErr ECC ErrorEPC TagLo DataLo TagHi DataHi WatchLo WatchHi PerfCtl PerfCnt "],p,p),m=t._ -return A.a(o,q,q,!0,q,A.b([A.a(q,"\\b(addi?u?|andi?|b(al)?|beql?|bgez(al)?l?|bgtzl?|blezl?|bltz(al)?l?|bnel?|cl[oz]|divu?|ext|ins|j(al)?|jalr(.hb)?|jr(.hb)?|lbu?|lhu?|ll|lui|lw[lr]?|maddu?|mfhi|mflo|movn|movz|move|msubu?|mthi|mtlo|mul|multu?|nop|nor|ori?|rotrv?|sb|sc|se[bh]|sh|sllv?|slti?u?|srav?|srlv?|subu?|sw[lr]?|xori?|wsbh|abs.[sd]|add.[sd]|alnv.ps|bc1[ft]l?|c.(s?f|un|u?eq|[ou]lt|[ou]le|ngle?|seq|l[et]|ng[et]).[sd]|(ceil|floor|round|trunc).[lw].[sd]|cfc1|cvt.d.[lsw]|cvt.l.[dsw]|cvt.ps.s|cvt.s.[dlw]|cvt.s.p[lu]|cvt.w.[dls]|div.[ds]|ldx?c1|luxc1|lwx?c1|madd.[sd]|mfc1|mov[fntz]?.[ds]|msub.[sd]|mth?c1|mul.[ds]|neg.[ds]|nmadd.[ds]|nmsub.[ds]|p[lu][lu].ps|recip.fmt|r?sqrt.[ds]|sdx?c1|sub.[ds]|suxc1|swx?c1|break|cache|d?eret|[de]i|ehb|mfc0|mtc0|pause|prefx?|rdhwr|rdpgpr|sdbbp|ssnop|synci?|syscall|teqi?|tgei?u?|tlb(p|r|w[ir])|tlti?u?|tnei?|wait|wrpgpr)",q,q,"keyword",q,q,"\\s",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"[;#](?!s*$)",q,q,"comment",A.b([$.aq(),A.a(q,"(?:TODO|FIXME|NOTE|BUG|XXX):",q,q,"doctag",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q)],m),q,"$",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),$.b_(),$.aM(),A.a(q,"'",q,q,"string",q,q,"[^\\\\]'",q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q),A.a(q,"\\|",q,q,"title",q,q,"\\|",q,q,q,q,q,"\\n",q,q,q,q,0,q,q,q,q,q,q,q),A.a(q,q,q,q,"number",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,A.b([A.a(q,"0x[0-9a-f]+",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\b-?\\d+",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],m)),A.a(q,q,q,q,"symbol",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,A.b([A.a(q,"^\\s*[a-z_\\.\\$][a-z0-9_\\.\\$]+:",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"^\\s*[0-9]+:",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"[0-9]+[bf]",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],m))],m),q,q,q,q,q,q,q,"/",n,"\\.?[a-zA-Z]\\w*",q,A.m(p,t.n),q,q,q,q,q,q,q,q)}) -s($,"bem","aTr",()=>{var q=null,p=t._ -return A.a(q,q,q,q,q,A.b([A.a(q,"::",q,q,"comment",A.b([$.aq(),A.a(q,"(?:TODO|FIXME|NOTE|BUG|XXX):",q,q,"doctag",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q)],p),q,"$",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],p),q,q,q,q,q,q,q,q,"environ vocabularies notations constructors definitions registrations theorems schemes requirements begin end definition registration cluster existence pred func defpred deffunc theorem proof let take assume then thus hence ex for st holds consider reconsider such that and in provided of as from be being by means equals implies iff redefine define now not or attr is mode suppose per cases set thesis contradiction scheme reserve struct correctness compatibility coherence symmetry assymetry reflexivity irreflexivity connectedness uniqueness commutativity idempotence involutiveness projectivity",q,q,A.m(t.N,t.n),q,q,q,q,q,q,q,q)}) -s($,"ben","aTs",()=>{var q=null,p=t.s,o=A.b(["xml"],p) -return A.a(q,q,q,q,q,A.b([A.a(q,"^__(END|DATA)__$",q,q,"meta",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"^\\s*%{1,2}={0,2}",q,q,q,q,q,"$",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,A.b(["perl"],p),q),A.a(q,"<%{1,2}={0,2}",q,q,q,q,q,"={0,1}%>",q,q,q,!0,!0,q,q,q,q,q,q,q,q,q,q,q,A.b(["perl"],p),q)],t._),q,q,q,q,q,q,q,q,q,q,q,A.m(t.N,t.n),q,q,q,q,q,q,o,q)}) -s($,"beo","aTt",()=>{var q,p="(?:TODO|FIXME|NOTE|BUG|XXX):",o=null,n=t.N,m=A.l(["keyword","public private property continue exit extern new try catch eachin not abstract final select case default const local global field end if then else elseif endif while wend repeat until forever for to step next return module inline throw import","built_in","DebugLog DebugStop Error Print ACos ACosr ASin ASinr ATan ATan2 ATan2r ATanr Abs Abs Ceil Clamp Clamp Cos Cosr Exp Floor Log Max Max Min Min Pow Sgn Sgn Sin Sinr Sqrt Tan Tanr Seed PI HALFPI TWOPI","literal","true false null and or shl shr mod"],n,n),l=$.aq(),k=t._,j=A.a(o,"#rem",o,o,"comment",A.b([l,A.a(o,p,o,o,"doctag",o,o,o,o,o,o,o,o,o,o,o,o,o,0,o,o,o,o,o,o,o)],k),o,"#end",o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o) -l=A.a(o,"'",o,o,"comment",A.b([l,A.a(o,p,o,o,"doctag",o,o,o,o,o,o,o,o,o,o,o,o,o,0,o,o,o,o,o,o,o)],k),o,"$",o,o,o,o,o,o,o,o,o,o,0,o,o,o,o,o,o,o) -q=$.dU() -return A.a(o,o,o,!0,o,A.b([j,l,A.a(o,o,"function method",o,"function",A.b([q],k),o,"[(=:]|$",o,o,o,o,o,"\\n",o,o,o,o,o,o,o,o,o,o,o,o),A.a(o,o,"class interface",o,"class",A.b([A.a(o,o,"extends implements",o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o),q],k),o,"$",o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o),A.a(o,"\\b(self|super)\\b",o,o,"built_in",o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o),A.a(o,"\\s*#",o,o,"meta",o,o,"$",o,o,o,o,o,o,A.l(["meta-keyword","if else elseif endif end then"],n,n),o,o,o,o,o,o,o,o,o,o,o),A.a(o,"^\\s*strict\\b",o,o,"meta",o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o),A.a(o,o,"alias",o,o,A.b([q],k),o,"=",o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o),$.aM(),A.a(o,o,o,o,"number",o,o,o,o,o,o,o,o,o,o,o,o,o,0,o,o,o,o,o,o,A.b([A.a(o,"[$][a-fA-F0-9]+",o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o),$.dB()],k))],k),o,o,o,o,o,o,o,"\\/\\*",m,o,o,A.m(n,t.n),o,o,o,o,o,o,o,o)}) -s($,"bep","aTu",()=>{var q,p,o,n,m,l,k,j="~contains~6~contains~1",i="if then not for in while do return else elseif break continue switch and or unless when class extends super local import export from using",h="_G _VERSION assert collectgarbage dofile error getfenv getmetatable ipairs load loadfile loadstring module next pairs pcall print rawequal rawget rawset require select setfenv setmetatable tonumber tostring type unpack xpcall coroutine debug io math os package string table",g=null,f="~contains~0",e="~contains~1",d="~contains~1~variants~1~contains~1~contains~2",c="~contains~1~variants~1~contains~1~contains~3",b="~contains~1~variants~1~contains~1~contains~4",a="~contains~6~contains~0",a0="function",a1='[:="\\[\\]]',a2=t.N,a3=A.l(["keyword",i,"literal","true false nil","built_in",h],a2,a2),a4=t._ -a3=A.a(g,"\\([^\\(]",g,g,"params",A.b([A.a(g,"\\(",g,g,g,A.b([A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,!0,g,g,g,g),A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,f,g,g,g,g,g,g,g,g,g),A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,e,g,g,g,g,g,g,g,g,g),A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,d,g,g,g,g,g,g,g,g,g),A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,c,g,g,g,g,g,g,g,g,g),A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,b,g,g,g,g,g,g,g,g,g)],a4),g,"\\)",g,g,g,g,g,g,a3,g,g,g,g,g,g,g,g,g,g,g)],a4),g,g,g,g,g,g,g,g,g,g,g,g,g,!0,g,g,g,g,g,g) -q=A.a(g,"[A-Za-z$_][0-9A-Za-z$_]*",g,g,"title",g,g,g,g,g,g,g,g,g,g,g,g,g,0,g,g,g,g,g,g,g) -p=A.a(g,"[a-zA-Z]\\w*\\\\[a-zA-Z]\\w*",g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g) -o=A.a(g,"@[a-zA-Z]\\w*",g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g) -n=A.a(g,"@__[a-zA-Z]\\w*",g,g,"built_in",g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g) -m=$.aZ() -l=A.a(g,"'",g,g,g,A.b([m],a4),g,"'",g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g) -k=A.l(["keyword",i,"literal","true false nil","built_in",h],a2,a2) -k=A.l([j,a3,a,q,b,p,c,o,d,n,"~contains~1",A.a(g,g,g,g,"string",g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,A.b([l,A.a(g,'"',g,g,g,A.b([m,A.a(g,"#\\{",g,g,"subst",A.b([A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,f,g,g,g,g,g,g,g,g,g),A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,e,g,g,g,g,g,g,g,g,g),A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,d,g,g,g,g,g,g,g,g,g),A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,c,g,g,g,g,g,g,g,g,g),A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,b,g,g,g,g,g,g,g,g,g)],a4),g,"}",g,g,g,g,g,g,k,g,g,g,g,g,g,g,g,g,g,g)],a4),g,'"',g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g)],a4)),"~contains~0",A.a(g,u.O,g,g,"number",g,g,g,g,g,g,g,g,g,g,g,g,g,0,g,g,g,g,A.a(g,g,g,g,g,g,g,"(\\s*/)?",g,g,g,g,g,g,g,g,g,g,0,g,g,g,g,g,g,g),g,g)],a2,t.n) -m=A.b(["moon"],t.s) -a2=A.l(["keyword",i,"literal","true false nil","built_in",h],a2,a2) -return A.a(m,g,g,g,g,A.b([A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,f,g,g,g,g,g,g,g,g,g),A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,e,g,g,g,g,g,g,g,g,g),A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,d,g,g,g,g,g,g,g,g,g),A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,c,g,g,g,g,g,g,g,g,g),A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,b,g,g,g,g,g,g,g,g,g),A.a(g,"--",g,g,"comment",A.b([$.aq(),A.a(g,"(?:TODO|FIXME|NOTE|BUG|XXX):",g,g,"doctag",g,g,g,g,g,g,g,g,g,g,g,g,g,0,g,g,g,g,g,g,g)],a4),g,"$",g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g),A.a(g,u.r,g,g,a0,A.b([A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,a,g,g,g,g,g,g,g,g,g),A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,j,g,g,g,g,g,g,g,g,g)],a4),g,"[-=]>",g,g,g,g,g,g,g,g,g,g,g,!0,g,g,g,g,g,g),A.a(g,"[\\(,:=]\\s*",g,g,g,A.b([A.a(g,"(\\(.*\\))?\\s*\\B[-=]>",g,g,a0,A.b([A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,j,g,g,g,g,g,g,g,g,g)],a4),g,"[-=]>",g,g,g,g,g,g,g,g,g,g,g,!0,g,g,g,g,g,g)],a4),g,g,g,g,g,g,g,g,g,g,g,g,0,g,g,g,g,g,g,g),A.a(g,g,"class",g,"class",A.b([A.a(g,g,"extends",g,g,A.b([A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,a,g,g,g,g,g,g,g,g,g)],a4),g,g,g,g,!0,g,g,a1,g,g,g,g,g,g,g,g,g,g,g,g),A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,a,g,g,g,g,g,g,g,g,g)],a4),g,"$",g,g,g,g,g,a1,g,g,g,g,g,g,g,g,g,g,g,g),A.a(g,"[A-Za-z$_][0-9A-Za-z$_]*:",g,g,"name",g,g,":",g,g,g,g,g,g,g,g,g,g,0,!0,!0,g,g,g,g,g)],a4),g,g,g,g,g,g,g,"\\/\\*",a2,g,g,k,g,g,g,g,g,g,g,g)}) -s($,"beq","aTv",()=>{var q,p,o=null,n=t.N,m=A.l(["keyword","all alter analyze and any array as asc begin between binary boolean break bucket build by call case cast cluster collate collection commit connect continue correlate cover create database dataset datastore declare decrement delete derived desc describe distinct do drop each element else end every except exclude execute exists explain fetch first flatten for force from function grant group gsi having if ignore ilike in include increment index infer inline inner insert intersect into is join key keys keyspace known last left let letting like limit lsm map mapping matched materialized merge minus namespace nest not number object offset on option or order outer over parse partition password path pool prepare primary private privilege procedure public raw realm reduce rename return returning revoke right role rollback satisfies schema select self semi set show some start statistics string system then to transaction trigger truncate under union unique unknown unnest unset update upsert use user using validate value valued values via view when where while with within work xor","literal","true false null missing|5","built_in","array_agg array_append array_concat array_contains array_count array_distinct array_ifnull array_length array_max array_min array_position array_prepend array_put array_range array_remove array_repeat array_replace array_reverse array_sort array_sum avg count max min sum greatest least ifmissing ifmissingornull ifnull missingif nullif ifinf ifnan ifnanorinf naninf neginfif posinfif clock_millis clock_str date_add_millis date_add_str date_diff_millis date_diff_str date_part_millis date_part_str date_trunc_millis date_trunc_str duration_to_str millis str_to_millis millis_to_str millis_to_utc millis_to_zone_name now_millis now_str str_to_duration str_to_utc str_to_zone_name decode_json encode_json encoded_size poly_length base64 base64_encode base64_decode meta uuid abs acos asin atan atan2 ceil cos degrees e exp ln log floor pi power radians random round sign sin sqrt tan trunc object_length object_names object_pairs object_inner_pairs object_values object_inner_values object_add object_put object_remove object_unwrap regexp_contains regexp_like regexp_position regexp_replace contains initcap length lower ltrim position repeat replace rtrim split substr title trim upper isarray isatom isboolean isnumber isobject isstring type toarray toatom toboolean tonumber toobject tostring"],n,n),l=$.aZ(),k=t._,j=A.a(o,"'",o,o,"string",A.b([l],k),o,"'",o,o,o,o,o,o,o,o,o,o,0,o,o,o,o,o,o,o),i=A.a(o,'"',o,o,"string",A.b([l],k),o,'"',o,o,o,o,o,o,o,o,o,o,0,o,o,o,o,o,o,o) -l=A.a(o,"`",o,o,"symbol",A.b([l],k),o,"`",o,o,o,o,o,o,o,o,o,o,2,o,o,o,o,o,o,o) -q=$.bw() -p=$.b_() -return A.a(o,o,o,!0,o,A.b([A.a(o,o,"build create index delete drop explain infer|10 insert merge prepare select update upsert|10",o,o,A.b([j,i,l,q,p],k),o,";",o,o,!0,o,o,o,m,o,o,o,o,o,o,o,o,o,o,o),p],k),o,o,o,o,o,o,o,o,o,o,o,A.m(n,t.n),o,o,o,o,o,o,o,o)}) -s($,"bes","aTx",()=>{var q,p="~contains~2~contains~0~starts~contains~1~contains~1",o=null,n="[a-zA-Z_]\\w*",m=t._,l=t.N,k=A.l([p,A.a(o,o,o,o,"variable",o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,A.b([A.a(o,"\\$\\d+",o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o),A.a(o,"\\$\\{",o,o,o,o,o,"}",o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o),A.a(o,"[\\$\\@][a-zA-Z_]\\w*",o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o)],m))],l,t.n),j=A.b(["nginxconf"],t.s),i=$.ch(),h=A.a(o,"[a-zA-Z_]\\w*\\s+{",o,o,o,A.b([A.a(o,n,o,o,"section",o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o)],m),o,"{",o,o,o,o,o,o,o,o,o,o,0,!0,o,o,o,o,o,o) -l=A.l(["literal","on off yes no true false none blocked debug info notice warn error crit select break last permanent redirect kqueue rtsig epoll poll /dev/poll"],l,l) -q=$.aZ() -return A.a(j,o,o,o,o,A.b([i,h,A.a(o,"[a-zA-Z_]\\w*\\s",o,o,o,A.b([A.a(o,n,o,o,"attribute",o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,A.a(o,o,o,o,o,A.b([i,A.a(o,o,o,o,"string",A.b([q,A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,p,o,o,o,o,o,o,o,o,o)],m),o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,A.b([A.a(o,'"',o,o,o,o,o,'"',o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o),A.a(o,"'",o,o,o,o,o,"'",o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o)],m)),A.a(o,"([a-z]+):/",o,o,o,A.b([A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,p,o,o,o,o,o,o,o,o,o)],m),o,"\\s",o,o,!0,o,!0,o,o,o,o,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,"regexp",A.b([q,A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,p,o,o,o,o,o,o,o,o,o)],m),o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,A.b([A.a(o,"\\s\\^",o,o,o,o,o,"\\s|{|;",o,o,o,o,o,o,o,o,o,o,o,o,!0,o,o,o,o,o),A.a(o,"\\x7e\\*?\\s+",o,o,o,o,o,"\\s|{|;",o,o,o,o,o,o,o,o,o,o,o,o,!0,o,o,o,o,o),A.a(o,"\\*(\\.[a-z\\-]+)+",o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o),A.a(o,"([a-z\\-]+\\.)+\\*",o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o)],m)),A.a(o,"\\b\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}(:\\d{1,5})?\\b",o,o,"number",o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o),A.a(o,"\\b\\d+[kKmMgGdshdwy]*\\b",o,o,"number",o,o,o,o,o,o,o,o,o,o,o,o,o,0,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,p,o,o,o,o,o,o,o,o,o)],m),o,o,o,o,!0,o,o,"=>",l,"[a-z/_]+",o,o,0,o,o,o,o,o,o,o),o,o)],m),o,";|{",o,o,o,o,o,o,o,o,o,o,0,!0,o,o,o,o,o,o)],m),o,o,o,o,o,o,o,"[^\\s\\}]",o,o,o,k,o,o,o,o,o,o,o,o)}) -s($,"bet","aTy",()=>{var q=null,p=t.N,o=A.b(["nim"],t.s),n=A.l(["keyword","addr and as asm bind block break case cast const continue converter discard distinct div do elif else end enum except export finally for from generic if import in include interface is isnot iterator let macro method mixin mod nil not notin object of or out proc ptr raise ref return shl shr static template try tuple type using var when while with without xor yield","literal","shared guarded stdin stdout stderr result true false","built_in","int int8 int16 int32 int64 uint uint8 uint16 uint32 uint64 float float32 float64 bool char string cstring pointer expr stmt void auto any range array openarray varargs seq set clong culong cchar cschar cshort cint csize clonglong cfloat cdouble clongdouble cuchar cushort cuint culonglong cstringarray semistatic"],p,p),m=t._ -return A.a(o,q,q,q,q,A.b([A.a(q,"{\\.",q,q,"meta",q,q,"\\.}",q,q,q,q,q,q,q,q,q,q,10,q,q,q,q,q,q,q),A.a(q,'[a-zA-Z]\\w*"',q,q,"string",A.b([A.a(q,'""',q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],m),q,'"',q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,'([a-zA-Z]\\w*)?"""',q,q,"string",q,q,'"""',q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),$.aM(),A.a(q,"\\b[A-Z]\\w+\\b",q,q,"type",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q),A.a(q,q,q,q,"number",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,A.b([A.a(q,"\\b(0[xX][0-9a-fA-F][_0-9a-fA-F]*)('?[iIuU](8|16|32|64))?",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\b(0o[0-7][_0-7]*)('?[iIuUfF](8|16|32|64))?",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\b(0(b|B)[01][_01]*)('?[iIuUfF](8|16|32|64))?",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\b(\\d[_\\d]*)('?[iIuUfF](8|16|32|64))?",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],m)),$.ch()],m),q,q,q,q,q,q,q,q,n,q,q,A.m(p,t.n),q,q,q,q,q,q,q,q)}) -s($,"beu","aTz",()=>{var q="~contains~3~contains~0~contains~4",p=null,o="~contains~3",n="rec with let in inherit assert if else then",m="true false or and null",l="import abort baseNameOf dirOf isNull builtins map removeAttrs throw toString derivation",k=t._,j=A.a(p,"[a-zA-Z0-9-_]+(\\s*=)",p,p,p,A.b([A.a(p,"\\S+",p,p,"attr",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p)],k),p,p,p,p,p,p,p,p,p,p,p,p,0,!0,p,p,p,p,p,p),i=t.N,h=A.l(["keyword",n,"literal",m,"built_in",l],i,i),g=$.dB(),f=$.ch(),e=$.b_() -h=A.l([q,j,"~contains~3",A.a(p,p,p,p,"string",A.b([A.a(p,"\\$\\{",p,p,"subst",A.b([g,f,e,A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,o,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,q,p,p,p,p,p,p,p,p,p)],k),p,"}",p,p,p,p,p,p,h,p,p,p,p,p,p,p,p,p,p,p)],k),p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,A.b([A.a(p,"''",p,p,p,p,p,"''",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,'"',p,p,p,p,p,'"',p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p)],k))],i,t.n) -j=A.b(["nixos"],t.s) -i=A.l(["keyword",n,"literal",m,"built_in",l],i,i) -return A.a(j,p,p,p,p,A.b([g,f,e,A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,o,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,q,p,p,p,p,p,p,p,p,p)],k),p,p,p,p,p,p,p,p,i,p,p,h,p,p,p,p,p,p,p,p)}) -s($,"bew","aTB",()=>{var q,p,o,n,m,l,k="~contains~4~contains~4",j="variable",i=null,h="~contains~4~contains~3",g="~contains~4~contains~2",f=t.N,e=A.l([k,A.a(i,"\\$+\\([\\w\\^\\.:-]+\\)",i,i,j,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i),h,A.a(i,"\\$+\\w+",i,i,j,i,i,i,i,i,i,i,i,"\\(\\){}",i,i,i,i,i,i,i,i,i,i,i,i),g,A.a(i,"\\$+{[\\w\\.:-]+}",i,i,j,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i)],f,t.n) -f=A.l(["keyword","Abort AddBrandingImage AddSize AllowRootDirInstall AllowSkipFiles AutoCloseWindow BGFont BGGradient BrandingText BringToFront Call CallInstDLL Caption ChangeUI CheckBitmap ClearErrors CompletedText ComponentText CopyFiles CRCCheck CreateDirectory CreateFont CreateShortCut Delete DeleteINISec DeleteINIStr DeleteRegKey DeleteRegValue DetailPrint DetailsButtonText DirText DirVar DirVerify EnableWindow EnumRegKey EnumRegValue Exch Exec ExecShell ExecShellWait ExecWait ExpandEnvStrings File FileBufSize FileClose FileErrorText FileOpen FileRead FileReadByte FileReadUTF16LE FileReadWord FileSeek FileWrite FileWriteByte FileWriteUTF16LE FileWriteWord FindClose FindFirst FindNext FindWindow FlushINI FunctionEnd GetCurInstType GetCurrentAddress GetDlgItem GetDLLVersion GetDLLVersionLocal GetErrorLevel GetFileTime GetFileTimeLocal GetFullPathName GetFunctionAddress GetInstDirError GetLabelAddress GetTempFileName Goto HideWindow Icon IfAbort IfErrors IfFileExists IfRebootFlag IfSilent InitPluginsDir InstallButtonText InstallColors InstallDir InstallDirRegKey InstProgressFlags InstType InstTypeGetText InstTypeSetText Int64Cmp Int64CmpU Int64Fmt IntCmp IntCmpU IntFmt IntOp IntPtrCmp IntPtrCmpU IntPtrOp IsWindow LangString LicenseBkColor LicenseData LicenseForceSelection LicenseLangString LicenseText LoadLanguageFile LockWindow LogSet LogText ManifestDPIAware ManifestSupportedOS MessageBox MiscButtonText Name Nop OutFile Page PageCallbacks PageExEnd Pop Push Quit ReadEnvStr ReadINIStr ReadRegDWORD ReadRegStr Reboot RegDLL Rename RequestExecutionLevel ReserveFile Return RMDir SearchPath SectionEnd SectionGetFlags SectionGetInstTypes SectionGetSize SectionGetText SectionGroupEnd SectionIn SectionSetFlags SectionSetInstTypes SectionSetSize SectionSetText SendMessage SetAutoClose SetBrandingImage SetCompress SetCompressor SetCompressorDictSize SetCtlColors SetCurInstType SetDatablockOptimize SetDateSave SetDetailsPrint SetDetailsView SetErrorLevel SetErrors SetFileAttributes SetFont SetOutPath SetOverwrite SetRebootFlag SetRegView SetShellVarContext SetSilent ShowInstDetails ShowUninstDetails ShowWindow SilentInstall SilentUnInstall Sleep SpaceTexts StrCmp StrCmpS StrCpy StrLen SubCaption Unicode UninstallButtonText UninstallCaption UninstallIcon UninstallSubCaption UninstallText UninstPage UnRegDLL Var VIAddVersionKey VIFileVersion VIProductVersion WindowIcon WriteINIStr WriteRegBin WriteRegDWORD WriteRegExpandStr WriteRegMultiStr WriteRegNone WriteRegStr WriteUninstaller XPStyle","literal","admin all auto both bottom bzip2 colored components current custom directory false force hide highest ifdiff ifnewer instfiles lastused leave left license listonly lzma nevershow none normal notset off on open print right show silent silentlog smooth textonly top true try un.components un.custom un.directory un.instfiles un.license uninstConfirm user Win10 Win7 Win8 WinVista zlib"],f,f) -q=$.ch() -p=$.b_() -o=t._ -n=A.a(i,";",i,i,"comment",A.b([$.aq(),A.a(i,"(?:TODO|FIXME|NOTE|BUG|XXX):",i,i,"doctag",i,i,i,i,i,i,i,i,i,i,i,i,i,0,i,i,i,i,i,i,i)],o),i,"$",i,i,i,i,i,i,i,i,i,i,0,i,i,i,i,i,i,i) -m=A.a(i,i,"Function PageEx Section SectionGroup",i,"function",i,i,"$",i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i) -l=A.b([A.a(i,'"',i,i,i,i,i,'"',i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i),A.a(i,"'",i,i,i,i,i,"'",i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i),A.a(i,"`",i,i,i,i,i,"`",i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i)],o) -return A.a(i,i,i,!1,i,A.b([q,p,n,m,A.a(i,i,i,i,"string",A.b([A.a(i,"\\$(\\\\[nrt]|\\$)",i,i,"meta",i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i),A.a(i,"\\$(ADMINTOOLS|APPDATA|CDBURN_AREA|CMDLINE|COMMONFILES32|COMMONFILES64|COMMONFILES|COOKIES|DESKTOP|DOCUMENTS|EXEDIR|EXEFILE|EXEPATH|FAVORITES|FONTS|HISTORY|HWNDPARENT|INSTDIR|INTERNET_CACHE|LANGUAGE|LOCALAPPDATA|MUSIC|NETHOOD|OUTDIR|PICTURES|PLUGINSDIR|PRINTHOOD|PROFILE|PROGRAMFILES32|PROGRAMFILES64|PROGRAMFILES|QUICKLAUNCH|RECENT|RESOURCES_LOCALIZED|RESOURCES|SENDTO|SMPROGRAMS|SMSTARTUP|STARTMENU|SYSDIR|TEMP|TEMPLATES|VIDEOS|WINDIR)",i,i,j,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i),A.a(i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,g,i,i,i,i,i,i,i,i,i),A.a(i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,h,i,i,i,i,i,i,i,i,i),A.a(i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,k,i,i,i,i,i,i,i,i,i)],o),i,i,i,i,i,i,i,"\\n",i,i,i,i,i,i,i,i,i,i,i,l),A.a(i,"\\!(addincludedir|addplugindir|appendfile|cd|define|delfile|echo|else|endif|error|execute|finalize|getdllversion|gettlbversion|if|ifdef|ifmacrodef|ifmacrondef|ifndef|include|insertmacro|macro|macroend|makensis|packhdr|searchparse|searchreplace|system|tempfile|undef|verbose|warning)",i,i,"keyword",i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i),A.a(i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,g,i,i,i,i,i,i,i,i,i),A.a(i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,h,i,i,i,i,i,i,i,i,i),A.a(i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,k,i,i,i,i,i,i,i,i,i),A.a(i,"(ARCHIVE|FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_NORMAL|FILE_ATTRIBUTE_OFFLINE|FILE_ATTRIBUTE_READONLY|FILE_ATTRIBUTE_SYSTEM|FILE_ATTRIBUTE_TEMPORARY|HKCR|HKCU|HKDD|HKEY_CLASSES_ROOT|HKEY_CURRENT_CONFIG|HKEY_CURRENT_USER|HKEY_DYN_DATA|HKEY_LOCAL_MACHINE|HKEY_PERFORMANCE_DATA|HKEY_USERS|HKLM|HKPD|HKU|IDABORT|IDCANCEL|IDIGNORE|IDNO|IDOK|IDRETRY|IDYES|MB_ABORTRETRYIGNORE|MB_DEFBUTTON1|MB_DEFBUTTON2|MB_DEFBUTTON3|MB_DEFBUTTON4|MB_ICONEXCLAMATION|MB_ICONINFORMATION|MB_ICONQUESTION|MB_ICONSTOP|MB_OK|MB_OKCANCEL|MB_RETRYCANCEL|MB_RIGHT|MB_RTLREADING|MB_SETFOREGROUND|MB_TOPMOST|MB_USERICON|MB_YESNO|NORMAL|OFFLINE|READONLY|SHCTX|SHELL_CONTEXT|SYSTEM|TEMPORARY)",i,i,"params",i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i),A.a(i,"\\w+\\:\\:\\w+",i,i,"class",i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i),$.dB()],o),i,i,i,i,i,i,i,i,f,i,i,e,i,i,i,i,i,i,i,i)}) -s($,"bey","aTC",()=>{var q="[a-zA-Z@][a-zA-Z0-9_]*",p=null,o="meta-string",n=t.N,m=A.b(["mm","objc","obj-c"],t.s),l=A.l(["keyword","int float while char export sizeof typedef const struct for union unsigned long volatile static bool mutable if do return goto void enum else break extern asm case short default double register explicit signed typename this switch continue wchar_t inline readonly assign readwrite self @synchronized id typeof nonatomic super unichar IBOutlet IBAction strong weak copy in out inout bycopy byref oneway __strong __weak __block __autoreleasing @private @protected @public @try @property @end @throw @catch @finally @autoreleasepool @synthesize @dynamic @selector @optional @required @encode @package @import @defs @compatibility_alias __bridge __bridge_transfer __bridge_retained __bridge_retain __covariant __contravariant __kindof _Nonnull _Nullable _Null_unspecified __FUNCTION__ __PRETTY_FUNCTION__ __attribute__ getter setter retain unsafe_unretained nonnull nullable null_unspecified null_resettable class instancetype NS_DESIGNATED_INITIALIZER NS_UNAVAILABLE NS_REQUIRES_SUPER NS_RETURNS_INNER_POINTER NS_INLINE NS_AVAILABLE NS_DEPRECATED NS_ENUM NS_OPTIONS NS_SWIFT_UNAVAILABLE NS_ASSUME_NONNULL_BEGIN NS_ASSUME_NONNULL_END NS_REFINED_FOR_SWIFT NS_SWIFT_NAME NS_SWIFT_NOTHROW NS_DURING NS_HANDLER NS_ENDHANDLER NS_VALUERETURN NS_VOIDRETURN","literal","false true FALSE TRUE nil YES NO NULL","built_in","BOOL dispatch_once_t dispatch_queue_t dispatch_sync dispatch_async dispatch_once"],n,n),k=A.a(p,"\\b(AV|CA|CF|CG|CI|CL|CM|CN|CT|MK|MP|MTK|MTL|NS|SCN|SK|UI|WK|XC)\\w+",p,p,"built_in",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),j=$.ba(),i=$.b_(),h=$.bw(),g=$.aM(),f=$.c0(),e=$.aZ(),d=t._,c=A.a(p,p,p,p,"string",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,A.b([A.a(p,'@"',p,p,p,A.b([e],d),p,'"',p,p,p,p,p,"\\n",p,p,p,p,p,p,p,p,p,p,p,p)],d)),b=A.l(["meta-keyword","if else elif endif define undef warning error line pragma ifdef ifndef include"],n,n) -return A.a(m,p,p,p,p,A.b([k,j,i,h,g,f,c,A.a(p,"#\\s*[a-z]+\\b",p,p,"meta",A.b([A.a(p,"\\\\\\n",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p),A.a(p,'"',p,p,o,A.b([e],d),p,'"',p,p,p,p,p,"\\n",p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"<.*?>",p,p,o,p,p,"$",p,p,p,p,p,"\\n",p,p,p,p,p,p,p,p,p,p,p,p),j,i],d),p,"$",p,p,p,p,p,p,b,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"(@interface|@class|@protocol|@implementation)\\b",p,p,"class",A.b([$.dU()],d),p,"({|$)",p,p,p,p,!0,p,"@interface @class @protocol @implementation",q,p,p,p,p,p,p,p,p,p,p),A.a(p,"\\.[a-zA-Z_]\\w*",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p)],d),p,p,p,p,p,p,p,"{var q=null,p=t.N,o=A.b(["ml"],t.s),n=A.l(["keyword","and as assert asr begin class constraint do done downto else end exception external for fun function functor if in include inherit! inherit initializer land lazy let lor lsl lsr lxor match method!|10 method mod module mutable new object of open! open or private rec sig struct then to try type val! val virtual when while with parser value","built_in","array bool bytes char exn|5 float int int32 int64 list lazy_t|5 nativeint|5 string unit in_channel out_channel ref","literal","true false"],p,p),m=A.a(q,"\\[(\\|\\|)?\\]|\\(\\)",q,q,"literal",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q),l=t._,k=A.a(q,"\\(\\*",q,q,"comment",A.b([A.a(q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,!0,q,q,q,q),$.aq(),A.a(q,"(?:TODO|FIXME|NOTE|BUG|XXX):",q,q,"doctag",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q)],l),q,"\\*\\)",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),j=A.a(q,"'[A-Za-z_](?!')[\\w']*",q,q,"symbol",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),i=A.a(q,"`[A-Z][\\w']*",q,q,"type",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),h=A.a(q,"\\b[A-Z][\\w']*",q,q,"type",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q),g=A.a(q,"[a-z_]\\w*'[\\w']*",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q),f=$.aZ() -return A.a(o,q,q,q,q,A.b([m,k,j,i,h,g,A.a(q,"'",q,q,"string",A.b([f],l),q,"'",q,q,q,q,q,"\\n",q,q,q,q,0,q,q,q,q,q,q,q),A.a(q,'"',q,q,"string",A.b([f],l),q,'"',q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,u.a,q,q,"number",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q),A.a(q,"[-=]>",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],l),q,q,q,q,q,q,q,"\\/\\/|>>",n,"[a-z_]\\w*!?",q,A.m(p,t.n),q,q,q,q,q,q,q,q)}) -s($,"beA","aTE",()=>{var q="~contains~5",p=null,o="~contains~4",n="~contains~2",m=t._,l=t.N,k=A.l(["~contains~5",A.a(p,"\\$(f[asn]|t|vp[rtd]|children)",p,p,"keyword",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),"~contains~4",A.a(p,'"',p,p,"string",A.b([$.aZ()],m),p,'"',p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),"~contains~2",A.a(p,"\\b\\d+(\\.\\d+)?(e-?\\d+)?",p,p,"number",p,p,p,p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p)],l,t.n),j=A.b(["scad"],t.s),i=A.l(["keyword","function module include use for intersection_for if else \\%","literal","false true PI undef","built_in","circle square polygon text sphere cube cylinder polyhedron translate rotate scale resize mirror multmatrix color offset hull minkowski union difference intersection abs sign sin cos tan acos asin atan atan2 floor round ceil ln log pow sqrt exp rands min max concat lookup str chr search version version_num norm cross parent_module echo import import_dxf dxf_linear_extrude linear_extrude rotate_extrude surface projection render children dxf_cross dxf_dim let assign"],l,l) -return A.a(j,p,p,p,p,A.b([$.ba(),$.b_(),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,n,p,p,p,p,p,p,p,p,p),A.a(p,"include|use <",p,p,"meta",p,p,">",p,p,p,p,p,p,A.l(["meta-keyword","include use"],l,l),p,p,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,o,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,q,p,p,p,p,p,p,p,p,p),A.a(p,"[*!#%]",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p),A.a(p,p,"module function",p,"function",A.b([A.a(p,"\\(",p,p,"params",A.b([A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,!0,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,n,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,o,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,q,p,p,p,p,p,p,p,p,p),A.a(p,"false|true|PI|undef",p,p,"literal",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p)],m),p,"\\)",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),$.dU()],m),p,"\\=|\\{",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p)],m),p,p,p,p,p,p,p,p,i,p,p,k,p,p,p,p,p,p,p,p)}) -s($,"beB","aTF",()=>{var q="~contains~6",p="abstract add and array as asc aspect assembly async begin break block by case class concat const copy constructor continue create default delegate desc distinct div do downto dynamic each else empty end ensure enum equals event except exit extension external false final finalize finalizer finally flags for forward from function future global group has if implementation implements implies in index inherited inline interface into invariants is iterator join locked locking loop matching method mod module namespace nested new nil not notify nullable of old on operator or order out override parallel params partial pinned private procedure property protected public queryable raise read readonly record reintroduce remove repeat require result reverse sealed select self sequence set shl shr skip static step soft take then to true try tuple type union unit unsafe until uses using var virtual raises volatile where while with write xor yield await mapped deprecated stdcall cdecl pascal register safecall overload library platform reference packed strict published autoreleasepool selector strong weak unretained",o="~contains~3",n=null,m="~contains~4",l="~contains~0",k="~contains~1",j="(?:TODO|FIXME|NOTE|BUG|XXX):",i=t._,h=A.a(n,n,"function constructor destructor procedure method",n,"function",A.b([$.jk(),A.a(n,"\\(",n,n,"params",A.b([A.a(n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,o,n,n,n,n,n,n,n,n,n),A.a(n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,m,n,n,n,n,n,n,n,n,n)],i),n,"\\)",n,n,n,n,n,n,p,n,n,n,n,n,n,n,n,n,n,n),A.a(n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,l,n,n,n,n,n,n,n,n,n),A.a(n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,k,n,n,n,n,n,n,n,n,n)],i),n,"[:;]",n,n,n,n,n,n,"function constructor|10 destructor|10 procedure|10 method|10",n,n,n,n,n,n,n,n,n,n,n),g=A.a(n,"(#\\d+)+",n,n,"string",n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n),f=A.a(n,"'",n,n,"string",A.b([A.a(n,"''",n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n)],i),n,"'",n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n),e=$.aq() -e=A.l(["~contains~6",h,"~contains~4",g,"~contains~3",f,"~contains~1",A.a(n,"\\(\\*",n,n,"comment",A.b([e,A.a(n,j,n,n,"doctag",n,n,n,n,n,n,n,n,n,n,n,n,n,0,n,n,n,n,n,n,n)],i),n,"\\*\\)",n,n,n,n,n,n,n,n,n,n,10,n,n,n,n,n,n,n),"~contains~0",A.a(n,"{",n,n,"comment",A.b([e,A.a(n,j,n,n,"doctag",n,n,n,n,n,n,n,n,n,n,n,n,n,0,n,n,n,n,n,n,n)],i),n,"}",n,n,n,n,n,n,n,n,n,n,0,n,n,n,n,n,n,n)],t.N,t.n) -f=A.a(n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,l,n,n,n,n,n,n,n,n,n) -g=A.a(n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,k,n,n,n,n,n,n,n,n,n) -h=$.ba() -return A.a(n,n,n,!0,n,A.b([f,g,h,A.a(n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,o,n,n,n,n,n,n,n,n,n),A.a(n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,m,n,n,n,n,n,n,n,n,n),$.dB(),A.a(n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,q,n,n,n,n,n,n,n,n,n),A.a(n,"=\\bclass\\b",n,n,"class",A.b([A.a(n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,o,n,n,n,n,n,n,n,n,n),A.a(n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,m,n,n,n,n,n,n,n,n,n),A.a(n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,l,n,n,n,n,n,n,n,n,n),A.a(n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,k,n,n,n,n,n,n,n,n,n),h,A.a(n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,q,n,n,n,n,n,n,n,n,n)],i),n,"end;",n,n,n,n,n,n,p,n,n,n,n,n,n,n,n,n,n,n)],i),n,n,n,n,n,n,n,'("|\\$[G-Zg-z]|\\/\\*||->)',p,"\\.?\\w+",n,e,n,n,n,n,n,n,n,n)}) -s($,"beC","aTG",()=>{var q="comment",p="doctag",o="(?:TODO|FIXME|NOTE|BUG|XXX):",n=null,m=A.b(["xml"],t.s),l=$.aq(),k=t._ -return A.a(n,n,n,n,n,A.b([A.a(n,"^#",n,n,q,A.b([l,A.a(n,o,n,n,p,n,n,n,n,n,n,n,n,n,n,n,n,n,0,n,n,n,n,n,n,n)],k),n,"$",n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n),A.a(n,"\\^rem{",n,n,q,A.b([A.a(n,"{",n,n,q,A.b([A.a(n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,!0,n,n,n,n),l,A.a(n,o,n,n,p,n,n,n,n,n,n,n,n,n,n,n,n,n,0,n,n,n,n,n,n,n)],k),n,"}",n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n),l,A.a(n,o,n,n,p,n,n,n,n,n,n,n,n,n,n,n,n,n,0,n,n,n,n,n,n,n)],k),n,"}",n,n,n,n,n,n,n,n,n,n,10,n,n,n,n,n,n,n),A.a(n,"^@(?:BASE|USE|CLASS|OPTIONS)$",n,n,"meta",n,n,n,n,n,n,n,n,n,n,n,n,n,10,n,n,n,n,n,n,n),A.a(n,"@[\\w\\-]+\\[[\\w^;\\-]*\\](?:\\[[\\w^;\\-]*\\])?(?:.*)$",n,n,"title",n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n),A.a(n,"\\$\\{?[\\w\\-\\.\\:]+\\}?",n,n,"variable",n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n),A.a(n,"\\^[\\w\\-\\.\\:]+",n,n,"keyword",n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n),A.a(n,"\\^#[0-9a-fA-F]+",n,n,"number",n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n),$.bw()],k),n,n,n,n,n,n,n,n,n,n,n,A.m(t.N,t.n),0,n,n,n,n,n,m,n)}) -s($,"beD","aTH",()=>{var q,p,o,n,m,l="~contains~3~contains~4~contains~1~contains~9",k=null,j="~contains~3~contains~4~contains~1~contains~8",i="~contains~3~contains~4~contains~1~contains~7",h="~contains~3~contains~4~contains~1~contains~6",g="~contains~3~contains~4~contains~1~contains~5",f="~contains~3~contains~4",e="getpwent getservent quotemeta msgrcv scalar kill dbmclose undef lc ma syswrite tr send umask sysopen shmwrite vec qx utime local oct semctl localtime readpipe do return format read sprintf dbmopen pop getpgrp not getpwnam rewinddir qqfileno qw endprotoent wait sethostent bless s|0 opendir continue each sleep endgrent shutdown dump chomp connect getsockname die socketpair close flock exists index shmgetsub for endpwent redo lstat msgctl setpgrp abs exit select print ref gethostbyaddr unshift fcntl syscall goto getnetbyaddr join gmtime symlink semget splice x|0 getpeername recv log setsockopt cos last reverse gethostbyname getgrnam study formline endhostent times chop length gethostent getnetent pack getprotoent getservbyname rand mkdir pos chmod y|0 substr endnetent printf next open msgsnd readdir use unlink getsockopt getpriority rindex wantarray hex system getservbyport endservent int chr untie rmdir prototype tell listen fork shmread ucfirst setprotoent else sysseek link getgrgid shmctl waitpid unpack getnetbyname reset chdir grep split require caller lcfirst until warn while values shift telldir getpwuid my getprotobynumber delete and sort uc defined srand accept package seekdir getprotobyname semop our rename seek if q|0 chroot sysread setpwent no crypt getc chown sqrt write setnetent setpriority foreach tie sin msgget map stat getlogin unless elsif truncate exec keys glob tied closedirioctl socket readlink eval xor readline binmode setservent eof ord bind alarm pipe atan2 getgrent exp time push setgrent gt lt or ne m|0 break given say state when",d="~contains~0",c="~contains~2",b="~contains~3",a=t.s,a0=A.b(["mojolicious"],a),a1=t._ -a0=A.a(k,"^__DATA__$",k,k,k,A.b([A.a(k,"^@@.*",k,k,"comment",k,k,"$",k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k)],a1),k,"^__END__$",k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,a0,k) -q=A.a(k,"-\\w\\b",k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,0,k,k,k,k,k,k,k) -p=A.a(k,k,"sub",k,"function",A.b([$.jk()],a1),k,"(\\s*\\(.*?\\))?[;{]",k,k,k,k,!0,k,k,k,k,k,5,k,k,k,k,k,k,k) -o=$.ch() -n=A.a(k,"(s|tr|y)/(\\\\.|[^/])*/(\\\\.|[^/])*/[a-z]*",k,k,"regexp",k,k,k,k,k,k,k,k,k,k,k,k,k,10,k,k,k,k,k,k,k) -m=$.aZ() -m=A.l([l,a0,j,q,i,p,h,A.a(k,"(\\/\\/|!|!=|!==|%|%=|&|&&|&=|\\*|\\*=|\\+|\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\?|\\[|\\{|\\(|\\^|\\^=|\\||\\|=|\\|\\||\\x7e|\\b(split|return|print|reverse|grep)\\b)\\s*",k,k,k,A.b([o,n,A.a(k,"(m|qr)?/",k,k,"regexp",A.b([m],a1),k,"/[a-z]*",k,k,k,k,k,k,k,k,k,k,0,k,k,k,k,k,k,k)],a1),k,k,k,k,k,k,k,k,"split return print reverse grep",k,k,k,0,k,k,k,k,k,k,k),g,A.a(k,u.K,k,k,"number",k,k,k,k,k,k,k,k,k,k,k,k,k,0,k,k,k,k,k,k,k),f,A.a(k,k,k,k,"string",A.b([m,A.a(k,"[$@]\\{",k,k,"subst",A.b([A.a(k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,d,k,k,k,k,k,k,k,k,k),o,A.a(k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,c,k,k,k,k,k,k,k,k,k),A.a(k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,b,k,k,k,k,k,k,k,k,k),A.a(k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,f,k,k,k,k,k,k,k,k,k),A.a(k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,g,k,k,k,k,k,k,k,k,k),A.a(k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,h,k,k,k,k,k,k,k,k,k),A.a(k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,i,k,k,k,k,k,k,k,k,k),A.a(k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,j,k,k,k,k,k,k,k,k,k),A.a(k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,l,k,k,k,k,k,k,k,k,k)],a1),k,"\\}",k,k,k,k,k,k,e,k,k,k,k,k,k,k,k,k,k,k),A.a(k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,d,k,k,k,k,k,k,k,k,k)],a1),k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,A.b([A.a(k,"q[qwxr]?\\s*\\(",k,k,k,k,k,"\\)",k,k,k,k,k,k,k,k,k,k,5,k,k,k,k,k,k,k),A.a(k,"q[qwxr]?\\s*\\[",k,k,k,k,k,"\\]",k,k,k,k,k,k,k,k,k,k,5,k,k,k,k,k,k,k),A.a(k,"q[qwxr]?\\s*\\{",k,k,k,k,k,"\\}",k,k,k,k,k,k,k,k,k,k,5,k,k,k,k,k,k,k),A.a(k,"q[qwxr]?\\s*\\|",k,k,k,k,k,"\\|",k,k,k,k,k,k,k,k,k,k,5,k,k,k,k,k,k,k),A.a(k,"q[qwxr]?\\s*\\<",k,k,k,k,k,"\\>",k,k,k,k,k,k,k,k,k,k,5,k,k,k,k,k,k,k),A.a(k,"qw\\s+q",k,k,k,k,k,"q",k,k,k,k,k,k,k,k,k,k,5,k,k,k,k,k,k,k),A.a(k,"'",k,k,k,A.b([m],a1),k,"'",k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k),A.a(k,'"',k,k,k,k,k,'"',k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k),A.a(k,"`",k,k,k,A.b([m],a1),k,"`",k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k),A.a(k,"{\\w+}",k,k,k,A.b([],a1),k,k,k,k,k,k,k,k,k,k,k,k,0,k,k,k,k,k,k,k),A.a(k,"-?\\w+\\s*\\=\\>",k,k,k,A.b([],a1),k,k,k,k,k,k,k,k,k,k,k,k,0,k,k,k,k,k,k,k)],a1)),"~contains~3",A.a(k,"->{",k,k,k,A.b([A.a(k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,d,k,k,k,k,k,k,k,k,k),o,A.a(k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,c,k,k,k,k,k,k,k,k,k),A.a(k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,b,k,k,k,k,k,k,k,k,k),A.a(k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,f,k,k,k,k,k,k,k,k,k),A.a(k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,g,k,k,k,k,k,k,k,k,k),A.a(k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,h,k,k,k,k,k,k,k,k,k),A.a(k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,i,k,k,k,k,k,k,k,k,k),A.a(k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,j,k,k,k,k,k,k,k,k,k),A.a(k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,l,k,k,k,k,k,k,k,k,k)],a1),k,"}",k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k),"~contains~2",A.a(k,"^\\=\\w",k,k,"comment",A.b([$.aq(),A.a(k,"(?:TODO|FIXME|NOTE|BUG|XXX):",k,k,"doctag",k,k,k,k,k,k,k,k,k,k,k,k,k,0,k,k,k,k,k,k,k)],a1),k,"\\=cut",k,k,!0,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k),"~contains~0",A.a(k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,A.b([A.a(k,"\\$\\d",k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k),A.a(k,"[\\$%@](\\^\\w\\b|#\\w+(::\\w+)*|{\\w+}|\\w+(::\\w*)*)",k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k),A.a(k,"[\\$%@][^\\s\\w{]",k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,0,k,k,k,k,k,k,k)],a1))],t.N,t.n) -return A.a(A.b(["pl","pm"],a),k,k,k,k,A.b([A.a(k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,d,k,k,k,k,k,k,k,k,k),o,A.a(k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,c,k,k,k,k,k,k,k,k,k),A.a(k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,b,k,k,k,k,k,k,k,k,k),A.a(k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,f,k,k,k,k,k,k,k,k,k),A.a(k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,g,k,k,k,k,k,k,k,k,k),A.a(k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,h,k,k,k,k,k,k,k,k,k),A.a(k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,i,k,k,k,k,k,k,k,k,k),A.a(k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,j,k,k,k,k,k,k,k,k,k),A.a(k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,l,k,k,k,k,k,k,k,k,k)],a1),k,k,k,k,k,k,k,k,e,"[\\w\\.]+",k,m,k,k,k,k,k,k,k,k)}) -s($,"beE","aTI",()=>{var q="variable",p=null,o=t.N,n=A.b(["pf.conf"],t.s),m=A.l(["built_in","block match pass load anchor|5 antispoof|10 set table","keyword","in out log quick on rdomain inet inet6 proto from port os to routeallow-opts divert-packet divert-reply divert-to flags group icmp-typeicmp6-type label once probability recieved-on rtable prio queuetos tag tagged user keep fragment for os dropaf-to|10 binat-to|10 nat-to|10 rdr-to|10 bitmask least-stats random round-robinsource-hash static-portdup-to reply-to route-toparent bandwidth default min max qlimitblock-policy debug fingerprints hostid limit loginterface optimizationreassemble ruleset-optimization basic none profile skip state-defaultsstate-policy timeoutconst counters persistno modulate synproxy state|5 floating if-bound no-sync pflow|10 sloppysource-track global rule max-src-nodes max-src-states max-src-connmax-src-conn-rate overload flushscrub|5 max-mss min-ttl no-df|10 random-id","literal","all any no-route self urpf-failed egress|5 unknown"],o,o) -return A.a(n,p,p,p,p,A.b([$.ch(),$.dB(),$.aM(),A.a(p,"\\$[\\w\\d#@][\\w\\d_]*",p,p,q,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"<(?!\\/)",p,p,q,p,p,">",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p)],t._),p,p,p,p,p,p,p,p,m,"[a-z0-9_<>-]+",p,A.m(o,t.n),p,p,p,p,p,p,p,p)}) -s($,"beF","aTJ",()=>{var q=null,p="type",o=t.N,n=t.s,m=A.b(["postgres","postgresql"],n),l=A.l(["keyword","ABORT ALTER ANALYZE BEGIN CALL CHECKPOINT|10 CLOSE CLUSTER COMMENT COMMIT COPY CREATE DEALLOCATE DECLARE DELETE DISCARD DO DROP END EXECUTE EXPLAIN FETCH GRANT IMPORT INSERT LISTEN LOAD LOCK MOVE NOTIFY PREPARE REASSIGN|10 REFRESH REINDEX RELEASE RESET REVOKE ROLLBACK SAVEPOINT SECURITY SELECT SET SHOW START TRUNCATE UNLISTEN|10 UPDATE VACUUM|10 VALUES AGGREGATE COLLATION CONVERSION|10 DATABASE DEFAULT PRIVILEGES DOMAIN TRIGGER EXTENSION FOREIGN WRAPPER|10 TABLE FUNCTION GROUP LANGUAGE LARGE OBJECT MATERIALIZED VIEW OPERATOR CLASS FAMILY POLICY PUBLICATION|10 ROLE RULE SCHEMA SEQUENCE SERVER STATISTICS SUBSCRIPTION SYSTEM TABLESPACE CONFIGURATION DICTIONARY PARSER TEMPLATE TYPE USER MAPPING PREPARED ACCESS METHOD CAST AS TRANSFORM TRANSACTION OWNED TO INTO SESSION AUTHORIZATION INDEX PROCEDURE ASSERTION ALL ANALYSE AND ANY ARRAY ASC ASYMMETRIC|10 BOTH CASE CHECK COLLATE COLUMN CONCURRENTLY|10 CONSTRAINT CROSS DEFERRABLE RANGE DESC DISTINCT ELSE EXCEPT FOR FREEZE|10 FROM FULL HAVING ILIKE IN INITIALLY INNER INTERSECT IS ISNULL JOIN LATERAL LEADING LIKE LIMIT NATURAL NOT NOTNULL NULL OFFSET ON ONLY OR ORDER OUTER OVERLAPS PLACING PRIMARY REFERENCES RETURNING SIMILAR SOME SYMMETRIC TABLESAMPLE THEN TRAILING UNION UNIQUE USING VARIADIC|10 VERBOSE WHEN WHERE WINDOW WITH BY RETURNS INOUT OUT SETOF|10 IF STRICT CURRENT CONTINUE OWNER LOCATION OVER PARTITION WITHIN BETWEEN ESCAPE EXTERNAL INVOKER DEFINER WORK RENAME VERSION CONNECTION CONNECT TABLES TEMP TEMPORARY FUNCTIONS SEQUENCES TYPES SCHEMAS OPTION CASCADE RESTRICT ADD ADMIN EXISTS VALID VALIDATE ENABLE DISABLE REPLICA|10 ALWAYS PASSING COLUMNS PATH REF VALUE OVERRIDING IMMUTABLE STABLE VOLATILE BEFORE AFTER EACH ROW PROCEDURAL ROUTINE NO HANDLER VALIDATOR OPTIONS STORAGE OIDS|10 WITHOUT INHERIT DEPENDS CALLED INPUT LEAKPROOF|10 COST ROWS NOWAIT SEARCH UNTIL ENCRYPTED|10 PASSWORD CONFLICT|10 INSTEAD INHERITS CHARACTERISTICS WRITE CURSOR ALSO STATEMENT SHARE EXCLUSIVE INLINE ISOLATION REPEATABLE READ COMMITTED SERIALIZABLE UNCOMMITTED LOCAL GLOBAL SQL PROCEDURES RECURSIVE SNAPSHOT ROLLUP CUBE TRUSTED|10 INCLUDE FOLLOWING PRECEDING UNBOUNDED RANGE GROUPS UNENCRYPTED|10 SYSID FORMAT DELIMITER HEADER QUOTE ENCODING FILTER OFF FORCE_QUOTE FORCE_NOT_NULL FORCE_NULL COSTS BUFFERS TIMING SUMMARY DISABLE_PAGE_SKIPPING RESTART CYCLE GENERATED IDENTITY DEFERRED IMMEDIATE LEVEL LOGGED UNLOGGED OF NOTHING NONE EXCLUDE ATTRIBUTE USAGE ROUTINES TRUE FALSE NAN INFINITY ALIAS BEGIN CONSTANT DECLARE END EXCEPTION RETURN PERFORM|10 RAISE GET DIAGNOSTICS STACKED|10 FOREACH LOOP ELSIF EXIT WHILE REVERSE SLICE DEBUG LOG INFO NOTICE WARNING ASSERT OPEN SUPERUSER NOSUPERUSER CREATEDB NOCREATEDB CREATEROLE NOCREATEROLE INHERIT NOINHERIT LOGIN NOLOGIN REPLICATION NOREPLICATION BYPASSRLS NOBYPASSRLS ","built_in","CURRENT_TIME CURRENT_TIMESTAMP CURRENT_USER CURRENT_CATALOG|10 CURRENT_DATE LOCALTIME LOCALTIMESTAMP CURRENT_ROLE|10 CURRENT_SCHEMA|10 SESSION_USER PUBLIC FOUND NEW OLD TG_NAME|10 TG_WHEN|10 TG_LEVEL|10 TG_OP|10 TG_RELID|10 TG_RELNAME|10 TG_TABLE_NAME|10 TG_TABLE_SCHEMA|10 TG_NARGS|10 TG_ARGV|10 TG_EVENT|10 TG_TAG|10 ROW_COUNT RESULT_OID|10 PG_CONTEXT|10 RETURNED_SQLSTATE COLUMN_NAME CONSTRAINT_NAME PG_DATATYPE_NAME|10 MESSAGE_TEXT TABLE_NAME SCHEMA_NAME PG_EXCEPTION_DETAIL|10 PG_EXCEPTION_HINT|10 PG_EXCEPTION_CONTEXT|10 SQLSTATE SQLERRM|10 SUCCESSFUL_COMPLETION WARNING DYNAMIC_RESULT_SETS_RETURNED IMPLICIT_ZERO_BIT_PADDING NULL_VALUE_ELIMINATED_IN_SET_FUNCTION PRIVILEGE_NOT_GRANTED PRIVILEGE_NOT_REVOKED STRING_DATA_RIGHT_TRUNCATION DEPRECATED_FEATURE NO_DATA NO_ADDITIONAL_DYNAMIC_RESULT_SETS_RETURNED SQL_STATEMENT_NOT_YET_COMPLETE CONNECTION_EXCEPTION CONNECTION_DOES_NOT_EXIST CONNECTION_FAILURE SQLCLIENT_UNABLE_TO_ESTABLISH_SQLCONNECTION SQLSERVER_REJECTED_ESTABLISHMENT_OF_SQLCONNECTION TRANSACTION_RESOLUTION_UNKNOWN PROTOCOL_VIOLATION TRIGGERED_ACTION_EXCEPTION FEATURE_NOT_SUPPORTED INVALID_TRANSACTION_INITIATION LOCATOR_EXCEPTION INVALID_LOCATOR_SPECIFICATION INVALID_GRANTOR INVALID_GRANT_OPERATION INVALID_ROLE_SPECIFICATION DIAGNOSTICS_EXCEPTION STACKED_DIAGNOSTICS_ACCESSED_WITHOUT_ACTIVE_HANDLER CASE_NOT_FOUND CARDINALITY_VIOLATION DATA_EXCEPTION ARRAY_SUBSCRIPT_ERROR CHARACTER_NOT_IN_REPERTOIRE DATETIME_FIELD_OVERFLOW DIVISION_BY_ZERO ERROR_IN_ASSIGNMENT ESCAPE_CHARACTER_CONFLICT INDICATOR_OVERFLOW INTERVAL_FIELD_OVERFLOW INVALID_ARGUMENT_FOR_LOGARITHM INVALID_ARGUMENT_FOR_NTILE_FUNCTION INVALID_ARGUMENT_FOR_NTH_VALUE_FUNCTION INVALID_ARGUMENT_FOR_POWER_FUNCTION INVALID_ARGUMENT_FOR_WIDTH_BUCKET_FUNCTION INVALID_CHARACTER_VALUE_FOR_CAST INVALID_DATETIME_FORMAT INVALID_ESCAPE_CHARACTER INVALID_ESCAPE_OCTET INVALID_ESCAPE_SEQUENCE NONSTANDARD_USE_OF_ESCAPE_CHARACTER INVALID_INDICATOR_PARAMETER_VALUE INVALID_PARAMETER_VALUE INVALID_REGULAR_EXPRESSION INVALID_ROW_COUNT_IN_LIMIT_CLAUSE INVALID_ROW_COUNT_IN_RESULT_OFFSET_CLAUSE INVALID_TABLESAMPLE_ARGUMENT INVALID_TABLESAMPLE_REPEAT INVALID_TIME_ZONE_DISPLACEMENT_VALUE INVALID_USE_OF_ESCAPE_CHARACTER MOST_SPECIFIC_TYPE_MISMATCH NULL_VALUE_NOT_ALLOWED NULL_VALUE_NO_INDICATOR_PARAMETER NUMERIC_VALUE_OUT_OF_RANGE SEQUENCE_GENERATOR_LIMIT_EXCEEDED STRING_DATA_LENGTH_MISMATCH STRING_DATA_RIGHT_TRUNCATION SUBSTRING_ERROR TRIM_ERROR UNTERMINATED_C_STRING ZERO_LENGTH_CHARACTER_STRING FLOATING_POINT_EXCEPTION INVALID_TEXT_REPRESENTATION INVALID_BINARY_REPRESENTATION BAD_COPY_FILE_FORMAT UNTRANSLATABLE_CHARACTER NOT_AN_XML_DOCUMENT INVALID_XML_DOCUMENT INVALID_XML_CONTENT INVALID_XML_COMMENT INVALID_XML_PROCESSING_INSTRUCTION INTEGRITY_CONSTRAINT_VIOLATION RESTRICT_VIOLATION NOT_NULL_VIOLATION FOREIGN_KEY_VIOLATION UNIQUE_VIOLATION CHECK_VIOLATION EXCLUSION_VIOLATION INVALID_CURSOR_STATE INVALID_TRANSACTION_STATE ACTIVE_SQL_TRANSACTION BRANCH_TRANSACTION_ALREADY_ACTIVE HELD_CURSOR_REQUIRES_SAME_ISOLATION_LEVEL INAPPROPRIATE_ACCESS_MODE_FOR_BRANCH_TRANSACTION INAPPROPRIATE_ISOLATION_LEVEL_FOR_BRANCH_TRANSACTION NO_ACTIVE_SQL_TRANSACTION_FOR_BRANCH_TRANSACTION READ_ONLY_SQL_TRANSACTION SCHEMA_AND_DATA_STATEMENT_MIXING_NOT_SUPPORTED NO_ACTIVE_SQL_TRANSACTION IN_FAILED_SQL_TRANSACTION IDLE_IN_TRANSACTION_SESSION_TIMEOUT INVALID_SQL_STATEMENT_NAME TRIGGERED_DATA_CHANGE_VIOLATION INVALID_AUTHORIZATION_SPECIFICATION INVALID_PASSWORD DEPENDENT_PRIVILEGE_DESCRIPTORS_STILL_EXIST DEPENDENT_OBJECTS_STILL_EXIST INVALID_TRANSACTION_TERMINATION SQL_ROUTINE_EXCEPTION FUNCTION_EXECUTED_NO_RETURN_STATEMENT MODIFYING_SQL_DATA_NOT_PERMITTED PROHIBITED_SQL_STATEMENT_ATTEMPTED READING_SQL_DATA_NOT_PERMITTED INVALID_CURSOR_NAME EXTERNAL_ROUTINE_EXCEPTION CONTAINING_SQL_NOT_PERMITTED MODIFYING_SQL_DATA_NOT_PERMITTED PROHIBITED_SQL_STATEMENT_ATTEMPTED READING_SQL_DATA_NOT_PERMITTED EXTERNAL_ROUTINE_INVOCATION_EXCEPTION INVALID_SQLSTATE_RETURNED NULL_VALUE_NOT_ALLOWED TRIGGER_PROTOCOL_VIOLATED SRF_PROTOCOL_VIOLATED EVENT_TRIGGER_PROTOCOL_VIOLATED SAVEPOINT_EXCEPTION INVALID_SAVEPOINT_SPECIFICATION INVALID_CATALOG_NAME INVALID_SCHEMA_NAME TRANSACTION_ROLLBACK TRANSACTION_INTEGRITY_CONSTRAINT_VIOLATION SERIALIZATION_FAILURE STATEMENT_COMPLETION_UNKNOWN DEADLOCK_DETECTED SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION SYNTAX_ERROR INSUFFICIENT_PRIVILEGE CANNOT_COERCE GROUPING_ERROR WINDOWING_ERROR INVALID_RECURSION INVALID_FOREIGN_KEY INVALID_NAME NAME_TOO_LONG RESERVED_NAME DATATYPE_MISMATCH INDETERMINATE_DATATYPE COLLATION_MISMATCH INDETERMINATE_COLLATION WRONG_OBJECT_TYPE GENERATED_ALWAYS UNDEFINED_COLUMN UNDEFINED_FUNCTION UNDEFINED_TABLE UNDEFINED_PARAMETER UNDEFINED_OBJECT DUPLICATE_COLUMN DUPLICATE_CURSOR DUPLICATE_DATABASE DUPLICATE_FUNCTION DUPLICATE_PREPARED_STATEMENT DUPLICATE_SCHEMA DUPLICATE_TABLE DUPLICATE_ALIAS DUPLICATE_OBJECT AMBIGUOUS_COLUMN AMBIGUOUS_FUNCTION AMBIGUOUS_PARAMETER AMBIGUOUS_ALIAS INVALID_COLUMN_REFERENCE INVALID_COLUMN_DEFINITION INVALID_CURSOR_DEFINITION INVALID_DATABASE_DEFINITION INVALID_FUNCTION_DEFINITION INVALID_PREPARED_STATEMENT_DEFINITION INVALID_SCHEMA_DEFINITION INVALID_TABLE_DEFINITION INVALID_OBJECT_DEFINITION WITH_CHECK_OPTION_VIOLATION INSUFFICIENT_RESOURCES DISK_FULL OUT_OF_MEMORY TOO_MANY_CONNECTIONS CONFIGURATION_LIMIT_EXCEEDED PROGRAM_LIMIT_EXCEEDED STATEMENT_TOO_COMPLEX TOO_MANY_COLUMNS TOO_MANY_ARGUMENTS OBJECT_NOT_IN_PREREQUISITE_STATE OBJECT_IN_USE CANT_CHANGE_RUNTIME_PARAM LOCK_NOT_AVAILABLE OPERATOR_INTERVENTION QUERY_CANCELED ADMIN_SHUTDOWN CRASH_SHUTDOWN CANNOT_CONNECT_NOW DATABASE_DROPPED SYSTEM_ERROR IO_ERROR UNDEFINED_FILE DUPLICATE_FILE SNAPSHOT_TOO_OLD CONFIG_FILE_ERROR LOCK_FILE_EXISTS FDW_ERROR FDW_COLUMN_NAME_NOT_FOUND FDW_DYNAMIC_PARAMETER_VALUE_NEEDED FDW_FUNCTION_SEQUENCE_ERROR FDW_INCONSISTENT_DESCRIPTOR_INFORMATION FDW_INVALID_ATTRIBUTE_VALUE FDW_INVALID_COLUMN_NAME FDW_INVALID_COLUMN_NUMBER FDW_INVALID_DATA_TYPE FDW_INVALID_DATA_TYPE_DESCRIPTORS FDW_INVALID_DESCRIPTOR_FIELD_IDENTIFIER FDW_INVALID_HANDLE FDW_INVALID_OPTION_INDEX FDW_INVALID_OPTION_NAME FDW_INVALID_STRING_LENGTH_OR_BUFFER_LENGTH FDW_INVALID_STRING_FORMAT FDW_INVALID_USE_OF_NULL_POINTER FDW_TOO_MANY_HANDLES FDW_OUT_OF_MEMORY FDW_NO_SCHEMAS FDW_OPTION_NAME_NOT_FOUND FDW_REPLY_HANDLE FDW_SCHEMA_NOT_FOUND FDW_TABLE_NOT_FOUND FDW_UNABLE_TO_CREATE_EXECUTION FDW_UNABLE_TO_CREATE_REPLY FDW_UNABLE_TO_ESTABLISH_CONNECTION PLPGSQL_ERROR RAISE_EXCEPTION NO_DATA_FOUND TOO_MANY_ROWS ASSERT_FAILURE INTERNAL_ERROR DATA_CORRUPTED INDEX_CORRUPTED "],o,o),k=t._ -return A.a(m,q,q,!0,q,A.b([A.a(q,q,q,q,"keyword",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,A.b([A.a(q,"\\bTEXT\\s*SEARCH\\b",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\b(PRIMARY|FOREIGN|FOR(\\s+NO)?)\\s+KEY\\b",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\bPARALLEL\\s+(UNSAFE|RESTRICTED|SAFE)\\b",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\bSTORAGE\\s+(PLAIN|EXTERNAL|EXTENDED|MAIN)\\b",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\bMATCH\\s+(FULL|PARTIAL|SIMPLE)\\b",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\bNULLS\\s+(FIRST|LAST)\\b",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\bEVENT\\s+TRIGGER\\b",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\b(MAPPING|OR)\\s+REPLACE\\b",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\b(FROM|TO)\\s+(PROGRAM|STDIN|STDOUT)\\b",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\b(SHARE|EXCLUSIVE)\\s+MODE\\b",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\b(LEFT|RIGHT)\\s+(OUTER\\s+)?JOIN\\b",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\b(FETCH|MOVE)\\s+(NEXT|PRIOR|FIRST|LAST|ABSOLUTE|RELATIVE|FORWARD|BACKWARD)\\b",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\bPRESERVE\\s+ROWS\\b",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\bDISCARD\\s+PLANS\\b",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\bREFERENCING\\s+(OLD|NEW)\\b",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\bSKIP\\s+LOCKED\\b",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\bGROUPING\\s+SETS\\b",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\b(BINARY|INSENSITIVE|SCROLL|NO\\s+SCROLL)\\s+(CURSOR|FOR)\\b",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\b(WITH|WITHOUT)\\s+HOLD\\b",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\bWITH\\s+(CASCADED|LOCAL)\\s+CHECK\\s+OPTION\\b",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\bEXCLUDE\\s+(TIES|NO\\s+OTHERS)\\b",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\bFORMAT\\s+(TEXT|XML|JSON|YAML)\\b",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\bSET\\s+((SESSION|LOCAL)\\s+)?NAMES\\b",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\bIS\\s+(NOT\\s+)?UNKNOWN\\b",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\bSECURITY\\s+LABEL\\b",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\bSTANDALONE\\s+(YES|NO|NO\\s+VALUE)\\b",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\bWITH\\s+(NO\\s+)?DATA\\b",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\b(FOREIGN|SET)\\s+DATA\\b",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\bSET\\s+(CATALOG|CONSTRAINTS)\\b",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\b(WITH|FOR)\\s+ORDINALITY\\b",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\bIS\\s+(NOT\\s+)?DOCUMENT\\b",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\bXML\\s+OPTION\\s+(DOCUMENT|CONTENT)\\b",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\b(STRIP|PRESERVE)\\s+WHITESPACE\\b",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\bNO\\s+(ACTION|MAXVALUE|MINVALUE)\\b",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\bPARTITION\\s+BY\\s+(RANGE|LIST|HASH)\\b",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\bAT\\s+TIME\\s+ZONE\\b",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\bGRANTED\\s+BY\\b",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\bRETURN\\s+(QUERY|NEXT)\\b",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\b(ATTACH|DETACH)\\s+PARTITION\\b",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\bFORCE\\s+ROW\\s+LEVEL\\s+SECURITY\\b",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\b(INCLUDING|EXCLUDING)\\s+(COMMENTS|CONSTRAINTS|DEFAULTS|IDENTITY|INDEXES|STATISTICS|STORAGE|ALL)\\b",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\bAS\\s+(ASSIGNMENT|IMPLICIT|PERMISSIVE|RESTRICTIVE|ENUM|RANGE)\\b",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],k)),A.a(q,"\\b(FORMAT|FAMILY|VERSION)\\s*\\(",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\bINCLUDE\\s*\\(",q,q,q,q,q,q,q,q,q,q,q,q,"INCLUDE",q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\bRANGE(?!\\s*(BETWEEN|UNBOUNDED|CURRENT|[-0-9]+))",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\b(VERSION|OWNER|TEMPLATE|TABLESPACE|CONNECTION\\s+LIMIT|PROCEDURE|RESTRICT|JOIN|PARSER|COPY|START|END|COLLATION|INPUT|ANALYZE|STORAGE|LIKE|DEFAULT|DELIMITER|ENCODING|COLUMN|CONSTRAINT|TABLE|SCHEMA)\\s*=",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\b(PG_\\w+?|HAS_[A-Z_]+_PRIVILEGE)\\b",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,10,q,q,q,q,q,q,q),A.a(q,"\\bEXTRACT\\s*\\(",q,q,q,q,q,"\\bFROM\\b",q,q,q,q,q,q,A.l(["type","CENTURY DAY DECADE DOW DOY EPOCH HOUR ISODOW ISOYEAR MICROSECONDS MILLENNIUM MILLISECONDS MINUTE MONTH QUARTER SECOND TIMEZONE TIMEZONE_HOUR TIMEZONE_MINUTE WEEK YEAR"],o,o),q,q,q,q,q,!0,q,q,q,q,q),A.a(q,"\\b(XMLELEMENT|XMLPI)\\s*\\(\\s*NAME",q,q,q,q,q,q,q,q,q,q,q,q,A.l(["keyword","NAME"],o,o),q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\b(XMLPARSE|XMLSERIALIZE)\\s*\\(\\s*(DOCUMENT|CONTENT)",q,q,q,q,q,q,q,q,q,q,q,q,A.l(["keyword","DOCUMENT CONTENT"],o,o),q,q,q,q,q,q,q,q,q,q,q),A.a(q,q,"CACHE INCREMENT MAXVALUE MINVALUE",q,q,q,q,u.O,q,q,q,q,q,q,"BY CACHE INCREMENT MAXVALUE MINVALUE",q,q,q,q,q,!0,q,q,q,q,q),A.a(q,"\\b(WITH|WITHOUT)\\s+TIME\\s+ZONE\\b",q,q,p,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\bINTERVAL\\s+(YEAR|MONTH|DAY|HOUR|MINUTE|SECOND)(\\s+TO\\s+(MONTH|HOUR|MINUTE|SECOND))?\\b",q,q,p,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\bRETURNS\\s+(LANGUAGE_HANDLER|TRIGGER|EVENT_TRIGGER|FDW_HANDLER|INDEX_AM_HANDLER|TSM_HANDLER)\\b",q,q,q,q,q,q,q,q,q,q,q,q,A.l(["keyword","RETURNS","type","LANGUAGE_HANDLER TRIGGER EVENT_TRIGGER FDW_HANDLER INDEX_AM_HANDLER TSM_HANDLER"],o,o),q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\b(ARRAY_AGG|AVG|BIT_AND|BIT_OR|BOOL_AND|BOOL_OR|COUNT|EVERY|JSON_AGG|JSONB_AGG|JSON_OBJECT_AGG|JSONB_OBJECT_AGG|MAX|MIN|MODE|STRING_AGG|SUM|XMLAGG|CORR|COVAR_POP|COVAR_SAMP|REGR_AVGX|REGR_AVGY|REGR_COUNT|REGR_INTERCEPT|REGR_R2|REGR_SLOPE|REGR_SXX|REGR_SXY|REGR_SYY|STDDEV|STDDEV_POP|STDDEV_SAMP|VARIANCE|VAR_POP|VAR_SAMP|PERCENTILE_CONT|PERCENTILE_DISC|ROW_NUMBER|RANK|DENSE_RANK|PERCENT_RANK|CUME_DIST|NTILE|LAG|LEAD|FIRST_VALUE|LAST_VALUE|NTH_VALUE|NUM_NONNULLS|NUM_NULLS|ABS|CBRT|CEIL|CEILING|DEGREES|DIV|EXP|FLOOR|LN|LOG|MOD|PI|POWER|RADIANS|ROUND|SCALE|SIGN|SQRT|TRUNC|WIDTH_BUCKET|RANDOM|SETSEED|ACOS|ACOSD|ASIN|ASIND|ATAN|ATAND|ATAN2|ATAN2D|COS|COSD|COT|COTD|SIN|SIND|TAN|TAND|BIT_LENGTH|CHAR_LENGTH|CHARACTER_LENGTH|LOWER|OCTET_LENGTH|OVERLAY|POSITION|SUBSTRING|TREAT|TRIM|UPPER|ASCII|BTRIM|CHR|CONCAT|CONCAT_WS|CONVERT|CONVERT_FROM|CONVERT_TO|DECODE|ENCODE|INITCAPLEFT|LENGTH|LPAD|LTRIM|MD5|PARSE_IDENT|PG_CLIENT_ENCODING|QUOTE_IDENT|QUOTE_LITERAL|QUOTE_NULLABLE|REGEXP_MATCH|REGEXP_MATCHES|REGEXP_REPLACE|REGEXP_SPLIT_TO_ARRAY|REGEXP_SPLIT_TO_TABLE|REPEAT|REPLACE|REVERSE|RIGHT|RPAD|RTRIM|SPLIT_PART|STRPOS|SUBSTR|TO_ASCII|TO_HEX|TRANSLATE|OCTET_LENGTH|GET_BIT|GET_BYTE|SET_BIT|SET_BYTE|TO_CHAR|TO_DATE|TO_NUMBER|TO_TIMESTAMP|AGE|CLOCK_TIMESTAMP|DATE_PART|DATE_TRUNC|ISFINITE|JUSTIFY_DAYS|JUSTIFY_HOURS|JUSTIFY_INTERVAL|MAKE_DATE|MAKE_INTERVAL|MAKE_TIME|MAKE_TIMESTAMP|MAKE_TIMESTAMPTZ|NOW|STATEMENT_TIMESTAMP|TIMEOFDAY|TRANSACTION_TIMESTAMP|ENUM_FIRST|ENUM_LAST|ENUM_RANGE|AREA|CENTER|DIAMETER|HEIGHT|ISCLOSED|ISOPEN|NPOINTS|PCLOSE|POPEN|RADIUS|WIDTH|BOX|BOUND_BOX|CIRCLE|LINE|LSEG|PATH|POLYGON|ABBREV|BROADCAST|HOST|HOSTMASK|MASKLEN|NETMASK|NETWORK|SET_MASKLEN|TEXT|INET_SAME_FAMILYINET_MERGE|MACADDR8_SET7BIT|ARRAY_TO_TSVECTOR|GET_CURRENT_TS_CONFIG|NUMNODE|PLAINTO_TSQUERY|PHRASETO_TSQUERY|WEBSEARCH_TO_TSQUERY|QUERYTREE|SETWEIGHT|STRIP|TO_TSQUERY|TO_TSVECTOR|JSON_TO_TSVECTOR|JSONB_TO_TSVECTOR|TS_DELETE|TS_FILTER|TS_HEADLINE|TS_RANK|TS_RANK_CD|TS_REWRITE|TSQUERY_PHRASE|TSVECTOR_TO_ARRAY|TSVECTOR_UPDATE_TRIGGER|TSVECTOR_UPDATE_TRIGGER_COLUMN|XMLCOMMENT|XMLCONCAT|XMLELEMENT|XMLFOREST|XMLPI|XMLROOT|XMLEXISTS|XML_IS_WELL_FORMED|XML_IS_WELL_FORMED_DOCUMENT|XML_IS_WELL_FORMED_CONTENT|XPATH|XPATH_EXISTS|XMLTABLE|XMLNAMESPACES|TABLE_TO_XML|TABLE_TO_XMLSCHEMA|TABLE_TO_XML_AND_XMLSCHEMA|QUERY_TO_XML|QUERY_TO_XMLSCHEMA|QUERY_TO_XML_AND_XMLSCHEMA|CURSOR_TO_XML|CURSOR_TO_XMLSCHEMA|SCHEMA_TO_XML|SCHEMA_TO_XMLSCHEMA|SCHEMA_TO_XML_AND_XMLSCHEMA|DATABASE_TO_XML|DATABASE_TO_XMLSCHEMA|DATABASE_TO_XML_AND_XMLSCHEMA|XMLATTRIBUTES|TO_JSON|TO_JSONB|ARRAY_TO_JSON|ROW_TO_JSON|JSON_BUILD_ARRAY|JSONB_BUILD_ARRAY|JSON_BUILD_OBJECT|JSONB_BUILD_OBJECT|JSON_OBJECT|JSONB_OBJECT|JSON_ARRAY_LENGTH|JSONB_ARRAY_LENGTH|JSON_EACH|JSONB_EACH|JSON_EACH_TEXT|JSONB_EACH_TEXT|JSON_EXTRACT_PATH|JSONB_EXTRACT_PATH|JSON_OBJECT_KEYS|JSONB_OBJECT_KEYS|JSON_POPULATE_RECORD|JSONB_POPULATE_RECORD|JSON_POPULATE_RECORDSET|JSONB_POPULATE_RECORDSET|JSON_ARRAY_ELEMENTS|JSONB_ARRAY_ELEMENTS|JSON_ARRAY_ELEMENTS_TEXT|JSONB_ARRAY_ELEMENTS_TEXT|JSON_TYPEOF|JSONB_TYPEOF|JSON_TO_RECORD|JSONB_TO_RECORD|JSON_TO_RECORDSET|JSONB_TO_RECORDSET|JSON_STRIP_NULLS|JSONB_STRIP_NULLS|JSONB_SET|JSONB_INSERT|JSONB_PRETTY|CURRVAL|LASTVAL|NEXTVAL|SETVAL|COALESCE|NULLIF|GREATEST|LEAST|ARRAY_APPEND|ARRAY_CAT|ARRAY_NDIMS|ARRAY_DIMS|ARRAY_FILL|ARRAY_LENGTH|ARRAY_LOWER|ARRAY_POSITION|ARRAY_POSITIONS|ARRAY_PREPEND|ARRAY_REMOVE|ARRAY_REPLACE|ARRAY_TO_STRING|ARRAY_UPPER|CARDINALITY|STRING_TO_ARRAY|UNNEST|ISEMPTY|LOWER_INC|UPPER_INC|LOWER_INF|UPPER_INF|RANGE_MERGE|GENERATE_SERIES|GENERATE_SUBSCRIPTS|CURRENT_DATABASE|CURRENT_QUERY|CURRENT_SCHEMA|CURRENT_SCHEMAS|INET_CLIENT_ADDR|INET_CLIENT_PORT|INET_SERVER_ADDR|INET_SERVER_PORT|ROW_SECURITY_ACTIVE|FORMAT_TYPE|TO_REGCLASS|TO_REGPROC|TO_REGPROCEDURE|TO_REGOPER|TO_REGOPERATOR|TO_REGTYPE|TO_REGNAMESPACE|TO_REGROLE|COL_DESCRIPTION|OBJ_DESCRIPTION|SHOBJ_DESCRIPTION|TXID_CURRENT|TXID_CURRENT_IF_ASSIGNED|TXID_CURRENT_SNAPSHOT|TXID_SNAPSHOT_XIP|TXID_SNAPSHOT_XMAX|TXID_SNAPSHOT_XMIN|TXID_VISIBLE_IN_SNAPSHOT|TXID_STATUS|CURRENT_SETTING|SET_CONFIG|BRIN_SUMMARIZE_NEW_VALUES|BRIN_SUMMARIZE_RANGE|BRIN_DESUMMARIZE_RANGE|GIN_CLEAN_PENDING_LIST|SUPPRESS_REDUNDANT_UPDATES_TRIGGER|LO_FROM_BYTEA|LO_PUT|LO_GET|LO_CREAT|LO_CREATE|LO_UNLINK|LO_IMPORT|LO_EXPORT|LOREAD|LOWRITE|GROUPING|CAST)\\s*\\(",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\.(BIGINT|INT8|BIGSERIAL|SERIAL8|BIT|VARYING|VARBIT|BOOLEAN|BOOL|BOX|BYTEA|CHARACTER|CHAR|VARCHAR|CIDR|CIRCLE|DATE|DOUBLE|PRECISION|FLOAT8|FLOAT|INET|INTEGER|INT|INT4|INTERVAL|JSON|JSONB|LINE|LSEG|MACADDR|MACADDR8|MONEY|NUMERIC|DEC|DECIMAL|PATH|POINT|POLYGON|REAL|FLOAT4|SMALLINT|INT2|SMALLSERIAL|SERIAL2|SERIAL|SERIAL4|TEXT|TIME|ZONE|TIMETZ|TIMESTAMP|TIMESTAMPTZ|TSQUERY|TSVECTOR|TXID_SNAPSHOT|UUID|XML|NATIONAL|NCHAR|INT4RANGE|INT8RANGE|NUMRANGE|TSRANGE|TSTZRANGE|DATERANGE|ANYELEMENT|ANYARRAY|ANYNONARRAY|ANYENUM|ANYRANGE|CSTRING|INTERNAL|RECORD|PG_DDL_COMMAND|VOID|UNKNOWN|OPAQUE|REFCURSOR|NAME|OID|REGPROC|REGPROCEDURE|REGOPER|REGOPERATOR|REGCLASS|REGTYPE|REGROLE|REGNAMESPACE|REGCONFIG|REGDICTIONARY)\\b",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\b(BIGINT|INT8|BIGSERIAL|SERIAL8|BIT|VARYING|VARBIT|BOOLEAN|BOOL|BOX|BYTEA|CHARACTER|CHAR|VARCHAR|CIDR|CIRCLE|DATE|DOUBLE|PRECISION|FLOAT8|FLOAT|INET|INTEGER|INT|INT4|INTERVAL|JSON|JSONB|LINE|LSEG|MACADDR|MACADDR8|MONEY|NUMERIC|DEC|DECIMAL|PATH|POINT|POLYGON|REAL|FLOAT4|SMALLINT|INT2|SMALLSERIAL|SERIAL2|SERIAL|SERIAL4|TEXT|TIME|ZONE|TIMETZ|TIMESTAMP|TIMESTAMPTZ|TSQUERY|TSVECTOR|TXID_SNAPSHOT|UUID|XML|NATIONAL|NCHAR|INT4RANGE|INT8RANGE|NUMRANGE|TSRANGE|TSTZRANGE|DATERANGE|ANYELEMENT|ANYARRAY|ANYNONARRAY|ANYENUM|ANYRANGE|CSTRING|INTERNAL|RECORD|PG_DDL_COMMAND|VOID|UNKNOWN|OPAQUE|REFCURSOR|NAME|OID|REGPROC|REGPROCEDURE|REGOPER|REGOPERATOR|REGCLASS|REGTYPE|REGROLE|REGNAMESPACE|REGCONFIG|REGDICTIONARY)\\s+PATH\\b",q,q,q,q,q,q,q,q,q,q,q,q,A.l(["keyword","PATH","type","BIGINT INT8 BIGSERIAL SERIAL8 BIT VARYING VARBIT BOOLEAN BOOL BOX BYTEA CHARACTER CHAR VARCHAR CIDR CIRCLE DATE DOUBLE PRECISION FLOAT8 FLOAT INET INTEGER INT INT4 INTERVAL JSON JSONB LINE LSEG|10 MACADDR MACADDR8 MONEY NUMERIC DEC DECIMAL POINT POLYGON REAL FLOAT4 SMALLINT INT2 SMALLSERIAL|10 SERIAL2|10 SERIAL|10 SERIAL4|10 TEXT TIME ZONE TIMETZ|10 TIMESTAMP TIMESTAMPTZ|10 TSQUERY|10 TSVECTOR|10 TXID_SNAPSHOT|10 UUID XML NATIONAL NCHAR INT4RANGE|10 INT8RANGE|10 NUMRANGE|10 TSRANGE|10 TSTZRANGE|10 DATERANGE|10 ANYELEMENT ANYARRAY ANYNONARRAY ANYENUM ANYRANGE CSTRING INTERNAL RECORD PG_DDL_COMMAND VOID UNKNOWN OPAQUE REFCURSOR NAME OID REGPROC|10 REGPROCEDURE|10 REGOPER|10 REGOPERATOR|10 REGCLASS|10 REGTYPE|10 REGROLE|10 REGNAMESPACE|10 REGCONFIG|10 REGDICTIONARY|10 "],o,o),q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\b(BIGINT|INT8|BIGSERIAL|SERIAL8|BIT|VARYING|VARBIT|BOOLEAN|BOOL|BOX|BYTEA|CHARACTER|CHAR|VARCHAR|CIDR|CIRCLE|DATE|DOUBLE|PRECISION|FLOAT8|FLOAT|INET|INTEGER|INT|INT4|INTERVAL|JSON|JSONB|LINE|LSEG|MACADDR|MACADDR8|MONEY|NUMERIC|DEC|DECIMAL|PATH|POINT|POLYGON|REAL|FLOAT4|SMALLINT|INT2|SMALLSERIAL|SERIAL2|SERIAL|SERIAL4|TEXT|TIME|ZONE|TIMETZ|TIMESTAMP|TIMESTAMPTZ|TSQUERY|TSVECTOR|TXID_SNAPSHOT|UUID|XML|NATIONAL|NCHAR|INT4RANGE|INT8RANGE|NUMRANGE|TSRANGE|TSTZRANGE|DATERANGE|ANYELEMENT|ANYARRAY|ANYNONARRAY|ANYENUM|ANYRANGE|CSTRING|INTERNAL|RECORD|PG_DDL_COMMAND|VOID|UNKNOWN|OPAQUE|REFCURSOR|NAME|OID|REGPROC|REGPROCEDURE|REGOPER|REGOPERATOR|REGCLASS|REGTYPE|REGROLE|REGNAMESPACE|REGCONFIG|REGDICTIONARY)\\b",q,q,p,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"'",q,q,"string",A.b([A.a(q,"''",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],k),q,"'",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"(e|E|u&|U&)'",q,q,"string",A.b([A.a(q,"\\\\.",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],k),q,"'",q,q,q,q,q,q,q,q,q,q,10,q,q,q,q,q,q,q),A.a(q,"\\$([a-zA-Z_]?|[a-zA-Z_][a-zA-Z_0-9]*)\\$",q,q,q,A.b([A.a(q,q,q,q,q,q,q,q,q,q,!0,q,q,q,q,q,q,q,q,q,q,q,q,q,A.b(["pgsql","perl","python","tcl","r","lua","java","php","ruby","bash","scheme","xml","json"],n),q)],k),q,q,!0,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,'"',q,q,q,A.b([A.a(q,'""',q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],k),q,'"',q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),$.bw(),$.b_(),A.a(q,"--",q,q,"comment",A.b([$.aq(),A.a(q,"(?:TODO|FIXME|NOTE|BUG|XXX):",q,q,"doctag",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q)],k),q,"$",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,q,q,q,"meta",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,A.b([A.a(q,"%(ROW)?TYPE",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,10,q,q,q,q,q,q,q),A.a(q,"\\$\\d+",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"^#\\w",q,q,q,q,q,"$",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],k)),A.a(q,"<<\\s*[a-zA-Z_][a-zA-Z_0-9$]*\\s*>>",q,q,"symbol",q,q,q,q,q,q,q,q,q,q,q,q,q,10,q,q,q,q,q,q,q)],k),q,q,q,q,q,q,q,":==|\\W\\s*\\(\\*|(^|\\s)\\$[a-z]|{{|[a-z]:\\s*$|\\.\\.\\.|TO:|DO:",l,q,q,A.m(o,t.n),q,q,q,q,q,q,q,q)}) -s($,"beG","aTK",()=>{var q,p,o,n,m,l,k,j,i,h,g="~contains~9~contains~1~contains~4",f=null,e="~contains~9~contains~1~contains~3",d="string",c="~contains~1~contains~0",b="~contains~7",a="comment",a0="doctag",a1="(?:TODO|FIXME|NOTE|BUG|XXX):",a2="function",a3=t._,a4=A.a(f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,A.b([$.ng(),$.bw()],a3)),a5=$.aZ() -a4=A.l([g,a4,e,A.a(f,f,f,f,d,A.b([a5,A.a(f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,c,f,f,f,f,f,f,f,f,f)],a3),f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,A.b([A.a(f,'b"',f,f,f,f,f,'"',f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f),A.a(f,"b'",f,f,f,f,f,"'",f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f),A.a(f,"'",f,f,d,A.b([a5],a3),f,"'",f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f),A.a(f,'"',f,f,d,A.b([a5],a3),f,'"',f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f)],a3)),"~contains~7",A.a(f,"\\$+[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*",f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f),c,A.a(f,"<\\?(php)?|\\?>",f,f,"meta",f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f)],t.N,t.n) -q=A.b(["php","php3","php4","php5","php6","php7"],t.s) -p=$.ch() -o=A.a(f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,c,f,f,f,f,f,f,f,f,f) -n=$.aq() -o=A.a(f,"//",f,f,a,A.b([o,n,A.a(f,a1,f,f,a0,f,f,f,f,f,f,f,f,f,f,f,f,f,0,f,f,f,f,f,f,f)],a3),f,"$",f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f) -m=A.a(f,"/\\*",f,f,a,A.b([A.a(f,"@[A-Za-z]+",f,f,a0,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f),n,A.a(f,a1,f,f,a0,f,f,f,f,f,f,f,f,f,f,f,f,f,0,f,f,f,f,f,f,f)],a3),f,"\\*/",f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f) -n=A.a(f,"__halt_compiler.+?;",f,f,a,A.b([n,A.a(f,a1,f,f,a0,f,f,f,f,f,f,f,f,f,f,f,f,f,0,f,f,f,f,f,f,f)],a3),f,"false",f,f,!0,f,f,f,"__halt_compiler","[a-zA-Z_]\\w*",f,f,f,f,f,f,f,f,f,f) -a5=A.a(f,"<<<['\"]?\\w+['\"]?$",f,f,d,A.b([a5,A.a(f,f,f,f,"subst",f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,A.b([A.a(f,"\\$\\w+",f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f),A.a(f,"\\{\\$",f,f,f,f,f,"\\}",f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f)],a3))],a3),f,"^\\w+;?$",f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f) -l=A.a(f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,c,f,f,f,f,f,f,f,f,f) -k=A.a(f,"\\$this\\b",f,f,"keyword",f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f) -j=A.a(f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,b,f,f,f,f,f,f,f,f,f) -i=A.a(f,u.H,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f) -h=$.dU() -return A.a(q,f,f,!0,f,A.b([p,o,m,n,a5,l,k,j,i,A.a(f,f,a2,f,a2,A.b([h,A.a(f,"\\(",f,f,"params",A.b([A.a(f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,!0,f,f,f,f),A.a(f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,b,f,f,f,f,f,f,f,f,f),$.b_(),A.a(f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,e,f,f,f,f,f,f,f,f,f),A.a(f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,g,f,f,f,f,f,f,f,f,f)],a3),f,"\\)",f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f)],a3),f,"[;{]",f,f,f,f,!0,"\\$|\\[|%",f,f,f,f,f,f,f,f,f,f,f,f),A.a(f,f,"class interface",f,"class",A.b([A.a(f,f,"extends implements",f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f),h],a3),f,"{",f,f,f,f,!0,'[:\\(\\$"]',f,f,f,f,f,f,f,f,f,f,f,f),A.a(f,f,"namespace",f,f,A.b([h],a3),f,";",f,f,f,f,f,"[\\.']",f,f,f,f,f,f,f,f,f,f,f,f),A.a(f,f,"use",f,f,A.b([h],a3),f,";",f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f),A.a(f,"=>",f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f),A.a(f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,e,f,f,f,f,f,f,f,f,f),A.a(f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,g,f,f,f,f,f,f,f,f,f)],a3),f,f,f,f,f,f,f,f,"and include_once list abstract global private echo interface as static endswitch array null if endwhile or const for endforeach self var while isset public protected exit foreach throw elseif include __FILE__ empty require_once do xor return parent clone use __CLASS__ __LINE__ else break print eval new catch __METHOD__ case exception default die require __FUNCTION__ enddeclare final try switch continue endfor endif declare unset true false trait goto instanceof insteadof __DIR__ __NAMESPACE__ yield finally",f,f,a4,f,f,f,f,f,f,f,f)}) -s($,"beI","aGJ",()=>{var q=null -return A.a(q,q,q,q,q,q,!0,q,q,q,q,q,q,q,q,q,q,A.m(t.N,t.n),q,q,q,q,q,q,q,q)}) -s($,"beL","aTM",()=>{var q=null,p="string",o=t.N,n=A.l(["keyword","actor addressof and as be break class compile_error compile_intrinsic consume continue delegate digestof do else elseif embed end error for fun if ifdef in interface is isnt lambda let match new not object or primitive recover repeat return struct then trait try type until use var where while with xor","meta","iso val tag trn box ref","literal","this false true"],o,o),m=A.a(q,"\\b_?[A-Z][\\w]*",q,q,"type",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q),l=A.a(q,'"""',q,q,p,q,q,'"""',q,q,q,q,q,q,q,q,q,q,10,q,q,q,q,q,q,q),k=$.aZ(),j=t._ -return A.a(q,q,q,q,q,A.b([m,l,A.a(q,'"',q,q,p,A.b([k],j),q,'"',q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"'",q,q,p,A.b([k],j),q,"'",q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q),A.a(q,"[a-zA-Z]\\w*'",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q),A.a(q,"(-?)(\\b0[xX][a-fA-F0-9]+|\\b0[bB][01]+|(\\b\\d+(_\\d+)?(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)",q,q,"number",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q),$.ba(),$.b_()],j),q,q,q,q,q,q,q,q,n,q,q,A.m(o,t.n),q,q,q,q,q,q,q,q)}) -s($,"beM","aTN",()=>{var q,p,o,n,m,l,k,j,i,h="~contains~0~contains~0~contains~9",g=null,f="~contains~0~contains~0~contains~7",e="built_in",d="~contains~0~contains~0~contains~6",c="~contains~0~contains~0~contains~5~contains~1",b="variable",a="keyword",a0="~contains~0~contains~0~contains~5",a1="~contains~0~contains~0~contains~3",a2="~contains~0~contains~0~contains~2",a3="~contains~0~contains~0~contains~10",a4="~contains~0~contains~0",a5="~contains~0",a6="function",a7=A.a(g,"\\$(null|true|false)\\b",g,g,"literal",g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g),a8=t._,a9=A.a(g,g,g,g,e,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,A.b([A.a(g,"(Add|Clear|Close|Copy|Enter|Exit|Find|Format|Get|Hide|Join|Lock|Move|New|Open|Optimize|Pop|Push|Redo|Remove|Rename|Reset|Resize|Search|Select|Set|Show|Skip|Split|Step|Switch|Undo|Unlock|Watch|Backup|Checkpoint|Compare|Compress|Convert|ConvertFrom|ConvertTo|Dismount|Edit|Expand|Export|Group|Import|Initialize|Limit|Merge|New|Out|Publish|Restore|Save|Sync|Unpublish|Update|Approve|Assert|Complete|Confirm|Deny|Disable|Enable|Install|Invoke|Register|Request|Restart|Resume|Start|Stop|Submit|Suspend|Uninstall|Unregister|Wait|Debug|Measure|Ping|Repair|Resolve|Test|Trace|Connect|Disconnect|Read|Receive|Send|Write|Block|Grant|Protect|Revoke|Unblock|Unprotect|Use|ForEach|Sort|Tee|Where)+(-)[\\w\\d]+",g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g)],a8)),b0=A.a(g,g,g,g,"string",g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,A.b([A.a(g,"'",g,g,g,g,g,"'",g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g),A.a(g,"@'",g,g,g,g,g,"^'@",g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g)],a8)),b1=A.a(g,g,g,g,b,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,A.b([A.a(g,"\\$\\B",g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g),A.a(g,"\\$this",g,g,a,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g),A.a(g,"\\$[\\w\\d][\\w\\d_:]*",g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g)],a8)),b2=A.b([A.a(g,'"',g,g,g,g,g,'"',g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g),A.a(g,'@"',g,g,g,g,g,'^"@',g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g)],a8) -b2=A.a(g,g,g,g,"string",A.b([A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,a1,g,g,g,g,g,g,g,g,g),A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,c,g,g,g,g,g,g,g,g,g),A.a(g,"\\$[A-z]",g,g,b,g,g,"[^A-z]",g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g)],a8),g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,b2) -q=A.a(g,"`[\\s\\S]",g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,0,g,g,g,g,g,g,g) -p=A.a(g,g,g,g,"comment",A.b([A.a(g,g,g,g,"doctag",g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,A.b([A.a(g,"\\.(synopsis|description|example|inputs|outputs|notes|link|component|role|functionality)",g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g),A.a(g,"\\.(parameter|forwardhelptargetname|forwardhelpcategory|remotehelprunspace|externalhelp)\\s+\\S+",g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g)],a8))],a8),g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,A.b([A.a(g,"#",g,g,g,g,g,"$",g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g),A.a(g,"<#",g,g,g,g,g,"#>",g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g)],a8)) -o=A.a(g,"\\@\\B",g,g,"selector-tag",g,g,g,g,g,g,g,g,g,g,g,g,g,0,g,g,g,g,g,g,g) -n=A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,!0,g,g,g,g) -m=A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,a5,g,g,g,g,g,g,g,g,g) -l=A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,a2,g,g,g,g,g,g,g,g,g) -k=A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,a1,g,g,g,g,g,g,g,g,g) -j=$.dB() -i=t.N -k=A.l([h,a7,f,a9,d,b0,c,b1,a0,b2,a1,q,a2,p,a3,o,a4,A.a(g,"\\[",g,g,g,A.b([n,m,l,k,j,A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,a0,g,g,g,g,g,g,g,g,g),A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,d,g,g,g,g,g,g,g,g,g),A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,f,g,g,g,g,g,g,g,g,g),A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,c,g,g,g,g,g,g,g,g,g),A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,h,g,g,g,g,g,g,g,g,g),A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,a3,g,g,g,g,g,g,g,g,g),A.a(g,"(string|char|byte|int|long|bool|decimal|single|double|DateTime|xml|array|hashtable|void)",g,g,e,g,g,g,g,g,g,g,g,g,g,g,g,g,0,g,g,g,g,g,g,g),A.a(g,"[\\.\\w\\d]+",g,g,"type",g,g,g,g,g,g,g,g,g,g,g,g,g,0,g,g,g,g,g,g,g)],a8),g,"\\]",g,g,g,!0,!0,g,g,g,g,g,0,g,g,g,g,g,g,g),"~contains~0",A.a(g,"\\[.*\\]\\s*[\\w]+[ ]??\\(",g,g,a6,A.b([A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,a4,g,g,g,g,g,g,g,g,g),A.a(g,"(if|else|foreach|return|do|while|until|elseif|begin|for|trap|data|dynamicparam|end|break|throw|param|continue|finally|in|switch|exit|filter|try|process|catch|hidden|static|parameter)\\b",g,g,a,g,g,g,g,!0,g,g,g,g,g,g,g,g,0,g,g,g,g,g,g,g),A.a(g,"[a-zA-Z]\\w*",g,g,"title",g,g,g,g,!0,g,g,g,g,g,g,g,g,0,g,g,g,g,g,g,g)],a8),g,"$",g,g,g,g,g,g,g,g,g,g,0,!0,g,g,g,g,g,g)],i,t.n) -l=A.b(["ps","ps1"],t.s) -i=A.l(["keyword","if else foreach return do while until elseif begin for trap data dynamicparam end break throw param continue finally in switch exit filter try process catch hidden static parameter"],i,i) -return A.a(l,g,g,!0,g,A.b([A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,a5,g,g,g,g,g,g,g,g,g),A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,a2,g,g,g,g,g,g,g,g,g),A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,a1,g,g,g,g,g,g,g,g,g),j,A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,a0,g,g,g,g,g,g,g,g,g),A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,d,g,g,g,g,g,g,g,g,g),A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,f,g,g,g,g,g,g,g,g,g),A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,c,g,g,g,g,g,g,g,g,g),A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,h,g,g,g,g,g,g,g,g,g),A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,a3,g,g,g,g,g,g,g,g,g),A.a(g,g,"class enum",g,"class",A.b([$.jk()],a8),g,"\\s*[{]",g,g,g,g,!0,g,g,g,g,g,0,g,g,g,g,g,g,g),A.a(g,"function\\s+",g,g,a6,A.b([A.a(g,a6,g,g,a,g,g,g,g,g,g,g,g,g,g,g,g,g,0,g,g,g,g,g,g,g),A.a(g,"\\w[\\w\\d]*((-)[\\w\\d]+)*",g,g,"title",g,g,g,g,g,g,g,g,g,g,g,g,g,0,g,g,g,g,g,g,g),A.a(g,"\\(",g,g,"params",A.b([A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,c,g,g,g,g,g,g,g,g,g)],a8),g,"\\)",g,g,g,g,g,g,g,g,g,g,0,g,g,g,g,g,g,g)],a8),g,"\\s*\\{|$",g,g,g,g,!0,g,g,g,g,g,0,!0,g,g,g,g,g,g),A.a(g,"using\\s",g,g,g,A.b([A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,a0,g,g,g,g,g,g,g,g,g),A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,d,g,g,g,g,g,g,g,g,g),A.a(g,"(using|assembly|command|module|namespace|type)",g,g,a,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g)],a8),g,"$",g,g,g,g,g,g,g,g,g,g,g,!0,g,g,g,g,g,g),A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,A.b([A.a(g,"(-and|-as|-band|-bnot|-bor|-bxor|-casesensitive|-ccontains|-ceq|-cge|-cgt|-cle|-clike|-clt|-cmatch|-cne|-cnotcontains|-cnotlike|-cnotmatch|-contains|-creplace|-csplit|-eq|-exact|-f|-file|-ge|-gt|-icontains|-ieq|-ige|-igt|-ile|-ilike|-ilt|-imatch|-in|-ine|-inotcontains|-inotlike|-inotmatch|-ireplace|-is|-isnot|-isplit|-join|-le|-like|-lt|-match|-ne|-not|-notcontains|-notin|-notlike|-notmatch|-or|-regex|-replace|-shl|-shr|-split|-wildcard|-xor)\\b",g,g,"operator",g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g),A.a(g,"(-)[\\w\\d]+",g,g,"literal",g,g,g,g,g,g,g,g,g,g,g,g,g,0,g,g,g,g,g,g,g)],a8)),A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,a4,g,g,g,g,g,g,g,g,g)],a8),g,g,g,g,g,g,g,g,i,"-?[A-z\\.\\-]+",g,k,g,g,g,g,g,g,g,g)}) -s($,"beO","aTO",()=>{var q=null,p=t.N,o=A.l(["keyword","BufferedReader PVector PFont PImage PGraphics HashMap boolean byte char color double float int long String Array FloatDict FloatList IntDict IntList JSONArray JSONObject Object StringDict StringList Table TableRow XML false synchronized int abstract float private char boolean static null if const for true while long throw strictfp finally protected import native final return void enum else break transient new catch instanceof byte super volatile case assert short package default double public try this switch continue throws protected public private","literal","P2D P3D HALF_PI PI QUARTER_PI TAU TWO_PI","title","setup draw","built_in","displayHeight displayWidth mouseY mouseX mousePressed pmouseX pmouseY key keyCode pixels focused frameCount frameRate height width size createGraphics beginDraw createShape loadShape PShape arc ellipse line point quad rect triangle bezier bezierDetail bezierPoint bezierTangent curve curveDetail curvePoint curveTangent curveTightness shape shapeMode beginContour beginShape bezierVertex curveVertex endContour endShape quadraticVertex vertex ellipseMode noSmooth rectMode smooth strokeCap strokeJoin strokeWeight mouseClicked mouseDragged mouseMoved mousePressed mouseReleased mouseWheel keyPressed keyPressedkeyReleased keyTyped print println save saveFrame day hour millis minute month second year background clear colorMode fill noFill noStroke stroke alpha blue brightness color green hue lerpColor red saturation modelX modelY modelZ screenX screenY screenZ ambient emissive shininess specular add createImage beginCamera camera endCamera frustum ortho perspective printCamera printProjection cursor frameRate noCursor exit loop noLoop popStyle pushStyle redraw binary boolean byte char float hex int str unbinary unhex join match matchAll nf nfc nfp nfs split splitTokens trim append arrayCopy concat expand reverse shorten sort splice subset box sphere sphereDetail createInput createReader loadBytes loadJSONArray loadJSONObject loadStrings loadTable loadXML open parseXML saveTable selectFolder selectInput beginRaw beginRecord createOutput createWriter endRaw endRecord PrintWritersaveBytes saveJSONArray saveJSONObject saveStream saveStrings saveXML selectOutput popMatrix printMatrix pushMatrix resetMatrix rotate rotateX rotateY rotateZ scale shearX shearY translate ambientLight directionalLight lightFalloff lights lightSpecular noLights normal pointLight spotLight image imageMode loadImage noTint requestImage tint texture textureMode textureWrap blend copy filter get loadPixels set updatePixels blendMode loadShader PShaderresetShader shader createFont loadFont text textFont textAlign textLeading textMode textSize textWidth textAscent textDescent abs ceil constrain dist exp floor lerp log mag map max min norm pow round sq sqrt acos asin atan atan2 cos degrees radians sin tan noise noiseDetail noiseSeed random randomGaussian randomSeed"],p,p) -return A.a(q,q,q,q,q,A.b([$.ba(),$.b_(),$.c0(),$.aM(),$.bw()],t._),q,q,q,q,q,q,q,q,o,q,q,A.m(p,t.n),q,q,q,q,q,q,q,q)}) -s($,"beP","aTP",()=>{var q=null,p=$.bw(),o=t._ -return A.a(q,q,q,q,q,A.b([p,A.a(q,"[a-zA-Z_][\\da-zA-Z_]+\\.[\\da-zA-Z_]{1,3}",q,q,q,q,q,":",q,q,q,q,!0,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"(ncalls|tottime|cumtime)",q,q,q,q,q,"$",q,q,q,q,q,q,"ncalls tottime|10 cumtime|10 filename",q,q,q,10,q,q,q,q,q,q,q),A.a(q,"function calls",q,q,q,A.b([p],o),q,"$",q,q,q,q,q,q,q,q,q,q,10,q,q,q,q,q,q,q),$.c0(),$.aM(),A.a(q,"\\(",q,q,"string",q,q,"\\)$",q,q,q,!0,!0,q,q,q,q,q,0,q,q,q,q,q,q,q)],o),q,q,q,q,q,q,q,q,q,q,q,A.m(t.N,t.n),q,q,q,q,q,q,q,q)}) -s($,"beQ","aTQ",()=>{var q="~contains~2~contains~4~contains~9",p="string",o=null,n="~contains~2~contains~4~contains~5",m="~contains~2~contains~4~contains~11",l="~contains~2~contains~4~contains~10",k="~contains~2~contains~4",j="~contains~0",i="~contains~1",h="~contains~2",g="~contains~2~contains~3",f=t._,e=A.a(o,"`",o,o,p,A.b([$.aZ()],f),o,"`",o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o),d=A.a(o,"%",o,o,"comment",A.b([$.aq()],f),o,"$",o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o),c=A.a(o,"0\\'\\\\s",o,o,p,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o),b=A.a(o,"0\\'(\\\\\\'|.)",o,o,p,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o),a=A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,j,o,o,o,o,o,o,o,o,o),a0=A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,i,o,o,o,o,o,o,o,o,o),a1=A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,h,o,o,o,o,o,o,o,o,o),a2=A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,g,o,o,o,o,o,o,o,o,o),a3=A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,k,o,o,o,o,o,o,o,o,o),a4=A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,n,o,o,o,o,o,o,o,o,o),a5=$.b_(),a6=$.aM(),a7=$.c0(),a8=A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,q,o,o,o,o,o,o,o,o,o),a9=A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,l,o,o,o,o,o,o,o,o,o),b0=A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,m,o,o,o,o,o,o,o,o,o),b1=$.bw() -b0=A.l([q,e,n,d,m,c,l,b,k,A.a(o,"\\[",o,o,o,A.b([a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1],f),o,"\\]",o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o),g,A.a(o,":-",o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o),"~contains~2",A.a(o,"\\(",o,o,o,A.b([A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,j,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,i,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,h,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,g,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,k,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,n,o,o,o,o,o,o,o,o,o),a5,a6,a7,A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,q,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,l,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,m,o,o,o,o,o,o,o,o,o),b1],f),o,"\\)",o,o,o,o,o,o,o,o,o,o,0,o,o,o,o,o,o,o),"~contains~1",A.a(o,o,o,o,"symbol",o,o,o,o,o,o,o,o,o,o,o,o,o,0,o,o,o,o,o,o,A.b([A.a(o,"[A-Z][a-zA-Z0-9_]*",o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o),A.a(o,"_[A-Za-z0-9_]*",o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o)],f)),"~contains~0",A.a(o,"[a-z][A-Za-z0-9_]*",o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,0,o,o,o,o,o,o,o)],t.N,t.n) -return A.a(o,o,o,o,o,A.b([A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,j,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,i,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,h,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,g,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,k,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,n,o,o,o,o,o,o,o,o,o),a5,a6,a7,A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,q,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,l,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,m,o,o,o,o,o,o,o,o,o),b1,A.a(o,"\\.$",o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o)],f),o,o,o,o,o,o,o,o,o,o,o,b0,o,o,o,o,o,o,o,o)}) -s($,"beR","aTR",()=>{var q="~contains~1~starts",p=null,o=t._,n=A.l([q,A.a(p,p,p,p,p,p,p,"([ \\t\\f]*[:=][ \\t\\f]*|[ \\t\\f]+)",p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,A.a(p,p,p,p,"string",A.b([A.a(p,"\\\\\\n",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p)],o),p,"$",p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p),p,p)],t.N,t.n) -return A.a(p,p,p,!0,p,A.b([A.a(p,"^\\s*[!#]",p,p,"comment",A.b([$.aq(),A.a(p,"(?:TODO|FIXME|NOTE|BUG|XXX):",p,p,"doctag",p,p,p,p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p)],o),p,"$",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"([^\\\\\\W:= \\t\\f\\n]|\\\\.)+([ \\t\\f]*[:=][ \\t\\f]*|[ \\t\\f]+)",p,p,p,A.b([A.a(p,"([^\\\\\\W:= \\t\\f\\n]|\\\\.)+",p,p,"attr",p,p,p,p,!0,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p)],o),p,p,p,p,p,p,p,p,p,p,p,p,p,!0,p,p,p,A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,q,p,p,p,p,p,p,p,p,p),p,p),A.a(p,"([^\\\\:= \\t\\f\\n]|\\\\.)+([ \\t\\f]*[:=][ \\t\\f]*|[ \\t\\f]+)",p,p,p,A.b([A.a(p,"([^\\\\:= \\t\\f\\n]|\\\\.)+",p,p,"meta",p,p,p,p,!0,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p)],o),p,p,p,p,p,p,p,p,p,p,p,p,0,!0,p,p,p,A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,q,p,p,p,p,p,p,p,p,p),p,p),A.a(p,"([^\\\\:= \\t\\f\\n]|\\\\.)+[ \\t\\f]*$",p,p,"attr",p,p,p,p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p)],o),p,p,p,p,p,p,p,"\\S",p,p,p,n,p,p,p,p,p,p,p,p)}) -s($,"beS","aTS",()=>{var q=null,p=t.N,o=A.l(["keyword","package import option optional required repeated group oneof","built_in","double float int32 int64 uint32 uint64 sint32 sint64 fixed32 fixed64 sfixed32 sfixed64 bool string bytes","literal","true false"],p,p),n=t._ -return A.a(q,q,q,q,q,A.b([$.aM(),$.dB(),$.ba(),A.a(q,q,"message enum service",q,"class",A.b([A.a(q,"[a-zA-Z]\\w*",q,q,"title",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,A.a(q,q,q,q,q,q,q,q,q,q,!0,q,!0,q,q,q,q,q,q,q,q,q,q,q,q,q),q,q)],n),q,"\\{",q,q,q,q,q,"\\n",q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,q,"rpc",q,"function",q,q,";",q,q,q,q,!0,q,"rpc returns",q,q,q,q,q,q,q,q,q,q,q),A.a(q,"^\\s*[A-Z_]+",q,q,q,q,q,"\\s*=",q,q,q,q,!0,q,q,q,q,q,q,q,q,q,q,q,q,q)],n),q,q,q,q,q,q,q,q,o,q,q,A.m(p,t.n),q,q,q,q,q,q,q,q)}) -s($,"beT","aTT",()=>{var q="~contains~2",p="~contains~1",o=null,n="~contains~0",m="[a-zA-Z]\\w*",l=t._,k=t.N,j=A.l(["~contains~2",A.a(o,o,o,o,"string",A.b([$.aZ(),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,p,o,o,o,o,o,o,o,o,o)],l),o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,A.b([A.a(o,"'",o,o,o,o,o,"'",o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o),A.a(o,'"',o,o,o,o,o,'"',o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o)],l)),"~contains~1",A.a(o,"\\$([A-Za-z_]|::)(\\w|::)*",o,o,"variable",o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o),"~contains~0",A.a(o,"#",o,o,"comment",A.b([$.aq(),A.a(o,"(?:TODO|FIXME|NOTE|BUG|XXX):",o,o,"doctag",o,o,o,o,o,o,o,o,o,o,o,o,o,0,o,o,o,o,o,o,o)],l),o,"$",o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o)],k,t.n),i=A.b(["pp"],t.s),h=A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,n,o,o,o,o,o,o,o,o,o),g=A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,p,o,o,o,o,o,o,o,o,o),f=A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,q,o,o,o,o,o,o,o,o,o),e=A.a(o,o,"class",o,o,A.b([A.a(o,"([A-Za-z_]|::)(\\w|::)*",o,o,"title",o,o,o,o,o,o,o,o,o,o,o,o,o,0,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,n,o,o,o,o,o,o,o,o,o)],l),o,"\\{|;",o,o,o,o,o,"=",o,o,o,o,o,o,o,o,o,o,o,o),d=A.a(o,o,"define",o,o,A.b([A.a(o,m,o,o,"section",o,o,o,o,!0,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o)],l),o,"\\{",o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o),c=A.a(o,m,o,o,"keyword",o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o) -k=A.l(["keyword","and case default else elsif false if in import enherits node or true undef unless main settings $string ","literal","alias audit before loglevel noop require subscribe tag owner ensure group mode name|0 changes context force incl lens load_path onlyif provider returns root show_diff type_check en_address ip_address realname command environment hour monute month monthday special target weekday creates cwd ogoutput refresh refreshonly tries try_sleep umask backup checksum content ctime force ignore links mtime purge recurse recurselimit replace selinux_ignore_defaults selrange selrole seltype seluser source souirce_permissions sourceselect validate_cmd validate_replacement allowdupe attribute_membership auth_membership forcelocal gid ia_load_module members system host_aliases ip allowed_trunk_vlans description device_url duplex encapsulation etherchannel native_vlan speed principals allow_root auth_class auth_type authenticate_user k_of_n mechanisms rule session_owner shared options device fstype enable hasrestart directory present absent link atboot blockdevice device dump pass remounts poller_tag use message withpath adminfile allow_virtual allowcdrom category configfiles flavor install_options instance package_settings platform responsefile status uninstall_options vendor unless_system_user unless_uid binary control flags hasstatus manifest pattern restart running start stop allowdupe auths expiry gid groups home iterations key_membership keys managehome membership password password_max_age password_min_age profile_membership profiles project purge_ssh_keys role_membership roles salt shell uid baseurl cost descr enabled enablegroups exclude failovermethod gpgcheck gpgkey http_caching include includepkgs keepalive metadata_expire metalink mirrorlist priority protect proxy proxy_password proxy_username repo_gpgcheck s3_enabled skip_if_unavailable sslcacert sslclientcert sslclientkey sslverify mounted","built_in","architecture augeasversion blockdevices boardmanufacturer boardproductname boardserialnumber cfkey dhcp_servers domain ec2_ ec2_userdata facterversion filesystems ldom fqdn gid hardwareisa hardwaremodel hostname id|0 interfaces ipaddress ipaddress_ ipaddress6 ipaddress6_ iphostnumber is_virtual kernel kernelmajversion kernelrelease kernelversion kernelrelease kernelversion lsbdistcodename lsbdistdescription lsbdistid lsbdistrelease lsbmajdistrelease lsbminordistrelease lsbrelease macaddress macaddress_ macosx_buildversion macosx_productname macosx_productversion macosx_productverson_major macosx_productversion_minor manufacturer memoryfree memorysize netmask metmask_ network_ operatingsystem operatingsystemmajrelease operatingsystemrelease osfamily partitions path physicalprocessorcount processor processorcount productname ps puppetversion rubysitedir rubyversion selinux selinux_config_mode selinux_config_policy selinux_current_mode selinux_current_mode selinux_enforced selinux_policyversion serialnumber sp_ sshdsakey sshecdsakey sshrsakey swapencrypted swapfree swapsize timezone type uniqueid uptime uptime_days uptime_hours uptime_seconds uuid virtual vlans xendomains zfs_version zonenae zones zpool_version"],k,k) -return A.a(i,o,o,o,o,A.b([h,g,f,e,d,A.a(o,"[a-zA-Z]\\w*\\s+\\{",o,o,o,A.b([c,A.a(o,"\\{",o,o,o,A.b([A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,q,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,n,o,o,o,o,o,o,o,o,o),A.a(o,"[a-zA-Z_]+\\s*=>",o,o,o,A.b([A.a(o,m,o,o,"attr",o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o)],l),o,"=>",o,o,o,o,o,o,o,o,o,o,o,!0,o,o,o,o,o,o),A.a(o,u.K,o,o,"number",o,o,o,o,o,o,o,o,o,o,o,o,o,0,o,o,o,o,o,o,o),A.a(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,p,o,o,o,o,o,o,o,o,o)],l),o,"\\}",o,o,o,o,o,o,k,o,o,o,0,o,o,o,o,o,o,o)],l),o,"\\S",o,o,o,o,o,o,o,o,o,o,0,!0,o,o,o,o,o,o)],l),o,o,o,o,o,o,o,o,o,o,o,j,o,o,o,o,o,o,o,o)}) -s($,"beU","aTU",()=>{var q=null,p=t._ -return A.a(A.b(["pb","pbi"],t.s),q,q,q,q,A.b([A.a(q,";",q,q,"comment",A.b([$.aq(),A.a(q,"(?:TODO|FIXME|NOTE|BUG|XXX):",q,q,"doctag",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q)],p),q,"$",q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q),A.a(q,"\\b(Procedure|Declare)(C|CDLL|DLL)?\\b",q,q,"function",A.b([A.a(q,"(Procedure|Declare)(C|CDLL|DLL)?",q,q,"keyword",q,q,q,q,q,q,q,!0,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\.\\w*",q,q,"type",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),$.dU()],p),q,"\\(",q,q,q,q,!0,q,q,q,q,q,q,!0,q,q,q,q,q,q),A.a(q,'(\\x7e)?"',q,q,"string",q,q,'"',q,q,q,q,q,"\\n",q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"#[a-zA-Z_]\\w*\\$?",q,q,"symbol",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],p),q,q,q,q,q,q,q,q,"Align And Array As Break CallDebugger Case CompilerCase CompilerDefault CompilerElse CompilerElseIf CompilerEndIf CompilerEndSelect CompilerError CompilerIf CompilerSelect CompilerWarning Continue Data DataSection Debug DebugLevel Declare DeclareC DeclareCDLL DeclareDLL DeclareModule Default Define Dim DisableASM DisableDebugger DisableExplicit Else ElseIf EnableASM EnableDebugger EnableExplicit End EndDataSection EndDeclareModule EndEnumeration EndIf EndImport EndInterface EndMacro EndModule EndProcedure EndSelect EndStructure EndStructureUnion EndWith Enumeration EnumerationBinary Extends FakeReturn For ForEach ForEver Global Gosub Goto If Import ImportC IncludeBinary IncludeFile IncludePath Interface List Macro MacroExpandedCount Map Module NewList NewMap Next Not Or Procedure ProcedureC ProcedureCDLL ProcedureDLL ProcedureReturn Protected Prototype PrototypeC ReDim Read Repeat Restore Return Runtime Select Shared Static Step Structure StructureUnion Swap Threaded To UndefineMacro Until Until UnuseModule UseModule Wend While With XIncludeFile XOr",q,q,A.m(t.N,t.n),q,q,q,q,q,q,q,q)}) -s($,"beV","aTV",()=>{var q,p,o,n,m,l,k,j="~contains~3~variants~2~contains~3",i="and elif is global as in if from raise for except finally print import pass return exec else break not with class assert yield try while continue del or def lambda async await nonlocal|10",h="Ellipsis NotImplemented",g="~contains~3",f=null,e="~contains~1",d="~contains~0",c="~contains~3~variants~2~contains~2",b=t.N,a=A.l(["keyword",i,"built_in",h,"literal","False None True"],b,b),a0=t._ -a=A.a(f,"\\{",f,f,"subst",A.b([A.a(f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,g,f,f,f,f,f,f,f,f,f),A.a(f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,e,f,f,f,f,f,f,f,f,f),A.a(f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,d,f,f,f,f,f,f,f,f,f)],a0),f,"\\}",f,f,f,f,f,"#",a,f,f,f,f,f,f,f,f,f,f,f) -q=A.a(f,"\\{\\{",f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,0,f,f,f,f,f,f,f) -p=$.aZ() -p=A.l([j,a,c,q,"~contains~3",A.a(f,f,f,f,"string",A.b([p],a0),f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,A.b([A.a(f,"(u|b)?r?'''",f,f,f,A.b([p,A.a(f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,d,f,f,f,f,f,f,f,f,f)],a0),f,"'''",f,f,f,f,f,f,f,f,f,f,10,f,f,f,f,f,f,f),A.a(f,'(u|b)?r?"""',f,f,f,A.b([p,A.a(f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,d,f,f,f,f,f,f,f,f,f)],a0),f,'"""',f,f,f,f,f,f,f,f,f,f,10,f,f,f,f,f,f,f),A.a(f,"(fr|rf|f)'''",f,f,f,A.b([p,A.a(f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,d,f,f,f,f,f,f,f,f,f),A.a(f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,c,f,f,f,f,f,f,f,f,f),A.a(f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,j,f,f,f,f,f,f,f,f,f)],a0),f,"'''",f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f),A.a(f,'(fr|rf|f)"""',f,f,f,A.b([p,A.a(f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,d,f,f,f,f,f,f,f,f,f),A.a(f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,c,f,f,f,f,f,f,f,f,f),A.a(f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,j,f,f,f,f,f,f,f,f,f)],a0),f,'"""',f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f),A.a(f,"(u|r|ur)'",f,f,f,f,f,"'",f,f,f,f,f,f,f,f,f,f,10,f,f,f,f,f,f,f),A.a(f,'(u|r|ur)"',f,f,f,f,f,'"',f,f,f,f,f,f,f,f,f,f,10,f,f,f,f,f,f,f),A.a(f,"(b|br)'",f,f,f,f,f,"'",f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f),A.a(f,'(b|br)"',f,f,f,f,f,'"',f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f),A.a(f,"(fr|rf|f)'",f,f,f,A.b([p,A.a(f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,c,f,f,f,f,f,f,f,f,f),A.a(f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,j,f,f,f,f,f,f,f,f,f)],a0),f,"'",f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f),A.a(f,'(fr|rf|f)"',f,f,f,A.b([p,A.a(f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,c,f,f,f,f,f,f,f,f,f),A.a(f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,j,f,f,f,f,f,f,f,f,f)],a0),f,'"',f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f),$.c0(),$.aM()],a0)),"~contains~1",A.a(f,f,f,f,"number",f,f,f,f,f,f,f,f,f,f,f,f,f,0,f,f,f,f,f,f,A.b([A.a(f,"\\b(0b[01]+)[lLjJ]?",f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f),A.a(f,"\\b(0o[0-7]+)[lLjJ]?",f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f),A.a(f,"(-?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)[lLjJ]?",f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f)],a0)),"~contains~0",A.a(f,"^(>>>|\\.\\.\\.) ",f,f,"meta",f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f)],b,t.n) -q=A.b(["py","gyp","ipython"],t.s) -b=A.l(["keyword",i,"built_in",h,"literal","False None True"],b,b) -a=A.a(f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,d,f,f,f,f,f,f,f,f,f) -o=A.a(f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,e,f,f,f,f,f,f,f,f,f) -n=A.a(f,f,"if",f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,0,f,f,f,f,f,f,f) -m=A.a(f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,g,f,f,f,f,f,f,f,f,f) -l=$.ch() -k=A.b([A.a(f,f,"def",f,"function",f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f),A.a(f,f,"class",f,"class",f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f)],a0) -return A.a(q,f,f,f,f,A.b([a,o,n,m,l,A.a(f,f,f,f,f,A.b([$.dU(),A.a(f,"\\(",f,f,"params",A.b([A.a(f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,!0,f,f,f,f),A.a(f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,d,f,f,f,f,f,f,f,f,f),A.a(f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,e,f,f,f,f,f,f,f,f,f),A.a(f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,g,f,f,f,f,f,f,f,f,f),l],a0),f,"\\)",f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f),A.a(f,"->",f,f,f,f,f,f,f,f,!0,f,f,f,"None",f,f,f,f,f,f,f,f,f,f,f)],a0),f,":",f,f,f,f,f,"[${=;\\n,]",f,f,f,f,f,f,f,f,f,f,f,k),A.a(f,"^[\\t ]*@",f,f,"meta",f,f,"$",f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f),A.a(f,"\\b(print|exec)\\(",f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f)],a0),f,f,f,f,f,f,f,"(<\\/|->|\\?)|=>",b,f,f,p,f,f,f,f,f,f,f,f)}) -s($,"beW","aTW",()=>{var q=null,p=t.N,o=A.b(["k","kdb"],t.s),n=A.l(["keyword","do while select delete by update from","literal","0b 1b","built_in","neg not null string reciprocal floor ceiling signum mod xbar xlog and or each scan over prior mmu lsq inv md5 ltime gtime count first var dev med cov cor all any rand sums prds mins maxs fills deltas ratios avgs differ prev next rank reverse iasc idesc asc desc msum mcount mavg mdev xrank mmin mmax xprev rotate distinct group where flip type key til get value attr cut set upsert raze union inter except cross sv vs sublist enlist read0 read1 hopen hclose hdel hsym hcount peach system ltrim rtrim trim lower upper ssr view tables views cols xcols keys xkey xcol xasc xdesc fkeys meta lj aj aj0 ij pj asof uj ww wj wj1 fby xgroup ungroup ej save load rsave rload show csv parse eval min max avg wavg wsum sin cos tan sum","type","`float `double int `timestamp `timespan `datetime `time `boolean `symbol `char `byte `short `long `real `month `date `minute `second `guid"],p,p) -return A.a(o,q,q,q,q,A.b([$.ba(),$.aM(),$.bw()],t._),q,q,q,q,q,q,q,q,n,"(`?)[A-Za-z0-9_]+\\b",q,A.m(p,t.n),q,q,q,q,q,q,q,q)}) -s($,"beX","aTX",()=>{var q=null,p="string",o="function",n="attribute",m="[a-zA-Z_][a-zA-Z0-9\\._]*",l=t.N,k=t.s,j=A.b(["qt"],k),i=A.l(["keyword","in of on if for while finally var new function do return void else break catch instanceof with throw case default try this switch continue typeof delete let yield const export super debugger as async await import","literal","true false null undefined NaN Infinity","built_in","eval isFinite isNaN parseFloat parseInt decodeURI decodeURIComponent encodeURI encodeURIComponent escape unescape Object Function Boolean Error EvalError InternalError RangeError ReferenceError StopIteration SyntaxError TypeError URIError Number Math Date String RegExp Array Float32Array Float64Array Int16Array Int32Array Int8Array Uint16Array Uint32Array Uint8Array Uint8ClampedArray ArrayBuffer DataView JSON Intl arguments require module console window document Symbol Set Map WeakSet WeakMap Proxy Reflect Behavior bool color coordinate date double enumeration font geocircle georectangle geoshape int list matrix4x4 parent point quaternion real rect size string url variant vector2d vector3d vector4dPromise"],l,l),h=A.a(q,"^\\s*['\"]use (strict|asm)['\"]",q,q,"meta",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),g=$.c0(),f=$.aM(),e=t._,d=A.a(q,"`",q,q,p,A.b([$.aZ(),A.a(q,"\\$\\{",q,q,"subst",q,q,"\\}",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],e),q,"`",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),c=$.ba(),b=$.b_() -return A.a(j,q,q,!1,q,A.b([h,g,f,d,c,b,A.a(q,q,q,q,"number",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,A.b([A.a(q,"\\b(0[bB][01]+)",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\b(0[oO][0-7]+)",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,u.O,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],e)),A.a(q,u.X,q,q,q,A.b([c,b,$.yQ(),A.a(q,"<",q,q,q,q,q,">\\s*[);\\]]",q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,A.b(["xml"],k),q)],e),q,q,q,q,q,q,q,q,"return throw case",q,q,q,0,q,q,q,q,q,q,q),A.a(q,"\\bsignal\\b",q,q,"keyword",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,A.a(q,q,q,q,p,q,q,"(\\(|:|=|;|,|//|/\\*|$)",q,q,q,q,q,q,q,q,q,q,q,q,!0,q,q,q,q,q),q,q),A.a(q,"\\bproperty\\b",q,q,"keyword",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,A.a(q,q,q,q,p,q,q,"(:|=|;|,|//|/\\*|$)",q,q,q,q,q,q,q,q,q,q,q,q,!0,q,q,q,q,q),q,q),A.a(q,q,o,q,o,A.b([A.a(q,"[A-Za-z$_][0-9A-Za-z$_]*",q,q,"title",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q),A.a(q,"\\(",q,q,"params",A.b([c,b],e),q,"\\)",q,q,q,!0,!0,q,q,q,q,q,q,q,q,q,q,q,q,q)],e),q,"\\{",q,q,q,q,!0,"\\[|%",q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\.[a-zA-Z]\\w*",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q),A.a(q,"\\bid\\s*:",q,q,n,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,A.a(q,q,q,q,p,q,q,m,q,q,q,q,q,q,q,q,q,q,q,q,!1,q,q,q,q,q),q,q),A.a(q,"[a-zA-Z_][a-zA-Z0-9\\._]*\\s*:",q,q,q,A.b([A.a(q,m,q,q,n,q,q,"\\s*:",q,q,q,q,!0,q,q,q,q,q,0,q,q,q,q,q,q,q)],e),q,q,q,q,q,q,q,q,q,q,q,q,0,!0,q,q,q,q,q,q),A.a(q,"[a-zA-Z_][a-zA-Z0-9\\._]*\\s*{",q,q,q,A.b([A.a(q,m,q,q,"title",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q)],e),q,"{",q,q,q,q,q,q,q,q,q,q,0,!0,q,q,q,q,q,q)],e),q,q,q,q,q,q,q,"#",i,q,q,A.m(l,t.n),q,q,q,q,q,q,q,q)}) -s($,"beY","aTY",()=>{var q="([a-zA-Z]|\\.[a-zA-Z.])[a-zA-Z0-9._]*",p=null,o="number",n=t.N,m=t._ -return A.a(p,p,p,p,p,A.b([$.ch(),A.a(p,q,p,p,p,p,p,p,p,p,p,p,p,p,A.l(["keyword","function if in break next repeat else for return switch while try tryCatch stop warning require library attach detach source setMethod setGeneric setGroupGeneric setClass ...","literal","NULL NA TRUE FALSE T F Inf NaN NA_integer_|10 NA_real_|10 NA_character_|10 NA_complex_|10"],n,n),q,p,p,0,p,p,p,p,p,p,p),A.a(p,"0[xX][0-9a-fA-F]+[Li]?\\b",p,p,o,p,p,p,p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p),A.a(p,"\\d+(?:[eE][+\\-]?\\d*)?L\\b",p,p,o,p,p,p,p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p),A.a(p,"\\d+\\.(?!\\d)(?:i\\b)?",p,p,o,p,p,p,p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p),A.a(p,"\\d+(?:\\.\\d*)?(?:[eE][+\\-]?\\d*)?i?\\b",p,p,o,p,p,p,p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p),A.a(p,"\\.\\d+(?:[eE][+\\-]?\\d*)?i?\\b",p,p,o,p,p,p,p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p),A.a(p,"`",p,p,p,p,p,"`",p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p),A.a(p,p,p,p,"string",A.b([$.aZ()],m),p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,A.b([A.a(p,'"',p,p,p,p,p,'"',p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"'",p,p,p,p,p,"'",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p)],m))],m),p,p,p,p,p,p,p,p,p,p,p,A.m(n,t.n),p,p,p,p,p,p,p,p)}) -s($,"beZ","aTZ",()=>{var q,p,o,n,m,l,k,j,i,h,g,f,e,d="~contains~6",c="constructor",b="and as asr assert begin class constraint do done downto else end exception externalfor fun function functor if in include inherit initializerland lazy let lor lsl lsr lxor match method mod module mutable new nonrecobject of open or private rec sig struct then to try type val virtual when while with",a="array bool bytes char exn|5 float int int32 int64 list lazy_t|5 nativeint|5 ref string unit ",a0="literal",a1="~contains~4~contains~1",a2=null,a3="params",a4="~contains~4~contains~2",a5="operator",a6="~contains~4~contains~0",a7="identifier",a8="\\x7e?[a-z$_][0-9a-zA-Z$_]*",a9="~contains~11~variants~1~contains~0~variants~0~contains~1~contains~1~variants~1~contains~4",b0="module",b1="\\b`?[A-Z$_][0-9a-zA-Z$_]*",b2="`?[A-Z$_][0-9a-zA-Z$_]*",b3="~contains~11~variants~1~contains~0~variants~0~contains~1~contains~1",b4="~contains~11",b5=t.N,b6=A.l(["keyword",b,"built_in",a,"literal","true false"],b5,b5),b7=$.aM(),b8=t._ -b6=A.a(a2,"`?[A-Z$_][0-9a-zA-Z$_]*\\(",a2,a2,c,A.b([b7,A.a(a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a1,a2,a2,a2,a2,a2,a2,a2,a2,a2),A.a(a2,"\\b\\x7e?[a-z$_][0-9a-zA-Z$_]*",a2,a2,a3,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2)],b8),a2,"\\)",a2,a2,a2,a2,a2,"\\n",b6,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2) -q=A.a(a2,a2,a2,a2,"number",a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,0,a2,a2,a2,a2,a2,a2,A.b([A.a(a2,u.a,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2),A.a(a2,"\\(\\-\\b(0[xX][a-fA-F0-9_]+[Lln]?|0[oO][0-7_]+[Lln]?|0[bB][01_]+[Lln]?|[0-9][0-9_]*([Lln]|(\\.[0-9_]*)?([eE][-+]?[0-9_]+)?)?)\\)",a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2)],b8)) -p=A.a(a2,"(\\|\\||\\&\\&|\\+\\+|\\*\\*|\\+\\.|\\*|\\/|\\*\\.|\\/\\.|\\.\\.\\.|\\|\\>|==|===)",a2,a2,a5,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,0,a2,a2,a2,a2,a2,a2,a2) -o=A.a(a2,a8,a2,a2,a7,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,0,a2,a2,a2,a2,a2,a2,a2) -n=A.a(a2,b1,a2,a2,b0,A.b([A.a(a2,b2,a2,a2,a7,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,0,a2,a2,a2,a2,a2,a2,a2)],b8),a2,".",a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,!0,a2,a2,a2,a2,a2,a2) -m=A.l(["keyword",b,"built_in",a,"literal","true false"],b5,b5) -l=A.b([A.a(a2,"\\b(`?[A-Z$_][0-9a-zA-Z$_]*\\.)+\\x7e?[a-z$_][0-9a-zA-Z$_]*",a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2),A.a(a2,"\\b(`?[A-Z$_][0-9a-zA-Z$_]*\\.)+\\(",a2,a2,a2,A.b([A.a(a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,b4,a2,a2,a2,a2,a2,a2,a2,a2,a2),A.a(a2,"\\(",a2,a2,a2,a2,a2,"\\)",a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,!0,a2,a2,a2),b7,A.a(a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a1,a2,a2,a2,a2,a2,a2,a2,a2,a2),A.a(a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a9,a2,a2,a2,a2,a2,a2,a2,a2,a2),A.a(a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,b4,a2,a2,a2,a2,a2,a2,a2,a2,a2)],b8),a2,"\\)",a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,!0,a2,a2,a2,a2,a2,a2),A.a(a2,"\\b(`?[A-Z$_][0-9a-zA-Z$_]*\\.)+{",a2,a2,a2,a2,a2,"}",a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2)],b8) -l=A.l(["~contains~6",b6,a4,q,a1,p,a6,o,a9,n,b3,A.a(a2,a2,a2,a2,"module-access",A.b([b7,A.a(a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a1,a2,a2,a2,a2,a2,a2,a2,a2,a2),A.a(a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a9,a2,a2,a2,a2,a2,a2,a2,a2,a2),A.a(a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,b4,a2,a2,a2,a2,a2,a2,a2,a2,a2)],b8),a2,a2,a2,a2,a2,a2,a2,a2,m,a2,a2,a2,a2,!0,a2,a2,a2,a2,a2,l),"~contains~11",A.a(a2,a2,a2,a2,"function",a2,a2,a2,a2,a2,a2,a2,a2,a2,A.l(["keyword",b,"built_in",a,"literal","true false"],b5,b5),a2,a2,a2,0,a2,a2,a2,a2,a2,a2,A.b([A.a(a2,"\\s(\\(\\.?.*?\\)|\\x7e?[a-z$_][0-9a-zA-Z$_]*)\\s*=>",a2,a2,a2,A.b([A.a(a2,a2,a2,a2,a3,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,A.b([A.a(a2,a8,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2),A.a(a2,"\\x7e?[a-z$_][0-9a-zA-Z$_]*(s*:s*[a-z$_][0-9a-z$_]*((s*('?[a-z$_][0-9a-z$_]*s*(,'?[a-z$_][0-9a-z$_]*)*)?s*))?)?(s*:s*[a-z$_][0-9a-z$_]*((s*('?[a-z$_][0-9a-z$_]*s*(,'?[a-z$_][0-9a-z$_]*)*)?s*))?)?",a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2),A.a(a2,"\\(\\s*\\)",a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2)],b8))],b8),a2,"\\s*=>",a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,0,!0,a2,a2,a2,a2,a2,a2),A.a(a2,"\\s\\(\\.?[^;\\|]*\\)\\s*=>",a2,a2,a2,A.b([A.a(a2,a2,a2,a2,a3,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,0,a2,a2,a2,a2,a2,a2,A.b([A.a(a2,a8,a2,a2,a2,A.b([A.a(a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a1,a2,a2,a2,a2,a2,a2,a2,a2,a2),A.a(a2,":",a2,a2,"typing",A.b([A.a(a2,b1,a2,a2,b0,A.b([A.a(a2,b2,a2,a2,a7,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,0,a2,a2,a2,a2,a2,a2,a2)],b8),a2,".",a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,0,!0,a2,a2,a2,a2,a2,a2),A.a(a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,b3,a2,a2,a2,a2,a2,a2,a2,a2,a2)],b8),a2,"(,|\\n)",a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,0,!0,a2,a2,a2,a2,a2,a2)],b8),a2,"(,|\\n|\\))",a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,0,a2,a2,a2,a2,a2,a2,a2)],b8))],b8),a2,"\\s=>",a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,0,!0,a2,a2,a2,a2,a2,a2),A.a(a2,"\\(\\.\\s\\x7e?[a-z$_][0-9a-zA-Z$_]*\\)\\s*=>",a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2)],b8))],b5,t.n) -m=A.b(["re"],t.s) -n=A.l(["keyword",b,"built_in",a,"literal","true false"],b5,b5) -o=A.a(a2,"/\\*",a2,a2,"comment",A.b([$.aq(),A.a(a2,"(?:TODO|FIXME|NOTE|BUG|XXX):",a2,a2,"doctag",a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,0,a2,a2,a2,a2,a2,a2,a2)],b8),a2,"\\*/",a2,a2,a2,a2,a2,"^(\\#,\\/\\/)",a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2) -p=A.a(a2,"'(\\\\[^']+|[^'])'",a2,a2,"character",a2,a2,a2,a2,a2,a2,a2,a2,"\\n",a2,a2,a2,a2,0,a2,a2,a2,a2,a2,a2,a2) -q=A.a(a2,"\\(\\)",a2,a2,a0,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,0,a2,a2,a2,a2,a2,a2,a2) -b6=A.a(a2,"\\[\\|",a2,a2,a0,A.b([A.a(a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a6,a2,a2,a2,a2,a2,a2,a2,a2,a2),A.a(a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a1,a2,a2,a2,a2,a2,a2,a2,a2,a2),A.a(a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a4,a2,a2,a2,a2,a2,a2,a2,a2,a2)],b8),a2,"\\|\\]",a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,0,a2,a2,a2,a2,a2,a2,a2) -k=A.a(a2,"\\[",a2,a2,a0,A.b([A.a(a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a6,a2,a2,a2,a2,a2,a2,a2,a2,a2),A.a(a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a1,a2,a2,a2,a2,a2,a2,a2,a2,a2),A.a(a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a4,a2,a2,a2,a2,a2,a2,a2,a2,a2)],b8),a2,"\\]",a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,0,a2,a2,a2,a2,a2,a2,a2) -j=A.a(a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,d,a2,a2,a2,a2,a2,a2,a2,a2,a2) -i=A.a(a2,"\\s+(\\|\\||\\&\\&|\\+\\+|\\*\\*|\\+\\.|\\*|\\/|\\*\\.|\\/\\.|\\.\\.\\.|\\|\\>|==|===)\\s+",a2,a2,a5,a2,a2,a2,a2,a2,a2,a2,a2,"\\-\\->",a2,a2,a2,a2,0,a2,a2,a2,a2,a2,a2,a2) -h=A.a(a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a4,a2,a2,a2,a2,a2,a2,a2,a2,a2) -g=$.ba() -f=A.l(["keyword",b,"built_in",a,"literal","true false"],b5,b5) -f=A.a(a2,"\\|",a2,a2,"pattern-match",A.b([A.a(a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,d,a2,a2,a2,a2,a2,a2,a2,a2,a2),A.a(a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a1,a2,a2,a2,a2,a2,a2,a2,a2,a2),A.a(a2,b2,a2,a2,c,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,0,a2,a2,a2,a2,a2,a2,a2)],b8),a2,"=>",a2,a2,a2,a2,a2,a2,f,a2,a2,a2,0,!0,a2,a2,a2,a2,a2,a2) -e=A.a(a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,b4,a2,a2,a2,a2,a2,a2,a2,a2,a2) -b5=A.l(["keyword",b,"built_in",a,"literal","true false"],b5,b5) -return A.a(m,a2,a2,a2,a2,A.b([o,p,b7,q,b6,k,j,i,h,g,f,e,A.a(a2,"\\bmodule\\s+\\x7e?[a-z$_][0-9a-zA-Z$_]*\\s+`?[A-Z$_][0-9a-zA-Z$_]*\\s+=\\s+{",a2,a2,"module-def",A.b([A.a(a2,b2,a2,a2,b0,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,0,a2,a2,a2,a2,a2,a2,a2),A.a(a2,"{",a2,a2,a2,a2,a2,"}",a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,!0,a2,a2,a2),b7,A.a(a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a1,a2,a2,a2,a2,a2,a2,a2,a2,a2),A.a(a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a9,a2,a2,a2,a2,a2,a2,a2,a2,a2),A.a(a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,b4,a2,a2,a2,a2,a2,a2,a2,a2,a2)],b8),a2,"}",a2,a2,a2,a2,a2,a2,b5,a2,a2,a2,0,!0,a2,a2,a2,a2,a2,a2),A.a(a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,b3,a2,a2,a2,a2,a2,a2,a2,a2,a2)],b8),a2,a2,a2,a2,a2,a2,a2,"(:\\-|:=|\\${|\\+=)",n,a2,a2,l,a2,a2,a2,a2,a2,a2,a2,a2)}) -s($,"bf_","aU_",()=>{var q=null -return A.a(q,q,q,q,q,A.b([$.ch(),$.bw(),$.c0(),$.aM()],t._),q,q,q,q,q,q,q,"{var q="~contains~0~contains~0",p=null,o=t._,n=A.l([q,A.a(p,"[a-zA-Z-_]+",p,p,"attribute",p,p,"\\s*:",p,p,p,p,!0,p,p,p,p,p,p,p,p,p,p,A.a(p,p,p,p,p,A.b([A.a(p,"\\.[a-zA-Z-_]+",p,p,"variable",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"\\(optional\\)",p,p,"keyword",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p)],o),p,";",p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p),p,p)],t.N,t.n),m=A.b(["graph","instances"],t.s),l=A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,q,p,p,p,p,p,p,p,p,p),k=$.ch() -return A.a(m,p,p,!0,p,A.b([A.a(p,"^facet [a-zA-Z-_][^\\n{]+\\{",p,p,p,A.b([l,k],o),p,"}",p,p,p,p,p,p,"facet",p,p,p,p,p,p,p,p,p,p,p),A.a(p,"^\\s*instance of [a-zA-Z-_][^\\n{]+\\{",p,p,p,A.b([A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,!0,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,q,p,p,p,p,p,p,p,p,p),k],o),p,"}",p,p,p,p,p,"\\S","name count channels instance-data instance-state instance of",p,p,p,p,p,p,p,p,p,p,p),A.a(p,"^[a-zA-Z-_][^\\n{]+\\{",p,p,p,A.b([A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,q,p,p,p,p,p,p,p,p,p),k],o),p,"}",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),k],o),p,p,p,p,p,p,p,p,"import",p,p,n,p,p,p,p,p,p,p,p)}) -s($,"bf2","aU1",()=>{var q="~contains~3",p=null,o="~contains~2~contains~1",n="variable",m="~contains~2",l="$",k=A.a(p,"'",p,p,"string",p,p,"'",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),j=t._,i=A.a(p,p,p,p,n,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,A.b([A.a(p,"\\$[\\w\\d#@][\\w\\d_]*",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"\\$\\{(.*?)}",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p)],j)),h=$.aZ(),g=t.N -h=A.l(["~contains~3",k,o,i,"~contains~2",A.a(p,'"',p,p,"string",A.b([h,A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,o,p,p,p,p,p,p,p,p,p),A.a(p,"\\$\\(",p,p,n,A.b([h],j),p,"\\)",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p)],j),p,'"',p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p)],g,t.n) -i=A.b(["routeros","mikrotik"],t.s) -g=A.l(["literal","true false yes no nothing nil null","keyword","foreach do while for if from to step else on-error and or not in :foreach :do :while :for :if :from :to :step :else :on-error :and :or :not :in :global :local :beep :delay :put :len :typeof :pick :log :time :set :find :environment :terminal :error :execute :parse :resolve :toarray :tobool :toid :toip :toip6 :tonum :tostr :totime"],g,g) -return A.a(i,p,p,!0,p,A.b([A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,".",p,p,p,p,p,p,p,p,p,p,p,A.b([A.a(p,"^@",p,p,p,p,p,l,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"\\/\\*",p,p,p,p,p,"\\*\\/",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"%%",p,p,p,p,p,l,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"^'",p,p,p,p,p,l,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"^\\s*\\/[\\w-]+=",p,p,p,p,p,l,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"\\/\\/",p,p,p,p,p,l,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"^\\[\\<",p,p,p,p,p,"\\>\\]$",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"<\\/",p,p,p,p,p,">",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"^facet ",p,p,p,p,p,"\\}",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"^1\\.\\.(\\d+)$",p,p,p,p,p,l,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p)],j)),A.a(p,"^#",p,p,"comment",A.b([$.aq(),A.a(p,"(?:TODO|FIXME|NOTE|BUG|XXX):",p,p,"doctag",p,p,p,p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p)],j),p,l,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,m,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,q,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,o,p,p,p,p,p,p,p,p,p),A.a(p,"[\\w-]+\\=([^\\s\\{\\}\\[\\]\\(\\)]+)",p,p,p,A.b([A.a(p,"[^=]+",p,p,"attribute",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"=",p,p,p,A.b([A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,m,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,q,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,o,p,p,p,p,p,p,p,p,p),A.a(p,"\\b(true|false|yes|no|nothing|nil|null)\\b",p,p,"literal",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,'("[^"]*"|[^\\s\\{\\}\\[\\]]+)',p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p)],j),p,p,p,p,!0,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p)],j),p,p,p,p,p,p,p,p,p,p,p,p,0,!0,p,p,p,p,p,p),A.a(p,"\\*[0-9a-fA-F]+",p,p,"number",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"\\b(add|remove|enable|disable|set|get|print|export|edit|find|run|debug|error|info|warning)([\\s[(]|])",p,p,p,A.b([A.a(p,"\\w+",p,p,"builtin-name",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p)],j),p,p,p,p,p,p,p,p,p,p,p,p,p,!0,p,p,p,p,p,p),A.a(p,p,p,p,"built_in",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,A.b([A.a(p,"(\\.\\./|/|\\s)((traffic-flow|traffic-generator|firewall|scheduler|aaa|accounting|address-list|address|align|area|bandwidth-server|bfd|bgp|bridge|client|clock|community|config|connection|console|customer|default|dhcp-client|dhcp-server|discovery|dns|e-mail|ethernet|filter|firewall|firmware|gps|graphing|group|hardware|health|hotspot|identity|igmp-proxy|incoming|instance|interface|ip|ipsec|ipv6|irq|l2tp-server|lcd|ldp|logging|mac-server|mac-winbox|mangle|manual|mirror|mme|mpls|nat|nd|neighbor|network|note|ntp|ospf|ospf-v3|ovpn-server|page|peer|pim|ping|policy|pool|port|ppp|pppoe-client|pptp-server|prefix|profile|proposal|proxy|queue|radius|resource|rip|ripng|route|routing|screen|script|security-profiles|server|service|service-port|settings|shares|smb|sms|sniffer|snmp|snooper|socks|sstp-server|system|tool|tracking|type|upgrade|upnp|user-manager|users|user|vlan|secret|vrrp|watchdog|web-access|wireless|pptp|pppoe|lan|wan|layer7-protocol|lease|simple|raw);?\\s)+",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,10,p,p,p,p,p,p,p),A.a(p,"\\.\\.",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p)],j))],j),p,p,p,p,p,p,p,p,g,":?[\\w-]+",p,h,p,p,p,p,p,p,p,p)}) -s($,"bf3","aU2",()=>{var q=null,p=t.N,o=A.l(["keyword","float color point normal vector matrix while for if do return else break extern continue","built_in","abs acos ambient area asin atan atmosphere attribute calculatenormal ceil cellnoise clamp comp concat cos degrees depth Deriv diffuse distance Du Dv environment exp faceforward filterstep floor format fresnel incident length lightsource log match max min mod noise normalize ntransform opposite option phong pnoise pow printf ptlined radians random reflect refract renderinfo round setcomp setxcomp setycomp setzcomp shadow sign sin smoothstep specular specularbrdf spline sqrt step tan texture textureinfo trace transform vtransform xcomp ycomp zcomp"],p,p) -return A.a(q,q,q,q,q,A.b([$.ba(),$.b_(),$.aM(),$.c0(),$.bw(),A.a(q,"#",q,q,"meta",q,q,"$",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,q,"surface displacement light volume imager",q,"class",q,q,"\\(",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,q,"illuminate illuminance gather",q,q,q,q,"\\(",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],t._),q,q,q,q,q,q,q,"{var q,p,o,n,m,l="~contains~3~starts~contains~0~contains~1~contains~3~contains~1~contains~9",k="and then defined module in return redo if BEGIN retry end for self when next until do begin unless END rescue else break undef not super class case require yield alias while ensure elsif or include attr_reader attr_writer attr_accessor",j=null,i="~contains~3~starts~contains~0~contains~1~contains~3~contains~1~contains~8",h="~contains~3~starts~contains~0~contains~1~contains~3~contains~1~contains~7",g="~contains~3~starts~contains~0~contains~1~contains~3~contains~1~contains~6",f="~contains~3~starts~contains~0",e=u.Z,d="~contains~3~starts~contains~0~contains~1~contains~3~contains~1~contains~5",c="~contains~3~starts~contains~0~contains~1~contains~3~contains~1~contains~4",b="~contains~3~starts~contains~0~contains~1~contains~3~contains~1~contains~10",a="~contains~3~starts~contains~0~contains~1~contains~1",a0="~contains~3~starts~contains~0~contains~1",a1="~contains~0",a2="~contains~1",a3="~contains~2",a4="~contains~3~starts~contains~0~contains~1~contains~3",a5="~contains~3~starts~contains~0~contains~1~contains~2",a6="comment",a7="doctag",a8="(?:TODO|FIXME|NOTE|BUG|XXX):",a9="~contains~0~contains~0",b0=t.N,b1=A.a(j,"\\|",j,j,"params",j,j,"\\|",j,j,j,j,j,j,A.l(["keyword",k,"literal","true false nil"],b0,b0),j,j,j,j,j,j,j,j,j,j,j),b2=A.a(j,"(\\$\\W)|((\\$|\\@\\@?)(\\w+))",j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j),b3=A.a(j,u.K,j,j,"number",j,j,j,j,j,j,j,j,j,j,j,j,j,0,j,j,j,j,j,j,j),b4=t._,b5=A.a(j,":(?!\\s)",j,j,"symbol",A.b([A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,f,j,j,j,j,j,j,j,j,j),A.a(j,e,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j)],b4),j,j,j,j,j,j,j,j,j,j,j,j,0,j,j,j,j,j,j,j),b6=A.a(j,"[a-zA-Z_]\\w*(\\!|\\?)?:",j,j,"symbol",j,j,j,j,j,j,j,j,j,j,j,j,j,0,j,j,j,j,j,j,j),b7=A.a(j,"[a-zA-Z]\\w*::",j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j),b8=A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,a,j,j,j,j,j,j,j,j,j),b9=$.aZ() -b8=A.a(j,"(!|!=|!==|%|%=|&|&&|&=|\\*|\\*=|\\+|\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\?|\\[|\\{|\\(|\\^|\\^=|\\||\\|=|\\|\\||\\x7e|unless)\\s*",j,j,j,A.b([b8,A.a(j,j,j,j,"regexp",A.b([b9,A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,a0,j,j,j,j,j,j,j,j,j)],b4),j,j,j,j,j,j,j,"\\n",j,j,j,j,j,j,j,j,j,j,j,A.b([A.a(j,"/",j,j,j,j,j,"/[a-z]*",j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j),A.a(j,"%r{",j,j,j,j,j,"}[a-z]*",j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j),A.a(j,"%r\\(",j,j,j,j,j,"\\)[a-z]*",j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j),A.a(j,"%r!",j,j,j,j,j,"![a-z]*",j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j),A.a(j,"%r\\[",j,j,j,j,j,"\\][a-z]*",j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j)],b4)),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,a1,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,a2,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,a3,j,j,j,j,j,j,j,j,j)],b4),j,j,j,j,j,j,j,j,"unless",j,j,j,0,j,j,j,j,j,j,j) -q=A.a(j,e,j,j,"title",j,j,j,j,j,j,j,j,j,j,j,j,j,0,j,j,j,j,j,j,j) -p=A.l(["keyword",k,"literal","true false nil"],b0,b0) -p=A.a(j,j,"def",j,"function",A.b([q,A.a(j,"\\(",j,j,"params",A.b([A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,f,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,a,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,a5,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,a4,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,c,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,d,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,g,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,h,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,i,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,l,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,b,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,a1,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,a2,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,a3,j,j,j,j,j,j,j,j,j)],b4),j,"\\)",j,!0,j,j,j,j,p,j,j,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,a1,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,a2,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,a3,j,j,j,j,j,j,j,j,j)],b4),j,"$|;",j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j) -q=A.a(j,j,"class module",j,"class",A.b([A.a(j,"[A-Za-z_]\\w*(::\\w+)*(\\?|\\!)?",j,j,"title",j,j,j,j,j,j,j,j,j,j,j,j,j,0,j,j,j,j,j,j,j),A.a(j,"<\\s*",j,j,j,A.b([A.a(j,"([a-zA-Z]\\w*::)?[a-zA-Z]\\w*",j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j)],b4),j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,a1,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,a2,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,a3,j,j,j,j,j,j,j,j,j)],b4),j,"$|;",j,j,j,j,j,"=",j,j,j,j,j,j,j,j,j,j,j,j) -o=A.a(j,"#<",j,j,j,j,j,">",j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j) -n=A.l(["keyword",k,"literal","true false nil"],b0,b0) -n=A.a(j,"#\\{",j,j,"subst",A.b([A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,f,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,a,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,a5,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,a4,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,c,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,d,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,g,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,h,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,i,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,l,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,b,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,a1,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,a2,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,a3,j,j,j,j,j,j,j,j,j)],b4),j,"}",j,j,j,j,j,j,n,j,j,j,j,j,j,j,j,j,j,j) -b9=A.a(j,j,j,j,"string",A.b([b9,A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,a0,j,j,j,j,j,j,j,j,j)],b4),j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,A.b([A.a(j,"'",j,j,j,j,j,"'",j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j),A.a(j,'"',j,j,j,j,j,'"',j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j),A.a(j,"`",j,j,j,j,j,"`",j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j),A.a(j,"%[qQwWx]?\\(",j,j,j,j,j,"\\)",j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j),A.a(j,"%[qQwWx]?\\[",j,j,j,j,j,"\\]",j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j),A.a(j,"%[qQwWx]?{",j,j,j,j,j,"}",j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j),A.a(j,"%[qQwWx]?<",j,j,j,j,j,">",j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j),A.a(j,"%[qQwWx]?/",j,j,j,j,j,"/",j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j),A.a(j,"%[qQwWx]?%",j,j,j,j,j,"%",j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j),A.a(j,"%[qQwWx]?-",j,j,j,j,j,"-",j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j),A.a(j,"%[qQwWx]?\\|",j,j,j,j,j,"\\|",j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j),A.a(j,"\\B\\?(\\\\\\d{1,3}|\\\\x[A-Fa-f0-9]{1,2}|\\\\u[A-Fa-f0-9]{4}|\\\\?\\S)\\b",j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j),A.a(j,"<<[-\\x7e]?'?(\\w+)(?:.|\\n)*?\\n\\s*\\1\\b",j,j,j,A.b([A.a(j,"<<[-\\x7e]?'?",j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j),A.a(j,"\\w+",j,j,j,A.b([b9,A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,a0,j,j,j,j,j,j,j,j,j)],b4),j,j,!0,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j)],b4),j,j,j,j,j,j,j,j,j,j,j,j,j,!0,j,j,j,j,j,j)],b4)) -m=$.aq() -m=A.l([l,b1,i,b2,h,b3,g,b5,d,b6,c,b7,b,b8,a4,p,a5,q,a,o,a0,n,f,b9,"~contains~2",A.a(j,"^__END__",j,j,a6,A.b([m,A.a(j,a8,j,j,a7,j,j,j,j,j,j,j,j,j,j,j,j,j,0,j,j,j,j,j,j,j)],b4),j,"\\n$",j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j),"~contains~1",A.a(j,"^\\=begin",j,j,a6,A.b([A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,a9,j,j,j,j,j,j,j,j,j),m,A.a(j,a8,j,j,a7,j,j,j,j,j,j,j,j,j,j,j,j,j,0,j,j,j,j,j,j,j)],b4),j,"^\\=end",j,j,j,j,j,j,j,j,j,j,10,j,j,j,j,j,j,j),a9,A.a(j,"@[A-Za-z]+",j,j,a7,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j),"~contains~0",A.a(j,"#",j,j,a6,A.b([A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,a9,j,j,j,j,j,j,j,j,j),m,A.a(j,a8,j,j,a7,j,j,j,j,j,j,j,j,j,j,j,j,j,0,j,j,j,j,j,j,j)],b4),j,"$",j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j)],b0,t.n) -b9=A.b(["rb","gemspec","podspec","thor","irb"],t.s) -b0=A.l(["keyword",k,"literal","true false nil"],b0,b0) -return A.a(b9,j,j,j,j,A.b([A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,a1,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,a2,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,a3,j,j,j,j,j,j,j,j,j),A.a(j,"^\\s*=>",j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,A.a(j,j,j,j,j,A.b([A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,f,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,a,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,a5,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,a4,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,c,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,d,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,g,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,h,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,i,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,l,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,b,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,a1,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,a2,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,a3,j,j,j,j,j,j,j,j,j)],b4),j,"$",j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j),j,j),A.a(j,"^([>?]>|[\\w#]+\\(\\w+\\):\\d+:\\d+>|(\\w+-)?\\d+\\.\\d+\\.\\d(p\\d+)?[^>]+>)",j,j,"meta",j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,A.a(j,j,j,j,j,A.b([A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,f,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,a,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,a5,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,a4,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,c,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,d,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,g,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,h,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,i,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,l,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,b,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,a1,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,a2,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,a3,j,j,j,j,j,j,j,j,j)],b4),j,"$",j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j),j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,f,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,a,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,a5,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,a4,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,c,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,d,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,g,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,h,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,i,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,l,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,b,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,a1,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,a2,j,j,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,a3,j,j,j,j,j,j,j,j,j)],b4),j,j,j,j,j,j,j,"\\/\\*",b0,j,j,m,j,j,j,j,j,j,j,j)}) -s($,"bf5","aU4",()=>{var q=null,p=t.N,o=A.l(["keyword","BILL_PERIOD BILL_START BILL_STOP RS_EFFECTIVE_START RS_EFFECTIVE_STOP RS_JURIS_CODE RS_OPCO_CODE INTDADDATTRIBUTE|5 INTDADDVMSG|5 INTDBLOCKOP|5 INTDBLOCKOPNA|5 INTDCLOSE|5 INTDCOUNT|5 INTDCOUNTSTATUSCODE|5 INTDCREATEMASK|5 INTDCREATEDAYMASK|5 INTDCREATEFACTORMASK|5 INTDCREATEHANDLE|5 INTDCREATEOVERRIDEDAYMASK|5 INTDCREATEOVERRIDEMASK|5 INTDCREATESTATUSCODEMASK|5 INTDCREATETOUPERIOD|5 INTDDELETE|5 INTDDIPTEST|5 INTDEXPORT|5 INTDGETERRORCODE|5 INTDGETERRORMESSAGE|5 INTDISEQUAL|5 INTDJOIN|5 INTDLOAD|5 INTDLOADACTUALCUT|5 INTDLOADDATES|5 INTDLOADHIST|5 INTDLOADLIST|5 INTDLOADLISTDATES|5 INTDLOADLISTENERGY|5 INTDLOADLISTHIST|5 INTDLOADRELATEDCHANNEL|5 INTDLOADSP|5 INTDLOADSTAGING|5 INTDLOADUOM|5 INTDLOADUOMDATES|5 INTDLOADUOMHIST|5 INTDLOADVERSION|5 INTDOPEN|5 INTDREADFIRST|5 INTDREADNEXT|5 INTDRECCOUNT|5 INTDRELEASE|5 INTDREPLACE|5 INTDROLLAVG|5 INTDROLLPEAK|5 INTDSCALAROP|5 INTDSCALE|5 INTDSETATTRIBUTE|5 INTDSETDSTPARTICIPANT|5 INTDSETSTRING|5 INTDSETVALUE|5 INTDSETVALUESTATUS|5 INTDSHIFTSTARTTIME|5 INTDSMOOTH|5 INTDSORT|5 INTDSPIKETEST|5 INTDSUBSET|5 INTDTOU|5 INTDTOURELEASE|5 INTDTOUVALUE|5 INTDUPDATESTATS|5 INTDVALUE|5 STDEV INTDDELETEEX|5 INTDLOADEXACTUAL|5 INTDLOADEXCUT|5 INTDLOADEXDATES|5 INTDLOADEX|5 INTDLOADEXRELATEDCHANNEL|5 INTDSAVEEX|5 MVLOAD|5 MVLOADACCT|5 MVLOADACCTDATES|5 MVLOADACCTHIST|5 MVLOADDATES|5 MVLOADHIST|5 MVLOADLIST|5 MVLOADLISTDATES|5 MVLOADLISTHIST|5 IF FOR NEXT DONE SELECT END CALL ABORT CLEAR CHANNEL FACTOR LIST NUMBER OVERRIDE SET WEEK DISTRIBUTIONNODE ELSE WHEN THEN OTHERWISE IENUM CSV INCLUDE LEAVE RIDER SAVE DELETE NOVALUE SECTION WARN SAVE_UPDATE DETERMINANT LABEL REPORT REVENUE EACH IN FROM TOTAL CHARGE BLOCK AND OR CSV_FILE RATE_CODE AUXILIARY_DEMAND UIDACCOUNT RS BILL_PERIOD_SELECT HOURS_PER_MONTH INTD_ERROR_STOP SEASON_SCHEDULE_NAME ACCOUNTFACTOR ARRAYUPPERBOUND CALLSTOREDPROC GETADOCONNECTION GETCONNECT GETDATASOURCE GETQUALIFIER GETUSERID HASVALUE LISTCOUNT LISTOP LISTUPDATE LISTVALUE PRORATEFACTOR RSPRORATE SETBINPATH SETDBMONITOR WQ_OPEN BILLINGHOURS DATE DATEFROMFLOAT DATETIMEFROMSTRING DATETIMETOSTRING DATETOFLOAT DAY DAYDIFF DAYNAME DBDATETIME HOUR MINUTE MONTH MONTHDIFF MONTHHOURS MONTHNAME ROUNDDATE SAMEWEEKDAYLASTYEAR SECOND WEEKDAY WEEKDIFF YEAR YEARDAY YEARSTR COMPSUM HISTCOUNT HISTMAX HISTMIN HISTMINNZ HISTVALUE MAXNRANGE MAXRANGE MINRANGE COMPIKVA COMPKVA COMPKVARFROMKQKW COMPLF IDATTR FLAG LF2KW LF2KWH MAXKW POWERFACTOR READING2USAGE AVGSEASON MAXSEASON MONTHLYMERGE SEASONVALUE SUMSEASON ACCTREADDATES ACCTTABLELOAD CONFIGADD CONFIGGET CREATEOBJECT CREATEREPORT EMAILCLIENT EXPBLKMDMUSAGE EXPMDMUSAGE EXPORT_USAGE FACTORINEFFECT GETUSERSPECIFIEDSTOP INEFFECT ISHOLIDAY RUNRATE SAVE_PROFILE SETREPORTTITLE USEREXIT WATFORRUNRATE TO TABLE ACOS ASIN ATAN ATAN2 BITAND CEIL COS COSECANT COSH COTANGENT DIVQUOT DIVREM EXP FABS FLOOR FMOD FREPM FREXPN LOG LOG10 MAX MAXN MIN MINNZ MODF POW ROUND ROUND2VALUE ROUNDINT SECANT SIN SINH SQROOT TAN TANH FLOAT2STRING FLOAT2STRINGNC INSTR LEFT LEN LTRIM MID RIGHT RTRIM STRING STRINGNC TOLOWER TOUPPER TRIM NUMDAYS READ_DATE STAGING","built_in","IDENTIFIER OPTIONS XML_ELEMENT XML_OP XML_ELEMENT_OF DOMDOCCREATE DOMDOCLOADFILE DOMDOCLOADXML DOMDOCSAVEFILE DOMDOCGETROOT DOMDOCADDPI DOMNODEGETNAME DOMNODEGETTYPE DOMNODEGETVALUE DOMNODEGETCHILDCT DOMNODEGETFIRSTCHILD DOMNODEGETSIBLING DOMNODECREATECHILDELEMENT DOMNODESETATTRIBUTE DOMNODEGETCHILDELEMENTCT DOMNODEGETFIRSTCHILDELEMENT DOMNODEGETSIBLINGELEMENT DOMNODEGETATTRIBUTECT DOMNODEGETATTRIBUTEI DOMNODEGETATTRIBUTEBYNAME DOMNODEGETBYNAME"],p,p),n=t._ -return A.a(q,q,q,q,q,A.b([$.ba(),$.b_(),$.c0(),$.aM(),$.bw(),A.a(q,q,q,q,"literal",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,A.b([A.a(q,"#\\s+[a-zA-Z\\ \\.]*",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q),A.a(q,"#[a-zA-Z\\ \\.]+",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],n))],n),q,q,q,q,q,q,q,q,o,q,q,A.m(p,t.n),q,q,q,q,q,q,q,q)}) -s($,"bf6","aU5",()=>{var q="drop i8 i16 i32 i64 i128 isize u8 u16 u32 u64 u128 usize f32 f64 str char bool Box Option Result String Vec Copy Send Sized Sync Drop Fn FnMut FnOnce ToOwned Clone Debug PartialEq PartialOrd Eq Ord AsRef AsMut Into From Default Iterator Extend IntoIterator DoubleEndedIterator ExactSizeIterator SliceConcatExt ToString assert! assert_eq! bitflags! bytes! cfg! col! concat! concat_idents! debug_assert! debug_assert_eq! env! panic! file! format! format_args! include_bin! include_str! line! local_data_key! module_path! option_env! print! println! select! stringify! try! unimplemented! unreachable! vec! write! writeln! macro_rules! assert_ne! debug_assert_ne!",p=null,o="[a-zA-Z_]\\w*",n=t.N,m=A.b(["rs"],t.s),l=A.l(["keyword","abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self Self static struct super trait true try type typeof unsafe unsized use virtual where while yield","literal","true false Some None Ok Err","built_in",q],n,n),k=t._ -return A.a(m,p,p,p,p,A.b([$.ba(),A.a(p,"/\\*",p,p,"comment",A.b([A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,!0,p,p,p,p),$.aq(),A.a(p,"(?:TODO|FIXME|NOTE|BUG|XXX):",p,p,"doctag",p,p,p,p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p)],k),p,"\\*/",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,'b?"',p,p,"string",A.b([$.aZ()],k),p,'"',p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,"string",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,A.b([A.a(p,'r(#*)"(.|\\n)*?"\\1(?!#)',p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"b?'\\\\?(x\\w{2}|u\\w{4}|U\\w{8}|.)'",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p)],k)),A.a(p,"'[a-zA-Z_][a-zA-Z0-9_]*",p,p,"symbol",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,"number",p,p,p,p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,A.b([A.a(p,"\\b0b([01_]+)([ui](8|16|32|64|128|size)|f(32|64))?",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"\\b0o([0-7_]+)([ui](8|16|32|64|128|size)|f(32|64))?",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"\\b0x([A-Fa-f0-9_]+)([ui](8|16|32|64|128|size)|f(32|64))?",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"\\b(\\d[\\d_]*(\\.[0-9_]+)?([eE][+-]?[0-9_]+)?)([ui](8|16|32|64|128|size)|f(32|64))?",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p)],k)),A.a(p,p,"fn",p,"function",A.b([$.dU()],k),p,"(\\(|<)",p,p,p,p,!0,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"#\\!?\\[",p,p,"meta",A.b([A.a(p,'"',p,p,"meta-string",p,p,'"',p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p)],k),p,"\\]",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,p,"type",p,"class",A.b([A.a(p,o,p,p,"title",p,p,p,p,!0,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p)],k),p,";",p,p,p,p,p,"\\S",p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,p,"trait enum struct union",p,"class",A.b([A.a(p,o,p,p,"title",p,p,p,p,!0,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p)],k),p,"{",p,p,p,p,p,"[\\w\\d]",p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"[a-zA-Z]\\w*::",p,p,p,p,p,p,p,p,p,p,p,p,A.l(["built_in",q],n,n),p,p,p,p,p,p,p,p,p,p,p),A.a(p,"->",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p)],k),p,p,p,p,p,p,p,"{var q=null,p=t.N,o=A.b(["sas","SAS"],t.s),n=A.l(["literal","null missing _all_ _automatic_ _character_ _infile_ _n_ _name_ _null_ _numeric_ _user_ _webout_","meta","do if then else end until while abort array attrib by call cards cards4 catname continue datalines datalines4 delete delim delimiter display dm drop endsas error file filename footnote format goto in infile informat input keep label leave length libname link list lostcard merge missing modify options output out page put redirect remove rename replace retain return select set skip startsas stop title update waitsas where window x systask add and alter as cascade check create delete describe distinct drop foreign from group having index insert into in key like message modify msgtype not null on or order primary references reset restrict select set table unique update validate view where"],p,p),m=t._ -return A.a(o,q,q,!0,q,A.b([A.a(q,"^\\s*(proc [\\w\\d_]+|data|run|quit)[\\s\\;]",q,q,"keyword",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\&[a-zA-Z_\\&][a-zA-Z0-9_]*\\.?",q,q,"variable",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"^\\s*datalines|cards.*;",q,q,"emphasis",q,q,"^\\s*;\\s*$",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"%(bquote|nrbquote|cmpres|qcmpres|compstor|datatyp|display|do|else|end|eval|global|goto|if|index|input|keydef|label|left|length|let|local|lowcase|macro|mend|nrbquote|nrquote|nrstr|put|qcmpres|qleft|qlowcase|qscan|qsubstr|qsysfunc|qtrim|quote|qupcase|scan|str|substr|superq|syscall|sysevalf|sysexec|sysfunc|sysget|syslput|sysprod|sysrc|sysrput|then|to|trim|unquote|until|upcase|verify|while|window)",q,q,"built_in",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"%[a-zA-Z_][a-zA-Z_0-9]*",q,q,"name",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"[^%](abs|addr|airy|arcos|arsin|atan|attrc|attrn|band|betainv|blshift|bnot|bor|brshift|bxor|byte|cdf|ceil|cexist|cinv|close|cnonct|collate|compbl|compound|compress|cos|cosh|css|curobs|cv|daccdb|daccdbsl|daccsl|daccsyd|dacctab|dairy|date|datejul|datepart|datetime|day|dclose|depdb|depdbsl|depdbsl|depsl|depsl|depsyd|depsyd|deptab|deptab|dequote|dhms|dif|digamma|dim|dinfo|dnum|dopen|doptname|doptnum|dread|dropnote|dsname|erf|erfc|exist|exp|fappend|fclose|fcol|fdelete|fetch|fetchobs|fexist|fget|fileexist|filename|fileref|finfo|finv|fipname|fipnamel|fipstate|floor|fnonct|fnote|fopen|foptname|foptnum|fpoint|fpos|fput|fread|frewind|frlen|fsep|fuzz|fwrite|gaminv|gamma|getoption|getvarc|getvarn|hbound|hms|hosthelp|hour|ibessel|index|indexc|indexw|input|inputc|inputn|int|intck|intnx|intrr|irr|jbessel|juldate|kurtosis|lag|lbound|left|length|lgamma|libname|libref|log|log10|log2|logpdf|logpmf|logsdf|lowcase|max|mdy|mean|min|minute|mod|month|mopen|mort|n|netpv|nmiss|normal|note|npv|open|ordinal|pathname|pdf|peek|peekc|pmf|point|poisson|poke|probbeta|probbnml|probchi|probf|probgam|probhypr|probit|probnegb|probnorm|probt|put|putc|putn|qtr|quote|ranbin|rancau|ranexp|rangam|range|rank|rannor|ranpoi|rantbl|rantri|ranuni|repeat|resolve|reverse|rewind|right|round|saving|scan|sdf|second|sign|sin|sinh|skewness|soundex|spedis|sqrt|std|stderr|stfips|stname|stnamel|substr|sum|symget|sysget|sysmsg|sysprod|sysrc|system|tan|tanh|time|timepart|tinv|tnonct|today|translate|tranwrd|trigamma|trim|trimn|trunc|uniform|upcase|uss|var|varfmt|varinfmt|varlabel|varlen|varname|varnum|varray|varrayx|vartype|verify|vformat|vformatd|vformatdx|vformatn|vformatnx|vformatw|vformatwx|vformatx|vinarray|vinarrayx|vinformat|vinformatd|vinformatdx|vinformatn|vinformatnx|vinformatw|vinformatwx|vinformatx|vlabel|vlabelx|vlength|vlengthx|vname|vnamex|vtype|vtypex|weekday|year|yyq|zipfips|zipname|zipnamel|zipstate)[(]",q,q,"meta",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,q,q,q,"string",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,A.b([$.c0(),$.aM()],m)),A.a(q,"\\*",q,q,"comment",A.b([$.aq(),A.a(q,"(?:TODO|FIXME|NOTE|BUG|XXX):",q,q,"doctag",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q)],m),q,";",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),$.b_()],m),q,q,q,q,q,q,q,q,n,q,q,A.m(p,t.n),q,q,q,q,q,q,q,q)}) -s($,"bf8","aU7",()=>{var q,p,o,n="~contains~5~contains~0",m=null,l="~contains~4",k="~contains~2~variants~2~contains~1",j=t._,i=t.N,h=A.l([n,A.a(m,u.J,m,m,"title",m,m,m,m,m,m,m,m,m,m,m,m,m,0,m,m,m,m,m,m,m),"~contains~4",A.a(m,"\\b[A-Z][A-Za-z0-9_]*",m,m,"type",m,m,m,m,m,m,m,m,m,m,m,m,m,0,m,m,m,m,m,m,m),k,A.a(m,m,m,m,"subst",m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,A.b([A.a(m,"\\$[A-Za-z0-9_]+",m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m),A.a(m,"\\${",m,m,m,m,m,"}",m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m)],j))],i,t.n) -i=A.l(["literal","true false null","keyword","type yield lazy override def with val var sealed abstract private trait object if forSome for while throw finally protected extends import final return else break new catch super class case package default try this match continue throws implicit"],i,i) -q=$.ba() -p=$.b_() -o=$.aZ() -return A.a(m,m,m,m,m,A.b([q,p,A.a(m,m,m,m,"string",m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,A.b([A.a(m,'"',m,m,m,A.b([o],j),m,'"',m,m,m,m,m,"\\n",m,m,m,m,m,m,m,m,m,m,m,m),A.a(m,'"""',m,m,m,m,m,'"""',m,m,m,m,m,m,m,m,m,m,10,m,m,m,m,m,m,m),A.a(m,'[a-z]+"',m,m,m,A.b([o,A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,k,m,m,m,m,m,m,m,m,m)],j),m,'"',m,m,m,m,m,"\\n",m,m,m,m,m,m,m,m,m,m,m,m),A.a(m,'[a-z]+"""',m,m,"string",A.b([A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,k,m,m,m,m,m,m,m,m,m)],j),m,'"""',m,m,m,m,m,m,m,m,m,m,10,m,m,m,m,m,m,m)],j)),A.a(m,"'\\w[\\w\\d_]*(?!')",m,m,"symbol",m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m),A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,l,m,m,m,m,m,m,m,m,m),A.a(m,m,"def",m,"function",A.b([A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,n,m,m,m,m,m,m,m,m,m)],j),m,"[:={\\[(\\n;]",m,m,m,m,!0,m,m,m,m,m,m,m,m,m,m,m,m,m),A.a(m,m,"class object trait type",m,"class",A.b([A.a(m,m,"extends with",m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,10,m,m,m,m,m,m,m),A.a(m,"\\[",m,m,m,A.b([A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,l,m,m,m,m,m,m,m,m,m)],j),m,"\\]",m,m,m,!0,!0,m,m,m,m,m,0,m,m,m,m,m,m,m),A.a(m,"\\(",m,m,"params",A.b([A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,l,m,m,m,m,m,m,m,m,m)],j),m,"\\)",m,m,m,!0,!0,m,m,m,m,m,0,m,m,m,m,m,m,m),A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,n,m,m,m,m,m,m,m,m,m)],j),m,"[:={\\[\\n;]",m,m,m,m,!0,m,m,m,m,m,m,m,m,m,m,m,m,m),$.bw(),A.a(m,"@[A-Za-z]+",m,m,"meta",m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m)],j),m,m,m,m,m,m,m,m,i,m,m,h,m,m,m,m,m,m,m,m)}) -s($,"bf9","aU8",()=>{var q,p,o,n,m,l,k,j,i="~contains~5~contains~2~contains~8",h="(?:TODO|FIXME|NOTE|BUG|XXX):",g=null,f="~contains~5~contains~2~contains~7",e="~contains~5~contains~0~contains~0",d="[^\\(\\)\\[\\]\\{\\}\",'`;#|\\\\\\s]+",c="~contains~5",b="~contains~4~contains~0~contains~4",a="~contains~4~contains~0~contains~1",a0="~contains~1",a1="~contains~3",a2="~contains~4",a3=$.aq(),a4=t._,a5=A.a(g,"#\\|",g,g,"comment",A.b([a3,A.a(g,h,g,g,"doctag",g,g,g,g,g,g,g,g,g,g,g,g,g,0,g,g,g,g,g,g,g)],a4),g,"\\|#",g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g) -a3=A.a(g,";",g,g,"comment",A.b([a3,A.a(g,h,g,g,"doctag",g,g,g,g,g,g,g,g,g,g,g,g,g,0,g,g,g,g,g,g,g)],a4),g,"$",g,g,g,g,g,g,g,g,g,g,0,g,g,g,g,g,g,g) -q=t.N -p=A.a(g,d,g,g,"name",g,g,g,g,g,g,g,g,g,A.l(["builtin-name","case-lambda call/cc class define-class exit-handler field import inherit init-field interface let*-values let-values let/ec mixin opt-lambda override protect provide public rename require require-for-syntax syntax syntax-case syntax-error unit/sig unless when with-syntax and begin call-with-current-continuation call-with-input-file call-with-output-file case cond define define-syntax delay do dynamic-wind else for-each if lambda let let* let-syntax letrec letrec-syntax map or syntax-rules ' * + , ,@ - ... / ; < <= = => > >= ` abs acos angle append apply asin assoc assq assv atan boolean? caar cadr call-with-input-file call-with-output-file call-with-values car cdddar cddddr cdr ceiling char->integer char-alphabetic? char-ci<=? char-ci=? char-ci>? char-downcase char-lower-case? char-numeric? char-ready? char-upcase char-upper-case? char-whitespace? char<=? char=? char>? char? close-input-port close-output-port complex? cons cos current-input-port current-output-port denominator display eof-object? eq? equal? eqv? eval even? exact->inexact exact? exp expt floor force gcd imag-part inexact->exact inexact? input-port? integer->char integer? interaction-environment lcm length list list->string list->vector list-ref list-tail list? load log magnitude make-polar make-rectangular make-string make-vector max member memq memv min modulo negative? newline not null-environment null? number->string number? numerator odd? open-input-file open-output-file output-port? pair? peek-char port? positive? procedure? quasiquote quote quotient rational? rationalize read read-char real-part real? remainder reverse round scheme-report-environment set! set-car! set-cdr! sin sqrt string string->list string->number string->symbol string-append string-ci<=? string-ci=? string-ci>? string-copy string-fill! string-length string-ref string-set! string<=? string=? string>? string? substring symbol->string symbol? tan transcript-off transcript-on truncate values vector vector->list vector-fill! vector-length vector-ref vector-set! with-input-from-file with-output-to-file write write-char zero?"],q,q),d,g,g,g,g,g,g,g,g,g,g) -o=A.b([A.a(g,"\\(",g,g,g,g,g,"\\)",g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g),A.a(g,"\\[",g,g,g,g,g,"\\]",g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g)],a4) -n=A.a(g,"lambda",g,g,g,A.b([A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,e,g,g,g,g,g,g,g,g,g),A.a(g,"\\(",g,g,g,A.b([A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,b,g,g,g,g,g,g,g,g,g)],a4),g,"\\)",g,!0,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g)],a4),g,g,g,g,!0,g,g,g,g,g,g,g,g,!0,g,g,g,g,g,g) -m=A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,e,g,g,g,g,g,g,g,g,g) -l=A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,a,g,g,g,g,g,g,g,g,g) -k=A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,a0,g,g,g,g,g,g,g,g,g) -j=$.aM() -o=A.a(g,g,g,g,g,A.b([n,m,A.a(g,g,g,g,g,A.b([l,k,j,A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,b,g,g,g,g,g,g,g,g,g),A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,a1,g,g,g,g,g,g,g,g,g),A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,a2,g,g,g,g,g,g,g,g,g),A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,c,g,g,g,g,g,g,g,g,g),A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,f,g,g,g,g,g,g,g,g,g),A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,i,g,g,g,g,g,g,g,g,g)],a4),g,g,g,g,!0,g,g,g,g,g,g,g,0,g,g,g,g,g,g,g)],a4),g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,o) -k=A.a(g,d,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,0,g,g,g,g,g,g,g) -l=A.a(g,"(#t|#f|#\\\\[^\\(\\)\\[\\]\\{\\}\",'`;#|\\\\\\s]+|#\\\\.)",g,g,"literal",g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g) -m=A.b([A.a(g,"'",g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g),A.a(g,"`",g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g)],a4) -q=A.l([i,a5,f,a3,e,p,"~contains~5",o,b,k,a,l,"~contains~4",A.a(g,g,g,g,g,A.b([A.a(g,"\\(",g,g,g,A.b([A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,!0,g,g,g,g),A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,a,g,g,g,g,g,g,g,g,g),j,A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,a0,g,g,g,g,g,g,g,g,g),A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,b,g,g,g,g,g,g,g,g,g),A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,a1,g,g,g,g,g,g,g,g,g)],a4),g,"\\)",g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g)],a4),g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,m),"~contains~3",A.a(g,"'[^\\(\\)\\[\\]\\{\\}\",'`;#|\\\\\\s]+",g,g,"symbol",g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g),"~contains~1",A.a(g,g,g,g,"number",g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,A.b([A.a(g,"(\\-|\\+)?\\d+([./]\\d+)?",g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,0,g,g,g,g,g,g,g),A.a(g,"(\\-|\\+)?\\d+([./]\\d+)?[+\\-](\\-|\\+)?\\d+([./]\\d+)?i",g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,0,g,g,g,g,g,g,g),A.a(g,"#b[0-1]+(/[0-1]+)?",g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g),A.a(g,"#o[0-7]+(/[0-7]+)?",g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g),A.a(g,"#x[0-9a-f]+(/[0-9a-f]+)?",g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g)],a4))],q,t.n) -return A.a(g,g,g,g,g,A.b([A.a(g,"^#!",g,g,"meta",g,g,"$",g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g),A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,a0,g,g,g,g,g,g,g,g,g),j,A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,a1,g,g,g,g,g,g,g,g,g),A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,a2,g,g,g,g,g,g,g,g,g),A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,c,g,g,g,g,g,g,g,g,g),A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,f,g,g,g,g,g,g,g,g,g),A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,i,g,g,g,g,g,g,g,g,g)],a4),g,g,g,g,g,g,g,"\\S",g,g,g,q,g,g,g,g,g,g,g,g)}) -s($,"bfa","aU9",()=>{var q,p,o,n="~contains~2~contains~1",m=null,l="function",k=t._,j=t.N,i=A.l([n,A.a(m,"'|\"",m,m,"string",A.b([$.aZ(),A.a(m,"''",m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m)],k),m,"'|\"",m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m)],j,t.n),h=A.b(["sci"],t.s) -j=A.l(["keyword","abort break case clear catch continue do elseif else endfunction end for function global if pause return resume select try then while","literal","%f %F %t %T %pi %eps %inf %nan %e %i %z %s","built_in","abs and acos asin atan ceil cd chdir clearglobal cosh cos cumprod deff disp error exec execstr exists exp eye gettext floor fprintf fread fsolve imag isdef isempty isinfisnan isvector lasterror length load linspace list listfiles log10 log2 log max min msprintf mclose mopen ones or pathconvert poly printf prod pwd rand real round sinh sin size gsort sprintf sqrt strcat strcmps tring sum system tanh tan type typename warning zeros matrix"],j,j) -q=A.a(m,m,l,m,l,A.b([$.dU(),A.a(m,"\\(",m,m,"params",m,m,"\\)",m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m)],k),m,"$",m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m) -p=A.a(m,"[a-zA-Z_][a-zA-Z_0-9]*('+[\\.']*|[\\.']+)",m,m,m,m,m,"",m,m,m,m,m,m,m,m,m,m,0,m,m,m,m,m,m,m) -o=$.bw() -return A.a(h,m,m,m,m,A.b([q,p,A.a(m,"\\[",m,m,m,A.b([o,A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,n,m,m,m,m,m,m,m,m,m)],k),m,"\\]'*[\\.']*",m,m,m,m,m,m,m,m,m,m,0,m,m,m,m,m,m,m),A.a(m,"//",m,m,"comment",A.b([$.aq(),A.a(m,"(?:TODO|FIXME|NOTE|BUG|XXX):",m,m,"doctag",m,m,m,m,m,m,m,m,m,m,m,m,m,0,m,m,m,m,m,m,m)],k),m,"$",m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m),o,A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,n,m,m,m,m,m,m,m,m,m)],k),m,m,m,m,m,m,m,'("|#|/\\*|\\s+/\\w+)',j,"%?\\w+",m,i,m,m,m,m,m,m,m,m)}) -s($,"bfc","aUa",()=>{var q="~contains~8",p=null,o="~contains~11~contains~1",n="selector-pseudo",m="@[a-z-]+",l=A.l(["~contains~8",A.a(p,"(\\$[a-zA-Z-][a-zA-Z0-9_-]*)\\b",p,p,"variable",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),o,A.a(p,"#[0-9A-Fa-f]+",p,p,"number",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p)],t.N,t.n),k=$.ba(),j=$.b_(),i=A.a(p,"\\#[A-Za-z0-9_-]+",p,p,"selector-id",p,p,p,p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p),h=A.a(p,"\\.[A-Za-z0-9_-]+",p,p,"selector-class",p,p,p,p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p),g=A.a(p,"\\[",p,p,"selector-attr",p,p,"\\]",p,p,p,p,p,"$",p,p,p,p,p,p,p,p,p,p,p,p),f=A.a(p,"\\b(a|abbr|acronym|address|area|article|aside|audio|b|base|big|blockquote|body|br|button|canvas|caption|cite|code|col|colgroup|command|datalist|dd|del|details|dfn|div|dl|dt|em|embed|fieldset|figcaption|figure|footer|form|frame|frameset|(h[1-6])|head|header|hgroup|hr|html|i|iframe|img|input|ins|kbd|keygen|label|legend|li|link|map|mark|meta|meter|nav|noframes|noscript|object|ol|optgroup|option|output|p|param|pre|progress|q|rp|rt|ruby|samp|script|section|select|small|span|strike|strong|style|sub|sup|table|tbody|td|textarea|tfoot|th|thead|time|title|tr|tt|ul|var|video)\\b",p,p,"selector-tag",p,p,p,p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p),e=A.a(p,":(visited|valid|root|right|required|read-write|read-only|out-range|optional|only-of-type|only-child|nth-of-type|nth-last-of-type|nth-last-child|nth-child|not|link|left|last-of-type|last-child|lang|invalid|indeterminate|in-range|hover|focus|first-of-type|first-line|first-letter|first-child|first|enabled|empty|disabled|default|checked|before|after|active)",p,p,n,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),d=A.a(p,"::(after|before|choices|first-letter|first-line|repeat-index|repeat-item|selection|value)",p,p,n,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),c=A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,q,p,p,p,p,p,p,p,p,p),b=A.a(p,"\\b(src|z-index|word-wrap|word-spacing|word-break|width|widows|white-space|visibility|vertical-align|unicode-bidi|transition-timing-function|transition-property|transition-duration|transition-delay|transition|transform-style|transform-origin|transform|top|text-underline-position|text-transform|text-shadow|text-rendering|text-overflow|text-indent|text-decoration-style|text-decoration-line|text-decoration-color|text-decoration|text-align-last|text-align|tab-size|table-layout|right|resize|quotes|position|pointer-events|perspective-origin|perspective|page-break-inside|page-break-before|page-break-after|padding-top|padding-right|padding-left|padding-bottom|padding|overflow-y|overflow-x|overflow-wrap|overflow|outline-width|outline-style|outline-offset|outline-color|outline|orphans|order|opacity|object-position|object-fit|normal|none|nav-up|nav-right|nav-left|nav-index|nav-down|min-width|min-height|max-width|max-height|mask|marks|margin-top|margin-right|margin-left|margin-bottom|margin|list-style-type|list-style-position|list-style-image|list-style|line-height|letter-spacing|left|justify-content|initial|inherit|ime-mode|image-orientation|image-resolution|image-rendering|icon|hyphens|height|font-weight|font-variant-ligatures|font-variant|font-style|font-stretch|font-size-adjust|font-size|font-language-override|font-kerning|font-feature-settings|font-family|font|float|flex-wrap|flex-shrink|flex-grow|flex-flow|flex-direction|flex-basis|flex|filter|empty-cells|display|direction|cursor|counter-reset|counter-increment|content|column-width|column-span|column-rule-width|column-rule-style|column-rule-color|column-rule|column-gap|column-fill|column-count|columns|color|clip-path|clip|clear|caption-side|break-inside|break-before|break-after|box-sizing|box-shadow|box-decoration-break|bottom|border-width|border-top-width|border-top-style|border-top-right-radius|border-top-left-radius|border-top-color|border-top|border-style|border-spacing|border-right-width|border-right-style|border-right-color|border-right|border-radius|border-left-width|border-left-style|border-left-color|border-left|border-image-width|border-image-source|border-image-slice|border-image-repeat|border-image-outset|border-image|border-color|border-collapse|border-bottom-width|border-bottom-style|border-bottom-right-radius|border-bottom-left-radius|border-bottom-color|border-bottom|border|background-size|background-repeat|background-position|background-origin|background-image|background-color|background-clip|background-attachment|background-blend-mode|background|backface-visibility|auto|animation-timing-function|animation-play-state|animation-name|animation-iteration-count|animation-fill-mode|animation-duration|animation-direction|animation-delay|animation|align-self|align-items|align-content)\\b",p,p,"attribute",p,p,p,p,p,p,p,p,"[^\\s]",p,p,p,p,p,p,p,p,p,p,p,p),a=A.a(p,"\\b(whitespace|wait|w-resize|visible|vertical-text|vertical-ideographic|uppercase|upper-roman|upper-alpha|underline|transparent|top|thin|thick|text|text-top|text-bottom|tb-rl|table-header-group|table-footer-group|sw-resize|super|strict|static|square|solid|small-caps|separate|se-resize|scroll|s-resize|rtl|row-resize|ridge|right|repeat|repeat-y|repeat-x|relative|progress|pointer|overline|outside|outset|oblique|nowrap|not-allowed|normal|none|nw-resize|no-repeat|no-drop|newspaper|ne-resize|n-resize|move|middle|medium|ltr|lr-tb|lowercase|lower-roman|lower-alpha|loose|list-item|line|line-through|line-edge|lighter|left|keep-all|justify|italic|inter-word|inter-ideograph|inside|inset|inline|inline-block|inherit|inactive|ideograph-space|ideograph-parenthesis|ideograph-numeric|ideograph-alpha|horizontal|hidden|help|hand|groove|fixed|ellipsis|e-resize|double|dotted|distribute|distribute-space|distribute-letter|distribute-all-lines|disc|disabled|default|decimal|dashed|crosshair|collapse|col-resize|circle|char|center|capitalize|break-word|break-all|bottom|both|bolder|bold|block|bidi-override|below|baseline|auto|always|all-scroll|absolute|table|table-cell)\\b",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),a0=A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,q,p,p,p,p,p,p,p,p,p),a1=A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,o,p,p,p,p,p,p,p,p,p),a2=$.a3s(),a3=$.aM(),a4=$.c0(),a5=t._ -return A.a(p,p,p,!0,p,A.b([k,j,i,h,g,f,e,d,c,b,a,A.a(p,":",p,p,p,A.b([a0,a1,a2,a3,a4,A.a(p,"!important",p,p,"meta",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p)],a5),p,";",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"@(page|font-face)",p,p,p,p,p,p,p,p,p,p,p,p,"@page @font-face",m,p,p,p,p,p,p,p,p,p,p),A.a(p,"@",p,p,p,A.b([A.a(p,m,p,p,"keyword",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,q,p,p,p,p,p,p,p,p,p),a3,a4,A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,o,p,p,p,p,p,p,p,p,p),a2],a5),p,"[{;]",p,p,p,p,p,p,"and or not only",p,p,p,p,!0,p,p,p,p,p,p)],a5),p,p,p,p,p,p,p,"[=/|']",p,p,p,l,p,p,p,p,p,p,p,p)}) -s($,"bff","aUc",()=>{var q=null,p=t.s -return A.a(A.b(["console"],p),q,q,q,q,A.b([A.a(q,"^\\s{0,3}[/\\w\\d\\[\\]()@-]*[>%$#]",q,q,"meta",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,A.a(q,q,q,q,q,q,q,"$",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,A.b(["bash"],p),q),q,q)],t._),q,q,q,q,q,q,q,q,q,q,q,A.m(t.N,t.n),q,q,q,q,q,q,q,q)}) -s($,"bfg","aUd",()=>{var q=null,p=t._ -return A.a(A.b(["smali"],t.s),q,q,q,q,A.b([A.a(q,'"',q,q,"string",q,q,'"',q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q),A.a(q,"#",q,q,"comment",A.b([$.aq(),A.a(q,"(?:TODO|FIXME|NOTE|BUG|XXX):",q,q,"doctag",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q)],p),q,"$",q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q),A.a(q,q,q,q,"keyword",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,A.b([A.a(q,"\\s*\\.end\\s[a-zA-Z0-9]*",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"^[ ]*\\.[a-zA-Z]*",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q),A.a(q,"\\s:[a-zA-Z_0-9]*",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q),A.a(q,"\\s(transient|constructor|abstract|final|synthetic|public|private|protected|static|bridge|system)",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],p)),A.a(q,q,q,q,"built_in",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,A.b([A.a(q,"\\s(add|and|cmp|cmpg|cmpl|const|div|double|float|goto|if|int|long|move|mul|neg|new|nop|not|or|rem|return|shl|shr|sput|sub|throw|ushr|xor)\\s",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\s(add|and|cmp|cmpg|cmpl|const|div|double|float|goto|if|int|long|move|mul|neg|new|nop|not|or|rem|return|shl|shr|sput|sub|throw|ushr|xor)((\\-|/)[a-zA-Z0-9]+)+\\s",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,10,q,q,q,q,q,q,q),A.a(q,"\\s(aget|aput|array|check|execute|fill|filled|goto/16|goto/32|iget|instance|invoke|iput|monitor|packed|sget|sparse)((\\-|/)[a-zA-Z0-9]+)*\\s",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,10,q,q,q,q,q,q,q)],p)),A.a(q,"L[^(;:\n]*;",q,q,"class",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q),A.a(q,"[vp][0-9]+",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],p),q,q,q,q,q,q,q,q,q,q,q,A.m(t.N,t.n),q,q,q,q,q,q,q,q)}) -s($,"bfh","aUe",()=>{var q="~contains~6",p=null,o="~contains~5",n=A.l(["~contains~6",A.a(p,"\\$.{1}",p,p,"string",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),"~contains~5",A.a(p,"#[a-zA-Z_]\\w*",p,p,"symbol",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p)],t.N,t.n),m=A.b(["st"],t.s),l=t._,k=A.a(p,'"',p,p,"comment",A.b([$.aq(),A.a(p,"(?:TODO|FIXME|NOTE|BUG|XXX):",p,p,"doctag",p,p,p,p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p)],l),p,'"',p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),j=$.c0(),i=A.a(p,"\\b[A-Z][A-Za-z0-9_]*",p,p,"type",p,p,p,p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p),h=A.a(p,"[a-z][a-zA-Z0-9_]*:",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p),g=$.bw() -return A.a(m,p,p,p,p,A.b([k,j,i,h,g,A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,o,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,q,p,p,p,p,p,p,p,p,p),A.a(p,"\\|[ ]*[a-z][a-zA-Z0-9_]*([ ]+[a-z][a-zA-Z0-9_]*)*[ ]*\\|",p,p,p,A.b([A.a(p,"(\\|[ ]*)?[a-z][a-zA-Z0-9_]*",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p)],l),p,"\\|",p,p,p,p,p,"\\S",p,p,p,p,p,!0,p,p,p,p,p,p),A.a(p,"\\#\\(",p,p,p,A.b([j,A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,q,p,p,p,p,p,p,p,p,p),g,A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,o,p,p,p,p,p,p,p,p,p)],l),p,"\\)",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p)],l),p,p,p,p,p,p,p,p,"self super nil true false thisContext",p,p,n,p,p,p,p,p,p,p,p)}) -s($,"bfi","aUf",()=>{var q=null,p=t.N,o=A.b(["ml"],t.s),n=A.l(["keyword","abstype and andalso as case datatype do else end eqtype exception fn fun functor handle if in include infix infixr let local nonfix of op open orelse raise rec sharing sig signature struct structure then type val with withtype where while","built_in","array bool char exn int list option order real ref string substring vector unit word","literal","true false NONE SOME LESS EQUAL GREATER nil"],p,p),m=A.a(q,"\\[(\\|\\|)?\\]|\\(\\)",q,q,"literal",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q),l=t._,k=A.a(q,"\\(\\*",q,q,"comment",A.b([A.a(q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,!0,q,q,q,q),$.aq(),A.a(q,"(?:TODO|FIXME|NOTE|BUG|XXX):",q,q,"doctag",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q)],l),q,"\\*\\)",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),j=A.a(q,"'[A-Za-z_](?!')[\\w']*",q,q,"symbol",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),i=A.a(q,"`[A-Z][\\w']*",q,q,"type",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),h=A.a(q,"\\b[A-Z][\\w']*",q,q,"type",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q),g=A.a(q,"[a-z_]\\w*'[\\w']*",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),f=$.aZ() -return A.a(o,q,q,q,q,A.b([m,k,j,i,h,g,A.a(q,"'",q,q,"string",A.b([f],l),q,"'",q,q,q,q,q,"\\n",q,q,q,q,0,q,q,q,q,q,q,q),A.a(q,'"',q,q,"string",A.b([f],l),q,'"',q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,u.a,q,q,"number",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q),A.a(q,"[-=]>",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],l),q,q,q,q,q,q,q,"\\/\\/|>>",n,"[a-z_]\\w*!?",q,A.m(p,t.n),q,q,q,q,q,q,q,q)}) -s($,"bfj","aUg",()=>{var q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3="~contains~8~contains~0",a4="[^A-Za-z0-9$_\\.]",a5=null,a6="~contains~7~contains~1",a7="var bool string int uint int8 int16 int24 int32 int40 int48 int56 int64 int72 int80 int88 int96 int104 int112 int120 int128 int136 int144 int152 int160 int168 int176 int184 int192 int200 int208 int216 int224 int232 int240 int248 int256 uint8 uint16 uint24 uint32 uint40 uint48 uint56 uint64 uint72 uint80 uint88 uint96 uint104 uint112 uint120 uint128 uint136 uint144 uint152 uint160 uint168 uint176 uint184 uint192 uint200 uint208 uint216 uint224 uint232 uint240 uint248 uint256 byte bytes bytes1 bytes2 bytes3 bytes4 bytes5 bytes6 bytes7 bytes8 bytes9 bytes10 bytes11 bytes12 bytes13 bytes14 bytes15 bytes16 bytes17 bytes18 bytes19 bytes20 bytes21 bytes22 bytes23 bytes24 bytes25 bytes26 bytes27 bytes28 bytes29 bytes30 bytes31 bytes32 fixed ufixed fixed8x0 fixed8x1 fixed8x2 fixed8x3 fixed8x4 fixed8x5 fixed8x6 fixed8x7 fixed8x8 fixed8x9 fixed8x10 fixed8x11 fixed8x12 fixed8x13 fixed8x14 fixed8x15 fixed8x16 fixed8x17 fixed8x18 fixed8x19 fixed8x20 fixed8x21 fixed8x22 fixed8x23 fixed8x24 fixed8x25 fixed8x26 fixed8x27 fixed8x28 fixed8x29 fixed8x30 fixed8x31 fixed8x32 fixed8x33 fixed8x34 fixed8x35 fixed8x36 fixed8x37 fixed8x38 fixed8x39 fixed8x40 fixed8x41 fixed8x42 fixed8x43 fixed8x44 fixed8x45 fixed8x46 fixed8x47 fixed8x48 fixed8x49 fixed8x50 fixed8x51 fixed8x52 fixed8x53 fixed8x54 fixed8x55 fixed8x56 fixed8x57 fixed8x58 fixed8x59 fixed8x60 fixed8x61 fixed8x62 fixed8x63 fixed8x64 fixed8x65 fixed8x66 fixed8x67 fixed8x68 fixed8x69 fixed8x70 fixed8x71 fixed8x72 fixed8x73 fixed8x74 fixed8x75 fixed8x76 fixed8x77 fixed8x78 fixed8x79 fixed8x80 fixed16x0 fixed16x1 fixed16x2 fixed16x3 fixed16x4 fixed16x5 fixed16x6 fixed16x7 fixed16x8 fixed16x9 fixed16x10 fixed16x11 fixed16x12 fixed16x13 fixed16x14 fixed16x15 fixed16x16 fixed16x17 fixed16x18 fixed16x19 fixed16x20 fixed16x21 fixed16x22 fixed16x23 fixed16x24 fixed16x25 fixed16x26 fixed16x27 fixed16x28 fixed16x29 fixed16x30 fixed16x31 fixed16x32 fixed16x33 fixed16x34 fixed16x35 fixed16x36 fixed16x37 fixed16x38 fixed16x39 fixed16x40 fixed16x41 fixed16x42 fixed16x43 fixed16x44 fixed16x45 fixed16x46 fixed16x47 fixed16x48 fixed16x49 fixed16x50 fixed16x51 fixed16x52 fixed16x53 fixed16x54 fixed16x55 fixed16x56 fixed16x57 fixed16x58 fixed16x59 fixed16x60 fixed16x61 fixed16x62 fixed16x63 fixed16x64 fixed16x65 fixed16x66 fixed16x67 fixed16x68 fixed16x69 fixed16x70 fixed16x71 fixed16x72 fixed16x73 fixed16x74 fixed16x75 fixed16x76 fixed16x77 fixed16x78 fixed16x79 fixed16x80 fixed24x0 fixed24x1 fixed24x2 fixed24x3 fixed24x4 fixed24x5 fixed24x6 fixed24x7 fixed24x8 fixed24x9 fixed24x10 fixed24x11 fixed24x12 fixed24x13 fixed24x14 fixed24x15 fixed24x16 fixed24x17 fixed24x18 fixed24x19 fixed24x20 fixed24x21 fixed24x22 fixed24x23 fixed24x24 fixed24x25 fixed24x26 fixed24x27 fixed24x28 fixed24x29 fixed24x30 fixed24x31 fixed24x32 fixed24x33 fixed24x34 fixed24x35 fixed24x36 fixed24x37 fixed24x38 fixed24x39 fixed24x40 fixed24x41 fixed24x42 fixed24x43 fixed24x44 fixed24x45 fixed24x46 fixed24x47 fixed24x48 fixed24x49 fixed24x50 fixed24x51 fixed24x52 fixed24x53 fixed24x54 fixed24x55 fixed24x56 fixed24x57 fixed24x58 fixed24x59 fixed24x60 fixed24x61 fixed24x62 fixed24x63 fixed24x64 fixed24x65 fixed24x66 fixed24x67 fixed24x68 fixed24x69 fixed24x70 fixed24x71 fixed24x72 fixed24x73 fixed24x74 fixed24x75 fixed24x76 fixed24x77 fixed24x78 fixed24x79 fixed24x80 fixed32x0 fixed32x1 fixed32x2 fixed32x3 fixed32x4 fixed32x5 fixed32x6 fixed32x7 fixed32x8 fixed32x9 fixed32x10 fixed32x11 fixed32x12 fixed32x13 fixed32x14 fixed32x15 fixed32x16 fixed32x17 fixed32x18 fixed32x19 fixed32x20 fixed32x21 fixed32x22 fixed32x23 fixed32x24 fixed32x25 fixed32x26 fixed32x27 fixed32x28 fixed32x29 fixed32x30 fixed32x31 fixed32x32 fixed32x33 fixed32x34 fixed32x35 fixed32x36 fixed32x37 fixed32x38 fixed32x39 fixed32x40 fixed32x41 fixed32x42 fixed32x43 fixed32x44 fixed32x45 fixed32x46 fixed32x47 fixed32x48 fixed32x49 fixed32x50 fixed32x51 fixed32x52 fixed32x53 fixed32x54 fixed32x55 fixed32x56 fixed32x57 fixed32x58 fixed32x59 fixed32x60 fixed32x61 fixed32x62 fixed32x63 fixed32x64 fixed32x65 fixed32x66 fixed32x67 fixed32x68 fixed32x69 fixed32x70 fixed32x71 fixed32x72 fixed32x73 fixed32x74 fixed32x75 fixed32x76 fixed32x77 fixed32x78 fixed32x79 fixed32x80 fixed40x0 fixed40x1 fixed40x2 fixed40x3 fixed40x4 fixed40x5 fixed40x6 fixed40x7 fixed40x8 fixed40x9 fixed40x10 fixed40x11 fixed40x12 fixed40x13 fixed40x14 fixed40x15 fixed40x16 fixed40x17 fixed40x18 fixed40x19 fixed40x20 fixed40x21 fixed40x22 fixed40x23 fixed40x24 fixed40x25 fixed40x26 fixed40x27 fixed40x28 fixed40x29 fixed40x30 fixed40x31 fixed40x32 fixed40x33 fixed40x34 fixed40x35 fixed40x36 fixed40x37 fixed40x38 fixed40x39 fixed40x40 fixed40x41 fixed40x42 fixed40x43 fixed40x44 fixed40x45 fixed40x46 fixed40x47 fixed40x48 fixed40x49 fixed40x50 fixed40x51 fixed40x52 fixed40x53 fixed40x54 fixed40x55 fixed40x56 fixed40x57 fixed40x58 fixed40x59 fixed40x60 fixed40x61 fixed40x62 fixed40x63 fixed40x64 fixed40x65 fixed40x66 fixed40x67 fixed40x68 fixed40x69 fixed40x70 fixed40x71 fixed40x72 fixed40x73 fixed40x74 fixed40x75 fixed40x76 fixed40x77 fixed40x78 fixed40x79 fixed40x80 fixed48x0 fixed48x1 fixed48x2 fixed48x3 fixed48x4 fixed48x5 fixed48x6 fixed48x7 fixed48x8 fixed48x9 fixed48x10 fixed48x11 fixed48x12 fixed48x13 fixed48x14 fixed48x15 fixed48x16 fixed48x17 fixed48x18 fixed48x19 fixed48x20 fixed48x21 fixed48x22 fixed48x23 fixed48x24 fixed48x25 fixed48x26 fixed48x27 fixed48x28 fixed48x29 fixed48x30 fixed48x31 fixed48x32 fixed48x33 fixed48x34 fixed48x35 fixed48x36 fixed48x37 fixed48x38 fixed48x39 fixed48x40 fixed48x41 fixed48x42 fixed48x43 fixed48x44 fixed48x45 fixed48x46 fixed48x47 fixed48x48 fixed48x49 fixed48x50 fixed48x51 fixed48x52 fixed48x53 fixed48x54 fixed48x55 fixed48x56 fixed48x57 fixed48x58 fixed48x59 fixed48x60 fixed48x61 fixed48x62 fixed48x63 fixed48x64 fixed48x65 fixed48x66 fixed48x67 fixed48x68 fixed48x69 fixed48x70 fixed48x71 fixed48x72 fixed48x73 fixed48x74 fixed48x75 fixed48x76 fixed48x77 fixed48x78 fixed48x79 fixed48x80 fixed56x0 fixed56x1 fixed56x2 fixed56x3 fixed56x4 fixed56x5 fixed56x6 fixed56x7 fixed56x8 fixed56x9 fixed56x10 fixed56x11 fixed56x12 fixed56x13 fixed56x14 fixed56x15 fixed56x16 fixed56x17 fixed56x18 fixed56x19 fixed56x20 fixed56x21 fixed56x22 fixed56x23 fixed56x24 fixed56x25 fixed56x26 fixed56x27 fixed56x28 fixed56x29 fixed56x30 fixed56x31 fixed56x32 fixed56x33 fixed56x34 fixed56x35 fixed56x36 fixed56x37 fixed56x38 fixed56x39 fixed56x40 fixed56x41 fixed56x42 fixed56x43 fixed56x44 fixed56x45 fixed56x46 fixed56x47 fixed56x48 fixed56x49 fixed56x50 fixed56x51 fixed56x52 fixed56x53 fixed56x54 fixed56x55 fixed56x56 fixed56x57 fixed56x58 fixed56x59 fixed56x60 fixed56x61 fixed56x62 fixed56x63 fixed56x64 fixed56x65 fixed56x66 fixed56x67 fixed56x68 fixed56x69 fixed56x70 fixed56x71 fixed56x72 fixed56x73 fixed56x74 fixed56x75 fixed56x76 fixed56x77 fixed56x78 fixed56x79 fixed56x80 fixed64x0 fixed64x1 fixed64x2 fixed64x3 fixed64x4 fixed64x5 fixed64x6 fixed64x7 fixed64x8 fixed64x9 fixed64x10 fixed64x11 fixed64x12 fixed64x13 fixed64x14 fixed64x15 fixed64x16 fixed64x17 fixed64x18 fixed64x19 fixed64x20 fixed64x21 fixed64x22 fixed64x23 fixed64x24 fixed64x25 fixed64x26 fixed64x27 fixed64x28 fixed64x29 fixed64x30 fixed64x31 fixed64x32 fixed64x33 fixed64x34 fixed64x35 fixed64x36 fixed64x37 fixed64x38 fixed64x39 fixed64x40 fixed64x41 fixed64x42 fixed64x43 fixed64x44 fixed64x45 fixed64x46 fixed64x47 fixed64x48 fixed64x49 fixed64x50 fixed64x51 fixed64x52 fixed64x53 fixed64x54 fixed64x55 fixed64x56 fixed64x57 fixed64x58 fixed64x59 fixed64x60 fixed64x61 fixed64x62 fixed64x63 fixed64x64 fixed64x65 fixed64x66 fixed64x67 fixed64x68 fixed64x69 fixed64x70 fixed64x71 fixed64x72 fixed64x73 fixed64x74 fixed64x75 fixed64x76 fixed64x77 fixed64x78 fixed64x79 fixed64x80 fixed72x0 fixed72x1 fixed72x2 fixed72x3 fixed72x4 fixed72x5 fixed72x6 fixed72x7 fixed72x8 fixed72x9 fixed72x10 fixed72x11 fixed72x12 fixed72x13 fixed72x14 fixed72x15 fixed72x16 fixed72x17 fixed72x18 fixed72x19 fixed72x20 fixed72x21 fixed72x22 fixed72x23 fixed72x24 fixed72x25 fixed72x26 fixed72x27 fixed72x28 fixed72x29 fixed72x30 fixed72x31 fixed72x32 fixed72x33 fixed72x34 fixed72x35 fixed72x36 fixed72x37 fixed72x38 fixed72x39 fixed72x40 fixed72x41 fixed72x42 fixed72x43 fixed72x44 fixed72x45 fixed72x46 fixed72x47 fixed72x48 fixed72x49 fixed72x50 fixed72x51 fixed72x52 fixed72x53 fixed72x54 fixed72x55 fixed72x56 fixed72x57 fixed72x58 fixed72x59 fixed72x60 fixed72x61 fixed72x62 fixed72x63 fixed72x64 fixed72x65 fixed72x66 fixed72x67 fixed72x68 fixed72x69 fixed72x70 fixed72x71 fixed72x72 fixed72x73 fixed72x74 fixed72x75 fixed72x76 fixed72x77 fixed72x78 fixed72x79 fixed72x80 fixed80x0 fixed80x1 fixed80x2 fixed80x3 fixed80x4 fixed80x5 fixed80x6 fixed80x7 fixed80x8 fixed80x9 fixed80x10 fixed80x11 fixed80x12 fixed80x13 fixed80x14 fixed80x15 fixed80x16 fixed80x17 fixed80x18 fixed80x19 fixed80x20 fixed80x21 fixed80x22 fixed80x23 fixed80x24 fixed80x25 fixed80x26 fixed80x27 fixed80x28 fixed80x29 fixed80x30 fixed80x31 fixed80x32 fixed80x33 fixed80x34 fixed80x35 fixed80x36 fixed80x37 fixed80x38 fixed80x39 fixed80x40 fixed80x41 fixed80x42 fixed80x43 fixed80x44 fixed80x45 fixed80x46 fixed80x47 fixed80x48 fixed80x49 fixed80x50 fixed80x51 fixed80x52 fixed80x53 fixed80x54 fixed80x55 fixed80x56 fixed80x57 fixed80x58 fixed80x59 fixed80x60 fixed80x61 fixed80x62 fixed80x63 fixed80x64 fixed80x65 fixed80x66 fixed80x67 fixed80x68 fixed80x69 fixed80x70 fixed80x71 fixed80x72 fixed80x73 fixed80x74 fixed80x75 fixed80x76 fixed80x77 fixed80x78 fixed80x79 fixed80x80 fixed88x0 fixed88x1 fixed88x2 fixed88x3 fixed88x4 fixed88x5 fixed88x6 fixed88x7 fixed88x8 fixed88x9 fixed88x10 fixed88x11 fixed88x12 fixed88x13 fixed88x14 fixed88x15 fixed88x16 fixed88x17 fixed88x18 fixed88x19 fixed88x20 fixed88x21 fixed88x22 fixed88x23 fixed88x24 fixed88x25 fixed88x26 fixed88x27 fixed88x28 fixed88x29 fixed88x30 fixed88x31 fixed88x32 fixed88x33 fixed88x34 fixed88x35 fixed88x36 fixed88x37 fixed88x38 fixed88x39 fixed88x40 fixed88x41 fixed88x42 fixed88x43 fixed88x44 fixed88x45 fixed88x46 fixed88x47 fixed88x48 fixed88x49 fixed88x50 fixed88x51 fixed88x52 fixed88x53 fixed88x54 fixed88x55 fixed88x56 fixed88x57 fixed88x58 fixed88x59 fixed88x60 fixed88x61 fixed88x62 fixed88x63 fixed88x64 fixed88x65 fixed88x66 fixed88x67 fixed88x68 fixed88x69 fixed88x70 fixed88x71 fixed88x72 fixed88x73 fixed88x74 fixed88x75 fixed88x76 fixed88x77 fixed88x78 fixed88x79 fixed88x80 fixed96x0 fixed96x1 fixed96x2 fixed96x3 fixed96x4 fixed96x5 fixed96x6 fixed96x7 fixed96x8 fixed96x9 fixed96x10 fixed96x11 fixed96x12 fixed96x13 fixed96x14 fixed96x15 fixed96x16 fixed96x17 fixed96x18 fixed96x19 fixed96x20 fixed96x21 fixed96x22 fixed96x23 fixed96x24 fixed96x25 fixed96x26 fixed96x27 fixed96x28 fixed96x29 fixed96x30 fixed96x31 fixed96x32 fixed96x33 fixed96x34 fixed96x35 fixed96x36 fixed96x37 fixed96x38 fixed96x39 fixed96x40 fixed96x41 fixed96x42 fixed96x43 fixed96x44 fixed96x45 fixed96x46 fixed96x47 fixed96x48 fixed96x49 fixed96x50 fixed96x51 fixed96x52 fixed96x53 fixed96x54 fixed96x55 fixed96x56 fixed96x57 fixed96x58 fixed96x59 fixed96x60 fixed96x61 fixed96x62 fixed96x63 fixed96x64 fixed96x65 fixed96x66 fixed96x67 fixed96x68 fixed96x69 fixed96x70 fixed96x71 fixed96x72 fixed96x73 fixed96x74 fixed96x75 fixed96x76 fixed96x77 fixed96x78 fixed96x79 fixed96x80 fixed104x0 fixed104x1 fixed104x2 fixed104x3 fixed104x4 fixed104x5 fixed104x6 fixed104x7 fixed104x8 fixed104x9 fixed104x10 fixed104x11 fixed104x12 fixed104x13 fixed104x14 fixed104x15 fixed104x16 fixed104x17 fixed104x18 fixed104x19 fixed104x20 fixed104x21 fixed104x22 fixed104x23 fixed104x24 fixed104x25 fixed104x26 fixed104x27 fixed104x28 fixed104x29 fixed104x30 fixed104x31 fixed104x32 fixed104x33 fixed104x34 fixed104x35 fixed104x36 fixed104x37 fixed104x38 fixed104x39 fixed104x40 fixed104x41 fixed104x42 fixed104x43 fixed104x44 fixed104x45 fixed104x46 fixed104x47 fixed104x48 fixed104x49 fixed104x50 fixed104x51 fixed104x52 fixed104x53 fixed104x54 fixed104x55 fixed104x56 fixed104x57 fixed104x58 fixed104x59 fixed104x60 fixed104x61 fixed104x62 fixed104x63 fixed104x64 fixed104x65 fixed104x66 fixed104x67 fixed104x68 fixed104x69 fixed104x70 fixed104x71 fixed104x72 fixed104x73 fixed104x74 fixed104x75 fixed104x76 fixed104x77 fixed104x78 fixed104x79 fixed104x80 fixed112x0 fixed112x1 fixed112x2 fixed112x3 fixed112x4 fixed112x5 fixed112x6 fixed112x7 fixed112x8 fixed112x9 fixed112x10 fixed112x11 fixed112x12 fixed112x13 fixed112x14 fixed112x15 fixed112x16 fixed112x17 fixed112x18 fixed112x19 fixed112x20 fixed112x21 fixed112x22 fixed112x23 fixed112x24 fixed112x25 fixed112x26 fixed112x27 fixed112x28 fixed112x29 fixed112x30 fixed112x31 fixed112x32 fixed112x33 fixed112x34 fixed112x35 fixed112x36 fixed112x37 fixed112x38 fixed112x39 fixed112x40 fixed112x41 fixed112x42 fixed112x43 fixed112x44 fixed112x45 fixed112x46 fixed112x47 fixed112x48 fixed112x49 fixed112x50 fixed112x51 fixed112x52 fixed112x53 fixed112x54 fixed112x55 fixed112x56 fixed112x57 fixed112x58 fixed112x59 fixed112x60 fixed112x61 fixed112x62 fixed112x63 fixed112x64 fixed112x65 fixed112x66 fixed112x67 fixed112x68 fixed112x69 fixed112x70 fixed112x71 fixed112x72 fixed112x73 fixed112x74 fixed112x75 fixed112x76 fixed112x77 fixed112x78 fixed112x79 fixed112x80 fixed120x0 fixed120x1 fixed120x2 fixed120x3 fixed120x4 fixed120x5 fixed120x6 fixed120x7 fixed120x8 fixed120x9 fixed120x10 fixed120x11 fixed120x12 fixed120x13 fixed120x14 fixed120x15 fixed120x16 fixed120x17 fixed120x18 fixed120x19 fixed120x20 fixed120x21 fixed120x22 fixed120x23 fixed120x24 fixed120x25 fixed120x26 fixed120x27 fixed120x28 fixed120x29 fixed120x30 fixed120x31 fixed120x32 fixed120x33 fixed120x34 fixed120x35 fixed120x36 fixed120x37 fixed120x38 fixed120x39 fixed120x40 fixed120x41 fixed120x42 fixed120x43 fixed120x44 fixed120x45 fixed120x46 fixed120x47 fixed120x48 fixed120x49 fixed120x50 fixed120x51 fixed120x52 fixed120x53 fixed120x54 fixed120x55 fixed120x56 fixed120x57 fixed120x58 fixed120x59 fixed120x60 fixed120x61 fixed120x62 fixed120x63 fixed120x64 fixed120x65 fixed120x66 fixed120x67 fixed120x68 fixed120x69 fixed120x70 fixed120x71 fixed120x72 fixed120x73 fixed120x74 fixed120x75 fixed120x76 fixed120x77 fixed120x78 fixed120x79 fixed120x80 fixed128x0 fixed128x1 fixed128x2 fixed128x3 fixed128x4 fixed128x5 fixed128x6 fixed128x7 fixed128x8 fixed128x9 fixed128x10 fixed128x11 fixed128x12 fixed128x13 fixed128x14 fixed128x15 fixed128x16 fixed128x17 fixed128x18 fixed128x19 fixed128x20 fixed128x21 fixed128x22 fixed128x23 fixed128x24 fixed128x25 fixed128x26 fixed128x27 fixed128x28 fixed128x29 fixed128x30 fixed128x31 fixed128x32 fixed128x33 fixed128x34 fixed128x35 fixed128x36 fixed128x37 fixed128x38 fixed128x39 fixed128x40 fixed128x41 fixed128x42 fixed128x43 fixed128x44 fixed128x45 fixed128x46 fixed128x47 fixed128x48 fixed128x49 fixed128x50 fixed128x51 fixed128x52 fixed128x53 fixed128x54 fixed128x55 fixed128x56 fixed128x57 fixed128x58 fixed128x59 fixed128x60 fixed128x61 fixed128x62 fixed128x63 fixed128x64 fixed128x65 fixed128x66 fixed128x67 fixed128x68 fixed128x69 fixed128x70 fixed128x71 fixed128x72 fixed128x73 fixed128x74 fixed128x75 fixed128x76 fixed128x77 fixed128x78 fixed128x79 fixed128x80 fixed136x0 fixed136x1 fixed136x2 fixed136x3 fixed136x4 fixed136x5 fixed136x6 fixed136x7 fixed136x8 fixed136x9 fixed136x10 fixed136x11 fixed136x12 fixed136x13 fixed136x14 fixed136x15 fixed136x16 fixed136x17 fixed136x18 fixed136x19 fixed136x20 fixed136x21 fixed136x22 fixed136x23 fixed136x24 fixed136x25 fixed136x26 fixed136x27 fixed136x28 fixed136x29 fixed136x30 fixed136x31 fixed136x32 fixed136x33 fixed136x34 fixed136x35 fixed136x36 fixed136x37 fixed136x38 fixed136x39 fixed136x40 fixed136x41 fixed136x42 fixed136x43 fixed136x44 fixed136x45 fixed136x46 fixed136x47 fixed136x48 fixed136x49 fixed136x50 fixed136x51 fixed136x52 fixed136x53 fixed136x54 fixed136x55 fixed136x56 fixed136x57 fixed136x58 fixed136x59 fixed136x60 fixed136x61 fixed136x62 fixed136x63 fixed136x64 fixed136x65 fixed136x66 fixed136x67 fixed136x68 fixed136x69 fixed136x70 fixed136x71 fixed136x72 fixed136x73 fixed136x74 fixed136x75 fixed136x76 fixed136x77 fixed136x78 fixed136x79 fixed136x80 fixed144x0 fixed144x1 fixed144x2 fixed144x3 fixed144x4 fixed144x5 fixed144x6 fixed144x7 fixed144x8 fixed144x9 fixed144x10 fixed144x11 fixed144x12 fixed144x13 fixed144x14 fixed144x15 fixed144x16 fixed144x17 fixed144x18 fixed144x19 fixed144x20 fixed144x21 fixed144x22 fixed144x23 fixed144x24 fixed144x25 fixed144x26 fixed144x27 fixed144x28 fixed144x29 fixed144x30 fixed144x31 fixed144x32 fixed144x33 fixed144x34 fixed144x35 fixed144x36 fixed144x37 fixed144x38 fixed144x39 fixed144x40 fixed144x41 fixed144x42 fixed144x43 fixed144x44 fixed144x45 fixed144x46 fixed144x47 fixed144x48 fixed144x49 fixed144x50 fixed144x51 fixed144x52 fixed144x53 fixed144x54 fixed144x55 fixed144x56 fixed144x57 fixed144x58 fixed144x59 fixed144x60 fixed144x61 fixed144x62 fixed144x63 fixed144x64 fixed144x65 fixed144x66 fixed144x67 fixed144x68 fixed144x69 fixed144x70 fixed144x71 fixed144x72 fixed144x73 fixed144x74 fixed144x75 fixed144x76 fixed144x77 fixed144x78 fixed144x79 fixed144x80 fixed152x0 fixed152x1 fixed152x2 fixed152x3 fixed152x4 fixed152x5 fixed152x6 fixed152x7 fixed152x8 fixed152x9 fixed152x10 fixed152x11 fixed152x12 fixed152x13 fixed152x14 fixed152x15 fixed152x16 fixed152x17 fixed152x18 fixed152x19 fixed152x20 fixed152x21 fixed152x22 fixed152x23 fixed152x24 fixed152x25 fixed152x26 fixed152x27 fixed152x28 fixed152x29 fixed152x30 fixed152x31 fixed152x32 fixed152x33 fixed152x34 fixed152x35 fixed152x36 fixed152x37 fixed152x38 fixed152x39 fixed152x40 fixed152x41 fixed152x42 fixed152x43 fixed152x44 fixed152x45 fixed152x46 fixed152x47 fixed152x48 fixed152x49 fixed152x50 fixed152x51 fixed152x52 fixed152x53 fixed152x54 fixed152x55 fixed152x56 fixed152x57 fixed152x58 fixed152x59 fixed152x60 fixed152x61 fixed152x62 fixed152x63 fixed152x64 fixed152x65 fixed152x66 fixed152x67 fixed152x68 fixed152x69 fixed152x70 fixed152x71 fixed152x72 fixed152x73 fixed152x74 fixed152x75 fixed152x76 fixed152x77 fixed152x78 fixed152x79 fixed152x80 fixed160x0 fixed160x1 fixed160x2 fixed160x3 fixed160x4 fixed160x5 fixed160x6 fixed160x7 fixed160x8 fixed160x9 fixed160x10 fixed160x11 fixed160x12 fixed160x13 fixed160x14 fixed160x15 fixed160x16 fixed160x17 fixed160x18 fixed160x19 fixed160x20 fixed160x21 fixed160x22 fixed160x23 fixed160x24 fixed160x25 fixed160x26 fixed160x27 fixed160x28 fixed160x29 fixed160x30 fixed160x31 fixed160x32 fixed160x33 fixed160x34 fixed160x35 fixed160x36 fixed160x37 fixed160x38 fixed160x39 fixed160x40 fixed160x41 fixed160x42 fixed160x43 fixed160x44 fixed160x45 fixed160x46 fixed160x47 fixed160x48 fixed160x49 fixed160x50 fixed160x51 fixed160x52 fixed160x53 fixed160x54 fixed160x55 fixed160x56 fixed160x57 fixed160x58 fixed160x59 fixed160x60 fixed160x61 fixed160x62 fixed160x63 fixed160x64 fixed160x65 fixed160x66 fixed160x67 fixed160x68 fixed160x69 fixed160x70 fixed160x71 fixed160x72 fixed160x73 fixed160x74 fixed160x75 fixed160x76 fixed160x77 fixed160x78 fixed160x79 fixed160x80 fixed168x0 fixed168x1 fixed168x2 fixed168x3 fixed168x4 fixed168x5 fixed168x6 fixed168x7 fixed168x8 fixed168x9 fixed168x10 fixed168x11 fixed168x12 fixed168x13 fixed168x14 fixed168x15 fixed168x16 fixed168x17 fixed168x18 fixed168x19 fixed168x20 fixed168x21 fixed168x22 fixed168x23 fixed168x24 fixed168x25 fixed168x26 fixed168x27 fixed168x28 fixed168x29 fixed168x30 fixed168x31 fixed168x32 fixed168x33 fixed168x34 fixed168x35 fixed168x36 fixed168x37 fixed168x38 fixed168x39 fixed168x40 fixed168x41 fixed168x42 fixed168x43 fixed168x44 fixed168x45 fixed168x46 fixed168x47 fixed168x48 fixed168x49 fixed168x50 fixed168x51 fixed168x52 fixed168x53 fixed168x54 fixed168x55 fixed168x56 fixed168x57 fixed168x58 fixed168x59 fixed168x60 fixed168x61 fixed168x62 fixed168x63 fixed168x64 fixed168x65 fixed168x66 fixed168x67 fixed168x68 fixed168x69 fixed168x70 fixed168x71 fixed168x72 fixed168x73 fixed168x74 fixed168x75 fixed168x76 fixed168x77 fixed168x78 fixed168x79 fixed168x80 fixed176x0 fixed176x1 fixed176x2 fixed176x3 fixed176x4 fixed176x5 fixed176x6 fixed176x7 fixed176x8 fixed176x9 fixed176x10 fixed176x11 fixed176x12 fixed176x13 fixed176x14 fixed176x15 fixed176x16 fixed176x17 fixed176x18 fixed176x19 fixed176x20 fixed176x21 fixed176x22 fixed176x23 fixed176x24 fixed176x25 fixed176x26 fixed176x27 fixed176x28 fixed176x29 fixed176x30 fixed176x31 fixed176x32 fixed176x33 fixed176x34 fixed176x35 fixed176x36 fixed176x37 fixed176x38 fixed176x39 fixed176x40 fixed176x41 fixed176x42 fixed176x43 fixed176x44 fixed176x45 fixed176x46 fixed176x47 fixed176x48 fixed176x49 fixed176x50 fixed176x51 fixed176x52 fixed176x53 fixed176x54 fixed176x55 fixed176x56 fixed176x57 fixed176x58 fixed176x59 fixed176x60 fixed176x61 fixed176x62 fixed176x63 fixed176x64 fixed176x65 fixed176x66 fixed176x67 fixed176x68 fixed176x69 fixed176x70 fixed176x71 fixed176x72 fixed176x73 fixed176x74 fixed176x75 fixed176x76 fixed176x77 fixed176x78 fixed176x79 fixed176x80 fixed184x0 fixed184x1 fixed184x2 fixed184x3 fixed184x4 fixed184x5 fixed184x6 fixed184x7 fixed184x8 fixed184x9 fixed184x10 fixed184x11 fixed184x12 fixed184x13 fixed184x14 fixed184x15 fixed184x16 fixed184x17 fixed184x18 fixed184x19 fixed184x20 fixed184x21 fixed184x22 fixed184x23 fixed184x24 fixed184x25 fixed184x26 fixed184x27 fixed184x28 fixed184x29 fixed184x30 fixed184x31 fixed184x32 fixed184x33 fixed184x34 fixed184x35 fixed184x36 fixed184x37 fixed184x38 fixed184x39 fixed184x40 fixed184x41 fixed184x42 fixed184x43 fixed184x44 fixed184x45 fixed184x46 fixed184x47 fixed184x48 fixed184x49 fixed184x50 fixed184x51 fixed184x52 fixed184x53 fixed184x54 fixed184x55 fixed184x56 fixed184x57 fixed184x58 fixed184x59 fixed184x60 fixed184x61 fixed184x62 fixed184x63 fixed184x64 fixed184x65 fixed184x66 fixed184x67 fixed184x68 fixed184x69 fixed184x70 fixed184x71 fixed184x72 fixed184x73 fixed184x74 fixed184x75 fixed184x76 fixed184x77 fixed184x78 fixed184x79 fixed184x80 fixed192x0 fixed192x1 fixed192x2 fixed192x3 fixed192x4 fixed192x5 fixed192x6 fixed192x7 fixed192x8 fixed192x9 fixed192x10 fixed192x11 fixed192x12 fixed192x13 fixed192x14 fixed192x15 fixed192x16 fixed192x17 fixed192x18 fixed192x19 fixed192x20 fixed192x21 fixed192x22 fixed192x23 fixed192x24 fixed192x25 fixed192x26 fixed192x27 fixed192x28 fixed192x29 fixed192x30 fixed192x31 fixed192x32 fixed192x33 fixed192x34 fixed192x35 fixed192x36 fixed192x37 fixed192x38 fixed192x39 fixed192x40 fixed192x41 fixed192x42 fixed192x43 fixed192x44 fixed192x45 fixed192x46 fixed192x47 fixed192x48 fixed192x49 fixed192x50 fixed192x51 fixed192x52 fixed192x53 fixed192x54 fixed192x55 fixed192x56 fixed192x57 fixed192x58 fixed192x59 fixed192x60 fixed192x61 fixed192x62 fixed192x63 fixed192x64 fixed192x65 fixed192x66 fixed192x67 fixed192x68 fixed192x69 fixed192x70 fixed192x71 fixed192x72 fixed192x73 fixed192x74 fixed192x75 fixed192x76 fixed192x77 fixed192x78 fixed192x79 fixed192x80 fixed200x0 fixed200x1 fixed200x2 fixed200x3 fixed200x4 fixed200x5 fixed200x6 fixed200x7 fixed200x8 fixed200x9 fixed200x10 fixed200x11 fixed200x12 fixed200x13 fixed200x14 fixed200x15 fixed200x16 fixed200x17 fixed200x18 fixed200x19 fixed200x20 fixed200x21 fixed200x22 fixed200x23 fixed200x24 fixed200x25 fixed200x26 fixed200x27 fixed200x28 fixed200x29 fixed200x30 fixed200x31 fixed200x32 fixed200x33 fixed200x34 fixed200x35 fixed200x36 fixed200x37 fixed200x38 fixed200x39 fixed200x40 fixed200x41 fixed200x42 fixed200x43 fixed200x44 fixed200x45 fixed200x46 fixed200x47 fixed200x48 fixed200x49 fixed200x50 fixed200x51 fixed200x52 fixed200x53 fixed200x54 fixed200x55 fixed200x56 fixed200x57 fixed200x58 fixed200x59 fixed200x60 fixed200x61 fixed200x62 fixed200x63 fixed200x64 fixed200x65 fixed200x66 fixed200x67 fixed200x68 fixed200x69 fixed200x70 fixed200x71 fixed200x72 fixed200x73 fixed200x74 fixed200x75 fixed200x76 fixed200x77 fixed200x78 fixed200x79 fixed200x80 fixed208x0 fixed208x1 fixed208x2 fixed208x3 fixed208x4 fixed208x5 fixed208x6 fixed208x7 fixed208x8 fixed208x9 fixed208x10 fixed208x11 fixed208x12 fixed208x13 fixed208x14 fixed208x15 fixed208x16 fixed208x17 fixed208x18 fixed208x19 fixed208x20 fixed208x21 fixed208x22 fixed208x23 fixed208x24 fixed208x25 fixed208x26 fixed208x27 fixed208x28 fixed208x29 fixed208x30 fixed208x31 fixed208x32 fixed208x33 fixed208x34 fixed208x35 fixed208x36 fixed208x37 fixed208x38 fixed208x39 fixed208x40 fixed208x41 fixed208x42 fixed208x43 fixed208x44 fixed208x45 fixed208x46 fixed208x47 fixed208x48 fixed208x49 fixed208x50 fixed208x51 fixed208x52 fixed208x53 fixed208x54 fixed208x55 fixed208x56 fixed208x57 fixed208x58 fixed208x59 fixed208x60 fixed208x61 fixed208x62 fixed208x63 fixed208x64 fixed208x65 fixed208x66 fixed208x67 fixed208x68 fixed208x69 fixed208x70 fixed208x71 fixed208x72 fixed208x73 fixed208x74 fixed208x75 fixed208x76 fixed208x77 fixed208x78 fixed208x79 fixed208x80 fixed216x0 fixed216x1 fixed216x2 fixed216x3 fixed216x4 fixed216x5 fixed216x6 fixed216x7 fixed216x8 fixed216x9 fixed216x10 fixed216x11 fixed216x12 fixed216x13 fixed216x14 fixed216x15 fixed216x16 fixed216x17 fixed216x18 fixed216x19 fixed216x20 fixed216x21 fixed216x22 fixed216x23 fixed216x24 fixed216x25 fixed216x26 fixed216x27 fixed216x28 fixed216x29 fixed216x30 fixed216x31 fixed216x32 fixed216x33 fixed216x34 fixed216x35 fixed216x36 fixed216x37 fixed216x38 fixed216x39 fixed216x40 fixed216x41 fixed216x42 fixed216x43 fixed216x44 fixed216x45 fixed216x46 fixed216x47 fixed216x48 fixed216x49 fixed216x50 fixed216x51 fixed216x52 fixed216x53 fixed216x54 fixed216x55 fixed216x56 fixed216x57 fixed216x58 fixed216x59 fixed216x60 fixed216x61 fixed216x62 fixed216x63 fixed216x64 fixed216x65 fixed216x66 fixed216x67 fixed216x68 fixed216x69 fixed216x70 fixed216x71 fixed216x72 fixed216x73 fixed216x74 fixed216x75 fixed216x76 fixed216x77 fixed216x78 fixed216x79 fixed216x80 fixed224x0 fixed224x1 fixed224x2 fixed224x3 fixed224x4 fixed224x5 fixed224x6 fixed224x7 fixed224x8 fixed224x9 fixed224x10 fixed224x11 fixed224x12 fixed224x13 fixed224x14 fixed224x15 fixed224x16 fixed224x17 fixed224x18 fixed224x19 fixed224x20 fixed224x21 fixed224x22 fixed224x23 fixed224x24 fixed224x25 fixed224x26 fixed224x27 fixed224x28 fixed224x29 fixed224x30 fixed224x31 fixed224x32 fixed224x33 fixed224x34 fixed224x35 fixed224x36 fixed224x37 fixed224x38 fixed224x39 fixed224x40 fixed224x41 fixed224x42 fixed224x43 fixed224x44 fixed224x45 fixed224x46 fixed224x47 fixed224x48 fixed224x49 fixed224x50 fixed224x51 fixed224x52 fixed224x53 fixed224x54 fixed224x55 fixed224x56 fixed224x57 fixed224x58 fixed224x59 fixed224x60 fixed224x61 fixed224x62 fixed224x63 fixed224x64 fixed224x65 fixed224x66 fixed224x67 fixed224x68 fixed224x69 fixed224x70 fixed224x71 fixed224x72 fixed224x73 fixed224x74 fixed224x75 fixed224x76 fixed224x77 fixed224x78 fixed224x79 fixed224x80 fixed232x0 fixed232x1 fixed232x2 fixed232x3 fixed232x4 fixed232x5 fixed232x6 fixed232x7 fixed232x8 fixed232x9 fixed232x10 fixed232x11 fixed232x12 fixed232x13 fixed232x14 fixed232x15 fixed232x16 fixed232x17 fixed232x18 fixed232x19 fixed232x20 fixed232x21 fixed232x22 fixed232x23 fixed232x24 fixed232x25 fixed232x26 fixed232x27 fixed232x28 fixed232x29 fixed232x30 fixed232x31 fixed232x32 fixed232x33 fixed232x34 fixed232x35 fixed232x36 fixed232x37 fixed232x38 fixed232x39 fixed232x40 fixed232x41 fixed232x42 fixed232x43 fixed232x44 fixed232x45 fixed232x46 fixed232x47 fixed232x48 fixed232x49 fixed232x50 fixed232x51 fixed232x52 fixed232x53 fixed232x54 fixed232x55 fixed232x56 fixed232x57 fixed232x58 fixed232x59 fixed232x60 fixed232x61 fixed232x62 fixed232x63 fixed232x64 fixed232x65 fixed232x66 fixed232x67 fixed232x68 fixed232x69 fixed232x70 fixed232x71 fixed232x72 fixed232x73 fixed232x74 fixed232x75 fixed232x76 fixed232x77 fixed232x78 fixed232x79 fixed232x80 fixed240x0 fixed240x1 fixed240x2 fixed240x3 fixed240x4 fixed240x5 fixed240x6 fixed240x7 fixed240x8 fixed240x9 fixed240x10 fixed240x11 fixed240x12 fixed240x13 fixed240x14 fixed240x15 fixed240x16 fixed240x17 fixed240x18 fixed240x19 fixed240x20 fixed240x21 fixed240x22 fixed240x23 fixed240x24 fixed240x25 fixed240x26 fixed240x27 fixed240x28 fixed240x29 fixed240x30 fixed240x31 fixed240x32 fixed240x33 fixed240x34 fixed240x35 fixed240x36 fixed240x37 fixed240x38 fixed240x39 fixed240x40 fixed240x41 fixed240x42 fixed240x43 fixed240x44 fixed240x45 fixed240x46 fixed240x47 fixed240x48 fixed240x49 fixed240x50 fixed240x51 fixed240x52 fixed240x53 fixed240x54 fixed240x55 fixed240x56 fixed240x57 fixed240x58 fixed240x59 fixed240x60 fixed240x61 fixed240x62 fixed240x63 fixed240x64 fixed240x65 fixed240x66 fixed240x67 fixed240x68 fixed240x69 fixed240x70 fixed240x71 fixed240x72 fixed240x73 fixed240x74 fixed240x75 fixed240x76 fixed240x77 fixed240x78 fixed240x79 fixed240x80 fixed248x0 fixed248x1 fixed248x2 fixed248x3 fixed248x4 fixed248x5 fixed248x6 fixed248x7 fixed248x8 fixed248x9 fixed248x10 fixed248x11 fixed248x12 fixed248x13 fixed248x14 fixed248x15 fixed248x16 fixed248x17 fixed248x18 fixed248x19 fixed248x20 fixed248x21 fixed248x22 fixed248x23 fixed248x24 fixed248x25 fixed248x26 fixed248x27 fixed248x28 fixed248x29 fixed248x30 fixed248x31 fixed248x32 fixed248x33 fixed248x34 fixed248x35 fixed248x36 fixed248x37 fixed248x38 fixed248x39 fixed248x40 fixed248x41 fixed248x42 fixed248x43 fixed248x44 fixed248x45 fixed248x46 fixed248x47 fixed248x48 fixed248x49 fixed248x50 fixed248x51 fixed248x52 fixed248x53 fixed248x54 fixed248x55 fixed248x56 fixed248x57 fixed248x58 fixed248x59 fixed248x60 fixed248x61 fixed248x62 fixed248x63 fixed248x64 fixed248x65 fixed248x66 fixed248x67 fixed248x68 fixed248x69 fixed248x70 fixed248x71 fixed248x72 fixed248x73 fixed248x74 fixed248x75 fixed248x76 fixed248x77 fixed248x78 fixed248x79 fixed248x80 fixed256x0 fixed256x1 fixed256x2 fixed256x3 fixed256x4 fixed256x5 fixed256x6 fixed256x7 fixed256x8 fixed256x9 fixed256x10 fixed256x11 fixed256x12 fixed256x13 fixed256x14 fixed256x15 fixed256x16 fixed256x17 fixed256x18 fixed256x19 fixed256x20 fixed256x21 fixed256x22 fixed256x23 fixed256x24 fixed256x25 fixed256x26 fixed256x27 fixed256x28 fixed256x29 fixed256x30 fixed256x31 fixed256x32 fixed256x33 fixed256x34 fixed256x35 fixed256x36 fixed256x37 fixed256x38 fixed256x39 fixed256x40 fixed256x41 fixed256x42 fixed256x43 fixed256x44 fixed256x45 fixed256x46 fixed256x47 fixed256x48 fixed256x49 fixed256x50 fixed256x51 fixed256x52 fixed256x53 fixed256x54 fixed256x55 fixed256x56 fixed256x57 fixed256x58 fixed256x59 fixed256x60 fixed256x61 fixed256x62 fixed256x63 fixed256x64 fixed256x65 fixed256x66 fixed256x67 fixed256x68 fixed256x69 fixed256x70 fixed256x71 fixed256x72 fixed256x73 fixed256x74 fixed256x75 fixed256x76 fixed256x77 fixed256x78 fixed256x79 fixed256x80 ufixed8x0 ufixed8x1 ufixed8x2 ufixed8x3 ufixed8x4 ufixed8x5 ufixed8x6 ufixed8x7 ufixed8x8 ufixed8x9 ufixed8x10 ufixed8x11 ufixed8x12 ufixed8x13 ufixed8x14 ufixed8x15 ufixed8x16 ufixed8x17 ufixed8x18 ufixed8x19 ufixed8x20 ufixed8x21 ufixed8x22 ufixed8x23 ufixed8x24 ufixed8x25 ufixed8x26 ufixed8x27 ufixed8x28 ufixed8x29 ufixed8x30 ufixed8x31 ufixed8x32 ufixed8x33 ufixed8x34 ufixed8x35 ufixed8x36 ufixed8x37 ufixed8x38 ufixed8x39 ufixed8x40 ufixed8x41 ufixed8x42 ufixed8x43 ufixed8x44 ufixed8x45 ufixed8x46 ufixed8x47 ufixed8x48 ufixed8x49 ufixed8x50 ufixed8x51 ufixed8x52 ufixed8x53 ufixed8x54 ufixed8x55 ufixed8x56 ufixed8x57 ufixed8x58 ufixed8x59 ufixed8x60 ufixed8x61 ufixed8x62 ufixed8x63 ufixed8x64 ufixed8x65 ufixed8x66 ufixed8x67 ufixed8x68 ufixed8x69 ufixed8x70 ufixed8x71 ufixed8x72 ufixed8x73 ufixed8x74 ufixed8x75 ufixed8x76 ufixed8x77 ufixed8x78 ufixed8x79 ufixed8x80 ufixed16x0 ufixed16x1 ufixed16x2 ufixed16x3 ufixed16x4 ufixed16x5 ufixed16x6 ufixed16x7 ufixed16x8 ufixed16x9 ufixed16x10 ufixed16x11 ufixed16x12 ufixed16x13 ufixed16x14 ufixed16x15 ufixed16x16 ufixed16x17 ufixed16x18 ufixed16x19 ufixed16x20 ufixed16x21 ufixed16x22 ufixed16x23 ufixed16x24 ufixed16x25 ufixed16x26 ufixed16x27 ufixed16x28 ufixed16x29 ufixed16x30 ufixed16x31 ufixed16x32 ufixed16x33 ufixed16x34 ufixed16x35 ufixed16x36 ufixed16x37 ufixed16x38 ufixed16x39 ufixed16x40 ufixed16x41 ufixed16x42 ufixed16x43 ufixed16x44 ufixed16x45 ufixed16x46 ufixed16x47 ufixed16x48 ufixed16x49 ufixed16x50 ufixed16x51 ufixed16x52 ufixed16x53 ufixed16x54 ufixed16x55 ufixed16x56 ufixed16x57 ufixed16x58 ufixed16x59 ufixed16x60 ufixed16x61 ufixed16x62 ufixed16x63 ufixed16x64 ufixed16x65 ufixed16x66 ufixed16x67 ufixed16x68 ufixed16x69 ufixed16x70 ufixed16x71 ufixed16x72 ufixed16x73 ufixed16x74 ufixed16x75 ufixed16x76 ufixed16x77 ufixed16x78 ufixed16x79 ufixed16x80 ufixed24x0 ufixed24x1 ufixed24x2 ufixed24x3 ufixed24x4 ufixed24x5 ufixed24x6 ufixed24x7 ufixed24x8 ufixed24x9 ufixed24x10 ufixed24x11 ufixed24x12 ufixed24x13 ufixed24x14 ufixed24x15 ufixed24x16 ufixed24x17 ufixed24x18 ufixed24x19 ufixed24x20 ufixed24x21 ufixed24x22 ufixed24x23 ufixed24x24 ufixed24x25 ufixed24x26 ufixed24x27 ufixed24x28 ufixed24x29 ufixed24x30 ufixed24x31 ufixed24x32 ufixed24x33 ufixed24x34 ufixed24x35 ufixed24x36 ufixed24x37 ufixed24x38 ufixed24x39 ufixed24x40 ufixed24x41 ufixed24x42 ufixed24x43 ufixed24x44 ufixed24x45 ufixed24x46 ufixed24x47 ufixed24x48 ufixed24x49 ufixed24x50 ufixed24x51 ufixed24x52 ufixed24x53 ufixed24x54 ufixed24x55 ufixed24x56 ufixed24x57 ufixed24x58 ufixed24x59 ufixed24x60 ufixed24x61 ufixed24x62 ufixed24x63 ufixed24x64 ufixed24x65 ufixed24x66 ufixed24x67 ufixed24x68 ufixed24x69 ufixed24x70 ufixed24x71 ufixed24x72 ufixed24x73 ufixed24x74 ufixed24x75 ufixed24x76 ufixed24x77 ufixed24x78 ufixed24x79 ufixed24x80 ufixed32x0 ufixed32x1 ufixed32x2 ufixed32x3 ufixed32x4 ufixed32x5 ufixed32x6 ufixed32x7 ufixed32x8 ufixed32x9 ufixed32x10 ufixed32x11 ufixed32x12 ufixed32x13 ufixed32x14 ufixed32x15 ufixed32x16 ufixed32x17 ufixed32x18 ufixed32x19 ufixed32x20 ufixed32x21 ufixed32x22 ufixed32x23 ufixed32x24 ufixed32x25 ufixed32x26 ufixed32x27 ufixed32x28 ufixed32x29 ufixed32x30 ufixed32x31 ufixed32x32 ufixed32x33 ufixed32x34 ufixed32x35 ufixed32x36 ufixed32x37 ufixed32x38 ufixed32x39 ufixed32x40 ufixed32x41 ufixed32x42 ufixed32x43 ufixed32x44 ufixed32x45 ufixed32x46 ufixed32x47 ufixed32x48 ufixed32x49 ufixed32x50 ufixed32x51 ufixed32x52 ufixed32x53 ufixed32x54 ufixed32x55 ufixed32x56 ufixed32x57 ufixed32x58 ufixed32x59 ufixed32x60 ufixed32x61 ufixed32x62 ufixed32x63 ufixed32x64 ufixed32x65 ufixed32x66 ufixed32x67 ufixed32x68 ufixed32x69 ufixed32x70 ufixed32x71 ufixed32x72 ufixed32x73 ufixed32x74 ufixed32x75 ufixed32x76 ufixed32x77 ufixed32x78 ufixed32x79 ufixed32x80 ufixed40x0 ufixed40x1 ufixed40x2 ufixed40x3 ufixed40x4 ufixed40x5 ufixed40x6 ufixed40x7 ufixed40x8 ufixed40x9 ufixed40x10 ufixed40x11 ufixed40x12 ufixed40x13 ufixed40x14 ufixed40x15 ufixed40x16 ufixed40x17 ufixed40x18 ufixed40x19 ufixed40x20 ufixed40x21 ufixed40x22 ufixed40x23 ufixed40x24 ufixed40x25 ufixed40x26 ufixed40x27 ufixed40x28 ufixed40x29 ufixed40x30 ufixed40x31 ufixed40x32 ufixed40x33 ufixed40x34 ufixed40x35 ufixed40x36 ufixed40x37 ufixed40x38 ufixed40x39 ufixed40x40 ufixed40x41 ufixed40x42 ufixed40x43 ufixed40x44 ufixed40x45 ufixed40x46 ufixed40x47 ufixed40x48 ufixed40x49 ufixed40x50 ufixed40x51 ufixed40x52 ufixed40x53 ufixed40x54 ufixed40x55 ufixed40x56 ufixed40x57 ufixed40x58 ufixed40x59 ufixed40x60 ufixed40x61 ufixed40x62 ufixed40x63 ufixed40x64 ufixed40x65 ufixed40x66 ufixed40x67 ufixed40x68 ufixed40x69 ufixed40x70 ufixed40x71 ufixed40x72 ufixed40x73 ufixed40x74 ufixed40x75 ufixed40x76 ufixed40x77 ufixed40x78 ufixed40x79 ufixed40x80 ufixed48x0 ufixed48x1 ufixed48x2 ufixed48x3 ufixed48x4 ufixed48x5 ufixed48x6 ufixed48x7 ufixed48x8 ufixed48x9 ufixed48x10 ufixed48x11 ufixed48x12 ufixed48x13 ufixed48x14 ufixed48x15 ufixed48x16 ufixed48x17 ufixed48x18 ufixed48x19 ufixed48x20 ufixed48x21 ufixed48x22 ufixed48x23 ufixed48x24 ufixed48x25 ufixed48x26 ufixed48x27 ufixed48x28 ufixed48x29 ufixed48x30 ufixed48x31 ufixed48x32 ufixed48x33 ufixed48x34 ufixed48x35 ufixed48x36 ufixed48x37 ufixed48x38 ufixed48x39 ufixed48x40 ufixed48x41 ufixed48x42 ufixed48x43 ufixed48x44 ufixed48x45 ufixed48x46 ufixed48x47 ufixed48x48 ufixed48x49 ufixed48x50 ufixed48x51 ufixed48x52 ufixed48x53 ufixed48x54 ufixed48x55 ufixed48x56 ufixed48x57 ufixed48x58 ufixed48x59 ufixed48x60 ufixed48x61 ufixed48x62 ufixed48x63 ufixed48x64 ufixed48x65 ufixed48x66 ufixed48x67 ufixed48x68 ufixed48x69 ufixed48x70 ufixed48x71 ufixed48x72 ufixed48x73 ufixed48x74 ufixed48x75 ufixed48x76 ufixed48x77 ufixed48x78 ufixed48x79 ufixed48x80 ufixed56x0 ufixed56x1 ufixed56x2 ufixed56x3 ufixed56x4 ufixed56x5 ufixed56x6 ufixed56x7 ufixed56x8 ufixed56x9 ufixed56x10 ufixed56x11 ufixed56x12 ufixed56x13 ufixed56x14 ufixed56x15 ufixed56x16 ufixed56x17 ufixed56x18 ufixed56x19 ufixed56x20 ufixed56x21 ufixed56x22 ufixed56x23 ufixed56x24 ufixed56x25 ufixed56x26 ufixed56x27 ufixed56x28 ufixed56x29 ufixed56x30 ufixed56x31 ufixed56x32 ufixed56x33 ufixed56x34 ufixed56x35 ufixed56x36 ufixed56x37 ufixed56x38 ufixed56x39 ufixed56x40 ufixed56x41 ufixed56x42 ufixed56x43 ufixed56x44 ufixed56x45 ufixed56x46 ufixed56x47 ufixed56x48 ufixed56x49 ufixed56x50 ufixed56x51 ufixed56x52 ufixed56x53 ufixed56x54 ufixed56x55 ufixed56x56 ufixed56x57 ufixed56x58 ufixed56x59 ufixed56x60 ufixed56x61 ufixed56x62 ufixed56x63 ufixed56x64 ufixed56x65 ufixed56x66 ufixed56x67 ufixed56x68 ufixed56x69 ufixed56x70 ufixed56x71 ufixed56x72 ufixed56x73 ufixed56x74 ufixed56x75 ufixed56x76 ufixed56x77 ufixed56x78 ufixed56x79 ufixed56x80 ufixed64x0 ufixed64x1 ufixed64x2 ufixed64x3 ufixed64x4 ufixed64x5 ufixed64x6 ufixed64x7 ufixed64x8 ufixed64x9 ufixed64x10 ufixed64x11 ufixed64x12 ufixed64x13 ufixed64x14 ufixed64x15 ufixed64x16 ufixed64x17 ufixed64x18 ufixed64x19 ufixed64x20 ufixed64x21 ufixed64x22 ufixed64x23 ufixed64x24 ufixed64x25 ufixed64x26 ufixed64x27 ufixed64x28 ufixed64x29 ufixed64x30 ufixed64x31 ufixed64x32 ufixed64x33 ufixed64x34 ufixed64x35 ufixed64x36 ufixed64x37 ufixed64x38 ufixed64x39 ufixed64x40 ufixed64x41 ufixed64x42 ufixed64x43 ufixed64x44 ufixed64x45 ufixed64x46 ufixed64x47 ufixed64x48 ufixed64x49 ufixed64x50 ufixed64x51 ufixed64x52 ufixed64x53 ufixed64x54 ufixed64x55 ufixed64x56 ufixed64x57 ufixed64x58 ufixed64x59 ufixed64x60 ufixed64x61 ufixed64x62 ufixed64x63 ufixed64x64 ufixed64x65 ufixed64x66 ufixed64x67 ufixed64x68 ufixed64x69 ufixed64x70 ufixed64x71 ufixed64x72 ufixed64x73 ufixed64x74 ufixed64x75 ufixed64x76 ufixed64x77 ufixed64x78 ufixed64x79 ufixed64x80 ufixed72x0 ufixed72x1 ufixed72x2 ufixed72x3 ufixed72x4 ufixed72x5 ufixed72x6 ufixed72x7 ufixed72x8 ufixed72x9 ufixed72x10 ufixed72x11 ufixed72x12 ufixed72x13 ufixed72x14 ufixed72x15 ufixed72x16 ufixed72x17 ufixed72x18 ufixed72x19 ufixed72x20 ufixed72x21 ufixed72x22 ufixed72x23 ufixed72x24 ufixed72x25 ufixed72x26 ufixed72x27 ufixed72x28 ufixed72x29 ufixed72x30 ufixed72x31 ufixed72x32 ufixed72x33 ufixed72x34 ufixed72x35 ufixed72x36 ufixed72x37 ufixed72x38 ufixed72x39 ufixed72x40 ufixed72x41 ufixed72x42 ufixed72x43 ufixed72x44 ufixed72x45 ufixed72x46 ufixed72x47 ufixed72x48 ufixed72x49 ufixed72x50 ufixed72x51 ufixed72x52 ufixed72x53 ufixed72x54 ufixed72x55 ufixed72x56 ufixed72x57 ufixed72x58 ufixed72x59 ufixed72x60 ufixed72x61 ufixed72x62 ufixed72x63 ufixed72x64 ufixed72x65 ufixed72x66 ufixed72x67 ufixed72x68 ufixed72x69 ufixed72x70 ufixed72x71 ufixed72x72 ufixed72x73 ufixed72x74 ufixed72x75 ufixed72x76 ufixed72x77 ufixed72x78 ufixed72x79 ufixed72x80 ufixed80x0 ufixed80x1 ufixed80x2 ufixed80x3 ufixed80x4 ufixed80x5 ufixed80x6 ufixed80x7 ufixed80x8 ufixed80x9 ufixed80x10 ufixed80x11 ufixed80x12 ufixed80x13 ufixed80x14 ufixed80x15 ufixed80x16 ufixed80x17 ufixed80x18 ufixed80x19 ufixed80x20 ufixed80x21 ufixed80x22 ufixed80x23 ufixed80x24 ufixed80x25 ufixed80x26 ufixed80x27 ufixed80x28 ufixed80x29 ufixed80x30 ufixed80x31 ufixed80x32 ufixed80x33 ufixed80x34 ufixed80x35 ufixed80x36 ufixed80x37 ufixed80x38 ufixed80x39 ufixed80x40 ufixed80x41 ufixed80x42 ufixed80x43 ufixed80x44 ufixed80x45 ufixed80x46 ufixed80x47 ufixed80x48 ufixed80x49 ufixed80x50 ufixed80x51 ufixed80x52 ufixed80x53 ufixed80x54 ufixed80x55 ufixed80x56 ufixed80x57 ufixed80x58 ufixed80x59 ufixed80x60 ufixed80x61 ufixed80x62 ufixed80x63 ufixed80x64 ufixed80x65 ufixed80x66 ufixed80x67 ufixed80x68 ufixed80x69 ufixed80x70 ufixed80x71 ufixed80x72 ufixed80x73 ufixed80x74 ufixed80x75 ufixed80x76 ufixed80x77 ufixed80x78 ufixed80x79 ufixed80x80 ufixed88x0 ufixed88x1 ufixed88x2 ufixed88x3 ufixed88x4 ufixed88x5 ufixed88x6 ufixed88x7 ufixed88x8 ufixed88x9 ufixed88x10 ufixed88x11 ufixed88x12 ufixed88x13 ufixed88x14 ufixed88x15 ufixed88x16 ufixed88x17 ufixed88x18 ufixed88x19 ufixed88x20 ufixed88x21 ufixed88x22 ufixed88x23 ufixed88x24 ufixed88x25 ufixed88x26 ufixed88x27 ufixed88x28 ufixed88x29 ufixed88x30 ufixed88x31 ufixed88x32 ufixed88x33 ufixed88x34 ufixed88x35 ufixed88x36 ufixed88x37 ufixed88x38 ufixed88x39 ufixed88x40 ufixed88x41 ufixed88x42 ufixed88x43 ufixed88x44 ufixed88x45 ufixed88x46 ufixed88x47 ufixed88x48 ufixed88x49 ufixed88x50 ufixed88x51 ufixed88x52 ufixed88x53 ufixed88x54 ufixed88x55 ufixed88x56 ufixed88x57 ufixed88x58 ufixed88x59 ufixed88x60 ufixed88x61 ufixed88x62 ufixed88x63 ufixed88x64 ufixed88x65 ufixed88x66 ufixed88x67 ufixed88x68 ufixed88x69 ufixed88x70 ufixed88x71 ufixed88x72 ufixed88x73 ufixed88x74 ufixed88x75 ufixed88x76 ufixed88x77 ufixed88x78 ufixed88x79 ufixed88x80 ufixed96x0 ufixed96x1 ufixed96x2 ufixed96x3 ufixed96x4 ufixed96x5 ufixed96x6 ufixed96x7 ufixed96x8 ufixed96x9 ufixed96x10 ufixed96x11 ufixed96x12 ufixed96x13 ufixed96x14 ufixed96x15 ufixed96x16 ufixed96x17 ufixed96x18 ufixed96x19 ufixed96x20 ufixed96x21 ufixed96x22 ufixed96x23 ufixed96x24 ufixed96x25 ufixed96x26 ufixed96x27 ufixed96x28 ufixed96x29 ufixed96x30 ufixed96x31 ufixed96x32 ufixed96x33 ufixed96x34 ufixed96x35 ufixed96x36 ufixed96x37 ufixed96x38 ufixed96x39 ufixed96x40 ufixed96x41 ufixed96x42 ufixed96x43 ufixed96x44 ufixed96x45 ufixed96x46 ufixed96x47 ufixed96x48 ufixed96x49 ufixed96x50 ufixed96x51 ufixed96x52 ufixed96x53 ufixed96x54 ufixed96x55 ufixed96x56 ufixed96x57 ufixed96x58 ufixed96x59 ufixed96x60 ufixed96x61 ufixed96x62 ufixed96x63 ufixed96x64 ufixed96x65 ufixed96x66 ufixed96x67 ufixed96x68 ufixed96x69 ufixed96x70 ufixed96x71 ufixed96x72 ufixed96x73 ufixed96x74 ufixed96x75 ufixed96x76 ufixed96x77 ufixed96x78 ufixed96x79 ufixed96x80 ufixed104x0 ufixed104x1 ufixed104x2 ufixed104x3 ufixed104x4 ufixed104x5 ufixed104x6 ufixed104x7 ufixed104x8 ufixed104x9 ufixed104x10 ufixed104x11 ufixed104x12 ufixed104x13 ufixed104x14 ufixed104x15 ufixed104x16 ufixed104x17 ufixed104x18 ufixed104x19 ufixed104x20 ufixed104x21 ufixed104x22 ufixed104x23 ufixed104x24 ufixed104x25 ufixed104x26 ufixed104x27 ufixed104x28 ufixed104x29 ufixed104x30 ufixed104x31 ufixed104x32 ufixed104x33 ufixed104x34 ufixed104x35 ufixed104x36 ufixed104x37 ufixed104x38 ufixed104x39 ufixed104x40 ufixed104x41 ufixed104x42 ufixed104x43 ufixed104x44 ufixed104x45 ufixed104x46 ufixed104x47 ufixed104x48 ufixed104x49 ufixed104x50 ufixed104x51 ufixed104x52 ufixed104x53 ufixed104x54 ufixed104x55 ufixed104x56 ufixed104x57 ufixed104x58 ufixed104x59 ufixed104x60 ufixed104x61 ufixed104x62 ufixed104x63 ufixed104x64 ufixed104x65 ufixed104x66 ufixed104x67 ufixed104x68 ufixed104x69 ufixed104x70 ufixed104x71 ufixed104x72 ufixed104x73 ufixed104x74 ufixed104x75 ufixed104x76 ufixed104x77 ufixed104x78 ufixed104x79 ufixed104x80 ufixed112x0 ufixed112x1 ufixed112x2 ufixed112x3 ufixed112x4 ufixed112x5 ufixed112x6 ufixed112x7 ufixed112x8 ufixed112x9 ufixed112x10 ufixed112x11 ufixed112x12 ufixed112x13 ufixed112x14 ufixed112x15 ufixed112x16 ufixed112x17 ufixed112x18 ufixed112x19 ufixed112x20 ufixed112x21 ufixed112x22 ufixed112x23 ufixed112x24 ufixed112x25 ufixed112x26 ufixed112x27 ufixed112x28 ufixed112x29 ufixed112x30 ufixed112x31 ufixed112x32 ufixed112x33 ufixed112x34 ufixed112x35 ufixed112x36 ufixed112x37 ufixed112x38 ufixed112x39 ufixed112x40 ufixed112x41 ufixed112x42 ufixed112x43 ufixed112x44 ufixed112x45 ufixed112x46 ufixed112x47 ufixed112x48 ufixed112x49 ufixed112x50 ufixed112x51 ufixed112x52 ufixed112x53 ufixed112x54 ufixed112x55 ufixed112x56 ufixed112x57 ufixed112x58 ufixed112x59 ufixed112x60 ufixed112x61 ufixed112x62 ufixed112x63 ufixed112x64 ufixed112x65 ufixed112x66 ufixed112x67 ufixed112x68 ufixed112x69 ufixed112x70 ufixed112x71 ufixed112x72 ufixed112x73 ufixed112x74 ufixed112x75 ufixed112x76 ufixed112x77 ufixed112x78 ufixed112x79 ufixed112x80 ufixed120x0 ufixed120x1 ufixed120x2 ufixed120x3 ufixed120x4 ufixed120x5 ufixed120x6 ufixed120x7 ufixed120x8 ufixed120x9 ufixed120x10 ufixed120x11 ufixed120x12 ufixed120x13 ufixed120x14 ufixed120x15 ufixed120x16 ufixed120x17 ufixed120x18 ufixed120x19 ufixed120x20 ufixed120x21 ufixed120x22 ufixed120x23 ufixed120x24 ufixed120x25 ufixed120x26 ufixed120x27 ufixed120x28 ufixed120x29 ufixed120x30 ufixed120x31 ufixed120x32 ufixed120x33 ufixed120x34 ufixed120x35 ufixed120x36 ufixed120x37 ufixed120x38 ufixed120x39 ufixed120x40 ufixed120x41 ufixed120x42 ufixed120x43 ufixed120x44 ufixed120x45 ufixed120x46 ufixed120x47 ufixed120x48 ufixed120x49 ufixed120x50 ufixed120x51 ufixed120x52 ufixed120x53 ufixed120x54 ufixed120x55 ufixed120x56 ufixed120x57 ufixed120x58 ufixed120x59 ufixed120x60 ufixed120x61 ufixed120x62 ufixed120x63 ufixed120x64 ufixed120x65 ufixed120x66 ufixed120x67 ufixed120x68 ufixed120x69 ufixed120x70 ufixed120x71 ufixed120x72 ufixed120x73 ufixed120x74 ufixed120x75 ufixed120x76 ufixed120x77 ufixed120x78 ufixed120x79 ufixed120x80 ufixed128x0 ufixed128x1 ufixed128x2 ufixed128x3 ufixed128x4 ufixed128x5 ufixed128x6 ufixed128x7 ufixed128x8 ufixed128x9 ufixed128x10 ufixed128x11 ufixed128x12 ufixed128x13 ufixed128x14 ufixed128x15 ufixed128x16 ufixed128x17 ufixed128x18 ufixed128x19 ufixed128x20 ufixed128x21 ufixed128x22 ufixed128x23 ufixed128x24 ufixed128x25 ufixed128x26 ufixed128x27 ufixed128x28 ufixed128x29 ufixed128x30 ufixed128x31 ufixed128x32 ufixed128x33 ufixed128x34 ufixed128x35 ufixed128x36 ufixed128x37 ufixed128x38 ufixed128x39 ufixed128x40 ufixed128x41 ufixed128x42 ufixed128x43 ufixed128x44 ufixed128x45 ufixed128x46 ufixed128x47 ufixed128x48 ufixed128x49 ufixed128x50 ufixed128x51 ufixed128x52 ufixed128x53 ufixed128x54 ufixed128x55 ufixed128x56 ufixed128x57 ufixed128x58 ufixed128x59 ufixed128x60 ufixed128x61 ufixed128x62 ufixed128x63 ufixed128x64 ufixed128x65 ufixed128x66 ufixed128x67 ufixed128x68 ufixed128x69 ufixed128x70 ufixed128x71 ufixed128x72 ufixed128x73 ufixed128x74 ufixed128x75 ufixed128x76 ufixed128x77 ufixed128x78 ufixed128x79 ufixed128x80 ufixed136x0 ufixed136x1 ufixed136x2 ufixed136x3 ufixed136x4 ufixed136x5 ufixed136x6 ufixed136x7 ufixed136x8 ufixed136x9 ufixed136x10 ufixed136x11 ufixed136x12 ufixed136x13 ufixed136x14 ufixed136x15 ufixed136x16 ufixed136x17 ufixed136x18 ufixed136x19 ufixed136x20 ufixed136x21 ufixed136x22 ufixed136x23 ufixed136x24 ufixed136x25 ufixed136x26 ufixed136x27 ufixed136x28 ufixed136x29 ufixed136x30 ufixed136x31 ufixed136x32 ufixed136x33 ufixed136x34 ufixed136x35 ufixed136x36 ufixed136x37 ufixed136x38 ufixed136x39 ufixed136x40 ufixed136x41 ufixed136x42 ufixed136x43 ufixed136x44 ufixed136x45 ufixed136x46 ufixed136x47 ufixed136x48 ufixed136x49 ufixed136x50 ufixed136x51 ufixed136x52 ufixed136x53 ufixed136x54 ufixed136x55 ufixed136x56 ufixed136x57 ufixed136x58 ufixed136x59 ufixed136x60 ufixed136x61 ufixed136x62 ufixed136x63 ufixed136x64 ufixed136x65 ufixed136x66 ufixed136x67 ufixed136x68 ufixed136x69 ufixed136x70 ufixed136x71 ufixed136x72 ufixed136x73 ufixed136x74 ufixed136x75 ufixed136x76 ufixed136x77 ufixed136x78 ufixed136x79 ufixed136x80 ufixed144x0 ufixed144x1 ufixed144x2 ufixed144x3 ufixed144x4 ufixed144x5 ufixed144x6 ufixed144x7 ufixed144x8 ufixed144x9 ufixed144x10 ufixed144x11 ufixed144x12 ufixed144x13 ufixed144x14 ufixed144x15 ufixed144x16 ufixed144x17 ufixed144x18 ufixed144x19 ufixed144x20 ufixed144x21 ufixed144x22 ufixed144x23 ufixed144x24 ufixed144x25 ufixed144x26 ufixed144x27 ufixed144x28 ufixed144x29 ufixed144x30 ufixed144x31 ufixed144x32 ufixed144x33 ufixed144x34 ufixed144x35 ufixed144x36 ufixed144x37 ufixed144x38 ufixed144x39 ufixed144x40 ufixed144x41 ufixed144x42 ufixed144x43 ufixed144x44 ufixed144x45 ufixed144x46 ufixed144x47 ufixed144x48 ufixed144x49 ufixed144x50 ufixed144x51 ufixed144x52 ufixed144x53 ufixed144x54 ufixed144x55 ufixed144x56 ufixed144x57 ufixed144x58 ufixed144x59 ufixed144x60 ufixed144x61 ufixed144x62 ufixed144x63 ufixed144x64 ufixed144x65 ufixed144x66 ufixed144x67 ufixed144x68 ufixed144x69 ufixed144x70 ufixed144x71 ufixed144x72 ufixed144x73 ufixed144x74 ufixed144x75 ufixed144x76 ufixed144x77 ufixed144x78 ufixed144x79 ufixed144x80 ufixed152x0 ufixed152x1 ufixed152x2 ufixed152x3 ufixed152x4 ufixed152x5 ufixed152x6 ufixed152x7 ufixed152x8 ufixed152x9 ufixed152x10 ufixed152x11 ufixed152x12 ufixed152x13 ufixed152x14 ufixed152x15 ufixed152x16 ufixed152x17 ufixed152x18 ufixed152x19 ufixed152x20 ufixed152x21 ufixed152x22 ufixed152x23 ufixed152x24 ufixed152x25 ufixed152x26 ufixed152x27 ufixed152x28 ufixed152x29 ufixed152x30 ufixed152x31 ufixed152x32 ufixed152x33 ufixed152x34 ufixed152x35 ufixed152x36 ufixed152x37 ufixed152x38 ufixed152x39 ufixed152x40 ufixed152x41 ufixed152x42 ufixed152x43 ufixed152x44 ufixed152x45 ufixed152x46 ufixed152x47 ufixed152x48 ufixed152x49 ufixed152x50 ufixed152x51 ufixed152x52 ufixed152x53 ufixed152x54 ufixed152x55 ufixed152x56 ufixed152x57 ufixed152x58 ufixed152x59 ufixed152x60 ufixed152x61 ufixed152x62 ufixed152x63 ufixed152x64 ufixed152x65 ufixed152x66 ufixed152x67 ufixed152x68 ufixed152x69 ufixed152x70 ufixed152x71 ufixed152x72 ufixed152x73 ufixed152x74 ufixed152x75 ufixed152x76 ufixed152x77 ufixed152x78 ufixed152x79 ufixed152x80 ufixed160x0 ufixed160x1 ufixed160x2 ufixed160x3 ufixed160x4 ufixed160x5 ufixed160x6 ufixed160x7 ufixed160x8 ufixed160x9 ufixed160x10 ufixed160x11 ufixed160x12 ufixed160x13 ufixed160x14 ufixed160x15 ufixed160x16 ufixed160x17 ufixed160x18 ufixed160x19 ufixed160x20 ufixed160x21 ufixed160x22 ufixed160x23 ufixed160x24 ufixed160x25 ufixed160x26 ufixed160x27 ufixed160x28 ufixed160x29 ufixed160x30 ufixed160x31 ufixed160x32 ufixed160x33 ufixed160x34 ufixed160x35 ufixed160x36 ufixed160x37 ufixed160x38 ufixed160x39 ufixed160x40 ufixed160x41 ufixed160x42 ufixed160x43 ufixed160x44 ufixed160x45 ufixed160x46 ufixed160x47 ufixed160x48 ufixed160x49 ufixed160x50 ufixed160x51 ufixed160x52 ufixed160x53 ufixed160x54 ufixed160x55 ufixed160x56 ufixed160x57 ufixed160x58 ufixed160x59 ufixed160x60 ufixed160x61 ufixed160x62 ufixed160x63 ufixed160x64 ufixed160x65 ufixed160x66 ufixed160x67 ufixed160x68 ufixed160x69 ufixed160x70 ufixed160x71 ufixed160x72 ufixed160x73 ufixed160x74 ufixed160x75 ufixed160x76 ufixed160x77 ufixed160x78 ufixed160x79 ufixed160x80 ufixed168x0 ufixed168x1 ufixed168x2 ufixed168x3 ufixed168x4 ufixed168x5 ufixed168x6 ufixed168x7 ufixed168x8 ufixed168x9 ufixed168x10 ufixed168x11 ufixed168x12 ufixed168x13 ufixed168x14 ufixed168x15 ufixed168x16 ufixed168x17 ufixed168x18 ufixed168x19 ufixed168x20 ufixed168x21 ufixed168x22 ufixed168x23 ufixed168x24 ufixed168x25 ufixed168x26 ufixed168x27 ufixed168x28 ufixed168x29 ufixed168x30 ufixed168x31 ufixed168x32 ufixed168x33 ufixed168x34 ufixed168x35 ufixed168x36 ufixed168x37 ufixed168x38 ufixed168x39 ufixed168x40 ufixed168x41 ufixed168x42 ufixed168x43 ufixed168x44 ufixed168x45 ufixed168x46 ufixed168x47 ufixed168x48 ufixed168x49 ufixed168x50 ufixed168x51 ufixed168x52 ufixed168x53 ufixed168x54 ufixed168x55 ufixed168x56 ufixed168x57 ufixed168x58 ufixed168x59 ufixed168x60 ufixed168x61 ufixed168x62 ufixed168x63 ufixed168x64 ufixed168x65 ufixed168x66 ufixed168x67 ufixed168x68 ufixed168x69 ufixed168x70 ufixed168x71 ufixed168x72 ufixed168x73 ufixed168x74 ufixed168x75 ufixed168x76 ufixed168x77 ufixed168x78 ufixed168x79 ufixed168x80 ufixed176x0 ufixed176x1 ufixed176x2 ufixed176x3 ufixed176x4 ufixed176x5 ufixed176x6 ufixed176x7 ufixed176x8 ufixed176x9 ufixed176x10 ufixed176x11 ufixed176x12 ufixed176x13 ufixed176x14 ufixed176x15 ufixed176x16 ufixed176x17 ufixed176x18 ufixed176x19 ufixed176x20 ufixed176x21 ufixed176x22 ufixed176x23 ufixed176x24 ufixed176x25 ufixed176x26 ufixed176x27 ufixed176x28 ufixed176x29 ufixed176x30 ufixed176x31 ufixed176x32 ufixed176x33 ufixed176x34 ufixed176x35 ufixed176x36 ufixed176x37 ufixed176x38 ufixed176x39 ufixed176x40 ufixed176x41 ufixed176x42 ufixed176x43 ufixed176x44 ufixed176x45 ufixed176x46 ufixed176x47 ufixed176x48 ufixed176x49 ufixed176x50 ufixed176x51 ufixed176x52 ufixed176x53 ufixed176x54 ufixed176x55 ufixed176x56 ufixed176x57 ufixed176x58 ufixed176x59 ufixed176x60 ufixed176x61 ufixed176x62 ufixed176x63 ufixed176x64 ufixed176x65 ufixed176x66 ufixed176x67 ufixed176x68 ufixed176x69 ufixed176x70 ufixed176x71 ufixed176x72 ufixed176x73 ufixed176x74 ufixed176x75 ufixed176x76 ufixed176x77 ufixed176x78 ufixed176x79 ufixed176x80 ufixed184x0 ufixed184x1 ufixed184x2 ufixed184x3 ufixed184x4 ufixed184x5 ufixed184x6 ufixed184x7 ufixed184x8 ufixed184x9 ufixed184x10 ufixed184x11 ufixed184x12 ufixed184x13 ufixed184x14 ufixed184x15 ufixed184x16 ufixed184x17 ufixed184x18 ufixed184x19 ufixed184x20 ufixed184x21 ufixed184x22 ufixed184x23 ufixed184x24 ufixed184x25 ufixed184x26 ufixed184x27 ufixed184x28 ufixed184x29 ufixed184x30 ufixed184x31 ufixed184x32 ufixed184x33 ufixed184x34 ufixed184x35 ufixed184x36 ufixed184x37 ufixed184x38 ufixed184x39 ufixed184x40 ufixed184x41 ufixed184x42 ufixed184x43 ufixed184x44 ufixed184x45 ufixed184x46 ufixed184x47 ufixed184x48 ufixed184x49 ufixed184x50 ufixed184x51 ufixed184x52 ufixed184x53 ufixed184x54 ufixed184x55 ufixed184x56 ufixed184x57 ufixed184x58 ufixed184x59 ufixed184x60 ufixed184x61 ufixed184x62 ufixed184x63 ufixed184x64 ufixed184x65 ufixed184x66 ufixed184x67 ufixed184x68 ufixed184x69 ufixed184x70 ufixed184x71 ufixed184x72 ufixed184x73 ufixed184x74 ufixed184x75 ufixed184x76 ufixed184x77 ufixed184x78 ufixed184x79 ufixed184x80 ufixed192x0 ufixed192x1 ufixed192x2 ufixed192x3 ufixed192x4 ufixed192x5 ufixed192x6 ufixed192x7 ufixed192x8 ufixed192x9 ufixed192x10 ufixed192x11 ufixed192x12 ufixed192x13 ufixed192x14 ufixed192x15 ufixed192x16 ufixed192x17 ufixed192x18 ufixed192x19 ufixed192x20 ufixed192x21 ufixed192x22 ufixed192x23 ufixed192x24 ufixed192x25 ufixed192x26 ufixed192x27 ufixed192x28 ufixed192x29 ufixed192x30 ufixed192x31 ufixed192x32 ufixed192x33 ufixed192x34 ufixed192x35 ufixed192x36 ufixed192x37 ufixed192x38 ufixed192x39 ufixed192x40 ufixed192x41 ufixed192x42 ufixed192x43 ufixed192x44 ufixed192x45 ufixed192x46 ufixed192x47 ufixed192x48 ufixed192x49 ufixed192x50 ufixed192x51 ufixed192x52 ufixed192x53 ufixed192x54 ufixed192x55 ufixed192x56 ufixed192x57 ufixed192x58 ufixed192x59 ufixed192x60 ufixed192x61 ufixed192x62 ufixed192x63 ufixed192x64 ufixed192x65 ufixed192x66 ufixed192x67 ufixed192x68 ufixed192x69 ufixed192x70 ufixed192x71 ufixed192x72 ufixed192x73 ufixed192x74 ufixed192x75 ufixed192x76 ufixed192x77 ufixed192x78 ufixed192x79 ufixed192x80 ufixed200x0 ufixed200x1 ufixed200x2 ufixed200x3 ufixed200x4 ufixed200x5 ufixed200x6 ufixed200x7 ufixed200x8 ufixed200x9 ufixed200x10 ufixed200x11 ufixed200x12 ufixed200x13 ufixed200x14 ufixed200x15 ufixed200x16 ufixed200x17 ufixed200x18 ufixed200x19 ufixed200x20 ufixed200x21 ufixed200x22 ufixed200x23 ufixed200x24 ufixed200x25 ufixed200x26 ufixed200x27 ufixed200x28 ufixed200x29 ufixed200x30 ufixed200x31 ufixed200x32 ufixed200x33 ufixed200x34 ufixed200x35 ufixed200x36 ufixed200x37 ufixed200x38 ufixed200x39 ufixed200x40 ufixed200x41 ufixed200x42 ufixed200x43 ufixed200x44 ufixed200x45 ufixed200x46 ufixed200x47 ufixed200x48 ufixed200x49 ufixed200x50 ufixed200x51 ufixed200x52 ufixed200x53 ufixed200x54 ufixed200x55 ufixed200x56 ufixed200x57 ufixed200x58 ufixed200x59 ufixed200x60 ufixed200x61 ufixed200x62 ufixed200x63 ufixed200x64 ufixed200x65 ufixed200x66 ufixed200x67 ufixed200x68 ufixed200x69 ufixed200x70 ufixed200x71 ufixed200x72 ufixed200x73 ufixed200x74 ufixed200x75 ufixed200x76 ufixed200x77 ufixed200x78 ufixed200x79 ufixed200x80 ufixed208x0 ufixed208x1 ufixed208x2 ufixed208x3 ufixed208x4 ufixed208x5 ufixed208x6 ufixed208x7 ufixed208x8 ufixed208x9 ufixed208x10 ufixed208x11 ufixed208x12 ufixed208x13 ufixed208x14 ufixed208x15 ufixed208x16 ufixed208x17 ufixed208x18 ufixed208x19 ufixed208x20 ufixed208x21 ufixed208x22 ufixed208x23 ufixed208x24 ufixed208x25 ufixed208x26 ufixed208x27 ufixed208x28 ufixed208x29 ufixed208x30 ufixed208x31 ufixed208x32 ufixed208x33 ufixed208x34 ufixed208x35 ufixed208x36 ufixed208x37 ufixed208x38 ufixed208x39 ufixed208x40 ufixed208x41 ufixed208x42 ufixed208x43 ufixed208x44 ufixed208x45 ufixed208x46 ufixed208x47 ufixed208x48 ufixed208x49 ufixed208x50 ufixed208x51 ufixed208x52 ufixed208x53 ufixed208x54 ufixed208x55 ufixed208x56 ufixed208x57 ufixed208x58 ufixed208x59 ufixed208x60 ufixed208x61 ufixed208x62 ufixed208x63 ufixed208x64 ufixed208x65 ufixed208x66 ufixed208x67 ufixed208x68 ufixed208x69 ufixed208x70 ufixed208x71 ufixed208x72 ufixed208x73 ufixed208x74 ufixed208x75 ufixed208x76 ufixed208x77 ufixed208x78 ufixed208x79 ufixed208x80 ufixed216x0 ufixed216x1 ufixed216x2 ufixed216x3 ufixed216x4 ufixed216x5 ufixed216x6 ufixed216x7 ufixed216x8 ufixed216x9 ufixed216x10 ufixed216x11 ufixed216x12 ufixed216x13 ufixed216x14 ufixed216x15 ufixed216x16 ufixed216x17 ufixed216x18 ufixed216x19 ufixed216x20 ufixed216x21 ufixed216x22 ufixed216x23 ufixed216x24 ufixed216x25 ufixed216x26 ufixed216x27 ufixed216x28 ufixed216x29 ufixed216x30 ufixed216x31 ufixed216x32 ufixed216x33 ufixed216x34 ufixed216x35 ufixed216x36 ufixed216x37 ufixed216x38 ufixed216x39 ufixed216x40 ufixed216x41 ufixed216x42 ufixed216x43 ufixed216x44 ufixed216x45 ufixed216x46 ufixed216x47 ufixed216x48 ufixed216x49 ufixed216x50 ufixed216x51 ufixed216x52 ufixed216x53 ufixed216x54 ufixed216x55 ufixed216x56 ufixed216x57 ufixed216x58 ufixed216x59 ufixed216x60 ufixed216x61 ufixed216x62 ufixed216x63 ufixed216x64 ufixed216x65 ufixed216x66 ufixed216x67 ufixed216x68 ufixed216x69 ufixed216x70 ufixed216x71 ufixed216x72 ufixed216x73 ufixed216x74 ufixed216x75 ufixed216x76 ufixed216x77 ufixed216x78 ufixed216x79 ufixed216x80 ufixed224x0 ufixed224x1 ufixed224x2 ufixed224x3 ufixed224x4 ufixed224x5 ufixed224x6 ufixed224x7 ufixed224x8 ufixed224x9 ufixed224x10 ufixed224x11 ufixed224x12 ufixed224x13 ufixed224x14 ufixed224x15 ufixed224x16 ufixed224x17 ufixed224x18 ufixed224x19 ufixed224x20 ufixed224x21 ufixed224x22 ufixed224x23 ufixed224x24 ufixed224x25 ufixed224x26 ufixed224x27 ufixed224x28 ufixed224x29 ufixed224x30 ufixed224x31 ufixed224x32 ufixed224x33 ufixed224x34 ufixed224x35 ufixed224x36 ufixed224x37 ufixed224x38 ufixed224x39 ufixed224x40 ufixed224x41 ufixed224x42 ufixed224x43 ufixed224x44 ufixed224x45 ufixed224x46 ufixed224x47 ufixed224x48 ufixed224x49 ufixed224x50 ufixed224x51 ufixed224x52 ufixed224x53 ufixed224x54 ufixed224x55 ufixed224x56 ufixed224x57 ufixed224x58 ufixed224x59 ufixed224x60 ufixed224x61 ufixed224x62 ufixed224x63 ufixed224x64 ufixed224x65 ufixed224x66 ufixed224x67 ufixed224x68 ufixed224x69 ufixed224x70 ufixed224x71 ufixed224x72 ufixed224x73 ufixed224x74 ufixed224x75 ufixed224x76 ufixed224x77 ufixed224x78 ufixed224x79 ufixed224x80 ufixed232x0 ufixed232x1 ufixed232x2 ufixed232x3 ufixed232x4 ufixed232x5 ufixed232x6 ufixed232x7 ufixed232x8 ufixed232x9 ufixed232x10 ufixed232x11 ufixed232x12 ufixed232x13 ufixed232x14 ufixed232x15 ufixed232x16 ufixed232x17 ufixed232x18 ufixed232x19 ufixed232x20 ufixed232x21 ufixed232x22 ufixed232x23 ufixed232x24 ufixed232x25 ufixed232x26 ufixed232x27 ufixed232x28 ufixed232x29 ufixed232x30 ufixed232x31 ufixed232x32 ufixed232x33 ufixed232x34 ufixed232x35 ufixed232x36 ufixed232x37 ufixed232x38 ufixed232x39 ufixed232x40 ufixed232x41 ufixed232x42 ufixed232x43 ufixed232x44 ufixed232x45 ufixed232x46 ufixed232x47 ufixed232x48 ufixed232x49 ufixed232x50 ufixed232x51 ufixed232x52 ufixed232x53 ufixed232x54 ufixed232x55 ufixed232x56 ufixed232x57 ufixed232x58 ufixed232x59 ufixed232x60 ufixed232x61 ufixed232x62 ufixed232x63 ufixed232x64 ufixed232x65 ufixed232x66 ufixed232x67 ufixed232x68 ufixed232x69 ufixed232x70 ufixed232x71 ufixed232x72 ufixed232x73 ufixed232x74 ufixed232x75 ufixed232x76 ufixed232x77 ufixed232x78 ufixed232x79 ufixed232x80 ufixed240x0 ufixed240x1 ufixed240x2 ufixed240x3 ufixed240x4 ufixed240x5 ufixed240x6 ufixed240x7 ufixed240x8 ufixed240x9 ufixed240x10 ufixed240x11 ufixed240x12 ufixed240x13 ufixed240x14 ufixed240x15 ufixed240x16 ufixed240x17 ufixed240x18 ufixed240x19 ufixed240x20 ufixed240x21 ufixed240x22 ufixed240x23 ufixed240x24 ufixed240x25 ufixed240x26 ufixed240x27 ufixed240x28 ufixed240x29 ufixed240x30 ufixed240x31 ufixed240x32 ufixed240x33 ufixed240x34 ufixed240x35 ufixed240x36 ufixed240x37 ufixed240x38 ufixed240x39 ufixed240x40 ufixed240x41 ufixed240x42 ufixed240x43 ufixed240x44 ufixed240x45 ufixed240x46 ufixed240x47 ufixed240x48 ufixed240x49 ufixed240x50 ufixed240x51 ufixed240x52 ufixed240x53 ufixed240x54 ufixed240x55 ufixed240x56 ufixed240x57 ufixed240x58 ufixed240x59 ufixed240x60 ufixed240x61 ufixed240x62 ufixed240x63 ufixed240x64 ufixed240x65 ufixed240x66 ufixed240x67 ufixed240x68 ufixed240x69 ufixed240x70 ufixed240x71 ufixed240x72 ufixed240x73 ufixed240x74 ufixed240x75 ufixed240x76 ufixed240x77 ufixed240x78 ufixed240x79 ufixed240x80 ufixed248x0 ufixed248x1 ufixed248x2 ufixed248x3 ufixed248x4 ufixed248x5 ufixed248x6 ufixed248x7 ufixed248x8 ufixed248x9 ufixed248x10 ufixed248x11 ufixed248x12 ufixed248x13 ufixed248x14 ufixed248x15 ufixed248x16 ufixed248x17 ufixed248x18 ufixed248x19 ufixed248x20 ufixed248x21 ufixed248x22 ufixed248x23 ufixed248x24 ufixed248x25 ufixed248x26 ufixed248x27 ufixed248x28 ufixed248x29 ufixed248x30 ufixed248x31 ufixed248x32 ufixed248x33 ufixed248x34 ufixed248x35 ufixed248x36 ufixed248x37 ufixed248x38 ufixed248x39 ufixed248x40 ufixed248x41 ufixed248x42 ufixed248x43 ufixed248x44 ufixed248x45 ufixed248x46 ufixed248x47 ufixed248x48 ufixed248x49 ufixed248x50 ufixed248x51 ufixed248x52 ufixed248x53 ufixed248x54 ufixed248x55 ufixed248x56 ufixed248x57 ufixed248x58 ufixed248x59 ufixed248x60 ufixed248x61 ufixed248x62 ufixed248x63 ufixed248x64 ufixed248x65 ufixed248x66 ufixed248x67 ufixed248x68 ufixed248x69 ufixed248x70 ufixed248x71 ufixed248x72 ufixed248x73 ufixed248x74 ufixed248x75 ufixed248x76 ufixed248x77 ufixed248x78 ufixed248x79 ufixed248x80 ufixed256x0 ufixed256x1 ufixed256x2 ufixed256x3 ufixed256x4 ufixed256x5 ufixed256x6 ufixed256x7 ufixed256x8 ufixed256x9 ufixed256x10 ufixed256x11 ufixed256x12 ufixed256x13 ufixed256x14 ufixed256x15 ufixed256x16 ufixed256x17 ufixed256x18 ufixed256x19 ufixed256x20 ufixed256x21 ufixed256x22 ufixed256x23 ufixed256x24 ufixed256x25 ufixed256x26 ufixed256x27 ufixed256x28 ufixed256x29 ufixed256x30 ufixed256x31 ufixed256x32 ufixed256x33 ufixed256x34 ufixed256x35 ufixed256x36 ufixed256x37 ufixed256x38 ufixed256x39 ufixed256x40 ufixed256x41 ufixed256x42 ufixed256x43 ufixed256x44 ufixed256x45 ufixed256x46 ufixed256x47 ufixed256x48 ufixed256x49 ufixed256x50 ufixed256x51 ufixed256x52 ufixed256x53 ufixed256x54 ufixed256x55 ufixed256x56 ufixed256x57 ufixed256x58 ufixed256x59 ufixed256x60 ufixed256x61 ufixed256x62 ufixed256x63 ufixed256x64 ufixed256x65 ufixed256x66 ufixed256x67 ufixed256x68 ufixed256x69 ufixed256x70 ufixed256x71 ufixed256x72 ufixed256x73 ufixed256x74 ufixed256x75 ufixed256x76 ufixed256x77 ufixed256x78 ufixed256x79 ufixed256x80 enum struct mapping address new delete if else for while continue break return throw emit try catch _ function modifier event constructor fallback receive virtual override constant anonymous indexed storage memory calldata external public internal payable pure view private returns import from as using pragma contract interface library is abstract assembly",a8="true false wei szabo finney ether seconds minutes hours days weeks years",a9="self this super selfdestruct suicide now msg block tx abi type blockhash gasleft assert revert require Error sha3 sha256 keccak256 ripemd160 ecrecover addmod mulmod log0 log1 log2 log3 log4send transfer call callcode delegatecall staticcall ",b0="~contains~6",b1="~contains~7~contains~0",b2="[A-Za-z_$][A-Za-z_$0-9]*|\\*",b3="~contains~3",b4="~contains~2",b5="~contains~18~contains~2~contains~7",b6='[:"\\[\\]]',b7="meta-string",b8="assembly let if switch case default for leave jump jumpi stop return revert selfdestruct invalid",b9="add sub mul div sdiv mod smod exp not lt gt slt sgt eq iszero and or xor byte shl shr sar addmod mulmod signextend keccak256 pc pop dup1 dup2 dup3 dup4 dup5 dup6 dup7 dup8 dup9 dup10 dup11 dup12 dup13 dup14 dup15 dup16 swap1 swap2 swap3 swap4 swap5 swap6 swap7 swap8 swap9 swap10 swap11 swap12 swap13 swap14 swap15 swap16 mload mstore mstore8 sload sstore msize gas address balance selfbalance caller callvalue calldataload calldatasize calldatacopy codesize codecopy extcodesize extcodecopy returndatasize returndatacopy extcodehash create create2 call callcode delegatecall staticcall log0 log1 log2 log3 log4 chainid origin gasprice blockhash coinbase timestamp number difficulty gaslimit",c0="[A-Za-z_$][A-Za-z_$0-9.]*",c1=t.N,c2=A.a(a5,"\\.\\s*",a5,a5,a5,a5,a5,a4,a5,a5,a5,!0,!0,a5,A.l(["built_in","gas value selector address send transfer call callcode delegatecall staticcall balance length push pop name creationCode runtimeCode"],c1,c1),a5,a5,a5,2,a5,a5,a5,a5,a5,a5,a5),c3=A.l(["keyword",a7,"literal",a8,"built_in",a9],c1,c1),c4=$.ba(),c5=$.b_(),c6=$.c0(),c7=$.aM(),c8=t._ -c3=A.l([a3,c2,a6,A.a(a5,"\\(",a5,a5,"params",A.b([c4,c5,c6,c7,A.a(a5,a5,a5,a5,a5,a5,a5,a5,a5,a5,a5,a5,a5,a5,a5,a5,b0,a5,a5,a5,a5,a5,a5,a5,a5,a5),A.a(a5,a5,a5,a5,a5,a5,a5,a5,a5,a5,a5,a5,a5,a5,a5,a5,a5,a5,a5,a5,a5,!0,a5,a5,a5,a5)],c8),a5,"\\)",a5,a5,a5,!0,!0,a5,c3,a5,a5,a5,a5,a5,a5,a5,a5,a5,a5,a5),b1,A.a(a5,"[A-Za-z$_][0-9A-Za-z$_]*",a5,a5,"title",a5,a5,a5,a5,a5,a5,a5,a5,a5,A.l(["keyword",a7,"literal",a8,"built_in",a9],c1,c1),b2,a5,a5,0,a5,a5,a5,a5,a5,a5,a5),"~contains~6",A.a(a5,"-?((?{var q="~contains~5~variants~1",p=null,o="~contains~5~variants~0",n="meta-string",m=t._,l=t.N,k=A.l([q,A.a(p,"'",p,p,p,A.b([A.a(p,"''",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p)],m),p,"'",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),o,A.a(p,'"',p,p,p,A.b([A.a(p,'""',p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p)],m),p,'"',p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p)],l,t.n),j=A.b(["sqf"],t.s),i=A.l(["keyword","case catch default do else exit exitWith for forEach from if private switch then throw to try waitUntil while with","built_in","abs accTime acos action actionIDs actionKeys actionKeysImages actionKeysNames actionKeysNamesArray actionName actionParams activateAddons activatedAddons activateKey add3DENConnection add3DENEventHandler add3DENLayer addAction addBackpack addBackpackCargo addBackpackCargoGlobal addBackpackGlobal addCamShake addCuratorAddons addCuratorCameraArea addCuratorEditableObjects addCuratorEditingArea addCuratorPoints addEditorObject addEventHandler addForce addGoggles addGroupIcon addHandgunItem addHeadgear addItem addItemCargo addItemCargoGlobal addItemPool addItemToBackpack addItemToUniform addItemToVest addLiveStats addMagazine addMagazineAmmoCargo addMagazineCargo addMagazineCargoGlobal addMagazineGlobal addMagazinePool addMagazines addMagazineTurret addMenu addMenuItem addMissionEventHandler addMPEventHandler addMusicEventHandler addOwnedMine addPlayerScores addPrimaryWeaponItem addPublicVariableEventHandler addRating addResources addScore addScoreSide addSecondaryWeaponItem addSwitchableUnit addTeamMember addToRemainsCollector addTorque addUniform addVehicle addVest addWaypoint addWeapon addWeaponCargo addWeaponCargoGlobal addWeaponGlobal addWeaponItem addWeaponPool addWeaponTurret admin agent agents AGLToASL aimedAtTarget aimPos airDensityRTD airplaneThrottle airportSide AISFinishHeal alive all3DENEntities allAirports allControls allCurators allCutLayers allDead allDeadMen allDisplays allGroups allMapMarkers allMines allMissionObjects allow3DMode allowCrewInImmobile allowCuratorLogicIgnoreAreas allowDamage allowDammage allowFileOperations allowFleeing allowGetIn allowSprint allPlayers allSimpleObjects allSites allTurrets allUnits allUnitsUAV allVariables ammo ammoOnPylon and animate animateBay animateDoor animatePylon animateSource animationNames animationPhase animationSourcePhase animationState append apply armoryPoints arrayIntersect asin ASLToAGL ASLToATL assert assignAsCargo assignAsCargoIndex assignAsCommander assignAsDriver assignAsGunner assignAsTurret assignCurator assignedCargo assignedCommander assignedDriver assignedGunner assignedItems assignedTarget assignedTeam assignedVehicle assignedVehicleRole assignItem assignTeam assignToAirport atan atan2 atg ATLToASL attachedObject attachedObjects attachedTo attachObject attachTo attackEnabled backpack backpackCargo backpackContainer backpackItems backpackMagazines backpackSpaceFor behaviour benchmark binocular boundingBox boundingBoxReal boundingCenter breakOut breakTo briefingName buildingExit buildingPos buttonAction buttonSetAction cadetMode call callExtension camCommand camCommit camCommitPrepared camCommitted camConstuctionSetParams camCreate camDestroy cameraEffect cameraEffectEnableHUD cameraInterest cameraOn cameraView campaignConfigFile camPreload camPreloaded camPrepareBank camPrepareDir camPrepareDive camPrepareFocus camPrepareFov camPrepareFovRange camPreparePos camPrepareRelPos camPrepareTarget camSetBank camSetDir camSetDive camSetFocus camSetFov camSetFovRange camSetPos camSetRelPos camSetTarget camTarget camUseNVG canAdd canAddItemToBackpack canAddItemToUniform canAddItemToVest cancelSimpleTaskDestination canFire canMove canSlingLoad canStand canSuspend canTriggerDynamicSimulation canUnloadInCombat canVehicleCargo captive captiveNum cbChecked cbSetChecked ceil channelEnabled cheatsEnabled checkAIFeature checkVisibility className clearAllItemsFromBackpack clearBackpackCargo clearBackpackCargoGlobal clearGroupIcons clearItemCargo clearItemCargoGlobal clearItemPool clearMagazineCargo clearMagazineCargoGlobal clearMagazinePool clearOverlay clearRadio clearWeaponCargo clearWeaponCargoGlobal clearWeaponPool clientOwner closeDialog closeDisplay closeOverlay collapseObjectTree collect3DENHistory collectiveRTD combatMode commandArtilleryFire commandChat commander commandFire commandFollow commandFSM commandGetOut commandingMenu commandMove commandRadio commandStop commandSuppressiveFire commandTarget commandWatch comment commitOverlay compile compileFinal completedFSM composeText configClasses configFile configHierarchy configName configProperties configSourceAddonList configSourceMod configSourceModList confirmSensorTarget connectTerminalToUAV controlsGroupCtrl copyFromClipboard copyToClipboard copyWaypoints cos count countEnemy countFriendly countSide countType countUnknown create3DENComposition create3DENEntity createAgent createCenter createDialog createDiaryLink createDiaryRecord createDiarySubject createDisplay createGearDialog createGroup createGuardedPoint createLocation createMarker createMarkerLocal createMenu createMine createMissionDisplay createMPCampaignDisplay createSimpleObject createSimpleTask createSite createSoundSource createTask createTeam createTrigger createUnit createVehicle createVehicleCrew createVehicleLocal crew ctAddHeader ctAddRow ctClear ctCurSel ctData ctFindHeaderRows ctFindRowHeader ctHeaderControls ctHeaderCount ctRemoveHeaders ctRemoveRows ctrlActivate ctrlAddEventHandler ctrlAngle ctrlAutoScrollDelay ctrlAutoScrollRewind ctrlAutoScrollSpeed ctrlChecked ctrlClassName ctrlCommit ctrlCommitted ctrlCreate ctrlDelete ctrlEnable ctrlEnabled ctrlFade ctrlHTMLLoaded ctrlIDC ctrlIDD ctrlMapAnimAdd ctrlMapAnimClear ctrlMapAnimCommit ctrlMapAnimDone ctrlMapCursor ctrlMapMouseOver ctrlMapScale ctrlMapScreenToWorld ctrlMapWorldToScreen ctrlModel ctrlModelDirAndUp ctrlModelScale ctrlParent ctrlParentControlsGroup ctrlPosition ctrlRemoveAllEventHandlers ctrlRemoveEventHandler ctrlScale ctrlSetActiveColor ctrlSetAngle ctrlSetAutoScrollDelay ctrlSetAutoScrollRewind ctrlSetAutoScrollSpeed ctrlSetBackgroundColor ctrlSetChecked ctrlSetEventHandler ctrlSetFade ctrlSetFocus ctrlSetFont ctrlSetFontH1 ctrlSetFontH1B ctrlSetFontH2 ctrlSetFontH2B ctrlSetFontH3 ctrlSetFontH3B ctrlSetFontH4 ctrlSetFontH4B ctrlSetFontH5 ctrlSetFontH5B ctrlSetFontH6 ctrlSetFontH6B ctrlSetFontHeight ctrlSetFontHeightH1 ctrlSetFontHeightH2 ctrlSetFontHeightH3 ctrlSetFontHeightH4 ctrlSetFontHeightH5 ctrlSetFontHeightH6 ctrlSetFontHeightSecondary ctrlSetFontP ctrlSetFontPB ctrlSetFontSecondary ctrlSetForegroundColor ctrlSetModel ctrlSetModelDirAndUp ctrlSetModelScale ctrlSetPixelPrecision ctrlSetPosition ctrlSetScale ctrlSetStructuredText ctrlSetText ctrlSetTextColor ctrlSetTooltip ctrlSetTooltipColorBox ctrlSetTooltipColorShade ctrlSetTooltipColorText ctrlShow ctrlShown ctrlText ctrlTextHeight ctrlTextWidth ctrlType ctrlVisible ctRowControls ctRowCount ctSetCurSel ctSetData ctSetHeaderTemplate ctSetRowTemplate ctSetValue ctValue curatorAddons curatorCamera curatorCameraArea curatorCameraAreaCeiling curatorCoef curatorEditableObjects curatorEditingArea curatorEditingAreaType curatorMouseOver curatorPoints curatorRegisteredObjects curatorSelected curatorWaypointCost current3DENOperation currentChannel currentCommand currentMagazine currentMagazineDetail currentMagazineDetailTurret currentMagazineTurret currentMuzzle currentNamespace currentTask currentTasks currentThrowable currentVisionMode currentWaypoint currentWeapon currentWeaponMode currentWeaponTurret currentZeroing cursorObject cursorTarget customChat customRadio cutFadeOut cutObj cutRsc cutText damage date dateToNumber daytime deActivateKey debriefingText debugFSM debugLog deg delete3DENEntities deleteAt deleteCenter deleteCollection deleteEditorObject deleteGroup deleteGroupWhenEmpty deleteIdentity deleteLocation deleteMarker deleteMarkerLocal deleteRange deleteResources deleteSite deleteStatus deleteTeam deleteVehicle deleteVehicleCrew deleteWaypoint detach detectedMines diag_activeMissionFSMs diag_activeScripts diag_activeSQFScripts diag_activeSQSScripts diag_captureFrame diag_captureFrameToFile diag_captureSlowFrame diag_codePerformance diag_drawMode diag_enable diag_enabled diag_fps diag_fpsMin diag_frameNo diag_lightNewLoad diag_list diag_log diag_logSlowFrame diag_mergeConfigFile diag_recordTurretLimits diag_setLightNew diag_tickTime diag_toggle dialog diarySubjectExists didJIP didJIPOwner difficulty difficultyEnabled difficultyEnabledRTD difficultyOption direction directSay disableAI disableCollisionWith disableConversation disableDebriefingStats disableMapIndicators disableNVGEquipment disableRemoteSensors disableSerialization disableTIEquipment disableUAVConnectability disableUserInput displayAddEventHandler displayCtrl displayParent displayRemoveAllEventHandlers displayRemoveEventHandler displaySetEventHandler dissolveTeam distance distance2D distanceSqr distributionRegion do3DENAction doArtilleryFire doFire doFollow doFSM doGetOut doMove doorPhase doStop doSuppressiveFire doTarget doWatch drawArrow drawEllipse drawIcon drawIcon3D drawLine drawLine3D drawLink drawLocation drawPolygon drawRectangle drawTriangle driver drop dynamicSimulationDistance dynamicSimulationDistanceCoef dynamicSimulationEnabled dynamicSimulationSystemEnabled echo edit3DENMissionAttributes editObject editorSetEventHandler effectiveCommander emptyPositions enableAI enableAIFeature enableAimPrecision enableAttack enableAudioFeature enableAutoStartUpRTD enableAutoTrimRTD enableCamShake enableCaustics enableChannel enableCollisionWith enableCopilot enableDebriefingStats enableDiagLegend enableDynamicSimulation enableDynamicSimulationSystem enableEndDialog enableEngineArtillery enableEnvironment enableFatigue enableGunLights enableInfoPanelComponent enableIRLasers enableMimics enablePersonTurret enableRadio enableReload enableRopeAttach enableSatNormalOnDetail enableSaving enableSentences enableSimulation enableSimulationGlobal enableStamina enableTeamSwitch enableTraffic enableUAVConnectability enableUAVWaypoints enableVehicleCargo enableVehicleSensor enableWeaponDisassembly endLoadingScreen endMission engineOn enginesIsOnRTD enginesRpmRTD enginesTorqueRTD entities environmentEnabled estimatedEndServerTime estimatedTimeLeft evalObjectArgument everyBackpack everyContainer exec execEditorScript execFSM execVM exp expectedDestination exportJIPMessages eyeDirection eyePos face faction fadeMusic fadeRadio fadeSound fadeSpeech failMission fillWeaponsFromPool find findCover findDisplay findEditorObject findEmptyPosition findEmptyPositionReady findIf findNearestEnemy finishMissionInit finite fire fireAtTarget firstBackpack flag flagAnimationPhase flagOwner flagSide flagTexture fleeing floor flyInHeight flyInHeightASL fog fogForecast fogParams forceAddUniform forcedMap forceEnd forceFlagTexture forceFollowRoad forceMap forceRespawn forceSpeed forceWalk forceWeaponFire forceWeatherChange forEachMember forEachMemberAgent forEachMemberTeam forgetTarget format formation formationDirection formationLeader formationMembers formationPosition formationTask formatText formLeader freeLook fromEditor fuel fullCrew gearIDCAmmoCount gearSlotAmmoCount gearSlotData get3DENActionState get3DENAttribute get3DENCamera get3DENConnections get3DENEntity get3DENEntityID get3DENGrid get3DENIconsVisible get3DENLayerEntities get3DENLinesVisible get3DENMissionAttribute get3DENMouseOver get3DENSelected getAimingCoef getAllEnvSoundControllers getAllHitPointsDamage getAllOwnedMines getAllSoundControllers getAmmoCargo getAnimAimPrecision getAnimSpeedCoef getArray getArtilleryAmmo getArtilleryComputerSettings getArtilleryETA getAssignedCuratorLogic getAssignedCuratorUnit getBackpackCargo getBleedingRemaining getBurningValue getCameraViewDirection getCargoIndex getCenterOfMass getClientState getClientStateNumber getCompatiblePylonMagazines getConnectedUAV getContainerMaxLoad getCursorObjectParams getCustomAimCoef getDammage getDescription getDir getDirVisual getDLCAssetsUsage getDLCAssetsUsageByName getDLCs getEditorCamera getEditorMode getEditorObjectScope getElevationOffset getEnvSoundController getFatigue getForcedFlagTexture getFriend getFSMVariable getFuelCargo getGroupIcon getGroupIconParams getGroupIcons getHideFrom getHit getHitIndex getHitPointDamage getItemCargo getMagazineCargo getMarkerColor getMarkerPos getMarkerSize getMarkerType getMass getMissionConfig getMissionConfigValue getMissionDLCs getMissionLayerEntities getModelInfo getMousePosition getMusicPlayedTime getNumber getObjectArgument getObjectChildren getObjectDLC getObjectMaterials getObjectProxy getObjectTextures getObjectType getObjectViewDistance getOxygenRemaining getPersonUsedDLCs getPilotCameraDirection getPilotCameraPosition getPilotCameraRotation getPilotCameraTarget getPlateNumber getPlayerChannel getPlayerScores getPlayerUID getPos getPosASL getPosASLVisual getPosASLW getPosATL getPosATLVisual getPosVisual getPosWorld getPylonMagazines getRelDir getRelPos getRemoteSensorsDisabled getRepairCargo getResolution getShadowDistance getShotParents getSlingLoad getSoundController getSoundControllerResult getSpeed getStamina getStatValue getSuppression getTerrainGrid getTerrainHeightASL getText getTotalDLCUsageTime getUnitLoadout getUnitTrait getUserMFDText getUserMFDvalue getVariable getVehicleCargo getWeaponCargo getWeaponSway getWingsOrientationRTD getWingsPositionRTD getWPPos glanceAt globalChat globalRadio goggles goto group groupChat groupFromNetId groupIconSelectable groupIconsVisible groupId groupOwner groupRadio groupSelectedUnits groupSelectUnit gunner gusts halt handgunItems handgunMagazine handgunWeapon handsHit hasInterface hasPilotCamera hasWeapon hcAllGroups hcGroupParams hcLeader hcRemoveAllGroups hcRemoveGroup hcSelected hcSelectGroup hcSetGroup hcShowBar hcShownBar headgear hideBody hideObject hideObjectGlobal hideSelection hint hintC hintCadet hintSilent hmd hostMission htmlLoad HUDMovementLevels humidity image importAllGroups importance in inArea inAreaArray incapacitatedState inflame inflamed infoPanel infoPanelComponentEnabled infoPanelComponents infoPanels inGameUISetEventHandler inheritsFrom initAmbientLife inPolygon inputAction inRangeOfArtillery insertEditorObject intersect is3DEN is3DENMultiplayer isAbleToBreathe isAgent isArray isAutoHoverOn isAutonomous isAutotest isBleeding isBurning isClass isCollisionLightOn isCopilotEnabled isDamageAllowed isDedicated isDLCAvailable isEngineOn isEqualTo isEqualType isEqualTypeAll isEqualTypeAny isEqualTypeArray isEqualTypeParams isFilePatchingEnabled isFlashlightOn isFlatEmpty isForcedWalk isFormationLeader isGroupDeletedWhenEmpty isHidden isInRemainsCollector isInstructorFigureEnabled isIRLaserOn isKeyActive isKindOf isLaserOn isLightOn isLocalized isManualFire isMarkedForCollection isMultiplayer isMultiplayerSolo isNil isNull isNumber isObjectHidden isObjectRTD isOnRoad isPipEnabled isPlayer isRealTime isRemoteExecuted isRemoteExecutedJIP isServer isShowing3DIcons isSimpleObject isSprintAllowed isStaminaEnabled isSteamMission isStreamFriendlyUIEnabled isText isTouchingGround isTurnedOut isTutHintsEnabled isUAVConnectable isUAVConnected isUIContext isUniformAllowed isVehicleCargo isVehicleRadarOn isVehicleSensorEnabled isWalking isWeaponDeployed isWeaponRested itemCargo items itemsWithMagazines join joinAs joinAsSilent joinSilent joinString kbAddDatabase kbAddDatabaseTargets kbAddTopic kbHasTopic kbReact kbRemoveTopic kbTell kbWasSaid keyImage keyName knowsAbout land landAt landResult language laserTarget lbAdd lbClear lbColor lbColorRight lbCurSel lbData lbDelete lbIsSelected lbPicture lbPictureRight lbSelection lbSetColor lbSetColorRight lbSetCurSel lbSetData lbSetPicture lbSetPictureColor lbSetPictureColorDisabled lbSetPictureColorSelected lbSetPictureRight lbSetPictureRightColor lbSetPictureRightColorDisabled lbSetPictureRightColorSelected lbSetSelectColor lbSetSelectColorRight lbSetSelected lbSetText lbSetTextRight lbSetTooltip lbSetValue lbSize lbSort lbSortByValue lbText lbTextRight lbValue leader leaderboardDeInit leaderboardGetRows leaderboardInit leaderboardRequestRowsFriends leaderboardsRequestUploadScore leaderboardsRequestUploadScoreKeepBest leaderboardState leaveVehicle libraryCredits libraryDisclaimers lifeState lightAttachObject lightDetachObject lightIsOn lightnings limitSpeed linearConversion lineIntersects lineIntersectsObjs lineIntersectsSurfaces lineIntersectsWith linkItem list listObjects listRemoteTargets listVehicleSensors ln lnbAddArray lnbAddColumn lnbAddRow lnbClear lnbColor lnbCurSelRow lnbData lnbDeleteColumn lnbDeleteRow lnbGetColumnsPosition lnbPicture lnbSetColor lnbSetColumnsPos lnbSetCurSelRow lnbSetData lnbSetPicture lnbSetText lnbSetValue lnbSize lnbSort lnbSortByValue lnbText lnbValue load loadAbs loadBackpack loadFile loadGame loadIdentity loadMagazine loadOverlay loadStatus loadUniform loadVest local localize locationPosition lock lockCameraTo lockCargo lockDriver locked lockedCargo lockedDriver lockedTurret lockIdentity lockTurret lockWP log logEntities logNetwork logNetworkTerminate lookAt lookAtPos magazineCargo magazines magazinesAllTurrets magazinesAmmo magazinesAmmoCargo magazinesAmmoFull magazinesDetail magazinesDetailBackpack magazinesDetailUniform magazinesDetailVest magazinesTurret magazineTurretAmmo mapAnimAdd mapAnimClear mapAnimCommit mapAnimDone mapCenterOnCamera mapGridPosition markAsFinishedOnSteam markerAlpha markerBrush markerColor markerDir markerPos markerShape markerSize markerText markerType max members menuAction menuAdd menuChecked menuClear menuCollapse menuData menuDelete menuEnable menuEnabled menuExpand menuHover menuPicture menuSetAction menuSetCheck menuSetData menuSetPicture menuSetValue menuShortcut menuShortcutText menuSize menuSort menuText menuURL menuValue min mineActive mineDetectedBy missionConfigFile missionDifficulty missionName missionNamespace missionStart missionVersion mod modelToWorld modelToWorldVisual modelToWorldVisualWorld modelToWorldWorld modParams moonIntensity moonPhase morale move move3DENCamera moveInAny moveInCargo moveInCommander moveInDriver moveInGunner moveInTurret moveObjectToEnd moveOut moveTime moveTo moveToCompleted moveToFailed musicVolume name nameSound nearEntities nearestBuilding nearestLocation nearestLocations nearestLocationWithDubbing nearestObject nearestObjects nearestTerrainObjects nearObjects nearObjectsReady nearRoads nearSupplies nearTargets needReload netId netObjNull newOverlay nextMenuItemIndex nextWeatherChange nMenuItems not numberOfEnginesRTD numberToDate objectCurators objectFromNetId objectParent objStatus onBriefingGroup onBriefingNotes onBriefingPlan onBriefingTeamSwitch onCommandModeChanged onDoubleClick onEachFrame onGroupIconClick onGroupIconOverEnter onGroupIconOverLeave onHCGroupSelectionChanged onMapSingleClick onPlayerConnected onPlayerDisconnected onPreloadFinished onPreloadStarted onShowNewObject onTeamSwitch openCuratorInterface openDLCPage openMap openSteamApp openYoutubeVideo or orderGetIn overcast overcastForecast owner param params parseNumber parseSimpleArray parseText parsingNamespace particlesQuality pickWeaponPool pitch pixelGrid pixelGridBase pixelGridNoUIScale pixelH pixelW playableSlotsNumber playableUnits playAction playActionNow player playerRespawnTime playerSide playersNumber playGesture playMission playMove playMoveNow playMusic playScriptedMission playSound playSound3D position positionCameraToWorld posScreenToWorld posWorldToScreen ppEffectAdjust ppEffectCommit ppEffectCommitted ppEffectCreate ppEffectDestroy ppEffectEnable ppEffectEnabled ppEffectForceInNVG precision preloadCamera preloadObject preloadSound preloadTitleObj preloadTitleRsc preprocessFile preprocessFileLineNumbers primaryWeapon primaryWeaponItems primaryWeaponMagazine priority processDiaryLink productVersion profileName profileNamespace profileNameSteam progressLoadingScreen progressPosition progressSetPosition publicVariable publicVariableClient publicVariableServer pushBack pushBackUnique putWeaponPool queryItemsPool queryMagazinePool queryWeaponPool rad radioChannelAdd radioChannelCreate radioChannelRemove radioChannelSetCallSign radioChannelSetLabel radioVolume rain rainbow random rank rankId rating rectangular registeredTasks registerTask reload reloadEnabled remoteControl remoteExec remoteExecCall remoteExecutedOwner remove3DENConnection remove3DENEventHandler remove3DENLayer removeAction removeAll3DENEventHandlers removeAllActions removeAllAssignedItems removeAllContainers removeAllCuratorAddons removeAllCuratorCameraAreas removeAllCuratorEditingAreas removeAllEventHandlers removeAllHandgunItems removeAllItems removeAllItemsWithMagazines removeAllMissionEventHandlers removeAllMPEventHandlers removeAllMusicEventHandlers removeAllOwnedMines removeAllPrimaryWeaponItems removeAllWeapons removeBackpack removeBackpackGlobal removeCuratorAddons removeCuratorCameraArea removeCuratorEditableObjects removeCuratorEditingArea removeDrawIcon removeDrawLinks removeEventHandler removeFromRemainsCollector removeGoggles removeGroupIcon removeHandgunItem removeHeadgear removeItem removeItemFromBackpack removeItemFromUniform removeItemFromVest removeItems removeMagazine removeMagazineGlobal removeMagazines removeMagazinesTurret removeMagazineTurret removeMenuItem removeMissionEventHandler removeMPEventHandler removeMusicEventHandler removeOwnedMine removePrimaryWeaponItem removeSecondaryWeaponItem removeSimpleTask removeSwitchableUnit removeTeamMember removeUniform removeVest removeWeapon removeWeaponAttachmentCargo removeWeaponCargo removeWeaponGlobal removeWeaponTurret reportRemoteTarget requiredVersion resetCamShake resetSubgroupDirection resize resources respawnVehicle restartEditorCamera reveal revealMine reverse reversedMouseY roadAt roadsConnectedTo roleDescription ropeAttachedObjects ropeAttachedTo ropeAttachEnabled ropeAttachTo ropeCreate ropeCut ropeDestroy ropeDetach ropeEndPosition ropeLength ropes ropeUnwind ropeUnwound rotorsForcesRTD rotorsRpmRTD round runInitScript safeZoneH safeZoneW safeZoneWAbs safeZoneX safeZoneXAbs safeZoneY save3DENInventory saveGame saveIdentity saveJoysticks saveOverlay saveProfileNamespace saveStatus saveVar savingEnabled say say2D say3D scopeName score scoreSide screenshot screenToWorld scriptDone scriptName scudState secondaryWeapon secondaryWeaponItems secondaryWeaponMagazine select selectBestPlaces selectDiarySubject selectedEditorObjects selectEditorObject selectionNames selectionPosition selectLeader selectMax selectMin selectNoPlayer selectPlayer selectRandom selectRandomWeighted selectWeapon selectWeaponTurret sendAUMessage sendSimpleCommand sendTask sendTaskResult sendUDPMessage serverCommand serverCommandAvailable serverCommandExecutable serverName serverTime set set3DENAttribute set3DENAttributes set3DENGrid set3DENIconsVisible set3DENLayer set3DENLinesVisible set3DENLogicType set3DENMissionAttribute set3DENMissionAttributes set3DENModelsVisible set3DENObjectType set3DENSelected setAccTime setActualCollectiveRTD setAirplaneThrottle setAirportSide setAmmo setAmmoCargo setAmmoOnPylon setAnimSpeedCoef setAperture setApertureNew setArmoryPoints setAttributes setAutonomous setBehaviour setBleedingRemaining setBrakesRTD setCameraInterest setCamShakeDefParams setCamShakeParams setCamUseTI setCaptive setCenterOfMass setCollisionLight setCombatMode setCompassOscillation setConvoySeparation setCuratorCameraAreaCeiling setCuratorCoef setCuratorEditingAreaType setCuratorWaypointCost setCurrentChannel setCurrentTask setCurrentWaypoint setCustomAimCoef setCustomWeightRTD setDamage setDammage setDate setDebriefingText setDefaultCamera setDestination setDetailMapBlendPars setDir setDirection setDrawIcon setDriveOnPath setDropInterval setDynamicSimulationDistance setDynamicSimulationDistanceCoef setEditorMode setEditorObjectScope setEffectCondition setEngineRPMRTD setFace setFaceAnimation setFatigue setFeatureType setFlagAnimationPhase setFlagOwner setFlagSide setFlagTexture setFog setFormation setFormationTask setFormDir setFriend setFromEditor setFSMVariable setFuel setFuelCargo setGroupIcon setGroupIconParams setGroupIconsSelectable setGroupIconsVisible setGroupId setGroupIdGlobal setGroupOwner setGusts setHideBehind setHit setHitIndex setHitPointDamage setHorizonParallaxCoef setHUDMovementLevels setIdentity setImportance setInfoPanel setLeader setLightAmbient setLightAttenuation setLightBrightness setLightColor setLightDayLight setLightFlareMaxDistance setLightFlareSize setLightIntensity setLightnings setLightUseFlare setLocalWindParams setMagazineTurretAmmo setMarkerAlpha setMarkerAlphaLocal setMarkerBrush setMarkerBrushLocal setMarkerColor setMarkerColorLocal setMarkerDir setMarkerDirLocal setMarkerPos setMarkerPosLocal setMarkerShape setMarkerShapeLocal setMarkerSize setMarkerSizeLocal setMarkerText setMarkerTextLocal setMarkerType setMarkerTypeLocal setMass setMimic setMousePosition setMusicEffect setMusicEventHandler setName setNameSound setObjectArguments setObjectMaterial setObjectMaterialGlobal setObjectProxy setObjectTexture setObjectTextureGlobal setObjectViewDistance setOvercast setOwner setOxygenRemaining setParticleCircle setParticleClass setParticleFire setParticleParams setParticleRandom setPilotCameraDirection setPilotCameraRotation setPilotCameraTarget setPilotLight setPiPEffect setPitch setPlateNumber setPlayable setPlayerRespawnTime setPos setPosASL setPosASL2 setPosASLW setPosATL setPosition setPosWorld setPylonLoadOut setPylonsPriority setRadioMsg setRain setRainbow setRandomLip setRank setRectangular setRepairCargo setRotorBrakeRTD setShadowDistance setShotParents setSide setSimpleTaskAlwaysVisible setSimpleTaskCustomData setSimpleTaskDescription setSimpleTaskDestination setSimpleTaskTarget setSimpleTaskType setSimulWeatherLayers setSize setSkill setSlingLoad setSoundEffect setSpeaker setSpeech setSpeedMode setStamina setStaminaScheme setStatValue setSuppression setSystemOfUnits setTargetAge setTaskMarkerOffset setTaskResult setTaskState setTerrainGrid setText setTimeMultiplier setTitleEffect setTrafficDensity setTrafficDistance setTrafficGap setTrafficSpeed setTriggerActivation setTriggerArea setTriggerStatements setTriggerText setTriggerTimeout setTriggerType setType setUnconscious setUnitAbility setUnitLoadout setUnitPos setUnitPosWeak setUnitRank setUnitRecoilCoefficient setUnitTrait setUnloadInCombat setUserActionText setUserMFDText setUserMFDvalue setVariable setVectorDir setVectorDirAndUp setVectorUp setVehicleAmmo setVehicleAmmoDef setVehicleArmor setVehicleCargo setVehicleId setVehicleLock setVehiclePosition setVehicleRadar setVehicleReceiveRemoteTargets setVehicleReportOwnPosition setVehicleReportRemoteTargets setVehicleTIPars setVehicleVarName setVelocity setVelocityModelSpace setVelocityTransformation setViewDistance setVisibleIfTreeCollapsed setWantedRPMRTD setWaves setWaypointBehaviour setWaypointCombatMode setWaypointCompletionRadius setWaypointDescription setWaypointForceBehaviour setWaypointFormation setWaypointHousePosition setWaypointLoiterRadius setWaypointLoiterType setWaypointName setWaypointPosition setWaypointScript setWaypointSpeed setWaypointStatements setWaypointTimeout setWaypointType setWaypointVisible setWeaponReloadingTime setWind setWindDir setWindForce setWindStr setWingForceScaleRTD setWPPos show3DIcons showChat showCinemaBorder showCommandingMenu showCompass showCuratorCompass showGPS showHUD showLegend showMap shownArtilleryComputer shownChat shownCompass shownCuratorCompass showNewEditorObject shownGPS shownHUD shownMap shownPad shownRadio shownScoretable shownUAVFeed shownWarrant shownWatch showPad showRadio showScoretable showSubtitles showUAVFeed showWarrant showWatch showWaypoint showWaypoints side sideChat sideEnemy sideFriendly sideRadio simpleTasks simulationEnabled simulCloudDensity simulCloudOcclusion simulInClouds simulWeatherSync sin size sizeOf skill skillFinal skipTime sleep sliderPosition sliderRange sliderSetPosition sliderSetRange sliderSetSpeed sliderSpeed slingLoadAssistantShown soldierMagazines someAmmo sort soundVolume spawn speaker speed speedMode splitString sqrt squadParams stance startLoadingScreen step stop stopEngineRTD stopped str sunOrMoon supportInfo suppressFor surfaceIsWater surfaceNormal surfaceType swimInDepth switchableUnits switchAction switchCamera switchGesture switchLight switchMove synchronizedObjects synchronizedTriggers synchronizedWaypoints synchronizeObjectsAdd synchronizeObjectsRemove synchronizeTrigger synchronizeWaypoint systemChat systemOfUnits tan targetKnowledge targets targetsAggregate targetsQuery taskAlwaysVisible taskChildren taskCompleted taskCustomData taskDescription taskDestination taskHint taskMarkerOffset taskParent taskResult taskState taskType teamMember teamName teams teamSwitch teamSwitchEnabled teamType terminate terrainIntersect terrainIntersectASL terrainIntersectAtASL text textLog textLogFormat tg time timeMultiplier titleCut titleFadeOut titleObj titleRsc titleText toArray toFixed toLower toString toUpper triggerActivated triggerActivation triggerArea triggerAttachedVehicle triggerAttachObject triggerAttachVehicle triggerDynamicSimulation triggerStatements triggerText triggerTimeout triggerTimeoutCurrent triggerType turretLocal turretOwner turretUnit tvAdd tvClear tvCollapse tvCollapseAll tvCount tvCurSel tvData tvDelete tvExpand tvExpandAll tvPicture tvSetColor tvSetCurSel tvSetData tvSetPicture tvSetPictureColor tvSetPictureColorDisabled tvSetPictureColorSelected tvSetPictureRight tvSetPictureRightColor tvSetPictureRightColorDisabled tvSetPictureRightColorSelected tvSetText tvSetTooltip tvSetValue tvSort tvSortByValue tvText tvTooltip tvValue type typeName typeOf UAVControl uiNamespace uiSleep unassignCurator unassignItem unassignTeam unassignVehicle underwater uniform uniformContainer uniformItems uniformMagazines unitAddons unitAimPosition unitAimPositionVisual unitBackpack unitIsUAV unitPos unitReady unitRecoilCoefficient units unitsBelowHeight unlinkItem unlockAchievement unregisterTask updateDrawIcon updateMenuItem updateObjectTree useAISteeringComponent useAudioTimeForMoves userInputDisabled vectorAdd vectorCos vectorCrossProduct vectorDiff vectorDir vectorDirVisual vectorDistance vectorDistanceSqr vectorDotProduct vectorFromTo vectorMagnitude vectorMagnitudeSqr vectorModelToWorld vectorModelToWorldVisual vectorMultiply vectorNormalized vectorUp vectorUpVisual vectorWorldToModel vectorWorldToModelVisual vehicle vehicleCargoEnabled vehicleChat vehicleRadio vehicleReceiveRemoteTargets vehicleReportOwnPosition vehicleReportRemoteTargets vehicles vehicleVarName velocity velocityModelSpace verifySignature vest vestContainer vestItems vestMagazines viewDistance visibleCompass visibleGPS visibleMap visiblePosition visiblePositionASL visibleScoretable visibleWatch waves waypointAttachedObject waypointAttachedVehicle waypointAttachObject waypointAttachVehicle waypointBehaviour waypointCombatMode waypointCompletionRadius waypointDescription waypointForceBehaviour waypointFormation waypointHousePosition waypointLoiterRadius waypointLoiterType waypointName waypointPosition waypoints waypointScript waypointsEnabledUAV waypointShow waypointSpeed waypointStatements waypointTimeout waypointTimeoutCurrent waypointType waypointVisible weaponAccessories weaponAccessoriesCargo weaponCargo weaponDirection weaponInertia weaponLowered weapons weaponsItems weaponsItemsCargo weaponState weaponsTurret weightRTD WFSideText wind ","literal","blufor civilian configNull controlNull displayNull east endl false grpNull independent lineBreak locationNull nil objNull opfor pi resistance scriptNull sideAmbientLife sideEmpty sideLogic sideUnknown taskNull teamMemberNull true west"],l,l),h=$.ba(),g=$.b_(),f=$.dB(),e=A.a(p,"\\b_+[a-zA-Z_]\\w*",p,p,"variable",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),d=A.a(p,"[a-zA-Z][a-zA-Z0-9]+_fnc_\\w*",p,p,"title",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),c=A.a(p,p,p,p,"string",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,A.b([A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,o,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,q,p,p,p,p,p,p,p,p,p)],m)) -l=A.l(["meta-keyword","define undef ifdef ifndef else endif include"],l,l) -return A.a(j,p,p,!0,p,A.b([h,g,f,e,d,c,A.a(p,"#\\s*[a-z]+\\b",p,p,"meta",A.b([A.a(p,"\\\\\\n",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p),A.a(p,p,p,p,n,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,A.b([A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,o,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,q,p,p,p,p,p,p,p,p,p)],m)),A.a(p,"<[^\\n>]*>",p,p,n,p,p,"$",p,p,p,p,p,"\\n",p,p,p,p,p,p,p,p,p,p,p,p),h,g],m),p,"$",p,p,p,p,p,p,l,p,p,p,p,p,p,p,p,p,p,p)],m),p,p,p,p,p,p,p,"#|^\\$ ",i,p,p,k,p,p,p,p,p,p,p,p)}) -s($,"bfl","aUi",()=>{var q,p,o,n,m,l,k,j="~contains~0~contains~5",i=null,h="string",g=t._,f=t.N,e=A.l([j,A.a(i,"--",i,i,"comment",A.b([$.aq(),A.a(i,"(?:TODO|FIXME|NOTE|BUG|XXX):",i,i,"doctag",i,i,i,i,i,i,i,i,i,i,i,i,i,0,i,i,i,i,i,i,i)],g),i,"$",i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i)],f,t.n) -f=A.l(["keyword","as abort abs absolute acc acce accep accept access accessed accessible account acos action activate add addtime admin administer advanced advise aes_decrypt aes_encrypt after agent aggregate ali alia alias all allocate allow alter always analyze ancillary and anti any anydata anydataset anyschema anytype apply archive archived archivelog are as asc ascii asin assembly assertion associate asynchronous at atan atn2 attr attri attrib attribu attribut attribute attributes audit authenticated authentication authid authors auto autoallocate autodblink autoextend automatic availability avg backup badfile basicfile before begin beginning benchmark between bfile bfile_base big bigfile bin binary_double binary_float binlog bit_and bit_count bit_length bit_or bit_xor bitmap blob_base block blocksize body both bound bucket buffer_cache buffer_pool build bulk by byte byteordermark bytes cache caching call calling cancel capacity cascade cascaded case cast catalog category ceil ceiling chain change changed char_base char_length character_length characters characterset charindex charset charsetform charsetid check checksum checksum_agg child choose chr chunk class cleanup clear client clob clob_base clone close cluster_id cluster_probability cluster_set clustering coalesce coercibility col collate collation collect colu colum column column_value columns columns_updated comment commit compact compatibility compiled complete composite_limit compound compress compute concat concat_ws concurrent confirm conn connec connect connect_by_iscycle connect_by_isleaf connect_by_root connect_time connection consider consistent constant constraint constraints constructor container content contents context contributors controlfile conv convert convert_tz corr corr_k corr_s corresponding corruption cos cost count count_big counted covar_pop covar_samp cpu_per_call cpu_per_session crc32 create creation critical cross cube cume_dist curdate current current_date current_time current_timestamp current_user cursor curtime customdatum cycle data database databases datafile datafiles datalength date_add date_cache date_format date_sub dateadd datediff datefromparts datename datepart datetime2fromparts day day_to_second dayname dayofmonth dayofweek dayofyear days db_role_change dbtimezone ddl deallocate declare decode decompose decrement decrypt deduplicate def defa defau defaul default defaults deferred defi defin define degrees delayed delegate delete delete_all delimited demand dense_rank depth dequeue des_decrypt des_encrypt des_key_file desc descr descri describ describe descriptor deterministic diagnostics difference dimension direct_load directory disable disable_all disallow disassociate discardfile disconnect diskgroup distinct distinctrow distribute distributed div do document domain dotnet double downgrade drop dumpfile duplicate duration each edition editionable editions element ellipsis else elsif elt empty enable enable_all enclosed encode encoding encrypt end end-exec endian enforced engine engines enqueue enterprise entityescaping eomonth error errors escaped evalname evaluate event eventdata events except exception exceptions exchange exclude excluding execu execut execute exempt exists exit exp expire explain explode export export_set extended extent external external_1 external_2 externally extract failed failed_login_attempts failover failure far fast feature_set feature_value fetch field fields file file_name_convert filesystem_like_logging final finish first first_value fixed flash_cache flashback floor flush following follows for forall force foreign form forma format found found_rows freelist freelists freepools fresh from from_base64 from_days ftp full function general generated get get_format get_lock getdate getutcdate global global_name globally go goto grant grants greatest group group_concat group_id grouping grouping_id groups gtid_subtract guarantee guard handler hash hashkeys having hea head headi headin heading heap help hex hierarchy high high_priority hosts hour hours http id ident_current ident_incr ident_seed identified identity idle_time if ifnull ignore iif ilike ilm immediate import in include including increment index indexes indexing indextype indicator indices inet6_aton inet6_ntoa inet_aton inet_ntoa infile initial initialized initially initrans inmemory inner innodb input insert install instance instantiable instr interface interleaved intersect into invalidate invisible is is_free_lock is_ipv4 is_ipv4_compat is_not is_not_null is_used_lock isdate isnull isolation iterate java join json json_exists keep keep_duplicates key keys kill language large last last_day last_insert_id last_value lateral lax lcase lead leading least leaves left len lenght length less level levels library like like2 like4 likec limit lines link list listagg little ln load load_file lob lobs local localtime localtimestamp locate locator lock locked log log10 log2 logfile logfiles logging logical logical_reads_per_call logoff logon logs long loop low low_priority lower lpad lrtrim ltrim main make_set makedate maketime managed management manual map mapping mask master master_pos_wait match matched materialized max maxextents maximize maxinstances maxlen maxlogfiles maxloghistory maxlogmembers maxsize maxtrans md5 measures median medium member memcompress memory merge microsecond mid migration min minextents minimum mining minus minute minutes minvalue missing mod mode model modification modify module monitoring month months mount move movement multiset mutex name name_const names nan national native natural nav nchar nclob nested never new newline next nextval no no_write_to_binlog noarchivelog noaudit nobadfile nocheck nocompress nocopy nocycle nodelay nodiscardfile noentityescaping noguarantee nokeep nologfile nomapping nomaxvalue nominimize nominvalue nomonitoring none noneditionable nonschema noorder nopr nopro noprom nopromp noprompt norely noresetlogs noreverse normal norowdependencies noschemacheck noswitch not nothing notice notnull notrim novalidate now nowait nth_value nullif nulls num numb numbe nvarchar nvarchar2 object ocicoll ocidate ocidatetime ociduration ociinterval ociloblocator ocinumber ociref ocirefcursor ocirowid ocistring ocitype oct octet_length of off offline offset oid oidindex old on online only opaque open operations operator optimal optimize option optionally or oracle oracle_date oradata ord ordaudio orddicom orddoc order ordimage ordinality ordvideo organization orlany orlvary out outer outfile outline output over overflow overriding package pad parallel parallel_enable parameters parent parse partial partition partitions pascal passing password password_grace_time password_lock_time password_reuse_max password_reuse_time password_verify_function patch path patindex pctincrease pctthreshold pctused pctversion percent percent_rank percentile_cont percentile_disc performance period period_add period_diff permanent physical pi pipe pipelined pivot pluggable plugin policy position post_transaction pow power pragma prebuilt precedes preceding precision prediction prediction_cost prediction_details prediction_probability prediction_set prepare present preserve prior priority private private_sga privileges procedural procedure procedure_analyze processlist profiles project prompt protection public publishingservername purge quarter query quick quiesce quota quotename radians raise rand range rank raw read reads readsize rebuild record records recover recovery recursive recycle redo reduced ref reference referenced references referencing refresh regexp_like register regr_avgx regr_avgy regr_count regr_intercept regr_r2 regr_slope regr_sxx regr_sxy reject rekey relational relative relaylog release release_lock relies_on relocate rely rem remainder rename repair repeat replace replicate replication required reset resetlogs resize resource respect restore restricted result result_cache resumable resume retention return returning returns reuse reverse revoke right rlike role roles rollback rolling rollup round row row_count rowdependencies rowid rownum rows rtrim rules safe salt sample save savepoint sb1 sb2 sb4 scan schema schemacheck scn scope scroll sdo_georaster sdo_topo_geometry search sec_to_time second seconds section securefile security seed segment select self semi sequence sequential serializable server servererror session session_user sessions_per_user set sets settings sha sha1 sha2 share shared shared_pool short show shrink shutdown si_averagecolor si_colorhistogram si_featurelist si_positionalcolor si_stillimage si_texture siblings sid sign sin size size_t sizes skip slave sleep smalldatetimefromparts smallfile snapshot some soname sort soundex source space sparse spfile split sql sql_big_result sql_buffer_result sql_cache sql_calc_found_rows sql_small_result sql_variant_property sqlcode sqldata sqlerror sqlname sqlstate sqrt square standalone standby start starting startup statement static statistics stats_binomial_test stats_crosstab stats_ks_test stats_mode stats_mw_test stats_one_way_anova stats_t_test_ stats_t_test_indep stats_t_test_one stats_t_test_paired stats_wsr_test status std stddev stddev_pop stddev_samp stdev stop storage store stored str str_to_date straight_join strcmp strict string struct stuff style subdate subpartition subpartitions substitutable substr substring subtime subtring_index subtype success sum suspend switch switchoffset switchover sync synchronous synonym sys sys_xmlagg sysasm sysaux sysdate sysdatetimeoffset sysdba sysoper system system_user sysutcdatetime table tables tablespace tablesample tan tdo template temporary terminated tertiary_weights test than then thread through tier ties time time_format time_zone timediff timefromparts timeout timestamp timestampadd timestampdiff timezone_abbr timezone_minute timezone_region to to_base64 to_date to_days to_seconds todatetimeoffset trace tracking transaction transactional translate translation treat trigger trigger_nestlevel triggers trim truncate try_cast try_convert try_parse type ub1 ub2 ub4 ucase unarchived unbounded uncompress under undo unhex unicode uniform uninstall union unique unix_timestamp unknown unlimited unlock unnest unpivot unrecoverable unsafe unsigned until untrusted unusable unused update updated upgrade upped upper upsert url urowid usable usage use use_stored_outlines user user_data user_resources users using utc_date utc_timestamp uuid uuid_short validate validate_password_strength validation valist value values var var_samp varcharc vari varia variab variabl variable variables variance varp varraw varrawc varray verify version versions view virtual visible void wait wallet warning warnings week weekday weekofyear wellformed when whene whenev wheneve whenever where while whitespace window with within without work wrapped xdb xml xmlagg xmlattributes xmlcast xmlcolattval xmlelement xmlexists xmlforest xmlindex xmlnamespaces xmlpi xmlquery xmlroot xmlschema xmlserialize xmltable xmltype xor year year_to_month years yearweek","literal","true false null unknown","built_in","array bigint binary bit blob bool boolean char character date dec decimal float int int8 integer interval number numeric real record serial serial8 smallint text time timestamp tinyint varchar varchar2 varying void"],f,f) -q=A.a(i,"'",i,i,h,A.b([A.a(i,"''",i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i)],g),i,"'",i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i) -p=A.a(i,'"',i,i,h,A.b([A.a(i,'""',i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i)],g),i,'"',i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i) -o=A.a(i,"`",i,i,h,i,i,"`",i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i) -n=$.bw() -m=$.b_() -l=A.a(i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,j,i,i,i,i,i,i,i,i,i) -k=$.ch() -return A.a(i,i,i,!0,i,A.b([A.a(i,i,"begin end start commit rollback savepoint lock alter create drop rename call delete do handler insert load replace select truncate update set show pragma grant merge describe use explain help declare prepare execute deallocate release unlock purge reset change stop analyze cache flush optimize repair kill install uninstall checksum restore check backup revoke comment values with",i,i,A.b([q,p,o,n,m,l,k],g),i,";",i,i,!0,i,i,i,f,"[\\w\\.]+",i,i,i,i,i,i,i,i,i,i),m,A.a(i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,j,i,i,i,i,i,i,i,i,i),k],g),i,i,i,i,i,i,i,"[<>{}*]",i,i,i,e,i,i,i,i,i,i,i,i)}) -s($,"bfm","aUj",()=>{var q="doctag",p="(?:TODO|FIXME|NOTE|BUG|XXX):",o=null,n=t.N,m=A.b(["stanfuncs"],t.s),l=A.l(["title","functions model data parameters quantities transformed generated","keyword","for in if else while break continue return int real vector ordered positive_ordered simplex unit_vector row_vector matrix cholesky_factor_corr|10 cholesky_factor_cov|10 corr_matrix|10 cov_matrix|10 void print reject increment_log_prob|10 integrate_ode|10 integrate_ode_rk45|10 integrate_ode_bdf|10 algebra_solver","built_in","Phi Phi_approx abs acos acosh algebra_solver append_array append_col append_row asin asinh atan atan2 atanh bernoulli_cdf bernoulli_lccdf bernoulli_lcdf bernoulli_logit_lpmf bernoulli_logit_rng bernoulli_lpmf bernoulli_rng bessel_first_kind bessel_second_kind beta_binomial_cdf beta_binomial_lccdf beta_binomial_lcdf beta_binomial_lpmf beta_binomial_rng beta_cdf beta_lccdf beta_lcdf beta_lpdf beta_rng binary_log_loss binomial_cdf binomial_coefficient_log binomial_lccdf binomial_lcdf binomial_logit_lpmf binomial_lpmf binomial_rng block categorical_logit_lpmf categorical_logit_rng categorical_lpmf categorical_rng cauchy_cdf cauchy_lccdf cauchy_lcdf cauchy_lpdf cauchy_rng cbrt ceil chi_square_cdf chi_square_lccdf chi_square_lcdf chi_square_lpdf chi_square_rng cholesky_decompose choose col cols columns_dot_product columns_dot_self cos cosh cov_exp_quad crossprod csr_extract_u csr_extract_v csr_extract_w csr_matrix_times_vector csr_to_dense_matrix cumulative_sum determinant diag_matrix diag_post_multiply diag_pre_multiply diagonal digamma dims dirichlet_lpdf dirichlet_rng distance dot_product dot_self double_exponential_cdf double_exponential_lccdf double_exponential_lcdf double_exponential_lpdf double_exponential_rng e eigenvalues_sym eigenvectors_sym erf erfc exp exp2 exp_mod_normal_cdf exp_mod_normal_lccdf exp_mod_normal_lcdf exp_mod_normal_lpdf exp_mod_normal_rng expm1 exponential_cdf exponential_lccdf exponential_lcdf exponential_lpdf exponential_rng fabs falling_factorial fdim floor fma fmax fmin fmod frechet_cdf frechet_lccdf frechet_lcdf frechet_lpdf frechet_rng gamma_cdf gamma_lccdf gamma_lcdf gamma_lpdf gamma_p gamma_q gamma_rng gaussian_dlm_obs_lpdf get_lp gumbel_cdf gumbel_lccdf gumbel_lcdf gumbel_lpdf gumbel_rng head hypergeometric_lpmf hypergeometric_rng hypot inc_beta int_step integrate_ode integrate_ode_bdf integrate_ode_rk45 inv inv_Phi inv_chi_square_cdf inv_chi_square_lccdf inv_chi_square_lcdf inv_chi_square_lpdf inv_chi_square_rng inv_cloglog inv_gamma_cdf inv_gamma_lccdf inv_gamma_lcdf inv_gamma_lpdf inv_gamma_rng inv_logit inv_sqrt inv_square inv_wishart_lpdf inv_wishart_rng inverse inverse_spd is_inf is_nan lbeta lchoose lgamma lkj_corr_cholesky_lpdf lkj_corr_cholesky_rng lkj_corr_lpdf lkj_corr_rng lmgamma lmultiply log log10 log1m log1m_exp log1m_inv_logit log1p log1p_exp log2 log_determinant log_diff_exp log_falling_factorial log_inv_logit log_mix log_rising_factorial log_softmax log_sum_exp logistic_cdf logistic_lccdf logistic_lcdf logistic_lpdf logistic_rng logit lognormal_cdf lognormal_lccdf lognormal_lcdf lognormal_lpdf lognormal_rng machine_precision matrix_exp max mdivide_left_spd mdivide_left_tri_low mdivide_right_spd mdivide_right_tri_low mean min modified_bessel_first_kind modified_bessel_second_kind multi_gp_cholesky_lpdf multi_gp_lpdf multi_normal_cholesky_lpdf multi_normal_cholesky_rng multi_normal_lpdf multi_normal_prec_lpdf multi_normal_rng multi_student_t_lpdf multi_student_t_rng multinomial_lpmf multinomial_rng multiply_log multiply_lower_tri_self_transpose neg_binomial_2_cdf neg_binomial_2_lccdf neg_binomial_2_lcdf neg_binomial_2_log_lpmf neg_binomial_2_log_rng neg_binomial_2_lpmf neg_binomial_2_rng neg_binomial_cdf neg_binomial_lccdf neg_binomial_lcdf neg_binomial_lpmf neg_binomial_rng negative_infinity normal_cdf normal_lccdf normal_lcdf normal_lpdf normal_rng not_a_number num_elements ordered_logistic_lpmf ordered_logistic_rng owens_t pareto_cdf pareto_lccdf pareto_lcdf pareto_lpdf pareto_rng pareto_type_2_cdf pareto_type_2_lccdf pareto_type_2_lcdf pareto_type_2_lpdf pareto_type_2_rng pi poisson_cdf poisson_lccdf poisson_lcdf poisson_log_lpmf poisson_log_rng poisson_lpmf poisson_rng positive_infinity pow print prod qr_Q qr_R quad_form quad_form_diag quad_form_sym rank rayleigh_cdf rayleigh_lccdf rayleigh_lcdf rayleigh_lpdf rayleigh_rng reject rep_array rep_matrix rep_row_vector rep_vector rising_factorial round row rows rows_dot_product rows_dot_self scaled_inv_chi_square_cdf scaled_inv_chi_square_lccdf scaled_inv_chi_square_lcdf scaled_inv_chi_square_lpdf scaled_inv_chi_square_rng sd segment sin singular_values sinh size skew_normal_cdf skew_normal_lccdf skew_normal_lcdf skew_normal_lpdf skew_normal_rng softmax sort_asc sort_desc sort_indices_asc sort_indices_desc sqrt sqrt2 square squared_distance step student_t_cdf student_t_lccdf student_t_lcdf student_t_lpdf student_t_rng sub_col sub_row sum tail tan tanh target tcrossprod tgamma to_array_1d to_array_2d to_matrix to_row_vector to_vector trace trace_gen_quad_form trace_quad_form trigamma trunc uniform_cdf uniform_lccdf uniform_lcdf uniform_lpdf uniform_rng variance von_mises_lpdf von_mises_rng weibull_cdf weibull_lccdf weibull_lcdf weibull_lpdf weibull_rng wiener_lpdf wishart_lpdf wishart_rng"],n,n),k=$.ba(),j=$.aq(),i=t._ -return A.a(m,o,o,o,o,A.b([k,A.a(o,"#",o,o,"comment",A.b([j,A.a(o,p,o,o,q,o,o,o,o,o,o,o,o,o,o,o,o,o,0,o,o,o,o,o,o,o)],i),o,"$",o,o,o,o,o,o,A.l(["meta-keyword","include"],n,n),o,o,o,0,o,o,o,o,o,o,o),A.a(o,"\\/\\*",o,o,"comment",A.b([A.a(o,"@(return|param)",o,o,q,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o),j,A.a(o,p,o,o,q,o,o,o,o,o,o,o,o,o,o,o,o,o,0,o,o,o,o,o,o,o)],i),o,"\\*\\/",o,o,o,o,o,o,o,o,o,o,0,o,o,o,o,o,o,o),A.a(o,"<\\s*lower\\s*=",o,o,o,o,o,o,o,o,o,o,o,o,"lower",o,o,o,o,o,o,o,o,o,o,o),A.a(o,"[<,]*upper\\s*=",o,o,o,o,o,o,o,o,o,o,o,o,"upper",o,o,o,o,o,o,o,o,o,o,o),A.a(o,"\\btarget\\s*\\+=",o,o,"keyword",o,o,o,o,o,o,o,o,o,o,o,o,o,10,o,o,o,o,o,o,o),A.a(o,"\\x7e\\s*([a-zA-Z]\\w*)\\s*\\(",o,o,o,o,o,o,o,o,o,o,o,o,"bernoulli bernoulli_logit beta beta_binomial binomial binomial_logit categorical categorical_logit cauchy chi_square dirichlet double_exponential exp_mod_normal exponential frechet gamma gaussian_dlm_obs gumbel hypergeometric inv_chi_square inv_gamma inv_wishart lkj_corr lkj_corr_cholesky logistic lognormal multi_gp multi_gp_cholesky multi_normal multi_normal_cholesky multi_normal_prec multi_student_t multinomial neg_binomial neg_binomial_2 neg_binomial_2_log normal ordered_logistic pareto pareto_type_2 poisson poisson_log rayleigh scaled_inv_chi_square skew_normal student_t uniform von_mises weibull wiener wishart",o,o,o,o,o,o,o,o,o,o,o),A.a(o,o,o,o,"number",o,o,o,o,o,o,o,o,o,o,o,o,o,0,o,o,o,o,o,o,A.b([A.a(o,"\\b\\d+(?:\\.\\d*)?(?:[eE][+-]?\\d+)?",o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o),A.a(o,"\\.\\d+(?:[eE][+-]?\\d+)?\\b",o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o)],i)),A.a(o,'"',o,o,"string",o,o,'"',o,o,o,o,o,o,o,o,o,o,0,o,o,o,o,o,o,o)],i),o,o,o,o,o,o,o,o,l,"[a-zA-Z]\\w*",o,A.m(n,t.n),o,o,o,o,o,o,o,o)}) -s($,"bfn","aUk",()=>{var q=null,p=t._ -return A.a(A.b(["do","ado"],t.s),q,q,!0,q,A.b([A.a(q,"`[a-zA-Z0-9_]+'",q,q,"symbol",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\$\\{?[a-zA-Z0-9_]+\\}?",q,q,"variable",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,q,q,q,"string",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,A.b([A.a(q,'`"[^\r\n]*?"\'',q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,'"[^\r\n"]*"',q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],p)),A.a(q,q,q,q,"built_in",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,A.b([A.a(q,"\\b(abs|acos|asin|atan|atan2|atanh|ceil|cloglog|comb|cos|digamma|exp|floor|invcloglog|invlogit|ln|lnfact|lnfactorial|lngamma|log|log10|max|min|mod|reldif|round|sign|sin|sqrt|sum|tan|tanh|trigamma|trunc|betaden|Binomial|binorm|binormal|chi2|chi2tail|dgammapda|dgammapdada|dgammapdadx|dgammapdx|dgammapdxdx|F|Fden|Ftail|gammaden|gammap|ibeta|invbinomial|invchi2|invchi2tail|invF|invFtail|invgammap|invibeta|invnchi2|invnFtail|invnibeta|invnorm|invnormal|invttail|nbetaden|nchi2|nFden|nFtail|nibeta|norm|normal|normalden|normd|npnchi2|tden|ttail|uniform|abbrev|char|index|indexnot|length|lower|ltrim|match|plural|proper|real|regexm|regexr|regexs|reverse|rtrim|string|strlen|strlower|strltrim|strmatch|strofreal|strpos|strproper|strreverse|strrtrim|strtrim|strupper|subinstr|subinword|substr|trim|upper|word|wordcount|_caller|autocode|byteorder|chop|clip|cond|e|epsdouble|epsfloat|group|inlist|inrange|irecode|matrix|maxbyte|maxdouble|maxfloat|maxint|maxlong|mi|minbyte|mindouble|minfloat|minint|minlong|missing|r|recode|replay|return|s|scalar|d|date|day|dow|doy|halfyear|mdy|month|quarter|week|year|d|daily|dofd|dofh|dofm|dofq|dofw|dofy|h|halfyearly|hofd|m|mofd|monthly|q|qofd|quarterly|tin|twithin|w|weekly|wofd|y|yearly|yh|ym|yofd|yq|yw|cholesky|colnumb|colsof|corr|det|diag|diag0cnt|el|get|hadamard|I|inv|invsym|issym|issymmetric|J|matmissing|matuniform|mreldif|nullmat|rownumb|rowsof|sweep|syminv|trace|vec|vecdiag)(?=\\()",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],p)),A.a(q,"^[ \t]*\\*.*$",q,q,"comment",A.b([$.aq(),A.a(q,"(?:TODO|FIXME|NOTE|BUG|XXX):",q,q,"doctag",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q)],p),q,"false",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),$.ba(),$.b_()],p),q,q,q,q,q,q,q,q,"if else in foreach for forv forva forval forvalu forvalue forvalues by bys bysort xi quietly qui capture about ac ac_7 acprplot acprplot_7 adjust ado adopath adoupdate alpha ameans an ano anov anova anova_estat anova_terms anovadef aorder ap app appe appen append arch arch_dr arch_estat arch_p archlm areg areg_p args arima arima_dr arima_estat arima_p as asmprobit asmprobit_estat asmprobit_lf asmprobit_mfx__dlg asmprobit_p ass asse asser assert avplot avplot_7 avplots avplots_7 bcskew0 bgodfrey bias binreg bip0_lf biplot bipp_lf bipr_lf bipr_p biprobit bitest bitesti bitowt blogit bmemsize boot bootsamp bootstrap bootstrap_8 boxco_l boxco_p boxcox boxcox_6 boxcox_p bprobit br break brier bro brow brows browse brr brrstat bs bs_7 bsampl_w bsample bsample_7 bsqreg bstat bstat_7 bstat_8 bstrap bstrap_7 bubble bubbleplot ca ca_estat ca_p cabiplot camat canon canon_8 canon_8_p canon_estat canon_p cap caprojection capt captu captur capture cat cc cchart cchart_7 cci cd censobs_table centile cf char chdir checkdlgfiles checkestimationsample checkhlpfiles checksum chelp ci cii cl class classutil clear cli clis clist clo clog clog_lf clog_p clogi clogi_sw clogit clogit_lf clogit_p clogitp clogl_sw cloglog clonevar clslistarray cluster cluster_measures cluster_stop cluster_tree cluster_tree_8 clustermat cmdlog cnr cnre cnreg cnreg_p cnreg_sw cnsreg codebook collaps4 collapse colormult_nb colormult_nw compare compress conf confi confir confirm conren cons const constr constra constrai constrain constraint continue contract copy copyright copysource cor corc corr corr2data corr_anti corr_kmo corr_smc corre correl correla correlat correlate corrgram cou coun count cox cox_p cox_sw coxbase coxhaz coxvar cprplot cprplot_7 crc cret cretu cretur creturn cross cs cscript cscript_log csi ct ct_is ctset ctst_5 ctst_st cttost cumsp cumsp_7 cumul cusum cusum_7 cutil d|0 datasig datasign datasigna datasignat datasignatu datasignatur datasignature datetof db dbeta de dec deco decod decode deff des desc descr descri describ describe destring dfbeta dfgls dfuller di di_g dir dirstats dis discard disp disp_res disp_s displ displa display distinct do doe doed doedi doedit dotplot dotplot_7 dprobit drawnorm drop ds ds_util dstdize duplicates durbina dwstat dydx e|0 ed edi edit egen eivreg emdef en enc enco encod encode eq erase ereg ereg_lf ereg_p ereg_sw ereghet ereghet_glf ereghet_glf_sh ereghet_gp ereghet_ilf ereghet_ilf_sh ereghet_ip eret eretu eretur ereturn err erro error esize est est_cfexist est_cfname est_clickable est_expand est_hold est_table est_unhold est_unholdok estat estat_default estat_summ estat_vce_only esti estimates etodow etof etomdy ex exi exit expand expandcl fac fact facto factor factor_estat factor_p factor_pca_rotated factor_rotate factormat fcast fcast_compute fcast_graph fdades fdadesc fdadescr fdadescri fdadescrib fdadescribe fdasav fdasave fdause fh_st file open file read file close file filefilter fillin find_hlp_file findfile findit findit_7 fit fl fli flis flist for5_0 forest forestplot form forma format fpredict frac_154 frac_adj frac_chk frac_cox frac_ddp frac_dis frac_dv frac_in frac_mun frac_pp frac_pq frac_pv frac_wgt frac_xo fracgen fracplot fracplot_7 fracpoly fracpred fron_ex fron_hn fron_p fron_tn fron_tn2 frontier ftodate ftoe ftomdy ftowdate funnel funnelplot g|0 gamhet_glf gamhet_gp gamhet_ilf gamhet_ip gamma gamma_d2 gamma_p gamma_sw gammahet gdi_hexagon gdi_spokes ge gen gene gener genera generat generate genrank genstd genvmean gettoken gl gladder gladder_7 glim_l01 glim_l02 glim_l03 glim_l04 glim_l05 glim_l06 glim_l07 glim_l08 glim_l09 glim_l10 glim_l11 glim_l12 glim_lf glim_mu glim_nw1 glim_nw2 glim_nw3 glim_p glim_v1 glim_v2 glim_v3 glim_v4 glim_v5 glim_v6 glim_v7 glm glm_6 glm_p glm_sw glmpred glo glob globa global glogit glogit_8 glogit_p gmeans gnbre_lf gnbreg gnbreg_5 gnbreg_p gomp_lf gompe_sw gomper_p gompertz gompertzhet gomphet_glf gomphet_glf_sh gomphet_gp gomphet_ilf gomphet_ilf_sh gomphet_ip gphdot gphpen gphprint gprefs gprobi_p gprobit gprobit_8 gr gr7 gr_copy gr_current gr_db gr_describe gr_dir gr_draw gr_draw_replay gr_drop gr_edit gr_editviewopts gr_example gr_example2 gr_export gr_print gr_qscheme gr_query gr_read gr_rename gr_replay gr_save gr_set gr_setscheme gr_table gr_undo gr_use graph graph7 grebar greigen greigen_7 greigen_8 grmeanby grmeanby_7 gs_fileinfo gs_filetype gs_graphinfo gs_stat gsort gwood h|0 hadimvo hareg hausman haver he heck_d2 heckma_p heckman heckp_lf heckpr_p heckprob hel help hereg hetpr_lf hetpr_p hetprob hettest hexdump hilite hist hist_7 histogram hlogit hlu hmeans hotel hotelling hprobit hreg hsearch icd9 icd9_ff icd9p iis impute imtest inbase include inf infi infil infile infix inp inpu input ins insheet insp inspe inspec inspect integ inten intreg intreg_7 intreg_p intrg2_ll intrg_ll intrg_ll2 ipolate iqreg ir irf irf_create irfm iri is_svy is_svysum isid istdize ivprob_1_lf ivprob_lf ivprobit ivprobit_p ivreg ivreg_footnote ivtob_1_lf ivtob_lf ivtobit ivtobit_p jackknife jacknife jknife jknife_6 jknife_8 jkstat joinby kalarma1 kap kap_3 kapmeier kappa kapwgt kdensity kdensity_7 keep ksm ksmirnov ktau kwallis l|0 la lab labbe labbeplot labe label labelbook ladder levels levelsof leverage lfit lfit_p li lincom line linktest lis list lloghet_glf lloghet_glf_sh lloghet_gp lloghet_ilf lloghet_ilf_sh lloghet_ip llogi_sw llogis_p llogist llogistic llogistichet lnorm_lf lnorm_sw lnorma_p lnormal lnormalhet lnormhet_glf lnormhet_glf_sh lnormhet_gp lnormhet_ilf lnormhet_ilf_sh lnormhet_ip lnskew0 loadingplot loc loca local log logi logis_lf logistic logistic_p logit logit_estat logit_p loglogs logrank loneway lookfor lookup lowess lowess_7 lpredict lrecomp lroc lroc_7 lrtest ls lsens lsens_7 lsens_x lstat ltable ltable_7 ltriang lv lvr2plot lvr2plot_7 m|0 ma mac macr macro makecns man manova manova_estat manova_p manovatest mantel mark markin markout marksample mat mat_capp mat_order mat_put_rr mat_rapp mata mata_clear mata_describe mata_drop mata_matdescribe mata_matsave mata_matuse mata_memory mata_mlib mata_mosave mata_rename mata_which matalabel matcproc matlist matname matr matri matrix matrix_input__dlg matstrik mcc mcci md0_ md1_ md1debug_ md2_ md2debug_ mds mds_estat mds_p mdsconfig mdslong mdsmat mdsshepard mdytoe mdytof me_derd mean means median memory memsize menl meqparse mer merg merge meta mfp mfx mhelp mhodds minbound mixed_ll mixed_ll_reparm mkassert mkdir mkmat mkspline ml ml_5 ml_adjs ml_bhhhs ml_c_d ml_check ml_clear ml_cnt ml_debug ml_defd ml_e0 ml_e0_bfgs ml_e0_cycle ml_e0_dfp ml_e0i ml_e1 ml_e1_bfgs ml_e1_bhhh ml_e1_cycle ml_e1_dfp ml_e2 ml_e2_cycle ml_ebfg0 ml_ebfr0 ml_ebfr1 ml_ebh0q ml_ebhh0 ml_ebhr0 ml_ebr0i ml_ecr0i ml_edfp0 ml_edfr0 ml_edfr1 ml_edr0i ml_eds ml_eer0i ml_egr0i ml_elf ml_elf_bfgs ml_elf_bhhh ml_elf_cycle ml_elf_dfp ml_elfi ml_elfs ml_enr0i ml_enrr0 ml_erdu0 ml_erdu0_bfgs ml_erdu0_bhhh ml_erdu0_bhhhq ml_erdu0_cycle ml_erdu0_dfp ml_erdu0_nrbfgs ml_exde ml_footnote ml_geqnr ml_grad0 ml_graph ml_hbhhh ml_hd0 ml_hold ml_init ml_inv ml_log ml_max ml_mlout ml_mlout_8 ml_model ml_nb0 ml_opt ml_p ml_plot ml_query ml_rdgrd ml_repor ml_s_e ml_score ml_searc ml_technique ml_unhold mleval mlf_ mlmatbysum mlmatsum mlog mlogi mlogit mlogit_footnote mlogit_p mlopts mlsum mlvecsum mnl0_ mor more mov move mprobit mprobit_lf mprobit_p mrdu0_ mrdu1_ mvdecode mvencode mvreg mvreg_estat n|0 nbreg nbreg_al nbreg_lf nbreg_p nbreg_sw nestreg net newey newey_7 newey_p news nl nl_7 nl_9 nl_9_p nl_p nl_p_7 nlcom nlcom_p nlexp2 nlexp2_7 nlexp2a nlexp2a_7 nlexp3 nlexp3_7 nlgom3 nlgom3_7 nlgom4 nlgom4_7 nlinit nllog3 nllog3_7 nllog4 nllog4_7 nlog_rd nlogit nlogit_p nlogitgen nlogittree nlpred no nobreak noi nois noisi noisil noisily note notes notes_dlg nptrend numlabel numlist odbc old_ver olo olog ologi ologi_sw ologit ologit_p ologitp on one onew onewa oneway op_colnm op_comp op_diff op_inv op_str opr opro oprob oprob_sw oprobi oprobi_p oprobit oprobitp opts_exclusive order orthog orthpoly ou out outf outfi outfil outfile outs outsh outshe outshee outsheet ovtest pac pac_7 palette parse parse_dissim pause pca pca_8 pca_display pca_estat pca_p pca_rotate pcamat pchart pchart_7 pchi pchi_7 pcorr pctile pentium pergram pergram_7 permute permute_8 personal peto_st pkcollapse pkcross pkequiv pkexamine pkexamine_7 pkshape pksumm pksumm_7 pl plo plot plugin pnorm pnorm_7 poisgof poiss_lf poiss_sw poisso_p poisson poisson_estat post postclose postfile postutil pperron pr prais prais_e prais_e2 prais_p predict predictnl preserve print pro prob probi probit probit_estat probit_p proc_time procoverlay procrustes procrustes_estat procrustes_p profiler prog progr progra program prop proportion prtest prtesti pwcorr pwd q\\s qby qbys qchi qchi_7 qladder qladder_7 qnorm qnorm_7 qqplot qqplot_7 qreg qreg_c qreg_p qreg_sw qu quadchk quantile quantile_7 que quer query range ranksum ratio rchart rchart_7 rcof recast reclink recode reg reg3 reg3_p regdw regr regre regre_p2 regres regres_p regress regress_estat regriv_p remap ren rena renam rename renpfix repeat replace report reshape restore ret retu retur return rm rmdir robvar roccomp roccomp_7 roccomp_8 rocf_lf rocfit rocfit_8 rocgold rocplot rocplot_7 roctab roctab_7 rolling rologit rologit_p rot rota rotat rotate rotatemat rreg rreg_p ru run runtest rvfplot rvfplot_7 rvpplot rvpplot_7 sa safesum sample sampsi sav save savedresults saveold sc sca scal scala scalar scatter scm_mine sco scob_lf scob_p scobi_sw scobit scor score scoreplot scoreplot_help scree screeplot screeplot_help sdtest sdtesti se search separate seperate serrbar serrbar_7 serset set set_defaults sfrancia sh she shel shell shewhart shewhart_7 signestimationsample signrank signtest simul simul_7 simulate simulate_8 sktest sleep slogit slogit_d2 slogit_p smooth snapspan so sor sort spearman spikeplot spikeplot_7 spikeplt spline_x split sqreg sqreg_p sret sretu sretur sreturn ssc st st_ct st_hc st_hcd st_hcd_sh st_is st_issys st_note st_promo st_set st_show st_smpl st_subid stack statsby statsby_8 stbase stci stci_7 stcox stcox_estat stcox_fr stcox_fr_ll stcox_p stcox_sw stcoxkm stcoxkm_7 stcstat stcurv stcurve stcurve_7 stdes stem stepwise stereg stfill stgen stir stjoin stmc stmh stphplot stphplot_7 stphtest stphtest_7 stptime strate strate_7 streg streg_sw streset sts sts_7 stset stsplit stsum sttocc sttoct stvary stweib su suest suest_8 sum summ summa summar summari summariz summarize sunflower sureg survcurv survsum svar svar_p svmat svy svy_disp svy_dreg svy_est svy_est_7 svy_estat svy_get svy_gnbreg_p svy_head svy_header svy_heckman_p svy_heckprob_p svy_intreg_p svy_ivreg_p svy_logistic_p svy_logit_p svy_mlogit_p svy_nbreg_p svy_ologit_p svy_oprobit_p svy_poisson_p svy_probit_p svy_regress_p svy_sub svy_sub_7 svy_x svy_x_7 svy_x_p svydes svydes_8 svygen svygnbreg svyheckman svyheckprob svyintreg svyintreg_7 svyintrg svyivreg svylc svylog_p svylogit svymarkout svymarkout_8 svymean svymlog svymlogit svynbreg svyolog svyologit svyoprob svyoprobit svyopts svypois svypois_7 svypoisson svyprobit svyprobt svyprop svyprop_7 svyratio svyreg svyreg_p svyregress svyset svyset_7 svyset_8 svytab svytab_7 svytest svytotal sw sw_8 swcnreg swcox swereg swilk swlogis swlogit swologit swoprbt swpois swprobit swqreg swtobit swweib symmetry symmi symplot symplot_7 syntax sysdescribe sysdir sysuse szroeter ta tab tab1 tab2 tab_or tabd tabdi tabdis tabdisp tabi table tabodds tabodds_7 tabstat tabu tabul tabula tabulat tabulate te tempfile tempname tempvar tes test testnl testparm teststd tetrachoric time_it timer tis tob tobi tobit tobit_p tobit_sw token tokeni tokeniz tokenize tostring total translate translator transmap treat_ll treatr_p treatreg trim trimfill trnb_cons trnb_mean trpoiss_d2 trunc_ll truncr_p truncreg tsappend tset tsfill tsline tsline_ex tsreport tsrevar tsrline tsset tssmooth tsunab ttest ttesti tut_chk tut_wait tutorial tw tware_st two twoway twoway__fpfit_serset twoway__function_gen twoway__histogram_gen twoway__ipoint_serset twoway__ipoints_serset twoway__kdensity_gen twoway__lfit_serset twoway__normgen_gen twoway__pci_serset twoway__qfit_serset twoway__scatteri_serset twoway__sunflower_gen twoway_ksm_serset ty typ type typeof u|0 unab unabbrev unabcmd update us use uselabel var var_mkcompanion var_p varbasic varfcast vargranger varirf varirf_add varirf_cgraph varirf_create varirf_ctable varirf_describe varirf_dir varirf_drop varirf_erase varirf_graph varirf_ograph varirf_rename varirf_set varirf_table varlist varlmar varnorm varsoc varstable varstable_w varstable_w2 varwle vce vec vec_fevd vec_mkphi vec_p vec_p_w vecirf_create veclmar veclmar_w vecnorm vecnorm_w vecrank vecstable verinst vers versi versio version view viewsource vif vwls wdatetof webdescribe webseek webuse weib1_lf weib2_lf weib_lf weib_lf0 weibhet_glf weibhet_glf_sh weibhet_glfa weibhet_glfa_sh weibhet_gp weibhet_ilf weibhet_ilf_sh weibhet_ilfa weibhet_ilfa_sh weibhet_ip weibu_sw weibul_p weibull weibull_c weibull_s weibullhet wh whelp whi which whil while wilc_st wilcoxon win wind windo window winexec wntestb wntestb_7 wntestq xchart xchart_7 xcorr xcorr_7 xi xi_6 xmlsav xmlsave xmluse xpose xsh xshe xshel xshell xt_iis xt_tis xtab_p xtabond xtbin_p xtclog xtcloglog xtcloglog_8 xtcloglog_d2 xtcloglog_pa_p xtcloglog_re_p xtcnt_p xtcorr xtdata xtdes xtfront_p xtfrontier xtgee xtgee_elink xtgee_estat xtgee_makeivar xtgee_p xtgee_plink xtgls xtgls_p xthaus xthausman xtht_p xthtaylor xtile xtint_p xtintreg xtintreg_8 xtintreg_d2 xtintreg_p xtivp_1 xtivp_2 xtivreg xtline xtline_ex xtlogit xtlogit_8 xtlogit_d2 xtlogit_fe_p xtlogit_pa_p xtlogit_re_p xtmixed xtmixed_estat xtmixed_p xtnb_fe xtnb_lf xtnbreg xtnbreg_pa_p xtnbreg_refe_p xtpcse xtpcse_p xtpois xtpoisson xtpoisson_d2 xtpoisson_pa_p xtpoisson_refe_p xtpred xtprobit xtprobit_8 xtprobit_d2 xtprobit_re_p xtps_fe xtps_lf xtps_ren xtps_ren_8 xtrar_p xtrc xtrc_p xtrchh xtrefe_p xtreg xtreg_be xtreg_fe xtreg_ml xtreg_pa_p xtreg_re xtregar xtrere_p xtset xtsf_ll xtsf_llti xtsum xttab xttest0 xttobit xttobit_8 xttobit_p xttrans yx yxview__barlike_draw yxview_area_draw yxview_bar_draw yxview_dot_draw yxview_dropline_draw yxview_function_draw yxview_iarrow_draw yxview_ilabels_draw yxview_normal_draw yxview_pcarrow_draw yxview_pcbarrow_draw yxview_pccapsym_draw yxview_pcscatter_draw yxview_pcspike_draw yxview_rarea_draw yxview_rbar_draw yxview_rbarm_draw yxview_rcap_draw yxview_rcapsym_draw yxview_rconnected_draw yxview_rline_draw yxview_rscatter_draw yxview_rspike_draw yxview_spike_draw yxview_sunflower_draw zap_s zinb zinb_llf zinb_plf zip zip_llf zip_p zip_plf zt_ct_5 zt_hc_5 zt_hcd_5 zt_is_5 zt_iss_5 zt_sho_5 zt_smp_5 ztbase_5 ztcox_5 ztdes_5 ztereg_5 ztfill_5 ztgen_5 ztir_5 ztjoin_5 ztnb ztnb_p ztp ztp_p zts_5 ztset_5 ztspli_5 ztsum_5 zttoct_5 ztvary_5 ztweib_5",q,q,A.m(t.N,t.n),q,q,q,q,q,q,q,q)}) -s($,"bfo","aUl",()=>{var q=null,p="string",o=t.N,n=A.b(["p21","step","stp"],t.s),m=A.l(["keyword","HEADER ENDSEC DATA"],o,o),l=A.a(q,"ISO-10303-21;",q,q,"meta",q,q,q,q,q,q,q,q,q,q,q,q,q,10,q,q,q,q,q,q,q),k=A.a(q,"END-ISO-10303-21;",q,q,"meta",q,q,q,q,q,q,q,q,q,q,q,q,q,10,q,q,q,q,q,q,q),j=$.ba(),i=$.b_(),h=t._,g=A.a(q,"/\\*\\*!",q,q,"comment",A.b([$.aq(),A.a(q,"(?:TODO|FIXME|NOTE|BUG|XXX):",q,q,"doctag",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q)],h),q,"\\*/",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),f=$.bw(),e=$.aZ() -return A.a(n,q,q,!0,q,A.b([l,k,j,i,g,f,A.a(q,"'",q,q,p,A.b([e],h),q,"'",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,'"',q,q,p,A.b([e],h),q,'"',q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"'",q,q,p,q,q,"'",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,q,q,q,"symbol",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,A.b([A.a(q,"#",q,q,q,q,q,"\\d+",q,q,q,q,q,"\\W",q,q,q,q,q,q,q,q,q,q,q,q)],h))],h),q,q,q,q,q,q,q,q,m,"[A-Z_][A-Z0-9_.]*",q,A.m(o,t.n),q,q,q,q,q,q,q,q)}) -s($,"bfp","aUm",()=>{var q="~contains~4",p=null,o="~contains~10",n=A.l(["~contains~4",A.a(p,"#([a-fA-F0-9]{6}|[a-fA-F0-9]{3})",p,p,"number",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),"~contains~10",A.a(p,"\\$[a-zA-Z]\\w*",p,p,"variable",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p)],t.N,t.n),m=A.b(["styl"],t.s),l=$.aM(),k=$.c0(),j=$.ba(),i=$.b_(),h=A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,q,p,p,p,p,p,p,p,p,p),g=A.a(p,"\\.[a-zA-Z][a-zA-Z0-9_-]*(?=[\\.\\s\\n\\[\\:,])",p,p,"selector-class",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),f=A.a(p,"\\#[a-zA-Z][a-zA-Z0-9_-]*(?=[\\.\\s\\n\\[\\:,])",p,p,"selector-id",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),e=A.a(p,"\\b(a|abbr|address|article|aside|audio|b|blockquote|body|button|canvas|caption|cite|code|dd|del|details|dfn|div|dl|dt|em|fieldset|figcaption|figure|footer|form|h1|h2|h3|h4|h5|h6|header|hgroup|html|i|iframe|img|input|ins|kbd|label|legend|li|mark|menu|nav|object|ol|p|q|quote|samp|section|span|strong|summary|sup|table|tbody|td|textarea|tfoot|th|thead|time|tr|ul|var|video)(?=[\\.\\s\\n\\[\\:,])",p,p,"selector-tag",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),d=A.a(p,"&?:?:\\b(after|before|first-letter|first-line|active|first-child|focus|hover|lang|link|visited)(?=[\\.\\s\\n\\[\\:,])",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),c=A.a(p,"@(charset|css|debug|extend|font-face|for|import|include|media|mixin|page|warn|while)\\b",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),b=A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,o,p,p,p,p,p,p,p,p,p),a=$.a3s(),a0=$.dB(),a1=t._ -return A.a(m,p,p,!1,p,A.b([l,k,j,i,h,g,f,e,d,c,b,a,a0,A.a(p,"^[a-zA-Z][a-zA-Z0-9_-]*\\(.*\\)",p,p,"function",A.b([A.a(p,"\\b[a-zA-Z][a-zA-Z0-9_-]*",p,p,"title",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"\\(",p,p,"params",A.b([A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,q,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,o,p,p,p,p,p,p,p,p,p),k,a,a0,l],a1),p,"\\)",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p)],a1),p,p,p,p,p,p,p,"[\\n]",p,p,p,p,p,!0,p,p,p,p,p,p),A.a(p,"\\b(z-index|word-wrap|word-spacing|word-break|width|widows|white-space|visibility|vertical-align|unicode-bidi|transition-timing-function|transition-property|transition-duration|transition-delay|transition|transform-style|transform-origin|transform|top|text-underline-position|text-transform|text-shadow|text-rendering|text-overflow|text-indent|text-decoration-style|text-decoration-line|text-decoration-color|text-decoration|text-align-last|text-align|table-layout|tab-size|right|resize|quotes|position|pointer-events|perspective-origin|perspective|page-break-inside|page-break-before|page-break-after|padding-top|padding-right|padding-left|padding-bottom|padding|overflow-y|overflow-x|overflow-wrap|overflow|outline-width|outline-style|outline-offset|outline-color|outline|orphans|order|opacity|object-position|object-fit|normal|none|nav-up|nav-right|nav-left|nav-index|nav-down|min-width|min-height|max-width|max-height|mask|marks|margin-top|margin-right|margin-left|margin-bottom|margin|list-style-type|list-style-position|list-style-image|list-style|line-height|letter-spacing|left|justify-content|initial|inherit|ime-mode|image-resolution|image-rendering|image-orientation|icon|hyphens|height|font-weight|font-variant-ligatures|font-variant|font-style|font-stretch|font-size-adjust|font-size|font-language-override|font-kerning|font-feature-settings|font-family|font|float|flex-wrap|flex-shrink|flex-grow|flex-flow|flex-direction|flex-basis|flex|filter|empty-cells|display|direction|cursor|counter-reset|counter-increment|content|columns|column-width|column-span|column-rule-width|column-rule-style|column-rule-color|column-rule|column-gap|column-fill|column-count|color|clip-path|clip|clear|caption-side|break-inside|break-before|break-after|box-sizing|box-shadow|box-decoration-break|bottom|border-width|border-top-width|border-top-style|border-top-right-radius|border-top-left-radius|border-top-color|border-top|border-style|border-spacing|border-right-width|border-right-style|border-right-color|border-right|border-radius|border-left-width|border-left-style|border-left-color|border-left|border-image-width|border-image-source|border-image-slice|border-image-repeat|border-image-outset|border-image|border-color|border-collapse|border-bottom-width|border-bottom-style|border-bottom-right-radius|border-bottom-left-radius|border-bottom-color|border-bottom|border|background-size|background-repeat|background-position|background-origin|background-image|background-color|background-clip|background-attachment|background|backface-visibility|auto|animation-timing-function|animation-play-state|animation-name|animation-iteration-count|animation-fill-mode|animation-duration|animation-direction|animation-delay|animation|align-self|align-items|align-content)\\b",p,p,"attribute",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,A.a(p,p,p,p,p,A.b([A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,q,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,o,p,p,p,p,p,p,p,p,p),k,l,a,a0,i],a1),p,";|$",p,p,p,p,p,"\\.",p,p,p,p,0,p,p,p,p,p,p,p),p,p)],a1),p,p,p,p,p,p,p,"(\\?|(\\bReturn\\b)|(\\bEnd\\b)|(\\bend\\b)|(\\bdef\\b)|;|#\\s|\\*\\s|===\\s|\\||%)","if else for in",p,p,n,p,p,p,p,p,p,p,p)}) -s($,"bfq","aUn",()=>{var q="string",p=null,o=t._ -return A.a(p,p,p,!0,p,A.b([A.a(p,"\\[\n(multipart)?",p,p,q,p,p,"\\]\n",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"\\d{4}-\\d{2}-\\d{2}(\\s+)\\d{2}:\\d{2}:\\d{2}.\\d+Z",p,p,q,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"(\\+|-)\\d+",p,p,q,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,"keyword",p,p,p,p,p,p,p,p,p,p,p,p,p,10,p,p,p,p,p,p,A.b([A.a(p,"^(test|testing|success|successful|failure|error|skip|xfail|uxsuccess)(:?)\\s+(test)?",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"^progress(:?)(\\s+)?(pop|push)?",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"^tags:",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"^time:",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p)],o))],o),p,p,p,p,p,p,p,p,p,p,p,A.m(t.N,t.n),p,p,p,p,p,p,p,p)}) -s($,"bfr","aUo",()=>{var q,p,o,n,m,l,k,j="~contains~2",i=null,h="~contains~0~contains~1~contains~0",g="~contains~0",f="#available #colorLiteral #column #else #elseif #endif #file #fileLiteral #function #if #imageLiteral #line #selector #sourceLocation _ __COLUMN__ __FILE__ __FUNCTION__ __LINE__ Any as as! as? associatedtype associativity break case catch class continue convenience default defer deinit didSet do dynamic dynamicType else enum extension fallthrough false fileprivate final for func get guard if import in indirect infix init inout internal is lazy left let mutating nil none nonmutating open operator optional override postfix precedence prefix private protocol Protocol public repeat required rethrows return right self Self set static struct subscript super switch throw throws true try try! try? Type typealias unowned var weak where while willSet",e="abs advance alignof alignofValue anyGenerator assert assertionFailure bridgeFromObjectiveC bridgeFromObjectiveCUnconditional bridgeToObjectiveC bridgeToObjectiveCUnconditional c contains count countElements countLeadingZeros debugPrint debugPrintln distance dropFirst dropLast dump encodeBitsAsWords enumerate equal fatalError filter find getBridgedObjectiveCType getVaList indices insertionSort isBridgedToObjectiveC isBridgedVerbatimToObjectiveC isUniquelyReferenced isUniquelyReferencedNonObjC join lazy lexicographicalCompare map max maxElement min minElement numericCast overlaps partition posix precondition preconditionFailure print println quickSort readLine reduce reflect reinterpretCast reverse roundUpToAlignment sizeof sizeofValue sort split startsWith stride strideof strideofValue swap toString transcode underestimateCount unsafeAddressOf unsafeBitCast unsafeDowncast unsafeUnwrap unsafeReflect withExtendedLifetime withObjectAtPlusZero withUnsafePointer withUnsafePointerToObject withUnsafeMutablePointer withUnsafeMutablePointers withUnsafePointer withUnsafePointers withVaList zip",d=t._,c=A.a(i,"/\\*",i,i,"comment",A.b([A.a(i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,!0,i,i,i,i),$.aq(),A.a(i,"(?:TODO|FIXME|NOTE|BUG|XXX):",i,i,"doctag",i,i,i,i,i,i,i,i,i,i,i,i,i,0,i,i,i,i,i,i,i)],d),i,"\\*/",i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i),b=A.a(i,"\\b([\\d_]+(\\.[\\deE_]+)?|0x[a-fA-F0-9_]+(\\.[a-fA-F0-9p_]+)?|0b[01_]+|0o[0-7_]+)\\b",i,i,"number",i,i,i,i,i,i,i,i,i,i,i,i,i,0,i,i,i,i,i,i,i),a=$.aZ(),a0=t.N,a1=A.l(["keyword",f,"literal","true false nil","built_in",e],a0,a0) -a1=A.l(["~contains~2",c,h,b,"~contains~0",A.a(i,i,i,i,"string",A.b([a,A.a(i,"\\\\\\(",i,i,"subst",A.b([A.a(i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,h,i,i,i,i,i,i,i,i,i)],d),i,"\\)",i,i,i,i,i,i,a1,i,i,i,i,i,i,i,i,i,i,i)],d),i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,A.b([A.a(i,'"""',i,i,i,i,i,'"""',i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i),A.a(i,'"',i,i,i,i,i,'"',i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i)],d))],a0,t.n) -a=A.l(["keyword",f,"literal","true false nil","built_in",e],a0,a0) -b=A.a(i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,g,i,i,i,i,i,i,i,i,i) -c=$.ba() -q=A.a(i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,j,i,i,i,i,i,i,i,i,i) -p=A.a(i,"\\b[A-Z][\\w\xc0-\u02b8']*[!?]",i,i,"type",i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i) -o=A.a(i,"\\b[A-Z][\\w\xc0-\u02b8']*",i,i,"type",i,i,i,i,i,i,i,i,i,i,i,i,i,0,i,i,i,i,i,i,i) -n=A.a(i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,h,i,i,i,i,i,i,i,i,i) -m=A.a(i,"[A-Za-z$_][0-9A-Za-z$_]*",i,i,"title",i,i,i,i,i,i,i,i,i,i,i,i,i,0,i,i,i,i,i,i,i) -l=A.a(i,"<",i,i,i,i,i,">",i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i) -k=A.l(["keyword",f,"literal","true false nil","built_in",e],a0,a0) -k=A.a(i,i,"func",i,"function",A.b([m,l,A.a(i,"\\(",i,i,"params",A.b([A.a(i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,!0,i,i,i,i),A.a(i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,h,i,i,i,i,i,i,i,i,i),A.a(i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,g,i,i,i,i,i,i,i,i,i),$.b_(),A.a(i,":",i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i)],d),i,"\\)",i,!0,i,i,i,"[\"']",k,i,i,i,i,i,i,i,i,i,i,i)],d),i,"{",i,i,i,i,!0,"\\[|%",i,i,i,i,i,i,i,i,i,i,i,i) -a0=A.l(["keyword",f,"literal","true false nil","built_in",e],a0,a0) -return A.a(i,i,i,i,i,A.b([b,c,q,p,o,n,k,A.a(i,i,"struct protocol class extension enum",i,"class",A.b([A.a(i,"[A-Za-z$_][\\u00C0-\\u02B80-9A-Za-z$_]*",i,i,"title",i,i,i,i,i,i,i,i,i,i,i,i,i,0,i,i,i,i,i,i,i)],d),i,"\\{",i,i,i,i,!0,i,a0,i,i,i,i,i,i,i,i,i,i,i),A.a(i,"(@discardableResult|@warn_unused_result|@exported|@lazy|@noescape|@NSCopying|@NSManaged|@objc|@objcMembers|@convention|@required|@noreturn|@IBAction|@IBDesignable|@IBInspectable|@IBOutlet|@infix|@prefix|@postfix|@autoclosure|@testable|@available|@nonobjc|@NSApplicationMain|@UIApplicationMain|@dynamicMemberLookup|@propertyWrapper)",i,i,"meta",i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i),A.a(i,i,"import",i,i,A.b([c,A.a(i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,j,i,i,i,i,i,i,i,i,i)],d),i,"$",i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i)],d),i,i,i,i,i,i,i,i,a,i,i,a1,i,i,i,i,i,i,i,i)}) -s($,"bft","aUq",()=>{var q=null,p=t._ -return A.a(q,q,q,q,q,A.b([A.a(q,"\\$noop\\(",q,q,"comment",A.b([A.a(q,"\\(",q,q,q,A.b([A.a(q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,!0,q,q,q,q),A.a(q,"\\\\.",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],p),q,"\\)",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],p),q,"\\)",q,q,q,q,q,q,q,q,q,q,10,q,q,q,q,q,q,q),A.a(q,"\\$(?!noop)[a-zA-Z][_a-zA-Z0-9]*",q,q,"keyword",q,q,"\\(",q,q,q,q,!0,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"%[_a-zA-Z0-9:]*",q,q,"variable",q,q,"%",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\\\.",q,q,"symbol",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],p),q,q,q,q,q,q,q,q,q,q,q,A.m(t.N,t.n),q,q,q,q,q,q,q,q)}) -s($,"bfu","aUr",()=>{var q=null,p=t._ -return A.a(q,q,q,!0,q,A.b([$.ch(),A.a(q,q,q,q,"meta",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,A.b([A.a(q,"^TAP version (\\d+)$",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"^1\\.\\.(\\d+)$",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],p)),A.a(q,"(s+)?---$",q,q,q,q,q,"\\.\\.\\.$",q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,A.b(["yaml"],t.s),q),A.a(q," (\\d+) ",q,q,"number",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,q,q,q,"symbol",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,A.b([A.a(q,"^ok",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"^not ok",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],p))],p),q,q,q,q,q,q,q,q,q,q,q,A.m(t.N,t.n),q,q,q,q,q,q,q,q)}) -s($,"bfv","aUs",()=>{var q,p,o,n="(?:TODO|FIXME|NOTE|BUG|XXX):",m=null,l=A.b(["tk"],t.s),k=$.aq(),j=t._,i=A.a(m,";[ \\t]*#",m,m,"comment",A.b([k,A.a(m,n,m,m,"doctag",m,m,m,m,m,m,m,m,m,m,m,m,m,0,m,m,m,m,m,m,m)],j),m,"$",m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m) -k=A.a(m,"^[ \\t]*#",m,m,"comment",A.b([k,A.a(m,n,m,m,"doctag",m,m,m,m,m,m,m,m,m,m,m,m,m,0,m,m,m,m,m,m,m)],j),m,"$",m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m) -q=A.a(m,m,"proc",m,m,A.b([A.a(m,"[ \\t\\n\\r]+(::)?[a-zA-Z_]((::)?[a-zA-Z0-9_])*",m,m,"title",m,m,"[ \\t\\n\\r]",m,m,!0,m,!0,m,m,m,m,m,m,m,m,m,m,m,m,m)],j),m,"[\\{]",m,m,m,m,!0,m,m,m,m,m,m,m,m,m,m,m,m,m) -p=A.a(m,m,m,m,m,m,m,m,m,m,m,m,!0,m,m,m,m,m,m,m,m,m,m,m,m,A.b([A.a(m,"\\$(\\{)?(::)?[a-zA-Z_]((::)?[a-zA-Z0-9_])*\\(([a-zA-Z0-9_])*\\)",m,m,m,m,m,"[^a-zA-Z0-9_\\}\\$]",m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m),A.a(m,"\\$(\\{)?(::)?[a-zA-Z_]((::)?[a-zA-Z0-9_])*",m,m,m,m,m,"(\\))?[^a-zA-Z0-9_\\}\\$]",m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m)],j)) -o=$.aZ() -return A.a(l,m,m,m,m,A.b([i,k,q,p,A.a(m,m,m,m,"string",A.b([o],j),m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,A.b([A.a(m,'"',m,m,"string",A.b([o],j),m,'"',m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m)],j)),A.a(m,m,m,m,"number",m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,A.b([$.ng(),$.bw()],j))],j),m,m,m,m,m,m,m,m,"after append apply array auto_execok auto_import auto_load auto_mkindex auto_mkindex_old auto_qualify auto_reset bgerror binary break catch cd chan clock close concat continue dde dict encoding eof error eval exec exit expr fblocked fconfigure fcopy file fileevent filename flush for foreach format gets glob global history http if incr info interp join lappend|10 lassign|10 lindex|10 linsert|10 list llength|10 load lrange|10 lrepeat|10 lreplace|10 lreverse|10 lsearch|10 lset|10 lsort|10 mathfunc mathop memory msgcat namespace open package parray pid pkg::create pkg_mkIndex platform platform::shell proc puts pwd read refchan regexp registry regsub|10 rename return safe scan seek set socket source split string subst switch tcl_endOfWord tcl_findLibrary tcl_startOfNextWord tcl_startOfPreviousWord tcl_wordBreakAfter tcl_wordBreakBefore tcltest tclvars tell time tm trace unknown unload unset update uplevel upvar variable vwait while",m,m,A.m(t.N,t.n),m,m,m,m,m,m,m,m)}) -s($,"bfw","aUt",()=>{var q="~contains~0",p=null,o=t._,n=A.b([A.a(p,"[a-zA-Z\\u0430-\\u044f\\u0410-\\u042f]+[*]?",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"[^a-zA-Z\\u0430-\\u044f\\u0410-\\u042f0-9]",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p)],o) -n=A.l(["~contains~0",A.a(p,"\\\\",p,p,"tag",A.b([A.a(p,p,p,p,"name",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,A.a(p,p,p,p,p,A.b([A.a(p,p,p,p,"string",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,A.b([A.a(p,"\\[",p,p,p,p,p,"\\]",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"\\{",p,p,p,p,p,"\\}",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p)],o)),A.a(p,"\\s*=\\s*",p,p,p,A.b([A.a(p,"-?\\d*\\.?\\d+(pt|pc|mm|cm|in|dd|cc|ex|em)?",p,p,"number",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p)],o),p,p,p,p,!0,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p)],o),p,p,p,p,!0,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p),p,n)],o),p,p,p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p)],t.N,t.n) -return A.a(p,p,p,p,p,A.b([A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,q,p,p,p,p,p,p,p,p,p),A.a(p,p,p,p,"formula",A.b([A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,q,p,p,p,p,p,p,p,p,p)],o),p,p,p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,A.b([A.a(p,"\\$\\$",p,p,p,p,p,"\\$\\$",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"\\$",p,p,p,p,p,"\\$",p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p)],o)),A.a(p,"%",p,p,"comment",A.b([$.aq(),A.a(p,"(?:TODO|FIXME|NOTE|BUG|XXX):",p,p,"doctag",p,p,p,p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p)],o),p,"$",p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p)],o),p,p,p,p,p,p,p,p,p,p,p,n,p,p,p,p,p,p,p,p)}) -s($,"bfz","aUu",()=>{var q="bool byte i16 i32 i64 double string binary",p=null,o=t.N,n=A.l(["keyword","namespace const typedef struct enum service exception void oneway set list map required optional","built_in",q,"literal","true false"],o,o),m=t._ -return A.a(p,p,p,p,p,A.b([$.aM(),$.dB(),$.ba(),$.b_(),A.a(p,p,"struct enum service exception",p,"class",A.b([A.a(p,"[a-zA-Z]\\w*",p,p,"title",p,p,p,p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,A.a(p,p,p,p,p,p,p,p,p,p,!0,p,!0,p,p,p,p,p,p,p,p,p,p,p,p,p),p,p)],m),p,"\\{",p,p,p,p,p,"\\n",p,p,p,p,p,p,p,p,p,p,p,p),A.a(p,"\\b(set|list|map)\\s*<",p,p,p,A.b([A.a(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,!0,p,p,p,p)],m),p,">",p,p,p,p,p,p,q,p,p,p,p,p,p,p,p,p,p,p)],m),p,p,p,p,p,p,p,p,n,p,p,A.m(o,t.n),p,p,p,p,p,p,p,p)}) -s($,"bfB","aUw",()=>{var q,p,o,n,m,l,k,j,i,h="~contains~0~contains~2",g=null,f="~contains~0~contains~1",e="keyword",d="built_in",c="comment",b="doctag",a="(?:TODO|FIXME|NOTE|BUG|XXX):",a0=t.N,a1=A.l([h,A.a(g,":[^\\]]+",g,g,"symbol",g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g),f,A.a(g,"[1-9][0-9]*",g,g,"number",g,g,g,g,g,g,g,g,g,g,g,g,g,0,g,g,g,g,g,g,g)],a0,t.n) -a0=A.l(["keyword","ABORT ACC ADJUST AND AP_LD BREAK CALL CNT COL CONDITION CONFIG DA DB DIV DETECT ELSE END ENDFOR ERR_NUM ERROR_PROG FINE FOR GP GUARD INC IF JMP LINEAR_MAX_SPEED LOCK MOD MONITOR OFFSET Offset OR OVERRIDE PAUSE PREG PTH RT_LD RUN SELECT SKIP Skip TA TB TO TOOL_OFFSET Tool_Offset UF UT UFRAME_NUM UTOOL_NUM UNLOCK WAIT X Y Z W P R STRLEN SUBSTR FINDSTR VOFFSET PROG ATTR MN POS","literal","ON OFF max_speed LPOS JPOS ENABLE DISABLE START STOP RESET"],a0,a0) -q=t._ -p=A.a(g,"(AR|P|PAYLOAD|PR|R|SR|RSR|LBL|VR|UALM|MESSAGE|UTOOL|UFRAME|TIMER|TIMER_OVERFLOW|JOINT_MAX_SPEED|RESUME_PROG|DIAG_REC)\\[",g,g,d,A.b([A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,!0,g,g,g,g),A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,f,g,g,g,g,g,g,g,g,g),A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,h,g,g,g,g,g,g,g,g,g)],q),g,"\\]",g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g) -o=A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,!0,g,g,g,g) -n=A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,f,g,g,g,g,g,g,g,g,g) -m=$.aM() -n=A.a(g,"(AI|AO|DI|DO|F|RI|RO|UI|UO|GI|GO|SI|SO)\\[",g,g,d,A.b([o,n,m,A.a(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,h,g,g,g,g,g,g,g,g,g)],q),g,"\\]",g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g) -o=A.a(g,"/(PROG|ATTR|MN|POS|END)\\b",g,g,e,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g) -l=A.a(g,"(CALL|RUN|POINT_LOGIC|LBL)\\b",g,g,e,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g) -k=A.a(g,"\\b(ACC|CNT|Skip|Offset|PSPD|RT_LD|AP_LD|Tool_Offset)",g,g,e,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g) -j=A.a(g,"\\d+(sec|msec|mm/sec|cm/min|inch/min|deg/sec|mm|in|cm)?\\b",g,g,"number",g,g,g,g,g,g,g,g,g,g,g,g,g,0,g,g,g,g,g,g,g) -i=$.aq() -return A.a(g,g,g,g,g,A.b([p,n,o,l,k,j,A.a(g,"//",g,g,c,A.b([i,A.a(g,a,g,g,b,g,g,g,g,g,g,g,g,g,g,g,g,g,0,g,g,g,g,g,g,g)],q),g,"[;$]",g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g),A.a(g,"!",g,g,c,A.b([i,A.a(g,a,g,g,b,g,g,g,g,g,g,g,g,g,g,g,g,g,0,g,g,g,g,g,g,g)],q),g,"[;$]",g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g),A.a(g,"--eg:",g,g,c,A.b([i,A.a(g,a,g,g,b,g,g,g,g,g,g,g,g,g,g,g,g,g,0,g,g,g,g,g,g,g)],q),g,"$",g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g),m,A.a(g,"'",g,g,"string",g,g,"'",g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g),$.bw(),A.a(g,"\\$[A-Za-z0-9_]+",g,g,"variable",g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g)],q),g,g,g,g,g,g,g,g,a0,g,g,a1,g,g,g,g,g,g,g,g)}) -s($,"bfC","aUx",()=>{var q,p="~contains~1~contains~0~starts~contains~0~contains~0",o="attribute block constant cycle date dump include max min parent random range source template_from_string",n=null,m="~contains~1~contains~0~starts~contains~0",l=t.N,k=A.l(["name",o],l,l),j=t._ -l=A.l([p,A.a(n,n,o,n,n,A.b([A.a(n,"\\(",n,n,"params",n,n,"\\)",n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n)],j),n,n,n,n,n,n,n,n,k,n,n,n,0,n,n,n,n,n,n,n),m,A.a(n,"\\|[A-Za-z_]+:?",n,n,n,A.b([A.a(n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,p,n,n,n,n,n,n,n,n,n)],j),n,n,n,n,n,n,n,n,"abs batch capitalize column convert_encoding date date_modify default escape filter first format inky_to_html inline_css join json_encode keys last length lower map markdown merge nl2br number_format raw reduce replace reverse round slice sort spaceless split striptags title trim upper url_encode",n,n,n,n,n,n,n,n,n,n,n)],l,t.n) -k=t.s -q=A.b(["craftcms"],k) -k=A.b(["xml"],k) -return A.a(q,n,n,!0,n,A.b([A.a(n,"\\{#",n,n,"comment",A.b([$.aq(),A.a(n,"(?:TODO|FIXME|NOTE|BUG|XXX):",n,n,"doctag",n,n,n,n,n,n,n,n,n,n,n,n,n,0,n,n,n,n,n,n,n)],j),n,"#}",n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n),A.a(n,"\\{%",n,n,"template-tag",A.b([A.a(n,"\\w+",n,n,"name",n,n,n,n,n,n,n,n,n,"apply autoescape block deprecated do embed extends filter flush for from if import include macro sandbox set use verbatim with endapply endautoescape endblock enddeprecated enddo endembed endextends endfilter endflush endfor endfrom endif endimport endinclude endmacro endsandbox endset enduse endverbatim endwith",n,n,n,n,n,n,n,n,A.a(n,n,n,n,n,A.b([A.a(n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,m,n,n,n,n,n,n,n,n,n),A.a(n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,p,n,n,n,n,n,n,n,n,n)],j),n,n,n,n,!0,n,n,n,n,n,n,n,0,n,n,n,n,n,n,n),n,n)],j),n,"%}",n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n),A.a(n,"\\{\\{",n,n,"template-variable",A.b([A.a(n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,!0,n,n,n,n),A.a(n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,m,n,n,n,n,n,n,n,n,n),A.a(n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,p,n,n,n,n,n,n,n,n,n)],j),n,"}}",n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n)],j),n,n,n,n,n,n,n,n,n,n,n,l,n,n,n,n,n,n,k,n)}) -s($,"bfD","aUy",()=>{var q,p,o,n="~contains~3~starts~contains~1~contains~5",m=null,l="~contains~3~starts~contains~1~contains~4",k="~contains~3~starts~contains~1",j="~contains~3~starts~contains~1~contains~3",i="in if for while finally var new function do return void else break catch instanceof with throw case default try this switch continue typeof delete let yield const class public private protected get set super static implements enum export import declare type namespace abstract as from extends async await",h="true false null undefined NaN Infinity",g="eval isFinite isNaN parseFloat parseInt decodeURI decodeURIComponent encodeURI encodeURIComponent escape unescape Object Function Boolean Error EvalError InternalError RangeError ReferenceError StopIteration SyntaxError TypeError URIError Number Math Date String RegExp Array Float32Array Float64Array Int16Array Int32Array Int8Array Uint16Array Uint32Array Uint8Array Uint8ClampedArray ArrayBuffer DataView JSON Intl arguments require module console window document any number boolean string void Promise",f="~contains~3",e="~contains~10~contains~2~contains~3",d="~contains~10~contains~2~contains~2",c="~contains~10~contains~2",b="function",a=t._,a0=A.a(m,m,m,m,"number",m,m,m,m,m,m,m,m,m,m,m,m,m,0,m,m,m,m,m,m,A.b([A.a(m,"\\b(0[bB][01]+)n?",m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m),A.a(m,"\\b(0[oO][0-7]+)n?",m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m),A.a(m,u.j,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m)],a)),a1=$.aZ(),a2=A.a(m,"`",m,m,"string",A.b([a1,A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,k,m,m,m,m,m,m,m,m,m)],a),m,"`",m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m),a3=t.s,a4=A.a(m,"css`",m,m,m,m,m,"",m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,A.a(m,m,m,m,m,A.b([a1,A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,k,m,m,m,m,m,m,m,m,m)],a),m,"`",m,m,m,m,m,m,m,m,m,m,m,m,!1,m,m,m,A.b(["css"],a3),m),m,m),a5=t.N,a6=A.l(["keyword",i,"literal",h,"built_in",g],a5,a5),a7=$.c0(),a8=$.aM(),a9=A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,f,m,m,m,m,m,m,m,m,m),b0=A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,j,m,m,m,m,m,m,m,m,m),b1=A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,l,m,m,m,m,m,m,m,m,m),b2=A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,n,m,m,m,m,m,m,m,m,m),b3=$.yQ() -a6=A.a(m,"\\$\\{",m,m,"subst",A.b([a7,a8,a9,b0,b1,b2,b3],a),m,"\\}",m,m,m,m,m,m,a6,m,m,m,m,m,m,m,m,m,m,m) -a1=A.a(m,"html`",m,m,m,m,m,"",m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,A.a(m,m,m,m,m,A.b([a1,A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,k,m,m,m,m,m,m,m,m,m)],a),m,"`",m,m,m,m,m,m,m,m,m,m,m,m,!1,m,m,m,A.b(["xml"],a3),m),m,m) -b2=A.l(["keyword",i,"literal",h,"built_in",g],a5,a5) -b2=A.a(m,"\\(",m,m,m,A.b([A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,!0,m,m,m,m),a8,a7,$.dB()],a),m,"\\)",m,m,m,m,m,m,b2,m,m,m,m,m,m,m,m,m,m,m) -b1=A.a(m,"@[A-Za-z$_][0-9A-Za-z$_]*",m,m,"meta",m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m) -b0=A.l(["keyword",i,"literal",h,"built_in",g],a5,a5) -a9=$.ba() -q=$.b_() -b0=A.l([n,a0,l,a2,j,a4,k,a6,"~contains~3",a1,e,b2,d,b1,c,A.a(m,"\\(",m,m,"params",A.b([a9,q,A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,d,m,m,m,m,m,m,m,m,m),A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,e,m,m,m,m,m,m,m,m,m)],a),m,"\\)",m,m,m,!0,!0,m,b0,m,m,m,m,m,m,m,m,m,m,m)],a5,t.n) -a3=A.b(["ts"],a3) -b1=A.l(["keyword",i,"literal",h,"built_in",g],a5,a5) -b2=A.a(m,"^\\s*['\"]use strict['\"]",m,m,"meta",m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m) -a1=A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,f,m,m,m,m,m,m,m,m,m) -a6=A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,j,m,m,m,m,m,m,m,m,m) -a4=A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,l,m,m,m,m,m,m,m,m,m) -a2=A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,n,m,m,m,m,m,m,m,m,m) -a0=A.a(m,"[a-zA-Z]\\w*",m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m) -p=A.a(m,"\\(\\s*\\)",m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m) -o=A.l(["keyword",i,"literal",h,"built_in",g],a5,a5) -o=A.a(m,u.X,m,m,m,A.b([a9,q,b3,A.a(m,"(\\(.*?\\)|[a-zA-Z]\\w*)\\s*=>",m,m,b,A.b([A.a(m,m,m,m,"params",m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,A.b([a0,p,A.a(m,"\\(",m,m,m,A.b([A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,!0,m,m,m,m),a9,q],a),m,"\\)",m,m,m,!0,!0,m,o,m,m,m,m,m,m,m,m,m,m,m)],a))],a),m,"\\s*=>",m,m,m,m,m,m,m,m,m,m,m,!0,m,m,m,m,m,m)],a),m,m,m,m,m,m,m,m,"return throw case",m,m,m,0,m,m,m,m,m,m,m) -p=A.l(["keyword",i,"literal",h,"built_in",g],a5,a5) -return A.a(a3,m,m,m,m,A.b([b2,a7,a8,a1,a6,a4,a9,q,a2,o,A.a(m,m,b,m,b,A.b([A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,!0,m,m,m,m),A.a(m,"[A-Za-z$_][0-9A-Za-z$_]*",m,m,"title",m,m,m,m,m,m,m,m,m,m,m,m,m,0,m,m,m,m,m,m,m),A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,c,m,m,m,m,m,m,m,m,m)],a),m,"[\\{;]",m,m,m,m,!0,"%",p,m,m,m,0,m,m,m,m,m,m,m),A.a(m,m,"constructor",m,m,A.b([A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,!0,m,m,m,m),A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,c,m,m,m,m,m,m,m,m,m)],a),m,"[\\{;]",m,m,m,m,!0,m,m,m,m,m,m,m,m,m,m,m,m,m),A.a(m,"module\\.",m,m,m,m,m,m,m,m,m,m,m,m,A.l(["built_in","module"],a5,a5),m,m,m,0,m,m,m,m,m,m,m),A.a(m,m,"module",m,m,m,m,"\\{",m,m,m,m,!0,m,m,m,m,m,m,m,m,m,m,m,m,m),A.a(m,m,"interface",m,m,m,m,"\\{",m,m,m,m,!0,m,"interface extends",m,m,m,m,m,m,m,m,m,m,m),A.a(m,"\\$[(.]",m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m),A.a(m,"\\.[a-zA-Z]\\w*",m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,0,m,m,m,m,m,m,m),A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,d,m,m,m,m,m,m,m,m,m),A.a(m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,e,m,m,m,m,m,m,m,m,m)],a),m,m,m,m,m,m,m,m,b1,m,m,b0,m,m,m,m,m,m,m,m)}) -s($,"bfE","aUz",()=>{var q=null,p=t.N,o=A.l(["keyword","char uchar unichar int uint long ulong short ushort int8 int16 int32 int64 uint8 uint16 uint32 uint64 float double bool struct enum string void weak unowned owned async signal static abstract interface override virtual delegate if while do for foreach else switch case break default return try catch public private protected internal using new this get set const stdout stdin stderr var","built_in","DBus GLib CCode Gee Object Gtk Posix","literal","false true null"],p,p),n=t._ -return A.a(q,q,q,q,q,A.b([A.a(q,q,"class interface namespace",q,"class",A.b([$.dU()],n),q,"{",q,q,q,q,!0,"[^,:\\n\\s\\.]",q,q,q,q,q,q,q,q,q,q,q,q),$.ba(),$.b_(),A.a(q,'"""',q,q,"string",q,q,'"""',q,q,q,q,q,q,q,q,q,q,5,q,q,q,q,q,q,q),$.c0(),$.aM(),$.bw(),A.a(q,"^#",q,q,"meta",q,q,"$",q,q,q,q,q,q,q,q,q,q,2,q,q,q,q,q,q,q)],n),q,q,q,q,q,q,q,q,o,q,q,A.m(p,t.n),q,q,q,q,q,q,q,q)}) -s($,"bfF","aUA",()=>{var q=null,p="doctag",o=t.N,n=A.b(["vb"],t.s),m=A.l(["keyword","addhandler addressof alias and andalso aggregate ansi as async assembly auto await binary by byref byval call case catch class compare const continue custom declare default delegate dim distinct do each equals else elseif end enum erase error event exit explicit finally for friend from function get global goto group handles if implements imports in inherits interface into is isfalse isnot istrue iterator join key let lib like loop me mid mod module mustinherit mustoverride mybase myclass nameof namespace narrowing new next not notinheritable notoverridable of off on operator option optional or order orelse overloads overridable overrides paramarray partial preserve private property protected public raiseevent readonly redim rem removehandler resume return select set shadows shared skip static step stop structure strict sub synclock take text then throw to try unicode until using when where while widening with withevents writeonly xor yield","built_in","boolean byte cbool cbyte cchar cdate cdec cdbl char cint clng cobj csbyte cshort csng cstr ctype date decimal directcast double gettype getxmlnamespace iif integer long object sbyte short single string trycast typeof uinteger ulong ushort","literal","true false nothing"],o,o),l=t._,k=A.a(q,'"',q,q,"string",A.b([A.a(q,'""',q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],l),q,'"',q,q,q,q,q,"\\n",q,q,q,q,q,q,q,q,q,q,q,q),j=$.aq() -return A.a(n,q,q,!0,q,A.b([k,A.a(q,"'",q,q,"comment",A.b([A.a(q,"'''|",q,q,p,A.b([j],l),q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),j,A.a(q,"(?:TODO|FIXME|NOTE|BUG|XXX):",q,q,p,q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q)],l),q,"$",q,q,q,q,q,q,q,q,q,q,q,!0,q,q,q,q,q,q),$.bw(),A.a(q,"#",q,q,"meta",q,q,"$",q,q,q,q,q,q,A.l(["meta-keyword","if else elseif end region externalsource"],o,o),q,q,q,q,q,q,q,q,q,q,q)],l),q,q,q,q,q,q,q,"//|{|}|endif|gosub|variant|wend|^\\$ ",m,q,q,A.m(o,t.n),q,q,q,q,q,q,q,q)}) -s($,"bfH","aUC",()=>{var q=null,p=t.s,o=A.b(["xml"],p) -return A.a(q,q,q,q,q,A.b([A.a(q,"<%",q,q,q,q,q,"%>",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,A.b(["vbscript"],p),q)],t._),q,q,q,q,q,q,q,q,q,q,q,A.m(t.N,t.n),q,q,q,q,q,q,o,q)}) -s($,"bfG","aUB",()=>{var q=null,p=t.N,o=A.b(["vbs"],t.s),n=A.l(["keyword","call class const dim do loop erase execute executeglobal exit for each next function if then else on error option explicit new private property let get public randomize redim rem select case set stop sub while wend with end to elseif is or xor and not class_initialize class_terminate default preserve in me byval byref step resume goto","built_in","lcase month vartype instrrev ubound setlocale getobject rgb getref string weekdayname rnd dateadd monthname now day minute isarray cbool round formatcurrency conversions csng timevalue second year space abs clng timeserial fixs len asc isempty maths dateserial atn timer isobject filter weekday datevalue ccur isdate instr datediff formatdatetime replace isnull right sgn array snumeric log cdbl hex chr lbound msgbox ucase getlocale cos cdate cbyte rtrim join hour oct typename trim strcomp int createobject loadpicture tan formatnumber mid scriptenginebuildversion scriptengine split scriptengineminorversion cint sin datepart ltrim sqr scriptenginemajorversion time derived eval date formatpercent exp inputbox left ascw chrw regexp server response request cstr err","literal","true false null nothing empty"],p,p),m=t._ -return A.a(o,q,q,!0,q,A.b([A.a(q,'"',q,q,"string",A.b([A.a(q,'""',q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],m),q,'"',q,q,q,q,q,"\\n",q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"'",q,q,"comment",A.b([$.aq(),A.a(q,"(?:TODO|FIXME|NOTE|BUG|XXX):",q,q,"doctag",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q)],m),q,"$",q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q),$.bw()],m),q,q,q,q,q,q,q,"//",n,q,q,A.m(p,t.n),q,q,q,q,q,q,q,q)}) -s($,"bfI","aUD",()=>{var q=null,p=t.N,o=A.b(["v","sv","svh"],t.s),n=A.l(["keyword","accept_on alias always always_comb always_ff always_latch and assert assign assume automatic before begin bind bins binsof bit break buf|0 bufif0 bufif1 byte case casex casez cell chandle checker class clocking cmos config const constraint context continue cover covergroup coverpoint cross deassign default defparam design disable dist do edge else end endcase endchecker endclass endclocking endconfig endfunction endgenerate endgroup endinterface endmodule endpackage endprimitive endprogram endproperty endspecify endsequence endtable endtask enum event eventually expect export extends extern final first_match for force foreach forever fork forkjoin function generate|5 genvar global highz0 highz1 if iff ifnone ignore_bins illegal_bins implements implies import incdir include initial inout input inside instance int integer interconnect interface intersect join join_any join_none large let liblist library local localparam logic longint macromodule matches medium modport module nand negedge nettype new nexttime nmos nor noshowcancelled not notif0 notif1 or output package packed parameter pmos posedge primitive priority program property protected pull0 pull1 pulldown pullup pulsestyle_ondetect pulsestyle_onevent pure rand randc randcase randsequence rcmos real realtime ref reg reject_on release repeat restrict return rnmos rpmos rtran rtranif0 rtranif1 s_always s_eventually s_nexttime s_until s_until_with scalared sequence shortint shortreal showcancelled signed small soft solve specify specparam static string strong strong0 strong1 struct super supply0 supply1 sync_accept_on sync_reject_on table tagged task this throughout time timeprecision timeunit tran tranif0 tranif1 tri tri0 tri1 triand trior trireg type typedef union unique unique0 unsigned until until_with untyped use uwire var vectored virtual void wait wait_order wand weak weak0 weak1 while wildcard wire with within wor xnor xor","literal","null","built_in","$finish $stop $exit $fatal $error $warning $info $realtime $time $printtimescale $bitstoreal $bitstoshortreal $itor $signed $cast $bits $stime $timeformat $realtobits $shortrealtobits $rtoi $unsigned $asserton $assertkill $assertpasson $assertfailon $assertnonvacuouson $assertoff $assertcontrol $assertpassoff $assertfailoff $assertvacuousoff $isunbounded $sampled $fell $changed $past_gclk $fell_gclk $changed_gclk $rising_gclk $steady_gclk $coverage_control $coverage_get $coverage_save $set_coverage_db_name $rose $stable $past $rose_gclk $stable_gclk $future_gclk $falling_gclk $changing_gclk $display $coverage_get_max $coverage_merge $get_coverage $load_coverage_db $typename $unpacked_dimensions $left $low $increment $clog2 $ln $log10 $exp $sqrt $pow $floor $ceil $sin $cos $tan $countbits $onehot $isunknown $fatal $warning $dimensions $right $high $size $asin $acos $atan $atan2 $hypot $sinh $cosh $tanh $asinh $acosh $atanh $countones $onehot0 $error $info $random $dist_chi_square $dist_erlang $dist_exponential $dist_normal $dist_poisson $dist_t $dist_uniform $q_initialize $q_remove $q_exam $async$and$array $async$nand$array $async$or$array $async$nor$array $sync$and$array $sync$nand$array $sync$or$array $sync$nor$array $q_add $q_full $psprintf $async$and$plane $async$nand$plane $async$or$plane $async$nor$plane $sync$and$plane $sync$nand$plane $sync$or$plane $sync$nor$plane $system $display $displayb $displayh $displayo $strobe $strobeb $strobeh $strobeo $write $readmemb $readmemh $writememh $value$plusargs $dumpvars $dumpon $dumplimit $dumpports $dumpportson $dumpportslimit $writeb $writeh $writeo $monitor $monitorb $monitorh $monitoro $writememb $dumpfile $dumpoff $dumpall $dumpflush $dumpportsoff $dumpportsall $dumpportsflush $fclose $fdisplay $fdisplayb $fdisplayh $fdisplayo $fstrobe $fstrobeb $fstrobeh $fstrobeo $swrite $swriteb $swriteh $swriteo $fscanf $fread $fseek $fflush $feof $fopen $fwrite $fwriteb $fwriteh $fwriteo $fmonitor $fmonitorb $fmonitorh $fmonitoro $sformat $sformatf $fgetc $ungetc $fgets $sscanf $rewind $ftell $ferror"],p,p),m=t._ -return A.a(o,q,q,!1,q,A.b([$.b_(),$.ba(),$.aM(),A.a(q,q,q,q,"number",A.b([$.aZ()],m),q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,A.b([A.a(q,"\\b((\\d+'(b|h|o|d|B|H|O|D))[0-9xzXZa-fA-F_]+)",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\B(('(b|h|o|d|B|H|O|D))[0-9xzXZa-fA-F_]+)",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\b([0-9_])+",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q)],m)),A.a(q,q,q,q,"variable",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,A.b([A.a(q,"#\\((?!parameter).+\\)",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\.\\w+",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q)],m)),A.a(q,"`",q,q,"meta",q,q,"$",q,q,q,q,q,q,A.l(["meta-keyword","define __FILE__ __LINE__ begin_keywords celldefine default_nettype define else elsif end_keywords endcelldefine endif ifdef ifndef include line nounconnected_drive pragma resetall timescale unconnected_drive undef undefineall"],p,p),q,q,q,0,q,q,q,q,q,q,q)],m),q,q,q,q,q,q,q,q,n,"[\\w\\$]+",q,A.m(p,t.n),q,q,q,q,q,q,q,q)}) -s($,"bfJ","aUE",()=>{var q=null,p=t.N,o=A.l(["keyword","abs access after alias all and architecture array assert assume assume_guarantee attribute begin block body buffer bus case component configuration constant context cover disconnect downto default else elsif end entity exit fairness file for force function generate generic group guarded if impure in inertial inout is label library linkage literal loop map mod nand new next nor not null of on open or others out package parameter port postponed procedure process property protected pure range record register reject release rem report restrict restrict_guarantee return rol ror select sequence severity shared signal sla sll sra srl strong subtype then to transport type unaffected units until use variable view vmode vprop vunit wait when while with xnor xor","built_in","boolean bit character integer time delay_length natural positive string bit_vector file_open_kind file_open_status std_logic std_logic_vector unsigned signed boolean_vector integer_vector std_ulogic std_ulogic_vector unresolved_unsigned u_unsigned unresolved_signed u_signed real_vector time_vector","literal","false true note warning error failure line text side width"],p,p),n=$.b_(),m=t._,l=A.a(q,"--",q,q,"comment",A.b([$.aq(),A.a(q,"(?:TODO|FIXME|NOTE|BUG|XXX):",q,q,"doctag",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q)],m),q,"$",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),k=$.aM(),j=A.a(q,u.f,q,q,"number",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q),i=$.aZ() -return A.a(q,q,q,!0,q,A.b([n,l,k,j,A.a(q,"'(U|X|0|1|Z|W|L|H|-)'",q,q,"string",A.b([i],m),q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"'[A-Za-z](_?[A-Za-z0-9])*",q,q,"symbol",A.b([i],m),q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],m),q,q,q,q,q,q,q,"{",o,q,q,A.m(p,t.n),q,q,q,q,q,q,q,q)}) -s($,"bfK","aUF",()=>{var q=null,p=t.N,o=A.l(["keyword","N|0 P|0 X|0 a|0 ab abc abo al am an|0 ar arga argd arge argdo argg argl argu as au aug aun b|0 bN ba bad bd be bel bf bl bm bn bo bp br brea breaka breakd breakl bro bufdo buffers bun bw c|0 cN cNf ca cabc caddb cad caddf cal cat cb cc ccl cd ce cex cf cfir cgetb cgete cg changes chd che checkt cl cla clo cm cmapc cme cn cnew cnf cno cnorea cnoreme co col colo com comc comp con conf cope cp cpf cq cr cs cst cu cuna cunme cw delm deb debugg delc delf dif diffg diffo diffp diffpu diffs diffthis dig di dl dell dj dli do doautoa dp dr ds dsp e|0 ea ec echoe echoh echom echon el elsei em en endfo endf endt endw ene ex exe exi exu f|0 files filet fin fina fini fir fix fo foldc foldd folddoc foldo for fu go gr grepa gu gv ha helpf helpg helpt hi hid his ia iabc if ij il im imapc ime ino inorea inoreme int is isp iu iuna iunme j|0 ju k|0 keepa kee keepj lN lNf l|0 lad laddb laddf la lan lat lb lc lch lcl lcs le lefta let lex lf lfir lgetb lgete lg lgr lgrepa lh ll lla lli lmak lm lmapc lne lnew lnf ln loadk lo loc lockv lol lope lp lpf lr ls lt lu lua luad luaf lv lvimgrepa lw m|0 ma mak map mapc marks mat me menut mes mk mks mksp mkv mkvie mod mz mzf nbc nb nbs new nm nmapc nme nn nnoreme noa no noh norea noreme norm nu nun nunme ol o|0 om omapc ome on ono onoreme opt ou ounme ow p|0 profd prof pro promptr pc ped pe perld po popu pp pre prev ps pt ptN ptf ptj ptl ptn ptp ptr pts pu pw py3 python3 py3d py3f py pyd pyf quita qa rec red redi redr redraws reg res ret retu rew ri rightb rub rubyd rubyf rund ru rv sN san sa sal sav sb sbN sba sbf sbl sbm sbn sbp sbr scrip scripte scs se setf setg setl sf sfir sh sim sig sil sl sla sm smap smapc sme sn sni sno snor snoreme sor so spelld spe spelli spellr spellu spellw sp spr sre st sta startg startr star stopi stj sts sun sunm sunme sus sv sw sy synti sync tN tabN tabc tabdo tabe tabf tabfir tabl tabm tabnew tabn tabo tabp tabr tabs tab ta tags tc tcld tclf te tf th tj tl tm tn to tp tr try ts tu u|0 undoj undol una unh unl unlo unm unme uns up ve verb vert vim vimgrepa vi viu vie vm vmapc vme vne vn vnoreme vs vu vunme windo w|0 wN wa wh wi winc winp wn wp wq wqa ws wu wv x|0 xa xmapc xm xme xn xnoreme xu xunme y|0 z|0 \\x7e Next Print append abbreviate abclear aboveleft all amenu anoremenu args argadd argdelete argedit argglobal arglocal argument ascii autocmd augroup aunmenu buffer bNext ball badd bdelete behave belowright bfirst blast bmodified bnext botright bprevious brewind break breakadd breakdel breaklist browse bunload bwipeout change cNext cNfile cabbrev cabclear caddbuffer caddexpr caddfile call catch cbuffer cclose center cexpr cfile cfirst cgetbuffer cgetexpr cgetfile chdir checkpath checktime clist clast close cmap cmapclear cmenu cnext cnewer cnfile cnoremap cnoreabbrev cnoremenu copy colder colorscheme command comclear compiler continue confirm copen cprevious cpfile cquit crewind cscope cstag cunmap cunabbrev cunmenu cwindow delete delmarks debug debuggreedy delcommand delfunction diffupdate diffget diffoff diffpatch diffput diffsplit digraphs display deletel djump dlist doautocmd doautoall deletep drop dsearch dsplit edit earlier echo echoerr echohl echomsg else elseif emenu endif endfor endfunction endtry endwhile enew execute exit exusage file filetype find finally finish first fixdel fold foldclose folddoopen folddoclosed foldopen function global goto grep grepadd gui gvim hardcopy help helpfind helpgrep helptags highlight hide history insert iabbrev iabclear ijump ilist imap imapclear imenu inoremap inoreabbrev inoremenu intro isearch isplit iunmap iunabbrev iunmenu join jumps keepalt keepmarks keepjumps lNext lNfile list laddexpr laddbuffer laddfile last language later lbuffer lcd lchdir lclose lcscope left leftabove lexpr lfile lfirst lgetbuffer lgetexpr lgetfile lgrep lgrepadd lhelpgrep llast llist lmake lmap lmapclear lnext lnewer lnfile lnoremap loadkeymap loadview lockmarks lockvar lolder lopen lprevious lpfile lrewind ltag lunmap luado luafile lvimgrep lvimgrepadd lwindow move mark make mapclear match menu menutranslate messages mkexrc mksession mkspell mkvimrc mkview mode mzscheme mzfile nbclose nbkey nbsart next nmap nmapclear nmenu nnoremap nnoremenu noautocmd noremap nohlsearch noreabbrev noremenu normal number nunmap nunmenu oldfiles open omap omapclear omenu only onoremap onoremenu options ounmap ounmenu ownsyntax print profdel profile promptfind promptrepl pclose pedit perl perldo pop popup ppop preserve previous psearch ptag ptNext ptfirst ptjump ptlast ptnext ptprevious ptrewind ptselect put pwd py3do py3file python pydo pyfile quit quitall qall read recover redo redir redraw redrawstatus registers resize retab return rewind right rightbelow ruby rubydo rubyfile rundo runtime rviminfo substitute sNext sandbox sargument sall saveas sbuffer sbNext sball sbfirst sblast sbmodified sbnext sbprevious sbrewind scriptnames scriptencoding scscope set setfiletype setglobal setlocal sfind sfirst shell simalt sign silent sleep slast smagic smapclear smenu snext sniff snomagic snoremap snoremenu sort source spelldump spellgood spellinfo spellrepall spellundo spellwrong split sprevious srewind stop stag startgreplace startreplace startinsert stopinsert stjump stselect sunhide sunmap sunmenu suspend sview swapname syntax syntime syncbind tNext tabNext tabclose tabedit tabfind tabfirst tablast tabmove tabnext tabonly tabprevious tabrewind tag tcl tcldo tclfile tearoff tfirst throw tjump tlast tmenu tnext topleft tprevious trewind tselect tunmenu undo undojoin undolist unabbreviate unhide unlet unlockvar unmap unmenu unsilent update vglobal version verbose vertical vimgrep vimgrepadd visual viusage view vmap vmapclear vmenu vnew vnoremap vnoremenu vsplit vunmap vunmenu write wNext wall while winsize wincmd winpos wnext wprevious wqall wsverb wundo wviminfo xit xall xmapclear xmap xmenu xnoremap xnoremenu xunmap xunmenu yank","built_in","synIDtrans atan2 range matcharg did_filetype asin feedkeys xor argv complete_check add getwinposx getqflist getwinposy screencol clearmatches empty extend getcmdpos mzeval garbagecollect setreg ceil sqrt diff_hlID inputsecret get getfperm getpid filewritable shiftwidth max sinh isdirectory synID system inputrestore winline atan visualmode inputlist tabpagewinnr round getregtype mapcheck hasmapto histdel argidx findfile sha256 exists toupper getcmdline taglist string getmatches bufnr strftime winwidth bufexists strtrans tabpagebuflist setcmdpos remote_read printf setloclist getpos getline bufwinnr float2nr len getcmdtype diff_filler luaeval resolve libcallnr foldclosedend reverse filter has_key bufname str2float strlen setline getcharmod setbufvar index searchpos shellescape undofile foldclosed setqflist buflisted strchars str2nr virtcol floor remove undotree remote_expr winheight gettabwinvar reltime cursor tabpagenr finddir localtime acos getloclist search tanh matchend rename gettabvar strdisplaywidth type abs py3eval setwinvar tolower wildmenumode log10 spellsuggest bufloaded synconcealed nextnonblank server2client complete settabwinvar executable input wincol setmatches getftype hlID inputsave searchpair or screenrow line settabvar histadd deepcopy strpart remote_peek and eval getftime submatch screenchar winsaveview matchadd mkdir screenattr getfontname libcall reltimestr getfsize winnr invert pow getbufline byte2line soundfold repeat fnameescape tagfiles sin strwidth spellbadword trunc maparg log lispindent hostname setpos globpath remote_foreground getchar synIDattr fnamemodify cscope_connection stridx winbufnr indent min complete_add nr2char searchpairpos inputdialog values matchlist items hlexists strridx browsedir expand fmod pathshorten line2byte argc count getwinvar glob foldtextresult getreg foreground cosh matchdelete has char2nr simplify histget searchdecl iconv winrestcmd pumvisible writefile foldlevel haslocaldir keys cos matchstr foldtext histnr tan tempname getcwd byteidx getbufvar islocked escape eventhandler remote_send serverlist winrestview synstack pyeval prevnonblank readfile cindent filereadable changenr exp"],p,p),n=t._ -return A.a(q,q,q,q,q,A.b([$.dB(),A.a(q,"'",q,q,"string",q,q,"'",q,q,q,q,q,"\\n",q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,'"(\\\\"|\\n\\\\|[^"\\n])*"',q,q,"string",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,'"',q,q,"comment",A.b([$.aq(),A.a(q,"(?:TODO|FIXME|NOTE|BUG|XXX):",q,q,"doctag",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q)],n),q,"$",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"[bwtglsav]:[\\w\\d_]*",q,q,"variable",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,q,"function function!",q,"function",A.b([$.jk(),A.a(q,"\\(",q,q,"params",q,q,"\\)",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],n),q,"$",q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q),A.a(q,"<[\\w-]+>",q,q,"symbol",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],n),q,q,q,q,q,q,q,";",o,"[!#@\\w]+",q,A.m(p,t.n),q,q,q,q,q,q,q,q)}) -s($,"bfL","aUG",()=>{var q=null,p="^(\\s*)(<\\/script>)",o="^(\\s*)(<\\/style>)",n=t.s,m=A.b(["xml"],n),l=t._ -return A.a(q,q,q,q,q,A.b([A.a(q,"",q,q,q,q,q,q,q,q,q,q,10,q,q,q,q,q,q,q),A.a(q,"^(\\s*)(",j,j,j,j,j,j,j,j,j,j,j,j,!0,j,j,j,A.b(["actionscript","javascript","handlebars","xml"],a4),j),j,j),A.a(j,"<\\s]+",j,j,"name",j,j,j,j,j,j,j,j,j,j,j,j,j,0,j,j,j,j,j,j,j),A.a(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,k,j,j,j,j,j,j,j,j,j)],a1),j,"/?>",j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j)],a1),j,j,j,j,j,j,j,j,j,j,j,a5,j,j,j,j,j,j,j,j)}) -s($,"bfT","aUM",()=>{var q=null,p="\\(",o=t.N,n=t.s,m=A.b(["xpath","xq"],n),l=A.l(["keyword","module schema namespace boundary-space preserve no-preserve strip default collation base-uri ordering context decimal-format decimal-separator copy-namespaces empty-sequence except exponent-separator external grouping-separator inherit no-inherit lax minus-sign per-mille percent schema-attribute schema-element strict unordered zero-digit declare import option function validate variable for at in let where order group by return if then else tumbling sliding window start when only end previous next stable ascending descending allowing empty greatest least some every satisfies switch case typeswitch try catch and or to union intersect instance of treat as castable cast map array delete insert into replace value rename copy modify update","type","item document-node node attribute document element comment namespace namespace-node processing-instruction text construction xs:anyAtomicType xs:untypedAtomic xs:duration xs:time xs:decimal xs:float xs:double xs:gYearMonth xs:gYear xs:gMonthDay xs:gMonth xs:gDay xs:boolean xs:base64Binary xs:hexBinary xs:anyURI xs:QName xs:NOTATION xs:dateTime xs:dateTimeStamp xs:date xs:string xs:normalizedString xs:token xs:language xs:NMTOKEN xs:Name xs:NCName xs:ID xs:IDREF xs:ENTITY xs:integer xs:nonPositiveInteger xs:negativeInteger xs:long xs:int xs:short xs:byte xs:nonNegativeInteger xs:unisignedLong xs:unsignedInt xs:unsignedShort xs:unsignedByte xs:positiveInteger xs:yearMonthDuration xs:dayTimeDuration","literal","eq ne lt le gt ge is self:: child:: descendant:: descendant-or-self:: attribute:: following:: following-sibling:: parent:: ancestor:: ancestor-or-self:: preceding:: preceding-sibling:: NaN"],o,o),k=A.a(q,"[\\$][\\w-:]+",q,q,"variable",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),j=t._,i=A.a(q,q,q,q,"built_in",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,A.b([A.a(q,"\\barray\\:",q,q,q,q,q,"(?:append|filter|flatten|fold\\-(?:left|right)|for-each(?:\\-pair)?|get|head|insert\\-before|join|put|remove|reverse|size|sort|subarray|tail)\\b",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\bmap\\:",q,q,q,q,q,"(?:contains|entry|find|for\\-each|get|keys|merge|put|remove|size)\\b",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\bmath\\:",q,q,q,q,q,"(?:a(?:cos|sin|tan[2]?)|cos|exp(?:10)?|log(?:10)?|pi|pow|sin|sqrt|tan)\\b",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\bop\\:",q,q,q,q,q,p,q,q,q,q,!0,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\bfn\\:",q,q,q,q,q,p,q,q,q,q,!0,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"[^<\\/\\$\\:'\"-]\\b(?:abs|accumulator\\-(?:after|before)|adjust\\-(?:date(?:Time)?|time)\\-to\\-timezone|analyze\\-string|apply|available\\-(?:environment\\-variables|system\\-properties)|avg|base\\-uri|boolean|ceiling|codepoints?\\-(?:equal|to\\-string)|collation\\-key|collection|compare|concat|contains(?:\\-token)?|copy\\-of|count|current(?:\\-)?(?:date(?:Time)?|time|group(?:ing\\-key)?|output\\-uri|merge\\-(?:group|key))?data|dateTime|days?\\-from\\-(?:date(?:Time)?|duration)|deep\\-equal|default\\-(?:collation|language)|distinct\\-values|document(?:\\-uri)?|doc(?:\\-available)?|element\\-(?:available|with\\-id)|empty|encode\\-for\\-uri|ends\\-with|environment\\-variable|error|escape\\-html\\-uri|exactly\\-one|exists|false|filter|floor|fold\\-(?:left|right)|for\\-each(?:\\-pair)?|format\\-(?:date(?:Time)?|time|integer|number)|function\\-(?:arity|available|lookup|name)|generate\\-id|has\\-children|head|hours\\-from\\-(?:dateTime|duration|time)|id(?:ref)?|implicit\\-timezone|in\\-scope\\-prefixes|index\\-of|innermost|insert\\-before|iri\\-to\\-uri|json\\-(?:doc|to\\-xml)|key|lang|last|load\\-xquery\\-module|local\\-name(?:\\-from\\-QName)?|(?:lower|upper)\\-case|matches|max|minutes\\-from\\-(?:dateTime|duration|time)|min|months?\\-from\\-(?:date(?:Time)?|duration)|name(?:space\\-uri\\-?(?:for\\-prefix|from\\-QName)?)?|nilled|node\\-name|normalize\\-(?:space|unicode)|not|number|one\\-or\\-more|outermost|parse\\-(?:ietf\\-date|json)|path|position|(?:prefix\\-from\\-)?QName|random\\-number\\-generator|regex\\-group|remove|replace|resolve\\-(?:QName|uri)|reverse|root|round(?:\\-half\\-to\\-even)?|seconds\\-from\\-(?:dateTime|duration|time)|snapshot|sort|starts\\-with|static\\-base\\-uri|stream\\-available|string\\-?(?:join|length|to\\-codepoints)?|subsequence|substring\\-?(?:after|before)?|sum|system\\-property|tail|timezone\\-from\\-(?:date(?:Time)?|time)|tokenize|trace|trans(?:form|late)|true|type\\-available|unordered|unparsed\\-(?:entity|text)?\\-?(?:public\\-id|uri|available|lines)?|uri\\-collection|xml\\-to\\-json|years?\\-from\\-(?:date(?:Time)?|duration)|zero\\-or\\-one)\\b",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\blocal\\:",q,q,q,q,q,p,q,q,q,q,!0,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\bzip\\:",q,q,q,q,q,"(?:zip\\-file|(?:xml|html|text|binary)\\-entry| (?:update\\-)?entries)\\b",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"\\b(?:util|db|functx|app|xdmp|xmldb)\\:",q,q,q,q,q,p,q,q,q,q,!0,q,q,q,q,q,q,q,q,q,q,q,q,q)],j)),h=A.a(q,q,q,q,"string",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,A.b([A.a(q,'"',q,q,q,A.b([A.a(q,'""',q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q)],j),q,'"',q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"'",q,q,q,A.b([A.a(q,"''",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q)],j),q,"'",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],j)),g=A.a(q,u.K,q,q,"number",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q),f=A.a(q,"\\(:",q,q,"comment",A.b([A.a(q,"@\\w+",q,q,"doctag",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)],j),q,":\\)",q,q,q,q,q,q,q,q,q,q,10,q,q,q,q,q,q,q),e=A.a(q,"%[\\w-:]+",q,q,"meta",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),d=A.a(q,'\\bxquery version "[13]\\.[01]"\\s?(?:encoding ".+")?',q,q,"title",q,q,";",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),c=A.a(q,q,"element attribute comment document processing-instruction",q,q,q,q,"{",q,q,q,q,!0,q,q,q,q,q,q,q,q,q,q,q,q,q),b=A.b(["xml"],n) -return A.a(m,q,q,!1,q,A.b([k,i,h,g,f,e,d,c,A.a(q,"<([\\w\\._:\\-]+)((\\s*.*)=('|\").*('|\"))?>",q,q,q,A.b([A.a(q,"{",q,q,q,q,q,"}",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,A.b(["xquery"],n),q),A.a(q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,!0,q,q,q,q)],j),q,"(\\/[\\w\\._:\\-]+>)",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,b,q)],j),q,q,q,q,q,q,q,"(proc)|(abstract)|(extends)|(until)|(#)",l,"[a-zA-Z\\$][a-zA-Z0-9_:\\-]*",q,A.m(o,t.n),q,q,q,q,q,q,q,q)}) -s($,"bfU","aUN",()=>{var q,p,o,n,m,l,k,j,i,h=null,g="meta",f="true false yes no null",e=t.N,d=t.s,c=A.b(["yml","YAML","yaml"],d),b=t._,a=A.a(h,h,h,h,"attr",h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,A.b([A.a(h,"\\w[\\w :\\/.-]*:(?=[ \t]|$)",h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h),A.a(h,'"\\w[\\w :\\/.-]*":(?=[ \t]|$)',h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h),A.a(h,"'\\w[\\w :\\/.-]*':(?=[ \t]|$)",h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h)],b)),a0=A.a(h,"^---s*$",h,h,g,h,h,h,h,h,h,h,h,h,h,h,h,h,10,h,h,h,h,h,h,h),a1=A.a(h,"[\\|>]([0-9]?[+-])?[ ]*\\n( *)[\\S ]+\\n(\\2[\\S ]+\\n?)*",h,h,"string",h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h) -d=A.a(h,"<%[%=-]?",h,h,h,h,h,"[%-]?%>",h,h,h,!0,!0,h,h,h,h,h,0,h,h,h,h,h,A.b(["ruby"],d),h) -q=A.a(h,"![a-zA-Z_]\\w*",h,h,"type",h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h) -p=A.a(h,"!![a-zA-Z_]\\w*",h,h,"type",h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h) -o=A.a(h,"&[a-zA-Z_]\\w*$",h,h,g,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h) -n=A.a(h,"\\*[a-zA-Z_]\\w*$",h,h,g,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h) -m=A.a(h,"\\-(?=[ ]|$)",h,h,"bullet",h,h,h,h,h,h,h,h,h,h,h,h,h,0,h,h,h,h,h,h,h) -l=$.ch() -k=A.a(h,h,f,h,h,h,h,h,h,h,h,h,h,h,A.l(["literal",f],e,e),h,h,h,h,h,h,h,h,h,h,h) -j=A.a(h,"(-?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)\\b",h,h,"number",h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h) -i=A.b([A.a(h,"'",h,h,h,h,h,"'",h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h),A.a(h,'"',h,h,h,h,h,'"',h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h),A.a(h,"\\S+",h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h)],b) -return A.a(c,h,h,!0,h,A.b([a,a0,a1,d,q,p,o,n,m,l,k,j,A.a(h,h,h,h,"string",A.b([$.aZ(),A.a(h,h,h,h,"template-variable",h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,A.b([A.a(h,"{{",h,h,h,h,h,"}}",h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h),A.a(h,"%{",h,h,h,h,h,"}",h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h)],b))],b),h,h,h,h,h,h,h,h,h,h,h,h,0,h,h,h,h,h,h,i)],b),h,h,h,h,h,h,h,h,h,h,h,A.m(e,t.n),h,h,h,h,h,h,h,h)}) -s($,"bfV","aUO",()=>{var q,p,o,n,m,l,k,j="~contains~6~contains~1~contains~3",i=null,h="~contains~6~contains~1~contains~2",g="string",f="doctag",e="(?:TODO|FIXME|NOTE|BUG|XXX):",d="function",c=t._,b=A.a(i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,A.b([$.ng(),$.bw()],c)),a=$.aZ() -b=A.l([j,b,h,A.a(i,i,i,i,g,A.b([a],c),i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,A.b([A.a(i,'b"',i,i,i,i,i,'"',i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i),A.a(i,"b'",i,i,i,i,i,"'",i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i),A.a(i,"'",i,i,g,A.b([a],c),i,"'",i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i),A.a(i,'"',i,i,g,A.b([a],c),i,'"',i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i)],c))],t.N,t.n) -q=A.b(["zep"],t.s) -p=$.ba() -o=$.ch() -n=A.a(i,"@[A-Za-z]+",i,i,f,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i) -m=$.aq() -n=A.a(i,"/\\*",i,i,"comment",A.b([n,m,A.a(i,e,i,i,f,i,i,i,i,i,i,i,i,i,i,i,i,i,0,i,i,i,i,i,i,i)],c),i,"\\*/",i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i) -m=A.a(i,"__halt_compiler.+?;",i,i,"comment",A.b([m,A.a(i,e,i,i,f,i,i,i,i,i,i,i,i,i,i,i,i,i,0,i,i,i,i,i,i,i)],c),i,"false",i,i,!0,i,i,i,"__halt_compiler","[a-zA-Z_]\\w*",i,i,i,i,i,i,i,i,i,i) -a=A.a(i,"<<<['\"]?\\w+['\"]?$",i,i,g,A.b([a],c),i,"^\\w+;",i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i) -l=A.a(i,u.H,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i) -k=$.dU() -return A.a(q,i,i,!0,i,A.b([p,o,n,m,a,l,A.a(i,i,d,i,d,A.b([k,A.a(i,"\\(",i,i,"params",A.b([A.a(i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,!0,i,i,i,i),$.b_(),A.a(i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,h,i,i,i,i,i,i,i,i,i),A.a(i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,j,i,i,i,i,i,i,i,i,i)],c),i,"\\)",i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i)],c),i,"[;{]",i,i,i,i,!0,"\\$|\\[|%",i,i,i,i,i,i,i,i,i,i,i,i),A.a(i,i,"class interface",i,"class",A.b([A.a(i,i,"extends implements",i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i),k],c),i,"{",i,i,i,i,!0,'[:\\(\\$"]',i,i,i,i,i,i,i,i,i,i,i,i),A.a(i,i,"namespace",i,i,A.b([k],c),i,";",i,i,i,i,i,"[\\.']",i,i,i,i,i,i,i,i,i,i,i,i),A.a(i,i,"use",i,i,A.b([k],c),i,";",i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i),A.a(i,"=>",i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i),A.a(i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,h,i,i,i,i,i,i,i,i,i),A.a(i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,j,i,i,i,i,i,i,i,i,i)],c),i,i,i,i,i,i,i,i,"and include_once list abstract global private echo interface as static endswitch array null if endwhile or const for endforeach self var let while isset public protected exit foreach throw elseif include __FILE__ empty require_once do xor return parent clone use __CLASS__ __LINE__ else break print eval new catch __METHOD__ case exception default die require __FUNCTION__ enddeclare final try switch continue endfor endif declare unset true false trait goto instanceof insteadof __DIR__ __NAMESPACE__ yield finally int uint long ulong char uchar double float bool boolean stringlikely unlikely",i,i,b,i,i,i,i,i,i,i,i)}) -s($,"b7p","aZ",()=>{var q=null -return A.a(q,"\\\\[\\s\\S]",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q)}) -s($,"b7h","c0",()=>{var q=null -return A.a(q,"'",q,q,"string",A.b([A.a(q,"\\\\[\\s\\S]",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q)],t._),q,"'",q,q,q,q,q,"\\n",q,q,q,q,q,q,q,q,q,q,q,q)}) -s($,"b92","aM",()=>{var q=null -return A.a(q,'"',q,q,"string",A.b([A.a(q,"\\\\[\\s\\S]",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q)],t._),q,'"',q,q,q,q,q,"\\n",q,q,q,q,q,q,q,q,q,q,q,q)}) -s($,"b8Y","aq",()=>{var q=null -return A.a(q,u.x,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)}) -s($,"b7x","ba",()=>{var q=null -return A.a(q,"//",q,q,"comment",A.b([A.a(q,u.x,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"(?:TODO|FIXME|NOTE|BUG|XXX):",q,q,"doctag",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q)],t._),q,"$",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)}) -s($,"b7w","b_",()=>{var q=null -return A.a(q,"/\\*",q,q,"comment",A.b([A.a(q,u.x,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"(?:TODO|FIXME|NOTE|BUG|XXX):",q,q,"doctag",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q)],t._),q,"\\*/",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)}) -s($,"b8s","ch",()=>{var q=null -return A.a(q,"#",q,q,"comment",A.b([A.a(q,u.x,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),A.a(q,"(?:TODO|FIXME|NOTE|BUG|XXX):",q,q,"doctag",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q)],t._),q,"$",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q)}) -s($,"b8V","dB",()=>{var q=null -return A.a(q,"\\b\\d+(\\.\\d+)?",q,q,"number",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q)}) -s($,"b7y","bw",()=>{var q=null -return A.a(q,u.O,q,q,"number",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q)}) -s($,"b7q","ng",()=>{var q=null -return A.a(q,"\\b(0b[01]+)",q,q,"number",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q)}) -s($,"b7v","a3s",()=>{var q=null -return A.a(q,"\\b\\d+(\\.\\d+)?(%|em|ex|ch|rem|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx)?",q,q,"number",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q)}) -s($,"b93","yQ",()=>{var q="\\\\[\\s\\S]",p=null,o=t._ -return A.a(p,"\\/",p,p,"regexp",A.b([A.a(p,q,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p),A.a(p,"\\[",p,p,p,A.b([A.a(p,q,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p)],o),p,"\\]",p,p,p,p,p,p,p,p,p,p,0,p,p,p,p,p,p,p)],o),p,"\\/[gimuy]*",p,p,p,p,p,"\\n",p,p,p,p,p,p,p,p,p,p,p,p)}) -s($,"b9A","jk",()=>{var q=null -return A.a(q,"[a-zA-Z]\\w*",q,q,"title",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q)}) -s($,"b9R","dU",()=>{var q=null -return A.a(q,"[a-zA-Z_]\\w*",q,q,"title",q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q)}) -s($,"b8K","aG3",()=>{var q=null -return A.a(q,"\\.\\s*[a-zA-Z_]\\w*",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,0,q,q,q,q,q,q,q)}) -s($,"b7r","aP9",()=>A.aG("^[\\w!#%&'*+\\-.^`|~]+$",!0,!1,!1,!1)) -s($,"baU","aQF",()=>A.aG('["\\x00-\\x1F\\x7F]',!0,!1,!1,!1)) -s($,"bfA","aUv",()=>A.aG('[^()<>@,;:"\\\\/[\\]?={} \\t\\x00-\\x1F\\x7F]+',!0,!1,!1,!1)) -s($,"bbu","aR8",()=>A.aG("(?:\\r\\n)?[ \\t]+",!0,!1,!1,!1)) -s($,"bby","aRb",()=>A.aG('"(?:[^"\\x00-\\x1F\\x7F]|\\\\.)*"',!0,!1,!1,!1)) -s($,"bbx","aRa",()=>A.aG("\\\\(.)",!0,!1,!1,!1)) -s($,"bev","aTA",()=>A.aG('[()<>@,;:"\\\\/\\[\\]?={} \\t\\x00-\\x1F\\x7F]',!0,!1,!1,!1)) -s($,"bfN","aUI",()=>A.aG("(?:"+$.aR8().a+")*",!0,!1,!1,!1)) -s($,"b8m","aPu",()=>A.cJ([$.jl(),$.aCg()],A.ab("Rb"))) -s($,"b8u","aPv",()=>{var q=A.aG("",!1,!1,!1,!1),p=A.aG("-->",!0,!1,!1,!1),o=A.aG("\\?>",!0,!1,!1,!1),n=A.aG(">",!0,!1,!1,!1),m=A.aG("]]>",!0,!1,!1,!1),l=$.jl() -return A.b([q,p,o,n,m,l,l],A.ab("w"))}) -s($,"b8d","aPq",()=>A.aY1(A.vs(A.b([B.C8,B.CH,B.CR,B.Cv,B.Ca],t.vA),t.Yd),A.vs(A.b([A.aYJ(),new A.SY(!0,!0,A.b([A.aCL("del",2)],t.IF),A.aG("~+",!0,!1,!0,!1),126),new A.L9(A.aG("((?:(?:https?|ftp):\\/\\/|www\\.)(?:[-_a-z0-9]+\\.)*(?:[-a-z0-9]+\\.[-a-z0-9]+)[^\\s<]*[^\\s{var q=A.aG("<([a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*)>",!0,!1,!0,!1),p=A.aG("<(([a-zA-Z][a-zA-Z\\-\\+\\.]+):(?://)?[^\\s>]*)>",!0,!1,!0,!1),o=A.aG("(?:\\\\| +)\\n",!0,!1,!0,!1),n=$.aPo() -return A.vs(A.b([new A.N3(q,60),new A.La(p,null),new A.OZ(o,null),new A.Az(!0,!0,n,A.aG("\\*+",!0,!1,!0,!1),42),new A.Az(!0,!1,n,A.aG("_+",!0,!1,!0,!1),95),new A.M4(A.aG("(`+(?!`))((?:.|\\n)*?[^`])\\1(?!`)",!0,!1,!0,!1),null),new A.SI(A.aG(" \n",!0,!1,!0,!1),32)],t.xB),t.dG)}) -s($,"b7Z","aG_",()=>A.aG("[!\"#$%&'()*+,\\-./:;<=>?@\\[\\\\\\]^_`{|}~\\xA1\\xA7\\xAB\\xB6\\xB7\\xBB\\xBF\\u037E\\u0387\\u055A-\\u055F\\u0589\\u058A\\u05BE\\u05C0\\u05C3\\u05C6\\u05F3\\u05F4\\u0609\\u060A\\u060C\\u060D\\u061B\\u061E\\u061F\\u066A-\\u066D\\u06D4\\u0700-\\u070D\\u07F7-\\u07F9\\u0830-\\u083E\\u085E\\u0964\\u0965\\u0970\\u0AF0\\u0DF4\\u0E4F\\u0E5A\\u0E5B\\u0F04-\\u0F12\\u0F14\\u0F3A-\\u0F3D\\u0F85\\u0FD0-\\u0FD4\\u0FD9\\u0FDA\\u104A-\\u104F\\u10FB\\u1360-\\u1368\\u1400\\u166D\\u166E\\u169B\\u169C\\u16EB-\\u16ED\\u1735\\u1736\\u17D4-\\u17D6\\u17D8-\\u17DA\\u1800-\\u180A\\u1944\\u1945\\u1A1E\\u1A1F\\u1AA0-\\u1AA6\\u1AA8-\\u1AAD\\u1B5A-\\u1B60\\u1BFC-\\u1BFF\\u1C3B-\\u1C3F\\u1C7E\\u1C7F\\u1CC0-\\u1CC7\\u1CD3\\u2010-\\u2027\\u2030-\\u2043\\u2045-\\u2051\\u2053-\\u205E\\u207D\\u207E\\u208D\\u208E\\u2308-\\u230B\\u2329\\u232A\\u2768-\\u2775\\u27C5\\u27C6\\u27E6-\\u27EF\\u2983-\\u2998\\u29D8-\\u29DB\\u29FC\\u29FD\\u2CF9-\\u2CFC\\u2CFE\\u2CFF\\u2D70\\u2E00-\\u2E2E\\u2E30-\\u2E42\\u3001-\\u3003\\u3008-\\u3011\\u3014-\\u301F\\u3030\\u303D\\u30A0\\u30FB\\uA4FE\\uA4FF\\uA60D-\\uA60F\\uA673\\uA67E\\uA6F2-\\uA6F7\\uA874-\\uA877\\uA8CE\\uA8CF\\uA8F8-\\uA8FA\\uA8FC\\uA92E\\uA92F\\uA95F\\uA9C1-\\uA9CD\\uA9DE\\uA9DF\\uAA5C-\\uAA5F\\uAADE\\uAADF\\uAAF0\\uAAF1\\uABEB\\uFD3E\\uFD3F\\uFE10-\\uFE19\\uFE30-\\uFE52\\uFE54-\\uFE61\\uFE63\\uFE68\\uFE6A\\uFE6B\\uFF01-\\uFF03\\uFF05-\\uFF0A\\uFF0C-\\uFF0F\\uFF1A\\uFF1B\\uFF1F\\uFF20\\uFF3B-\\uFF3D\\uFF3F\\uFF5B\\uFF5D\\uFF5F-\\uFF65]",!0,!1,!1,!1)) -s($,"b88","aPo",()=>A.b([A.aCL("em",1),A.aCL("strong",2)],t.IF)) -s($,"b8I","aPC",()=>A.aG("^\\s*$",!0,!1,!1,!1)) -s($,"bd8","jl",()=>A.aG("^(?:[ \\t]*)$",!0,!1,!1,!1)) -s($,"bfe","aGL",()=>A.aG("^[ ]{0,3}(=+|-+)\\s*$",!0,!1,!1,!1)) -s($,"bdz","aGE",()=>A.aG("^ {0,3}(#{1,6})(?:[ \\x09\\x0b\\x0c].*?)?(?:\\s(#*)\\s*)?$",!0,!1,!1,!1)) -s($,"bcp","aGz",()=>A.aG("^[ ]{0,3}>[ \\t]?.*$",!0,!1,!1,!1)) -s($,"bdI","a3G",()=>A.aG("^(?: | {0,3}\\t)(.*)$",!0,!1,!1,!1)) -s($,"bcD","a3D",()=>A.aG("^([ ]{0,3})(?:(?`{3,})(?[^`]*)|(?~{3,})(?.*))$",!0,!1,!1,!1)) -s($,"bdB","a3E",()=>A.aG("^ {0,3}([-*_])[ \\t]*\\1[ \\t]*\\1(?:\\1|[ \\t])*$",!0,!1,!1,!1)) -s($,"be7","a3H",()=>A.aG("^[ ]{0,3}(?:(\\d{1,9})[\\.)]|[*+-])(?:[ \\t]+(.*))?$",!0,!1,!1,!1)) -s($,"bfs","aUp",()=>A.aG("^[ ]{0,3}\\|?([ \\t]*:?\\-+:?[ \\t]*\\|[ \\t]*)+([ \\t]|[ \\t]*:?\\-+:?[ \\t]*)?$",!0,!1,!1,!1)) -s($,"bdf","aGD",()=>A.aG("(^[ ]{0,3})\\[\\^([^\\] \\r\\n\\x00\\t]+)\\]:[ \\t]*",!0,!1,!1,!1)) -s($,"bd3","aCg",()=>A.aG("",!0,!1,!1,!1)) -s($,"bdD","a3F",()=>A.aG("^ {0,3}(?:<(?pre|script|style|textarea)(?:\\s|>|$)|(? - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/classic/frontend/ios/Runner/Base.lproj/Main.storyboard b/classic/frontend/ios/Runner/Base.lproj/Main.storyboard deleted file mode 100644 index f3c28516fb..0000000000 --- a/classic/frontend/ios/Runner/Base.lproj/Main.storyboard +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/classic/frontend/ios/Runner/GoogleService-Info.plist b/classic/frontend/ios/Runner/GoogleService-Info.plist deleted file mode 100644 index ea12c0cd4a..0000000000 --- a/classic/frontend/ios/Runner/GoogleService-Info.plist +++ /dev/null @@ -1,34 +0,0 @@ - - - - - CLIENT_ID - 387936576242-lr7i0b7lnvect4csvjmfrpkl65ejj652.apps.googleusercontent.com - REVERSED_CLIENT_ID - com.googleusercontent.apps.387936576242-lr7i0b7lnvect4csvjmfrpkl65ejj652 - API_KEY - AIzaSyAX7fHhc9a7Fjb9o89Ewz6bijX37M7Zxik - GCM_SENDER_ID - 387936576242 - PLIST_VERSION - 1 - BUNDLE_ID - com.example.autoGptFlutterClient - PROJECT_ID - prod-auto-gpt - STORAGE_BUCKET - prod-auto-gpt.appspot.com - IS_ADS_ENABLED - - IS_ANALYTICS_ENABLED - - IS_APPINVITE_ENABLED - - IS_GCM_ENABLED - - IS_SIGNIN_ENABLED - - GOOGLE_APP_ID - 1:387936576242:ios:e8378b65ce73a7f0d7a66b - - \ No newline at end of file diff --git a/classic/frontend/ios/Runner/Info.plist b/classic/frontend/ios/Runner/Info.plist deleted file mode 100644 index 2b63d46262..0000000000 --- a/classic/frontend/ios/Runner/Info.plist +++ /dev/null @@ -1,51 +0,0 @@ - - - - - CFBundleDevelopmentRegion - $(DEVELOPMENT_LANGUAGE) - CFBundleDisplayName - Auto Gpt Flutter Client - CFBundleExecutable - $(EXECUTABLE_NAME) - CFBundleIdentifier - $(PRODUCT_BUNDLE_IDENTIFIER) - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - auto_gpt_flutter_client - CFBundlePackageType - APPL - CFBundleShortVersionString - $(FLUTTER_BUILD_NAME) - CFBundleSignature - ???? - CFBundleVersion - $(FLUTTER_BUILD_NUMBER) - LSRequiresIPhoneOS - - UILaunchStoryboardName - LaunchScreen - UIMainStoryboardFile - Main - UISupportedInterfaceOrientations - - UIInterfaceOrientationPortrait - UIInterfaceOrientationLandscapeLeft - UIInterfaceOrientationLandscapeRight - - UISupportedInterfaceOrientations~ipad - - UIInterfaceOrientationPortrait - UIInterfaceOrientationPortraitUpsideDown - UIInterfaceOrientationLandscapeLeft - UIInterfaceOrientationLandscapeRight - - UIViewControllerBasedStatusBarAppearance - - CADisableMinimumFrameDurationOnPhone - - UIApplicationSupportsIndirectInputEvents - - - diff --git a/classic/frontend/ios/Runner/Runner-Bridging-Header.h b/classic/frontend/ios/Runner/Runner-Bridging-Header.h deleted file mode 100644 index 308a2a560b..0000000000 --- a/classic/frontend/ios/Runner/Runner-Bridging-Header.h +++ /dev/null @@ -1 +0,0 @@ -#import "GeneratedPluginRegistrant.h" diff --git a/classic/frontend/ios/RunnerTests/RunnerTests.swift b/classic/frontend/ios/RunnerTests/RunnerTests.swift deleted file mode 100644 index 86a7c3b1b6..0000000000 --- a/classic/frontend/ios/RunnerTests/RunnerTests.swift +++ /dev/null @@ -1,12 +0,0 @@ -import Flutter -import UIKit -import XCTest - -class RunnerTests: XCTestCase { - - func testExample() { - // If you add code to the Runner application, consider adding tests here. - // See https://developer.apple.com/documentation/xctest for more information about using XCTest. - } - -} diff --git a/classic/frontend/lib/constants/app_colors.dart b/classic/frontend/lib/constants/app_colors.dart deleted file mode 100644 index fb622364aa..0000000000 --- a/classic/frontend/lib/constants/app_colors.dart +++ /dev/null @@ -1,60 +0,0 @@ -import 'package:flutter/material.dart'; - -class AppColors { - // Light Mode Colors - static const accentDeniedLight = Color(0xFFAC4866); - static const accentAffirmativeLight = Color(0xFF4F9F79); - static const accent4Light = Color(0xFFBBA7C4); - static const accent5Light = Color(0xFF53A09F); - static const newChatLight = Color(0xFF57C8B4); - static const adjustedPrimaryLight = Color(0xFF22A2A2); - static const primaryLight = Color(0xFF128787); - static const ultraWhiteLight = Color(0xFF243036); - static const whiteFillLight = Color(0xFFFFFFFF); - static const logsTextLight = Color(0xFF255E54); - static const logsTitleUnselectedLight = Color(0xFF464956); - static const neutral1Light = Color(0xFF99A7B5); - static const neutralBetween1and2Light = Color(0xFF8A9BAB); - static const neutral2Light = Color(0xFF7B8EA0); - static const tooltipLight = Color(0xFF9CA4B6); - static const chatHistoryTabLight = Color(0xFFDDE2EA); - static const cardLight = Color(0xFFF8FAFD); - static const skilltreeBackgroundLight = Color(0xFFEFF2F8); - static const codeBlockArtefactsLight = Color(0xFFDDE2EA); - static const promptBarTestPanelLight = Color(0xFFBFC7D3); - static const logsBackgroundLight = Color(0xFFBFC7D3); - static const logsBarStrokeLight = Color(0xFF82A19C); - static const skillTreeTitleLight = Color(0xFFA4B4C4); - static const defaultLight = Color(0xFFA4B4C4); - static const chatBackgroundLight = Color(0xFFDDE2EA); - static const panelBackgroundLight = Color(0xFFFEFEFF); - - // Dark Mode Colors - static const accentDeniedDark = Color(0xFF8D3650); - static const accentAffirmativeDark = Color(0xFF3E8463); - static const accent4Dark = Color(0xFFBBA7C4); // Same as light mode - static const accent5Dark = Color(0xFF87B1AA); - static const newChatDark = Color(0xFF8BE0D1); - static const adjustedPrimaryDark = Color(0xFF22A2A2); // Same as light mode - static const primaryDark = Color(0xFF128787); // Same as light mode - static const ultraWhiteDark = Color(0xFFFFFFFF); - static const whiteFillDark = Color(0xFFFFFFFF); // Same as light mode - static const logsTextDark = Color(0xFFD6E7E4); - static const logsTitleUnselectedDark = Color(0xFF8D909C); - static const neutral1Dark = Color(0xFF9CA0AF); - static const neutralBetween1and2Dark = Color(0xFF7E818E); - static const neutral2Dark = Color(0xFF5F626D); - static const tooltipDark = Color(0xFF404550); - static const chatHistoryTabDark = Color(0xFF292B33); - static const cardDark = Color(0xFF292B33); - static const skilltreeBackgroundDark = Color(0xFF24262E); - static const codeBlockArtefactsDark = Color(0xFF1E2029); - static const promptBarTestPanelDark = Color(0xFF1D1F25); - static const logsBackgroundDark = Color(0xFF121419); - static const logsBarStrokeDark = - Color(0xFF121419); // Same as logsBackgroundDark - static const skillTreeTitleDark = Color(0xFF1D1F25); - static const defaultDark = Color(0xFF3D424D); - static const chatBackgroundDark = Color(0xFF171A21); - static const panelBackgroundDark = Color(0xFF1D1F25); -} diff --git a/classic/frontend/lib/main.dart b/classic/frontend/lib/main.dart deleted file mode 100644 index 8e0cac4776..0000000000 --- a/classic/frontend/lib/main.dart +++ /dev/null @@ -1,134 +0,0 @@ -import 'package:auto_gpt_flutter_client/services/leaderboard_service.dart'; -import 'package:auto_gpt_flutter_client/services/shared_preferences_service.dart'; -import 'package:auto_gpt_flutter_client/viewmodels/settings_viewmodel.dart'; -import 'package:auto_gpt_flutter_client/viewmodels/task_queue_viewmodel.dart'; -import 'package:auto_gpt_flutter_client/views/auth/firebase_auth_view.dart'; -import 'package:flutter/material.dart'; -import 'views/main_layout.dart'; -import 'package:provider/provider.dart'; -import 'package:firebase_core/firebase_core.dart'; -import 'package:firebase_auth/firebase_auth.dart'; - -import 'package:auto_gpt_flutter_client/viewmodels/task_viewmodel.dart'; -import 'package:auto_gpt_flutter_client/viewmodels/chat_viewmodel.dart'; -import 'package:auto_gpt_flutter_client/viewmodels/skill_tree_viewmodel.dart'; - -import 'package:auto_gpt_flutter_client/services/chat_service.dart'; -import 'package:auto_gpt_flutter_client/services/task_service.dart'; -import 'package:auto_gpt_flutter_client/services/benchmark_service.dart'; - -import 'package:auto_gpt_flutter_client/utils/rest_api_utility.dart'; - -// TODO: Update documentation throughout project for consistency -void main() async { - WidgetsFlutterBinding.ensureInitialized(); - await Firebase.initializeApp( - options: const FirebaseOptions( - apiKey: 'AIzaSyBvYLAK_A0uhFuVPQbTxUdVWbb_Lsur9cg', - authDomain: 'prod-auto-gpt.firebaseapp.com', - projectId: 'prod-auto-gpt', - storageBucket: 'prod-auto-gpt.appspot.com', - messagingSenderId: '387936576242', - appId: '1:387936576242:web:7536e0c50dd81b4dd7a66b', - measurementId: 'G-8PRS69JJRL', - ), - ); - - runApp( - MultiProvider( - providers: [ - Provider( - create: (context) => RestApiUtility("http://127.0.0.1:8000/ap/v1"), - ), - Provider( - create: (context) => SharedPreferencesService.instance, - ), - ProxyProvider( - update: (context, restApiUtility, chatService) => - ChatService(restApiUtility), - ), - ProxyProvider2( - update: (context, restApiUtility, prefsService, taskService) => - TaskService(restApiUtility, prefsService), - ), - ProxyProvider( - update: (context, restApiUtility, benchmarkService) => - BenchmarkService(restApiUtility), - ), - ProxyProvider( - update: (context, restApiUtility, leaderboardService) => - LeaderboardService(restApiUtility), - ), - ChangeNotifierProxyProvider2( - create: (context) => SettingsViewModel( - Provider.of(context, listen: false), - Provider.of(context, listen: false), - ), - update: (context, restApiUtility, prefsService, settingsViewModel) => - SettingsViewModel(restApiUtility, prefsService), - ), - ], - child: MyApp(), - ), - ); -} - -class MyApp extends StatelessWidget { - @override - Widget build(BuildContext context) { - final taskService = Provider.of(context, listen: false); - taskService.loadDeletedTasks(); - - return MaterialApp( - debugShowCheckedModeBanner: false, - title: 'AutoGPT Flutter Client', - theme: ThemeData( - primarySwatch: Colors.blue, - ), - home: StreamBuilder( - stream: FirebaseAuth.instance.authStateChanges(), - builder: (context, snapshot) { - if (snapshot.connectionState == ConnectionState.waiting) { - return CircularProgressIndicator(); - } - String hostname = Uri.base.host; - - if (snapshot.hasData && snapshot.data != null || - hostname.contains('github.dev')) { - return MultiProvider( - providers: [ - ChangeNotifierProvider( - create: (context) => ChatViewModel( - Provider.of(context, listen: false), - Provider.of(context, - listen: false), - ), - ), - ChangeNotifierProvider( - create: (context) => TaskViewModel( - Provider.of(context, listen: false), - Provider.of(context, - listen: false), - ), - ), - ChangeNotifierProvider( - create: (context) => SkillTreeViewModel()), - ChangeNotifierProvider( - create: (context) => TaskQueueViewModel( - Provider.of(context, listen: false), - Provider.of(context, listen: false), - Provider.of(context, - listen: false), - ), - ), - ], - child: MainLayout(), - ); // User is signed in - } - return FirebaseAuthView(); // User is not signed in, show auth UI - }, - ), - ); - } -} diff --git a/classic/frontend/lib/models/artifact.dart b/classic/frontend/lib/models/artifact.dart deleted file mode 100644 index 7e6f3d0758..0000000000 --- a/classic/frontend/lib/models/artifact.dart +++ /dev/null @@ -1,62 +0,0 @@ -/// `Artifact` class represents an artifact either created by or submitted to the agent. -/// -/// Each artifact object contains an ID, a flag indicating if it was created by the agent, -/// a file name, and a relative path of the artifact in the agent's workspace. -class Artifact { - // ID of the artifact. - final String artifactId; - - // Whether the artifact has been created by the agent. - final bool agentCreated; - - // Filename of the artifact. - final String fileName; - - // Relative path of the artifact in the agent's workspace. - final String? relativePath; - - /// Creates an `Artifact` instance. - /// - /// - `artifactId`: ID of the artifact. This is a required field. - /// - `agentCreated`: Indicates whether the artifact was created by the agent. This is a required field. - /// - `fileName`: The file name of the artifact. This is a required field. - /// - `relativePath`: The relative path of the artifact in the agent's workspace. This field can be null. - Artifact({ - required this.artifactId, - required this.agentCreated, - required this.fileName, - this.relativePath, - }); - - /// Creates an `Artifact` instance from a map. - /// - /// This constructor is used for deserializing a JSON object into an `Artifact` instance. - /// It expects all the required fields to be present; otherwise, an error will be thrown. - /// - /// - `map`: The map from which the `Artifact` instance will be created. - factory Artifact.fromJson(Map map) { - if (map['artifact_id'] == null || - map['agent_created'] == null || - map['file_name'] == null) { - throw const FormatException( - 'Invalid JSON: Missing one of the required fields.'); - } - - return Artifact( - artifactId: map['artifact_id'], - agentCreated: map['agent_created'], - fileName: map['file_name'], - relativePath: map['relative_path'], - ); - } - - /// Converts the `Artifact` instance into a JSON object. - /// - /// This can be useful for encoding the `Artifact` object into a JSON string. - Map toJson() => { - 'artifact_id': artifactId, - 'agent_created': agentCreated, - 'file_name': fileName, - 'relative_path': relativePath, - }; -} diff --git a/classic/frontend/lib/models/benchmark/api_type.dart b/classic/frontend/lib/models/benchmark/api_type.dart deleted file mode 100644 index b94fb65d68..0000000000 --- a/classic/frontend/lib/models/benchmark/api_type.dart +++ /dev/null @@ -1,5 +0,0 @@ -enum ApiType { - agent, - benchmark, - leaderboard, -} diff --git a/classic/frontend/lib/models/benchmark/benchmark_run.dart b/classic/frontend/lib/models/benchmark/benchmark_run.dart deleted file mode 100644 index e2af63b33e..0000000000 --- a/classic/frontend/lib/models/benchmark/benchmark_run.dart +++ /dev/null @@ -1,73 +0,0 @@ -import 'package:auto_gpt_flutter_client/models/benchmark/config.dart'; -import 'package:auto_gpt_flutter_client/models/benchmark/metrics.dart'; -import 'package:auto_gpt_flutter_client/models/benchmark/repository_info.dart'; -import 'package:auto_gpt_flutter_client/models/benchmark/run_details.dart'; -import 'package:auto_gpt_flutter_client/models/benchmark/task_info.dart'; - -// TODO: Remove the ability to have null values when benchmark implementation is complete -/// `BenchmarkRun` represents a complete benchmark run and encapsulates all associated data. -/// -/// This class is a comprehensive model that includes various sub-models, each corresponding to a different aspect of a benchmark run. -/// It includes repository information, run details, task information, metrics, a flag indicating if the cutoff was reached, and configuration settings. -class BenchmarkRun { - /// Information about the repository and team associated with the benchmark run. - final RepositoryInfo repositoryInfo; - - /// Specific details about the benchmark run, like unique run identifier, command, and timings. - final RunDetails runDetails; - - /// Information about the task being benchmarked, including its description and expected answer. - final TaskInfo taskInfo; - - /// Performance metrics related to the benchmark run. - final Metrics metrics; - - /// A boolean flag indicating whether the benchmark run reached a certain cutoff. - final bool reachedCutoff; - - /// Configuration settings related to the benchmark run. - final Config config; - - /// Constructs a new `BenchmarkRun` instance. - /// - /// [repositoryInfo]: Information about the repository and team. - /// [runDetails]: Specific details about the benchmark run. - /// [taskInfo]: Information about the task being benchmarked. - /// [metrics]: Performance metrics for the benchmark run. - /// [reachedCutoff]: A flag indicating if the benchmark run reached a certain cutoff. - /// [config]: Configuration settings for the benchmark run. - BenchmarkRun({ - required this.repositoryInfo, - required this.runDetails, - required this.taskInfo, - required this.metrics, - required this.reachedCutoff, - required this.config, - }); - - /// Creates a `BenchmarkRun` instance from a map. - /// - /// [json]: A map containing key-value pairs corresponding to `BenchmarkRun` fields. - /// - /// Returns a new `BenchmarkRun` populated with values from the map. - factory BenchmarkRun.fromJson(Map json) => BenchmarkRun( - repositoryInfo: RepositoryInfo.fromJson(json['repository_info']), - runDetails: RunDetails.fromJson(json['run_details']), - taskInfo: TaskInfo.fromJson(json['task_info']), - metrics: Metrics.fromJson(json['metrics']), - reachedCutoff: json['reached_cutoff'] ?? false, - config: Config.fromJson(json['config']), - ); - - /// Converts the `BenchmarkRun` instance to a map. - /// - /// Returns a map containing key-value pairs corresponding to `BenchmarkRun` fields. - Map toJson() => { - 'repository_info': repositoryInfo.toJson(), - 'run_details': runDetails.toJson(), - 'task_info': taskInfo.toJson(), - 'metrics': metrics.toJson(), - 'reached_cutoff': reachedCutoff, - 'config': config.toJson(), - }; -} diff --git a/classic/frontend/lib/models/benchmark/benchmark_step_request_body.dart b/classic/frontend/lib/models/benchmark/benchmark_step_request_body.dart deleted file mode 100644 index 049320666d..0000000000 --- a/classic/frontend/lib/models/benchmark/benchmark_step_request_body.dart +++ /dev/null @@ -1,12 +0,0 @@ -class BenchmarkStepRequestBody { - final String? input; - - BenchmarkStepRequestBody({required this.input}); - - Map toJson() { - if (input == null) { - return {}; - } - return {'input': input}; - } -} diff --git a/classic/frontend/lib/models/benchmark/benchmark_task_request_body.dart b/classic/frontend/lib/models/benchmark/benchmark_task_request_body.dart deleted file mode 100644 index 9cd12322a5..0000000000 --- a/classic/frontend/lib/models/benchmark/benchmark_task_request_body.dart +++ /dev/null @@ -1,13 +0,0 @@ -class BenchmarkTaskRequestBody { - final String input; - final String evalId; - - BenchmarkTaskRequestBody({required this.input, required this.evalId}); - - Map toJson() { - return { - 'input': input, - 'eval_id': evalId, - }; - } -} diff --git a/classic/frontend/lib/models/benchmark/benchmark_task_status.dart b/classic/frontend/lib/models/benchmark/benchmark_task_status.dart deleted file mode 100644 index 0516ae07b0..0000000000 --- a/classic/frontend/lib/models/benchmark/benchmark_task_status.dart +++ /dev/null @@ -1,7 +0,0 @@ -// TODO: Put more thoughts into task status vs. benchmark task status -enum BenchmarkTaskStatus { - notStarted, - inProgress, - success, - failure, -} diff --git a/classic/frontend/lib/models/benchmark/config.dart b/classic/frontend/lib/models/benchmark/config.dart deleted file mode 100644 index 079f5934b8..0000000000 --- a/classic/frontend/lib/models/benchmark/config.dart +++ /dev/null @@ -1,43 +0,0 @@ -// TODO: Remove the ability to have null values when benchmark implementation is complete -/// `Config` holds configuration settings related to the benchmark run. -/// -/// It contains the path to the benchmark configuration for the agent and -/// the host address where the benchmark is running. -class Config { - /// The path to the configuration file for the agent's benchmark. - /// This is typically a JSON file specifying various settings and parameters - /// for the benchmark run. - final String agentBenchmarkConfigPath; - - /// The host address where the benchmark is running. - /// This could be a local or remote server address. - final String host; - - /// Constructs a new `Config` instance. - /// - /// [agentBenchmarkConfigPath]: The path to the agent's benchmark configuration file. - /// [host]: The host address where the benchmark is running. - Config({ - required this.agentBenchmarkConfigPath, - required this.host, - }); - - /// Creates a `Config` instance from a map. - /// - /// [json]: A map containing key-value pairs corresponding to `Config` fields. - /// - /// Returns a new `Config` populated with values from the map. - factory Config.fromJson(Map json) => Config( - agentBenchmarkConfigPath: - json['agent_benchmark_config_path'] ?? 'placeholder', - host: json['host'] ?? 'https://github.com/Significant-Gravitas/AutoGPT', - ); - - /// Converts the `Config` instance to a map. - /// - /// Returns a map containing key-value pairs corresponding to `Config` fields. - Map toJson() => { - 'agent_benchmark_config_path': agentBenchmarkConfigPath, - 'host': host, - }; -} diff --git a/classic/frontend/lib/models/benchmark/metrics.dart b/classic/frontend/lib/models/benchmark/metrics.dart deleted file mode 100644 index 7c3a525191..0000000000 --- a/classic/frontend/lib/models/benchmark/metrics.dart +++ /dev/null @@ -1,70 +0,0 @@ -// TODO: Remove the ability to have null values when benchmark implementation is complete -/// `Metrics` holds key performance metrics related to a benchmark test run. -/// -/// The class encapsulates various data points like difficulty, success rate, -/// whether the task was attempted, the percentage of success, and other performance metrics. -class Metrics { - /// The perceived difficulty level of the test, usually represented as a string. - final String difficulty; - - /// A boolean indicating whether the test was successful. - final bool success; - - /// A boolean indicating whether the test was attempted. - final bool attempted; - - /// The percentage of success in the test, represented as a double. - final double successPercentage; - - /// The cost metric, can be any type depending on what is being measured (time, resources, etc.). - /// It is dynamic to allow for various types. - final dynamic cost; - - /// The total runtime of the test, represented as a string. - final String runTime; - - /// Constructs a new `Metrics` instance. - /// - /// [difficulty]: The perceived difficulty level of the test. - /// [success]: A boolean indicating the success status of the test. - /// [attempted]: A boolean indicating if the test was attempted. - /// [successPercentage]: The success rate as a percentage. - /// [cost]: The cost metric for the test. - /// [runTime]: The total runtime of the test. - Metrics({ - required this.difficulty, - required this.success, - required this.attempted, - required this.successPercentage, - required this.cost, - required this.runTime, - }); - - /// Creates a `Metrics` instance from a map. - /// - /// [json]: A map containing key-value pairs corresponding to `Metrics` fields. - /// - /// Returns a new `Metrics` populated with values from the map. - factory Metrics.fromJson(Map json) => Metrics( - difficulty: json['difficulty'] ?? 'placeholder', - success: json['success'], - attempted: json['attempted'] ?? false, - successPercentage: (json['success_percentage'] != null) - ? json['success_percentage'].toDouble() - : 0.0, - cost: json['cost'] ?? 'placeholder', - runTime: json['run_time'] ?? 'placeholder', - ); - - /// Converts the `Metrics` instance to a map. - /// - /// Returns a map containing key-value pairs corresponding to `Metrics` fields. - Map toJson() => { - 'difficulty': difficulty, - 'success': success, - 'attempted': attempted, - 'success_percentage': successPercentage, - 'cost': cost, - 'run_time': runTime, - }; -} diff --git a/classic/frontend/lib/models/benchmark/repository_info.dart b/classic/frontend/lib/models/benchmark/repository_info.dart deleted file mode 100644 index 18720d3847..0000000000 --- a/classic/frontend/lib/models/benchmark/repository_info.dart +++ /dev/null @@ -1,54 +0,0 @@ -// TODO: Remove the ability to have null values when benchmark implementation is complete -/// `RepositoryInfo` encapsulates details about the repository and team associated with a benchmark run. -/// -/// This class contains essential information like the repository URL, team name, and the Git commit SHA for both the benchmark and the agent. -class RepositoryInfo { - /// The URL of the repository where the benchmark code resides. - String repoUrl; - - /// The name of the team responsible for the benchmark. - String teamName; - - /// The Git commit SHA for the benchmark. This helps in tracing the exact version of the benchmark code. - String benchmarkGitCommitSha; - - /// The Git commit SHA for the agent. This helps in tracing the exact version of the agent code. - String agentGitCommitSha; - - /// Constructs a new `RepositoryInfo` instance. - /// - /// [repoUrl]: The URL of the benchmark repository. - /// [teamName]: The name of the team responsible for the benchmark. - /// [benchmarkGitCommitSha]: The Git commit SHA for the benchmark. - /// [agentGitCommitSha]: The Git commit SHA for the agent. - RepositoryInfo({ - required this.repoUrl, - required this.teamName, - required this.benchmarkGitCommitSha, - required this.agentGitCommitSha, - }); - - /// Creates a `RepositoryInfo` instance from a map. - /// - /// [json]: A map containing key-value pairs corresponding to `RepositoryInfo` fields. - /// - /// Returns a new `RepositoryInfo` populated with values from the map. - factory RepositoryInfo.fromJson(Map json) => RepositoryInfo( - repoUrl: json['repo_url'] ?? - 'https://github.com/Significant-Gravitas/AutoGPT', - teamName: json['team_name'] ?? 'placeholder', - benchmarkGitCommitSha: - json['benchmark_git_commit_sha'] ?? 'placeholder', - agentGitCommitSha: json['agent_git_commit_sha'] ?? 'placeholder', - ); - - /// Converts the `RepositoryInfo` instance to a map. - /// - /// Returns a map containing key-value pairs corresponding to `RepositoryInfo` fields. - Map toJson() => { - 'repo_url': repoUrl, - 'team_name': teamName, - 'benchmark_git_commit_sha': benchmarkGitCommitSha, - 'agent_git_commit_sha': agentGitCommitSha, - }; -} diff --git a/classic/frontend/lib/models/benchmark/run_details.dart b/classic/frontend/lib/models/benchmark/run_details.dart deleted file mode 100644 index 2ef0ee48b3..0000000000 --- a/classic/frontend/lib/models/benchmark/run_details.dart +++ /dev/null @@ -1,64 +0,0 @@ -// TODO: Remove the ability to have null values when benchmark implementation is complete -/// `RunDetails` encapsulates specific details about a benchmark run. -/// -/// This class holds attributes such as the unique run identifier, the command used to initiate the run, -/// the time of completion, the time when the benchmark started, and the name of the test. -class RunDetails { - /// The unique identifier for the benchmark run, typically a UUID. - String runId; - - /// The command used to initiate the benchmark run. - final String command; - - /// The completion time of the benchmark run as a `DateTime` object. - final DateTime completionTime; - - /// The start time of the benchmark run as a `DateTime` object. - final DateTime benchmarkStartTime; - - /// The name of the test associated with this benchmark run. - final String testName; - - /// Constructs a new `RunDetails` instance. - /// - /// [runId]: The unique identifier for the benchmark run. - /// [command]: The command used to initiate the run. - /// [completionTime]: The completion time of the run. - /// [benchmarkStartTime]: The start time of the run. - /// [testName]: The name of the test. - RunDetails({ - required this.runId, - required this.command, - required this.completionTime, - required this.benchmarkStartTime, - required this.testName, - }); - - /// Creates a `RunDetails` instance from a map. - /// - /// [json]: A map containing key-value pairs corresponding to `RunDetails` fields. - /// - /// Returns a new `RunDetails` populated with values from the map. - factory RunDetails.fromJson(Map json) => RunDetails( - runId: json['run_id'] ?? 'placerholder', - command: json['command'] ?? 'placeholder', - completionTime: json['completion_time'] == null - ? DateTime.now() - : DateTime.parse(json['completion_time']), - benchmarkStartTime: json['benchmark_start_time'] == null - ? DateTime.now() - : DateTime.parse(json['benchmark_start_time']), - testName: json['test_name'] ?? 'placeholder', - ); - - /// Converts the `RunDetails` instance to a map. - /// - /// Returns a map containing key-value pairs corresponding to `RunDetails` fields. - Map toJson() => { - 'run_id': runId, - 'command': command, - 'completion_time': completionTime.toIso8601String(), - 'benchmark_start_time': benchmarkStartTime.toIso8601String(), - 'test_name': testName, - }; -} diff --git a/classic/frontend/lib/models/benchmark/task_info.dart b/classic/frontend/lib/models/benchmark/task_info.dart deleted file mode 100644 index a79e8d5007..0000000000 --- a/classic/frontend/lib/models/benchmark/task_info.dart +++ /dev/null @@ -1,71 +0,0 @@ -// TODO: Remove the ability to have null values when benchmark implementation is complete -import 'dart:convert'; - -/// TaskInfo holds information related to a specific benchmark task. -/// -/// The class encapsulates various attributes of a task, such as the path to the data file, -/// whether the task is a regression task, the categories it falls under, and specific task details -/// like the task description, expected answer, and so on. -class TaskInfo { - /// The path to the data file associated with the task. - /// This is typically a JSON file containing the dataset or resources needed for the task. - final String dataPath; - - /// A boolean indicating whether the task is a regression task. - final bool isRegression; - - /// A list of categories to which the task belongs. - final List category; - - /// The specific task that needs to be performed. - final String task; - - /// The expected answer for the task. - final String answer; - - /// A description providing details about the task. - final String description; - - /// Constructs a new TaskInfo instance. - /// - /// [dataPath]: The path to the data file for the task. - /// [isRegression]: A boolean indicating if the task is a regression task. - /// [category]: A list of categories to which the task belongs. - /// [task]: The specific task to be performed. - /// [answer]: The expected answer for the task. - /// [description]: A description of the task. - TaskInfo({ - required this.dataPath, - required this.isRegression, - required this.category, - required this.task, - required this.answer, - required this.description, - }); - - /// Creates a TaskInfo instance from a map. - /// - /// [json]: A map containing key-value pairs corresponding to TaskInfo fields. - /// - /// Returns a new TaskInfo populated with values from the map. - factory TaskInfo.fromJson(Map json) => TaskInfo( - dataPath: json['data_path'] ?? 'placeholder', - isRegression: json['is_regression'] ?? false, - category: List.from(json['category']), - task: json['task'] ?? 'placeholder', - answer: json['answer'] ?? 'placeholder', - description: json['description'] ?? 'placeholder', - ); - - /// Converts the TaskInfo instance to a map. - /// - /// Returns a map containing key-value pairs corresponding to TaskInfo fields. - Map toJson() => { - 'data_path': dataPath, - 'is_regression': isRegression, - 'category': jsonEncode(category), - 'task': task, - 'answer': answer, - 'description': description, - }; -} diff --git a/classic/frontend/lib/models/chat.dart b/classic/frontend/lib/models/chat.dart deleted file mode 100644 index 6002f147f2..0000000000 --- a/classic/frontend/lib/models/chat.dart +++ /dev/null @@ -1,64 +0,0 @@ -import 'package:auto_gpt_flutter_client/models/artifact.dart'; -import 'package:auto_gpt_flutter_client/models/message_type.dart'; - -/// Represents a chat message related to a specific task. -class Chat { - final String id; - final String taskId; - final String message; - final DateTime timestamp; - final MessageType messageType; - final Map? jsonResponse; - final List artifacts; - - Chat({ - required this.id, - required this.taskId, - required this.message, - required this.timestamp, - required this.messageType, - this.jsonResponse, - required this.artifacts, - }); - - // Convert a Map (usually from JSON) to a Chat object - factory Chat.fromMap(Map map) { - return Chat( - id: map['id'], - taskId: map['taskId'], - message: map['message'], - timestamp: DateTime.parse(map['timestamp']), - messageType: MessageType.values.firstWhere( - (e) => e.toString() == 'MessageType.${map['messageType']}'), - artifacts: (map['artifacts'] as List) - .map( - (artifact) => Artifact.fromJson(artifact as Map)) - .toList(), - ); - } - - @override - bool operator ==(Object other) => - identical(this, other) || - other is Chat && - runtimeType == other.runtimeType && - id == other.id && - taskId == other.taskId && - message == other.message && - timestamp == other.timestamp && - messageType == other.messageType && - artifacts == other.artifacts; - - @override - int get hashCode => - id.hashCode ^ - taskId.hashCode ^ - message.hashCode ^ - timestamp.hashCode ^ - messageType.hashCode ^ - artifacts.hashCode; - - @override - String toString() => - 'Chat(id: $id, taskId: $taskId, message: $message, timestamp: $timestamp, messageType: $messageType, artifacts: $artifacts)'; // Added artifacts in toString method -} diff --git a/classic/frontend/lib/models/message_type.dart b/classic/frontend/lib/models/message_type.dart deleted file mode 100644 index f860cacfb8..0000000000 --- a/classic/frontend/lib/models/message_type.dart +++ /dev/null @@ -1,5 +0,0 @@ -/// Enum representing the type of the chat message. -enum MessageType { - user, - agent, -} diff --git a/classic/frontend/lib/models/pagination.dart b/classic/frontend/lib/models/pagination.dart deleted file mode 100644 index cac391c928..0000000000 --- a/classic/frontend/lib/models/pagination.dart +++ /dev/null @@ -1,22 +0,0 @@ -class Pagination { - final int totalItems; - final int totalPages; - final int currentPage; - final int pageSize; - - Pagination({ - required this.totalItems, - required this.totalPages, - required this.currentPage, - required this.pageSize, - }); - - factory Pagination.fromJson(Map json) { - return Pagination( - totalItems: json['total_items'], - totalPages: json['total_pages'], - currentPage: json['current_page'], - pageSize: json['page_size'], - ); - } -} diff --git a/classic/frontend/lib/models/skill_tree/ground.dart b/classic/frontend/lib/models/skill_tree/ground.dart deleted file mode 100644 index 9f449c75f2..0000000000 --- a/classic/frontend/lib/models/skill_tree/ground.dart +++ /dev/null @@ -1,25 +0,0 @@ -class Ground { - final String answer; - final List shouldContain; - final List shouldNotContain; - final List files; - final Map eval; - - Ground({ - required this.answer, - required this.shouldContain, - required this.shouldNotContain, - required this.files, - required this.eval, - }); - - factory Ground.fromJson(Map json) { - return Ground( - answer: json['answer'] ?? "", - shouldContain: List.from(json['should_contain'] ?? []), - shouldNotContain: List.from(json['should_not_contain'] ?? []), - files: List.from(json['files'] ?? []), - eval: json['eval'] ?? {}, - ); - } -} diff --git a/classic/frontend/lib/models/skill_tree/info.dart b/classic/frontend/lib/models/skill_tree/info.dart deleted file mode 100644 index 2f8b289fbc..0000000000 --- a/classic/frontend/lib/models/skill_tree/info.dart +++ /dev/null @@ -1,19 +0,0 @@ -class Info { - final String difficulty; - final String description; - final List sideEffects; - - Info({ - required this.difficulty, - required this.description, - required this.sideEffects, - }); - - factory Info.fromJson(Map json) { - return Info( - difficulty: json['difficulty'] ?? "", - description: json['description'] ?? "", - sideEffects: List.from(json['side_effects'] ?? []), - ); - } -} diff --git a/classic/frontend/lib/models/skill_tree/skill_node_data.dart b/classic/frontend/lib/models/skill_tree/skill_node_data.dart deleted file mode 100644 index f8c25eea07..0000000000 --- a/classic/frontend/lib/models/skill_tree/skill_node_data.dart +++ /dev/null @@ -1,37 +0,0 @@ -import 'package:auto_gpt_flutter_client/models/skill_tree/ground.dart'; -import 'package:auto_gpt_flutter_client/models/skill_tree/info.dart'; - -class SkillNodeData { - final String name; - final List category; - final String task; - final List dependencies; - final int cutoff; - final Ground ground; - final Info info; - final String evalId; - - SkillNodeData({ - required this.name, - required this.category, - required this.task, - required this.dependencies, - required this.cutoff, - required this.ground, - required this.info, - required this.evalId, - }); - - factory SkillNodeData.fromJson(Map json) { - return SkillNodeData( - name: json['name'] ?? "", - category: List.from(json['category'] ?? []), - task: json['task'] ?? "", - dependencies: List.from(json['dependencies'] ?? []), - cutoff: json['cutoff'] ?? 0, - ground: Ground.fromJson(json['ground'] ?? {}), - info: Info.fromJson(json['info'] ?? {}), - evalId: json['eval_id'] ?? "", - ); - } -} diff --git a/classic/frontend/lib/models/skill_tree/skill_tree_category.dart b/classic/frontend/lib/models/skill_tree/skill_tree_category.dart deleted file mode 100644 index c00c0ce799..0000000000 --- a/classic/frontend/lib/models/skill_tree/skill_tree_category.dart +++ /dev/null @@ -1,38 +0,0 @@ -enum SkillTreeCategory { - general, - coding, - data, - scrapeSynthesize, -} - -extension SkillTreeTypeExtension on SkillTreeCategory { - String get stringValue { - switch (this) { - case SkillTreeCategory.general: - return 'General'; - case SkillTreeCategory.coding: - return 'Coding'; - case SkillTreeCategory.data: - return 'Data'; - case SkillTreeCategory.scrapeSynthesize: - return 'Scrape/Synthesize'; - default: - return ''; - } - } - - String get jsonFileName { - switch (this) { - case SkillTreeCategory.general: - return 'general_tree_structure.json'; - case SkillTreeCategory.coding: - return 'coding_tree_structure.json'; - case SkillTreeCategory.data: - return 'data_tree_structure.json'; - case SkillTreeCategory.scrapeSynthesize: - return 'scrape_synthesize_tree_structure.json'; - default: - return ''; - } - } -} diff --git a/classic/frontend/lib/models/skill_tree/skill_tree_edge.dart b/classic/frontend/lib/models/skill_tree/skill_tree_edge.dart deleted file mode 100644 index 4b7abd5067..0000000000 --- a/classic/frontend/lib/models/skill_tree/skill_tree_edge.dart +++ /dev/null @@ -1,23 +0,0 @@ -class SkillTreeEdge { - final String id; - final String from; - final String to; - final String arrows; - - SkillTreeEdge({ - required this.id, - required this.from, - required this.to, - required this.arrows, - }); - - // Optionally, add a factory constructor to initialize from JSON - factory SkillTreeEdge.fromJson(Map json) { - return SkillTreeEdge( - id: json['id'], - from: json['from'], - to: json['to'], - arrows: json['arrows'], - ); - } -} diff --git a/classic/frontend/lib/models/skill_tree/skill_tree_node.dart b/classic/frontend/lib/models/skill_tree/skill_tree_node.dart deleted file mode 100644 index 5d007739c8..0000000000 --- a/classic/frontend/lib/models/skill_tree/skill_tree_node.dart +++ /dev/null @@ -1,27 +0,0 @@ -import 'package:auto_gpt_flutter_client/models/skill_tree/skill_node_data.dart'; - -class SkillTreeNode { - final String color; - final SkillNodeData data; - final String id; - final String label; - final String shape; - - SkillTreeNode({ - required this.color, - required this.data, - required this.id, - required this.label, - required this.shape, - }); - - factory SkillTreeNode.fromJson(Map json) { - return SkillTreeNode( - color: json['color'] ?? "", - data: SkillNodeData.fromJson(json['data'] ?? {}), - id: json['id'] ?? "", - label: json['label'] ?? "", - shape: json['shape'] ?? "", - ); - } -} diff --git a/classic/frontend/lib/models/step.dart b/classic/frontend/lib/models/step.dart deleted file mode 100644 index 2cb5961755..0000000000 --- a/classic/frontend/lib/models/step.dart +++ /dev/null @@ -1,53 +0,0 @@ -// TODO: Refactor this to match which values are required and optional -import 'package:auto_gpt_flutter_client/models/artifact.dart'; - -class Step { - final String input; - final Map additionalInput; - final String taskId; - final String stepId; - final String name; - final String status; - final String output; - final Map additionalOutput; - final List artifacts; - final bool isLast; - - Step({ - required this.input, - required this.additionalInput, - required this.taskId, - required this.stepId, - required this.name, - required this.status, - required this.output, - required this.additionalOutput, - required this.artifacts, - required this.isLast, - }); - - factory Step.fromMap(Map? map) { - if (map == null) { - throw ArgumentError('Null map provided to Step.fromMap'); - } - return Step( - input: map['input'] ?? '', - additionalInput: map['additional_input'] != null - ? Map.from(map['additional_input']) - : {}, - taskId: map['task_id'] ?? '', - stepId: map['step_id'] ?? '', - name: map['name'] ?? '', - status: map['status'] ?? '', - output: map['output'] ?? '', - additionalOutput: map['additional_output'] != null - ? Map.from(map['additional_output']) - : {}, - artifacts: (map['artifacts'] as List) - .map( - (artifact) => Artifact.fromJson(artifact as Map)) - .toList(), - isLast: map['is_last'] ?? false, - ); - } -} diff --git a/classic/frontend/lib/models/step_request_body.dart b/classic/frontend/lib/models/step_request_body.dart deleted file mode 100644 index 3af20acf4e..0000000000 --- a/classic/frontend/lib/models/step_request_body.dart +++ /dev/null @@ -1,12 +0,0 @@ -class StepRequestBody { - final String input; - final Map? additionalInput; - - StepRequestBody({required this.input, this.additionalInput}); - - Map toJson() { - Map result = {'input': input, 'additional_input': additionalInput}; - result.removeWhere((_, v) => v == null); - return result; - } -} diff --git a/classic/frontend/lib/models/task.dart b/classic/frontend/lib/models/task.dart deleted file mode 100644 index a7325f7de0..0000000000 --- a/classic/frontend/lib/models/task.dart +++ /dev/null @@ -1,67 +0,0 @@ -/// Represents a task or topic the user wants to discuss with the agent. -class Task { - final String id; - final Map? additionalInput; - final List? artifacts; - - String _title; - - Task({ - required this.id, - this.additionalInput, - this.artifacts, - required String title, - }) : assert(title.isNotEmpty, 'Title cannot be empty'), - _title = title; - - String get title => _title; - - set title(String newTitle) { - if (newTitle.isNotEmpty) { - _title = newTitle; - } else { - throw ArgumentError('Title cannot be empty.'); - } - } - -// Convert a Map (usually from JSON) to a Task object - factory Task.fromMap(Map map) { - Map? additionalInput; - List? artifacts; - - if (map['additional_input'] != null) { - additionalInput = Map.from(map['additional_input']); - } - - if (map['artifacts'] != null) { - artifacts = List.from(map['artifacts'].map((e) => e.toString())); - } - - return Task( - id: map['task_id'], - additionalInput: additionalInput, - artifacts: artifacts, - title: map['input'], - ); - } - - Map toJson() { - return { - 'task_id': id, - 'input': title, - 'additional_input': additionalInput, - 'artifacts': artifacts, - }; - } - - @override - bool operator ==(Object other) => - identical(this, other) || - other is Task && runtimeType == other.runtimeType && id == other.id; - - @override - int get hashCode => id.hashCode ^ title.hashCode; - - @override - String toString() => 'Task(id: $id, title: $title)'; -} diff --git a/classic/frontend/lib/models/task_request_body.dart b/classic/frontend/lib/models/task_request_body.dart deleted file mode 100644 index eededbe209..0000000000 --- a/classic/frontend/lib/models/task_request_body.dart +++ /dev/null @@ -1,12 +0,0 @@ -class TaskRequestBody { - final String input; - final Map? additionalInput; - - TaskRequestBody({required this.input, this.additionalInput}); - - Map toJson() { - Map result = {'input': input, 'additional_input': additionalInput}; - result.removeWhere((_, v) => v == null); - return result; - } -} diff --git a/classic/frontend/lib/models/task_response.dart b/classic/frontend/lib/models/task_response.dart deleted file mode 100644 index 9e1c18ccd9..0000000000 --- a/classic/frontend/lib/models/task_response.dart +++ /dev/null @@ -1,19 +0,0 @@ -import 'package:auto_gpt_flutter_client/models/pagination.dart'; -import 'package:auto_gpt_flutter_client/models/task.dart'; - -class TaskResponse { - final List tasks; - final Pagination pagination; - - TaskResponse({required this.tasks, required this.pagination}); - - factory TaskResponse.fromJson(Map json) { - return TaskResponse( - tasks: (json['tasks'] as List).map((taskJson) { - var task = Task.fromMap(taskJson); - return task; - }).toList(), - pagination: Pagination.fromJson(json['pagination']), - ); - } -} diff --git a/classic/frontend/lib/models/test_option.dart b/classic/frontend/lib/models/test_option.dart deleted file mode 100644 index 368918c002..0000000000 --- a/classic/frontend/lib/models/test_option.dart +++ /dev/null @@ -1,65 +0,0 @@ -/// `TestOption` is an enumeration of the available test options that can be selected in the skill tree view. -/// -/// Each value of this enum represents a distinct test option that can be executed. -/// The `description` getter can be used to get the string representation of each test option. -enum TestOption { - /// Represents the option to run a single test. - runSingleTest, - - /// Represents the option to run a test suite including the selected node and its ancestors. - runTestSuiteIncludingSelectedNodeAndAncestors, - - /// Represents the option to run all tests in a category. - runAllTestsInCategory, -} - -/// An extension on the `TestOption` enum to provide a string representation for each test option. -/// -/// This extension adds a `description` getter on `TestOption` to easily retrieve the human-readable -/// string associated with each option. This is particularly helpful for UI display purposes. -extension TestOptionExtension on TestOption { - /// Gets the string representation of the test option. - /// - /// Returns a human-readable string that describes the test option. This string is intended - /// to be displayed in the UI for user selection. - String get description { - switch (this) { - /// In case of a single test option, return the corresponding string. - case TestOption.runSingleTest: - return 'Run single test'; - - /// In case of a test suite option that includes selected node and ancestors, return the corresponding string. - case TestOption.runTestSuiteIncludingSelectedNodeAndAncestors: - return 'Run test suite including selected node and ancestors'; - - /// In case of an option to run all tests in a category, return the corresponding string. - case TestOption.runAllTestsInCategory: - return 'Run all tests in category'; - - /// In case of an undefined or unknown test option, return a generic unknown string. - /// This case should ideally never be hit if all enum values are handled. - default: - return 'Unknown'; - } - } - - /// Converts a [description] string to its corresponding [TestOption] enum value. - /// - /// This method is helpful for converting string representations of test options - /// received from various sources (like user input or server responses) into - /// their type-safe enum equivalents. - /// - /// Returns the matching [TestOption] enum value if found, otherwise returns `null`. - static TestOption? fromDescription(String description) { - switch (description) { - case 'Run single test': - return TestOption.runSingleTest; - case 'Run test suite including selected node and ancestors': - return TestOption.runTestSuiteIncludingSelectedNodeAndAncestors; - case 'Run all tests in category': - return TestOption.runAllTestsInCategory; - default: - return null; // or throw an exception, or provide a default value, as per your requirement - } - } -} diff --git a/classic/frontend/lib/models/test_suite.dart b/classic/frontend/lib/models/test_suite.dart deleted file mode 100644 index bffca73afc..0000000000 --- a/classic/frontend/lib/models/test_suite.dart +++ /dev/null @@ -1,25 +0,0 @@ -import 'package:auto_gpt_flutter_client/models/task.dart'; - -class TestSuite { - final String timestamp; - final List tests; - - TestSuite({required this.timestamp, required this.tests}); - - // Serialization: Convert the object into a Map - Map toJson() { - return { - 'timestamp': timestamp, - 'tests': tests.map((task) => task.toJson()).toList(), - }; - } - -// Deserialization: Create an object from a Map - factory TestSuite.fromJson(Map json) { - return TestSuite( - timestamp: json['timestamp'], - tests: List.from(json['tests'].map( - (taskJson) => Task.fromMap(Map.from(taskJson)))), - ); - } -} diff --git a/classic/frontend/lib/services/auth_service.dart b/classic/frontend/lib/services/auth_service.dart deleted file mode 100644 index 2a36936380..0000000000 --- a/classic/frontend/lib/services/auth_service.dart +++ /dev/null @@ -1,51 +0,0 @@ -import 'package:firebase_auth/firebase_auth.dart'; -import 'package:google_sign_in/google_sign_in.dart'; - -class AuthService { - final FirebaseAuth _auth = FirebaseAuth.instance; - final GoogleSignIn googleSignIn = GoogleSignIn( - clientId: - "387936576242-iejdacrjljds7hf99q0p6eqna8rju3sb.apps.googleusercontent.com"); - -// Sign in with Google using redirect -// Sign in with Google using redirect - Future signInWithGoogle() async { - try { - final GoogleSignInAccount? googleSignInAccount = - await googleSignIn.signIn(); - if (googleSignInAccount != null) { - final GoogleSignInAuthentication googleSignInAuthentication = - await googleSignInAccount.authentication; - final AuthCredential credential = GoogleAuthProvider.credential( - accessToken: googleSignInAuthentication.accessToken, - idToken: googleSignInAuthentication.idToken, - ); - return await _auth.signInWithCredential(credential); - } - } catch (e) { - print("Error during Google Sign-In: $e"); - return null; - } - } - -// Sign in with GitHub using redirect - Future signInWithGitHub() async { - try { - final GithubAuthProvider provider = GithubAuthProvider(); - return await _auth.signInWithPopup(provider); - } catch (e) { - print("Error during GitHub Sign-In: $e"); - return null; - } - } - - // Sign out - Future signOut() async { - await _auth.signOut(); - } - - // Get current user - User? getCurrentUser() { - return _auth.currentUser; - } -} diff --git a/classic/frontend/lib/services/benchmark_service.dart b/classic/frontend/lib/services/benchmark_service.dart deleted file mode 100644 index e58ae40c83..0000000000 --- a/classic/frontend/lib/services/benchmark_service.dart +++ /dev/null @@ -1,51 +0,0 @@ -import 'dart:async'; -import 'package:auto_gpt_flutter_client/models/benchmark/benchmark_step_request_body.dart'; -import 'package:auto_gpt_flutter_client/models/benchmark/benchmark_task_request_body.dart'; -import 'package:auto_gpt_flutter_client/utils/rest_api_utility.dart'; -import 'package:auto_gpt_flutter_client/models/benchmark/api_type.dart'; - -class BenchmarkService { - final RestApiUtility api; - - BenchmarkService(this.api); - - /// Creates a new benchmark task. - /// - /// [benchmarkTaskRequestBody] is a Map representing the request body for creating a task. - Future> createBenchmarkTask( - BenchmarkTaskRequestBody benchmarkTaskRequestBody) async { - try { - return await api.post('agent/tasks', benchmarkTaskRequestBody.toJson(), - apiType: ApiType.benchmark); - } catch (e) { - throw Exception('Failed to create a new task: $e'); - } - } - - /// Executes a step in a specific benchmark task. - /// - /// [taskId] is the ID of the task. - /// [benchmarkStepRequestBody] is a Map representing the request body for executing a step. - Future> executeBenchmarkStep( - String taskId, BenchmarkStepRequestBody benchmarkStepRequestBody) async { - try { - return await api.post( - 'agent/tasks/$taskId/steps', benchmarkStepRequestBody.toJson(), - apiType: ApiType.benchmark); - } catch (e) { - throw Exception('Failed to execute step: $e'); - } - } - - /// Triggers an evaluation for a specific benchmark task. - /// - /// [taskId] is the ID of the task. - Future> triggerEvaluation(String taskId) async { - try { - return await api.post('agent/tasks/$taskId/evaluations', {}, - apiType: ApiType.benchmark); - } catch (e) { - throw Exception('Failed to trigger evaluation: $e'); - } - } -} diff --git a/classic/frontend/lib/services/chat_service.dart b/classic/frontend/lib/services/chat_service.dart deleted file mode 100644 index b051d1812b..0000000000 --- a/classic/frontend/lib/services/chat_service.dart +++ /dev/null @@ -1,91 +0,0 @@ -import 'dart:io'; -import 'dart:typed_data'; -import 'package:auto_gpt_flutter_client/models/step_request_body.dart'; -import 'package:auto_gpt_flutter_client/utils/rest_api_utility.dart'; -import 'dart:html' as html; - -/// Service class for performing chat-related operations. -class ChatService { - final RestApiUtility api; - - ChatService(this.api); - - /// Executes a step in a specific task. - /// - /// [taskId] is the ID of the task. - /// [stepRequestBody] is a Map representing the request body for executing a step. - Future> executeStep( - String taskId, StepRequestBody stepRequestBody) async { - try { - return await api.post( - 'agent/tasks/$taskId/steps', stepRequestBody.toJson()); - } catch (e) { - // TODO: We are bubbling up the full response. Revisit this. - rethrow; - } - } - - /// Gets details about a specific task step. - /// - /// [taskId] is the ID of the task. - /// [stepId] is the ID of the step. - Future> getStepDetails( - String taskId, String stepId) async { - try { - return await api.get('agent/tasks/$taskId/steps/$stepId'); - } catch (e) { - throw Exception('Failed to get step details: $e'); - } - } - - /// Lists all steps for a specific task. - /// - /// [taskId] is the ID of the task. - /// [currentPage] and [pageSize] are optional pagination parameters. - Future> listTaskSteps(String taskId, - {int currentPage = 1, int pageSize = 10}) async { - try { - return await api.get( - 'agent/tasks/$taskId/steps?current_page=$currentPage&page_size=$pageSize'); - } catch (e) { - throw Exception('Failed to list task steps: $e'); - } - } - - /// Uploads an artifact for a specific task. - /// - /// [taskId] is the ID of the task. - /// [artifactFile] is the File to be uploaded. - /// [uri] is the URI of the artifact. - Future> uploadArtifact( - String taskId, File artifactFile, String uri) async { - return Future.value({'status': 'Not implemented yet'}); - } - - /// Downloads a specific artifact. - /// - /// [taskId] is the ID of the task. - /// [artifactId] is the ID of the artifact. - Future downloadArtifact(String taskId, String artifactId) async { - try { - final Uint8List bytes = - await api.getBinary('agent/tasks/$taskId/artifacts/$artifactId'); - - // Create a blob from the Uint8List - final blob = html.Blob([bytes]); - - // Generate a URL from the Blob - final url = html.Url.createObjectUrlFromBlob(blob); - - // Create an anchor HTML element - final anchor = html.AnchorElement(href: url) - ..setAttribute("download", "artifact_$artifactId") - ..click(); - - // Cleanup: Revoke the object URL - html.Url.revokeObjectUrl(url); - } catch (e) { - throw Exception('An error occurred while downloading the artifact: $e'); - } - } -} diff --git a/classic/frontend/lib/services/leaderboard_service.dart b/classic/frontend/lib/services/leaderboard_service.dart deleted file mode 100644 index 00e4870ede..0000000000 --- a/classic/frontend/lib/services/leaderboard_service.dart +++ /dev/null @@ -1,24 +0,0 @@ -import 'package:auto_gpt_flutter_client/models/benchmark/api_type.dart'; -import 'package:auto_gpt_flutter_client/models/benchmark/benchmark_run.dart'; -import 'package:auto_gpt_flutter_client/utils/rest_api_utility.dart'; - -class LeaderboardService { - final RestApiUtility api; - - LeaderboardService(this.api); - - /// Submits a benchmark report to the leaderboard. - /// - /// [benchmarkRun] is a BenchmarkRun object representing the data of a completed benchmark. - Future> submitReport(BenchmarkRun benchmarkRun) async { - try { - return await api.put( - 'api/reports', - benchmarkRun.toJson(), - apiType: ApiType.leaderboard, - ); - } catch (e) { - throw Exception('Failed to submit the report to the leaderboard: $e'); - } - } -} diff --git a/classic/frontend/lib/services/shared_preferences_service.dart b/classic/frontend/lib/services/shared_preferences_service.dart deleted file mode 100644 index df10031695..0000000000 --- a/classic/frontend/lib/services/shared_preferences_service.dart +++ /dev/null @@ -1,106 +0,0 @@ -import 'package:shared_preferences/shared_preferences.dart'; - -class SharedPreferencesService { - SharedPreferencesService._privateConstructor(); - - static final SharedPreferencesService instance = - SharedPreferencesService._privateConstructor(); - - Future _prefs = SharedPreferences.getInstance(); - - /// Sets a boolean [value] for the given [key] in the shared preferences. - /// - /// Example: - /// ```dart - /// await prefsService.setBool('isLoggedIn', true); - /// ``` - Future setBool(String key, bool value) async { - final prefs = await _prefs; - prefs.setBool(key, value); - } - - /// Sets a string [value] for the given [key] in the shared preferences. - /// - /// Example: - /// ```dart - /// await prefsService.setString('username', 'Alice'); - /// ``` - Future setString(String key, String value) async { - final prefs = await _prefs; - prefs.setString(key, value); - } - - /// Sets an integer [value] for the given [key] in the shared preferences. - /// - /// Example: - /// ```dart - /// await prefsService.setInt('age', 30); - /// ``` - Future setInt(String key, int value) async { - final prefs = await _prefs; - prefs.setInt(key, value); - } - - /// Sets a list of strings [value] for the given [key] in the shared preferences. - /// - /// Example: - /// ```dart - /// await prefsService.setStringList('favorites', ['Apples', 'Bananas']); - /// ``` - Future setStringList(String key, List value) async { - final prefs = await _prefs; - prefs.setStringList(key, value); - } - - /// Retrieves a boolean value for the given [key] from the shared preferences. - /// - /// Returns `null` if the key does not exist. - /// - /// Example: - /// ```dart - /// bool? isLoggedIn = await prefsService.getBool('isLoggedIn'); - /// ``` - Future getBool(String key) async { - final prefs = await _prefs; - return prefs.getBool(key); - } - - /// Retrieves a string value for the given [key] from the shared preferences. - /// - /// Returns `null` if the key does not exist. - /// - /// Example: - /// ```dart - /// String? username = await prefsService.getString('username'); - /// ``` - Future getString(String key) async { - final prefs = await _prefs; - return prefs.getString(key); - } - - /// Retrieves an integer value for the given [key] from the shared preferences. - /// - /// Returns `null` if the key does not exist. - /// - /// Example: - /// ```dart - /// int? age = await prefsService.getInt('age'); - /// ``` - Future getInt(String key) async { - final prefs = await _prefs; - return prefs.getInt(key); - } - - /// Retrieves a list of strings for the given [key] from the shared preferences. - /// - /// Returns `null` if the key does not exist. - /// - /// Example: - /// ```dart - /// List? favorites = await prefsService.getStringList('favorites'); - /// ``` - Future?> getStringList(String key) async { - final prefs = await _prefs; - return prefs.getStringList(key); - } -} diff --git a/classic/frontend/lib/services/task_service.dart b/classic/frontend/lib/services/task_service.dart deleted file mode 100644 index 6c7fe24e62..0000000000 --- a/classic/frontend/lib/services/task_service.dart +++ /dev/null @@ -1,101 +0,0 @@ -import 'package:auto_gpt_flutter_client/models/task.dart'; -import 'package:auto_gpt_flutter_client/models/task_request_body.dart'; -import 'package:auto_gpt_flutter_client/models/task_response.dart'; -import 'package:auto_gpt_flutter_client/services/shared_preferences_service.dart'; -import 'package:auto_gpt_flutter_client/utils/rest_api_utility.dart'; - -/// Service class for performing task-related operations. -class TaskService { - final RestApiUtility api; - final SharedPreferencesService prefsService; - List _deletedTaskIds = []; - - TaskService(this.api, this.prefsService); - - /// Creates a new task. - /// - /// [taskRequestBody] is a Map representing the request body for creating a task. - Future> createTask( - TaskRequestBody taskRequestBody) async { - try { - return await api.post('agent/tasks', taskRequestBody.toJson()); - } catch (e) { - // TODO: We are bubbling up the full response. Revisit this. - rethrow; - } - } - - /// Fetches a single page of tasks. - /// - /// [currentPage] and [pageSize] are pagination parameters. - Future fetchTasksPage( - {int currentPage = 1, int pageSize = 10}) async { - try { - final response = await api - .get('agent/tasks?current_page=$currentPage&page_size=$pageSize'); - return TaskResponse.fromJson(response); - } catch (e) { - throw Exception('Failed to fetch a page of tasks: $e'); - } - } - - /// Fetches all tasks across all pages. - // TODO: Temporarily make page size 10000 until pagination is fixed - Future> fetchAllTasks({int pageSize = 10000}) async { - int currentPage = 1; - List allTasks = []; - - while (true) { - final response = - await fetchTasksPage(currentPage: currentPage, pageSize: pageSize); - allTasks.addAll(response.tasks); - - if (response.tasks.length < pageSize) { - // No more tasks to fetch - break; - } - currentPage++; - } - return allTasks; - } - - /// Gets details about a specific task. - /// - /// [taskId] is the ID of the task. - Future> getTaskDetails(String taskId) async { - try { - return await api.get('agent/tasks/$taskId'); - } catch (e) { - throw Exception('Failed to get task details: $e'); - } - } - - /// Lists all artifacts for a specific task. - /// - /// [taskId] is the ID of the task. - /// [currentPage] and [pageSize] are optional pagination parameters. - Future> listTaskArtifacts(String taskId, - {int currentPage = 1, int pageSize = 10}) async { - try { - return await api.get( - 'agent/tasks/$taskId/artifacts?current_page=$currentPage&page_size=$pageSize'); - } catch (e) { - throw Exception('Failed to list task artifacts: $e'); - } - } - - Future loadDeletedTasks() async { - _deletedTaskIds = await prefsService.getStringList('deletedTasks') ?? []; - print("Deleted tasks fetched successfully!"); - } - - void saveDeletedTask(String taskId) { - _deletedTaskIds.add(taskId); - prefsService.setStringList('deletedTasks', _deletedTaskIds); - print("Task $taskId deleted successfully!"); - } - - bool isTaskDeleted(String taskId) { - return _deletedTaskIds.contains(taskId); - } -} diff --git a/classic/frontend/lib/utils/feature_flags.dart b/classic/frontend/lib/utils/feature_flags.dart deleted file mode 100644 index f62a5a382a..0000000000 --- a/classic/frontend/lib/utils/feature_flags.dart +++ /dev/null @@ -1,3 +0,0 @@ -class FeatureFlags { - static const bool userExperienceIterationTwoEnabled = false; -} diff --git a/classic/frontend/lib/utils/rest_api_utility.dart b/classic/frontend/lib/utils/rest_api_utility.dart deleted file mode 100644 index ab83ddfa5f..0000000000 --- a/classic/frontend/lib/utils/rest_api_utility.dart +++ /dev/null @@ -1,91 +0,0 @@ -import 'dart:convert'; -import 'dart:typed_data'; -import 'package:auto_gpt_flutter_client/models/benchmark/api_type.dart'; -import 'package:http/http.dart' as http; - -class RestApiUtility { - String _agentBaseUrl; - final String _benchmarkBaseUrl = "http://127.0.0.1:8080/ap/v1"; - final String _leaderboardBaseUrl = "https://leaderboard.agpt.co"; - - RestApiUtility(this._agentBaseUrl); - - void updateBaseURL(String newBaseURL) { - _agentBaseUrl = newBaseURL; - } - - String _getEffectiveBaseUrl(ApiType apiType) { - switch (apiType) { - case ApiType.agent: - return _agentBaseUrl; - case ApiType.benchmark: - return _benchmarkBaseUrl; - case ApiType.leaderboard: - return _leaderboardBaseUrl; - default: - return _agentBaseUrl; - } - } - - Future> get(String endpoint, - {ApiType apiType = ApiType.agent}) async { - final effectiveBaseUrl = _getEffectiveBaseUrl(apiType); - final response = await http.get(Uri.parse('$effectiveBaseUrl/$endpoint')); - if (response.statusCode == 200) { - return json.decode(response.body); - } else { - throw Exception('Failed to load data'); - } - } - - Future> post( - String endpoint, Map payload, - {ApiType apiType = ApiType.agent}) async { - final effectiveBaseUrl = _getEffectiveBaseUrl(apiType); - final response = await http.post( - Uri.parse('$effectiveBaseUrl/$endpoint'), - body: json.encode(payload), - headers: {"Content-Type": "application/json"}, - ); - if (response.statusCode == 200 || response.statusCode == 201) { - return json.decode(response.body); - } else { - // TODO: We are bubbling up the full response to show better errors on the UI. - // Let's put some thought into how we would like to structure this. - throw response; - } - } - - Future> put( - String endpoint, Map payload, - {ApiType apiType = ApiType.agent}) async { - final effectiveBaseUrl = _getEffectiveBaseUrl(apiType); - final response = await http.put( - Uri.parse('$effectiveBaseUrl/$endpoint'), - body: json.encode(payload), - headers: {"Content-Type": "application/json"}, - ); - if (response.statusCode == 200 || response.statusCode == 201) { - return json.decode(response.body); - } else { - throw Exception('Failed to update data with PUT request'); - } - } - - Future getBinary(String endpoint, - {ApiType apiType = ApiType.agent}) async { - final effectiveBaseUrl = _getEffectiveBaseUrl(apiType); - final response = await http.get( - Uri.parse('$effectiveBaseUrl/$endpoint'), - headers: {"Content-Type": "application/octet-stream"}, - ); - - if (response.statusCode == 200) { - return response.bodyBytes; - } else if (response.statusCode == 404) { - throw Exception('Resource not found'); - } else { - throw Exception('Failed to load binary data'); - } - } -} diff --git a/classic/frontend/lib/utils/stack.dart b/classic/frontend/lib/utils/stack.dart deleted file mode 100644 index 1ddbae55c4..0000000000 --- a/classic/frontend/lib/utils/stack.dart +++ /dev/null @@ -1,20 +0,0 @@ -class Stack { - final List _list = []; - - void push(T element) { - _list.add(element); - } - - T pop() { - var element = _list.last; - _list.removeLast(); - return element; - } - - T peek() { - return _list.last; - } - - bool get isEmpty => _list.isEmpty; - bool get isNotEmpty => _list.isNotEmpty; -} diff --git a/classic/frontend/lib/utils/uri_utility.dart b/classic/frontend/lib/utils/uri_utility.dart deleted file mode 100644 index ace65f082a..0000000000 --- a/classic/frontend/lib/utils/uri_utility.dart +++ /dev/null @@ -1,75 +0,0 @@ -import 'package:http/http.dart' as http; -import 'dart:convert'; - -class UriUtility { - static bool isURL(String url) { - // Validate if the URL string is empty, or contains spaces or invalid characters - if (url.isEmpty || RegExp(r'[\s<>]').hasMatch(url)) { - print('URL is either empty or contains spaces/invalid characters.'); - return false; - } - - // Check for 'mailto:' at the start of the URL - if (url.startsWith('mailto:')) { - print('URL starts with "mailto:".'); - return false; - } - - // Try to parse the URL, return false if parsing fails - Uri? uri; - try { - uri = Uri.parse(url); - } catch (e) { - print('URL parsing failed: $e'); - return false; - } - - // Validate the URL has a scheme (protocol) and host - if (uri.scheme.isEmpty || uri.host.isEmpty) { - print('URL is missing a scheme (protocol) or host.'); - return false; - } - - // Check if the URI has user info, which is not a common case for a valid HTTP/HTTPS URL - if (uri.hasAuthority && - uri.userInfo.contains(':') && - uri.userInfo.split(':').length > 2) { - print('URL contains invalid user info.'); - return false; - } - - // Validate the port number if exists - if (uri.hasPort && (uri.port <= 0 || uri.port > 65535)) { - print('URL contains an invalid port number.'); - return false; - } - - print('URL is valid.'); - return true; - } - - Future isValidGitHubRepo(String repoUrl) async { - var uri = Uri.parse(repoUrl); - if (uri.host != 'github.com') { - return false; - } - - var segments = uri.pathSegments; - if (segments.length < 2) { - return false; - } - - var user = segments[0]; - var repo = segments[1]; - - var apiUri = Uri.https('api.github.com', '/repos/$user/$repo'); - - var response = await http.get(apiUri); - if (response.statusCode != 200) { - return false; - } - - var data = json.decode(response.body); - return data is Map && data['full_name'] == '$user/$repo'; - } -} diff --git a/classic/frontend/lib/viewmodels/chat_viewmodel.dart b/classic/frontend/lib/viewmodels/chat_viewmodel.dart deleted file mode 100644 index bae2f3c5f6..0000000000 --- a/classic/frontend/lib/viewmodels/chat_viewmodel.dart +++ /dev/null @@ -1,223 +0,0 @@ -import 'package:auto_gpt_flutter_client/models/step.dart'; -import 'package:auto_gpt_flutter_client/models/step_request_body.dart'; -import 'package:auto_gpt_flutter_client/services/shared_preferences_service.dart'; -import 'package:flutter/foundation.dart'; -import 'package:auto_gpt_flutter_client/services/chat_service.dart'; -import 'package:auto_gpt_flutter_client/models/chat.dart'; -import 'package:auto_gpt_flutter_client/models/message_type.dart'; - -class ChatViewModel with ChangeNotifier { - final ChatService _chatService; - List _chats = []; - String? _currentTaskId; - final SharedPreferencesService _prefsService; - - bool _isWaitingForAgentResponse = false; - - bool get isWaitingForAgentResponse => _isWaitingForAgentResponse; - SharedPreferencesService get prefsService => _prefsService; - - bool _isContinuousMode = false; - - bool get isContinuousMode => _isContinuousMode; - set isContinuousMode(bool value) { - _isContinuousMode = value; - notifyListeners(); - } - - ChatViewModel(this._chatService, this._prefsService); - - /// Returns the current list of chats. - List get chats => _chats; - - String? get currentTaskId => _currentTaskId; - - void setCurrentTaskId(String taskId) { - if (_currentTaskId != taskId) { - _currentTaskId = taskId; - fetchChatsForTask(); - } - } - - void clearCurrentTaskAndChats() { - _currentTaskId = null; - _chats.clear(); - notifyListeners(); // Notify listeners to rebuild UI - } - - /// Fetches chats from the data source for a specific task. - void fetchChatsForTask() async { - if (_currentTaskId == null) { - print("Error: Task ID is not set."); - return; - } - try { - // Fetch task steps from the data source - final Map stepsResponse = - await _chatService.listTaskSteps(_currentTaskId!, pageSize: 10000); - - // Extract steps from the response - final List stepsJsonList = stepsResponse['steps'] ?? []; - - // Convert each map into a Step object - List steps = - stepsJsonList.map((stepMap) => Step.fromMap(stepMap)).toList(); - - // Initialize an empty list to store Chat objects - List chats = []; - - // Generate current timestamp - DateTime currentTimestamp = DateTime.now(); - - for (int i = 0; i < steps.length; i++) { - Step step = steps[i]; - - // Create a Chat object for 'input' if it exists and is not empty - if (step.input.isNotEmpty) { - chats.add(Chat( - id: step.stepId, - taskId: step.taskId, - message: step.input, - timestamp: currentTimestamp, - messageType: MessageType.user, - artifacts: step.artifacts)); - } - - // Create a Chat object for 'output' - chats.add(Chat( - id: step.stepId, - taskId: step.taskId, - message: step.output, - timestamp: currentTimestamp, - messageType: MessageType.agent, - jsonResponse: stepsJsonList[i], - artifacts: step.artifacts)); - } - - // Assign the chats list - if (chats.length > 0) { - _chats = chats; - } - - // Notify listeners to rebuild UI - notifyListeners(); - - print( - "Chats (and steps) fetched successfully for task ID: $_currentTaskId"); - } catch (error) { - print("Error fetching chats: $error"); - // TODO: Handle additional error scenarios or log them as required - } - } - - /// Sends a chat message for a specific task. - void sendChatMessage(String message, - {required int continuousModeSteps, int currentStep = 1}) async { - if (_currentTaskId == null) { - print("Error: Task ID is not set."); - return; - } - _isWaitingForAgentResponse = true; - notifyListeners(); - - try { - // Create the request body for executing the step - StepRequestBody requestBody = StepRequestBody(input: message); - - // Execute the step and get the response - Map executedStepResponse = - await _chatService.executeStep(_currentTaskId!, requestBody); - - // Create a Chat object from the returned step - Step executedStep = Step.fromMap(executedStepResponse); - - // Create a Chat object for the user message - if (executedStep.input.isNotEmpty) { - final userChat = Chat( - id: executedStep.stepId, - taskId: executedStep.taskId, - message: executedStep.input, - timestamp: DateTime.now(), - messageType: MessageType.user, - artifacts: executedStep.artifacts); - - _chats.add(userChat); - } - - // Create a Chat object for the agent message - final agentChat = Chat( - id: executedStep.stepId, - taskId: executedStep.taskId, - message: executedStep.output, - timestamp: DateTime.now(), - messageType: MessageType.agent, - jsonResponse: executedStepResponse, - artifacts: executedStep.artifacts); - - _chats.add(agentChat); - - // Remove the temporary message - removeTemporaryMessage(); - - // Notify UI of the new chats - notifyListeners(); - - if (_isContinuousMode && !executedStep.isLast) { - print("Continuous Mode: Step $currentStep of $continuousModeSteps"); - if (currentStep < continuousModeSteps) { - sendChatMessage("", - continuousModeSteps: continuousModeSteps, - currentStep: currentStep + 1); - } else { - _isContinuousMode = false; - } - } - - print("Chats added for task ID: $_currentTaskId"); - } catch (e) { - // Remove the temporary message in case of an error - removeTemporaryMessage(); - // TODO: We are bubbling up the full response. Revisit this. - rethrow; - // TODO: Handle additional error scenarios or log them as required - } finally { - _isWaitingForAgentResponse = false; - notifyListeners(); - } - } - - void addTemporaryMessage(String message) { - Chat tempMessage = Chat( - // You can generate a unique ID or use a placeholder - id: "TEMP_ID", - taskId: "TEMP_ID", - message: message, - timestamp: DateTime.now(), - messageType: MessageType.user, - artifacts: []); - - _chats.add(tempMessage); - notifyListeners(); - } - - void removeTemporaryMessage() { - _chats.removeWhere((chat) => chat.id == "TEMP_ID"); - notifyListeners(); - } - - /// Downloads an artifact associated with a specific chat. - /// - /// [taskId] is the ID of the task. - /// [artifactId] is the ID of the artifact to be downloaded. - Future downloadArtifact(String taskId, String artifactId) async { - try { - // Call the downloadArtifact method from the ChatService class - await _chatService.downloadArtifact(taskId, artifactId); - - print("Artifact $artifactId downloaded successfully for task $taskId!"); - } catch (error) { - print("Error downloading artifact: $error"); - // TODO: Handle the error appropriately, perhaps notify the user - } - } -} diff --git a/classic/frontend/lib/viewmodels/settings_viewmodel.dart b/classic/frontend/lib/viewmodels/settings_viewmodel.dart deleted file mode 100644 index eb7f246a34..0000000000 --- a/classic/frontend/lib/viewmodels/settings_viewmodel.dart +++ /dev/null @@ -1,87 +0,0 @@ -import 'package:auto_gpt_flutter_client/services/auth_service.dart'; -import 'package:auto_gpt_flutter_client/services/shared_preferences_service.dart'; -import 'package:auto_gpt_flutter_client/utils/rest_api_utility.dart'; -import 'package:flutter/material.dart'; - -/// [SettingsViewModel] is responsible for managing the state and logic -/// for the [SettingsView]. It extends [ChangeNotifier] to provide -/// reactive state management. -class SettingsViewModel extends ChangeNotifier { - bool _isDarkModeEnabled = false; // State for Dark Mode - bool _isDeveloperModeEnabled = false; // State for Developer Mode - String _baseURL = ''; // State for Base URL - int _continuousModeSteps = 1; // State for Continuous Mode Steps - - final RestApiUtility _restApiUtility; - final SharedPreferencesService _prefsService; - - // Getters to access the private state variables - bool get isDarkModeEnabled => _isDarkModeEnabled; - bool get isDeveloperModeEnabled => _isDeveloperModeEnabled; - String get baseURL => _baseURL; - int get continuousModeSteps => _continuousModeSteps; - - final AuthService _authService = AuthService(); - - SettingsViewModel(this._restApiUtility, this._prefsService) { - _loadPreferences(); - } - - // Method to load stored preferences - Future _loadPreferences() async { - _isDarkModeEnabled = - await _prefsService.getBool('isDarkModeEnabled') ?? false; - _isDeveloperModeEnabled = - await _prefsService.getBool('isDeveloperModeEnabled') ?? true; - _baseURL = await _prefsService.getString('baseURL') ?? - 'http://127.0.0.1:8000/ap/v1'; - _restApiUtility.updateBaseURL(_baseURL); - _continuousModeSteps = - await _prefsService.getInt('continuousModeSteps') ?? 10; - notifyListeners(); - } - - /// Toggles the state of Dark Mode and notifies listeners. - Future toggleDarkMode(bool value) async { - _isDarkModeEnabled = value; - notifyListeners(); - await _prefsService.setBool('isDarkModeEnabled', value); - } - - /// Toggles the state of Developer Mode and notifies listeners. - Future toggleDeveloperMode(bool value) async { - _isDeveloperModeEnabled = value; - notifyListeners(); - await _prefsService.setBool('isDeveloperModeEnabled', value); - } - - /// Updates the state of Base URL, notifies listeners, and updates the RestApiUtility baseURL. - Future updateBaseURL(String value) async { - _baseURL = value; - notifyListeners(); - await _prefsService.setString('baseURL', value); - _restApiUtility.updateBaseURL(value); - } - - /// Increments the number of Continuous Mode Steps and notifies listeners. - Future incrementContinuousModeSteps() async { - _continuousModeSteps += 1; - notifyListeners(); - await _prefsService.setInt('continuousModeSteps', _continuousModeSteps); - } - - /// Decrements the number of Continuous Mode Steps and notifies listeners. - Future decrementContinuousModeSteps() async { - if (_continuousModeSteps > 1) { - // Ensure that the number of steps is at least 1 - _continuousModeSteps -= 1; - notifyListeners(); - await _prefsService.setInt('continuousModeSteps', _continuousModeSteps); - } - } - - // Method to sign out - Future signOut() async { - await _authService.signOut(); - } -} diff --git a/classic/frontend/lib/viewmodels/skill_tree_viewmodel.dart b/classic/frontend/lib/viewmodels/skill_tree_viewmodel.dart deleted file mode 100644 index 5383d127c0..0000000000 --- a/classic/frontend/lib/viewmodels/skill_tree_viewmodel.dart +++ /dev/null @@ -1,87 +0,0 @@ -import 'dart:convert'; -import 'package:flutter/foundation.dart'; -import 'package:flutter/services.dart'; -import 'package:graphview/GraphView.dart'; - -import 'package:auto_gpt_flutter_client/models/skill_tree/skill_tree_category.dart'; -import 'package:auto_gpt_flutter_client/models/skill_tree/skill_tree_edge.dart'; -import 'package:auto_gpt_flutter_client/models/skill_tree/skill_tree_node.dart'; - -class SkillTreeViewModel extends ChangeNotifier { - List _skillTreeNodes = []; - List get skillTreeNodes => _skillTreeNodes; - - List _skillTreeEdges = []; - List get skillTreeEdges => _skillTreeEdges; - - SkillTreeNode? _selectedNode; - SkillTreeNode? get selectedNode => _selectedNode; - - final Graph graph = Graph(); - SugiyamaConfiguration builder = SugiyamaConfiguration(); - - SkillTreeCategory currentSkillTreeType = SkillTreeCategory.general; - - Future initializeSkillTree() async { - try { - resetState(); - - String fileName = currentSkillTreeType.jsonFileName; - - // Read the JSON file from assets - String jsonContent = await rootBundle.loadString('assets/$fileName'); - - // Decode the JSON string - Map decodedJson = jsonDecode(jsonContent); - - // Create SkillTreeNodes from the decoded JSON - for (var nodeMap in decodedJson['nodes']) { - SkillTreeNode node = SkillTreeNode.fromJson(nodeMap); - _skillTreeNodes.add(node); - } - - // Create SkillTreeEdges from the decoded JSON - for (var edgeMap in decodedJson['edges']) { - SkillTreeEdge edge = SkillTreeEdge.fromJson(edgeMap); - _skillTreeEdges.add(edge); - } - - builder.orientation = (SugiyamaConfiguration.ORIENTATION_LEFT_RIGHT); - builder.bendPointShape = CurvedBendPointShape(curveLength: 20); - - notifyListeners(); - - return Future.value(); // Explicitly return a completed Future - } catch (e) { - print(e); - } - } - - void resetState() { - _skillTreeNodes = []; - _skillTreeEdges = []; - _selectedNode = null; - } - - void toggleNodeSelection(String nodeId) { - if (_selectedNode?.id == nodeId) { - // Unselect the node if it's already selected - _selectedNode = null; - } else { - // Select the new node - _selectedNode = _skillTreeNodes.firstWhere((node) => node.id == nodeId); - } - notifyListeners(); - } - - // Function to get a node by its ID - SkillTreeNode? getNodeById(String nodeId) { - try { - // Find the node in the list where the ID matches - return _skillTreeNodes.firstWhere((node) => node.id == nodeId); - } catch (e) { - print("Node with ID $nodeId not found: $e"); - return null; - } - } -} diff --git a/classic/frontend/lib/viewmodels/task_queue_viewmodel.dart b/classic/frontend/lib/viewmodels/task_queue_viewmodel.dart deleted file mode 100644 index 4ca2703774..0000000000 --- a/classic/frontend/lib/viewmodels/task_queue_viewmodel.dart +++ /dev/null @@ -1,276 +0,0 @@ -import 'package:auto_gpt_flutter_client/models/benchmark/benchmark_run.dart'; -import 'package:auto_gpt_flutter_client/models/benchmark/benchmark_step_request_body.dart'; -import 'package:auto_gpt_flutter_client/models/benchmark/benchmark_task_request_body.dart'; -import 'package:auto_gpt_flutter_client/models/benchmark/benchmark_task_status.dart'; -import 'package:auto_gpt_flutter_client/models/skill_tree/skill_tree_edge.dart'; -import 'package:auto_gpt_flutter_client/models/skill_tree/skill_tree_node.dart'; -import 'package:auto_gpt_flutter_client/models/step.dart'; -import 'package:auto_gpt_flutter_client/models/task.dart'; -import 'package:auto_gpt_flutter_client/models/test_option.dart'; -import 'package:auto_gpt_flutter_client/models/test_suite.dart'; -import 'package:auto_gpt_flutter_client/services/benchmark_service.dart'; -import 'package:auto_gpt_flutter_client/services/leaderboard_service.dart'; -import 'package:auto_gpt_flutter_client/services/shared_preferences_service.dart'; -import 'package:auto_gpt_flutter_client/viewmodels/chat_viewmodel.dart'; -import 'package:auto_gpt_flutter_client/viewmodels/task_viewmodel.dart'; -import 'package:collection/collection.dart'; -import 'package:flutter/foundation.dart'; -import 'package:uuid/uuid.dart'; -import 'package:auto_gpt_flutter_client/utils/stack.dart'; - -class TaskQueueViewModel extends ChangeNotifier { - final BenchmarkService benchmarkService; - final LeaderboardService leaderboardService; - final SharedPreferencesService prefsService; - bool isBenchmarkRunning = false; - Map benchmarkStatusMap = {}; - List currentBenchmarkRuns = []; - List? _selectedNodeHierarchy; - TestOption _selectedOption = TestOption.runSingleTest; - - TestOption get selectedOption => _selectedOption; - List? get selectedNodeHierarchy => _selectedNodeHierarchy; - - TaskQueueViewModel( - this.benchmarkService, this.leaderboardService, this.prefsService); - - void updateSelectedNodeHierarchyBasedOnOption( - TestOption selectedOption, - SkillTreeNode? selectedNode, - List nodes, - List edges) { - _selectedOption = selectedOption; - switch (selectedOption) { - case TestOption.runSingleTest: - _selectedNodeHierarchy = selectedNode != null ? [selectedNode] : []; - break; - - case TestOption.runTestSuiteIncludingSelectedNodeAndAncestors: - if (selectedNode != null) { - populateSelectedNodeHierarchy(selectedNode.id, nodes, edges); - } - break; - - case TestOption.runAllTestsInCategory: - if (selectedNode != null) { - _getAllNodesInDepthFirstOrderEnsuringParents(nodes, edges); - } - break; - } - notifyListeners(); - } - - void _getAllNodesInDepthFirstOrderEnsuringParents( - List skillTreeNodes, List skillTreeEdges) { - var nodes = []; - var stack = Stack(); - var visited = {}; - - // Identify the root node by its label - var root = skillTreeNodes.firstWhere((node) => node.label == "WriteFile"); - - stack.push(root); - visited.add(root.id); - - while (stack.isNotEmpty) { - var node = stack.peek(); // Peek the top node, but do not remove it yet - var parents = - _getParentsOfNodeUsingEdges(node.id, skillTreeNodes, skillTreeEdges); - - // Check if all parents are visited - if (parents.every((parent) => visited.contains(parent.id))) { - nodes.add(node); - stack.pop(); // Remove the node only when all its parents are visited - - // Get the children of the current node using edges - var children = _getChildrenOfNodeUsingEdges( - node.id, skillTreeNodes, skillTreeEdges) - .where((child) => !visited.contains(child.id)); - - children.forEach((child) { - visited.add(child.id); - stack.push(child); - }); - } else { - stack - .pop(); // Remove the node if not all parents are visited, it will be re-added when its parents are visited - } - } - - _selectedNodeHierarchy = nodes; - } - - List _getParentsOfNodeUsingEdges( - String nodeId, List nodes, List edges) { - var parents = []; - - for (var edge in edges) { - if (edge.to == nodeId) { - parents.add(nodes.firstWhere((node) => node.id == edge.from)); - } - } - - return parents; - } - - List _getChildrenOfNodeUsingEdges( - String nodeId, List nodes, List edges) { - var children = []; - - for (var edge in edges) { - if (edge.from == nodeId) { - children.add(nodes.firstWhere((node) => node.id == edge.to)); - } - } - - return children; - } - - // TODO: Do we want to continue testing other branches of tree if one branch side fails benchmarking? - void populateSelectedNodeHierarchy(String startNodeId, - List nodes, List edges) { - _selectedNodeHierarchy = []; - final addedNodes = {}; - recursivePopulateHierarchy(startNodeId, addedNodes, nodes, edges); - notifyListeners(); - } - - void recursivePopulateHierarchy(String nodeId, Set addedNodes, - List nodes, List edges) { - // Find the current node in the skill tree nodes list. - final currentNode = nodes.firstWhereOrNull((node) => node.id == nodeId); - - // If the node is found and it hasn't been added yet, proceed with the population. - if (currentNode != null && addedNodes.add(currentNode.id)) { - // Find all parent edges for the current node. - final parentEdges = edges.where((edge) => edge.to == currentNode.id); - - // For each parent edge found, recurse to the parent node. - for (final parentEdge in parentEdges) { - // Recurse to the parent node identified by the 'from' field of the edge. - recursivePopulateHierarchy(parentEdge.from, addedNodes, nodes, edges); - } - - // After processing all parent nodes, add the current node to the list. - _selectedNodeHierarchy!.add(currentNode); - } - } - - Future runBenchmark( - ChatViewModel chatViewModel, TaskViewModel taskViewModel) async { - // Clear the benchmarkStatusList - benchmarkStatusMap.clear(); - - // Reset the current benchmark runs list to be empty at the start of a new benchmark - currentBenchmarkRuns = []; - - // Create a new TestSuite object with the current timestamp - final testSuite = - TestSuite(timestamp: DateTime.now().toIso8601String(), tests: []); - - // Set the benchmark running flag to true - isBenchmarkRunning = true; - // Notify listeners - notifyListeners(); - - // Populate benchmarkStatusList with node hierarchy - for (var node in _selectedNodeHierarchy!) { - benchmarkStatusMap[node] = BenchmarkTaskStatus.notStarted; - } - - try { - // Loop through the nodes in the hierarchy - for (var node in _selectedNodeHierarchy!) { - benchmarkStatusMap[node] = BenchmarkTaskStatus.inProgress; - notifyListeners(); - - // Create a BenchmarkTaskRequestBody - final benchmarkTaskRequestBody = BenchmarkTaskRequestBody( - input: node.data.task, evalId: node.data.evalId); - - // Create a new benchmark task - final createdTask = await benchmarkService - .createBenchmarkTask(benchmarkTaskRequestBody); - - // Create a new Task object - final task = - Task(id: createdTask['task_id'], title: createdTask['input']); - - // Update the current task ID in ChatViewModel - chatViewModel.setCurrentTaskId(task.id); - - // Execute the first step and initialize the Step object - Map stepResponse = - await benchmarkService.executeBenchmarkStep( - task.id, BenchmarkStepRequestBody(input: node.data.task)); - Step step = Step.fromMap(stepResponse); - chatViewModel.fetchChatsForTask(); - - // Check if it's the last step - while (!step.isLast) { - // Execute next step and update the Step object - stepResponse = await benchmarkService.executeBenchmarkStep( - task.id, BenchmarkStepRequestBody(input: null)); - step = Step.fromMap(stepResponse); - - // Fetch chats for the task - chatViewModel.fetchChatsForTask(); - } - - // Trigger the evaluation - final evaluationResponse = - await benchmarkService.triggerEvaluation(task.id); - - // Decode the evaluationResponse into a BenchmarkRun object - BenchmarkRun benchmarkRun = BenchmarkRun.fromJson(evaluationResponse); - - // Add the benchmark run object to the list of current benchmark runs - currentBenchmarkRuns.add(benchmarkRun); - - // Update the benchmarkStatusList based on the evaluation response - bool successStatus = benchmarkRun.metrics.success; - benchmarkStatusMap[node] = successStatus - ? BenchmarkTaskStatus.success - : BenchmarkTaskStatus.failure; - await Future.delayed(Duration(seconds: 1)); - notifyListeners(); - - testSuite.tests.add(task); - // If successStatus is false, break out of the loop - if (!successStatus) { - print( - "Benchmark for node ${node.id} failed. Stopping all benchmarks."); - break; - } - } - - // Add the TestSuite to the TaskViewModel - taskViewModel.addTestSuite(testSuite); - } catch (e) { - print("Error while running benchmark: $e"); - } - - // Reset the benchmark running flag - isBenchmarkRunning = false; - notifyListeners(); - } - - Future submitToLeaderboard( - String teamName, String repoUrl, String agentGitCommitSha) async { - // Create a UUID.v4 for our unique run ID - String uuid = const Uuid().v4(); - - for (var run in currentBenchmarkRuns) { - run.repositoryInfo.teamName = teamName; - run.repositoryInfo.repoUrl = repoUrl; - run.repositoryInfo.agentGitCommitSha = agentGitCommitSha; - run.runDetails.runId = uuid; - - await leaderboardService.submitReport(run); - print('Completed submission to leaderboard!'); - } - - // Clear the currentBenchmarkRuns list after submitting to the leaderboard - currentBenchmarkRuns.clear(); - } -} diff --git a/classic/frontend/lib/viewmodels/task_viewmodel.dart b/classic/frontend/lib/viewmodels/task_viewmodel.dart deleted file mode 100644 index 61187a760f..0000000000 --- a/classic/frontend/lib/viewmodels/task_viewmodel.dart +++ /dev/null @@ -1,210 +0,0 @@ -import 'dart:convert'; -import 'package:auto_gpt_flutter_client/models/task.dart'; -import 'package:auto_gpt_flutter_client/models/test_suite.dart'; -import 'package:auto_gpt_flutter_client/services/shared_preferences_service.dart'; -import 'package:flutter/foundation.dart'; -import 'package:collection/collection.dart'; -import 'package:auto_gpt_flutter_client/services/task_service.dart'; -import 'package:auto_gpt_flutter_client/models/task_request_body.dart'; - -// TODO: How will all these functions work with test suites? -class TaskViewModel with ChangeNotifier { - final TaskService _taskService; - final SharedPreferencesService _prefsService; - - List _tasks = []; - List _testSuites = []; - List combinedDataSource = []; - List tasksDataSource = []; - - Task? _selectedTask; - TestSuite? _selectedTestSuite; - - bool _isWaitingForAgentResponse = false; - - bool get isWaitingForAgentResponse => _isWaitingForAgentResponse; - - TaskViewModel(this._taskService, this._prefsService); - - /// Returns the currently selected task. - Task? get selectedTask => _selectedTask; - TestSuite? get selectedTestSuite => _selectedTestSuite; - - /// Adds a task and returns its ID. - Future createTask(String title) async { - _isWaitingForAgentResponse = true; - notifyListeners(); - try { - final newTask = TaskRequestBody(input: title); - // Add to data source - final createdTask = await _taskService.createTask(newTask); - // Create a Task object from the created task response - final newTaskObject = - Task(id: createdTask['task_id'], title: createdTask['input']); - - fetchAndCombineData(); - - final taskId = newTaskObject.id; - print("Task $taskId created successfully!"); - - return newTaskObject.id; - } catch (e) { - // TODO: We are bubbling up the full response. Revisit this. - rethrow; - } finally { - _isWaitingForAgentResponse = false; - notifyListeners(); - } - } - - /// Deletes a task. - void deleteTask(String taskId) { - _taskService.saveDeletedTask(taskId); - _tasks.removeWhere((task) => task.id == taskId); - notifyListeners(); - print("Task $taskId deleted successfully!"); - } - - /// Fetches tasks from the data source. - Future fetchTasks() async { - try { - final tasksFromApi = await _taskService.fetchAllTasks(); - _tasks = tasksFromApi - .where((task) => !_taskService.isTaskDeleted(task.id)) - .toList(); - - _tasks = _tasks.reversed.toList(); - - notifyListeners(); - print("Tasks fetched successfully!"); - } catch (error) { - print("Error fetching tasks: $error"); - } - } - - /// Handles the selection of a task by its ID. - void selectTask(String id) { - final task = _tasks.firstWhereOrNull((t) => t.id == id); - - if (task != null) { - _selectedTask = task; - print("Selected task with ID: ${task.id} and Title: ${task.title}"); - notifyListeners(); // Notify listeners to rebuild UI - } else { - final errorMessage = - "Error: Attempted to select a task with ID: $id that does not exist in the data source."; - print(errorMessage); - throw ArgumentError(errorMessage); - } - } - - /// Deselects the currently selected task. - void deselectTask() { - _selectedTask = null; - print("Deselected the current task."); - notifyListeners(); // Notify listeners to rebuild UI - } - - void selectTestSuite(TestSuite testSuite) { - _selectedTestSuite = testSuite; - notifyListeners(); - } - - void deselectTestSuite() { - _selectedTestSuite = null; - notifyListeners(); - } - - // Helper method to save test suites to SharedPreferences - Future _saveTestSuitesToPrefs() async { - final testSuitesToStore = - _testSuites.map((testSuite) => jsonEncode(testSuite.toJson())).toList(); - await _prefsService.setStringList('testSuites', testSuitesToStore); - } - - // Adds a new test suite and saves it to SharedPreferences - void addTestSuite(TestSuite testSuite) async { - _testSuites.add(testSuite); - await _saveTestSuitesToPrefs(); - notifyListeners(); - print("Test suite successfully added!"); - } - - // Fetch test suites from SharedPreferences - Future fetchTestSuites() async { - final storedTestSuites = - await _prefsService.getStringList('testSuites') ?? []; - _testSuites = storedTestSuites - .map((testSuiteMap) => TestSuite.fromJson(jsonDecode(testSuiteMap))) - .toList(); - notifyListeners(); - } - - // The fetchAndCombineData method performs several tasks: - // 1. It fetches the tasks and filters out deleted ones. - // 2. It fetches the test suites from SharedPreferences. - // 3. It combines both the tasks and test suites into a single data source according to specified logic. - Future fetchAndCombineData() async { - // Step 1: Fetch tasks from the data source - // This will populate the _tasks list with tasks fetched from the backend. - await fetchTasks(); - - // Step 2: Fetch test suites from SharedPreferences - // This will populate the _testSuites list with test suites fetched from SharedPreferences. - await fetchTestSuites(); - - // Step 3: Combine into a shared data source - // Create a map to hold test suites by their timestamp. - Map testSuiteMap = {}; - - // Clear the existing combined data source to start fresh. - combinedDataSource.clear(); - tasksDataSource.clear(); - - // Iterate through each task to check if it's contained in any of the test suites. - for (var task in _tasks) { - bool found = false; - - // Iterate through each test suite. - for (var testSuite in _testSuites) { - // Check if the current task is contained in the current test suite. - if (testSuite.tests.contains(task)) { - found = true; - - // If this test suite is already in the map, add this task to its list of tasks. - if (testSuiteMap.containsKey(testSuite.timestamp)) { - testSuiteMap[testSuite.timestamp]!.tests.add(task); - - // Find and replace the test suite in the combined data source. - final index = combinedDataSource.indexWhere((item) => - item is TestSuite && item.timestamp == testSuite.timestamp); - if (index != -1) { - combinedDataSource[index] = testSuiteMap[testSuite.timestamp]!; - } - } - // If this test suite is not in the map, add it to the map and to the combined data source. - else { - final newTestSuite = TestSuite( - timestamp: testSuite.timestamp, - tests: [task], - ); - testSuiteMap[testSuite.timestamp] = newTestSuite; - combinedDataSource.add( - newTestSuite); // Add the new test suite to the combined data source. - } - break; // Exit the loop as the task is found in a test suite. - } - } - - // If the task was not found in any test suite, add it to the combined data source. - if (!found) { - combinedDataSource.add(task); - tasksDataSource.add(task); - } - } - - // After processing all tasks, call notifyListeners to rebuild the widgets that depend on this data. - notifyListeners(); - print("Combined tasks and test suites successfully!"); - } -} diff --git a/classic/frontend/lib/views/auth/firebase_auth_view.dart b/classic/frontend/lib/views/auth/firebase_auth_view.dart deleted file mode 100644 index b2430f6815..0000000000 --- a/classic/frontend/lib/views/auth/firebase_auth_view.dart +++ /dev/null @@ -1,71 +0,0 @@ -import 'package:flutter/material.dart'; -import 'package:auto_gpt_flutter_client/services/auth_service.dart'; - -class FirebaseAuthView extends StatelessWidget { - // TODO: This should be initialized in the main.dart instead of here - final AuthService _authService = AuthService(); - - FirebaseAuthView({super.key}); // Initialize the auth service - - @override - Widget build(BuildContext context) { - return Scaffold( - body: Center( - child: Column( - mainAxisAlignment: MainAxisAlignment.center, - children: [ - OutlinedButton( - onPressed: () async { - final user = await _authService.signInWithGoogle(); - if (user != null) { - print( - "Successfully signed in with Google: ${user.user?.displayName}"); - } - }, - style: OutlinedButton.styleFrom( - foregroundColor: Colors.blue, - side: const BorderSide(color: Colors.blue, width: 2), - padding: - const EdgeInsets.symmetric(horizontal: 20, vertical: 20), - ), - child: Row( - mainAxisSize: MainAxisSize.min, - children: [ - Image.asset('assets/images/google_logo.svg.png', width: 24), - const SizedBox(width: 8), - const Text('Sign in with Google', - style: TextStyle(fontWeight: FontWeight.w300)), - ], - ), - ), - const SizedBox(height: 20), - OutlinedButton( - onPressed: () async { - final user = await _authService.signInWithGitHub(); - if (user != null) { - print( - "Successfully signed in with GitHub: ${user.user?.displayName}"); - } - }, - style: OutlinedButton.styleFrom( - foregroundColor: Colors.black, - side: const BorderSide(color: Colors.black, width: 2), - padding: - const EdgeInsets.symmetric(horizontal: 20, vertical: 20), - ), - child: Row( - mainAxisSize: MainAxisSize.min, - children: [ - Image.asset('assets/images/github_logo.svg.png', width: 24), - const SizedBox(width: 8), - const Text('Sign in with GitHub', - style: TextStyle(fontWeight: FontWeight.w300)), - ], - ), - ), - ], - ), - ), - ); - } -} diff --git a/classic/frontend/lib/views/chat/agent_message_tile.dart b/classic/frontend/lib/views/chat/agent_message_tile.dart deleted file mode 100644 index 029f487c05..0000000000 --- a/classic/frontend/lib/views/chat/agent_message_tile.dart +++ /dev/null @@ -1,175 +0,0 @@ -import 'dart:convert'; - -import 'package:auto_gpt_flutter_client/models/chat.dart'; -import 'package:auto_gpt_flutter_client/views/chat/json_code_snippet_view.dart'; -import 'package:flutter/material.dart'; -import 'package:flutter_markdown/flutter_markdown.dart'; - -class AgentMessageTile extends StatefulWidget { - final Chat chat; - final VoidCallback onArtifactsButtonPressed; - - const AgentMessageTile({ - Key? key, - required this.chat, - required this.onArtifactsButtonPressed, - }) : super(key: key); - - @override - _AgentMessageTileState createState() => _AgentMessageTileState(); -} - -class _AgentMessageTileState extends State { - bool isExpanded = false; - - @override - Widget build(BuildContext context) { - String jsonString = jsonEncode(widget.chat.jsonResponse); - int artifactsCount = widget.chat.artifacts.length; - - bool containsMarkdown(String text) { - // Regular expression to detect Markdown patterns like headers, bold, links, etc. - final RegExp markdownPattern = RegExp( - r'(?:\*\*|__).*?(?:\*\*|__)|' + // Bold - r'(?:\*|_).*?(?:\*|_)|' + // Italic - r'\[.*?\]\(.*?\)|' + // Links - r'!\[.*?\]\(.*?\)|' + // Images - r'#{1,6}.*|' + // Headers - r'```.*?```', // Fenced code blocks - dotAll: true, // To match across multiple lines - caseSensitive: false, - ); - - return markdownPattern.hasMatch(text); - } - - bool hasMarkdown = containsMarkdown(widget.chat.message); - - return LayoutBuilder( - builder: (context, constraints) { - double chatViewWidth = constraints.maxWidth; - double tileWidth = (chatViewWidth >= 1000) ? 900 : chatViewWidth - 40; - - return Align( - alignment: Alignment.center, - child: Container( - width: tileWidth, - margin: const EdgeInsets.symmetric(vertical: 8), - padding: const EdgeInsets.symmetric(horizontal: 20), - decoration: BoxDecoration( - color: Colors.white, - border: Border.all(color: Colors.black, width: 0.5), - borderRadius: BorderRadius.circular(4), - ), - child: Column( - mainAxisAlignment: MainAxisAlignment.start, - children: [ - Container( - constraints: const BoxConstraints(minHeight: 50), - child: Row( - crossAxisAlignment: CrossAxisAlignment.center, - children: [ - const Text( - "Agent", - style: TextStyle( - color: Colors.black, - fontSize: 16, - fontWeight: FontWeight.bold, - ), - ), - const SizedBox(width: 20), - Expanded( - child: Container( - padding: const EdgeInsets.fromLTRB(0, 10, 20, 10), - child: SingleChildScrollView( - child: hasMarkdown - ? Markdown( - data: widget.chat.message, - shrinkWrap: true, - styleSheet: MarkdownStyleSheet.fromTheme( - Theme.of(context)) - .copyWith( - blockquoteDecoration: BoxDecoration( - color: Colors - .black, // Background color for blockquotes - border: Border( - left: BorderSide( - color: Colors.grey, - width: 4.0, - ), - ), - ), - blockquoteAlign: WrapAlignment.start, - blockquotePadding: const EdgeInsets.all( - 10.0), // Padding for blockquotes - codeblockDecoration: BoxDecoration( - color: Colors.grey[ - 200], // Background color for code blocks - borderRadius: - BorderRadius.circular(4.0), - ), - codeblockPadding: const EdgeInsets.all( - 10.0), // Padding for code blocks - code: TextStyle( - backgroundColor: Colors.grey[ - 200], // Background color for inline code - fontFamily: 'monospace', - ), - ), - ) - : SelectableText(widget.chat.message, - maxLines: null), - ), - ), - ), - ElevatedButton( - onPressed: widget.onArtifactsButtonPressed, - style: ElevatedButton.styleFrom( - backgroundColor: Colors.white, - foregroundColor: Colors.black, - side: const BorderSide(color: Colors.black), - shape: RoundedRectangleBorder( - borderRadius: BorderRadius.circular(8), - ), - ), - child: Text('$artifactsCount Artifacts'), - ), - const SizedBox(width: 20), - // Expand/Collapse button - IconButton( - splashRadius: 0.1, - icon: Icon(isExpanded - ? Icons.keyboard_arrow_up - : Icons.keyboard_arrow_down), - onPressed: () { - setState(() { - isExpanded = !isExpanded; - }); - }, - ), - ], - ), - ), - // Expanded view with JSON code snippet and copy button - if (isExpanded) ...[ - const Divider(), - ClipRect( - child: SizedBox( - height: 200, - child: Padding( - padding: const EdgeInsets.only(right: 20), - child: JsonCodeSnippetView( - jsonString: jsonString, - ), - ), - ), - ), - ], - ], - ), - ), - ); - }, - ); - } -} diff --git a/classic/frontend/lib/views/chat/chat_input_field.dart b/classic/frontend/lib/views/chat/chat_input_field.dart deleted file mode 100644 index 63afa23192..0000000000 --- a/classic/frontend/lib/views/chat/chat_input_field.dart +++ /dev/null @@ -1,172 +0,0 @@ -import 'package:auto_gpt_flutter_client/viewmodels/chat_viewmodel.dart'; -import 'package:auto_gpt_flutter_client/views/chat/continuous_mode_dialog.dart'; -import 'package:flutter/material.dart'; -import 'package:shared_preferences/shared_preferences.dart'; - -class ChatInputField extends StatefulWidget { - // Callback to be triggered when the send button is pressed - final Function(String) onSendPressed; - final Function() onContinuousModePressed; - final bool isContinuousMode; - // TODO: Create a view model for this class and remove the ChatViewModel - final ChatViewModel viewModel; - - const ChatInputField({ - Key? key, - required this.onSendPressed, - required this.onContinuousModePressed, - this.isContinuousMode = false, - required this.viewModel, - }) : super(key: key); - - @override - _ChatInputFieldState createState() => _ChatInputFieldState(); -} - -class _ChatInputFieldState extends State { - // Controller for the TextField to manage its content - final TextEditingController _controller = TextEditingController(); - final FocusNode _focusNode = FocusNode(); - final FocusNode _throwawayFocusNode = FocusNode(); - - @override - void initState() { - super.initState(); - _focusNode.addListener(() { - if (_focusNode.hasFocus && widget.isContinuousMode) { - widget.onContinuousModePressed(); - } - }); - } - - @override - void dispose() { - _focusNode.dispose(); // Dispose of the FocusNode when you're done. - super.dispose(); - } - - Future _presentContinuousModeDialogIfNeeded() async { - final showContinuousModeDialog = await widget.viewModel.prefsService - .getBool('showContinuousModeDialog') ?? - true; - - FocusScope.of(context).requestFocus(_throwawayFocusNode); - if (showContinuousModeDialog) { - showDialog( - context: context, - builder: (BuildContext context) { - return ContinuousModeDialog( - onProceed: () { - Navigator.of(context).pop(); - _executeContinuousMode(); - }, - onCheckboxChanged: (bool value) async { - await widget.viewModel.prefsService - .setBool('showContinuousModeDialog', !value); - }, - ); - }, - ); - } else { - _executeContinuousMode(); - } - } - - void _executeContinuousMode() { - if (!widget.isContinuousMode) { - widget.onSendPressed(_controller.text); - _controller.clear(); - _focusNode.unfocus(); - } - widget.onContinuousModePressed(); - } - - @override - Widget build(BuildContext context) { - // Using LayoutBuilder to provide the current constraints of the widget, - // ensuring it rebuilds when the window size changes - return LayoutBuilder( - builder: (context, constraints) { - // Calculate the width of the chat view based on the constraints provided - double chatViewWidth = constraints.maxWidth; - - // Determine the width of the input field based on the chat view width. - // If the chat view width is 1000 or more, the input width will be 900. - // Otherwise, the input width will be the chat view width minus 40. - double inputWidth = (chatViewWidth >= 1000) ? 900 : chatViewWidth - 40; - - return Container( - width: inputWidth, - // Defining the minimum and maximum height for the TextField container - constraints: const BoxConstraints( - minHeight: 50, - maxHeight: 400, - ), - // Styling the container with a border and rounded corners - decoration: BoxDecoration( - color: Colors.white, - border: Border.all(color: Colors.black, width: 0.5), - borderRadius: BorderRadius.circular(8), - ), - padding: const EdgeInsets.symmetric(horizontal: 8), - // Using SingleChildScrollView to ensure the TextField can scroll - // when the content exceeds its maximum height - child: SingleChildScrollView( - reverse: true, - child: TextField( - controller: _controller, - focusNode: _focusNode, - // Enable enter key stroke to send the message - onSubmitted: (_) { - widget.onSendPressed(_controller.text); - _controller.clear(); - }, - // Allowing the TextField to expand vertically and accommodate multiple lines - maxLines: null, - decoration: InputDecoration( - hintText: 'Type a message...', - border: InputBorder.none, - suffixIcon: Row( - mainAxisSize: MainAxisSize.min, // Set to minimum space - children: [ - if (!widget.isContinuousMode) - Tooltip( - message: 'Send a single message', - child: IconButton( - splashRadius: 0.1, - icon: const Icon(Icons.send), - onPressed: () { - widget.onSendPressed(_controller.text); - _controller.clear(); - }, - ), - ), - Tooltip( - message: widget.isContinuousMode - ? '' - : 'Enable continuous mode', - child: IconButton( - splashRadius: 0.1, - icon: Icon(widget.isContinuousMode - ? Icons.pause - : Icons.fast_forward), - onPressed: () { - // TODO: All of this logic should be handled at a higher level in the widget tree. Temporary - if (!widget.isContinuousMode) { - _presentContinuousModeDialogIfNeeded(); - } else { - widget.onContinuousModePressed(); - } - }, - ), - ) - ], - ), - ), - ), - ), - ); - }, - ); - } -} diff --git a/classic/frontend/lib/views/chat/chat_view.dart b/classic/frontend/lib/views/chat/chat_view.dart deleted file mode 100644 index 7d769adb49..0000000000 --- a/classic/frontend/lib/views/chat/chat_view.dart +++ /dev/null @@ -1,178 +0,0 @@ -import 'package:auto_gpt_flutter_client/models/message_type.dart'; -import 'package:auto_gpt_flutter_client/viewmodels/settings_viewmodel.dart'; -import 'package:auto_gpt_flutter_client/viewmodels/task_queue_viewmodel.dart'; -import 'package:auto_gpt_flutter_client/viewmodels/task_viewmodel.dart'; -import 'package:auto_gpt_flutter_client/views/chat/agent_message_tile.dart'; -import 'package:auto_gpt_flutter_client/views/chat/chat_input_field.dart'; -import 'package:auto_gpt_flutter_client/views/chat/loading_indicator.dart'; -import 'package:auto_gpt_flutter_client/views/chat/user_message_tile.dart'; -import 'package:flutter/material.dart'; -import 'package:auto_gpt_flutter_client/viewmodels/chat_viewmodel.dart'; -import 'package:fluttertoast/fluttertoast.dart'; -import 'package:provider/provider.dart'; -import 'package:http/http.dart' as http; - -class ChatView extends StatefulWidget { - final ChatViewModel viewModel; - - const ChatView({Key? key, required this.viewModel}) : super(key: key); - - @override - _ChatViewState createState() => _ChatViewState(); -} - -class _ChatViewState extends State { - final ScrollController _scrollController = ScrollController(); - bool _isAtBottom = true; - - @override - void initState() { - super.initState(); - - // Listen for scroll events and determine whether the scroll is at the bottom - _scrollController.addListener(() { - if (_scrollController.position.atEdge) { - if (_scrollController.position.pixels == 0) { - _isAtBottom = false; - } else { - _isAtBottom = true; - } - } - }); - - // Schedule the fetchChatsForTask call for after the initial build - WidgetsBinding.instance.addPostFrameCallback((_) { - widget.viewModel.fetchChatsForTask(); - }); - } - - @override - void dispose() { - // Dispose of the ScrollController when the widget is removed - _scrollController.dispose(); - super.dispose(); - } - - void _scrollToBottom() { - _scrollController.animateTo( - _scrollController.position.maxScrollExtent, - duration: const Duration(milliseconds: 200), - curve: Curves.easeOut, - ); - } - - @override - Widget build(BuildContext context) { - // TODO: Do we want to have a reference to task view model in this class? - final taskViewModel = Provider.of(context, listen: true); - return Scaffold( - body: Column( - children: [ - // Chat messages list - Expanded( - child: ListView.builder( - controller: _scrollController, - itemCount: widget.viewModel.chats.length, - itemBuilder: (context, index) { - final chat = widget.viewModel.chats[index]; - - // If the last message has been built and we're at the bottom of the list, scroll down - if (index == widget.viewModel.chats.length - 1 && _isAtBottom) { - WidgetsBinding.instance.addPostFrameCallback((_) { - _scrollToBottom(); - }); - } - - if (chat.messageType == MessageType.user) { - return UserMessageTile(message: chat.message); - } else { - return AgentMessageTile( - key: ValueKey(chat.id), - chat: chat, - onArtifactsButtonPressed: () { - // Loop through each artifact and download it using the artifact_id - for (var artifact in chat.artifacts) { - widget.viewModel - .downloadArtifact(chat.taskId, artifact.artifactId); - } - }, - ); - } - }, - ), - ), - const SizedBox(height: 10), - LoadingIndicator( - isLoading: Provider.of(context, listen: true) - .isBenchmarkRunning || - widget.viewModel.isWaitingForAgentResponse || - taskViewModel.isWaitingForAgentResponse), - const SizedBox(height: 10), - // Input area - Padding( - padding: const EdgeInsets.all(8.0), - child: ChatInputField( - onSendPressed: (message) async { - widget.viewModel.addTemporaryMessage(message); - try { - if (widget.viewModel.currentTaskId != null) { - widget.viewModel.sendChatMessage( - message, - continuousModeSteps: Provider.of( - context, - listen: false) - .continuousModeSteps); - } else { - String newTaskId = await taskViewModel.createTask(message); - widget.viewModel.setCurrentTaskId(newTaskId); - widget.viewModel.sendChatMessage( - message, - continuousModeSteps: Provider.of( - context, - listen: false) - .continuousModeSteps); - } - } catch (response) { - if (response is http.Response && response.statusCode == 404) { - Fluttertoast.showToast( - msg: - "404 error: Please ensure the correct baseURL for your agent in \nthe settings and that your agent adheres to the agent protocol.", - toastLength: Toast.LENGTH_LONG, - gravity: ToastGravity.TOP, - timeInSecForIosWeb: 5, - backgroundColor: Colors.red, - webPosition: "center", - webBgColor: - "linear-gradient(to right, #dc1c13, #dc1c13)", - textColor: Colors.white, - fontSize: 16.0); - } else if (response is http.Response && - response.statusCode >= 500 && - response.statusCode < 600) { - Fluttertoast.showToast( - msg: "500 error: Something went wrong", - toastLength: Toast.LENGTH_LONG, - gravity: ToastGravity.TOP, - timeInSecForIosWeb: 5, - backgroundColor: Colors.red, - webPosition: "center", - webBgColor: - "linear-gradient(to right, #dc1c13, #dc1c13)", - textColor: Colors.white, - fontSize: 16.0); - } - } - }, - onContinuousModePressed: () { - widget.viewModel.isContinuousMode = - !widget.viewModel.isContinuousMode; - }, - isContinuousMode: widget.viewModel.isContinuousMode, - viewModel: widget.viewModel, - ), - ), - ], - ), - ); - } -} diff --git a/classic/frontend/lib/views/chat/continuous_mode_dialog.dart b/classic/frontend/lib/views/chat/continuous_mode_dialog.dart deleted file mode 100644 index bcfd5276b3..0000000000 --- a/classic/frontend/lib/views/chat/continuous_mode_dialog.dart +++ /dev/null @@ -1,168 +0,0 @@ -import 'package:auto_gpt_flutter_client/constants/app_colors.dart'; -import 'package:flutter/material.dart'; - -class ContinuousModeDialog extends StatefulWidget { - final VoidCallback? onProceed; - final ValueChanged? onCheckboxChanged; - - const ContinuousModeDialog({ - Key? key, - this.onProceed, - this.onCheckboxChanged, - }) : super(key: key); - - @override - _ContinuousModeDialogState createState() => _ContinuousModeDialogState(); -} - -class _ContinuousModeDialogState extends State { - bool _attemptedToDismiss = false; - bool _checkboxValue = false; - - @override - Widget build(BuildContext context) { - return WillPopScope( - onWillPop: () async { - setState(() { - _attemptedToDismiss = true; - }); - return false; - }, - child: Dialog( - shape: RoundedRectangleBorder( - borderRadius: BorderRadius.circular(8.0), - side: BorderSide( - color: _attemptedToDismiss - ? AppColors.accentDeniedLight - : Colors.transparent, - width: 3.0, - ), - ), - child: Container( - width: 260, - height: 251, - padding: const EdgeInsets.all(16), - child: Column( - children: [ - // Black circle exclamation icon - Icon(Icons.error_outline, - color: _attemptedToDismiss - ? AppColors.accentDeniedLight - : Colors.black), - const SizedBox(height: 8), - // Title - const Text( - 'Continuous Mode', - textAlign: TextAlign.center, - style: TextStyle( - color: Colors.black, - fontSize: 16, - fontFamily: 'Archivo', - fontWeight: FontWeight.w600, - ), - ), - const SizedBox(height: 8), - // Block of text - const SizedBox( - width: 220, - child: Text( - 'Agents operating in Continuous Mode will perform Actions without requesting authorization from the user. Configure the number of steps in the settings menu.', - textAlign: TextAlign.center, - style: TextStyle( - color: Colors.black, - fontSize: 12.50, - fontFamily: 'Archivo', - fontWeight: FontWeight.w400, - ), - ), - ), - // Buttons - const SizedBox(height: 14), - Row( - mainAxisAlignment: MainAxisAlignment.center, - children: [ - // Cancel Button - SizedBox( - width: 106, - height: 28, - child: ElevatedButton( - style: ElevatedButton.styleFrom( - backgroundColor: Colors.grey, - shape: RoundedRectangleBorder( - borderRadius: BorderRadius.circular(8.0), - ), - ), - onPressed: () => Navigator.of(context).pop(), - child: const Text( - 'Cancel', - textAlign: TextAlign.center, - style: TextStyle( - color: Colors.white, - fontSize: 12.50, - fontFamily: 'Archivo', - fontWeight: FontWeight.w400, - ), - ), - ), - ), - const SizedBox(width: 8), - // Proceed Button - SizedBox( - width: 106, - height: 28, - child: ElevatedButton( - style: ElevatedButton.styleFrom( - backgroundColor: AppColors.primaryLight, - shape: RoundedRectangleBorder( - borderRadius: BorderRadius.circular(8.0), - ), - ), - onPressed: widget.onProceed, // Use the provided callback - child: const Text( - 'Proceed', - textAlign: TextAlign.center, - style: TextStyle( - color: Colors.white, - fontSize: 12.50, - fontFamily: 'Archivo', - fontWeight: FontWeight.w400, - ), - ), - ), - ), - ], - ), - const SizedBox(height: 11), - // Checkbox and text - Row( - mainAxisAlignment: MainAxisAlignment.center, - children: [ - Checkbox( - value: _checkboxValue, - onChanged: (bool? newValue) { - setState(() { - _checkboxValue = newValue ?? false; - }); - if (widget.onCheckboxChanged != null) { - widget.onCheckboxChanged!(_checkboxValue); - } - }, - ), - const Text( - "Don't ask again", - style: TextStyle( - color: Colors.black, - fontSize: 11, - fontFamily: 'Archivo', - fontWeight: FontWeight.w400, - ), - ), - ], - ), - ], - ), - ), - ), - ); - } -} diff --git a/classic/frontend/lib/views/chat/json_code_snippet_view.dart b/classic/frontend/lib/views/chat/json_code_snippet_view.dart deleted file mode 100644 index f8ece40b13..0000000000 --- a/classic/frontend/lib/views/chat/json_code_snippet_view.dart +++ /dev/null @@ -1,65 +0,0 @@ -import 'package:flutter/material.dart'; -import 'package:flutter_highlight/flutter_highlight.dart'; -import 'package:flutter_highlight/themes/github.dart'; -import 'package:flutter/services.dart'; -import 'dart:convert'; - -class JsonCodeSnippetView extends StatelessWidget { - final String jsonString; - - // Constructor to initialize the jsonString that will be displayed - const JsonCodeSnippetView({ - Key? key, - required this.jsonString, - }) : super(key: key); - - @override - Widget build(BuildContext context) { - // Pretty print the JSON using JsonEncoder to format with indentation - String prettyJson = - const JsonEncoder.withIndent(' ').convert(json.decode(jsonString)); - - return Padding( - // Padding applied to align the code snippet view within its container - padding: const EdgeInsets.fromLTRB(30, 30, 0, 30), - child: Row( - children: [ - // Expanded widget to ensure the code snippet view takes the available space - Expanded( - child: SingleChildScrollView( - // SingleChildScrollView to make the code snippet scrollable if it overflows - child: HighlightView( - // Display the pretty-printed JSON - prettyJson, - // Set the language to JSON for syntax highlighting - language: 'json', - // Apply a GitHub-like theme for the highlighting - theme: githubTheme, - // Padding applied to the code snippet inside the view - padding: const EdgeInsets.all(12), - // TextStyle applied to the code snippet (monospace font) - textStyle: const TextStyle( - fontFamily: 'monospace', - fontSize: 12, - ), - ), - ), - ), - // SizedBox to create a gap between the code snippet view and the copy button - const SizedBox(width: 20), - Material( - color: Colors.white, - // IconButton to allow the user to copy the pretty-printed JSON to the clipboard - child: IconButton( - icon: const Icon(Icons.copy), - onPressed: () { - // Copy the pretty-printed JSON to the clipboard - Clipboard.setData(ClipboardData(text: prettyJson)); - }, - ), - ), - ], - ), - ); - } -} diff --git a/classic/frontend/lib/views/chat/loading_indicator.dart b/classic/frontend/lib/views/chat/loading_indicator.dart deleted file mode 100644 index cb0e69b35a..0000000000 --- a/classic/frontend/lib/views/chat/loading_indicator.dart +++ /dev/null @@ -1,81 +0,0 @@ -import 'package:auto_gpt_flutter_client/constants/app_colors.dart'; -import 'package:flutter/material.dart'; - -class LoadingIndicator extends StatefulWidget { - final bool isLoading; - - const LoadingIndicator({Key? key, required this.isLoading}) : super(key: key); - - @override - _LoadingIndicatorState createState() => _LoadingIndicatorState(); -} - -class _LoadingIndicatorState extends State - with SingleTickerProviderStateMixin { - late AnimationController _controller; - - @override - void initState() { - super.initState(); - - _controller = AnimationController( - duration: const Duration(seconds: 2), - vsync: this, - )..repeat(); - } - - @override - void dispose() { - _controller.dispose(); - super.dispose(); - } - - @override - Widget build(BuildContext context) { - return LayoutBuilder( - builder: (context, constraints) { - double width = - (constraints.maxWidth >= 1000) ? 850 : constraints.maxWidth - 65; - - return SizedBox( - width: width, - height: 4.0, - child: widget.isLoading - ? AnimatedBuilder( - animation: _controller, - builder: (context, child) { - return ShaderMask( - shaderCallback: (rect) { - return LinearGradient( - begin: Alignment.centerLeft, - end: Alignment.centerRight, - colors: [ - Colors.grey[400]!, - AppColors.primaryLight, - Colors.white, - Colors.grey[400]!, - ], - stops: [ - _controller.value - 0.5, - _controller.value - 0.25, - _controller.value, - _controller.value + 0.25, - ], - ).createShader(rect); - }, - child: Container( - width: width, - height: 4.0, - color: Colors.white, - ), - ); - }, - ) - : Container( - color: Colors.grey[400], - ), - ); - }, - ); - } -} diff --git a/classic/frontend/lib/views/chat/user_message_tile.dart b/classic/frontend/lib/views/chat/user_message_tile.dart deleted file mode 100644 index f8c5019db0..0000000000 --- a/classic/frontend/lib/views/chat/user_message_tile.dart +++ /dev/null @@ -1,70 +0,0 @@ -import 'package:flutter/material.dart'; - -class UserMessageTile extends StatelessWidget { - final String message; - - // Constructor takes the user message as a required parameter - const UserMessageTile({ - Key? key, - required this.message, - }) : super(key: key); - - @override - Widget build(BuildContext context) { - return LayoutBuilder( - builder: (context, constraints) { - // Calculate the width of the chat view based on the constraints provided - double chatViewWidth = constraints.maxWidth; - - // Determine the width of the message tile based on the chat view width - double tileWidth = (chatViewWidth >= 1000) ? 900 : chatViewWidth - 40; - - return Align( - alignment: Alignment.center, - child: Container( - width: tileWidth, - // Minimum height constraint for the container - constraints: const BoxConstraints( - minHeight: 50, - ), - // Margin and padding for styling - margin: const EdgeInsets.symmetric(vertical: 8), - padding: const EdgeInsets.symmetric(horizontal: 20), - // Decoration to style the container with a white background, thin black border, and small corner radius - decoration: BoxDecoration( - color: Colors.white, - border: Border.all(color: Colors.black, width: 0.5), - borderRadius: BorderRadius.circular(4), - ), - child: Row( - children: [ - // "User" label with custom styling - const Text( - "User", - style: TextStyle( - color: Colors.black, - fontSize: 16, - fontWeight: FontWeight.bold, - ), - ), - const SizedBox(width: 20), - // Expanded widget to accommodate the message text - Expanded( - child: Container( - // Padding for the text content - padding: const EdgeInsets.fromLTRB(0, 10, 20, 10), - // Displaying the user message with no max line limit - child: SelectableText( - message, - maxLines: null, - ), - ), - ), - ], - ), - ), - ); - }, - ); - } -} diff --git a/classic/frontend/lib/views/main_layout.dart b/classic/frontend/lib/views/main_layout.dart deleted file mode 100644 index bbf2478972..0000000000 --- a/classic/frontend/lib/views/main_layout.dart +++ /dev/null @@ -1,167 +0,0 @@ -import 'package:auto_gpt_flutter_client/viewmodels/settings_viewmodel.dart'; -import 'package:auto_gpt_flutter_client/viewmodels/skill_tree_viewmodel.dart'; -import 'package:auto_gpt_flutter_client/viewmodels/task_viewmodel.dart'; -import 'package:auto_gpt_flutter_client/viewmodels/chat_viewmodel.dart'; -import 'package:auto_gpt_flutter_client/views/settings/settings_view.dart'; -import 'package:auto_gpt_flutter_client/views/side_bar/side_bar_view.dart'; -import 'package:auto_gpt_flutter_client/views/skill_tree/skill_tree_view.dart'; -import 'package:auto_gpt_flutter_client/views/task/task_view.dart'; -import 'package:auto_gpt_flutter_client/views/chat/chat_view.dart'; -import 'package:auto_gpt_flutter_client/views/task_queue/task_queue_view.dart'; -import 'package:flutter/cupertino.dart'; -import 'package:provider/provider.dart'; - -class MainLayout extends StatelessWidget { - final ValueNotifier selectedViewNotifier = ValueNotifier('TaskView'); - - MainLayout({super.key}); - - @override - Widget build(BuildContext context) { - // Get the screen width - double width = MediaQuery.of(context).size.width; - - // Access the various ViewModels from the context - final taskViewModel = Provider.of(context); - final chatViewModel = Provider.of(context); - final settingsViewModel = Provider.of(context); - - // Initialize the width for the SideBarView - double sideBarWidth = 60.0; - - // Initialize the width for the TaskView - double taskViewWidth = 280.0; - - // Initialize the width for the SettingsView - double settingsViewWidth = 280.0; - - // Calculate remaining width after subtracting the width of the SideBarView - double remainingWidth = width - sideBarWidth; - - // Declare variables to hold the widths of SkillTreeView, TestQueueView, and ChatView - double skillTreeViewWidth = 0; - double testQueueViewWidth = 0; - double chatViewWidth = 0; - - if (width > 800) { - return Row( - children: [ - SizedBox( - width: sideBarWidth, - child: SideBarView(selectedViewNotifier: selectedViewNotifier)), - ValueListenableBuilder( - valueListenable: selectedViewNotifier, - builder: (context, String value, _) { - return Consumer( - builder: (context, skillTreeViewModel, _) { - if (value == 'TaskView') { - // TODO: Handle this state reset better - skillTreeViewModel.resetState(); - chatViewWidth = remainingWidth - taskViewWidth; - return Row( - children: [ - SizedBox( - width: taskViewWidth, - child: TaskView(viewModel: taskViewModel)), - SizedBox( - width: chatViewWidth, - child: ChatView(viewModel: chatViewModel)) - ], - ); - } else if (value == 'SettingsView') { - // TODO: Handle this state reset better - skillTreeViewModel.resetState(); - chatViewWidth = remainingWidth - settingsViewWidth; - return Row( - children: [ - SizedBox( - width: settingsViewWidth, - // Render the SettingsView with the same width as TaskView - child: SettingsView(viewModel: settingsViewModel)), - SizedBox( - width: chatViewWidth, - // Render the ChatView next to the SettingsView - child: ChatView(viewModel: chatViewModel)), - ], - ); - } else { - if (skillTreeViewModel.selectedNode != null) { - // If TaskQueueView should be displayed - testQueueViewWidth = remainingWidth * 0.25; - skillTreeViewWidth = remainingWidth * 0.25; - chatViewWidth = remainingWidth * 0.5; - } else { - // If only SkillTreeView and ChatView should be displayed - skillTreeViewWidth = remainingWidth * 0.5; - chatViewWidth = remainingWidth * 0.5; - } - - return Row( - children: [ - SizedBox( - width: skillTreeViewWidth, - child: - SkillTreeView(viewModel: skillTreeViewModel)), - if (skillTreeViewModel.selectedNode != null) - SizedBox( - width: testQueueViewWidth, - child: TaskQueueView()), - SizedBox( - width: chatViewWidth, - child: ChatView(viewModel: chatViewModel)), - ], - ); - } - }, - ); - }, - ), - ], - ); - } else { - // For smaller screens, return a tabbed layout - // TODO: Include settings view for smaller screen sizes - return CupertinoTabScaffold( - tabBar: CupertinoTabBar( - items: const [ - BottomNavigationBarItem( - icon: Icon(CupertinoIcons.person), - label: 'Tasks', - ), - BottomNavigationBarItem( - icon: Icon(CupertinoIcons.chat_bubble), - label: 'Chat', - ), - ], - ), - tabBuilder: (BuildContext context, int index) { - CupertinoTabView? returnValue; - - switch (index) { - case 0: - returnValue = CupertinoTabView(builder: (context) { - return CupertinoPageScaffold( - child: SafeArea(child: TaskView(viewModel: taskViewModel)), - ); - }); - break; - case 1: - returnValue = CupertinoTabView(builder: (context) { - return CupertinoPageScaffold( - child: SafeArea(child: ChatView(viewModel: chatViewModel)), - ); - }); - break; - } - - return returnValue ?? - CupertinoTabView(builder: (context) { - return CupertinoPageScaffold( - child: Container(), // Default empty container - ); - }); - }, - ); - } - } -} diff --git a/classic/frontend/lib/views/settings/api_base_url_field.dart b/classic/frontend/lib/views/settings/api_base_url_field.dart deleted file mode 100644 index 6593757c41..0000000000 --- a/classic/frontend/lib/views/settings/api_base_url_field.dart +++ /dev/null @@ -1,75 +0,0 @@ -import 'package:auto_gpt_flutter_client/viewmodels/settings_viewmodel.dart'; -import 'package:flutter/material.dart'; -import 'package:provider/provider.dart'; - -class ApiBaseUrlField extends StatelessWidget { - final TextEditingController controller = TextEditingController(); - - @override - Widget build(BuildContext context) { - return Consumer( - builder: (context, settingsViewModel, child) { - // TODO: This view shouldn't know about the settings view model. It should use a delegate - controller.text = settingsViewModel.baseURL; - return Padding( - padding: const EdgeInsets.symmetric(horizontal: 16), - child: Column( - children: [ - Container( - height: 50, - decoration: BoxDecoration( - color: Colors.white, - border: Border.all(color: Colors.black, width: 0.5), - borderRadius: BorderRadius.circular(8), - ), - child: Padding( - padding: const EdgeInsets.symmetric(horizontal: 8), - child: TextField( - controller: controller, - decoration: const InputDecoration( - border: InputBorder.none, - hintText: 'Agent Base URL', - ), - ), - ), - ), - const SizedBox(height: 16), - Row( - mainAxisAlignment: MainAxisAlignment.spaceEvenly, - children: [ - ElevatedButton( - onPressed: () { - controller.text = 'http://127.0.0.1:8000/ap/v1'; - settingsViewModel.updateBaseURL(controller.text); - }, - style: ElevatedButton.styleFrom( - backgroundColor: Colors.white, - foregroundColor: Colors.black, - textStyle: const TextStyle( - color: Colors.black, - ), - ), - child: const Text("Reset"), - ), - ElevatedButton( - onPressed: () { - settingsViewModel.updateBaseURL(controller.text); - }, - style: ElevatedButton.styleFrom( - backgroundColor: Colors.white, - foregroundColor: Colors.black, - textStyle: const TextStyle( - color: Colors.black, - ), - ), - child: const Text("Update"), - ), - ], - ), - ], - ), - ); - }, - ); - } -} diff --git a/classic/frontend/lib/views/settings/settings_view.dart b/classic/frontend/lib/views/settings/settings_view.dart deleted file mode 100644 index b0b46151c0..0000000000 --- a/classic/frontend/lib/views/settings/settings_view.dart +++ /dev/null @@ -1,92 +0,0 @@ -import 'package:auto_gpt_flutter_client/viewmodels/settings_viewmodel.dart'; -import 'package:auto_gpt_flutter_client/views/settings/api_base_url_field.dart'; -import 'package:flutter/material.dart'; - -/// [SettingsView] displays a list of settings that the user can configure. -/// It uses [SettingsViewModel] for state management and logic. -class SettingsView extends StatelessWidget { - final SettingsViewModel viewModel; - - /// Constructor for [SettingsView], requiring an instance of [SettingsViewModel]. - const SettingsView({Key? key, required this.viewModel}) : super(key: key); - - @override - Widget build(BuildContext context) { - return Scaffold( - appBar: AppBar( - backgroundColor: Colors.grey, - foregroundColor: Colors.black, - title: const Text('Settings'), - ), - body: Column( - children: [ - // All settings in a scrollable list - Expanded( - child: ListView( - children: [ - // TODO: Add back dark mode toggle - // Dark Mode Toggle - // SwitchListTile( - // title: const Text('Dark Mode'), - // value: viewModel.isDarkModeEnabled, - // onChanged: viewModel.toggleDarkMode, - // ), - // const Divider(), - // Developer Mode Toggle - SwitchListTile( - title: const Text('Developer Mode'), - value: viewModel.isDeveloperModeEnabled, - onChanged: viewModel.toggleDeveloperMode, - ), - const Divider(), - // Base URL Configuration - const ListTile( - title: Center(child: Text('Agent Base URL')), - ), - ApiBaseUrlField(), - const Divider(), - // Continuous Mode Steps Configuration - ListTile( - title: const Center(child: Text('Continuous Mode Steps')), - // User can increment or decrement the number of steps using '+' and '-' buttons. - subtitle: Row( - mainAxisAlignment: - MainAxisAlignment.center, // Centers the Row's content - children: [ - IconButton( - icon: const Icon(Icons.remove), - onPressed: viewModel - .decrementContinuousModeSteps, // Decrement the number of steps. - ), - Text('${viewModel.continuousModeSteps} Steps'), - IconButton( - icon: const Icon(Icons.add), - onPressed: viewModel - .incrementContinuousModeSteps, // Increment the number of steps. - ), - ], - ), - ), - const Divider(), - ], - ), - ), - // Sign out button fixed at the bottom - Container( - width: double.infinity, - padding: const EdgeInsets.symmetric(horizontal: 16, vertical: 8), - child: ElevatedButton.icon( - icon: const Icon(Icons.logout, color: Colors.black), - label: - const Text('Sign Out', style: TextStyle(color: Colors.black)), - style: ElevatedButton.styleFrom( - backgroundColor: Colors.white, - ), - onPressed: viewModel.signOut, - ), - ), - ], - ), - ); - } -} diff --git a/classic/frontend/lib/views/side_bar/side_bar_view.dart b/classic/frontend/lib/views/side_bar/side_bar_view.dart deleted file mode 100644 index e6610a7bd4..0000000000 --- a/classic/frontend/lib/views/side_bar/side_bar_view.dart +++ /dev/null @@ -1,109 +0,0 @@ -import 'package:auto_gpt_flutter_client/viewmodels/settings_viewmodel.dart'; -import 'package:auto_gpt_flutter_client/viewmodels/task_queue_viewmodel.dart'; -import 'package:flutter/material.dart'; -import 'package:provider/provider.dart'; -import 'package:url_launcher/url_launcher.dart'; - -class SideBarView extends StatelessWidget { - final ValueNotifier selectedViewNotifier; - - const SideBarView({super.key, required this.selectedViewNotifier}); - - // Function to launch the URL - void _launchURL(String urlString) async { - var url = Uri.parse(urlString); - if (await canLaunchUrl(url)) { - await launchUrl(url); - } else { - throw 'Could not launch $url'; - } - } - - @override - Widget build(BuildContext context) { - // TODO: should we pass this in as a dependency? - final taskQueueViewModel = - Provider.of(context, listen: true); - return Material( - child: ValueListenableBuilder( - valueListenable: selectedViewNotifier, - builder: (context, String selectedView, _) { - return SizedBox( - width: 60, - child: Column( - children: [ - Column( - children: [ - IconButton( - splashRadius: 0.1, - color: selectedView == 'TaskView' - ? Colors.blue - : Colors.black, - icon: const Icon(Icons.chat), - onPressed: taskQueueViewModel.isBenchmarkRunning - ? null - : () => selectedViewNotifier.value = 'TaskView', - ), - if (Provider.of(context, listen: true) - .isDeveloperModeEnabled) - IconButton( - splashRadius: 0.1, - color: selectedView == 'SkillTreeView' - ? Colors.blue - : Colors.black, - icon: const Icon(Icons.emoji_events), - onPressed: taskQueueViewModel.isBenchmarkRunning - ? null - : () => - selectedViewNotifier.value = 'SkillTreeView', - ), - IconButton( - splashRadius: 0.1, - color: selectedView == 'SettingsView' - ? Colors.blue - : Colors.black, - icon: const Icon(Icons.settings), - onPressed: () => - selectedViewNotifier.value = 'SettingsView', - ), - ], - ), - const Spacer(), - Column( - children: [ - IconButton( - splashRadius: 0.1, - iconSize: 25, - icon: Icon(Icons.book, - color: Color.fromRGBO(50, 120, 123, 1)), - onPressed: () => _launchURL( - 'https://aiedge.medium.com/autogpt-forge-e3de53cc58ec'), - tooltip: 'Learn how to build your own Agent', - ), - IconButton( - splashRadius: 0.1, - iconSize: 25, - icon: Image.asset('assets/images/discord_logo.png'), - onPressed: () => - _launchURL('https://discord.gg/autogpt'), - tooltip: 'Join our Discord', - ), - const SizedBox(height: 6), - IconButton( - splashRadius: 0.1, - iconSize: 15, - icon: Image.asset('assets/images/twitter_logo.png'), - onPressed: () => - _launchURL('https://twitter.com/Auto_GPT'), - tooltip: 'Follow us on Twitter', - ), - const SizedBox(height: 8), - ], - ), - ], - ), - ); - }), - ); - } -} diff --git a/classic/frontend/lib/views/skill_tree/skill_tree_view.dart b/classic/frontend/lib/views/skill_tree/skill_tree_view.dart deleted file mode 100644 index 5d5d815b07..0000000000 --- a/classic/frontend/lib/views/skill_tree/skill_tree_view.dart +++ /dev/null @@ -1,129 +0,0 @@ -import 'package:auto_gpt_flutter_client/models/skill_tree/skill_tree_category.dart'; -import 'package:auto_gpt_flutter_client/models/skill_tree/skill_tree_node.dart'; -import 'package:auto_gpt_flutter_client/viewmodels/skill_tree_viewmodel.dart'; -import 'package:auto_gpt_flutter_client/views/skill_tree/tree_node_view.dart'; -import 'package:flutter/material.dart'; -import 'package:graphview/GraphView.dart'; - -class SkillTreeView extends StatefulWidget { - final SkillTreeViewModel viewModel; - - const SkillTreeView({Key? key, required this.viewModel}) : super(key: key); - - @override - _SkillTreeViewState createState() => _SkillTreeViewState(); -} - -class _SkillTreeViewState extends State { - Future? initialization; - - @override - void initState() { - super.initState(); - initialization = widget.viewModel.initializeSkillTree(); - } - - @override - Widget build(BuildContext context) { - return Stack( - children: [ - FutureBuilder( - future: initialization, - builder: (context, snapshot) { - widget.viewModel.graph.nodes.clear(); - widget.viewModel.graph.edges.clear(); - if (snapshot.connectionState == ConnectionState.waiting) { - return const CircularProgressIndicator(); - } - - if (snapshot.hasError) { - return const Text("An error occurred"); - } - - // Create Node and Edge objects for GraphView - final Map nodeMap = {}; - for (var skillTreeNode in widget.viewModel.skillTreeNodes) { - final node = Node.Id(skillTreeNode.id); - widget.viewModel.graph.addNode(node); - nodeMap[skillTreeNode.id] = node; - } - - for (var skillTreeEdge in widget.viewModel.skillTreeEdges) { - final fromNode = nodeMap[skillTreeEdge.from]; - final toNode = nodeMap[skillTreeEdge.to]; - if (fromNode != null && toNode != null) { - widget.viewModel.graph.addEdge(fromNode, toNode); - } - } - - return Scaffold( - body: Column( - mainAxisSize: MainAxisSize.max, - children: [ - Expanded( - child: InteractiveViewer( - constrained: false, - child: SizedBox( - width: MediaQuery.of(context).size.width, - height: MediaQuery.of(context).size.height, - child: Align( - alignment: Alignment.centerLeft, - child: GraphView( - graph: widget.viewModel.graph, - algorithm: - SugiyamaAlgorithm(widget.viewModel.builder), - paint: Paint() - ..color = Colors.green - ..strokeWidth = 1 - ..style = PaintingStyle.stroke, - builder: (Node node) { - String nodeId = node.key?.value as String; - SkillTreeNode? skillTreeNode = - widget.viewModel.getNodeById(nodeId); - if (skillTreeNode != null) { - return TreeNodeView( - node: skillTreeNode, - selected: nodeId == - widget.viewModel.selectedNode?.id); - } else { - return const SizedBox(); // Return an empty widget if the node is not found - } - }, - ), - ), - ), - ), - ), - ], - ), - ); - }, - ), - Positioned( - top: 10, - left: 10, - child: Material( - type: MaterialType.transparency, - child: DropdownButton( - value: widget.viewModel.currentSkillTreeType, - items: SkillTreeCategory.values.map((category) { - return DropdownMenuItem( - value: category, - child: Text(category.stringValue), - ); - }).toList(), - onChanged: (newValue) { - if (newValue != null) { - setState(() { - widget.viewModel.currentSkillTreeType = newValue; - widget.viewModel.initializeSkillTree(); - }); - } - }, - ), - ), - ) - ], - ); - } -} diff --git a/classic/frontend/lib/views/skill_tree/tree_node_view.dart b/classic/frontend/lib/views/skill_tree/tree_node_view.dart deleted file mode 100644 index 83534144aa..0000000000 --- a/classic/frontend/lib/views/skill_tree/tree_node_view.dart +++ /dev/null @@ -1,74 +0,0 @@ -import 'package:auto_gpt_flutter_client/models/skill_tree/skill_tree_node.dart'; -import 'package:auto_gpt_flutter_client/viewmodels/skill_tree_viewmodel.dart'; -import 'package:auto_gpt_flutter_client/viewmodels/task_queue_viewmodel.dart'; -import 'package:flutter/material.dart'; -import 'package:provider/provider.dart'; - -class TreeNodeView extends StatefulWidget { - final SkillTreeNode node; - final bool selected; - - TreeNodeView({required this.node, this.selected = false}); - - @override - _TreeNodeViewState createState() => _TreeNodeViewState(); -} - -class _TreeNodeViewState extends State { - bool _isHovering = false; - - @override - Widget build(BuildContext context) { - return GestureDetector( - onTap: () { - print('Node ${widget.node.id} clicked'); - final taskQueueViewModel = - Provider.of(context, listen: false); - if (!taskQueueViewModel.isBenchmarkRunning) { - final skillTreeViewModel = - Provider.of(context, listen: false); - skillTreeViewModel.toggleNodeSelection(widget.node.id); - taskQueueViewModel.updateSelectedNodeHierarchyBasedOnOption( - taskQueueViewModel.selectedOption, - skillTreeViewModel.selectedNode, - skillTreeViewModel.skillTreeNodes, - skillTreeViewModel.skillTreeEdges); - } - }, - child: MouseRegion( - onEnter: (_) => setState(() => _isHovering = true), - onExit: (_) => setState(() => _isHovering = false), - child: Column( - mainAxisSize: MainAxisSize.min, // Use minimum space - children: [ - Container( - width: 30, - height: 30, - decoration: BoxDecoration( - color: Colors.grey[300], // Light grey - borderRadius: - BorderRadius.circular(8), // Slight rounded corners - ), - child: Center( - child: Icon( - Icons.star, - color: widget.selected - ? Colors.red - : (_isHovering - ? Colors.red - : Colors - .black), // Black when not hovering or selected - ), - ), - ), - SizedBox(height: 4), - Text( - widget.node.label, - style: TextStyle(fontSize: 12), - ), - ], - ), - ), - ); - } -} diff --git a/classic/frontend/lib/views/task/new_task_button.dart b/classic/frontend/lib/views/task/new_task_button.dart deleted file mode 100644 index e4e6621d65..0000000000 --- a/classic/frontend/lib/views/task/new_task_button.dart +++ /dev/null @@ -1,47 +0,0 @@ -import 'package:flutter/material.dart'; - -class NewTaskButton extends StatelessWidget { - final VoidCallback onPressed; - - const NewTaskButton({Key? key, required this.onPressed}) : super(key: key); - - @override - Widget build(BuildContext context) { - // Determine the width of the TaskView - double taskViewWidth = MediaQuery.of(context).size.width; - double buttonWidth = taskViewWidth - 20; - if (buttonWidth > 260) { - buttonWidth = 260; - } - - return ElevatedButton( - onPressed: onPressed, - style: ButtonStyle( - // Set the button's background color - backgroundColor: MaterialStateProperty.all(Colors.white), - // Set the button's edge - side: MaterialStateProperty.all( - const BorderSide(color: Colors.black, width: 0.5)), - // Set the button's shape with rounded corners - shape: MaterialStateProperty.all( - RoundedRectangleBorder( - borderRadius: BorderRadius.circular(8.0), - ), - ), - ), - child: SizedBox( - width: buttonWidth, - height: 50, - child: const Row( - children: [ - // Black plus icon - Icon(Icons.add, color: Colors.black), - SizedBox(width: 8), - // "New Task" label - Text('New Task', style: TextStyle(color: Colors.black)), - ], - ), - ), - ); - } -} diff --git a/classic/frontend/lib/views/task/task_list_tile.dart b/classic/frontend/lib/views/task/task_list_tile.dart deleted file mode 100644 index 7025d06ad0..0000000000 --- a/classic/frontend/lib/views/task/task_list_tile.dart +++ /dev/null @@ -1,75 +0,0 @@ -import 'package:flutter/material.dart'; -import 'package:auto_gpt_flutter_client/models/task.dart'; - -class TaskListTile extends StatelessWidget { - final Task task; - final VoidCallback onTap; - final VoidCallback onDelete; - final bool selected; - - const TaskListTile({ - Key? key, - required this.task, - required this.onTap, - required this.onDelete, - this.selected = false, - }) : super(key: key); - - Widget build(BuildContext context) { - // Determine the width of the TaskView - double taskViewWidth = MediaQuery.of(context).size.width; - double tileWidth = taskViewWidth - 20; - if (tileWidth > 260) { - tileWidth = 260; - } - - return GestureDetector( - onTap: () { - onTap(); - }, - child: Material( - // Use a transparent color to avoid any unnecessary color overlay - color: Colors.transparent, - child: Padding( - // Provide a horizontal padding to ensure the tile does not touch the edges - padding: const EdgeInsets.symmetric(horizontal: 10.0), - child: Container( - // Width and height specifications for the tile - width: tileWidth, - height: 50, - decoration: BoxDecoration( - // Use conditional operator to determine background color based on selection - color: selected ? Colors.grey[300] : Colors.white, - borderRadius: BorderRadius.circular(8.0), - ), - child: Row( - children: [ - // Space from the left edge of the tile - const SizedBox(width: 8), - // Message bubble icon indicating a task - const Icon(Icons.messenger_outline, color: Colors.black), - const SizedBox(width: 8), - // Task title - Expanded( - child: Text( - task.title, - maxLines: 1, - overflow: TextOverflow.ellipsis, - style: const TextStyle(color: Colors.black), - ), - ), - // If the task is selected, show a delete icon - if (selected) - IconButton( - splashRadius: 0.1, - icon: const Icon(Icons.close, color: Colors.black), - onPressed: onDelete, - ), - ], - ), - ), - ), - ), - ); - } -} diff --git a/classic/frontend/lib/views/task/task_view.dart b/classic/frontend/lib/views/task/task_view.dart deleted file mode 100644 index fb4264036a..0000000000 --- a/classic/frontend/lib/views/task/task_view.dart +++ /dev/null @@ -1,134 +0,0 @@ -import 'package:auto_gpt_flutter_client/models/task.dart'; -import 'package:auto_gpt_flutter_client/models/test_suite.dart'; -import 'package:auto_gpt_flutter_client/viewmodels/settings_viewmodel.dart'; -import 'package:auto_gpt_flutter_client/views/task/test_suite_detail_view.dart'; -import 'package:auto_gpt_flutter_client/views/task/test_suite_list_tile.dart'; -import 'package:flutter/material.dart'; -import 'package:auto_gpt_flutter_client/viewmodels/task_viewmodel.dart'; -import 'package:auto_gpt_flutter_client/viewmodels/chat_viewmodel.dart'; -import 'package:auto_gpt_flutter_client/views/task/new_task_button.dart'; -import 'package:auto_gpt_flutter_client/views/task/task_list_tile.dart'; -import 'package:provider/provider.dart'; - -class TaskView extends StatefulWidget { - final TaskViewModel viewModel; - - const TaskView({Key? key, required this.viewModel}) : super(key: key); - - @override - _TaskViewState createState() => _TaskViewState(); -} - -class _TaskViewState extends State { - @override - void initState() { - super.initState(); - - // Schedule the fetchTasks call for after the initial build - WidgetsBinding.instance.addPostFrameCallback((_) { - widget.viewModel.fetchAndCombineData(); - }); - } - - @override - Widget build(BuildContext context) { - // Combine tasks and test suites into a single list - final items = Provider.of(context, listen: false) - .isDeveloperModeEnabled - ? widget.viewModel.combinedDataSource - : widget.viewModel.tasksDataSource; - return Scaffold( - backgroundColor: Colors.white, - body: Stack( - children: [ - Column( - children: [ - // Title and New Task button - Padding( - padding: const EdgeInsets.all(8.0), - child: NewTaskButton( - onPressed: () async { - // Update the current task ID and chats in ChatViewModel - final chatViewModel = - Provider.of(context, listen: false); - chatViewModel.clearCurrentTaskAndChats(); - widget.viewModel.deselectTask(); - print( - 'New Task button pressed, cleared current task ID and chats'); - }, - )), - // Task List - Expanded( - child: ListView.builder( - itemCount: items.length, - itemBuilder: (context, index) { - final item = items[index]; - - if (item is Task) { - return TaskListTile( - task: item, - onTap: () { - // Select the task in TaskViewModel - widget.viewModel.selectTask(item.id); - - // Update the current task ID in ChatViewModel - // TODO: Do we want to have a reference to chat view model in this class? - final chatViewModel = Provider.of( - context, - listen: false); - chatViewModel.setCurrentTaskId(item.id); - - print('Task ${item.title} tapped'); - }, - onDelete: () { - // Delete the task in TaskViewModel - widget.viewModel.deleteTask(item.id); - // TODO: Do we want to have a reference to chat view model in this class? - final chatViewModel = Provider.of( - context, - listen: false); - if (chatViewModel.currentTaskId == item.id) { - chatViewModel.clearCurrentTaskAndChats(); - } - - print('Task ${item.title} delete button tapped'); - }, - selected: item.id == widget.viewModel.selectedTask?.id, - ); - } else if (item is TestSuite) { - return TestSuiteListTile( - testSuite: item, - onTap: () { - // Navigate to the new view for this test suite - widget.viewModel.deselectTask(); - widget.viewModel.selectTestSuite(item); - // TODO: Do we want to have a reference to chat view model in this class? - Provider.of(context, listen: false) - .clearCurrentTaskAndChats(); - }, - ); - } else { - return const SizedBox - .shrink(); // return an empty widget if type is unknown - } - }, - ), - ), - ], - ), - if (widget.viewModel.selectedTestSuite != null) - Positioned( - top: 0, - left: 0, - right: 0, - bottom: 0, - child: TestSuiteDetailView( - testSuite: widget.viewModel.selectedTestSuite!, - viewModel: widget.viewModel, - ), - ), - ], - ), - ); - } -} diff --git a/classic/frontend/lib/views/task/test_suite_detail_view.dart b/classic/frontend/lib/views/task/test_suite_detail_view.dart deleted file mode 100644 index ff7d2833c5..0000000000 --- a/classic/frontend/lib/views/task/test_suite_detail_view.dart +++ /dev/null @@ -1,79 +0,0 @@ -import 'package:auto_gpt_flutter_client/models/test_suite.dart'; -import 'package:auto_gpt_flutter_client/viewmodels/chat_viewmodel.dart'; -import 'package:auto_gpt_flutter_client/viewmodels/task_viewmodel.dart'; -import 'package:auto_gpt_flutter_client/views/task/task_list_tile.dart'; -import 'package:flutter/material.dart'; -import 'package:provider/provider.dart'; - -// TODO: Do we want a view model for every view? -class TestSuiteDetailView extends StatefulWidget { - final TaskViewModel viewModel; - final TestSuite testSuite; - - const TestSuiteDetailView( - {Key? key, required this.testSuite, required this.viewModel}) - : super(key: key); - - @override - _TestSuiteDetailViewState createState() => _TestSuiteDetailViewState(); -} - -class _TestSuiteDetailViewState extends State { - @override - Widget build(BuildContext context) { - return Scaffold( - backgroundColor: Colors.white, - appBar: AppBar( - backgroundColor: Colors.grey, - foregroundColor: Colors.black, - title: Text("${widget.testSuite.timestamp}"), - leading: IconButton( - icon: Icon(Icons.arrow_back), - onPressed: () => widget.viewModel.deselectTestSuite(), - ), - ), - body: Column( - children: [ - // Task List - Expanded( - child: ListView.builder( - itemCount: - widget.testSuite.tests.length, // Count of tasks passed in - itemBuilder: (context, index) { - final task = widget.testSuite.tests[index]; - return TaskListTile( - task: task, - onTap: () { - // Select the task in TaskViewModel - widget.viewModel.selectTask(task.id); - - // Update the current task ID in ChatViewModel - // TODO: Do we want to have a reference to chat view model in this class? - final chatViewModel = - Provider.of(context, listen: false); - chatViewModel.setCurrentTaskId(task.id); - - print('Task ${task.title} tapped'); - }, - onDelete: () { - // Delete the task in TaskViewModel - widget.viewModel.deleteTask(task.id); - // TODO: Do we want to have a reference to chat view model in this class? - final chatViewModel = - Provider.of(context, listen: false); - if (chatViewModel.currentTaskId == task.id) { - chatViewModel.clearCurrentTaskAndChats(); - } - - print('Task ${task.title} delete button tapped'); - }, - selected: task.id == widget.viewModel.selectedTask?.id, - ); - }, - ), - ), - ], - ), - ); - } -} diff --git a/classic/frontend/lib/views/task/test_suite_list_tile.dart b/classic/frontend/lib/views/task/test_suite_list_tile.dart deleted file mode 100644 index 5e8e183a2f..0000000000 --- a/classic/frontend/lib/views/task/test_suite_list_tile.dart +++ /dev/null @@ -1,66 +0,0 @@ -import 'package:auto_gpt_flutter_client/models/test_suite.dart'; -import 'package:flutter/material.dart'; - -class TestSuiteListTile extends StatelessWidget { - final TestSuite testSuite; - final VoidCallback onTap; - - const TestSuiteListTile({ - Key? key, - required this.testSuite, - required this.onTap, - }) : super(key: key); - - Widget build(BuildContext context) { - // Determine the width of the TaskView - double taskViewWidth = MediaQuery.of(context).size.width; - double tileWidth = taskViewWidth - 20; - if (tileWidth > 260) { - tileWidth = 260; - } - - return GestureDetector( - onTap: () { - onTap(); - }, - child: Material( - // Use a transparent color to avoid any unnecessary color overlay - color: Colors.transparent, - child: Padding( - // Provide a horizontal padding to ensure the tile does not touch the edges - padding: const EdgeInsets.symmetric(horizontal: 10.0), - child: Container( - // Width and height specifications for the tile - width: tileWidth, - height: 50, - decoration: BoxDecoration( - color: Colors.white, - borderRadius: BorderRadius.circular(8.0), - ), - child: Row( - children: [ - // Space from the left edge of the tile - const SizedBox(width: 8), - // Message bubble icon indicating a test suite - const Icon(Icons.play_arrow, color: Colors.black), - const SizedBox(width: 8), - // Test suite title - Expanded( - child: Text( - testSuite.timestamp, - maxLines: 1, - overflow: TextOverflow.ellipsis, - style: const TextStyle(color: Colors.black), - ), - ), - // Disclosure indicator (arrow pointing right) - const Icon(Icons.chevron_right, color: Colors.grey), - const SizedBox(width: 8), - ], - ), - ), - ), - ), - ); - } -} diff --git a/classic/frontend/lib/views/task_queue/leaderboard_submission_button.dart b/classic/frontend/lib/views/task_queue/leaderboard_submission_button.dart deleted file mode 100644 index dfa9d917b3..0000000000 --- a/classic/frontend/lib/views/task_queue/leaderboard_submission_button.dart +++ /dev/null @@ -1,56 +0,0 @@ -import 'package:auto_gpt_flutter_client/constants/app_colors.dart'; -import 'package:flutter/material.dart'; - -class LeaderboardSubmissionButton extends StatelessWidget { - final VoidCallback? onPressed; - final bool isDisabled; - - LeaderboardSubmissionButton( - {required this.onPressed, this.isDisabled = false}); - - @override - Widget build(BuildContext context) { - final button = SizedBox( - height: 50, - child: ElevatedButton( - style: ElevatedButton.styleFrom( - backgroundColor: isDisabled ? Colors.grey : AppColors.primaryLight, - shape: RoundedRectangleBorder( - borderRadius: BorderRadius.circular(8.0), - ), - padding: const EdgeInsets.symmetric(horizontal: 16, vertical: 8), - elevation: 5.0, - ), - onPressed: isDisabled ? null : onPressed, - child: const Row( - mainAxisAlignment: MainAxisAlignment.center, - children: [ - Text( - 'Submit to leaderboard', - style: TextStyle( - color: Colors.white, - fontSize: 12.50, - fontFamily: 'Archivo', - fontWeight: FontWeight.w400, - ), - ), - SizedBox(width: 10), - Icon( - Icons.emoji_events, - color: Colors.white, - size: 24, - ), - ], - ), - ), - ); - - return isDisabled - ? Tooltip( - message: - "You must complete a test suite before submitting to the leaderboard.", - child: button, - ) - : button; - } -} diff --git a/classic/frontend/lib/views/task_queue/leaderboard_submission_dialog.dart b/classic/frontend/lib/views/task_queue/leaderboard_submission_dialog.dart deleted file mode 100644 index bf169d143d..0000000000 --- a/classic/frontend/lib/views/task_queue/leaderboard_submission_dialog.dart +++ /dev/null @@ -1,241 +0,0 @@ -import 'package:auto_gpt_flutter_client/constants/app_colors.dart'; -import 'package:auto_gpt_flutter_client/utils/uri_utility.dart'; -import 'package:auto_gpt_flutter_client/viewmodels/task_queue_viewmodel.dart'; -import 'package:flutter/material.dart'; -import 'package:shared_preferences/shared_preferences.dart'; - -class LeaderboardSubmissionDialog extends StatefulWidget { - final Function(String, String, String)? onSubmit; - // TODO: Create a view model for this class and remove the TaskQueueViewModel - final TaskQueueViewModel viewModel; - - const LeaderboardSubmissionDialog({ - Key? key, - this.onSubmit, - required this.viewModel, - }) : super(key: key); - - @override - _LeaderboardSubmissionDialogState createState() => - _LeaderboardSubmissionDialogState(); -} - -class _LeaderboardSubmissionDialogState - extends State { - final TextEditingController _teamNameController = TextEditingController(); - final TextEditingController _repoUrlController = TextEditingController(); - final TextEditingController _commitShaController = TextEditingController(); - - String? _teamNameError; - String? _repoUrlError; - String? _commitShaError; - - @override - void initState() { - super.initState(); - _initSharedPreferences(); - } - - Future _initSharedPreferences() async { - // Using the SharedPreferencesService from the viewModel to get stored values - _teamNameController.text = - await widget.viewModel.prefsService.getString('teamName') ?? ''; - _repoUrlController.text = - await widget.viewModel.prefsService.getString('repoUrl') ?? ''; - _commitShaController.text = - await widget.viewModel.prefsService.getString('commitSha') ?? ''; - } - - void _validateAndSubmit() async { - setState(() { - _teamNameError = null; - _repoUrlError = null; - _commitShaError = null; - }); - - bool isValid = true; - - if (_teamNameController.text.isEmpty) { - isValid = false; - _teamNameError = 'Team Name is required'; - } - - if (_repoUrlController.text.isEmpty) { - isValid = false; - _repoUrlError = 'Repo URL is required'; - } else if (!UriUtility.isURL(_repoUrlController.text)) { - isValid = false; - _repoUrlError = 'Invalid URL format'; - } else if (!(await UriUtility() - .isValidGitHubRepo(_repoUrlController.text))) { - isValid = false; - _repoUrlError = 'Not a valid GitHub repository'; - } - - if (_commitShaController.text.isEmpty) { - isValid = false; - _commitShaError = 'Commit SHA is required'; - } - - if (isValid) { - print('Valid leaderboard submission parameters!'); - await _saveToSharedPreferences(); - widget.onSubmit?.call(_teamNameController.text, _repoUrlController.text, - _commitShaController.text); - Navigator.of(context).pop(); - } else { - setState(() {}); - } - } - - Future _saveToSharedPreferences() async { - // Using the prefsService to save the values - await widget.viewModel.prefsService - .setString('teamName', _teamNameController.text); - await widget.viewModel.prefsService - .setString('repoUrl', _repoUrlController.text); - await widget.viewModel.prefsService - .setString('commitSha', _commitShaController.text); - } - - @override - Widget build(BuildContext context) { - final containerHeight = 324.0 + - (_teamNameError == null ? 0 : 22) + - (_repoUrlError == null ? 0 : 22) + - (_commitShaError == null ? 0 : 22); - return Dialog( - shape: RoundedRectangleBorder( - borderRadius: BorderRadius.circular(8.0), - ), - child: Container( - width: 260, - height: containerHeight, - padding: const EdgeInsets.all(16), - child: Column( - crossAxisAlignment: CrossAxisAlignment.start, - children: [ - // Title - const Text( - 'Leaderboard Submission', - textAlign: TextAlign.center, - style: TextStyle( - color: Colors.black, - fontSize: 16, - fontFamily: 'Archivo', - fontWeight: FontWeight.w600, - ), - ), - const SizedBox(height: 14), - // Team Name Field - const Text('Team Name'), - TextField( - controller: _teamNameController, - decoration: InputDecoration( - hintText: 'Keyboard Warriors', - errorText: _teamNameError, - border: OutlineInputBorder( - borderSide: BorderSide( - color: _teamNameError != null ? Colors.red : Colors.grey, - ), - ), - ), - ), - const SizedBox(height: 8), - // Github Repo URL Field - const Text('Github Repo URL'), - TextField( - controller: _repoUrlController, - decoration: InputDecoration( - hintText: 'https://github.com/KeyboardWarriors/BestAgentEver', - errorText: _repoUrlError, - border: OutlineInputBorder( - borderSide: BorderSide( - color: _repoUrlError != null ? Colors.red : Colors.grey, - ), - ), - ), - ), - const SizedBox(height: 8), - // Commit SHA Field - const Text('Commit SHA'), - TextField( - controller: _commitShaController, - decoration: InputDecoration( - hintText: '389131f2ab78c2cc5bdd2ec257be2d18b3a63da3', - errorText: _commitShaError, - border: OutlineInputBorder( - borderSide: BorderSide( - color: _commitShaError != null ? Colors.red : Colors.grey, - ), - ), - ), - ), - const SizedBox(height: 14), - // Buttons - Row( - mainAxisAlignment: MainAxisAlignment.center, - children: [ - // Cancel Button - SizedBox( - width: 106, - height: 28, - child: ElevatedButton( - style: ElevatedButton.styleFrom( - backgroundColor: Colors.grey, - shape: RoundedRectangleBorder( - borderRadius: BorderRadius.circular(8.0), - ), - ), - onPressed: () => Navigator.of(context).pop(), - child: const Text( - 'Cancel', - style: TextStyle( - color: Colors.white, - fontSize: 12.50, - fontFamily: 'Archivo', - fontWeight: FontWeight.w400, - ), - ), - ), - ), - SizedBox(width: 8), - // Submit Button - SizedBox( - width: 106, - height: 28, - child: ElevatedButton( - style: ElevatedButton.styleFrom( - backgroundColor: AppColors.primaryLight, - shape: RoundedRectangleBorder( - borderRadius: BorderRadius.circular(8.0), - ), - ), - onPressed: _validateAndSubmit, - child: const Text( - 'Submit', - style: TextStyle( - color: Colors.white, - fontSize: 12.50, - fontFamily: 'Archivo', - fontWeight: FontWeight.w400, - ), - ), - ), - ), - ], - ), - ], - ), - ), - ); - } - - @override - void dispose() { - _teamNameController.dispose(); - _repoUrlController.dispose(); - _commitShaController.dispose(); - super.dispose(); - } -} diff --git a/classic/frontend/lib/views/task_queue/task_queue_view.dart b/classic/frontend/lib/views/task_queue/task_queue_view.dart deleted file mode 100644 index adda890ab8..0000000000 --- a/classic/frontend/lib/views/task_queue/task_queue_view.dart +++ /dev/null @@ -1,131 +0,0 @@ -import 'package:auto_gpt_flutter_client/models/benchmark/benchmark_task_status.dart'; -import 'package:auto_gpt_flutter_client/models/test_option.dart'; -import 'package:auto_gpt_flutter_client/viewmodels/chat_viewmodel.dart'; -import 'package:auto_gpt_flutter_client/viewmodels/skill_tree_viewmodel.dart'; -import 'package:auto_gpt_flutter_client/viewmodels/task_queue_viewmodel.dart'; -import 'package:auto_gpt_flutter_client/viewmodels/task_viewmodel.dart'; -import 'package:auto_gpt_flutter_client/views/task_queue/test_suite_button.dart'; -import 'package:flutter/material.dart'; -import 'package:provider/provider.dart'; - -class TaskQueueView extends StatelessWidget { - @override - Widget build(BuildContext context) { - // TODO: This should be injected instead - final viewModel = Provider.of(context); - - // Node hierarchy - final nodeHierarchy = viewModel.selectedNodeHierarchy ?? []; - - return Material( - color: Colors.white, - child: Column( - children: [ - // The list of tasks (tiles) - Expanded( - child: ListView.builder( - itemCount: nodeHierarchy.length, - itemBuilder: (context, index) { - final node = nodeHierarchy[index]; - - // Choose the appropriate leading widget based on the task status - Widget leadingWidget; - switch (viewModel.benchmarkStatusMap[node]) { - case null: - case BenchmarkTaskStatus.notStarted: - leadingWidget = CircleAvatar( - radius: 12, - backgroundColor: Colors.grey, - child: CircleAvatar( - radius: 6, - backgroundColor: Colors.white, - ), - ); - break; - case BenchmarkTaskStatus.inProgress: - leadingWidget = SizedBox( - width: 24, - height: 24, - child: CircularProgressIndicator( - strokeWidth: 2, - ), - ); - break; - case BenchmarkTaskStatus.success: - leadingWidget = CircleAvatar( - radius: 12, - backgroundColor: Colors.green, - child: CircleAvatar( - radius: 6, - backgroundColor: Colors.white, - ), - ); - break; - case BenchmarkTaskStatus.failure: - leadingWidget = CircleAvatar( - radius: 12, - backgroundColor: Colors.red, - child: CircleAvatar( - radius: 6, - backgroundColor: Colors.white, - ), - ); - break; - } - - return Container( - margin: EdgeInsets.fromLTRB(20, 5, 20, 5), - decoration: BoxDecoration( - color: Colors.white, - border: Border.all(color: Colors.black, width: 1), - borderRadius: BorderRadius.circular(4), - ), - child: ListTile( - leading: leadingWidget, - title: Center(child: Text('${node.label}')), - subtitle: - Center(child: Text('${node.data.info.description}')), - ), - ); - }, - ), - ), - - // Buttons at the bottom - Padding( - padding: EdgeInsets.all(20), - child: Column( - children: [ - // TestSuiteButton - TestSuiteButton( - isDisabled: viewModel.isBenchmarkRunning, - selectedOptionString: viewModel.selectedOption.description, - onOptionSelected: (selectedOption) { - print('Option Selected: $selectedOption'); - final skillTreeViewModel = - Provider.of(context, listen: false); - viewModel.updateSelectedNodeHierarchyBasedOnOption( - TestOptionExtension.fromDescription(selectedOption)!, - skillTreeViewModel.selectedNode, - skillTreeViewModel.skillTreeNodes, - skillTreeViewModel.skillTreeEdges); - }, - onPlayPressed: (selectedOption) { - print('Starting benchmark with option: $selectedOption'); - final chatViewModel = - Provider.of(context, listen: false); - final taskViewModel = - Provider.of(context, listen: false); - chatViewModel.clearCurrentTaskAndChats(); - viewModel.runBenchmark(chatViewModel, taskViewModel); - }, - ), - SizedBox(height: 8), // Gap of 8 points between buttons - ], - ), - ), - ], - ), - ); - } -} diff --git a/classic/frontend/lib/views/task_queue/test_suite_button.dart b/classic/frontend/lib/views/task_queue/test_suite_button.dart deleted file mode 100644 index c1ddca279d..0000000000 --- a/classic/frontend/lib/views/task_queue/test_suite_button.dart +++ /dev/null @@ -1,119 +0,0 @@ -import 'package:auto_gpt_flutter_client/constants/app_colors.dart'; -import 'package:auto_gpt_flutter_client/models/test_option.dart'; -import 'package:flutter/material.dart'; - -class TestSuiteButton extends StatefulWidget { - final bool isDisabled; - final Function(String) onOptionSelected; - final Function(String) onPlayPressed; - String selectedOptionString; - - TestSuiteButton({ - this.isDisabled = false, - required this.onOptionSelected, - required this.onPlayPressed, - required this.selectedOptionString, - }); - - @override - _TestSuiteButtonState createState() => _TestSuiteButtonState(); -} - -class _TestSuiteButtonState extends State { - @override - Widget build(BuildContext context) { - return Row( - children: [ - // Dropdown button with test options - Expanded( - // Added Expanded to make sure it takes the available space - child: PopupMenuButton( - enabled: !widget.isDisabled, - onSelected: (value) { - setState(() { - widget.selectedOptionString = value; - }); - widget.onOptionSelected(widget.selectedOptionString); - }, - itemBuilder: (BuildContext context) { - return [ - PopupMenuItem( - value: TestOption.runSingleTest.description, - child: Text(TestOption.runSingleTest.description), - ), - PopupMenuItem( - value: TestOption - .runTestSuiteIncludingSelectedNodeAndAncestors - .description, - child: Text(TestOption - .runTestSuiteIncludingSelectedNodeAndAncestors - .description), - ), - PopupMenuItem( - value: TestOption.runAllTestsInCategory.description, - child: Text(TestOption.runAllTestsInCategory.description), - ), - ]; - }, - child: Container( - height: 50, - padding: const EdgeInsets.symmetric(horizontal: 16, vertical: 8), - decoration: BoxDecoration( - color: widget.isDisabled ? Colors.grey : AppColors.primaryLight, - borderRadius: BorderRadius.circular(8.0), - ), - child: Row( - mainAxisAlignment: MainAxisAlignment.center, - children: [ - Flexible( - child: Text( - widget.selectedOptionString, - style: const TextStyle( - color: Colors.white, - fontSize: 12.50, - fontFamily: 'Archivo', - fontWeight: FontWeight.w400, - ), - overflow: TextOverflow.ellipsis, - maxLines: 2, - ), - ), - const Icon( - Icons.arrow_drop_down, - color: Colors.white, - ) - ], - ), - ), - ), - ), - // Play button - const SizedBox(width: 10), - SizedBox( - height: 50, - child: ElevatedButton( - style: ElevatedButton.styleFrom( - backgroundColor: - widget.isDisabled ? Colors.grey : AppColors.primaryLight, - shape: RoundedRectangleBorder( - borderRadius: BorderRadius.circular(8.0), - ), - padding: const EdgeInsets.symmetric(horizontal: 16, vertical: 8), - elevation: 5.0, - ), - onPressed: widget.isDisabled - ? null - : () { - widget.onPlayPressed(widget.selectedOptionString); - }, - child: const Icon( - Icons.play_arrow, - color: Colors.white, - size: 24, - ), - ), - ), - ], - ); - } -} diff --git a/classic/frontend/linux/.gitignore b/classic/frontend/linux/.gitignore deleted file mode 100644 index d3896c9844..0000000000 --- a/classic/frontend/linux/.gitignore +++ /dev/null @@ -1 +0,0 @@ -flutter/ephemeral diff --git a/classic/frontend/linux/CMakeLists.txt b/classic/frontend/linux/CMakeLists.txt deleted file mode 100644 index 92bd811b3f..0000000000 --- a/classic/frontend/linux/CMakeLists.txt +++ /dev/null @@ -1,139 +0,0 @@ -# Project-level configuration. -cmake_minimum_required(VERSION 3.10) -project(runner LANGUAGES CXX) - -# The name of the executable created for the application. Change this to change -# the on-disk name of your application. -set(BINARY_NAME "auto_gpt_flutter_client") -# The unique GTK application identifier for this application. See: -# https://wiki.gnome.org/HowDoI/ChooseApplicationID -set(APPLICATION_ID "com.example.auto_gpt_flutter_client") - -# Explicitly opt in to modern CMake behaviors to avoid warnings with recent -# versions of CMake. -cmake_policy(SET CMP0063 NEW) - -# Load bundled libraries from the lib/ directory relative to the binary. -set(CMAKE_INSTALL_RPATH "$ORIGIN/lib") - -# Root filesystem for cross-building. -if(FLUTTER_TARGET_PLATFORM_SYSROOT) - set(CMAKE_SYSROOT ${FLUTTER_TARGET_PLATFORM_SYSROOT}) - set(CMAKE_FIND_ROOT_PATH ${CMAKE_SYSROOT}) - set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER) - set(CMAKE_FIND_ROOT_PATH_MODE_PACKAGE ONLY) - set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY) - set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY) -endif() - -# Define build configuration options. -if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES) - set(CMAKE_BUILD_TYPE "Debug" CACHE - STRING "Flutter build mode" FORCE) - set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS - "Debug" "Profile" "Release") -endif() - -# Compilation settings that should be applied to most targets. -# -# Be cautious about adding new options here, as plugins use this function by -# default. In most cases, you should add new options to specific targets instead -# of modifying this function. -function(APPLY_STANDARD_SETTINGS TARGET) - target_compile_features(${TARGET} PUBLIC cxx_std_14) - target_compile_options(${TARGET} PRIVATE -Wall -Werror) - target_compile_options(${TARGET} PRIVATE "$<$>:-O3>") - target_compile_definitions(${TARGET} PRIVATE "$<$>:NDEBUG>") -endfunction() - -# Flutter library and tool build rules. -set(FLUTTER_MANAGED_DIR "${CMAKE_CURRENT_SOURCE_DIR}/flutter") -add_subdirectory(${FLUTTER_MANAGED_DIR}) - -# System-level dependencies. -find_package(PkgConfig REQUIRED) -pkg_check_modules(GTK REQUIRED IMPORTED_TARGET gtk+-3.0) - -add_definitions(-DAPPLICATION_ID="${APPLICATION_ID}") - -# Define the application target. To change its name, change BINARY_NAME above, -# not the value here, or `flutter run` will no longer work. -# -# Any new source files that you add to the application should be added here. -add_executable(${BINARY_NAME} - "main.cc" - "my_application.cc" - "${FLUTTER_MANAGED_DIR}/generated_plugin_registrant.cc" -) - -# Apply the standard set of build settings. This can be removed for applications -# that need different build settings. -apply_standard_settings(${BINARY_NAME}) - -# Add dependency libraries. Add any application-specific dependencies here. -target_link_libraries(${BINARY_NAME} PRIVATE flutter) -target_link_libraries(${BINARY_NAME} PRIVATE PkgConfig::GTK) - -# Run the Flutter tool portions of the build. This must not be removed. -add_dependencies(${BINARY_NAME} flutter_assemble) - -# Only the install-generated bundle's copy of the executable will launch -# correctly, since the resources must in the right relative locations. To avoid -# people trying to run the unbundled copy, put it in a subdirectory instead of -# the default top-level location. -set_target_properties(${BINARY_NAME} - PROPERTIES - RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/intermediates_do_not_run" -) - - -# Generated plugin build rules, which manage building the plugins and adding -# them to the application. -include(flutter/generated_plugins.cmake) - - -# === Installation === -# By default, "installing" just makes a relocatable bundle in the build -# directory. -set(BUILD_BUNDLE_DIR "${PROJECT_BINARY_DIR}/bundle") -if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT) - set(CMAKE_INSTALL_PREFIX "${BUILD_BUNDLE_DIR}" CACHE PATH "..." FORCE) -endif() - -# Start with a clean build bundle directory every time. -install(CODE " - file(REMOVE_RECURSE \"${BUILD_BUNDLE_DIR}/\") - " COMPONENT Runtime) - -set(INSTALL_BUNDLE_DATA_DIR "${CMAKE_INSTALL_PREFIX}/data") -set(INSTALL_BUNDLE_LIB_DIR "${CMAKE_INSTALL_PREFIX}/lib") - -install(TARGETS ${BINARY_NAME} RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}" - COMPONENT Runtime) - -install(FILES "${FLUTTER_ICU_DATA_FILE}" DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" - COMPONENT Runtime) - -install(FILES "${FLUTTER_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" - COMPONENT Runtime) - -foreach(bundled_library ${PLUGIN_BUNDLED_LIBRARIES}) - install(FILES "${bundled_library}" - DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" - COMPONENT Runtime) -endforeach(bundled_library) - -# Fully re-copy the assets directory on each build to avoid having stale files -# from a previous install. -set(FLUTTER_ASSET_DIR_NAME "flutter_assets") -install(CODE " - file(REMOVE_RECURSE \"${INSTALL_BUNDLE_DATA_DIR}/${FLUTTER_ASSET_DIR_NAME}\") - " COMPONENT Runtime) -install(DIRECTORY "${PROJECT_BUILD_DIR}/${FLUTTER_ASSET_DIR_NAME}" - DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" COMPONENT Runtime) - -# Install the AOT library on non-Debug builds only. -if(NOT CMAKE_BUILD_TYPE MATCHES "Debug") - install(FILES "${AOT_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" - COMPONENT Runtime) -endif() diff --git a/classic/frontend/linux/flutter/CMakeLists.txt b/classic/frontend/linux/flutter/CMakeLists.txt deleted file mode 100644 index d5bd01648a..0000000000 --- a/classic/frontend/linux/flutter/CMakeLists.txt +++ /dev/null @@ -1,88 +0,0 @@ -# This file controls Flutter-level build steps. It should not be edited. -cmake_minimum_required(VERSION 3.10) - -set(EPHEMERAL_DIR "${CMAKE_CURRENT_SOURCE_DIR}/ephemeral") - -# Configuration provided via flutter tool. -include(${EPHEMERAL_DIR}/generated_config.cmake) - -# TODO: Move the rest of this into files in ephemeral. See -# https://github.com/flutter/flutter/issues/57146. - -# Serves the same purpose as list(TRANSFORM ... PREPEND ...), -# which isn't available in 3.10. -function(list_prepend LIST_NAME PREFIX) - set(NEW_LIST "") - foreach(element ${${LIST_NAME}}) - list(APPEND NEW_LIST "${PREFIX}${element}") - endforeach(element) - set(${LIST_NAME} "${NEW_LIST}" PARENT_SCOPE) -endfunction() - -# === Flutter Library === -# System-level dependencies. -find_package(PkgConfig REQUIRED) -pkg_check_modules(GTK REQUIRED IMPORTED_TARGET gtk+-3.0) -pkg_check_modules(GLIB REQUIRED IMPORTED_TARGET glib-2.0) -pkg_check_modules(GIO REQUIRED IMPORTED_TARGET gio-2.0) - -set(FLUTTER_LIBRARY "${EPHEMERAL_DIR}/libflutter_linux_gtk.so") - -# Published to parent scope for install step. -set(FLUTTER_LIBRARY ${FLUTTER_LIBRARY} PARENT_SCOPE) -set(FLUTTER_ICU_DATA_FILE "${EPHEMERAL_DIR}/icudtl.dat" PARENT_SCOPE) -set(PROJECT_BUILD_DIR "${PROJECT_DIR}/build/" PARENT_SCOPE) -set(AOT_LIBRARY "${PROJECT_DIR}/build/lib/libapp.so" PARENT_SCOPE) - -list(APPEND FLUTTER_LIBRARY_HEADERS - "fl_basic_message_channel.h" - "fl_binary_codec.h" - "fl_binary_messenger.h" - "fl_dart_project.h" - "fl_engine.h" - "fl_json_message_codec.h" - "fl_json_method_codec.h" - "fl_message_codec.h" - "fl_method_call.h" - "fl_method_channel.h" - "fl_method_codec.h" - "fl_method_response.h" - "fl_plugin_registrar.h" - "fl_plugin_registry.h" - "fl_standard_message_codec.h" - "fl_standard_method_codec.h" - "fl_string_codec.h" - "fl_value.h" - "fl_view.h" - "flutter_linux.h" -) -list_prepend(FLUTTER_LIBRARY_HEADERS "${EPHEMERAL_DIR}/flutter_linux/") -add_library(flutter INTERFACE) -target_include_directories(flutter INTERFACE - "${EPHEMERAL_DIR}" -) -target_link_libraries(flutter INTERFACE "${FLUTTER_LIBRARY}") -target_link_libraries(flutter INTERFACE - PkgConfig::GTK - PkgConfig::GLIB - PkgConfig::GIO -) -add_dependencies(flutter flutter_assemble) - -# === Flutter tool backend === -# _phony_ is a non-existent file to force this command to run every time, -# since currently there's no way to get a full input/output list from the -# flutter tool. -add_custom_command( - OUTPUT ${FLUTTER_LIBRARY} ${FLUTTER_LIBRARY_HEADERS} - ${CMAKE_CURRENT_BINARY_DIR}/_phony_ - COMMAND ${CMAKE_COMMAND} -E env - ${FLUTTER_TOOL_ENVIRONMENT} - "${FLUTTER_ROOT}/packages/flutter_tools/bin/tool_backend.sh" - ${FLUTTER_TARGET_PLATFORM} ${CMAKE_BUILD_TYPE} - VERBATIM -) -add_custom_target(flutter_assemble DEPENDS - "${FLUTTER_LIBRARY}" - ${FLUTTER_LIBRARY_HEADERS} -) diff --git a/classic/frontend/linux/flutter/generated_plugin_registrant.cc b/classic/frontend/linux/flutter/generated_plugin_registrant.cc deleted file mode 100644 index f6f23bfe97..0000000000 --- a/classic/frontend/linux/flutter/generated_plugin_registrant.cc +++ /dev/null @@ -1,15 +0,0 @@ -// -// Generated file. Do not edit. -// - -// clang-format off - -#include "generated_plugin_registrant.h" - -#include - -void fl_register_plugins(FlPluginRegistry* registry) { - g_autoptr(FlPluginRegistrar) url_launcher_linux_registrar = - fl_plugin_registry_get_registrar_for_plugin(registry, "UrlLauncherPlugin"); - url_launcher_plugin_register_with_registrar(url_launcher_linux_registrar); -} diff --git a/classic/frontend/linux/flutter/generated_plugin_registrant.h b/classic/frontend/linux/flutter/generated_plugin_registrant.h deleted file mode 100644 index e0f0a47bc0..0000000000 --- a/classic/frontend/linux/flutter/generated_plugin_registrant.h +++ /dev/null @@ -1,15 +0,0 @@ -// -// Generated file. Do not edit. -// - -// clang-format off - -#ifndef GENERATED_PLUGIN_REGISTRANT_ -#define GENERATED_PLUGIN_REGISTRANT_ - -#include - -// Registers Flutter plugins. -void fl_register_plugins(FlPluginRegistry* registry); - -#endif // GENERATED_PLUGIN_REGISTRANT_ diff --git a/classic/frontend/linux/flutter/generated_plugins.cmake b/classic/frontend/linux/flutter/generated_plugins.cmake deleted file mode 100644 index f16b4c3421..0000000000 --- a/classic/frontend/linux/flutter/generated_plugins.cmake +++ /dev/null @@ -1,24 +0,0 @@ -# -# Generated file, do not edit. -# - -list(APPEND FLUTTER_PLUGIN_LIST - url_launcher_linux -) - -list(APPEND FLUTTER_FFI_PLUGIN_LIST -) - -set(PLUGIN_BUNDLED_LIBRARIES) - -foreach(plugin ${FLUTTER_PLUGIN_LIST}) - add_subdirectory(flutter/ephemeral/.plugin_symlinks/${plugin}/linux plugins/${plugin}) - target_link_libraries(${BINARY_NAME} PRIVATE ${plugin}_plugin) - list(APPEND PLUGIN_BUNDLED_LIBRARIES $) - list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${plugin}_bundled_libraries}) -endforeach(plugin) - -foreach(ffi_plugin ${FLUTTER_FFI_PLUGIN_LIST}) - add_subdirectory(flutter/ephemeral/.plugin_symlinks/${ffi_plugin}/linux plugins/${ffi_plugin}) - list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${ffi_plugin}_bundled_libraries}) -endforeach(ffi_plugin) diff --git a/classic/frontend/linux/main.cc b/classic/frontend/linux/main.cc deleted file mode 100644 index e7c5c54370..0000000000 --- a/classic/frontend/linux/main.cc +++ /dev/null @@ -1,6 +0,0 @@ -#include "my_application.h" - -int main(int argc, char** argv) { - g_autoptr(MyApplication) app = my_application_new(); - return g_application_run(G_APPLICATION(app), argc, argv); -} diff --git a/classic/frontend/linux/my_application.cc b/classic/frontend/linux/my_application.cc deleted file mode 100644 index 4ffa64b8c6..0000000000 --- a/classic/frontend/linux/my_application.cc +++ /dev/null @@ -1,104 +0,0 @@ -#include "my_application.h" - -#include -#ifdef GDK_WINDOWING_X11 -#include -#endif - -#include "flutter/generated_plugin_registrant.h" - -struct _MyApplication { - GtkApplication parent_instance; - char** dart_entrypoint_arguments; -}; - -G_DEFINE_TYPE(MyApplication, my_application, GTK_TYPE_APPLICATION) - -// Implements GApplication::activate. -static void my_application_activate(GApplication* application) { - MyApplication* self = MY_APPLICATION(application); - GtkWindow* window = - GTK_WINDOW(gtk_application_window_new(GTK_APPLICATION(application))); - - // Use a header bar when running in GNOME as this is the common style used - // by applications and is the setup most users will be using (e.g. Ubuntu - // desktop). - // If running on X and not using GNOME then just use a traditional title bar - // in case the window manager does more exotic layout, e.g. tiling. - // If running on Wayland assume the header bar will work (may need changing - // if future cases occur). - gboolean use_header_bar = TRUE; -#ifdef GDK_WINDOWING_X11 - GdkScreen* screen = gtk_window_get_screen(window); - if (GDK_IS_X11_SCREEN(screen)) { - const gchar* wm_name = gdk_x11_screen_get_window_manager_name(screen); - if (g_strcmp0(wm_name, "GNOME Shell") != 0) { - use_header_bar = FALSE; - } - } -#endif - if (use_header_bar) { - GtkHeaderBar* header_bar = GTK_HEADER_BAR(gtk_header_bar_new()); - gtk_widget_show(GTK_WIDGET(header_bar)); - gtk_header_bar_set_title(header_bar, "auto_gpt_flutter_client"); - gtk_header_bar_set_show_close_button(header_bar, TRUE); - gtk_window_set_titlebar(window, GTK_WIDGET(header_bar)); - } else { - gtk_window_set_title(window, "auto_gpt_flutter_client"); - } - - gtk_window_set_default_size(window, 1280, 720); - gtk_widget_show(GTK_WIDGET(window)); - - g_autoptr(FlDartProject) project = fl_dart_project_new(); - fl_dart_project_set_dart_entrypoint_arguments(project, self->dart_entrypoint_arguments); - - FlView* view = fl_view_new(project); - gtk_widget_show(GTK_WIDGET(view)); - gtk_container_add(GTK_CONTAINER(window), GTK_WIDGET(view)); - - fl_register_plugins(FL_PLUGIN_REGISTRY(view)); - - gtk_widget_grab_focus(GTK_WIDGET(view)); -} - -// Implements GApplication::local_command_line. -static gboolean my_application_local_command_line(GApplication* application, gchar*** arguments, int* exit_status) { - MyApplication* self = MY_APPLICATION(application); - // Strip out the first argument as it is the binary name. - self->dart_entrypoint_arguments = g_strdupv(*arguments + 1); - - g_autoptr(GError) error = nullptr; - if (!g_application_register(application, nullptr, &error)) { - g_warning("Failed to register: %s", error->message); - *exit_status = 1; - return TRUE; - } - - g_application_activate(application); - *exit_status = 0; - - return TRUE; -} - -// Implements GObject::dispose. -static void my_application_dispose(GObject* object) { - MyApplication* self = MY_APPLICATION(object); - g_clear_pointer(&self->dart_entrypoint_arguments, g_strfreev); - G_OBJECT_CLASS(my_application_parent_class)->dispose(object); -} - -static void my_application_class_init(MyApplicationClass* klass) { - G_APPLICATION_CLASS(klass)->activate = my_application_activate; - G_APPLICATION_CLASS(klass)->local_command_line = my_application_local_command_line; - G_OBJECT_CLASS(klass)->dispose = my_application_dispose; -} - -static void my_application_init(MyApplication* self) {} - -MyApplication* my_application_new() { - return MY_APPLICATION(g_object_new(my_application_get_type(), - "application-id", APPLICATION_ID, - "flags", G_APPLICATION_NON_UNIQUE, - nullptr)); -} diff --git a/classic/frontend/linux/my_application.h b/classic/frontend/linux/my_application.h deleted file mode 100644 index 72271d5e41..0000000000 --- a/classic/frontend/linux/my_application.h +++ /dev/null @@ -1,18 +0,0 @@ -#ifndef FLUTTER_MY_APPLICATION_H_ -#define FLUTTER_MY_APPLICATION_H_ - -#include - -G_DECLARE_FINAL_TYPE(MyApplication, my_application, MY, APPLICATION, - GtkApplication) - -/** - * my_application_new: - * - * Creates a new Flutter-based application. - * - * Returns: a new #MyApplication. - */ -MyApplication* my_application_new(); - -#endif // FLUTTER_MY_APPLICATION_H_ diff --git a/classic/frontend/macos/.gitignore b/classic/frontend/macos/.gitignore deleted file mode 100644 index 746adbb6b9..0000000000 --- a/classic/frontend/macos/.gitignore +++ /dev/null @@ -1,7 +0,0 @@ -# Flutter-related -**/Flutter/ephemeral/ -**/Pods/ - -# Xcode-related -**/dgph -**/xcuserdata/ diff --git a/classic/frontend/macos/Flutter/Flutter-Debug.xcconfig b/classic/frontend/macos/Flutter/Flutter-Debug.xcconfig deleted file mode 100644 index 4b81f9b2d2..0000000000 --- a/classic/frontend/macos/Flutter/Flutter-Debug.xcconfig +++ /dev/null @@ -1,2 +0,0 @@ -#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" -#include "ephemeral/Flutter-Generated.xcconfig" diff --git a/classic/frontend/macos/Flutter/Flutter-Release.xcconfig b/classic/frontend/macos/Flutter/Flutter-Release.xcconfig deleted file mode 100644 index 5caa9d1579..0000000000 --- a/classic/frontend/macos/Flutter/Flutter-Release.xcconfig +++ /dev/null @@ -1,2 +0,0 @@ -#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" -#include "ephemeral/Flutter-Generated.xcconfig" diff --git a/classic/frontend/macos/Flutter/GeneratedPluginRegistrant.swift b/classic/frontend/macos/Flutter/GeneratedPluginRegistrant.swift deleted file mode 100644 index 23968570b6..0000000000 --- a/classic/frontend/macos/Flutter/GeneratedPluginRegistrant.swift +++ /dev/null @@ -1,20 +0,0 @@ -// -// Generated file. Do not edit. -// - -import FlutterMacOS -import Foundation - -import firebase_analytics -import firebase_auth -import firebase_core -import shared_preferences_foundation -import url_launcher_macos - -func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) { - FLTFirebaseAnalyticsPlugin.register(with: registry.registrar(forPlugin: "FLTFirebaseAnalyticsPlugin")) - FLTFirebaseAuthPlugin.register(with: registry.registrar(forPlugin: "FLTFirebaseAuthPlugin")) - FLTFirebaseCorePlugin.register(with: registry.registrar(forPlugin: "FLTFirebaseCorePlugin")) - SharedPreferencesPlugin.register(with: registry.registrar(forPlugin: "SharedPreferencesPlugin")) - UrlLauncherPlugin.register(with: registry.registrar(forPlugin: "UrlLauncherPlugin")) -} diff --git a/classic/frontend/macos/Podfile b/classic/frontend/macos/Podfile deleted file mode 100644 index c795730db8..0000000000 --- a/classic/frontend/macos/Podfile +++ /dev/null @@ -1,43 +0,0 @@ -platform :osx, '10.14' - -# CocoaPods analytics sends network stats synchronously affecting flutter build latency. -ENV['COCOAPODS_DISABLE_STATS'] = 'true' - -project 'Runner', { - 'Debug' => :debug, - 'Profile' => :release, - 'Release' => :release, -} - -def flutter_root - generated_xcode_build_settings_path = File.expand_path(File.join('..', 'Flutter', 'ephemeral', 'Flutter-Generated.xcconfig'), __FILE__) - unless File.exist?(generated_xcode_build_settings_path) - raise "#{generated_xcode_build_settings_path} must exist. If you're running pod install manually, make sure \"flutter pub get\" is executed first" - end - - File.foreach(generated_xcode_build_settings_path) do |line| - matches = line.match(/FLUTTER_ROOT\=(.*)/) - return matches[1].strip if matches - end - raise "FLUTTER_ROOT not found in #{generated_xcode_build_settings_path}. Try deleting Flutter-Generated.xcconfig, then run \"flutter pub get\"" -end - -require File.expand_path(File.join('packages', 'flutter_tools', 'bin', 'podhelper'), flutter_root) - -flutter_macos_podfile_setup - -target 'Runner' do - use_frameworks! - use_modular_headers! - - flutter_install_all_macos_pods File.dirname(File.realpath(__FILE__)) - target 'RunnerTests' do - inherit! :search_paths - end -end - -post_install do |installer| - installer.pods_project.targets.each do |target| - flutter_additional_macos_build_settings(target) - end -end diff --git a/classic/frontend/macos/Runner.xcodeproj/project.pbxproj b/classic/frontend/macos/Runner.xcodeproj/project.pbxproj deleted file mode 100644 index 6f9e59e85f..0000000000 --- a/classic/frontend/macos/Runner.xcodeproj/project.pbxproj +++ /dev/null @@ -1,695 +0,0 @@ -// !$*UTF8*$! -{ - archiveVersion = 1; - classes = { - }; - objectVersion = 54; - objects = { - -/* Begin PBXAggregateTarget section */ - 33CC111A2044C6BA0003C045 /* Flutter Assemble */ = { - isa = PBXAggregateTarget; - buildConfigurationList = 33CC111B2044C6BA0003C045 /* Build configuration list for PBXAggregateTarget "Flutter Assemble" */; - buildPhases = ( - 33CC111E2044C6BF0003C045 /* ShellScript */, - ); - dependencies = ( - ); - name = "Flutter Assemble"; - productName = FLX; - }; -/* End PBXAggregateTarget section */ - -/* Begin PBXBuildFile section */ - 331C80D8294CF71000263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C80D7294CF71000263BE5 /* RunnerTests.swift */; }; - 335BBD1B22A9A15E00E9071D /* GeneratedPluginRegistrant.swift in Sources */ = {isa = PBXBuildFile; fileRef = 335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */; }; - 33CC10F12044A3C60003C045 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33CC10F02044A3C60003C045 /* AppDelegate.swift */; }; - 33CC10F32044A3C60003C045 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 33CC10F22044A3C60003C045 /* Assets.xcassets */; }; - 33CC10F62044A3C60003C045 /* MainMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = 33CC10F42044A3C60003C045 /* MainMenu.xib */; }; - 33CC11132044BFA00003C045 /* MainFlutterWindow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33CC11122044BFA00003C045 /* MainFlutterWindow.swift */; }; -/* End PBXBuildFile section */ - -/* Begin PBXContainerItemProxy section */ - 331C80D9294CF71000263BE5 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 33CC10E52044A3C60003C045 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 33CC10EC2044A3C60003C045; - remoteInfo = Runner; - }; - 33CC111F2044C79F0003C045 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 33CC10E52044A3C60003C045 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 33CC111A2044C6BA0003C045; - remoteInfo = FLX; - }; -/* End PBXContainerItemProxy section */ - -/* Begin PBXCopyFilesBuildPhase section */ - 33CC110E2044A8840003C045 /* Bundle Framework */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = ""; - dstSubfolderSpec = 10; - files = ( - ); - name = "Bundle Framework"; - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXCopyFilesBuildPhase section */ - -/* Begin PBXFileReference section */ - 331C80D5294CF71000263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; - 331C80D7294CF71000263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = ""; }; - 333000ED22D3DE5D00554162 /* Warnings.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Warnings.xcconfig; sourceTree = ""; }; - 335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GeneratedPluginRegistrant.swift; sourceTree = ""; }; - 33CC10ED2044A3C60003C045 /* auto_gpt_flutter_client.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "auto_gpt_flutter_client.app"; sourceTree = BUILT_PRODUCTS_DIR; }; - 33CC10F02044A3C60003C045 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; - 33CC10F22044A3C60003C045 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Assets.xcassets; path = Runner/Assets.xcassets; sourceTree = ""; }; - 33CC10F52044A3C60003C045 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/MainMenu.xib; sourceTree = ""; }; - 33CC10F72044A3C60003C045 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = Info.plist; path = Runner/Info.plist; sourceTree = ""; }; - 33CC11122044BFA00003C045 /* MainFlutterWindow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MainFlutterWindow.swift; sourceTree = ""; }; - 33CEB47222A05771004F2AC0 /* Flutter-Debug.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Flutter-Debug.xcconfig"; sourceTree = ""; }; - 33CEB47422A05771004F2AC0 /* Flutter-Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Flutter-Release.xcconfig"; sourceTree = ""; }; - 33CEB47722A0578A004F2AC0 /* Flutter-Generated.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = "Flutter-Generated.xcconfig"; path = "ephemeral/Flutter-Generated.xcconfig"; sourceTree = ""; }; - 33E51913231747F40026EE4D /* DebugProfile.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = DebugProfile.entitlements; sourceTree = ""; }; - 33E51914231749380026EE4D /* Release.entitlements */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.entitlements; path = Release.entitlements; sourceTree = ""; }; - 33E5194F232828860026EE4D /* AppInfo.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = AppInfo.xcconfig; sourceTree = ""; }; - 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Release.xcconfig; sourceTree = ""; }; - 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Debug.xcconfig; sourceTree = ""; }; -/* End PBXFileReference section */ - -/* Begin PBXFrameworksBuildPhase section */ - 331C80D2294CF70F00263BE5 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 33CC10EA2044A3C60003C045 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXFrameworksBuildPhase section */ - -/* Begin PBXGroup section */ - 331C80D6294CF71000263BE5 /* RunnerTests */ = { - isa = PBXGroup; - children = ( - 331C80D7294CF71000263BE5 /* RunnerTests.swift */, - ); - path = RunnerTests; - sourceTree = ""; - }; - 33BA886A226E78AF003329D5 /* Configs */ = { - isa = PBXGroup; - children = ( - 33E5194F232828860026EE4D /* AppInfo.xcconfig */, - 9740EEB21CF90195004384FC /* Debug.xcconfig */, - 7AFA3C8E1D35360C0083082E /* Release.xcconfig */, - 333000ED22D3DE5D00554162 /* Warnings.xcconfig */, - ); - path = Configs; - sourceTree = ""; - }; - 33CC10E42044A3C60003C045 = { - isa = PBXGroup; - children = ( - 33FAB671232836740065AC1E /* Runner */, - 33CEB47122A05771004F2AC0 /* Flutter */, - 331C80D6294CF71000263BE5 /* RunnerTests */, - 33CC10EE2044A3C60003C045 /* Products */, - D73912EC22F37F3D000D13A0 /* Frameworks */, - ); - sourceTree = ""; - }; - 33CC10EE2044A3C60003C045 /* Products */ = { - isa = PBXGroup; - children = ( - 33CC10ED2044A3C60003C045 /* auto_gpt_flutter_client.app */, - 331C80D5294CF71000263BE5 /* RunnerTests.xctest */, - ); - name = Products; - sourceTree = ""; - }; - 33CC11242044D66E0003C045 /* Resources */ = { - isa = PBXGroup; - children = ( - 33CC10F22044A3C60003C045 /* Assets.xcassets */, - 33CC10F42044A3C60003C045 /* MainMenu.xib */, - 33CC10F72044A3C60003C045 /* Info.plist */, - ); - name = Resources; - path = ..; - sourceTree = ""; - }; - 33CEB47122A05771004F2AC0 /* Flutter */ = { - isa = PBXGroup; - children = ( - 335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */, - 33CEB47222A05771004F2AC0 /* Flutter-Debug.xcconfig */, - 33CEB47422A05771004F2AC0 /* Flutter-Release.xcconfig */, - 33CEB47722A0578A004F2AC0 /* Flutter-Generated.xcconfig */, - ); - path = Flutter; - sourceTree = ""; - }; - 33FAB671232836740065AC1E /* Runner */ = { - isa = PBXGroup; - children = ( - 33CC10F02044A3C60003C045 /* AppDelegate.swift */, - 33CC11122044BFA00003C045 /* MainFlutterWindow.swift */, - 33E51913231747F40026EE4D /* DebugProfile.entitlements */, - 33E51914231749380026EE4D /* Release.entitlements */, - 33CC11242044D66E0003C045 /* Resources */, - 33BA886A226E78AF003329D5 /* Configs */, - ); - path = Runner; - sourceTree = ""; - }; - D73912EC22F37F3D000D13A0 /* Frameworks */ = { - isa = PBXGroup; - children = ( - ); - name = Frameworks; - sourceTree = ""; - }; -/* End PBXGroup section */ - -/* Begin PBXNativeTarget section */ - 331C80D4294CF70F00263BE5 /* RunnerTests */ = { - isa = PBXNativeTarget; - buildConfigurationList = 331C80DE294CF71000263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */; - buildPhases = ( - 331C80D1294CF70F00263BE5 /* Sources */, - 331C80D2294CF70F00263BE5 /* Frameworks */, - 331C80D3294CF70F00263BE5 /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - 331C80DA294CF71000263BE5 /* PBXTargetDependency */, - ); - name = RunnerTests; - productName = RunnerTests; - productReference = 331C80D5294CF71000263BE5 /* RunnerTests.xctest */; - productType = "com.apple.product-type.bundle.unit-test"; - }; - 33CC10EC2044A3C60003C045 /* Runner */ = { - isa = PBXNativeTarget; - buildConfigurationList = 33CC10FB2044A3C60003C045 /* Build configuration list for PBXNativeTarget "Runner" */; - buildPhases = ( - 33CC10E92044A3C60003C045 /* Sources */, - 33CC10EA2044A3C60003C045 /* Frameworks */, - 33CC10EB2044A3C60003C045 /* Resources */, - 33CC110E2044A8840003C045 /* Bundle Framework */, - 3399D490228B24CF009A79C7 /* ShellScript */, - ); - buildRules = ( - ); - dependencies = ( - 33CC11202044C79F0003C045 /* PBXTargetDependency */, - ); - name = Runner; - productName = Runner; - productReference = 33CC10ED2044A3C60003C045 /* auto_gpt_flutter_client.app */; - productType = "com.apple.product-type.application"; - }; -/* End PBXNativeTarget section */ - -/* Begin PBXProject section */ - 33CC10E52044A3C60003C045 /* Project object */ = { - isa = PBXProject; - attributes = { - LastSwiftUpdateCheck = 0920; - LastUpgradeCheck = 1300; - ORGANIZATIONNAME = ""; - TargetAttributes = { - 331C80D4294CF70F00263BE5 = { - CreatedOnToolsVersion = 14.0; - TestTargetID = 33CC10EC2044A3C60003C045; - }; - 33CC10EC2044A3C60003C045 = { - CreatedOnToolsVersion = 9.2; - LastSwiftMigration = 1100; - ProvisioningStyle = Automatic; - SystemCapabilities = { - com.apple.Sandbox = { - enabled = 1; - }; - }; - }; - 33CC111A2044C6BA0003C045 = { - CreatedOnToolsVersion = 9.2; - ProvisioningStyle = Manual; - }; - }; - }; - buildConfigurationList = 33CC10E82044A3C60003C045 /* Build configuration list for PBXProject "Runner" */; - compatibilityVersion = "Xcode 9.3"; - developmentRegion = en; - hasScannedForEncodings = 0; - knownRegions = ( - en, - Base, - ); - mainGroup = 33CC10E42044A3C60003C045; - productRefGroup = 33CC10EE2044A3C60003C045 /* Products */; - projectDirPath = ""; - projectRoot = ""; - targets = ( - 33CC10EC2044A3C60003C045 /* Runner */, - 331C80D4294CF70F00263BE5 /* RunnerTests */, - 33CC111A2044C6BA0003C045 /* Flutter Assemble */, - ); - }; -/* End PBXProject section */ - -/* Begin PBXResourcesBuildPhase section */ - 331C80D3294CF70F00263BE5 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 33CC10EB2044A3C60003C045 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 33CC10F32044A3C60003C045 /* Assets.xcassets in Resources */, - 33CC10F62044A3C60003C045 /* MainMenu.xib in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXResourcesBuildPhase section */ - -/* Begin PBXShellScriptBuildPhase section */ - 3399D490228B24CF009A79C7 /* ShellScript */ = { - isa = PBXShellScriptBuildPhase; - alwaysOutOfDate = 1; - buildActionMask = 2147483647; - files = ( - ); - inputFileListPaths = ( - ); - inputPaths = ( - ); - outputFileListPaths = ( - ); - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "echo \"$PRODUCT_NAME.app\" > \"$PROJECT_DIR\"/Flutter/ephemeral/.app_filename && \"$FLUTTER_ROOT\"/packages/flutter_tools/bin/macos_assemble.sh embed\n"; - }; - 33CC111E2044C6BF0003C045 /* ShellScript */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputFileListPaths = ( - Flutter/ephemeral/FlutterInputs.xcfilelist, - ); - inputPaths = ( - Flutter/ephemeral/tripwire, - ); - outputFileListPaths = ( - Flutter/ephemeral/FlutterOutputs.xcfilelist, - ); - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "\"$FLUTTER_ROOT\"/packages/flutter_tools/bin/macos_assemble.sh && touch Flutter/ephemeral/tripwire"; - }; -/* End PBXShellScriptBuildPhase section */ - -/* Begin PBXSourcesBuildPhase section */ - 331C80D1294CF70F00263BE5 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 331C80D8294CF71000263BE5 /* RunnerTests.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 33CC10E92044A3C60003C045 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 33CC11132044BFA00003C045 /* MainFlutterWindow.swift in Sources */, - 33CC10F12044A3C60003C045 /* AppDelegate.swift in Sources */, - 335BBD1B22A9A15E00E9071D /* GeneratedPluginRegistrant.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXSourcesBuildPhase section */ - -/* Begin PBXTargetDependency section */ - 331C80DA294CF71000263BE5 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 33CC10EC2044A3C60003C045 /* Runner */; - targetProxy = 331C80D9294CF71000263BE5 /* PBXContainerItemProxy */; - }; - 33CC11202044C79F0003C045 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 33CC111A2044C6BA0003C045 /* Flutter Assemble */; - targetProxy = 33CC111F2044C79F0003C045 /* PBXContainerItemProxy */; - }; -/* End PBXTargetDependency section */ - -/* Begin PBXVariantGroup section */ - 33CC10F42044A3C60003C045 /* MainMenu.xib */ = { - isa = PBXVariantGroup; - children = ( - 33CC10F52044A3C60003C045 /* Base */, - ); - name = MainMenu.xib; - path = Runner; - sourceTree = ""; - }; -/* End PBXVariantGroup section */ - -/* Begin XCBuildConfiguration section */ - 331C80DB294CF71000263BE5 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - BUNDLE_LOADER = "$(TEST_HOST)"; - CURRENT_PROJECT_VERSION = 1; - GENERATE_INFOPLIST_FILE = YES; - MARKETING_VERSION = 1.0; - PRODUCT_BUNDLE_IDENTIFIER = com.example.autoGptFlutterClient.RunnerTests; - PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_VERSION = 5.0; - TEST_HOST = "$(BUILT_PRODUCTS_DIR)/auto_gpt_flutter_client.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/auto_gpt_flutter_client"; - }; - name = Debug; - }; - 331C80DC294CF71000263BE5 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - BUNDLE_LOADER = "$(TEST_HOST)"; - CURRENT_PROJECT_VERSION = 1; - GENERATE_INFOPLIST_FILE = YES; - MARKETING_VERSION = 1.0; - PRODUCT_BUNDLE_IDENTIFIER = com.example.autoGptFlutterClient.RunnerTests; - PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_VERSION = 5.0; - TEST_HOST = "$(BUILT_PRODUCTS_DIR)/auto_gpt_flutter_client.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/auto_gpt_flutter_client"; - }; - name = Release; - }; - 331C80DD294CF71000263BE5 /* Profile */ = { - isa = XCBuildConfiguration; - buildSettings = { - BUNDLE_LOADER = "$(TEST_HOST)"; - CURRENT_PROJECT_VERSION = 1; - GENERATE_INFOPLIST_FILE = YES; - MARKETING_VERSION = 1.0; - PRODUCT_BUNDLE_IDENTIFIER = com.example.autoGptFlutterClient.RunnerTests; - PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_VERSION = 5.0; - TEST_HOST = "$(BUILT_PRODUCTS_DIR)/auto_gpt_flutter_client.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/auto_gpt_flutter_client"; - }; - name = Profile; - }; - 338D0CE9231458BD00FA5F75 /* Profile */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_ANALYZER_NONNULL = YES; - CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_DOCUMENTATION_COMMENTS = YES; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CODE_SIGN_IDENTITY = "-"; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - ENABLE_NS_ASSERTIONS = NO; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_C_LANGUAGE_STANDARD = gnu11; - GCC_NO_COMMON_BLOCKS = YES; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.14; - MTL_ENABLE_DEBUG_INFO = NO; - SDKROOT = macosx; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; - }; - name = Profile; - }; - 338D0CEA231458BD00FA5F75 /* Profile */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 33E5194F232828860026EE4D /* AppInfo.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CLANG_ENABLE_MODULES = YES; - CODE_SIGN_ENTITLEMENTS = Runner/DebugProfile.entitlements; - CODE_SIGN_STYLE = Automatic; - COMBINE_HIDPI_IMAGES = YES; - INFOPLIST_FILE = Runner/Info.plist; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/../Frameworks", - ); - PROVISIONING_PROFILE_SPECIFIER = ""; - SWIFT_VERSION = 5.0; - }; - name = Profile; - }; - 338D0CEB231458BD00FA5F75 /* Profile */ = { - isa = XCBuildConfiguration; - buildSettings = { - CODE_SIGN_STYLE = Manual; - PRODUCT_NAME = "$(TARGET_NAME)"; - }; - name = Profile; - }; - 33CC10F92044A3C60003C045 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_ANALYZER_NONNULL = YES; - CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_DOCUMENTATION_COMMENTS = YES; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CODE_SIGN_IDENTITY = "-"; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = dwarf; - ENABLE_STRICT_OBJC_MSGSEND = YES; - ENABLE_TESTABILITY = YES; - GCC_C_LANGUAGE_STANDARD = gnu11; - GCC_DYNAMIC_NO_PIC = NO; - GCC_NO_COMMON_BLOCKS = YES; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PREPROCESSOR_DEFINITIONS = ( - "DEBUG=1", - "$(inherited)", - ); - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.14; - MTL_ENABLE_DEBUG_INFO = YES; - ONLY_ACTIVE_ARCH = YES; - SDKROOT = macosx; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; - SWIFT_OPTIMIZATION_LEVEL = "-Onone"; - }; - name = Debug; - }; - 33CC10FA2044A3C60003C045 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_ANALYZER_NONNULL = YES; - CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_DOCUMENTATION_COMMENTS = YES; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CODE_SIGN_IDENTITY = "-"; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - ENABLE_NS_ASSERTIONS = NO; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_C_LANGUAGE_STANDARD = gnu11; - GCC_NO_COMMON_BLOCKS = YES; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.14; - MTL_ENABLE_DEBUG_INFO = NO; - SDKROOT = macosx; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; - }; - name = Release; - }; - 33CC10FC2044A3C60003C045 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 33E5194F232828860026EE4D /* AppInfo.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CLANG_ENABLE_MODULES = YES; - CODE_SIGN_ENTITLEMENTS = Runner/DebugProfile.entitlements; - CODE_SIGN_STYLE = Automatic; - COMBINE_HIDPI_IMAGES = YES; - INFOPLIST_FILE = Runner/Info.plist; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/../Frameworks", - ); - PROVISIONING_PROFILE_SPECIFIER = ""; - SWIFT_OPTIMIZATION_LEVEL = "-Onone"; - SWIFT_VERSION = 5.0; - }; - name = Debug; - }; - 33CC10FD2044A3C60003C045 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 33E5194F232828860026EE4D /* AppInfo.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CLANG_ENABLE_MODULES = YES; - CODE_SIGN_ENTITLEMENTS = Runner/Release.entitlements; - CODE_SIGN_STYLE = Automatic; - COMBINE_HIDPI_IMAGES = YES; - INFOPLIST_FILE = Runner/Info.plist; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/../Frameworks", - ); - PROVISIONING_PROFILE_SPECIFIER = ""; - SWIFT_VERSION = 5.0; - }; - name = Release; - }; - 33CC111C2044C6BA0003C045 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - CODE_SIGN_STYLE = Manual; - PRODUCT_NAME = "$(TARGET_NAME)"; - }; - name = Debug; - }; - 33CC111D2044C6BA0003C045 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - CODE_SIGN_STYLE = Automatic; - PRODUCT_NAME = "$(TARGET_NAME)"; - }; - name = Release; - }; -/* End XCBuildConfiguration section */ - -/* Begin XCConfigurationList section */ - 331C80DE294CF71000263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 331C80DB294CF71000263BE5 /* Debug */, - 331C80DC294CF71000263BE5 /* Release */, - 331C80DD294CF71000263BE5 /* Profile */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 33CC10E82044A3C60003C045 /* Build configuration list for PBXProject "Runner" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 33CC10F92044A3C60003C045 /* Debug */, - 33CC10FA2044A3C60003C045 /* Release */, - 338D0CE9231458BD00FA5F75 /* Profile */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 33CC10FB2044A3C60003C045 /* Build configuration list for PBXNativeTarget "Runner" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 33CC10FC2044A3C60003C045 /* Debug */, - 33CC10FD2044A3C60003C045 /* Release */, - 338D0CEA231458BD00FA5F75 /* Profile */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 33CC111B2044C6BA0003C045 /* Build configuration list for PBXAggregateTarget "Flutter Assemble" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 33CC111C2044C6BA0003C045 /* Debug */, - 33CC111D2044C6BA0003C045 /* Release */, - 338D0CEB231458BD00FA5F75 /* Profile */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; -/* End XCConfigurationList section */ - }; - rootObject = 33CC10E52044A3C60003C045 /* Project object */; -} diff --git a/classic/frontend/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/classic/frontend/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist deleted file mode 100644 index 18d981003d..0000000000 --- a/classic/frontend/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +++ /dev/null @@ -1,8 +0,0 @@ - - - - - IDEDidComputeMac32BitWarning - - - diff --git a/classic/frontend/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme b/classic/frontend/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme deleted file mode 100644 index 78e6c13f2a..0000000000 --- a/classic/frontend/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme +++ /dev/null @@ -1,98 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/classic/frontend/macos/Runner.xcworkspace/contents.xcworkspacedata b/classic/frontend/macos/Runner.xcworkspace/contents.xcworkspacedata deleted file mode 100644 index 1d526a16ed..0000000000 --- a/classic/frontend/macos/Runner.xcworkspace/contents.xcworkspacedata +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/classic/frontend/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/classic/frontend/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist deleted file mode 100644 index 18d981003d..0000000000 --- a/classic/frontend/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +++ /dev/null @@ -1,8 +0,0 @@ - - - - - IDEDidComputeMac32BitWarning - - - diff --git a/classic/frontend/macos/Runner/AppDelegate.swift b/classic/frontend/macos/Runner/AppDelegate.swift deleted file mode 100644 index d53ef64377..0000000000 --- a/classic/frontend/macos/Runner/AppDelegate.swift +++ /dev/null @@ -1,9 +0,0 @@ -import Cocoa -import FlutterMacOS - -@NSApplicationMain -class AppDelegate: FlutterAppDelegate { - override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool { - return true - } -} diff --git a/classic/frontend/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json b/classic/frontend/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json deleted file mode 100644 index a2ec33f19f..0000000000 --- a/classic/frontend/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json +++ /dev/null @@ -1,68 +0,0 @@ -{ - "images" : [ - { - "size" : "16x16", - "idiom" : "mac", - "filename" : "app_icon_16.png", - "scale" : "1x" - }, - { - "size" : "16x16", - "idiom" : "mac", - "filename" : "app_icon_32.png", - "scale" : "2x" - }, - { - "size" : "32x32", - "idiom" : "mac", - "filename" : "app_icon_32.png", - "scale" : "1x" - }, - { - "size" : "32x32", - "idiom" : "mac", - "filename" : "app_icon_64.png", - "scale" : "2x" - }, - { - "size" : "128x128", - "idiom" : "mac", - "filename" : "app_icon_128.png", - "scale" : "1x" - }, - { - "size" : "128x128", - "idiom" : "mac", - "filename" : "app_icon_256.png", - "scale" : "2x" - }, - { - "size" : "256x256", - "idiom" : "mac", - "filename" : "app_icon_256.png", - "scale" : "1x" - }, - { - "size" : "256x256", - "idiom" : "mac", - "filename" : "app_icon_512.png", - "scale" : "2x" - }, - { - "size" : "512x512", - "idiom" : "mac", - "filename" : "app_icon_512.png", - "scale" : "1x" - }, - { - "size" : "512x512", - "idiom" : "mac", - "filename" : "app_icon_1024.png", - "scale" : "2x" - } - ], - "info" : { - "version" : 1, - "author" : "xcode" - } -} diff --git a/classic/frontend/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png b/classic/frontend/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png deleted file mode 100644 index 82b6f9d9a3..0000000000 Binary files a/classic/frontend/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png and /dev/null differ diff --git a/classic/frontend/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png b/classic/frontend/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png deleted file mode 100644 index 13b35eba55..0000000000 Binary files a/classic/frontend/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png and /dev/null differ diff --git a/classic/frontend/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png b/classic/frontend/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png deleted file mode 100644 index 0a3f5fa40f..0000000000 Binary files a/classic/frontend/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png and /dev/null differ diff --git a/classic/frontend/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png b/classic/frontend/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png deleted file mode 100644 index bdb57226d5..0000000000 Binary files a/classic/frontend/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png and /dev/null differ diff --git a/classic/frontend/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png b/classic/frontend/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png deleted file mode 100644 index f083318e09..0000000000 Binary files a/classic/frontend/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png and /dev/null differ diff --git a/classic/frontend/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png b/classic/frontend/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png deleted file mode 100644 index 326c0e72c9..0000000000 Binary files a/classic/frontend/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png and /dev/null differ diff --git a/classic/frontend/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png b/classic/frontend/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png deleted file mode 100644 index 2f1632cfdd..0000000000 Binary files a/classic/frontend/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png and /dev/null differ diff --git a/classic/frontend/macos/Runner/Base.lproj/MainMenu.xib b/classic/frontend/macos/Runner/Base.lproj/MainMenu.xib deleted file mode 100644 index 80e867a4e0..0000000000 --- a/classic/frontend/macos/Runner/Base.lproj/MainMenu.xib +++ /dev/null @@ -1,343 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/classic/frontend/macos/Runner/Configs/AppInfo.xcconfig b/classic/frontend/macos/Runner/Configs/AppInfo.xcconfig deleted file mode 100644 index 68d54babc9..0000000000 --- a/classic/frontend/macos/Runner/Configs/AppInfo.xcconfig +++ /dev/null @@ -1,14 +0,0 @@ -// Application-level settings for the Runner target. -// -// This may be replaced with something auto-generated from metadata (e.g., pubspec.yaml) in the -// future. If not, the values below would default to using the project name when this becomes a -// 'flutter create' template. - -// The application's name. By default this is also the title of the Flutter window. -PRODUCT_NAME = auto_gpt_flutter_client - -// The application's bundle identifier -PRODUCT_BUNDLE_IDENTIFIER = com.example.autoGptFlutterClient - -// The copyright displayed in application information -PRODUCT_COPYRIGHT = Copyright © 2023 com.example. All rights reserved. diff --git a/classic/frontend/macos/Runner/Configs/Debug.xcconfig b/classic/frontend/macos/Runner/Configs/Debug.xcconfig deleted file mode 100644 index 36b0fd9464..0000000000 --- a/classic/frontend/macos/Runner/Configs/Debug.xcconfig +++ /dev/null @@ -1,2 +0,0 @@ -#include "../../Flutter/Flutter-Debug.xcconfig" -#include "Warnings.xcconfig" diff --git a/classic/frontend/macos/Runner/Configs/Release.xcconfig b/classic/frontend/macos/Runner/Configs/Release.xcconfig deleted file mode 100644 index dff4f49561..0000000000 --- a/classic/frontend/macos/Runner/Configs/Release.xcconfig +++ /dev/null @@ -1,2 +0,0 @@ -#include "../../Flutter/Flutter-Release.xcconfig" -#include "Warnings.xcconfig" diff --git a/classic/frontend/macos/Runner/Configs/Warnings.xcconfig b/classic/frontend/macos/Runner/Configs/Warnings.xcconfig deleted file mode 100644 index 42bcbf4780..0000000000 --- a/classic/frontend/macos/Runner/Configs/Warnings.xcconfig +++ /dev/null @@ -1,13 +0,0 @@ -WARNING_CFLAGS = -Wall -Wconditional-uninitialized -Wnullable-to-nonnull-conversion -Wmissing-method-return-type -Woverlength-strings -GCC_WARN_UNDECLARED_SELECTOR = YES -CLANG_UNDEFINED_BEHAVIOR_SANITIZER_NULLABILITY = YES -CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE -CLANG_WARN__DUPLICATE_METHOD_MATCH = YES -CLANG_WARN_PRAGMA_PACK = YES -CLANG_WARN_STRICT_PROTOTYPES = YES -CLANG_WARN_COMMA = YES -GCC_WARN_STRICT_SELECTOR_MATCH = YES -CLANG_WARN_OBJC_REPEATED_USE_OF_WEAK = YES -CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES -GCC_WARN_SHADOW = YES -CLANG_WARN_UNREACHABLE_CODE = YES diff --git a/classic/frontend/macos/Runner/DebugProfile.entitlements b/classic/frontend/macos/Runner/DebugProfile.entitlements deleted file mode 100644 index dddb8a30c8..0000000000 --- a/classic/frontend/macos/Runner/DebugProfile.entitlements +++ /dev/null @@ -1,12 +0,0 @@ - - - - - com.apple.security.app-sandbox - - com.apple.security.cs.allow-jit - - com.apple.security.network.server - - - diff --git a/classic/frontend/macos/Runner/Info.plist b/classic/frontend/macos/Runner/Info.plist deleted file mode 100644 index 4789daa6a4..0000000000 --- a/classic/frontend/macos/Runner/Info.plist +++ /dev/null @@ -1,32 +0,0 @@ - - - - - CFBundleDevelopmentRegion - $(DEVELOPMENT_LANGUAGE) - CFBundleExecutable - $(EXECUTABLE_NAME) - CFBundleIconFile - - CFBundleIdentifier - $(PRODUCT_BUNDLE_IDENTIFIER) - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - $(PRODUCT_NAME) - CFBundlePackageType - APPL - CFBundleShortVersionString - $(FLUTTER_BUILD_NAME) - CFBundleVersion - $(FLUTTER_BUILD_NUMBER) - LSMinimumSystemVersion - $(MACOSX_DEPLOYMENT_TARGET) - NSHumanReadableCopyright - $(PRODUCT_COPYRIGHT) - NSMainNibFile - MainMenu - NSPrincipalClass - NSApplication - - diff --git a/classic/frontend/macos/Runner/MainFlutterWindow.swift b/classic/frontend/macos/Runner/MainFlutterWindow.swift deleted file mode 100644 index 3cc05eb234..0000000000 --- a/classic/frontend/macos/Runner/MainFlutterWindow.swift +++ /dev/null @@ -1,15 +0,0 @@ -import Cocoa -import FlutterMacOS - -class MainFlutterWindow: NSWindow { - override func awakeFromNib() { - let flutterViewController = FlutterViewController() - let windowFrame = self.frame - self.contentViewController = flutterViewController - self.setFrame(windowFrame, display: true) - - RegisterGeneratedPlugins(registry: flutterViewController) - - super.awakeFromNib() - } -} diff --git a/classic/frontend/macos/Runner/Release.entitlements b/classic/frontend/macos/Runner/Release.entitlements deleted file mode 100644 index 852fa1a472..0000000000 --- a/classic/frontend/macos/Runner/Release.entitlements +++ /dev/null @@ -1,8 +0,0 @@ - - - - - com.apple.security.app-sandbox - - - diff --git a/classic/frontend/macos/RunnerTests/RunnerTests.swift b/classic/frontend/macos/RunnerTests/RunnerTests.swift deleted file mode 100644 index 5418c9f539..0000000000 --- a/classic/frontend/macos/RunnerTests/RunnerTests.swift +++ /dev/null @@ -1,12 +0,0 @@ -import FlutterMacOS -import Cocoa -import XCTest - -class RunnerTests: XCTestCase { - - func testExample() { - // If you add code to the Runner application, consider adding tests here. - // See https://developer.apple.com/documentation/xctest for more information about using XCTest. - } - -} diff --git a/classic/frontend/pubspec.lock b/classic/frontend/pubspec.lock deleted file mode 100644 index 145d839379..0000000000 --- a/classic/frontend/pubspec.lock +++ /dev/null @@ -1,650 +0,0 @@ -# Generated by pub -# See https://dart.dev/tools/pub/glossary#lockfile -packages: - _flutterfire_internals: - dependency: transitive - description: - name: _flutterfire_internals - sha256: "2d8e8e123ca3675625917f535fcc0d3a50092eef44334168f9b18adc050d4c6e" - url: "https://pub.dev" - source: hosted - version: "1.3.6" - args: - dependency: transitive - description: - name: args - sha256: eef6c46b622e0494a36c5a12d10d77fb4e855501a91c1b9ef9339326e58f0596 - url: "https://pub.dev" - source: hosted - version: "2.4.2" - async: - dependency: transitive - description: - name: async - sha256: "947bfcf187f74dbc5e146c9eb9c0f10c9f8b30743e341481c1e2ed3ecc18c20c" - url: "https://pub.dev" - source: hosted - version: "2.11.0" - boolean_selector: - dependency: transitive - description: - name: boolean_selector - sha256: "6cfb5af12253eaf2b368f07bacc5a80d1301a071c73360d746b7f2e32d762c66" - url: "https://pub.dev" - source: hosted - version: "2.1.1" - characters: - dependency: transitive - description: - name: characters - sha256: "04a925763edad70e8443c99234dc3328f442e811f1d8fd1a72f1c8ad0f69a605" - url: "https://pub.dev" - source: hosted - version: "1.3.0" - clock: - dependency: transitive - description: - name: clock - sha256: cb6d7f03e1de671e34607e909a7213e31d7752be4fb66a86d29fe1eb14bfb5cf - url: "https://pub.dev" - source: hosted - version: "1.1.1" - collection: - dependency: "direct main" - description: - name: collection - sha256: f092b211a4319e98e5ff58223576de6c2803db36221657b46c82574721240687 - url: "https://pub.dev" - source: hosted - version: "1.17.2" - crypto: - dependency: transitive - description: - name: crypto - sha256: ff625774173754681d66daaf4a448684fb04b78f902da9cb3d308c19cc5e8bab - url: "https://pub.dev" - source: hosted - version: "3.0.3" - cupertino_icons: - dependency: "direct main" - description: - name: cupertino_icons - sha256: e35129dc44c9118cee2a5603506d823bab99c68393879edb440e0090d07586be - url: "https://pub.dev" - source: hosted - version: "1.0.5" - fake_async: - dependency: transitive - description: - name: fake_async - sha256: "511392330127add0b769b75a987850d136345d9227c6b94c96a04cf4a391bf78" - url: "https://pub.dev" - source: hosted - version: "1.3.1" - ffi: - dependency: transitive - description: - name: ffi - sha256: "7bf0adc28a23d395f19f3f1eb21dd7cfd1dd9f8e1c50051c069122e6853bc878" - url: "https://pub.dev" - source: hosted - version: "2.1.0" - file: - dependency: transitive - description: - name: file - sha256: "1b92bec4fc2a72f59a8e15af5f52cd441e4a7860b49499d69dfa817af20e925d" - url: "https://pub.dev" - source: hosted - version: "6.1.4" - firebase_analytics: - dependency: "direct main" - description: - name: firebase_analytics - sha256: c35213b72c9dbab6a20954bb968ed70e7d9e0ea3acb3426b9d4f4a51a522cdb4 - url: "https://pub.dev" - source: hosted - version: "10.5.0" - firebase_analytics_platform_interface: - dependency: transitive - description: - name: firebase_analytics_platform_interface - sha256: "9a8bdbf5345de01f7f1905c9ab6f9bff0b7fd739620d68c16b3b3b639b487dc3" - url: "https://pub.dev" - source: hosted - version: "3.7.0" - firebase_analytics_web: - dependency: transitive - description: - name: firebase_analytics_web - sha256: da79ab9c1e32c389cd6224939a0437a9e074783e3f2b51e9dc6d850d769d9af8 - url: "https://pub.dev" - source: hosted - version: "0.5.5" - firebase_auth: - dependency: "direct main" - description: - name: firebase_auth - sha256: "6d9be853426ab686d68076b8007ac29b2c31e7d549444a45b5c3fe1abc249fb0" - url: "https://pub.dev" - source: hosted - version: "4.9.0" - firebase_auth_platform_interface: - dependency: transitive - description: - name: firebase_auth_platform_interface - sha256: "2946cfdc17f925fa9771dd0ba3ce9dd2d019100a8685d0557c161f7786ea9b14" - url: "https://pub.dev" - source: hosted - version: "6.18.0" - firebase_auth_web: - dependency: transitive - description: - name: firebase_auth_web - sha256: d8972d754702a3f4881184706b8056e2837d0dae91613a43b988c960b8e0d988 - url: "https://pub.dev" - source: hosted - version: "5.8.0" - firebase_core: - dependency: "direct main" - description: - name: firebase_core - sha256: "675c209c94a1817649137cbd113fc4c9ae85e48d03dd578629abbec6d8a4d93d" - url: "https://pub.dev" - source: hosted - version: "2.16.0" - firebase_core_platform_interface: - dependency: transitive - description: - name: firebase_core_platform_interface - sha256: b63e3be6c96ef5c33bdec1aab23c91eb00696f6452f0519401d640938c94cba2 - url: "https://pub.dev" - source: hosted - version: "4.8.0" - firebase_core_web: - dependency: transitive - description: - name: firebase_core_web - sha256: e8c408923cd3a25bd342c576a114f2126769cd1a57106a4edeaa67ea4a84e962 - url: "https://pub.dev" - source: hosted - version: "2.8.0" - flutter: - dependency: "direct main" - description: flutter - source: sdk - version: "0.0.0" - flutter_highlight: - dependency: "direct main" - description: - name: flutter_highlight - sha256: "7b96333867aa07e122e245c033b8ad622e4e3a42a1a2372cbb098a2541d8782c" - url: "https://pub.dev" - source: hosted - version: "0.7.0" - flutter_lints: - dependency: "direct dev" - description: - name: flutter_lints - sha256: "2118df84ef0c3ca93f96123a616ae8540879991b8b57af2f81b76a7ada49b2a4" - url: "https://pub.dev" - source: hosted - version: "2.0.2" - flutter_markdown: - dependency: "direct main" - description: - name: flutter_markdown - sha256: "8afc9a6aa6d8e8063523192ba837149dbf3d377a37c0b0fc579149a1fbd4a619" - url: "https://pub.dev" - source: hosted - version: "0.6.18" - flutter_test: - dependency: "direct dev" - description: flutter - source: sdk - version: "0.0.0" - flutter_web_plugins: - dependency: transitive - description: flutter - source: sdk - version: "0.0.0" - fluttertoast: - dependency: "direct main" - description: - name: fluttertoast - sha256: "474f7d506230897a3cd28c965ec21c5328ae5605fc9c400cd330e9e9d6ac175c" - url: "https://pub.dev" - source: hosted - version: "8.2.2" - google_identity_services_web: - dependency: transitive - description: - name: google_identity_services_web - sha256: "554748f2478619076128152c58905620d10f9c7fc270ff1d3a9675f9f53838ed" - url: "https://pub.dev" - source: hosted - version: "0.2.1+1" - google_sign_in: - dependency: "direct main" - description: - name: google_sign_in - sha256: f45038d27bcad37498f282295ae97eece23c9349fc16649154067b87b9f1fd03 - url: "https://pub.dev" - source: hosted - version: "6.1.5" - google_sign_in_android: - dependency: transitive - description: - name: google_sign_in_android - sha256: "8d76099cb220d4f10c7e3c24492814c733f48ecb574c45c0ccadf5d5e50b012d" - url: "https://pub.dev" - source: hosted - version: "6.1.19" - google_sign_in_ios: - dependency: transitive - description: - name: google_sign_in_ios - sha256: "8edfde9698b5951f3d02632eceb39cc283865c3cff0b03216bf951089f10345b" - url: "https://pub.dev" - source: hosted - version: "5.6.3" - google_sign_in_platform_interface: - dependency: transitive - description: - name: google_sign_in_platform_interface - sha256: "35ceee5f0eadc1c07b0b4af7553246e315c901facbb7d3dadf734ba2693ceec4" - url: "https://pub.dev" - source: hosted - version: "2.4.2" - google_sign_in_web: - dependency: transitive - description: - name: google_sign_in_web - sha256: b48263e47f9493ba4120ccdfffe7412549ee297e82b97be9b8fa16ea8919ffbe - url: "https://pub.dev" - source: hosted - version: "0.12.0+4" - graphview: - dependency: "direct main" - description: - name: graphview - sha256: bdba183583b23c30c71edea09ad5f0beef612572d3e39e855467a925bd08392f - url: "https://pub.dev" - source: hosted - version: "1.2.0" - highlight: - dependency: transitive - description: - name: highlight - sha256: "5353a83ffe3e3eca7df0abfb72dcf3fa66cc56b953728e7113ad4ad88497cf21" - url: "https://pub.dev" - source: hosted - version: "0.7.0" - http: - dependency: "direct main" - description: - name: http - sha256: "759d1a329847dd0f39226c688d3e06a6b8679668e350e2891a6474f8b4bb8525" - url: "https://pub.dev" - source: hosted - version: "1.1.0" - http_parser: - dependency: transitive - description: - name: http_parser - sha256: "2aa08ce0341cc9b354a498388e30986515406668dbcc4f7c950c3e715496693b" - url: "https://pub.dev" - source: hosted - version: "4.0.2" - js: - dependency: transitive - description: - name: js - sha256: f2c445dce49627136094980615a031419f7f3eb393237e4ecd97ac15dea343f3 - url: "https://pub.dev" - source: hosted - version: "0.6.7" - lints: - dependency: transitive - description: - name: lints - sha256: "6b0206b0bf4f04961fc5438198ccb3a885685cd67d4d4a32cc20ad7f8adbe015" - url: "https://pub.dev" - source: hosted - version: "2.1.0" - markdown: - dependency: transitive - description: - name: markdown - sha256: acf35edccc0463a9d7384e437c015a3535772e09714cf60e07eeef3a15870dcd - url: "https://pub.dev" - source: hosted - version: "7.1.1" - matcher: - dependency: transitive - description: - name: matcher - sha256: "1803e76e6653768d64ed8ff2e1e67bea3ad4b923eb5c56a295c3e634bad5960e" - url: "https://pub.dev" - source: hosted - version: "0.12.16" - material_color_utilities: - dependency: transitive - description: - name: material_color_utilities - sha256: "9528f2f296073ff54cb9fee677df673ace1218163c3bc7628093e7eed5203d41" - url: "https://pub.dev" - source: hosted - version: "0.5.0" - meta: - dependency: transitive - description: - name: meta - sha256: "3c74dbf8763d36539f114c799d8a2d87343b5067e9d796ca22b5eb8437090ee3" - url: "https://pub.dev" - source: hosted - version: "1.9.1" - nested: - dependency: transitive - description: - name: nested - sha256: "03bac4c528c64c95c722ec99280375a6f2fc708eec17c7b3f07253b626cd2a20" - url: "https://pub.dev" - source: hosted - version: "1.0.0" - path: - dependency: transitive - description: - name: path - sha256: "8829d8a55c13fc0e37127c29fedf290c102f4e40ae94ada574091fe0ff96c917" - url: "https://pub.dev" - source: hosted - version: "1.8.3" - path_provider_linux: - dependency: transitive - description: - name: path_provider_linux - sha256: f7a1fe3a634fe7734c8d3f2766ad746ae2a2884abe22e241a8b301bf5cac3279 - url: "https://pub.dev" - source: hosted - version: "2.2.1" - path_provider_platform_interface: - dependency: transitive - description: - name: path_provider_platform_interface - sha256: "94b1e0dd80970c1ce43d5d4e050a9918fce4f4a775e6142424c30a29a363265c" - url: "https://pub.dev" - source: hosted - version: "2.1.1" - path_provider_windows: - dependency: transitive - description: - name: path_provider_windows - sha256: "8bc9f22eee8690981c22aa7fc602f5c85b497a6fb2ceb35ee5a5e5ed85ad8170" - url: "https://pub.dev" - source: hosted - version: "2.2.1" - platform: - dependency: transitive - description: - name: platform - sha256: ae68c7bfcd7383af3629daafb32fb4e8681c7154428da4febcff06200585f102 - url: "https://pub.dev" - source: hosted - version: "3.1.2" - plugin_platform_interface: - dependency: transitive - description: - name: plugin_platform_interface - sha256: da3fdfeccc4d4ff2da8f8c556704c08f912542c5fb3cf2233ed75372384a034d - url: "https://pub.dev" - source: hosted - version: "2.1.6" - provider: - dependency: "direct main" - description: - name: provider - sha256: cdbe7530b12ecd9eb455bdaa2fcb8d4dad22e80b8afb4798b41479d5ce26847f - url: "https://pub.dev" - source: hosted - version: "6.0.5" - quiver: - dependency: transitive - description: - name: quiver - sha256: b1c1ac5ce6688d77f65f3375a9abb9319b3cb32486bdc7a1e0fdf004d7ba4e47 - url: "https://pub.dev" - source: hosted - version: "3.2.1" - shared_preferences: - dependency: "direct main" - description: - name: shared_preferences - sha256: b7f41bad7e521d205998772545de63ff4e6c97714775902c199353f8bf1511ac - url: "https://pub.dev" - source: hosted - version: "2.2.1" - shared_preferences_android: - dependency: transitive - description: - name: shared_preferences_android - sha256: "8568a389334b6e83415b6aae55378e158fbc2314e074983362d20c562780fb06" - url: "https://pub.dev" - source: hosted - version: "2.2.1" - shared_preferences_foundation: - dependency: transitive - description: - name: shared_preferences_foundation - sha256: "7bf53a9f2d007329ee6f3df7268fd498f8373602f943c975598bbb34649b62a7" - url: "https://pub.dev" - source: hosted - version: "2.3.4" - shared_preferences_linux: - dependency: transitive - description: - name: shared_preferences_linux - sha256: c2eb5bf57a2fe9ad6988121609e47d3e07bb3bdca5b6f8444e4cf302428a128a - url: "https://pub.dev" - source: hosted - version: "2.3.1" - shared_preferences_platform_interface: - dependency: transitive - description: - name: shared_preferences_platform_interface - sha256: d4ec5fc9ebb2f2e056c617112aa75dcf92fc2e4faaf2ae999caa297473f75d8a - url: "https://pub.dev" - source: hosted - version: "2.3.1" - shared_preferences_web: - dependency: transitive - description: - name: shared_preferences_web - sha256: d762709c2bbe80626ecc819143013cc820fa49ca5e363620ee20a8b15a3e3daf - url: "https://pub.dev" - source: hosted - version: "2.2.1" - shared_preferences_windows: - dependency: transitive - description: - name: shared_preferences_windows - sha256: f763a101313bd3be87edffe0560037500967de9c394a714cd598d945517f694f - url: "https://pub.dev" - source: hosted - version: "2.3.1" - sky_engine: - dependency: transitive - description: flutter - source: sdk - version: "0.0.99" - source_span: - dependency: transitive - description: - name: source_span - sha256: "53e943d4206a5e30df338fd4c6e7a077e02254531b138a15aec3bd143c1a8b3c" - url: "https://pub.dev" - source: hosted - version: "1.10.0" - sprintf: - dependency: transitive - description: - name: sprintf - sha256: "1fc9ffe69d4df602376b52949af107d8f5703b77cda567c4d7d86a0693120f23" - url: "https://pub.dev" - source: hosted - version: "7.0.0" - stack_trace: - dependency: transitive - description: - name: stack_trace - sha256: c3c7d8edb15bee7f0f74debd4b9c5f3c2ea86766fe4178eb2a18eb30a0bdaed5 - url: "https://pub.dev" - source: hosted - version: "1.11.0" - stream_channel: - dependency: transitive - description: - name: stream_channel - sha256: "83615bee9045c1d322bbbd1ba209b7a749c2cbcdcb3fdd1df8eb488b3279c1c8" - url: "https://pub.dev" - source: hosted - version: "2.1.1" - string_scanner: - dependency: transitive - description: - name: string_scanner - sha256: "556692adab6cfa87322a115640c11f13cb77b3f076ddcc5d6ae3c20242bedcde" - url: "https://pub.dev" - source: hosted - version: "1.2.0" - term_glyph: - dependency: transitive - description: - name: term_glyph - sha256: a29248a84fbb7c79282b40b8c72a1209db169a2e0542bce341da992fe1bc7e84 - url: "https://pub.dev" - source: hosted - version: "1.2.1" - test_api: - dependency: transitive - description: - name: test_api - sha256: "75760ffd7786fffdfb9597c35c5b27eaeec82be8edfb6d71d32651128ed7aab8" - url: "https://pub.dev" - source: hosted - version: "0.6.0" - typed_data: - dependency: transitive - description: - name: typed_data - sha256: facc8d6582f16042dd49f2463ff1bd6e2c9ef9f3d5da3d9b087e244a7b564b3c - url: "https://pub.dev" - source: hosted - version: "1.3.2" - url_launcher: - dependency: "direct main" - description: - name: url_launcher - sha256: "47e208a6711459d813ba18af120d9663c20bdf6985d6ad39fe165d2538378d27" - url: "https://pub.dev" - source: hosted - version: "6.1.14" - url_launcher_android: - dependency: transitive - description: - name: url_launcher_android - sha256: b04af59516ab45762b2ca6da40fa830d72d0f6045cd97744450b73493fa76330 - url: "https://pub.dev" - source: hosted - version: "6.1.0" - url_launcher_ios: - dependency: transitive - description: - name: url_launcher_ios - sha256: "7c65021d5dee51813d652357bc65b8dd4a6177082a9966bc8ba6ee477baa795f" - url: "https://pub.dev" - source: hosted - version: "6.1.5" - url_launcher_linux: - dependency: transitive - description: - name: url_launcher_linux - sha256: b651aad005e0cb06a01dbd84b428a301916dc75f0e7ea6165f80057fee2d8e8e - url: "https://pub.dev" - source: hosted - version: "3.0.6" - url_launcher_macos: - dependency: transitive - description: - name: url_launcher_macos - sha256: b55486791f666e62e0e8ff825e58a023fd6b1f71c49926483f1128d3bbd8fe88 - url: "https://pub.dev" - source: hosted - version: "3.0.7" - url_launcher_platform_interface: - dependency: transitive - description: - name: url_launcher_platform_interface - sha256: "95465b39f83bfe95fcb9d174829d6476216f2d548b79c38ab2506e0458787618" - url: "https://pub.dev" - source: hosted - version: "2.1.5" - url_launcher_web: - dependency: transitive - description: - name: url_launcher_web - sha256: ba140138558fcc3eead51a1c42e92a9fb074a1b1149ed3c73e66035b2ccd94f2 - url: "https://pub.dev" - source: hosted - version: "2.0.19" - url_launcher_windows: - dependency: transitive - description: - name: url_launcher_windows - sha256: "95fef3129dc7cfaba2bc3d5ba2e16063bb561fc6d78e63eee16162bc70029069" - url: "https://pub.dev" - source: hosted - version: "3.0.8" - uuid: - dependency: "direct main" - description: - name: uuid - sha256: e03928880bdbcbf496fb415573f5ab7b1ea99b9b04f669c01104d085893c3134 - url: "https://pub.dev" - source: hosted - version: "4.0.0" - vector_math: - dependency: transitive - description: - name: vector_math - sha256: "80b3257d1492ce4d091729e3a67a60407d227c27241d6927be0130c98e741803" - url: "https://pub.dev" - source: hosted - version: "2.1.4" - web: - dependency: transitive - description: - name: web - sha256: dc8ccd225a2005c1be616fe02951e2e342092edf968cf0844220383757ef8f10 - url: "https://pub.dev" - source: hosted - version: "0.1.4-beta" - win32: - dependency: transitive - description: - name: win32 - sha256: "9e82a402b7f3d518fb9c02d0e9ae45952df31b9bf34d77baf19da2de03fc2aaa" - url: "https://pub.dev" - source: hosted - version: "5.0.7" - xdg_directories: - dependency: transitive - description: - name: xdg_directories - sha256: "589ada45ba9e39405c198fe34eb0f607cddb2108527e658136120892beac46d2" - url: "https://pub.dev" - source: hosted - version: "1.0.3" -sdks: - dart: ">=3.1.0-185.0.dev <4.0.0" - flutter: ">=3.10.0" diff --git a/classic/frontend/pubspec.yaml b/classic/frontend/pubspec.yaml deleted file mode 100644 index bb2214eafb..0000000000 --- a/classic/frontend/pubspec.yaml +++ /dev/null @@ -1,111 +0,0 @@ -name: auto_gpt_flutter_client -description: A new Flutter project. -# The following line prevents the package from being accidentally published to -# pub.dev using `flutter pub publish`. This is preferred for private packages. -publish_to: 'none' # Remove this line if you wish to publish to pub.dev - -# The following defines the version and build number for your application. -# A version number is three numbers separated by dots, like 1.2.43 -# followed by an optional build number separated by a +. -# Both the version and the builder number may be overridden in flutter -# build by specifying --build-name and --build-number, respectively. -# In Android, build-name is used as versionName while build-number used as versionCode. -# Read more about Android versioning at https://developer.android.com/studio/publish/versioning -# In iOS, build-name is used as CFBundleShortVersionString while build-number is used as CFBundleVersion. -# Read more about iOS versioning at -# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html -# In Windows, build-name is used as the major, minor, and patch parts -# of the product and file versions while build-number is used as the build suffix. -version: 1.0.0+1 - -environment: - sdk: '>=3.0.0-417.2.beta <4.0.0' - -# Dependencies specify other packages that your package needs in order to work. -# To automatically upgrade your package dependencies to the latest versions -# consider running `flutter pub upgrade --major-versions`. Alternatively, -# dependencies can be manually updated by changing the version numbers below to -# the latest version available on pub.dev. To see which dependencies have newer -# versions available, run `flutter pub outdated`. -dependencies: - flutter: - sdk: flutter - collection: ^1.15.0 - flutter_highlight: ^0.7.0 - - # The following adds the Cupertino Icons font to your application. - # Use with the CupertinoIcons class for iOS style icons. - cupertino_icons: ^1.0.2 - provider: ^6.0.5 - http: ^1.1.0 - shared_preferences: ^2.2.1 - graphview: ^1.2.0 - firebase_core: ^2.15.1 - firebase_auth: ^4.9.0 - firebase_analytics: ^10.5.0 - google_sign_in: ^6.1.5 - uuid: ^4.0.0 - url_launcher: ^6.1.14 - fluttertoast: ^8.2.2 - flutter_markdown: ^0.6.18 - -dev_dependencies: - flutter_test: - sdk: flutter - - # The "flutter_lints" package below contains a set of recommended lints to - # encourage good coding practices. The lint set provided by the package is - # activated in the `analysis_options.yaml` file located at the root of your - # package. See that file for information about deactivating specific lint - # rules and activating additional ones. - flutter_lints: ^2.0.0 - -# For information on the generic Dart part of this file, see the -# following page: https://dart.dev/tools/pub/pubspec - -# The following section is specific to Flutter packages. -flutter: - - # The following line ensures that the Material Icons font is - # included with your application, so that you can use the icons in - # the material Icons class. - uses-material-design: true - - assets: - - assets/tree_structure.json - - assets/images/google_logo.svg.png - - assets/images/github_logo.svg.png - - assets/images/autogpt_logo.png - - assets/images/discord_logo.png - - assets/images/twitter_logo.png - - assets/general_tree_structure.json - - assets/coding_tree_structure.json - - assets/data_tree_structure.json - - assets/scrape_synthesize_tree_structure.json - - - # An image asset can refer to one or more resolution-specific "variants", see - # https://flutter.dev/assets-and-images/#resolution-aware - - # For details regarding adding assets from package dependencies, see - # https://flutter.dev/assets-and-images/#from-packages - - # To add custom fonts to your application, add a fonts section here, - # in this "flutter" section. Each entry in this list should have a - # "family" key with the font family name, and a "fonts" key with a - # list giving the asset and other descriptors for the font. For - # example: - # fonts: - # - family: Schyler - # fonts: - # - asset: fonts/Schyler-Regular.ttf - # - asset: fonts/Schyler-Italic.ttf - # style: italic - # - family: Trajan Pro - # fonts: - # - asset: fonts/TrajanPro.ttf - # - asset: fonts/TrajanPro_Bold.ttf - # weight: 700 - # - # For details regarding fonts from package dependencies, - # see https://flutter.dev/custom-fonts/#from-packages diff --git a/classic/frontend/run b/classic/frontend/run deleted file mode 100755 index 660f9adfa8..0000000000 --- a/classic/frontend/run +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/bash - -kill $(lsof -t -i :5000) - -flutter run -d chrome --web-port 5000 diff --git a/classic/frontend/test/agent_message_tile_test.dart b/classic/frontend/test/agent_message_tile_test.dart deleted file mode 100644 index 89de5bd4bf..0000000000 --- a/classic/frontend/test/agent_message_tile_test.dart +++ /dev/null @@ -1,46 +0,0 @@ -import 'package:auto_gpt_flutter_client/views/chat/agent_message_tile.dart'; -import 'package:auto_gpt_flutter_client/views/chat/json_code_snippet_view.dart'; -import 'package:flutter/material.dart'; -import 'package:flutter_test/flutter_test.dart'; - -void main() { - // Test to verify that the AgentMessageTile renders correctly - testWidgets('Renders AgentMessageTile', (WidgetTester tester) async { - await tester.pumpWidget(const MaterialApp( - home: Scaffold( - body: AgentMessageTile(message: 'Test Message'), - ), - )); - - // Verify that the agent title is displayed - expect(find.text('Agent'), findsOneWidget); - // Verify that the message text is displayed - expect(find.text('Test Message'), findsOneWidget); - }); - - // Test to verify that the expand/collapse functionality works - testWidgets('Toggle Expand/Collapse', (WidgetTester tester) async { - await tester.pumpWidget(const MaterialApp( - home: Scaffold( - body: AgentMessageTile(message: 'Test Message'), - ), - )); - - // Verify that the JSON code snippet is not visible initially - expect(find.byType(JsonCodeSnippetView), findsNothing); - - // Tap the expand/collapse button - await tester.tap(find.byIcon(Icons.keyboard_arrow_down)); - await tester.pumpAndSettle(); - - // Verify that the JSON code snippet is now visible - expect(find.byType(JsonCodeSnippetView), findsOneWidget); - - // Tap the expand/collapse button again - await tester.tap(find.byIcon(Icons.keyboard_arrow_up)); - await tester.pumpAndSettle(); - - // Verify that the JSON code snippet is hidden again - expect(find.byType(JsonCodeSnippetView), findsNothing); - }); -} diff --git a/classic/frontend/test/chat_input_field_test.dart b/classic/frontend/test/chat_input_field_test.dart deleted file mode 100644 index 2aa8eade81..0000000000 --- a/classic/frontend/test/chat_input_field_test.dart +++ /dev/null @@ -1,71 +0,0 @@ -import 'package:flutter/material.dart'; -import 'package:flutter_test/flutter_test.dart'; -import 'package:auto_gpt_flutter_client/views/chat/chat_input_field.dart'; - -void main() { - // Test if the ChatInputField widget renders correctly - testWidgets('ChatInputField renders correctly', (WidgetTester tester) async { - await tester.pumpWidget( - MaterialApp( - home: Scaffold( - body: ChatInputField( - onSendPressed: () {}, - ), - ), - ), - ); - - // Find the TextField widget - expect(find.byType(TextField), findsOneWidget); - // Find the send IconButton - expect(find.byIcon(Icons.send), findsOneWidget); - }); - - // Test if the TextField inside ChatInputField can accept and display input - testWidgets('ChatInputField text field accepts input', - (WidgetTester tester) async { - await tester.pumpWidget( - MaterialApp( - home: Scaffold( - body: ChatInputField( - onSendPressed: () {}, - ), - ), - ), - ); - - // Type 'Hello' into the TextField - await tester.enterText(find.byType(TextField), 'Hello'); - // Rebuild the widget with the new text - await tester.pump(); - - // Expect to find 'Hello' in the TextField - expect(find.text('Hello'), findsOneWidget); - }); - - // Test if the send button triggers the provided onSendPressed callback - testWidgets('ChatInputField send button triggers callback', - (WidgetTester tester) async { - bool onPressedCalled = false; - - await tester.pumpWidget( - MaterialApp( - home: Scaffold( - body: ChatInputField( - onSendPressed: () { - onPressedCalled = true; - }, - ), - ), - ), - ); - - // Tap the send IconButton - await tester.tap(find.byIcon(Icons.send)); - // Rebuild the widget after the tap - await tester.pump(); - - // Check if the callback was called - expect(onPressedCalled, isTrue); - }); -} diff --git a/classic/frontend/test/chat_test.dart b/classic/frontend/test/chat_test.dart deleted file mode 100644 index 8749de8410..0000000000 --- a/classic/frontend/test/chat_test.dart +++ /dev/null @@ -1,69 +0,0 @@ -import 'package:auto_gpt_flutter_client/models/chat.dart'; -import 'package:auto_gpt_flutter_client/models/message_type.dart'; -import 'package:flutter_test/flutter_test.dart'; - -void main() { - group('Chat', () { - // Test the properties of the Chat class - test('Chat properties', () { - final chat = Chat( - id: 1, - taskId: 1, - message: 'Test Message', - timestamp: DateTime.now(), - messageType: MessageType.user); - - expect(chat.id, 1); - expect(chat.taskId, 1); - expect(chat.message, 'Test Message'); - expect(chat.messageType, MessageType.user); - }); - - // Test Chat.fromMap method - test('Chat.fromMap', () { - final chat = Chat.fromMap({ - 'id': 1, - 'taskId': 1, - 'message': 'Test Message', - 'timestamp': DateTime.now().toString(), - 'messageType': 'user' - }); - - expect(chat.id, 1); - expect(chat.taskId, 1); - expect(chat.message, 'Test Message'); - expect(chat.messageType, MessageType.user); - }); - - // Test that two Chat objects with the same properties are equal - test('Two chats with same properties are equal', () { - final chat1 = Chat( - id: 3, - taskId: 3, - message: 'Same Message', - timestamp: DateTime.now(), - messageType: MessageType.agent); - final chat2 = Chat( - id: 3, - taskId: 3, - message: 'Same Message', - timestamp: chat1.timestamp, - messageType: MessageType.agent); - - expect(chat1, chat2); - }); - - // Test that toString() returns a string representation of the Chat - test('toString returns string representation', () { - final chat = Chat( - id: 4, - taskId: 4, - message: 'Test toString', - timestamp: DateTime.now(), - messageType: MessageType.user); - - expect(chat.toString(), - 'Chat(id: 4, taskId: 4, message: Test toString, timestamp: ${chat.timestamp}, messageType: MessageType.user)'); - }); - }); -} diff --git a/classic/frontend/test/chat_viewmodel_test.dart b/classic/frontend/test/chat_viewmodel_test.dart deleted file mode 100644 index 6278d4c0ae..0000000000 --- a/classic/frontend/test/chat_viewmodel_test.dart +++ /dev/null @@ -1,47 +0,0 @@ -import 'package:auto_gpt_flutter_client/models/message_type.dart'; -import 'package:auto_gpt_flutter_client/viewmodels/chat_viewmodel.dart'; -import 'package:flutter_test/flutter_test.dart'; - -void main() { - // Initialize the ChatViewModel - // TODO: Dependency injection in view models for testing purposes when we implement services - final viewModel = ChatViewModel(); - - group('ChatViewModel', () { - test('fetch chats for a specific task', () { - viewModel - .fetchChatsForTask(1); // Assuming task with ID 1 exists in mock data - expect(viewModel.chats.isNotEmpty, true); - expect(viewModel.chats.every((chat) => chat.taskId == 1), true); - }); - - test('send chat message for a specific task', () { - final initialChatsLength = viewModel.chats.length; - viewModel.sendChatMessage(1, 'Test message'); - expect(viewModel.chats.length, - initialChatsLength + 2); // One user message and one agent reply - expect(viewModel.chats.last.messageType, - MessageType.agent); // Last message should be agent's reply - }); - - // TODO: Refactor to return errors when we implement service - test('fetch chats for invalid task id', () { - viewModel.fetchChatsForTask( - 9999); // Assuming task with ID 9999 does not exist in mock data - expect( - viewModel.chats.where((chat) => chat.taskId == 9999).isEmpty, true); - }); - - // TODO: Refactor to return errors when we implement service - test('send chat message for invalid task id', () { - final initialChatsLength = viewModel.chats.length; - viewModel.sendChatMessage(9999, 'Invalid test message'); - expect( - viewModel.chats.length, - initialChatsLength + - 2); // Even for invalid tasks, we're currently adding mock replies - expect(viewModel.chats.last.messageType, - MessageType.agent); // Last message should be agent's reply - }); - }); -} diff --git a/classic/frontend/test/json_code_snippet_view_test.dart b/classic/frontend/test/json_code_snippet_view_test.dart deleted file mode 100644 index 4a0dc8b3bd..0000000000 --- a/classic/frontend/test/json_code_snippet_view_test.dart +++ /dev/null @@ -1,14 +0,0 @@ -import 'package:auto_gpt_flutter_client/views/chat/json_code_snippet_view.dart'; -import 'package:flutter/material.dart'; -import 'package:flutter_test/flutter_test.dart'; - -void main() { - const jsonString = '{"key": "value"}'; - - testWidgets('Renders JsonCodeSnippetView without crashing', - (WidgetTester tester) async { - await tester.pumpWidget( - const MaterialApp(home: JsonCodeSnippetView(jsonString: jsonString))); - expect(find.byType(JsonCodeSnippetView), findsOneWidget); - }); -} diff --git a/classic/frontend/test/new_task_button_test.dart b/classic/frontend/test/new_task_button_test.dart deleted file mode 100644 index 107a28ebc6..0000000000 --- a/classic/frontend/test/new_task_button_test.dart +++ /dev/null @@ -1,24 +0,0 @@ -import 'package:auto_gpt_flutter_client/views/task/new_task_button.dart'; -import 'package:flutter/material.dart'; -import 'package:flutter_test/flutter_test.dart'; - -void main() { - testWidgets('NewTaskButton triggers callback on press', - (WidgetTester tester) async { - bool wasPressed = false; - - // Build our widget. - await tester.pumpWidget(MaterialApp( - home: Scaffold( - body: NewTaskButton(onPressed: () => wasPressed = true), - ), - )); - - // Verify if the button with the text 'New Task' is displayed. - expect(find.text('New Task'), findsOneWidget); - - // Tap the button and verify if the onPressed callback is triggered. - await tester.tap(find.byType(ElevatedButton)); - expect(wasPressed, true); - }); -} diff --git a/classic/frontend/test/step_request_body_test.dart b/classic/frontend/test/step_request_body_test.dart deleted file mode 100644 index d15a95f6d8..0000000000 --- a/classic/frontend/test/step_request_body_test.dart +++ /dev/null @@ -1,26 +0,0 @@ -import 'package:auto_gpt_flutter_client/models/step_request_body.dart'; -import 'package:flutter_test/flutter_test.dart'; - -void main() { - group('StepRequestBody', () { - test('should create StepRequestBody with correct values', () { - final stepRequestBody = StepRequestBody( - input: 'Execute something', additionalInput: {'key': 'value'}); - - expect(stepRequestBody.input, 'Execute something'); - expect(stepRequestBody.additionalInput, {'key': 'value'}); - }); - - test('should convert StepRequestBody to correct JSON', () { - final stepRequestBody = StepRequestBody( - input: 'Execute something', additionalInput: {'key': 'value'}); - - final json = stepRequestBody.toJson(); - - expect(json, { - 'input': 'Execute something', - 'additional_input': {'key': 'value'} - }); - }); - }); -} diff --git a/classic/frontend/test/task_list_tile_test.dart b/classic/frontend/test/task_list_tile_test.dart deleted file mode 100644 index e9b0c21de6..0000000000 --- a/classic/frontend/test/task_list_tile_test.dart +++ /dev/null @@ -1,71 +0,0 @@ -import 'package:flutter_test/flutter_test.dart'; -import 'package:flutter/material.dart'; -import 'package:auto_gpt_flutter_client/views/task/task_list_tile.dart'; -import 'package:auto_gpt_flutter_client/models/task.dart'; - -void main() { - final Task testTask = Task(id: 1, title: "Sample Task"); - - testWidgets('TaskListTile displays the task title', - (WidgetTester tester) async { - await tester.pumpWidget(MaterialApp( - home: TaskListTile(task: testTask, onTap: () {}, onDelete: () {}))); - expect(find.text('Sample Task'), findsOneWidget); - }); - - testWidgets('TaskListTile toggles isSelected state on tap', - (WidgetTester tester) async { - await tester.pumpWidget(MaterialApp( - home: TaskListTile(task: testTask, onTap: () {}, onDelete: () {}))); - - // Initially, the delete icon should not be present - expect(find.byIcon(Icons.close), findsNothing); - - // Tap the tile - await tester.tap(find.text('Sample Task')); - await tester.pump(); - - // The delete icon should appear - expect(find.byIcon(Icons.close), findsOneWidget); - }); - - testWidgets('TaskListTile triggers onDelete when delete icon is tapped', - (WidgetTester tester) async { - bool wasDeleteCalled = false; - await tester.pumpWidget(MaterialApp( - home: TaskListTile( - task: testTask, - onTap: () {}, - onDelete: () { - wasDeleteCalled = true; - }))); - - // Tap the tile to make the delete icon appear - await tester.tap(find.text('Sample Task')); - await tester.pump(); - - // Tap the delete icon - await tester.tap(find.byIcon(Icons.close)); - await tester.pump(); - - expect(wasDeleteCalled, true); - }); - - testWidgets('TaskListTile triggers onTap when tapped', - (WidgetTester tester) async { - bool wasTapped = false; - await tester.pumpWidget(MaterialApp( - home: TaskListTile( - task: testTask, - onTap: () { - wasTapped = true; - }, - onDelete: () {}))); - - // Tap the tile - await tester.tap(find.text('Sample Task')); - await tester.pump(); - - expect(wasTapped, true); - }); -} diff --git a/classic/frontend/test/task_request_body_test.dart b/classic/frontend/test/task_request_body_test.dart deleted file mode 100644 index 7ac1d61bf3..0000000000 --- a/classic/frontend/test/task_request_body_test.dart +++ /dev/null @@ -1,26 +0,0 @@ -import 'package:auto_gpt_flutter_client/models/task_request_body.dart'; -import 'package:flutter_test/flutter_test.dart'; - -void main() { - group('TaskRequestBody', () { - test('should create TaskRequestBody with correct values', () { - final taskRequestBody = TaskRequestBody( - input: 'Do something', additionalInput: {'key': 'value'}); - - expect(taskRequestBody.input, 'Do something'); - expect(taskRequestBody.additionalInput, {'key': 'value'}); - }); - - test('should convert TaskRequestBody to correct JSON', () { - final taskRequestBody = TaskRequestBody( - input: 'Do something', additionalInput: {'key': 'value'}); - - final json = taskRequestBody.toJson(); - - expect(json, { - 'input': 'Do something', - 'additional_input': {'key': 'value'} - }); - }); - }); -} diff --git a/classic/frontend/test/task_test.dart b/classic/frontend/test/task_test.dart deleted file mode 100644 index 515d14dfb9..0000000000 --- a/classic/frontend/test/task_test.dart +++ /dev/null @@ -1,57 +0,0 @@ -import 'package:auto_gpt_flutter_client/models/task.dart'; -import 'package:flutter_test/flutter_test.dart'; - -void main() { - group('Task', () { - // Test the properties of the Task class - test('Task properties', () { - final task = Task(id: 1, title: 'Test Task'); - - expect(task.id, 1); - expect(task.title, 'Test Task'); - }); - - // Test Task.fromMap method - test('Task.fromMap', () { - final task = Task.fromMap({'id': 1, 'title': 'Test Task'}); - - expect(task.id, 1); - expect(task.title, 'Test Task'); - }); - - // Test creating a Task with an empty title - test('Task with empty title', () { - expect(() => Task(id: 2, title: ''), throwsA(isA())); - }); - - // Test that two Task objects with the same id and title are equal - test('Two tasks with same properties are equal', () { - final task1 = Task(id: 4, title: 'Same Task'); - final task2 = Task(id: 4, title: 'Same Task'); - - expect(task1, task2); - }); - - // Test that toString() returns a string representation of the Task - test('toString returns string representation', () { - final task = Task(id: 5, title: 'Test toString'); - - expect(task.toString(), 'Task(id: 5, title: Test toString)'); - }); - - // Test that title of Task can be modified - test('Modify task title', () { - final task = Task(id: 6, title: 'Initial Title'); - task.title = 'Modified Title'; - - expect(task.title, 'Modified Title'); - }); - - // Test that setting an empty title throws an error - test('Set empty title', () { - final task = Task(id: 7, title: 'Valid Title'); - - expect(() => task.title = '', throwsA(isA())); - }); - }); -} diff --git a/classic/frontend/test/task_viewmodel_test.dart b/classic/frontend/test/task_viewmodel_test.dart deleted file mode 100644 index a89e368d12..0000000000 --- a/classic/frontend/test/task_viewmodel_test.dart +++ /dev/null @@ -1,76 +0,0 @@ -import 'package:auto_gpt_flutter_client/viewmodels/task_viewmodel.dart'; -import 'package:auto_gpt_flutter_client/viewmodels/mock_data.dart'; -import 'package:flutter_test/flutter_test.dart'; - -void main() { - group('TaskViewModel', () { - late TaskViewModel viewModel; - - setUp(() { - viewModel = TaskViewModel(); - }); - - test('Fetches tasks successfully', () { - viewModel.fetchTasks(); - expect(viewModel.tasks, isNotEmpty); - }); - - test('Selects a task successfully', () { - viewModel.fetchTasks(); - viewModel.selectTask(1); - expect(viewModel.selectedTask, isNotNull); - }); - - test( - 'Notifiers are properly telling UI to update after fetching a task or selecting a task', - () { - bool hasNotified = false; - viewModel.addListener(() { - hasNotified = true; - }); - - viewModel.fetchTasks(); - expect(hasNotified, true); - - hasNotified = false; // Reset for next test - viewModel.selectTask(1); - expect(hasNotified, true); - }); - - test('No tasks are fetched', () { - // Clear mock data for this test - mockTasks.clear(); - - viewModel.fetchTasks(); - expect(viewModel.tasks, isEmpty); - }); - - test('No task is selected', () { - expect(viewModel.selectedTask, isNull); - }); - - test('Creates a task successfully', () { - final initialCount = viewModel.tasks.length; - viewModel.createTask('New Task'); - expect(viewModel.tasks.length, initialCount + 1); - }); - - test('Deletes a task successfully', () { - viewModel.fetchTasks(); - final initialCount = viewModel.tasks.length; - viewModel.deleteTask(1); - expect(viewModel.tasks.length, initialCount - 1); - }); - - test('Deletes a task with invalid id', () { - // TODO: Update this test to expect an error once we have TaskService implemented - final initialCount = viewModel.tasks.length; - viewModel.deleteTask(9999); // Assuming no task with this id exists - expect(viewModel.tasks.length, initialCount); // Count remains same - }); - - test('Select a task that doesn\'t exist', () { - expect(() => viewModel.selectTask(9999), throwsA(isA())); - }); - }); -} diff --git a/classic/frontend/test/user_message_tile_test.dart b/classic/frontend/test/user_message_tile_test.dart deleted file mode 100644 index 6f5133a279..0000000000 --- a/classic/frontend/test/user_message_tile_test.dart +++ /dev/null @@ -1,42 +0,0 @@ -import 'package:auto_gpt_flutter_client/views/chat/user_message_tile.dart'; -import 'package:flutter/material.dart'; -import 'package:flutter_test/flutter_test.dart'; - -void main() { - // Test group for UserMessageTile widget - group('UserMessageTile', () { - // Test to check if the widget renders without error - testWidgets('renders without error', (WidgetTester tester) async { - await tester.pumpWidget(const MaterialApp( - home: Scaffold( - body: UserMessageTile(message: 'Hello, User!'), - ), - )); - expect(find.byType(UserMessageTile), findsOneWidget); - }); - - // Test to check if the widget displays the correct user message - testWidgets('displays the correct user message', - (WidgetTester tester) async { - const testMessage = 'Test Message'; - await tester.pumpWidget(const MaterialApp( - home: Scaffold( - body: UserMessageTile(message: testMessage), - ), - )); - - expect(find.text(testMessage), findsOneWidget); - }); - - // Test to check if the widget displays the "User" title - testWidgets('displays the "User" title', (WidgetTester tester) async { - await tester.pumpWidget(const MaterialApp( - home: Scaffold( - body: UserMessageTile(message: 'Any Message'), - ), - )); - - expect(find.text('User'), findsOneWidget); - }); - }); -} diff --git a/classic/frontend/web/favicon.png b/classic/frontend/web/favicon.png deleted file mode 100644 index 8aaa46ac1a..0000000000 Binary files a/classic/frontend/web/favicon.png and /dev/null differ diff --git a/classic/frontend/web/icons/Icon-192.png b/classic/frontend/web/icons/Icon-192.png deleted file mode 100644 index b749bfef07..0000000000 Binary files a/classic/frontend/web/icons/Icon-192.png and /dev/null differ diff --git a/classic/frontend/web/icons/Icon-512.png b/classic/frontend/web/icons/Icon-512.png deleted file mode 100644 index 88cfd48dff..0000000000 Binary files a/classic/frontend/web/icons/Icon-512.png and /dev/null differ diff --git a/classic/frontend/web/icons/Icon-maskable-192.png b/classic/frontend/web/icons/Icon-maskable-192.png deleted file mode 100644 index eb9b4d76e5..0000000000 Binary files a/classic/frontend/web/icons/Icon-maskable-192.png and /dev/null differ diff --git a/classic/frontend/web/icons/Icon-maskable-512.png b/classic/frontend/web/icons/Icon-maskable-512.png deleted file mode 100644 index d69c56691f..0000000000 Binary files a/classic/frontend/web/icons/Icon-maskable-512.png and /dev/null differ diff --git a/classic/frontend/web/index.html b/classic/frontend/web/index.html deleted file mode 100644 index 9bbca75909..0000000000 --- a/classic/frontend/web/index.html +++ /dev/null @@ -1,84 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - auto_gpt_flutter_client - - - - - - - - - - - - diff --git a/classic/frontend/web/manifest.json b/classic/frontend/web/manifest.json deleted file mode 100644 index a7811d62fd..0000000000 --- a/classic/frontend/web/manifest.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "name": "auto_gpt_flutter_client", - "short_name": "auto_gpt_flutter_client", - "start_url": ".", - "display": "standalone", - "background_color": "#0175C2", - "theme_color": "#0175C2", - "description": "A new Flutter project.", - "orientation": "portrait-primary", - "prefer_related_applications": false, - "icons": [ - { - "src": "icons/Icon-192.png", - "sizes": "192x192", - "type": "image/png" - }, - { - "src": "icons/Icon-512.png", - "sizes": "512x512", - "type": "image/png" - }, - { - "src": "icons/Icon-maskable-192.png", - "sizes": "192x192", - "type": "image/png", - "purpose": "maskable" - }, - { - "src": "icons/Icon-maskable-512.png", - "sizes": "512x512", - "type": "image/png", - "purpose": "maskable" - } - ] -} diff --git a/classic/frontend/windows/.gitignore b/classic/frontend/windows/.gitignore deleted file mode 100644 index d492d0d98c..0000000000 --- a/classic/frontend/windows/.gitignore +++ /dev/null @@ -1,17 +0,0 @@ -flutter/ephemeral/ - -# Visual Studio user-specific files. -*.suo -*.user -*.userosscache -*.sln.docstates - -# Visual Studio build-related files. -x64/ -x86/ - -# Visual Studio cache files -# files ending in .cache can be ignored -*.[Cc]ache -# but keep track of directories ending in .cache -!*.[Cc]ache/ diff --git a/classic/frontend/windows/CMakeLists.txt b/classic/frontend/windows/CMakeLists.txt deleted file mode 100644 index 14af9a9ad2..0000000000 --- a/classic/frontend/windows/CMakeLists.txt +++ /dev/null @@ -1,102 +0,0 @@ -# Project-level configuration. -cmake_minimum_required(VERSION 3.14) -project(auto_gpt_flutter_client LANGUAGES CXX) - -# The name of the executable created for the application. Change this to change -# the on-disk name of your application. -set(BINARY_NAME "auto_gpt_flutter_client") - -# Explicitly opt in to modern CMake behaviors to avoid warnings with recent -# versions of CMake. -cmake_policy(SET CMP0063 NEW) - -# Define build configuration option. -get_property(IS_MULTICONFIG GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG) -if(IS_MULTICONFIG) - set(CMAKE_CONFIGURATION_TYPES "Debug;Profile;Release" - CACHE STRING "" FORCE) -else() - if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES) - set(CMAKE_BUILD_TYPE "Debug" CACHE - STRING "Flutter build mode" FORCE) - set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS - "Debug" "Profile" "Release") - endif() -endif() -# Define settings for the Profile build mode. -set(CMAKE_EXE_LINKER_FLAGS_PROFILE "${CMAKE_EXE_LINKER_FLAGS_RELEASE}") -set(CMAKE_SHARED_LINKER_FLAGS_PROFILE "${CMAKE_SHARED_LINKER_FLAGS_RELEASE}") -set(CMAKE_C_FLAGS_PROFILE "${CMAKE_C_FLAGS_RELEASE}") -set(CMAKE_CXX_FLAGS_PROFILE "${CMAKE_CXX_FLAGS_RELEASE}") - -# Use Unicode for all projects. -add_definitions(-DUNICODE -D_UNICODE) - -# Compilation settings that should be applied to most targets. -# -# Be cautious about adding new options here, as plugins use this function by -# default. In most cases, you should add new options to specific targets instead -# of modifying this function. -function(APPLY_STANDARD_SETTINGS TARGET) - target_compile_features(${TARGET} PUBLIC cxx_std_17) - target_compile_options(${TARGET} PRIVATE /W4 /WX /wd"4100") - target_compile_options(${TARGET} PRIVATE /EHsc) - target_compile_definitions(${TARGET} PRIVATE "_HAS_EXCEPTIONS=0") - target_compile_definitions(${TARGET} PRIVATE "$<$:_DEBUG>") -endfunction() - -# Flutter library and tool build rules. -set(FLUTTER_MANAGED_DIR "${CMAKE_CURRENT_SOURCE_DIR}/flutter") -add_subdirectory(${FLUTTER_MANAGED_DIR}) - -# Application build; see runner/CMakeLists.txt. -add_subdirectory("runner") - - -# Generated plugin build rules, which manage building the plugins and adding -# them to the application. -include(flutter/generated_plugins.cmake) - - -# === Installation === -# Support files are copied into place next to the executable, so that it can -# run in place. This is done instead of making a separate bundle (as on Linux) -# so that building and running from within Visual Studio will work. -set(BUILD_BUNDLE_DIR "$") -# Make the "install" step default, as it's required to run. -set(CMAKE_VS_INCLUDE_INSTALL_TO_DEFAULT_BUILD 1) -if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT) - set(CMAKE_INSTALL_PREFIX "${BUILD_BUNDLE_DIR}" CACHE PATH "..." FORCE) -endif() - -set(INSTALL_BUNDLE_DATA_DIR "${CMAKE_INSTALL_PREFIX}/data") -set(INSTALL_BUNDLE_LIB_DIR "${CMAKE_INSTALL_PREFIX}") - -install(TARGETS ${BINARY_NAME} RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}" - COMPONENT Runtime) - -install(FILES "${FLUTTER_ICU_DATA_FILE}" DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" - COMPONENT Runtime) - -install(FILES "${FLUTTER_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" - COMPONENT Runtime) - -if(PLUGIN_BUNDLED_LIBRARIES) - install(FILES "${PLUGIN_BUNDLED_LIBRARIES}" - DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" - COMPONENT Runtime) -endif() - -# Fully re-copy the assets directory on each build to avoid having stale files -# from a previous install. -set(FLUTTER_ASSET_DIR_NAME "flutter_assets") -install(CODE " - file(REMOVE_RECURSE \"${INSTALL_BUNDLE_DATA_DIR}/${FLUTTER_ASSET_DIR_NAME}\") - " COMPONENT Runtime) -install(DIRECTORY "${PROJECT_BUILD_DIR}/${FLUTTER_ASSET_DIR_NAME}" - DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" COMPONENT Runtime) - -# Install the AOT library on non-Debug builds only. -install(FILES "${AOT_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" - CONFIGURATIONS Profile;Release - COMPONENT Runtime) diff --git a/classic/frontend/windows/flutter/CMakeLists.txt b/classic/frontend/windows/flutter/CMakeLists.txt deleted file mode 100644 index 930d2071a3..0000000000 --- a/classic/frontend/windows/flutter/CMakeLists.txt +++ /dev/null @@ -1,104 +0,0 @@ -# This file controls Flutter-level build steps. It should not be edited. -cmake_minimum_required(VERSION 3.14) - -set(EPHEMERAL_DIR "${CMAKE_CURRENT_SOURCE_DIR}/ephemeral") - -# Configuration provided via flutter tool. -include(${EPHEMERAL_DIR}/generated_config.cmake) - -# TODO: Move the rest of this into files in ephemeral. See -# https://github.com/flutter/flutter/issues/57146. -set(WRAPPER_ROOT "${EPHEMERAL_DIR}/cpp_client_wrapper") - -# === Flutter Library === -set(FLUTTER_LIBRARY "${EPHEMERAL_DIR}/flutter_windows.dll") - -# Published to parent scope for install step. -set(FLUTTER_LIBRARY ${FLUTTER_LIBRARY} PARENT_SCOPE) -set(FLUTTER_ICU_DATA_FILE "${EPHEMERAL_DIR}/icudtl.dat" PARENT_SCOPE) -set(PROJECT_BUILD_DIR "${PROJECT_DIR}/build/" PARENT_SCOPE) -set(AOT_LIBRARY "${PROJECT_DIR}/build/windows/app.so" PARENT_SCOPE) - -list(APPEND FLUTTER_LIBRARY_HEADERS - "flutter_export.h" - "flutter_windows.h" - "flutter_messenger.h" - "flutter_plugin_registrar.h" - "flutter_texture_registrar.h" -) -list(TRANSFORM FLUTTER_LIBRARY_HEADERS PREPEND "${EPHEMERAL_DIR}/") -add_library(flutter INTERFACE) -target_include_directories(flutter INTERFACE - "${EPHEMERAL_DIR}" -) -target_link_libraries(flutter INTERFACE "${FLUTTER_LIBRARY}.lib") -add_dependencies(flutter flutter_assemble) - -# === Wrapper === -list(APPEND CPP_WRAPPER_SOURCES_CORE - "core_implementations.cc" - "standard_codec.cc" -) -list(TRANSFORM CPP_WRAPPER_SOURCES_CORE PREPEND "${WRAPPER_ROOT}/") -list(APPEND CPP_WRAPPER_SOURCES_PLUGIN - "plugin_registrar.cc" -) -list(TRANSFORM CPP_WRAPPER_SOURCES_PLUGIN PREPEND "${WRAPPER_ROOT}/") -list(APPEND CPP_WRAPPER_SOURCES_APP - "flutter_engine.cc" - "flutter_view_controller.cc" -) -list(TRANSFORM CPP_WRAPPER_SOURCES_APP PREPEND "${WRAPPER_ROOT}/") - -# Wrapper sources needed for a plugin. -add_library(flutter_wrapper_plugin STATIC - ${CPP_WRAPPER_SOURCES_CORE} - ${CPP_WRAPPER_SOURCES_PLUGIN} -) -apply_standard_settings(flutter_wrapper_plugin) -set_target_properties(flutter_wrapper_plugin PROPERTIES - POSITION_INDEPENDENT_CODE ON) -set_target_properties(flutter_wrapper_plugin PROPERTIES - CXX_VISIBILITY_PRESET hidden) -target_link_libraries(flutter_wrapper_plugin PUBLIC flutter) -target_include_directories(flutter_wrapper_plugin PUBLIC - "${WRAPPER_ROOT}/include" -) -add_dependencies(flutter_wrapper_plugin flutter_assemble) - -# Wrapper sources needed for the runner. -add_library(flutter_wrapper_app STATIC - ${CPP_WRAPPER_SOURCES_CORE} - ${CPP_WRAPPER_SOURCES_APP} -) -apply_standard_settings(flutter_wrapper_app) -target_link_libraries(flutter_wrapper_app PUBLIC flutter) -target_include_directories(flutter_wrapper_app PUBLIC - "${WRAPPER_ROOT}/include" -) -add_dependencies(flutter_wrapper_app flutter_assemble) - -# === Flutter tool backend === -# _phony_ is a non-existent file to force this command to run every time, -# since currently there's no way to get a full input/output list from the -# flutter tool. -set(PHONY_OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/_phony_") -set_source_files_properties("${PHONY_OUTPUT}" PROPERTIES SYMBOLIC TRUE) -add_custom_command( - OUTPUT ${FLUTTER_LIBRARY} ${FLUTTER_LIBRARY_HEADERS} - ${CPP_WRAPPER_SOURCES_CORE} ${CPP_WRAPPER_SOURCES_PLUGIN} - ${CPP_WRAPPER_SOURCES_APP} - ${PHONY_OUTPUT} - COMMAND ${CMAKE_COMMAND} -E env - ${FLUTTER_TOOL_ENVIRONMENT} - "${FLUTTER_ROOT}/packages/flutter_tools/bin/tool_backend.bat" - windows-x64 $ - VERBATIM -) -add_custom_target(flutter_assemble DEPENDS - "${FLUTTER_LIBRARY}" - ${FLUTTER_LIBRARY_HEADERS} - ${CPP_WRAPPER_SOURCES_CORE} - ${CPP_WRAPPER_SOURCES_PLUGIN} - ${CPP_WRAPPER_SOURCES_APP} -) diff --git a/classic/frontend/windows/flutter/generated_plugin_registrant.cc b/classic/frontend/windows/flutter/generated_plugin_registrant.cc deleted file mode 100644 index ec8e8d4573..0000000000 --- a/classic/frontend/windows/flutter/generated_plugin_registrant.cc +++ /dev/null @@ -1,17 +0,0 @@ -// -// Generated file. Do not edit. -// - -// clang-format off - -#include "generated_plugin_registrant.h" - -#include -#include - -void RegisterPlugins(flutter::PluginRegistry* registry) { - FirebaseCorePluginCApiRegisterWithRegistrar( - registry->GetRegistrarForPlugin("FirebaseCorePluginCApi")); - UrlLauncherWindowsRegisterWithRegistrar( - registry->GetRegistrarForPlugin("UrlLauncherWindows")); -} diff --git a/classic/frontend/windows/flutter/generated_plugin_registrant.h b/classic/frontend/windows/flutter/generated_plugin_registrant.h deleted file mode 100644 index dc139d85a9..0000000000 --- a/classic/frontend/windows/flutter/generated_plugin_registrant.h +++ /dev/null @@ -1,15 +0,0 @@ -// -// Generated file. Do not edit. -// - -// clang-format off - -#ifndef GENERATED_PLUGIN_REGISTRANT_ -#define GENERATED_PLUGIN_REGISTRANT_ - -#include - -// Registers Flutter plugins. -void RegisterPlugins(flutter::PluginRegistry* registry); - -#endif // GENERATED_PLUGIN_REGISTRANT_ diff --git a/classic/frontend/windows/flutter/generated_plugins.cmake b/classic/frontend/windows/flutter/generated_plugins.cmake deleted file mode 100644 index 02d26c31b9..0000000000 --- a/classic/frontend/windows/flutter/generated_plugins.cmake +++ /dev/null @@ -1,25 +0,0 @@ -# -# Generated file, do not edit. -# - -list(APPEND FLUTTER_PLUGIN_LIST - firebase_core - url_launcher_windows -) - -list(APPEND FLUTTER_FFI_PLUGIN_LIST -) - -set(PLUGIN_BUNDLED_LIBRARIES) - -foreach(plugin ${FLUTTER_PLUGIN_LIST}) - add_subdirectory(flutter/ephemeral/.plugin_symlinks/${plugin}/windows plugins/${plugin}) - target_link_libraries(${BINARY_NAME} PRIVATE ${plugin}_plugin) - list(APPEND PLUGIN_BUNDLED_LIBRARIES $) - list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${plugin}_bundled_libraries}) -endforeach(plugin) - -foreach(ffi_plugin ${FLUTTER_FFI_PLUGIN_LIST}) - add_subdirectory(flutter/ephemeral/.plugin_symlinks/${ffi_plugin}/windows plugins/${ffi_plugin}) - list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${ffi_plugin}_bundled_libraries}) -endforeach(ffi_plugin) diff --git a/classic/frontend/windows/runner/CMakeLists.txt b/classic/frontend/windows/runner/CMakeLists.txt deleted file mode 100644 index 394917c053..0000000000 --- a/classic/frontend/windows/runner/CMakeLists.txt +++ /dev/null @@ -1,40 +0,0 @@ -cmake_minimum_required(VERSION 3.14) -project(runner LANGUAGES CXX) - -# Define the application target. To change its name, change BINARY_NAME in the -# top-level CMakeLists.txt, not the value here, or `flutter run` will no longer -# work. -# -# Any new source files that you add to the application should be added here. -add_executable(${BINARY_NAME} WIN32 - "flutter_window.cpp" - "main.cpp" - "utils.cpp" - "win32_window.cpp" - "${FLUTTER_MANAGED_DIR}/generated_plugin_registrant.cc" - "Runner.rc" - "runner.exe.manifest" -) - -# Apply the standard set of build settings. This can be removed for applications -# that need different build settings. -apply_standard_settings(${BINARY_NAME}) - -# Add preprocessor definitions for the build version. -target_compile_definitions(${BINARY_NAME} PRIVATE "FLUTTER_VERSION=\"${FLUTTER_VERSION}\"") -target_compile_definitions(${BINARY_NAME} PRIVATE "FLUTTER_VERSION_MAJOR=${FLUTTER_VERSION_MAJOR}") -target_compile_definitions(${BINARY_NAME} PRIVATE "FLUTTER_VERSION_MINOR=${FLUTTER_VERSION_MINOR}") -target_compile_definitions(${BINARY_NAME} PRIVATE "FLUTTER_VERSION_PATCH=${FLUTTER_VERSION_PATCH}") -target_compile_definitions(${BINARY_NAME} PRIVATE "FLUTTER_VERSION_BUILD=${FLUTTER_VERSION_BUILD}") - -# Disable Windows macros that collide with C++ standard library functions. -target_compile_definitions(${BINARY_NAME} PRIVATE "NOMINMAX") - -# Add dependency libraries and include directories. Add any application-specific -# dependencies here. -target_link_libraries(${BINARY_NAME} PRIVATE flutter flutter_wrapper_app) -target_link_libraries(${BINARY_NAME} PRIVATE "dwmapi.lib") -target_include_directories(${BINARY_NAME} PRIVATE "${CMAKE_SOURCE_DIR}") - -# Run the Flutter tool portions of the build. This must not be removed. -add_dependencies(${BINARY_NAME} flutter_assemble) diff --git a/classic/frontend/windows/runner/Runner.rc b/classic/frontend/windows/runner/Runner.rc deleted file mode 100644 index 68e7666835..0000000000 --- a/classic/frontend/windows/runner/Runner.rc +++ /dev/null @@ -1,121 +0,0 @@ -// Microsoft Visual C++ generated resource script. -// -#pragma code_page(65001) -#include "resource.h" - -#define APSTUDIO_READONLY_SYMBOLS -///////////////////////////////////////////////////////////////////////////// -// -// Generated from the TEXTINCLUDE 2 resource. -// -#include "winres.h" - -///////////////////////////////////////////////////////////////////////////// -#undef APSTUDIO_READONLY_SYMBOLS - -///////////////////////////////////////////////////////////////////////////// -// English (United States) resources - -#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU) -LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US - -#ifdef APSTUDIO_INVOKED -///////////////////////////////////////////////////////////////////////////// -// -// TEXTINCLUDE -// - -1 TEXTINCLUDE -BEGIN - "resource.h\0" -END - -2 TEXTINCLUDE -BEGIN - "#include ""winres.h""\r\n" - "\0" -END - -3 TEXTINCLUDE -BEGIN - "\r\n" - "\0" -END - -#endif // APSTUDIO_INVOKED - - -///////////////////////////////////////////////////////////////////////////// -// -// Icon -// - -// Icon with lowest ID value placed first to ensure application icon -// remains consistent on all systems. -IDI_APP_ICON ICON "resources\\app_icon.ico" - - -///////////////////////////////////////////////////////////////////////////// -// -// Version -// - -#if defined(FLUTTER_VERSION_MAJOR) && defined(FLUTTER_VERSION_MINOR) && defined(FLUTTER_VERSION_PATCH) && defined(FLUTTER_VERSION_BUILD) -#define VERSION_AS_NUMBER FLUTTER_VERSION_MAJOR,FLUTTER_VERSION_MINOR,FLUTTER_VERSION_PATCH,FLUTTER_VERSION_BUILD -#else -#define VERSION_AS_NUMBER 1,0,0,0 -#endif - -#if defined(FLUTTER_VERSION) -#define VERSION_AS_STRING FLUTTER_VERSION -#else -#define VERSION_AS_STRING "1.0.0" -#endif - -VS_VERSION_INFO VERSIONINFO - FILEVERSION VERSION_AS_NUMBER - PRODUCTVERSION VERSION_AS_NUMBER - FILEFLAGSMASK VS_FFI_FILEFLAGSMASK -#ifdef _DEBUG - FILEFLAGS VS_FF_DEBUG -#else - FILEFLAGS 0x0L -#endif - FILEOS VOS__WINDOWS32 - FILETYPE VFT_APP - FILESUBTYPE 0x0L -BEGIN - BLOCK "StringFileInfo" - BEGIN - BLOCK "040904e4" - BEGIN - VALUE "CompanyName", "com.example" "\0" - VALUE "FileDescription", "auto_gpt_flutter_client" "\0" - VALUE "FileVersion", VERSION_AS_STRING "\0" - VALUE "InternalName", "auto_gpt_flutter_client" "\0" - VALUE "LegalCopyright", "Copyright (C) 2023 com.example. All rights reserved." "\0" - VALUE "OriginalFilename", "auto_gpt_flutter_client.exe" "\0" - VALUE "ProductName", "auto_gpt_flutter_client" "\0" - VALUE "ProductVersion", VERSION_AS_STRING "\0" - END - END - BLOCK "VarFileInfo" - BEGIN - VALUE "Translation", 0x409, 1252 - END -END - -#endif // English (United States) resources -///////////////////////////////////////////////////////////////////////////// - - - -#ifndef APSTUDIO_INVOKED -///////////////////////////////////////////////////////////////////////////// -// -// Generated from the TEXTINCLUDE 3 resource. -// - - -///////////////////////////////////////////////////////////////////////////// -#endif // not APSTUDIO_INVOKED diff --git a/classic/frontend/windows/runner/flutter_window.cpp b/classic/frontend/windows/runner/flutter_window.cpp deleted file mode 100644 index b25e363efa..0000000000 --- a/classic/frontend/windows/runner/flutter_window.cpp +++ /dev/null @@ -1,66 +0,0 @@ -#include "flutter_window.h" - -#include - -#include "flutter/generated_plugin_registrant.h" - -FlutterWindow::FlutterWindow(const flutter::DartProject& project) - : project_(project) {} - -FlutterWindow::~FlutterWindow() {} - -bool FlutterWindow::OnCreate() { - if (!Win32Window::OnCreate()) { - return false; - } - - RECT frame = GetClientArea(); - - // The size here must match the window dimensions to avoid unnecessary surface - // creation / destruction in the startup path. - flutter_controller_ = std::make_unique( - frame.right - frame.left, frame.bottom - frame.top, project_); - // Ensure that basic setup of the controller was successful. - if (!flutter_controller_->engine() || !flutter_controller_->view()) { - return false; - } - RegisterPlugins(flutter_controller_->engine()); - SetChildContent(flutter_controller_->view()->GetNativeWindow()); - - flutter_controller_->engine()->SetNextFrameCallback([&]() { - this->Show(); - }); - - return true; -} - -void FlutterWindow::OnDestroy() { - if (flutter_controller_) { - flutter_controller_ = nullptr; - } - - Win32Window::OnDestroy(); -} - -LRESULT -FlutterWindow::MessageHandler(HWND hwnd, UINT const message, - WPARAM const wparam, - LPARAM const lparam) noexcept { - // Give Flutter, including plugins, an opportunity to handle window messages. - if (flutter_controller_) { - std::optional result = - flutter_controller_->HandleTopLevelWindowProc(hwnd, message, wparam, - lparam); - if (result) { - return *result; - } - } - - switch (message) { - case WM_FONTCHANGE: - flutter_controller_->engine()->ReloadSystemFonts(); - break; - } - - return Win32Window::MessageHandler(hwnd, message, wparam, lparam); -} diff --git a/classic/frontend/windows/runner/flutter_window.h b/classic/frontend/windows/runner/flutter_window.h deleted file mode 100644 index 6da0652f05..0000000000 --- a/classic/frontend/windows/runner/flutter_window.h +++ /dev/null @@ -1,33 +0,0 @@ -#ifndef RUNNER_FLUTTER_WINDOW_H_ -#define RUNNER_FLUTTER_WINDOW_H_ - -#include -#include - -#include - -#include "win32_window.h" - -// A window that does nothing but host a Flutter view. -class FlutterWindow : public Win32Window { - public: - // Creates a new FlutterWindow hosting a Flutter view running |project|. - explicit FlutterWindow(const flutter::DartProject& project); - virtual ~FlutterWindow(); - - protected: - // Win32Window: - bool OnCreate() override; - void OnDestroy() override; - LRESULT MessageHandler(HWND window, UINT const message, WPARAM const wparam, - LPARAM const lparam) noexcept override; - - private: - // The project to run. - flutter::DartProject project_; - - // The Flutter instance hosted by this window. - std::unique_ptr flutter_controller_; -}; - -#endif // RUNNER_FLUTTER_WINDOW_H_ diff --git a/classic/frontend/windows/runner/main.cpp b/classic/frontend/windows/runner/main.cpp deleted file mode 100644 index 329ba5e525..0000000000 --- a/classic/frontend/windows/runner/main.cpp +++ /dev/null @@ -1,43 +0,0 @@ -#include -#include -#include - -#include "flutter_window.h" -#include "utils.h" - -int APIENTRY wWinMain(_In_ HINSTANCE instance, _In_opt_ HINSTANCE prev, - _In_ wchar_t *command_line, _In_ int show_command) { - // Attach to console when present (e.g., 'flutter run') or create a - // new console when running with a debugger. - if (!::AttachConsole(ATTACH_PARENT_PROCESS) && ::IsDebuggerPresent()) { - CreateAndAttachConsole(); - } - - // Initialize COM, so that it is available for use in the library and/or - // plugins. - ::CoInitializeEx(nullptr, COINIT_APARTMENTTHREADED); - - flutter::DartProject project(L"data"); - - std::vector command_line_arguments = - GetCommandLineArguments(); - - project.set_dart_entrypoint_arguments(std::move(command_line_arguments)); - - FlutterWindow window(project); - Win32Window::Point origin(10, 10); - Win32Window::Size size(1280, 720); - if (!window.Create(L"auto_gpt_flutter_client", origin, size)) { - return EXIT_FAILURE; - } - window.SetQuitOnClose(true); - - ::MSG msg; - while (::GetMessage(&msg, nullptr, 0, 0)) { - ::TranslateMessage(&msg); - ::DispatchMessage(&msg); - } - - ::CoUninitialize(); - return EXIT_SUCCESS; -} diff --git a/classic/frontend/windows/runner/resource.h b/classic/frontend/windows/runner/resource.h deleted file mode 100644 index 66a65d1e4a..0000000000 --- a/classic/frontend/windows/runner/resource.h +++ /dev/null @@ -1,16 +0,0 @@ -//{{NO_DEPENDENCIES}} -// Microsoft Visual C++ generated include file. -// Used by Runner.rc -// -#define IDI_APP_ICON 101 - -// Next default values for new objects -// -#ifdef APSTUDIO_INVOKED -#ifndef APSTUDIO_READONLY_SYMBOLS -#define _APS_NEXT_RESOURCE_VALUE 102 -#define _APS_NEXT_COMMAND_VALUE 40001 -#define _APS_NEXT_CONTROL_VALUE 1001 -#define _APS_NEXT_SYMED_VALUE 101 -#endif -#endif diff --git a/classic/frontend/windows/runner/resources/app_icon.ico b/classic/frontend/windows/runner/resources/app_icon.ico deleted file mode 100644 index c04e20caf6..0000000000 Binary files a/classic/frontend/windows/runner/resources/app_icon.ico and /dev/null differ diff --git a/classic/frontend/windows/runner/utils.cpp b/classic/frontend/windows/runner/utils.cpp deleted file mode 100644 index b2b08734db..0000000000 --- a/classic/frontend/windows/runner/utils.cpp +++ /dev/null @@ -1,65 +0,0 @@ -#include "utils.h" - -#include -#include -#include -#include - -#include - -void CreateAndAttachConsole() { - if (::AllocConsole()) { - FILE *unused; - if (freopen_s(&unused, "CONOUT$", "w", stdout)) { - _dup2(_fileno(stdout), 1); - } - if (freopen_s(&unused, "CONOUT$", "w", stderr)) { - _dup2(_fileno(stdout), 2); - } - std::ios::sync_with_stdio(); - FlutterDesktopResyncOutputStreams(); - } -} - -std::vector GetCommandLineArguments() { - // Convert the UTF-16 command line arguments to UTF-8 for the Engine to use. - int argc; - wchar_t** argv = ::CommandLineToArgvW(::GetCommandLineW(), &argc); - if (argv == nullptr) { - return std::vector(); - } - - std::vector command_line_arguments; - - // Skip the first argument as it's the binary name. - for (int i = 1; i < argc; i++) { - command_line_arguments.push_back(Utf8FromUtf16(argv[i])); - } - - ::LocalFree(argv); - - return command_line_arguments; -} - -std::string Utf8FromUtf16(const wchar_t* utf16_string) { - if (utf16_string == nullptr) { - return std::string(); - } - int target_length = ::WideCharToMultiByte( - CP_UTF8, WC_ERR_INVALID_CHARS, utf16_string, - -1, nullptr, 0, nullptr, nullptr) - -1; // remove the trailing null character - int input_length = (int)wcslen(utf16_string); - std::string utf8_string; - if (target_length <= 0 || target_length > utf8_string.max_size()) { - return utf8_string; - } - utf8_string.resize(target_length); - int converted_length = ::WideCharToMultiByte( - CP_UTF8, WC_ERR_INVALID_CHARS, utf16_string, - input_length, utf8_string.data(), target_length, nullptr, nullptr); - if (converted_length == 0) { - return std::string(); - } - return utf8_string; -} diff --git a/classic/frontend/windows/runner/utils.h b/classic/frontend/windows/runner/utils.h deleted file mode 100644 index 3879d54755..0000000000 --- a/classic/frontend/windows/runner/utils.h +++ /dev/null @@ -1,19 +0,0 @@ -#ifndef RUNNER_UTILS_H_ -#define RUNNER_UTILS_H_ - -#include -#include - -// Creates a console for the process, and redirects stdout and stderr to -// it for both the runner and the Flutter library. -void CreateAndAttachConsole(); - -// Takes a null-terminated wchar_t* encoded in UTF-16 and returns a std::string -// encoded in UTF-8. Returns an empty std::string on failure. -std::string Utf8FromUtf16(const wchar_t* utf16_string); - -// Gets the command line arguments passed in as a std::vector, -// encoded in UTF-8. Returns an empty std::vector on failure. -std::vector GetCommandLineArguments(); - -#endif // RUNNER_UTILS_H_ diff --git a/classic/frontend/windows/runner/win32_window.cpp b/classic/frontend/windows/runner/win32_window.cpp deleted file mode 100644 index 60608d0fe5..0000000000 --- a/classic/frontend/windows/runner/win32_window.cpp +++ /dev/null @@ -1,288 +0,0 @@ -#include "win32_window.h" - -#include -#include - -#include "resource.h" - -namespace { - -/// Window attribute that enables dark mode window decorations. -/// -/// Redefined in case the developer's machine has a Windows SDK older than -/// version 10.0.22000.0. -/// See: https://docs.microsoft.com/windows/win32/api/dwmapi/ne-dwmapi-dwmwindowattribute -#ifndef DWMWA_USE_IMMERSIVE_DARK_MODE -#define DWMWA_USE_IMMERSIVE_DARK_MODE 20 -#endif - -constexpr const wchar_t kWindowClassName[] = L"FLUTTER_RUNNER_WIN32_WINDOW"; - -/// Registry key for app theme preference. -/// -/// A value of 0 indicates apps should use dark mode. A non-zero or missing -/// value indicates apps should use light mode. -constexpr const wchar_t kGetPreferredBrightnessRegKey[] = - L"Software\\Microsoft\\Windows\\CurrentVersion\\Themes\\Personalize"; -constexpr const wchar_t kGetPreferredBrightnessRegValue[] = L"AppsUseLightTheme"; - -// The number of Win32Window objects that currently exist. -static int g_active_window_count = 0; - -using EnableNonClientDpiScaling = BOOL __stdcall(HWND hwnd); - -// Scale helper to convert logical scaler values to physical using passed in -// scale factor -int Scale(int source, double scale_factor) { - return static_cast(source * scale_factor); -} - -// Dynamically loads the |EnableNonClientDpiScaling| from the User32 module. -// This API is only needed for PerMonitor V1 awareness mode. -void EnableFullDpiSupportIfAvailable(HWND hwnd) { - HMODULE user32_module = LoadLibraryA("User32.dll"); - if (!user32_module) { - return; - } - auto enable_non_client_dpi_scaling = - reinterpret_cast( - GetProcAddress(user32_module, "EnableNonClientDpiScaling")); - if (enable_non_client_dpi_scaling != nullptr) { - enable_non_client_dpi_scaling(hwnd); - } - FreeLibrary(user32_module); -} - -} // namespace - -// Manages the Win32Window's window class registration. -class WindowClassRegistrar { - public: - ~WindowClassRegistrar() = default; - - // Returns the singleton registrar instance. - static WindowClassRegistrar* GetInstance() { - if (!instance_) { - instance_ = new WindowClassRegistrar(); - } - return instance_; - } - - // Returns the name of the window class, registering the class if it hasn't - // previously been registered. - const wchar_t* GetWindowClass(); - - // Unregisters the window class. Should only be called if there are no - // instances of the window. - void UnregisterWindowClass(); - - private: - WindowClassRegistrar() = default; - - static WindowClassRegistrar* instance_; - - bool class_registered_ = false; -}; - -WindowClassRegistrar* WindowClassRegistrar::instance_ = nullptr; - -const wchar_t* WindowClassRegistrar::GetWindowClass() { - if (!class_registered_) { - WNDCLASS window_class{}; - window_class.hCursor = LoadCursor(nullptr, IDC_ARROW); - window_class.lpszClassName = kWindowClassName; - window_class.style = CS_HREDRAW | CS_VREDRAW; - window_class.cbClsExtra = 0; - window_class.cbWndExtra = 0; - window_class.hInstance = GetModuleHandle(nullptr); - window_class.hIcon = - LoadIcon(window_class.hInstance, MAKEINTRESOURCE(IDI_APP_ICON)); - window_class.hbrBackground = 0; - window_class.lpszMenuName = nullptr; - window_class.lpfnWndProc = Win32Window::WndProc; - RegisterClass(&window_class); - class_registered_ = true; - } - return kWindowClassName; -} - -void WindowClassRegistrar::UnregisterWindowClass() { - UnregisterClass(kWindowClassName, nullptr); - class_registered_ = false; -} - -Win32Window::Win32Window() { - ++g_active_window_count; -} - -Win32Window::~Win32Window() { - --g_active_window_count; - Destroy(); -} - -bool Win32Window::Create(const std::wstring& title, - const Point& origin, - const Size& size) { - Destroy(); - - const wchar_t* window_class = - WindowClassRegistrar::GetInstance()->GetWindowClass(); - - const POINT target_point = {static_cast(origin.x), - static_cast(origin.y)}; - HMONITOR monitor = MonitorFromPoint(target_point, MONITOR_DEFAULTTONEAREST); - UINT dpi = FlutterDesktopGetDpiForMonitor(monitor); - double scale_factor = dpi / 96.0; - - HWND window = CreateWindow( - window_class, title.c_str(), WS_OVERLAPPEDWINDOW, - Scale(origin.x, scale_factor), Scale(origin.y, scale_factor), - Scale(size.width, scale_factor), Scale(size.height, scale_factor), - nullptr, nullptr, GetModuleHandle(nullptr), this); - - if (!window) { - return false; - } - - UpdateTheme(window); - - return OnCreate(); -} - -bool Win32Window::Show() { - return ShowWindow(window_handle_, SW_SHOWNORMAL); -} - -// static -LRESULT CALLBACK Win32Window::WndProc(HWND const window, - UINT const message, - WPARAM const wparam, - LPARAM const lparam) noexcept { - if (message == WM_NCCREATE) { - auto window_struct = reinterpret_cast(lparam); - SetWindowLongPtr(window, GWLP_USERDATA, - reinterpret_cast(window_struct->lpCreateParams)); - - auto that = static_cast(window_struct->lpCreateParams); - EnableFullDpiSupportIfAvailable(window); - that->window_handle_ = window; - } else if (Win32Window* that = GetThisFromHandle(window)) { - return that->MessageHandler(window, message, wparam, lparam); - } - - return DefWindowProc(window, message, wparam, lparam); -} - -LRESULT -Win32Window::MessageHandler(HWND hwnd, - UINT const message, - WPARAM const wparam, - LPARAM const lparam) noexcept { - switch (message) { - case WM_DESTROY: - window_handle_ = nullptr; - Destroy(); - if (quit_on_close_) { - PostQuitMessage(0); - } - return 0; - - case WM_DPICHANGED: { - auto newRectSize = reinterpret_cast(lparam); - LONG newWidth = newRectSize->right - newRectSize->left; - LONG newHeight = newRectSize->bottom - newRectSize->top; - - SetWindowPos(hwnd, nullptr, newRectSize->left, newRectSize->top, newWidth, - newHeight, SWP_NOZORDER | SWP_NOACTIVATE); - - return 0; - } - case WM_SIZE: { - RECT rect = GetClientArea(); - if (child_content_ != nullptr) { - // Size and position the child window. - MoveWindow(child_content_, rect.left, rect.top, rect.right - rect.left, - rect.bottom - rect.top, TRUE); - } - return 0; - } - - case WM_ACTIVATE: - if (child_content_ != nullptr) { - SetFocus(child_content_); - } - return 0; - - case WM_DWMCOLORIZATIONCOLORCHANGED: - UpdateTheme(hwnd); - return 0; - } - - return DefWindowProc(window_handle_, message, wparam, lparam); -} - -void Win32Window::Destroy() { - OnDestroy(); - - if (window_handle_) { - DestroyWindow(window_handle_); - window_handle_ = nullptr; - } - if (g_active_window_count == 0) { - WindowClassRegistrar::GetInstance()->UnregisterWindowClass(); - } -} - -Win32Window* Win32Window::GetThisFromHandle(HWND const window) noexcept { - return reinterpret_cast( - GetWindowLongPtr(window, GWLP_USERDATA)); -} - -void Win32Window::SetChildContent(HWND content) { - child_content_ = content; - SetParent(content, window_handle_); - RECT frame = GetClientArea(); - - MoveWindow(content, frame.left, frame.top, frame.right - frame.left, - frame.bottom - frame.top, true); - - SetFocus(child_content_); -} - -RECT Win32Window::GetClientArea() { - RECT frame; - GetClientRect(window_handle_, &frame); - return frame; -} - -HWND Win32Window::GetHandle() { - return window_handle_; -} - -void Win32Window::SetQuitOnClose(bool quit_on_close) { - quit_on_close_ = quit_on_close; -} - -bool Win32Window::OnCreate() { - // No-op; provided for subclasses. - return true; -} - -void Win32Window::OnDestroy() { - // No-op; provided for subclasses. -} - -void Win32Window::UpdateTheme(HWND const window) { - DWORD light_mode; - DWORD light_mode_size = sizeof(light_mode); - LSTATUS result = RegGetValue(HKEY_CURRENT_USER, kGetPreferredBrightnessRegKey, - kGetPreferredBrightnessRegValue, - RRF_RT_REG_DWORD, nullptr, &light_mode, - &light_mode_size); - - if (result == ERROR_SUCCESS) { - BOOL enable_dark_mode = light_mode == 0; - DwmSetWindowAttribute(window, DWMWA_USE_IMMERSIVE_DARK_MODE, - &enable_dark_mode, sizeof(enable_dark_mode)); - } -} diff --git a/classic/frontend/windows/runner/win32_window.h b/classic/frontend/windows/runner/win32_window.h deleted file mode 100644 index e901dde684..0000000000 --- a/classic/frontend/windows/runner/win32_window.h +++ /dev/null @@ -1,102 +0,0 @@ -#ifndef RUNNER_WIN32_WINDOW_H_ -#define RUNNER_WIN32_WINDOW_H_ - -#include - -#include -#include -#include - -// A class abstraction for a high DPI-aware Win32 Window. Intended to be -// inherited from by classes that wish to specialize with custom -// rendering and input handling -class Win32Window { - public: - struct Point { - unsigned int x; - unsigned int y; - Point(unsigned int x, unsigned int y) : x(x), y(y) {} - }; - - struct Size { - unsigned int width; - unsigned int height; - Size(unsigned int width, unsigned int height) - : width(width), height(height) {} - }; - - Win32Window(); - virtual ~Win32Window(); - - // Creates a win32 window with |title| that is positioned and sized using - // |origin| and |size|. New windows are created on the default monitor. Window - // sizes are specified to the OS in physical pixels, hence to ensure a - // consistent size this function will scale the inputted width and height as - // as appropriate for the default monitor. The window is invisible until - // |Show| is called. Returns true if the window was created successfully. - bool Create(const std::wstring& title, const Point& origin, const Size& size); - - // Show the current window. Returns true if the window was successfully shown. - bool Show(); - - // Release OS resources associated with window. - void Destroy(); - - // Inserts |content| into the window tree. - void SetChildContent(HWND content); - - // Returns the backing Window handle to enable clients to set icon and other - // window properties. Returns nullptr if the window has been destroyed. - HWND GetHandle(); - - // If true, closing this window will quit the application. - void SetQuitOnClose(bool quit_on_close); - - // Return a RECT representing the bounds of the current client area. - RECT GetClientArea(); - - protected: - // Processes and route salient window messages for mouse handling, - // size change and DPI. Delegates handling of these to member overloads that - // inheriting classes can handle. - virtual LRESULT MessageHandler(HWND window, - UINT const message, - WPARAM const wparam, - LPARAM const lparam) noexcept; - - // Called when CreateAndShow is called, allowing subclass window-related - // setup. Subclasses should return false if setup fails. - virtual bool OnCreate(); - - // Called when Destroy is called. - virtual void OnDestroy(); - - private: - friend class WindowClassRegistrar; - - // OS callback called by message pump. Handles the WM_NCCREATE message which - // is passed when the non-client area is being created and enables automatic - // non-client DPI scaling so that the non-client area automatically - // responds to changes in DPI. All other messages are handled by - // MessageHandler. - static LRESULT CALLBACK WndProc(HWND const window, - UINT const message, - WPARAM const wparam, - LPARAM const lparam) noexcept; - - // Retrieves a class instance pointer for |window| - static Win32Window* GetThisFromHandle(HWND const window) noexcept; - - // Update the window frame's theme to match the system theme. - static void UpdateTheme(HWND const window); - - bool quit_on_close_ = false; - - // window handle for top level window. - HWND window_handle_ = nullptr; - - // window handle for hosted content. - HWND child_content_ = nullptr; -}; - -#endif // RUNNER_WIN32_WINDOW_H_ diff --git a/classic/original_autogpt/CLAUDE.md b/classic/original_autogpt/CLAUDE.md new file mode 100644 index 0000000000..324b9b1fc7 --- /dev/null +++ b/classic/original_autogpt/CLAUDE.md @@ -0,0 +1,274 @@ +# CLAUDE.md + +This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository. + +## Quick Reference + +```bash +# Run interactive CLI +poetry run autogpt run + +# Run Agent Protocol server (port 8000) +poetry run serve --debug + +# Run tests +poetry run pytest +poetry run pytest tests/unit/ -v +poetry run pytest -k test_name +``` + +## Entry Points + +| Command | Entry | Description | +|---------|-------|-------------| +| `autogpt run` | `app/cli.py:run()` | Interactive agent mode | +| `autogpt serve` | `app/cli.py:serve()` | Agent Protocol server (FastAPI) | + +Both ultimately call functions in `app/main.py`: +- `run_auto_gpt()` → `run_interaction_loop(agent)` +- `run_auto_gpt_server()` → Hypercorn + FastAPI + +## Directory Structure + +``` +autogpt/ +├── __main__.py # Entry: runs cli() +├── app/ # Application layer +│ ├── cli.py # Click CLI (@cli.command decorators) +│ ├── main.py # run_auto_gpt(), run_interaction_loop() +│ ├── config.py # AppConfig (Pydantic) + ConfigBuilder +│ ├── agent_protocol_server.py # FastAPI server for Agent Protocol +│ ├── setup.py # Interactive AI profile setup +│ └── configurator.py # Config overrides, model validation +├── agents/ # Core agent +│ ├── agent.py # Agent class (extends BaseAgent) +│ ├── agent_manager.py # State persistence (load/save) +│ └── prompt_strategies/ +│ └── one_shot.py # Prompt building + response parsing +└── agent_factory/ # Agent creation + ├── configurators.py # create_agent(), configure_agent_with_state() + └── profile_generator.py # AI profile generation +``` + +## Core Architecture + +### Agent Class (`agents/agent.py`) + +Extends `forge.agent.base.BaseAgent[OneShotAgentActionProposal]`. + +**Constructor**: +```python +Agent( + settings: AgentSettings, # State: profile, directives, history + llm_provider: MultiProvider, # LLM access + file_storage: FileStorage, # File access + app_config: AppConfig, +) +``` + +**Built-in Components** (initialized in `__init__`): +- `self.system` - System information +- `self.history` - ActionHistoryComponent (episodic memory) +- `self.file_manager` - FileManagerComponent (workspace files) +- `self.code_executor` - CodeExecutorComponent (Docker-based) +- `self.git_ops` - GitOperationsComponent +- `self.image_gen` - ImageGeneratorComponent +- `self.web_search` - WebSearchComponent +- `self.web_selenium` - WebSeleniumComponent +- `self.context` - ContextComponent +- `self.watchdog` - WatchdogComponent +- `self.user_interaction` - UserInteractionComponent + +**Key Methods**: +- `propose_action()` → Builds prompt, calls LLM, returns `OneShotAgentActionProposal` +- `execute(proposal)` → Runs the proposed tool, returns `ActionResult` +- `do_not_execute(proposal, feedback)` → Registers user feedback instead + +### Main Loop (`app/main.py:run_interaction_loop`) + +``` +While cycles_remaining > 0: + 1. agent.propose_action() → ActionProposal (thoughts + tool call) + 2. Display thoughts + proposed command to user + 3. Get user feedback (or auto-execute in continuous mode) + 4. agent.execute(proposal) or agent.do_not_execute(proposal, feedback) + 5. Decrement cycles, handle Ctrl+C gracefully +``` + +**Cycle Budget**: +- Normal mode: `cycles = 1` (prompt user each step) +- Continuous mode: `cycles = continuous_limit or ∞` +- User can extend: "y -5" gives 5 more cycles + +### Prompt Strategy (`agents/prompt_strategies/one_shot.py`) + +**`OneShotAgentActionProposal`**: +```python +thoughts: AssistantThoughts # observations, reasoning, plan, self_criticism +use_tool: AssistantFunctionCall # {name, arguments} +``` + +**`AssistantThoughts`**: +```python +observations: str # From last action result +text: str # Main thoughts +reasoning: str # Why this thought +self_criticism: str # Constructive critique +plan: list[str] # Multi-step plan +speak: str # What to say to user +``` + +**Prompt Structure**: +1. System prompt (intro + profile + directives + commands) +2. Task as user message +3. Message history from components +4. "Determine next action" instruction + +### Configuration (`app/config.py`) + +**`AppConfig`** (Pydantic BaseModel): +```python +smart_llm: ModelName = "gpt-4-turbo" # Complex reasoning +fast_llm: ModelName = "gpt-3.5-turbo" # Fast operations +temperature: float = 0.0 +continuous_mode: bool = False +continuous_limit: int = 0 +restrict_to_workspace: bool = True # Sandbox file access +disabled_commands: list[str] = [] +``` + +**`ConfigBuilder.build_config_from_env()`** loads from: +1. Hardcoded defaults +2. Environment variables +3. `.env` file +4. CLI arguments (highest priority) + +### State Persistence + +**Workspace Structure**: +``` +data/agents/{agent_id}/ +├── state.json # AgentSettings (profile, directives, history) +└── workspace/ # Agent's working directory +``` + +**`AgentSettings`** contains: +- `agent_id`, `task` +- `ai_profile` (name, role, goals) +- `ai_directives` (constraints, resources, best practices) +- `history` (EpisodicActionHistory) + +**`AgentManager`**: +- `list_agents()` - All agent IDs +- `load_agent_state(agent_id)` - Load from state.json +- `save_state()` - Persist current state + +## Memory System + +**Short-term** (within execution): +- `agent.event_history` (EpisodicActionHistory) +- Each action creates an `Episode` with action + result +- Token-limited: oldest episodes dropped when limit exceeded + +**Long-term** (across sessions): +- Serialized to `state.json` via Pydantic +- Resume with `AgentManager.load_agent_state()` + +## Component System + +Components implement protocols from forge: +- `CommandProvider.get_commands()` - Provide available commands +- `DirectiveProvider.get_*()` - Provide constraints/resources/best practices +- `MessageProvider.get_messages()` - Provide context messages + +**Execution**: `agent.run_pipeline(Protocol.method)` runs all component implementations. + +**Ordering**: `component.run_after(other)` controls execution order. + +## Forge Dependency + +Heavy reliance on `forge` package (sibling directory): +- `forge.agent.base.BaseAgent` - Base class +- `forge.llm.providers.MultiProvider` - LLM abstraction +- `forge.file_storage` - File storage backends +- `forge.components.*` - All component implementations +- `forge.models.config` - Configuration models + +## Key Gotchas + +1. **Component ordering matters** - Use `run_after()` for dependencies +2. **Token limits are critical** - History auto-drops old episodes; large results get truncated +3. **Continuous mode is dangerous** - No user approval between steps +4. **State files grow large** - Full history in state.json +5. **SIGINT handling** - First Ctrl+C stops continuous mode; second exits +6. **Anthropic limitations** - Doesn't support functions API + prefilling + +## CLI Options + +```bash +autogpt run [OPTIONS] + -c, --continuous # No user approval between steps + -l, --continuous-limit N # Max steps in continuous mode + --ai-name NAME # Override AI name + --ai-role ROLE # Override AI role + --constraint TEXT # Add constraint (repeatable) + --resource TEXT # Add resource (repeatable) + --best-practice TEXT # Add best practice (repeatable) + --component-config-file PATH # JSON config for components + --debug # Enable debug logging + --log-level LEVEL # Set log level +``` + +## Testing + +**Fixtures** (`tests/conftest.py`): +- `app_data_dir` - Temp directory +- `config` - AppConfig with noninteractive_mode=True +- `storage` - LocalFileStorage +- `llm_provider` - MultiProvider +- `agent` - Fully initialized Agent + +**Running**: +```bash +poetry run pytest # All tests +poetry run pytest tests/unit/ -v # Unit tests +poetry run pytest tests/integration/ # Integration tests +poetry run pytest -k test_config # By name +OPENAI_API_KEY=sk-dummy poetry run pytest # With dummy key +``` + +## Common Tasks + +### Add a New Component +1. Create class extending `forge.components.AgentComponent` +2. Implement protocols (e.g., `CommandProvider.get_commands()`) +3. Add to `Agent.__init__()` after `super().__init__()` +4. Use `run_after()` to set execution order + +### Disable a Command +```python +config.disabled_commands.append("execute_python") +``` + +### Custom LLM +```bash +SMART_LLM=gpt-4 +FAST_LLM=gpt-3.5-turbo +TEMPERATURE=0.7 +``` + +## Tracing Execution + +1. `__main__.py` → `cli()` +2. `cli.py:run()` → `run_auto_gpt()` +3. `main.py:run_auto_gpt()`: + - Build config from env + - Set up file storage + - Load or create agent + - Call `run_interaction_loop(agent)` +4. `main.py:run_interaction_loop()`: + - `agent.propose_action()` → LLM call + - Display to user + - Get feedback or auto-execute + - `agent.execute()` or `agent.do_not_execute()` + - Loop diff --git a/classic/original_autogpt/autogpt.sh b/classic/original_autogpt/autogpt.sh deleted file mode 100755 index 57e1f4192d..0000000000 --- a/classic/original_autogpt/autogpt.sh +++ /dev/null @@ -1,29 +0,0 @@ -#!/usr/bin/env bash - -function find_python_command() { - if command -v python3 &> /dev/null - then - echo "python3" - elif command -v python &> /dev/null - then - echo "python" - else - echo "Python not found. Please install Python." - exit 1 - fi -} - -PYTHON_CMD=$(find_python_command) - -if $PYTHON_CMD -c "import sys; sys.exit(sys.version_info < (3, 10))"; then - if ! $PYTHON_CMD scripts/check_requirements.py; then - echo - poetry install --without dev - echo - echo "Finished installing packages! Starting AutoGPT..." - echo - fi - poetry run autogpt "$@" -else - echo "Python 3.10 or higher is required to run Auto GPT." -fi diff --git a/classic/original_autogpt/poetry.lock b/classic/original_autogpt/poetry.lock index 2597c06785..e34db1ef27 100644 --- a/classic/original_autogpt/poetry.lock +++ b/classic/original_autogpt/poetry.lock @@ -355,7 +355,7 @@ jinja2 = "^3.1.2" jsonschema = "*" litellm = "^1.17.9" numpy = ">=1.26.0,<2.0.0" -openai = "^1.7.2" +openai = "^1.50.0" Pillow = "*" playsound = "~1.2.2" pydantic = "^2.7.2" @@ -378,7 +378,7 @@ watchdog = "4.0.0" webdriver-manager = "^4.0.2" [package.extras] -benchmark = ["agbenchmark @ file:///Users/ntindle/code/agpt/AutoGPT/reviews/classic/benchmark"] +benchmark = ["agbenchmark @ file:///Users/ntindle/code/agpt/AutoGPT/main/classic/benchmark"] [package.source] type = "directory" @@ -1984,18 +1984,18 @@ files = [ google-auth = ">=2.14.1,<3.0.0" googleapis-common-protos = ">=1.56.2,<2.0.0" grpcio = [ - {version = ">=1.49.1,<2.0.0", optional = true, markers = "python_version >= \"3.11\" and extra == \"grpc\" and python_version < \"3.14\""}, {version = ">=1.33.2,<2.0.0", optional = true, markers = "python_version < \"3.11\" and extra == \"grpc\""}, + {version = ">=1.49.1,<2.0.0", optional = true, markers = "python_version >= \"3.11\" and extra == \"grpc\" and python_version < \"3.14\""}, {version = ">=1.75.1,<2.0.0", optional = true, markers = "python_version >= \"3.14\" and extra == \"grpc\""}, ] grpcio-status = [ - {version = ">=1.49.1,<2.0.0", optional = true, markers = "python_version >= \"3.11\" and extra == \"grpc\" and python_version < \"3.14\""}, {version = ">=1.33.2,<2.0.0", optional = true, markers = "python_version < \"3.11\" and extra == \"grpc\""}, + {version = ">=1.49.1,<2.0.0", optional = true, markers = "python_version >= \"3.11\" and extra == \"grpc\" and python_version < \"3.14\""}, {version = ">=1.75.1,<2.0.0", optional = true, markers = "python_version >= \"3.14\" and extra == \"grpc\""}, ] proto-plus = [ - {version = ">=1.25.0,<2.0.0", markers = "python_version >= \"3.13\""}, {version = ">=1.22.3,<2.0.0", markers = "python_version < \"3.13\""}, + {version = ">=1.25.0,<2.0.0", markers = "python_version >= \"3.13\""}, ] protobuf = ">=3.19.5,<3.20.0 || >3.20.0,<3.20.1 || >3.20.1,<4.21.0 || >4.21.0,<4.21.1 || >4.21.1,<4.21.2 || >4.21.2,<4.21.3 || >4.21.3,<4.21.4 || >4.21.4,<4.21.5 || >4.21.5,<7.0.0" requests = ">=2.18.0,<3.0.0" @@ -2085,8 +2085,8 @@ grpcio = [ {version = ">=1.75.1,<2.0.0", markers = "python_version >= \"3.14\""}, ] proto-plus = [ - {version = ">=1.25.0,<2.0.0", markers = "python_version >= \"3.13\""}, {version = ">=1.22.3,<2.0.0", markers = "python_version < \"3.13\""}, + {version = ">=1.25.0,<2.0.0", markers = "python_version >= \"3.13\""}, ] protobuf = ">=3.20.2,<4.21.0 || >4.21.0,<4.21.1 || >4.21.1,<4.21.2 || >4.21.2,<4.21.3 || >4.21.3,<4.21.4 || >4.21.4,<4.21.5 || >4.21.5,<7.0.0" @@ -2143,9 +2143,9 @@ google-cloud-core = ">=2.0.0,<3.0.0" grpc-google-iam-v1 = ">=0.12.4,<1.0.0" opentelemetry-api = ">=1.9.0" proto-plus = [ - {version = ">=1.25.0,<2.0.0", markers = "python_version >= \"3.13\""}, {version = ">=1.22.0,<2.0.0", markers = "python_version < \"3.11\""}, {version = ">=1.22.2,<2.0.0", markers = "python_version >= \"3.11\" and python_version < \"3.13\""}, + {version = ">=1.25.0,<2.0.0", markers = "python_version >= \"3.13\""}, ] protobuf = ">=3.20.2,<4.21.0 || >4.21.0,<4.21.1 || >4.21.1,<4.21.2 || >4.21.2,<4.21.3 || >4.21.3,<4.21.4 || >4.21.4,<4.21.5 || >4.21.5,<7.0.0" @@ -4128,8 +4128,8 @@ files = [ [package.dependencies] googleapis-common-protos = ">=1.57,<2.0" grpcio = [ - {version = ">=1.66.2,<2.0.0", markers = "python_version >= \"3.13\""}, {version = ">=1.63.2,<2.0.0", markers = "python_version < \"3.13\""}, + {version = ">=1.66.2,<2.0.0", markers = "python_version >= \"3.13\""}, ] opentelemetry-api = ">=1.15,<2.0" opentelemetry-exporter-otlp-proto-common = "1.39.1" @@ -4383,9 +4383,9 @@ files = [ [package.dependencies] numpy = [ - {version = ">=1.26.0", markers = "python_version >= \"3.12\""}, {version = ">=1.22.4", markers = "python_version < \"3.11\""}, {version = ">=1.23.2", markers = "python_version == \"3.11\""}, + {version = ">=1.26.0", markers = "python_version >= \"3.12\""}, ] python-dateutil = ">=2.8.2" pytz = ">=2020.1" @@ -7719,4 +7719,4 @@ benchmark = ["agbenchmark"] [metadata] lock-version = "2.0" python-versions = "^3.10" -content-hash = "b3d4efee5861b32152024dada1ec61f4241122419cb538012c00a6ed55ac8a4b" +content-hash = "711e0a4c59562c1c1b1ae10db0465f2a018d321ad506ebbdf6a78f9e37c05e24" diff --git a/classic/original_autogpt/run b/classic/original_autogpt/run deleted file mode 100755 index eebf7fe0f9..0000000000 --- a/classic/original_autogpt/run +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/sh - -kill $(lsof -t -i :8000) - -if [ ! -f .env ] && [ -z "$OPENAI_API_KEY" ]; then - cp .env.example .env - echo "Please add your api keys to the .env file." >&2 - # exit 1 -fi -poetry run serve --debug diff --git a/classic/original_autogpt/run_benchmark b/classic/original_autogpt/run_benchmark deleted file mode 100755 index 7264079412..0000000000 --- a/classic/original_autogpt/run_benchmark +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/sh - -# Kill processes using port 8080 if any. -if lsof -t -i :8080; then - kill $(lsof -t -i :8080) -fi -# This is the cli entry point for the benchmarking tool. -# To run this in server mode pass in `serve` as the first argument. -poetry run agbenchmark "$@" diff --git a/classic/original_autogpt/setup b/classic/original_autogpt/setup deleted file mode 100755 index 8263dce320..0000000000 --- a/classic/original_autogpt/setup +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh - -# Necessary to prevent forge and agbenchmark from breaking each others' install: -# https://github.com/python-poetry/poetry/issues/6958 -POETRY_INSTALLER_PARALLEL=false \ -poetry install --no-interaction --extras benchmark - -echo "Setup completed successfully." diff --git a/classic/run b/classic/run deleted file mode 100755 index 55966d1782..0000000000 --- a/classic/run +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/bash - -python3 cli.py "$@" diff --git a/classic/setup.sh b/classic/setup.sh deleted file mode 100755 index 85f4ae4786..0000000000 --- a/classic/setup.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/bash - -if [[ "$OSTYPE" == "cygwin" ]] || [[ "$OSTYPE" == "msys" ]] || [[ "$OSTYPE" == "win32" ]]; then - echo "This script cannot be run on Windows." - echo "Please follow the installation instructions at https://docs.python.org/3/using/windows.html" - echo "To install poetry on Windows, please follow the instructions at https://python-poetry.org/docs/master/#installation" - - exit 1 -else - if ! command -v python3 &> /dev/null - then - echo "python3 could not be found" - echo "Install python3 using pyenv ([y]/n)?" - read response - if [[ "$response" == "y" || -z "$response" ]]; then - echo "Installing python3..." - if ! command -v pyenv &> /dev/null - then - echo "pyenv could not be found" - echo "Installing pyenv..." - curl https://pyenv.run | bash - fi - pyenv install 3.11.5 - pyenv global 3.11.5 - else - echo "Aborting setup" - exit 1 - fi - fi - - if ! command -v poetry &> /dev/null - then - echo "poetry could not be found" - echo "Install poetry using official installer ([y]/n)?" - read response - if [[ "$response" == "y" || -z "$response" ]]; then - echo "Installing poetry..." - curl -sSL https://install.python-poetry.org | python3 - - else - echo "Aborting setup" - exit 1 - fi - fi -fi